From 828537c3824768249a3935252bbedc54b0a26184 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 17 Apr 2024 14:01:34 -0600 Subject: [PATCH 001/126] - Initial commit for duplicate record manager for TANF section 1 records --- .../tdpservice/parsers/duplicate_manager.py | 70 +++++++++++++++++++ tdrs-backend/tdpservice/parsers/parse.py | 16 +++-- 2 files changed, 81 insertions(+), 5 deletions(-) create mode 100644 tdrs-backend/tdpservice/parsers/duplicate_manager.py diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py new file mode 100644 index 000000000..29f3b4931 --- /dev/null +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -0,0 +1,70 @@ +from .models import ParserErrorCategoryChoices +from .schema_defs import tanf + +class CaseHashtainer: + def __init__(self, CASE_NUMBER, RPT_MONTH_YEAR): + self.CASE_NUMBER = CASE_NUMBER + self.RPT_MONTH_YEAR = RPT_MONTH_YEAR + self.record_ids = set() + self.record_hashes = dict() + self.errors = set() + self.partial_hashes = dict() + + def add_case_member(self, record, line, line_number): + self.record_ids.add(record.id) + line_hash = hash(line) + partial_hash = None + if record.RecordType == "T1": + partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) + else: + partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) + + is_exact_dup = False + if line_hash in self.record_hashes: + existing_record_id, existing_record_line_number = self.record_hashes[line_hash] + self.errors.add(f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " + f"line {line_number}. Record is a duplicate of the record at line number " + f"{existing_record_line_number}, with record id {existing_record_id}") + is_exact_dup = True + + skip_partial = False + if record.RecordType != "T1": + skip_partial = record.FAMILY_AFFILIATION == 3 or record.FAMILY_AFFILIATION == 5 + if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: + self.errors.add(f"Partial duplicate record detected for record id {record.id} with record type {record.RecordType} at " + f"line {line_number}. Record is a partial duplicate of the record at line number " + f"{self.partial_hashes[partial_hash][1]}, with record id {self.partial_hashes[partial_hash][0]}") + + self.record_hashes[line_hash] = (record.id, line_number) + self.partial_hashes[partial_hash] = (record.id, line_number) + + +class RecordDuplicateManager: + + def __init__(self, generate_error): + self.hashtainers = dict() + self.generate_error = generate_error + + def add_record(self, record, line, line_number): + hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) + if hash_val not in self.hashtainers: + hashtainer = CaseHashtainer(record.CASE_NUMBER, str(record.RPT_MONTH_YEAR)) + self.hashtainers[hash_val] = hashtainer + self.hashtainers[hash_val].add_case_member(record, line, line_number) + + def generate_errors(self): + all_errors = set() + for hashtainer in self.hashtainers.values(): + all_errors = all_errors.union(hashtainer.errors) + + parser_errors = list() + for str_err in all_errors: + error = self.generate_error( + error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, + schema=tanf.t1.schemas[0], ## TODO: Do we need the right schema? Can this be None to avoid so much state? + record=None, + field=None, + error_message=str_err, + ) + parser_errors.append(error) + return parser_errors diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 06195a945..8db9a114e 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -12,6 +12,7 @@ from . import row_schema from .schema_defs.utils import get_section_reference, get_program_model from .case_consistency_validator import CaseConsistencyValidator +from .duplicate_manager import RecordDuplicateManager from elasticsearch.helpers.errors import BulkIndexError from tdpservice.data_files.models import DataFile @@ -36,13 +37,15 @@ def parse_datafile(datafile, dfs): bulk_create_errors({1: header_errors}, 1, flush=True) return errors - # TODO: write a test for this line + cat4_error_generator = util.make_generate_parser_error(datafile, None) case_consistency_validator = CaseConsistencyValidator( header, datafile.stt.type, - util.make_generate_parser_error(datafile, None) + cat4_error_generator ) + duplicate_manager = RecordDuplicateManager(cat4_error_generator) + field_values = schema_defs.header.get_field_values_by_names(header_line, {"encryption", "tribe_code", "state_fips"}) @@ -96,7 +99,8 @@ def parse_datafile(datafile, dfs): bulk_create_errors(unsaved_parser_errors, 1, flush=True) return errors - line_errors = parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator) + line_errors = parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator, + duplicate_manager) errors = errors | line_errors @@ -214,7 +218,8 @@ def create_no_records_created_pre_check_error(datafile, dfs): errors["no_records_created"] = [err_obj] return errors -def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator): +def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator, + duplicate_manager): """Parse lines with appropriate schema and return errors.""" rawfile = datafile.file errors = {} @@ -300,10 +305,11 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas record.datafile = datafile unsaved_records.setdefault(s.document, []).append(record) case_consistency_validator.add_record(record, s, len(record_errors) > 0) + duplicate_manager.add_record(record, line, line_number) # Add any generated cat4 errors to our error data structure & clear our caches errors list unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ - case_consistency_validator.get_generated_errors() + case_consistency_validator.get_generated_errors() + duplicate_manager.generate_errors() case_consistency_validator.clear_errors() all_created, unsaved_records = bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs) From 60cc275edcf648b3de5bf218e1d98f69f78fa307 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 17 Apr 2024 14:21:32 -0600 Subject: [PATCH 002/126] - more efficient error generation --- .../tdpservice/parsers/duplicate_manager.py | 49 ++++++++++--------- tdrs-backend/tdpservice/parsers/parse.py | 3 +- 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 29f3b4931..88d7a2d8e 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -2,13 +2,25 @@ from .schema_defs import tanf class CaseHashtainer: - def __init__(self, CASE_NUMBER, RPT_MONTH_YEAR): + def __init__(self, CASE_NUMBER, RPT_MONTH_YEAR, manager_error_list, generate_error): self.CASE_NUMBER = CASE_NUMBER self.RPT_MONTH_YEAR = RPT_MONTH_YEAR + self.manager_error_list = manager_error_list + self.generate_error = generate_error self.record_ids = set() self.record_hashes = dict() - self.errors = set() self.partial_hashes = dict() + + def __generate_error(self, err_msg): + if err_msg is not None: + error = self.generate_error( + error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, + schema=None, ## TODO: Do we need the right schema? Can this be None to avoid so much state? + record=None, + field=None, + error_message=err_msg, + ) + self.manager_error_list.append(error) def add_case_member(self, record, line, line_number): self.record_ids.add(record.id) @@ -20,9 +32,10 @@ def add_case_member(self, record, line, line_number): partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) is_exact_dup = False + err_msg = None if line_hash in self.record_hashes: existing_record_id, existing_record_line_number = self.record_hashes[line_hash] - self.errors.add(f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " + err_msg = (f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " f"line {line_number}. Record is a duplicate of the record at line number " f"{existing_record_line_number}, with record id {existing_record_id}") is_exact_dup = True @@ -31,10 +44,11 @@ def add_case_member(self, record, line, line_number): if record.RecordType != "T1": skip_partial = record.FAMILY_AFFILIATION == 3 or record.FAMILY_AFFILIATION == 5 if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: - self.errors.add(f"Partial duplicate record detected for record id {record.id} with record type {record.RecordType} at " + err_msg = (f"Partial duplicate record detected for record id {record.id} with record type {record.RecordType} at " f"line {line_number}. Record is a partial duplicate of the record at line number " f"{self.partial_hashes[partial_hash][1]}, with record id {self.partial_hashes[partial_hash][0]}") - + + self.__generate_error(err_msg) self.record_hashes[line_hash] = (record.id, line_number) self.partial_hashes[partial_hash] = (record.id, line_number) @@ -44,27 +58,18 @@ class RecordDuplicateManager: def __init__(self, generate_error): self.hashtainers = dict() self.generate_error = generate_error + self.generated_errors = [] def add_record(self, record, line, line_number): hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) if hash_val not in self.hashtainers: - hashtainer = CaseHashtainer(record.CASE_NUMBER, str(record.RPT_MONTH_YEAR)) + hashtainer = CaseHashtainer(record.CASE_NUMBER, str(record.RPT_MONTH_YEAR), + self.generated_errors, self.generate_error) self.hashtainers[hash_val] = hashtainer self.hashtainers[hash_val].add_case_member(record, line, line_number) - def generate_errors(self): - all_errors = set() - for hashtainer in self.hashtainers.values(): - all_errors = all_errors.union(hashtainer.errors) - - parser_errors = list() - for str_err in all_errors: - error = self.generate_error( - error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, - schema=tanf.t1.schemas[0], ## TODO: Do we need the right schema? Can this be None to avoid so much state? - record=None, - field=None, - error_message=str_err, - ) - parser_errors.append(error) - return parser_errors + def get_generated_errors(self): + return self.generated_errors + + def get_num_generated_errors(self): + return len(self.generated_errors) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 8db9a114e..30307cd04 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -308,8 +308,9 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas duplicate_manager.add_record(record, line, line_number) # Add any generated cat4 errors to our error data structure & clear our caches errors list + num_errors += duplicate_manager.get_num_generated_errors() unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ - case_consistency_validator.get_generated_errors() + duplicate_manager.generate_errors() + case_consistency_validator.get_generated_errors() + duplicate_manager.get_generated_errors() case_consistency_validator.clear_errors() all_created, unsaved_records = bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs) From 49ead96fb6a754bdeb394b03ac64bb099902f761 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 17 Apr 2024 17:13:12 -0600 Subject: [PATCH 003/126] - Added a way to track precedence in the error messages to avoid generating less meaningful messages - Updated error generation --- .../tdpservice/parsers/duplicate_manager.py | 63 ++++++++++++++----- tdrs-backend/tdpservice/parsers/parse.py | 14 +++-- 2 files changed, 58 insertions(+), 19 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 88d7a2d8e..d44595672 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -1,17 +1,36 @@ from .models import ParserErrorCategoryChoices -from .schema_defs import tanf + +class ErrorPrecedence: + def __init__(self): + self.max_precedence = None + + def has_precedence(self, error_level): + """Returns tuple of bools: (has_precidence, is_new_max_precedence).""" + if self.max_precedence is None: + self.max_precedence = error_level + return (True, True) + elif self.max_precedence > error_level: + self.max_precedence = error_level + return (True, True) + elif self.max_precedence == error_level: + return (True, False) + else: + return (False, False) + class CaseHashtainer: - def __init__(self, CASE_NUMBER, RPT_MONTH_YEAR, manager_error_list, generate_error): + def __init__(self, my_hash, CASE_NUMBER, RPT_MONTH_YEAR, manager_error_dict, generate_error): + self.my_hash = my_hash self.CASE_NUMBER = CASE_NUMBER self.RPT_MONTH_YEAR = RPT_MONTH_YEAR - self.manager_error_list = manager_error_list + self.manager_error_dict = manager_error_dict self.generate_error = generate_error self.record_ids = set() self.record_hashes = dict() self.partial_hashes = dict() - - def __generate_error(self, err_msg): + self.error_precedence = ErrorPrecedence() + + def __generate_error(self, err_msg, is_new_max_precedence): if err_msg is not None: error = self.generate_error( error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, @@ -20,12 +39,16 @@ def __generate_error(self, err_msg): field=None, error_message=err_msg, ) - self.manager_error_list.append(error) + if is_new_max_precedence: + self.manager_error_dict[self.my_hash] = [error] + else: + self.manager_error_dict[self.my_hash].append(error) def add_case_member(self, record, line, line_number): self.record_ids.add(record.id) line_hash = hash(line) partial_hash = None + error_level = record.RecordType[1] if record.RecordType == "T1": partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) else: @@ -33,7 +56,11 @@ def add_case_member(self, record, line, line_number): is_exact_dup = False err_msg = None + has_precedence = False + is_new_max_precedence = False + if line_hash in self.record_hashes: + has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(error_level) existing_record_id, existing_record_line_number = self.record_hashes[line_hash] err_msg = (f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " f"line {line_number}. Record is a duplicate of the record at line number " @@ -44,13 +71,19 @@ def add_case_member(self, record, line, line_number): if record.RecordType != "T1": skip_partial = record.FAMILY_AFFILIATION == 3 or record.FAMILY_AFFILIATION == 5 if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: + has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(error_level) err_msg = (f"Partial duplicate record detected for record id {record.id} with record type {record.RecordType} at " f"line {line_number}. Record is a partial duplicate of the record at line number " f"{self.partial_hashes[partial_hash][1]}, with record id {self.partial_hashes[partial_hash][0]}") - self.__generate_error(err_msg) - self.record_hashes[line_hash] = (record.id, line_number) - self.partial_hashes[partial_hash] = (record.id, line_number) + if not has_precedence: + err_msg = None + + self.__generate_error(err_msg, is_new_max_precedence) + if line_hash not in self.record_hashes: + self.record_hashes[line_hash] = (record.id, line_number) + if partial_hash not in self.partial_hashes: + self.partial_hashes[partial_hash] = (record.id, line_number) class RecordDuplicateManager: @@ -58,18 +91,18 @@ class RecordDuplicateManager: def __init__(self, generate_error): self.hashtainers = dict() self.generate_error = generate_error - self.generated_errors = [] + self.generated_errors = dict() def add_record(self, record, line, line_number): hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) if hash_val not in self.hashtainers: - hashtainer = CaseHashtainer(record.CASE_NUMBER, str(record.RPT_MONTH_YEAR), + hashtainer = CaseHashtainer(hash_val, record.CASE_NUMBER, str(record.RPT_MONTH_YEAR), self.generated_errors, self.generate_error) self.hashtainers[hash_val] = hashtainer self.hashtainers[hash_val].add_case_member(record, line, line_number) def get_generated_errors(self): - return self.generated_errors - - def get_num_generated_errors(self): - return len(self.generated_errors) + generated_errors = list() + for errors in self.generated_errors.values(): + generated_errors.extend(errors) + return generated_errors diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 30307cd04..9d744bd45 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -308,9 +308,8 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas duplicate_manager.add_record(record, line, line_number) # Add any generated cat4 errors to our error data structure & clear our caches errors list - num_errors += duplicate_manager.get_num_generated_errors() unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ - case_consistency_validator.get_generated_errors() + duplicate_manager.get_generated_errors() + case_consistency_validator.get_generated_errors() case_consistency_validator.clear_errors() all_created, unsaved_records = bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs) @@ -345,11 +344,18 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas rollback_records(unsaved_records, datafile) bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) return errors + + validate_case_consistency(case_consistency_validator) + + # Add any generated cat4 errors to our error data structure & clear our caches errors list + duplicate_errors = duplicate_manager.get_generated_errors() + num_errors += len(duplicate_errors) + len(case_consistency_validator.get_generated_errors()) + unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ + case_consistency_validator.get_generated_errors() + duplicate_errors + case_consistency_validator.clear_errors() bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) - validate_case_consistency(case_consistency_validator) - logger.debug(f"Cat4 validator cached {case_consistency_validator.total_cases_cached} cases and " f"validated {case_consistency_validator.total_cases_validated} of them.") dfs.save() From 83b9d0b255f88d9290cb892f5d9b910e79873dc3 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 18 Apr 2024 07:40:40 -0600 Subject: [PATCH 004/126] - Fix lint - Add docstrings --- .../tdpservice/parsers/duplicate_manager.py | 36 ++++++++++++------- tdrs-backend/tdpservice/parsers/parse.py | 4 +-- 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index d44595672..e69284ea6 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -1,11 +1,14 @@ +"""Class definition for record duplicate class and helper classes.""" from .models import ParserErrorCategoryChoices class ErrorPrecedence: + """Data structure to manage error precedence.""" + def __init__(self): self.max_precedence = None def has_precedence(self, error_level): - """Returns tuple of bools: (has_precidence, is_new_max_precedence).""" + """Return tuple of bools: (has_precidence, is_new_max_precedence).""" if self.max_precedence is None: self.max_precedence = error_level return (True, True) @@ -19,6 +22,8 @@ def has_precedence(self, error_level): class CaseHashtainer: + """Container class to manage hashed values for records of the same CASE_NUMBER and RPT_MONTH_YEAR.""" + def __init__(self, my_hash, CASE_NUMBER, RPT_MONTH_YEAR, manager_error_dict, generate_error): self.my_hash = my_hash self.CASE_NUMBER = CASE_NUMBER @@ -31,10 +36,11 @@ def __init__(self, my_hash, CASE_NUMBER, RPT_MONTH_YEAR, manager_error_dict, gen self.error_precedence = ErrorPrecedence() def __generate_error(self, err_msg, is_new_max_precedence): + """Add an error to the managers error dictionary.""" if err_msg is not None: error = self.generate_error( error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, - schema=None, ## TODO: Do we need the right schema? Can this be None to avoid so much state? + schema=None, # TODO: Do we need the right schema? Can this be None to avoid so much state? record=None, field=None, error_message=err_msg, @@ -45,6 +51,7 @@ def __generate_error(self, err_msg, is_new_max_precedence): self.manager_error_dict[self.my_hash].append(error) def add_case_member(self, record, line, line_number): + """Add case member and generate errors if needed.""" self.record_ids.add(record.id) line_hash = hash(line) partial_hash = None @@ -52,7 +59,8 @@ def add_case_member(self, record, line, line_number): if record.RecordType == "T1": partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) else: - partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) + partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) is_exact_dup = False err_msg = None @@ -63,22 +71,23 @@ def add_case_member(self, record, line, line_number): has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(error_level) existing_record_id, existing_record_line_number = self.record_hashes[line_hash] err_msg = (f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " - f"line {line_number}. Record is a duplicate of the record at line number " - f"{existing_record_line_number}, with record id {existing_record_id}") + f"line {line_number}. Record is a duplicate of the record at line number " + f"{existing_record_line_number}, with record id {existing_record_id}") is_exact_dup = True skip_partial = False - if record.RecordType != "T1": + if record.RecordType != "T1": skip_partial = record.FAMILY_AFFILIATION == 3 or record.FAMILY_AFFILIATION == 5 if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(error_level) - err_msg = (f"Partial duplicate record detected for record id {record.id} with record type {record.RecordType} at " - f"line {line_number}. Record is a partial duplicate of the record at line number " - f"{self.partial_hashes[partial_hash][1]}, with record id {self.partial_hashes[partial_hash][0]}") - + err_msg = (f"Partial duplicate record detected for record id {record.id} with record type " + f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " + f"record at line number {self.partial_hashes[partial_hash][1]}, with record id " + f"{self.partial_hashes[partial_hash][0]}") + if not has_precedence: err_msg = None - + self.__generate_error(err_msg, is_new_max_precedence) if line_hash not in self.record_hashes: self.record_hashes[line_hash] = (record.id, line_number) @@ -87,6 +96,7 @@ def add_case_member(self, record, line, line_number): class RecordDuplicateManager: + """Manages all CaseHashtainers and their errors.""" def __init__(self, generate_error): self.hashtainers = dict() @@ -94,14 +104,16 @@ def __init__(self, generate_error): self.generated_errors = dict() def add_record(self, record, line, line_number): + """Add record to existing CaseHashtainer or create new one.""" hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) if hash_val not in self.hashtainers: - hashtainer = CaseHashtainer(hash_val, record.CASE_NUMBER, str(record.RPT_MONTH_YEAR), + hashtainer = CaseHashtainer(hash_val, record.CASE_NUMBER, str(record.RPT_MONTH_YEAR), self.generated_errors, self.generate_error) self.hashtainers[hash_val] = hashtainer self.hashtainers[hash_val].add_case_member(record, line, line_number) def get_generated_errors(self): + """Return all errors from all CaseHashtainers.""" generated_errors = list() for errors in self.generated_errors.values(): generated_errors.extend(errors) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 9d744bd45..079a0c97e 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -344,9 +344,9 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas rollback_records(unsaved_records, datafile) bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) return errors - + validate_case_consistency(case_consistency_validator) - + # Add any generated cat4 errors to our error data structure & clear our caches errors list duplicate_errors = duplicate_manager.get_generated_errors() num_errors += len(duplicate_errors) + len(case_consistency_validator.get_generated_errors()) From d154dd6006590c3b9f0b7bc34ff7382f251f7f3c Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 18 Apr 2024 15:51:50 -0600 Subject: [PATCH 005/126] - Added support to delete deplicate records --- .../tdpservice/parsers/duplicate_manager.py | 28 +++++++++++++++---- tdrs-backend/tdpservice/parsers/parse.py | 18 ++++++++++-- 2 files changed, 38 insertions(+), 8 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index e69284ea6..cf4976050 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -30,10 +30,17 @@ def __init__(self, my_hash, CASE_NUMBER, RPT_MONTH_YEAR, manager_error_dict, gen self.RPT_MONTH_YEAR = RPT_MONTH_YEAR self.manager_error_dict = manager_error_dict self.generate_error = generate_error - self.record_ids = set() + self.record_ids = dict() self.record_hashes = dict() self.partial_hashes = dict() self.error_precedence = ErrorPrecedence() + self.has_duplicate_errors = False + + def get_records_to_delete(self): + """Return record ids if case has duplicate errors.""" + if self.has_duplicate_errors: + return self.record_ids + return dict() def __generate_error(self, err_msg, is_new_max_precedence): """Add an error to the managers error dictionary.""" @@ -45,14 +52,15 @@ def __generate_error(self, err_msg, is_new_max_precedence): field=None, error_message=err_msg, ) + self.has_duplicate_errors = True if is_new_max_precedence: self.manager_error_dict[self.my_hash] = [error] else: self.manager_error_dict[self.my_hash].append(error) - def add_case_member(self, record, line, line_number): + def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed.""" - self.record_ids.add(record.id) + self.record_ids.setdefault(schema.document.Django.model, []).append(record.id) line_hash = hash(line) partial_hash = None error_level = record.RecordType[1] @@ -103,14 +111,14 @@ def __init__(self, generate_error): self.generate_error = generate_error self.generated_errors = dict() - def add_record(self, record, line, line_number): - """Add record to existing CaseHashtainer or create new one.""" + def add_record(self, record, schema, line, line_number): + """Add record to existing CaseHashtainer or create new one and return whether the record's case has errors.""" hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) if hash_val not in self.hashtainers: hashtainer = CaseHashtainer(hash_val, record.CASE_NUMBER, str(record.RPT_MONTH_YEAR), self.generated_errors, self.generate_error) self.hashtainers[hash_val] = hashtainer - self.hashtainers[hash_val].add_case_member(record, line, line_number) + self.hashtainers[hash_val].add_case_member(record, schema, line, line_number) def get_generated_errors(self): """Return all errors from all CaseHashtainers.""" @@ -118,3 +126,11 @@ def get_generated_errors(self): for errors in self.generated_errors.values(): generated_errors.extend(errors) return generated_errors + + def get_records_to_remove(self): + records_to_remove = dict() + for hashtainer in self.hashtainers.values(): + for model, ids in hashtainer.get_records_to_delete().items(): + records_to_remove.setdefault(model, []).extend(ids) + + return records_to_remove diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 079a0c97e..fc4a9cfad 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -218,6 +218,17 @@ def create_no_records_created_pre_check_error(datafile, dfs): errors["no_records_created"] = [err_obj] return errors +def delete_duplicates(duplicate_manager): + total_deleted = 0 + for model, ids in duplicate_manager.get_records_to_remove().items(): + try: + num_deleted, records = model.objects.filter(id__in=ids).delete() + total_deleted += num_deleted + logger.debug(f"Deleted {num_deleted} records of type: {model}.") + except Exception as e: + logging.error(f"Encountered error while deleting records of type {model}. Error message: {e}") + logger.debug(f"Deleted a total of {total_deleted} records because of duplicate errors.") + def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator, duplicate_manager): """Parse lines with appropriate schema and return errors.""" @@ -303,9 +314,10 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas if record: s = schema_manager.schemas[i] record.datafile = datafile + record_has_errors = len(record_errors) > 0 + duplicate_manager.add_record(record, s, line, line_number) unsaved_records.setdefault(s.document, []).append(record) - case_consistency_validator.add_record(record, s, len(record_errors) > 0) - duplicate_manager.add_record(record, line, line_number) + case_consistency_validator.add_record(record, s, record_has_errors) # Add any generated cat4 errors to our error data structure & clear our caches errors list unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ @@ -356,6 +368,8 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) + delete_duplicates(duplicate_manager) + logger.debug(f"Cat4 validator cached {case_consistency_validator.total_cases_cached} cases and " f"validated {case_consistency_validator.total_cases_validated} of them.") dfs.save() From 7f6e9b1ffa172950c21d398d3d76cc7c590fb778 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 18 Apr 2024 16:57:19 -0600 Subject: [PATCH 006/126] - add support for bulk/raw delete --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 2 +- tdrs-backend/tdpservice/parsers/parse.py | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index cf4976050..a6ed2af50 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -60,7 +60,7 @@ def __generate_error(self, err_msg, is_new_max_precedence): def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed.""" - self.record_ids.setdefault(schema.document.Django.model, []).append(record.id) + self.record_ids.setdefault(schema.document, []).append(record.id) line_hash = hash(line) partial_hash = None error_level = record.RecordType[1] diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index fc4a9cfad..19d7133a6 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -220,9 +220,12 @@ def create_no_records_created_pre_check_error(datafile, dfs): def delete_duplicates(duplicate_manager): total_deleted = 0 - for model, ids in duplicate_manager.get_records_to_remove().items(): + for document, ids in duplicate_manager.get_records_to_remove().items(): try: - num_deleted, records = model.objects.filter(id__in=ids).delete() + model = document.Django.model + qset = model.objects.filter(id__in=ids) + num_deleted = qset._raw_delete(qset.db) + document.update(qset) total_deleted += num_deleted logger.debug(f"Deleted {num_deleted} records of type: {model}.") except Exception as e: From 2d98d3a961f08bb6c5b4ea7dd4106b1924cc10cc Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 18 Apr 2024 17:01:41 -0600 Subject: [PATCH 007/126] - Update deletes on rollbacks to raw delete since it wont hurt anything --- tdrs-backend/tdpservice/parsers/parse.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 19d7133a6..6bb39b0e7 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -181,13 +181,16 @@ def rollback_records(unsaved_records, datafile): logger.info("Rolling back created records.") for document in unsaved_records: model = document.Django.model - num_deleted, models = model.objects.filter(datafile=datafile).delete() + qset = model.objects.filter(datafile=datafile) + num_deleted = qset._raw_delete(qset.db) + document.update(qset) logger.debug(f"Deleted {num_deleted} records of type: {model}.") def rollback_parser_errors(datafile): """Delete created errors in the event of a failure.""" logger.info("Rolling back created parser errors.") - num_deleted, models = ParserError.objects.filter(file=datafile).delete() + qset = ParserError.objects.filter(file=datafile) + num_deleted = qset._raw_delete(qset.db) logger.debug(f"Deleted {num_deleted} {ParserError}.") def validate_case_consistency(case_consistency_validator): From 3c07f99481f97d11da3151eb11da3e92156c646a Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 19 Apr 2024 08:45:43 -0600 Subject: [PATCH 008/126] - Updated elastic and django to support raw/bulk deleting --- tdrs-backend/tdpservice/parsers/parse.py | 36 +++++++++++++------ .../tdpservice/parsers/test/test_parse.py | 4 +++ 2 files changed, 30 insertions(+), 10 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 6bb39b0e7..712d83bd9 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -180,18 +180,30 @@ def rollback_records(unsaved_records, datafile): """Delete created records in the event of a failure.""" logger.info("Rolling back created records.") for document in unsaved_records: - model = document.Django.model - qset = model.objects.filter(datafile=datafile) - num_deleted = qset._raw_delete(qset.db) - document.update(qset) - logger.debug(f"Deleted {num_deleted} records of type: {model}.") + try: + model = document.Django.model + qset = model.objects.filter(datafile=datafile) + # We must tell elastic to delete the documents first because after we call `_raw_delete` the queryset will be + # empty which will tell elastic that nothing needs updated. + document.update(qset, refresh=True, action="delete") + # WARNING: we can use `_raw_delete` in this case because our record models don't have cascading dependencies. If + # that ever changes, we should NOT use `_raw_delete`. + num_deleted = qset._raw_delete(qset.db) + logger.debug(f"Deleted {num_deleted} records of type: {model}.") + except Exception as e: + logging.error(f"Encountered error while deleting records of type {model}. Error message: {e}") def rollback_parser_errors(datafile): """Delete created errors in the event of a failure.""" - logger.info("Rolling back created parser errors.") - qset = ParserError.objects.filter(file=datafile) - num_deleted = qset._raw_delete(qset.db) - logger.debug(f"Deleted {num_deleted} {ParserError}.") + try: + logger.info("Rolling back created parser errors.") + qset = ParserError.objects.filter(file=datafile) + # WARNING: we can use `_raw_delete` in this case because our error models don't have cascading dependencies. If + # that ever changes, we should NOT use `_raw_delete`. + num_deleted = qset._raw_delete(qset.db) + logger.debug(f"Deleted {num_deleted} {ParserError}.") + except Exception as e: + logging.error(f"Encountered error while deleting records of type {ParserError}. Error message: {e}") def validate_case_consistency(case_consistency_validator): """Force category four validation if we have reached the last case in the file.""" @@ -227,8 +239,12 @@ def delete_duplicates(duplicate_manager): try: model = document.Django.model qset = model.objects.filter(id__in=ids) + # We must tell elastic to delete the documents first because after we call `_raw_delete` the queryset will be + # empty which will tell elastic that nothing needs updated. + document.update(qset, action="delete") + # WARNING: we can use `_raw_delete` in this case because our record models don't have cascading dependencies. If + # that ever changes, we should NOT use `_raw_delete`. num_deleted = qset._raw_delete(qset.db) - document.update(qset) total_deleted += num_deleted logger.debug(f"Deleted {num_deleted} records of type: {model}.") except Exception as e: diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 7822dc1b4..888f33136 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -745,6 +745,9 @@ def test_parse_super_big_s1_file_with_rollback(super_big_s1_rollback_file, dfs): Validate all T1/T2/T3 records are not created due to multiple headers. """ + super_big_s1_rollback_file.year = 2023 + super_big_s1_rollback_file.quarter = 'Q2' + parse.parse_datafile(super_big_s1_rollback_file, dfs) parser_errors = ParserError.objects.filter(file=super_big_s1_rollback_file) @@ -779,6 +782,7 @@ def test_parse_super_big_s1_file_with_rollback(super_big_s1_rollback_file, dfs): datafile__id=super_big_s1_rollback_file.id ) assert search.count() == 0 + assert False @pytest.fixture From 496484ed27d716f3277c7bba33ae5c04e2b8b31c Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 19 Apr 2024 09:01:17 -0600 Subject: [PATCH 009/126] - Updating rollback test since it is very relevant now that we are doing raw deletes --- .../data/ADS.E2J.NDM1.TS53_fake.rollback.txt | 36413 ---------------- .../tdpservice/parsers/test/test_parse.py | 23 +- 2 files changed, 11 insertions(+), 36425 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/data/ADS.E2J.NDM1.TS53_fake.rollback.txt b/tdrs-backend/tdpservice/parsers/test/data/ADS.E2J.NDM1.TS53_fake.rollback.txt index b46c46b77..a694d4600 100644 --- a/tdrs-backend/tdpservice/parsers/test/data/ADS.E2J.NDM1.TS53_fake.rollback.txt +++ b/tdrs-backend/tdpservice/parsers/test/data/ADS.E2J.NDM1.TS53_fake.rollback.txt @@ -13606,36418 +13606,5 @@ T1202301111113618032470040830112051211111630000000000000888069000000000000000000 T2202301111113618031219810527WT@PWZ9W02222212222223012212120950023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 T320230111111361803120090918WT@ZBB@##22212122204306100000000120070104WTTB9T0TZ22212122204307100000000 T320230111111361803120150701WTT0YWBPT22212122204398100000000120110702WTT#PT0#012212122204303100000000 -T12023011111136184325200410591120313110835300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111113618431219930912WT@W9YZ0T2222212222221012216110085223011800000000000000000000000000060002000000000000000000000000390000000000000000000000002293 -T320230111111361843120140712WTT@#Y#Y@22222112204302100000000420100322WT@T@@W#022222112104305109140000 -T12023011111136192222000408341120213110598300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111113619221219800318WT@W#0@TP2122212222223012212111170023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111361922120100504WT@PT99WW12222112204307100000000 -T12023011111136207721700406141120313110611300000000004803920200000000000000000000000000000000261122222000000012219072 -T2202301111113620771219860509WTT9Y0PPT2222212222223012212110850023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362077120060123WT@09Y99Y22222112204308100000000120050213WTTTTTP@Y12222122204309100000000 -T12023011111136212121000411361120333120000123030000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111113621213219630201WT@0W9PZ#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000249400000000000000001000 -T320230111111362121120200304WT@#BTWZB21222212209398100000000120140513WT@@W9@@#21222222209301100000000 -T12023011111136217124200403511120213110611300000000014805280050000000000000000000000000000000000222222000000002229012 -T2202301111113621711219710901WT@#9BTT02222122222225012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362171120060927WTT#WTPWB22221222204310100000000 -T12023011111136224921000411841120233110493300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111113622493219640205WT@TPPTTY2222212122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000671000000000000 -T320230111111362249120070713WT@Z0B#9@22222122206306100000000 -T12023011111136246725900402631120213110611107050000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111113624671219910226WTTZP0#W91222222222221012213110312923011700000022000400000000000000000000000000000000000000000000120000000000000000000000000203 -T320230111111362467120180526WT@099BZ@12222212204398100000000 -T12023011111136257622000403351110733110965300000000000006270010000000000000000000000000000000000222222000000002229021 -T2202301111113625762219940901WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113625762219910127WT@YYBT9P1222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000086000000000000000000000 -T320230111111362576120130523WT@0Z09PP22222222204312100000000 -T320230111111362576120160927WT@Z00@9022222212204398100000000120140223WTTP@#P#922222222204303100000000 -T320230111111362576120180708WTT99YWWZ22222212204398100000000120180708WT@B0WWWZ22222212204398100000000 -T12023011111136274224700406631120333110376300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111113627422220010112WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362742120220218WTTPYT@0W12222212204398100000000420190112WT@YYBT9P12222212204398900000000 -T12023011111136279422000411981120212110611300000000050005280090000000000000000000000000000000000222222000000002229012 -T2202301111113627941219830226WTTW#T9BP2221221222221012211110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362794120150721WTT9B@0YZ22212222204398100000000 -T12023011111136279724200414721120233110376300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111113627972219800126WT@YYBT9P1222221222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362797120070324WTT0WZW@P12222212204309100000000 -T12023011111136286422000410051120213110598300000000002005280220000000000000000000000000000000000222222000000002229012 -T2202301111113628641220020722WTT0B#PYW1222222222221012211110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362864120200727WT@@WWYY012222222204398100000000 -T12023011111136289920600402131120213110611300000000118505280040000000000000000000000000000000000222222000000002229012 -T2202301111113628991220020222WTT0P0#TZ2222212222221012211110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362899120220104WT@ZZBYZ922222222204398100000000 -T12023011111136292424700401011110213110611300000000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111113629241219860104WT@TWTW#W2222211222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362924120080904WTTTB9T@Y22222112204308100000000 -T12023011111136297620600404492110423210939300000000000005470010000000000000000000000000000000000222222000000002229032 -T2202301111113629761219740124WT@W@PT0Z2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113629761219780513WTT#@#9T@2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111362976120110426WT@9TPY9W22222122204305200000000120080904WT@9TPY9W22222112204307200000000 -T12023011111136303824200403511120213110611300000000090004960050000000000000000000000000000000000222222000000322219012 -T2202301111113630381219850423WTTBW@#@Z2221221222225012216110065421011803000000000000000000000000000000000000000000000000000000000000012500000000000000000333 -T320230111111363038120130127WTT#T0@TZ22212212204303100000000 -T12023011111136311125200400201120333120000300000000000005280850000000000000000000000000000000000222222000000002229022 -T2202301111113631113219520524WTTWBPZB#2222211122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000002034000000001791 -T320230111111363111120120712WT@0YTZZ@22222112206302100000050120070907WT@9#B#WT22222122206308100000050 -T12023011111136328324700408091120313110740300000000031506540340000000000000000000000000000000000222222000000002229012 -T2202301111113632831219790901WT@ZYZZWB2222211222225012212110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111363283120070107WTTB9#Z0P22222122204308100000000120040705WT@YPZ#T922222122204310100000000 -T12023011111136332623500407611120333120000300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111113633263219760704WT@YWYP0P2222212222222012216110006011069913000000000000000000000000000000000000000000000000000000000000083000000000000000000000 -T320230111111363326120170701WTTBBZZBW22222122206398100000000120160112WT@@PZ09@22222122206398100000000 -T12023011111136335025000406021120313110835300000000000003920070000000000000000000000000000000261122222000000012219072 -T2202301111113633501219960723WT@99@99T2122222222221012209110730023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000055 -T320230111111363350120170402WT@WBY9ZB21222222204398100000000120160209WTTTB0TT#12122212204398100000000 -T12023011111136343520600402141110333110853300000000000005280480000000000000000000000000000000000222222000000002229021 -T2202301111113634352219790714WTTYWZ0WW2222211222215012206110055513089900000000000000000000000000000000000000000000000000000000000000000000000000072100000000 -T320230111111363435120080722WT@@W#B0Z22222122204307100000000120060207WTT#@Z@PP22222112204309100000000 -T12023011111136345122700408351120212110516300000000006504170990000000000000000000000000000000000222222000000002229072 -T2202301111113634511219800107WTTBYB@B01222222222225012214111010023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111363451520150112WTTZZBT0W22222212104398109140000 -T12023011111136349525600414951110323110835300000000000006540010000000000000000000000000000000000222222000000002229012 -T2202301111113634951219970227WT@#Z#T#B2222211222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113634951220010708WTTWP9W9P2222212222221011211190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111363495120210713WT@9TPY9W22222112204398100000000 -T12023011111136356224200402501120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111113635621219810422WT@Z0@YWZ2222122222223012213110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111363562120150427WT@Z@ZT#Z22221222204301100000000 -T12023011111136365620300400971120333120000300000000000005280140000000000000000000000000000000000222222000000002229022 -T2202301111113636562219840923WT@90ZT#92222212222211012210110006011089936000000000000000000000000000000000000000000000000000000000000235900000000075600000000 -T320230111111363656120070527WT@WZ#W0022222122204308100000000120050718WTT#WTZ0P22222112204309100000000 -T12023011111136369125600406521120313110835300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111113636911219850723WTT@9BZ@Y2222212222225012212110174323011800000000000000000000000000000000310001000000000000000000000000000000000000000000000768 -T320230111111363691120130107WTTPTBPPY22222122204302100000000120110323WTT@PT0PP22222112204304100000000 -T12023011111136373922000405321120312110751300000000000006540240000000000000000000000000000000000222222000000002229072 -T2202301111113637391219810318WT@TPW@0T2221222222221012214110910023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111363739120100909WTT#Z9P0W22222222204306100000100120060321WT@9PP9Z922212212204310100000000 -T12023011111136380220400400211120312110835300000000010006540600000000000000000000000000000000000222222000000002229072 -T2202301111113638021219890404WT@YB@ZT@2222212222221012210110860023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111363802120170324WT@W#PTWP22222122204398100000000120100101WTT0W@Z@T22222122204303100000100 -T12023011111136406821000411361120312110835300000000000006540710000000000000000000000000000000000222222000000002229072 -T2202301111113640681219920507WTTTYB@BW2222212222223012212110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364068120200121WTTYY#0YT22222112204398100000000120160201WTTB0T@0B22222122204398100000100 -T12023011111136411420800410751110213110376300000000000002040010000000000000000000000000000000000222222000000002229012 -T2202301111113641141219820313WT@9BPTYP2222211222225012216110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364114120060713WTTTWPPZY22222122204308100000762 -T12023011111136417421000403201120313110611300000000010003920360000000000000000000000000000000211122222000000002229012 -T2202301111113641741219870224WTTW99ZP@2221222222223012212110520823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364174120220305WT@YZTBYY22222222204398100000000120160305WT@@YBPZ@22222112204398100000000 -T12023011111136419022000400281120213110598300000000135005280050000000000000000000000000000000000222222000000002229012 -T2202301111113641901219800907WTT0@9B@B2222212222225012215210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364190120140712WT@9Z#Z@#22222212204302200000000 -T12023011111136424823300410111120423111034300000000000007710160000000000000000000000000000000000222222000000002229012 -T2202301111113642481219870902WT@0PZ#YZ2222211222222011216190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113642481219870412WT@@P9T0Y2222212222222021211190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364248120180712WT@9TBPP022222112204398100000000120060421WTTPT@#B922222112204308100000000 -T12023011111136428524200414721120312110834300000000000006540320000000000000000000000000000000000222222000000002229072 -T2202301111113642851219860226WTT#PBB#T2221222222221012212110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364285120210304WT@TY#@ZT22212212204398100000000120140323WT@Y@T#PP22212212204398100000000 -T12023011111136428925000403231120233110423300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111113642893219920323WT@TB0ZTT2222212222222012216110006011069948000000000000000000000000000000000000000000000000000000000000376400000000000000000000 -T320230111111364289120180322WT@@0#TBP12222122207398100000000 -T12023011111136439524200409731120332110766300000000000006540320000000000000000000000000000000000222222000000002229022 -T2202301111113643951219930527WT@#BWTZZ2122222222221012212110312923099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364395120150901WTTYWPTW@21222222204301100000000120120322WT@P@B0YP21222212204302100000000 -T12023011111136445825600400661120312110835300000000000003920130000000000035001000000000000000261122222000000012219072 -T2202301111113644581219760107WT@YPYZYT2222212222225012209110750023010200000000000000000001000000000000000000000000050001000000050000000000000000000000000000 -T320230111111364458120090227WT@YYTB#B22222112204307100000000120070223WTT@@Z0W#22222122204309100000000 -T12023011111136464324200404421120212110599300000000000003160260000000000000000000000000000000211122222000000012219042 -T2202301111113646431219820723WTTZW90#W2222212222221012212110322823011200000000000000000000000000000000000000000000000000000000000000000000000000000000001332 -T320230111111364643120190712WT@B0TPW022222112204398100000000 -T12023011111136472320800411931120212110611300000000000003690170000000000000000000000000000000132222122002600012219012 -T2202301111113647231219850322WT@@0#YTT2222212222221012213120184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364723120200923WT@BTB#YZ12222122204398100000000 -T12023011111136491625900402631120313110835300000000007006540100000000000000000000000000000000000222222000000002229012 -T2202301111113649161219970301WTT@@TT0B1222222222221012212210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111364916120210923WTTTW@@9T12222212204398100000000120190907WT@P9YP0@12222122204398100000000 -T12023011111136491823500402711120323110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111113649181219780127WTT90ZBPW2222212222222011214290085223011800000000000000000000000000000000160000000000000000000000080000000000000000000000000000 -T2202301111113649181219740127WT@BB0#YT2222221222222021214290085223011800000000000000000000000000000000160000000000000000000000150000000000000000000000000000 -T320230111111364918120070207WTTY#0T#922222212204309200000000 -T12023011111136497723900403801120232120000300000000000004170920000000000000000000000000000000000222222000000002229022 -T2202301111113649773219730101WTTZB00Z@2222211122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001333000000000000 -T320230111111364977120140127WTTT000#T22222122206302100000050 -T12023011111136498025900405231120333110704300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111113649803219710101WT@YBYT@T1222212222222012212110006011069939000000000000000000000000000000000000000000000000000000000000304800000000000000000000 -T320230111111364980120150304WT@B@Y9PZ22222112206301100000000120130923WT@9990ZY22222112206304100000000 -T12023011111136503824200409091120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113650381219980104WTTTYW#B@1222212222221012216110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365038120210918WTT9WZ##912222122204398100000000 -T12023011111136515525200402162120323210835300000000000006540070000000000000000000000000000000000222222000000002229032 -T2202301111113651551219850105WT@W9#ZTT1222222222223011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113651551219850927WT@PZ0Y0@2222211222221011216190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365155120220213WTTYZBP@W12222112204398100000000 -T12023011111136517020800414651120413110788300000000003005910160000000000000000000000000000000000222222000001802219012 -T2202301111113651701219760113WTT#@#PYT2221222222225012212110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111365170120070327WT@YYY##@22212222204308100000200 -T320230111111365170120200212WTT#0#BW922212222206398100000000120110923WTTZ9@Z#@22212222204304100000000 -T12023011111136519724200402501120212110611300000000000002110430000000000000000000000000000000000222222000003172219072 -T2202301111113651971219800213WT@Y@WBZ02222212222221012216111040023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365197120130326WT@9Y@##B22222122204303100000317 -T12023011111136530123500404531120612111395146890000000010090070000000000000000000000000000000000222222000000002229012 -T2202301111113653011219840421WT@PTYB@W2222221222221012214110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365301120150902WTTBT9ZZ#22222112204301100000000 -T320230111111365301120180126WTTW@#BWT22222122204398100000000120170421WT@P@#TW@22222112204398100000000 -T320230111111365301120210708WTT#W@#Y#22222122204398100000000120200208WTTPZP0WB22222122204398100000000 -T12023011111136543425100407671120413110530300000000000004690060000000000000000000000000000000000222222000000592219012 -T2202301111113654341219920723WTTZT@0##1222222222221012202290075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113654342219880113WT@YYBT9P1222221222221022204990006011079920000000000000000000000000000000000000000000000000000000000000120700000000000000000000 -T320230111111365434120210526WT@P0BTZ#12222222204398100000000420080721WT@YYBT9P12222212204307900000000 -T12023011111136556524200404051120213110611300000000002405280080000000000000000000000000000000000222222000000002229012 -T2202301111113655651219800307WT@T@090W2222212222223012214210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365565120110708WT@@PP@BP22222122204305200000000 -T12023011111136565823800410261120513111116300000000053400470160000000000000000000000000000000000222222000008412219012 -T2202301111113656581219870304WTTZ#@W992222212222225012212110164421011934000000000000000000000000000000000000000000000000000000000000209500000000000000000000 -T320230111111365658120130201WTTWB@Z9#22222122204304100000000120130201WTT#PZ@#Z22222112204304100000000 -T320230111111365658120150124WTTZ#B0BY22222122204302100000000120130201WTTBY##BB22222112204304100000000 -T12023011111136568421700409521120213110598114720000005705280330000000000035010000000000000000000222222000000002229012 -T2202301111113656841219960727WTTP9#W9@1222212222225012212110243623011400000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T320230111111365684120190722WTT#PYYT@12222112204398100000000 -T12023011111136575121400410861120213110631300000000000005280210000000000000000000000000000000000222222000000002229012 -T2202301111113657511220010914WTT9Z0T@02222212222225012298110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365751120210922WTTB0#90T22222112204398100000000 -T12023011111136582224100400671120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111113658225219740427WTT#0#W#@2122222222225012212110006011069946000000000000000000000000000000000000000000000000000000000000522500000000000000000000 -T320230111111365822120090914WT@BBW@WP21222212209307100000000 -T12023011111136587122000400431110423110939300000000000000240010000000000000000000000000000000000222222000000002229012 -T2202301111113658711219810713WT@9TPY9W2222212222222011203290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113658711219830423WT@9TPY9W2222211222222021203290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365871120190304WTTWTYBYB22222122204398200000000120150404WT@W9PY#P22222122204301200000000 -T12023011111136590420600400801120233120000300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111113659043219870527WT@@P0W@Z2222212222221012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365904120210104WTT#BWPB922212222207398100000000 -T12023011111136594425900402721120622111339300000000000010090080000000000070004000000000000000403222221000000002229012 -T2202301111113659441219980314WT@TW@Z@#1222221222221011212190095123011800000000000000000001000000000000000000000000000000000000410000000000000000000000000000 -T2202301111113659441219990118WT@@W0WZB1222222222221011212110431723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111365944120180427WTT0W#P@012222212204398100000000120160927WT@0YB0Z012222222204398100000000 -T320230111111365944120200924WTTW@@@@012222222204398100000000120190424WTTTZW@P912222222204398100000000 -T12023011111136613924200404281120213110598300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111113661391219720708WTTY9BB0#2221221222224012208110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111366139120150301WTTWW0Y0922212222204398100000000 -T12023011111136618425000400451110232110925300000000000004170030000000000000000000000000000000000222222000000002229021 -T2202301111113661843219770704WT@Y@P0TY2122221222221012211110025811069920000000000000000000000000000000000000000000000000000000000000156400000000000000000000 -T320230111111366184120200104WTT0PPTTZ21222212206398100000000 -T12023011111136619425900414481120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113661942219880927WT@Z0YZ0P2222212222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111366194120050923WT@0ZPYYY22222122204311100000000 -T12023011111136621422000412971120213110599300000000000705260180000000000000000000000000000000000222222000000022219012 -T2202301111113662141219800721WT@YP#YTT2222212222225012216110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000001 -T320230111111366214120110904WTTB@P@9T22222112204305100000000 -T12023011111136623723500407161120233120000300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111113662375219780108WTTW0P9Y#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111366237120060307WT@BPZ0#@22222112209307100000000 -T12023011111136626324200408391120333120000300000000000005280840000000000000000000000000000000000222222000000002229022 -T2202301111113662633219660123WT@9ZBYB@1222212222222012215110006011069936000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111366263120120123WT@TBT#9T22212212206305100000000120090323WT@99TWWP22212222206307100000000 -T12023011111136627021000405411120212110611114720000100005280240000000000000000000000000000000000222222000000002229012 -T2202301111113662701220030413WT@ZZ@BZ02222212222221012211120253523011700000000000000000000000000240000000000000000000000000000000000000000000000000000000000 -T320230111111366270120200227WTTZWZ##022222122204398100000000 -T12023011111136633022000402321120412110954106900000000007710800000000000000000000000000000000000222222000000002229072 -T2202301111113663301219820208WT@BPWPP92221222222221012212110870023011700000000000000000000000000220004000000000000000000000000010000000000000000000000000000 -T320230111111366330120140918WTTYYPTWP22212212204302100000000 -T320230111111366330120200712WT@BTY#9B22212222204398100000000120140918WTT9YZ@TB22212222204302100000000 -T12023011111136638320700402052120313210826300000000010506540110000000000000000000000000000000000222222000000002229032 -T2202301111113663831220040923WT@@09#B@2222211222221012210190006023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111366383120220901WTTZ##WTZ22222112204398100000000120050726WTTT@BW0B22222122201310100000000 -T12023011111136647220800405391120232110516300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111113664722219840318WT@@@0WZ#2222212222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111366472120150421WT@@B@PT#22222122204302100000000 -T12023011111136651523800410261120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113665153219580214WT@P@B0P02222212222224012211120263411069926000000000000000000000000000000000000000000000000000000000000170200000000000000000000 -T320230111111366515120080712WTTZT#9#@22222112206307100000000 -T12023011111136656320600402131120233110611300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111113665633219790318WT@BTB99P1222222222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111366563120190926WT@@PY9W#12122222209398100000000 -T12023011111136673124200414351120412110939300000000000007710360000000000000000000000000000000000222222000000002229072 -T2202301111113667311219900426WT@#ZBZYZ1222222222223012209110960023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111366731120050927WTT#PZZPP12222212204310100000000 -T320230111111366731120120313WT@Z0Y#BY12222122204303100000000120050927WT@@99Z#P12222212204310100000000 -T12023011111136687824200410371120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111113668783219650304WTTY0BYZ#2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000553000000000000000000000 -T320230111111366878120070912WTTP#@#Y#22222122206309100000034120070912WT@@0Y9TT22222122206309100000034 -T12023011111136693224700409381120613111339300000000526006080210000000000000000000000000000000000222222000004012219012 -T2202301111113669321219790305WTTP#WTZ02222211222225012215110223821011727000000000000000000000000000000000000000000000000000000000000160100000000000000001300 -T320230111111366932120090711WTTYBBT9@22222112204307100000000 -T320230111111366932120140513WTT00P@#022222112204302100000000120110712WTT90PZBP22222112204305100000000 -T320230111111366932120190418WTTT0#BBW22222112204398100000000120170907WT@#P###T22222122204398100000000 -T12023011111136693821200414781120313110786300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111113669381219970107WT@9BWZ992222212222223012211110392123010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111366938120200907WT@@@T0Y022222112204398100000000120170721WTTZT0ZZ@22222112204398100000000 -T12023011111136696622000402371120313110776300000000001006540500000000000000000000000000000000000222222000000002229012 -T2202301111113669661219990721WTTB@90B#2122222222221012212110510923010100000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111366966120220122WT@Z9@P0Z21222212204398100000000120190108WTTZ9PZTW21222222204398100000000 -T12023011111136700324200403511120312110835300000000000006540260000000000000000000000000000000000222222000000002229072 -T2202301111113670031219860726WT@@WBBTY2222212222225012216110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111367003120140327WTTT0#0#022212112204301100000000120070223WT@T#TZY@22212112204309100000100 -T12023011111136707822000403351120412111034300000000000504620200000000000000000000000000000000308122222000000012219012 -T2202301111113670781219840423WT@9T9B9B2221221222223012212110213923010200000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111367078120150413WT@T#B@BZ21222222204398100000000 -T320230111111367078120180511WTTTYPYZ#22212212204398100000000120160718WT@YWTT@@22212212204398100000000 -T12023011111136710721000403201120423111034300000000000007710100000000000140003000000000000000000222222000000002229012 -T2202301111113671071219800304WTTZW#@YZ2222211222222011212190114923011800000000000000000001000000000000000000000000000000000000190000000000000000000000000000 -T2202301111113671071219810523WT@#Z90BW2222212222222021212190263423011800000000000000000001000000000000000000000000000000000000190000000000000000000000000000 -T320230111111367107120110507WT@9TTBZZ22222112204306100000000120070323WT@P0#BB#22222112205309100000000 -T12023011111136712424700406701120632111339127950000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111113671243219860712WTTPBZBTP2222212222223012210110114913069900000000000000000000000000000000000000000000000000000000000000245000000000000000000000 -T320230111111367124420060311WT@Y@PT#@22212112204310100000000 -T320230111111367124420140313WT@Z#@TWZ22222112204301100000000120120101WT@TWYPW922222122209302100000000 -T320230111111367124420210311WTT@T#W0P12222122204398100000000420160507WT@TW#ZPY22212112204398100000000 -T12023011111136721823500404821120413110959300000000080007320040000000000070003000000000000000000222222003800012219012 -T2202301111113672181219780127WT@T#T9#@2221221222221012216110174323011400000000000000000000000000000000000000000000000000000000260000000000000000000000000000 -T320230111111367218120100327WT@0ZW9YP22212222204305100000000 -T320230111111367218120120727WT@P##ZP022212212204304100000000120110126WTT@9BZPP22212212204304100000000 -T12023011111136735525600411701120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113673553219390321WTT00@TBY2222212122215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000721021300000000 -T320230111111367355120180927WTT#ZZ@YB22212222206398100000024 -T12023011111136747423500407611120523111199300000000125908880020000000000000000000000000000000000222222000000002229012 -T2202301111113674741219910727WT@P0W0@T2222211222221011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113674741219850304WT@T#TYZ#2222212222225011213110213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111367474120050718WTT@@BP9W22222112204311100000000 -T320230111111367474120170401WT@ZW@TZ022222122204398100000000120070327WTT@YPZP022222112204308100000000 -T12023011111136750024200409731120523111116300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111113675001219940509WTTB@#YBT2122211222221011210190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113675001219960701WT@9@0Y0@2222212222221011212190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111367500120140712WT@PPW@W021222222204398100000000 -T320230111111367500120210411WTTPT000922222112204398100000000120160107WTT#@BZTT22222112204398100000000 -T12023011111136767124200411401110213110493300000000000003740010000000000000000000000000000000000222222000000002229012 -T2202301111113676711219700701WTT0BYZ#Z2222211222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111367671120150112WTT@9##TP22222122204301100000000 -T12023011111136768422000407791110513111116300000000000004290070000000000000000000000000000000000222222000004592219012 -T2202301111113676841219960408WT@WW9#@Y2222212222223012216110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111367684120180304WT@W@0YBT12222112204398100000000120160413WTTZP9TT@22222122204398100000000 -T320230111111367684120190321WT@W9PBPT12222122204398100000000120180304WTT90@#@Y12222112204398100000000 -T12023011111136770524200403461120213110598300000000000005280450000000000000000000000000000000000222222000000002229072 -T2202301111113677051219780704WTT#@W#@Y2222212222225012216120620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111367705120100121WTTWP9#TB22222112204306100000000 -T12023011111136778020800411931120413110835300000000080005460430000000000000000000000000000000000222222000001082219012 -T2202301111113677801220010201WTT#P9Z@Z1222222222221012212290441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113677802219890912WT@YYBT9P1222211222221102203990006011079915000000000000000000000000000000000000000000000000000000000000090000000000000000000000 -T320230111111367780120210927WTTP@P@Z012222122204398100000000120190501WTT0#9@W@12222222204398100000000 -T12023011111136780725000401171120213110618300000000015005280080000000000000000000000000000000000222222000000002229012 -T2202301111113678071219870112WTTTPZWT#2221222222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111367807120220405WT@Y#PZ@@22222112204398100000000 -T12023011111136784924700409381120232110516300000000000002480310000000000000000000000000000000000222222000001692219022 -T2202301111113678492219760923WT@@TPZB#2222212122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000921001300000000 -T320230111111367849120160218WTTTZB0BB22222122204398100000219 -T12023011111136802924200404891120213110611103570000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111113680291219980204WT@9BY0ZW2221222222225012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368029120170204WTT#YWBP922212212204301100000000 -T12023011111136805920600407031120233120000111470000000004170700000000000000000000000000000000000222222000000002229022 -T2202301111113680593219770409WTTZPTPZW1122222222222012216110372313069900000000000000000000000000000000000000000000000000000000000000427600000000000000000000 -T320230111111368059120180412WTT9ZYTZT22222112206398100000000 -T12023011111136808324200404281120413110939300000000000007710340000000000000000000000000000000000222222000000002229012 -T2202301111113680831219980304WT@@YBP0W1221222222221012210110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368083120180227WTTPP0WYB11222222204398100000000 -T320230111111368083120220223WTT9BB9#Z11222222204398100000000120200912WT@P9WYBW11222212204398100000000 -T12023011111136820123500405271120213110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111113682011219930312WT@@BYY0@2221221222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368201120180113WT@ZPYTTW22212222204398100000000 -T12023011111136829920600414871120513111199300000000407508880430000000000000000000000000000000000222222000000002229012 -T2202301111113682991219910913WT@PWB9#@2222212222221012211110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000001225 -T320230111111368299120170427WTT9ZZ9YB22222112204398100000000120140111WT@T#0B0Z21222212204301100000000 -T320230111111368299120210724WT@0YW9P@21222212204398100000000120180912WTTTTZZP922222122204398100000000 -T12023011111136831225900402721110413110886115570000237501730250000000000000000000000000000000000122222000000002229012 -T2202301111113683121219920914WTTP9T9ZZ1222222222223012216110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368312120100523WTTPPPT#912222212204306100000230 -T320230111111368312120160726WTT#@PTYP12222222204398100000000120120409WTT9B#9T912222222204304100000230 -T12023011111136832022000405182120623211163300000000300010090030000000000000000000000000000000000222222000000002229032 -T2202301111113683201219790213WTTZ0B@PB2222122222222011215290045621011937000000000000000004000000000000000000000000000000000000390000000000000000000000000000 -T2202301111113683201219770907WTT@BP@TW2222121222222021215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368320120110302WT@9#W#TW22221212204305200000000120100323WT@Z090T022221222204306200000000 -T320230111111368320120170701WT@#@90@@22221222204398200000000120130327WTTBTZ@YP22221222204303200000000 -T12023011111136832423500407611120233110611300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111113683243219780302WT@BPTW0@2222212222221012211110620013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000040 -T320230111111368324120170127WT@WBZ9#022222122206398100000000 -T12023011111136834723500411471110433110521300000000000001020060000000000000000000000000000000000222222000000002229021 -T2202301111113683472219680305WT@YYBT9P2222122222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113683472219780423WT@YYBT9P2222121222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368347120090512WTTYZBT0922221222204307100000000120060307WT@P9Z#0W22221222204309100000000 -T12023011111136835324200407271120433111034300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111113683533219600709WT@YTBTP#2222212222223012212110620013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368353120080909WT@W#ZYZ@22222122206308100000000 -T320230111111368353120120701WTT@PYY9B22222112206304100000000120100513WTTB9Y9@#22222112206306100000000 -T12023011111136836922700401571120213110611111990000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111113683691219990309WTT#TW#T01222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000002300 -T320230111111368369120170721WT@TZBBBZ12222122204398100000000 -T12023011111136841823500414281120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113684183219610502WTTZ0T0BY2222212222222012208120006013069900000000000000000000000000000000000000000000000000000000000000234900000000000000000000 -T320230111111368418120100727WT@WZPTZW22222122206305100000000 -T12023011111136856824500405781120233120000300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111113685683219990904WT@#@W#PW1222222222221012212110006011069908000000000000000000000000000000000000000000000000000000000000460100000000000000000000 -T320230111111368568120060202WTTW@T#ZT12222212207311100000000 -T12023011111136861524200404891110413111133300000000000003480010000000000000000000000000000000000222222000000002229012 -T2202301111113686151219950112WT@T#TP0@2221222222221012210110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368615120120307WT@T#@90P22212212204301100000000 -T320230111111368615120220322WTTY9#PBT22212122204398100000000120160414WT@@@YT#Y22222212204398100000000 -T12023011111136863624200414021120213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111113686361219990913WTT@@0@BB2222222222221012213110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368636120210309WT@YWWTBY22222122204398100000000 -T12023011111136864224200414021120333110740300000000001005280270000000000000000000000000000000000222222000000002229022 -T2202301111113686421219830909WT@9#PB0Y2222212222225012216110580223099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368642120110126WTT0YWWYW22222122204305100000000420100101WT@WYW#PT22222112104306106920000 -T12023011111136877224700406741120213110598300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111113687721219890402WT@#YBYWW2222212222225012213110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368772120070701WTT9P9Z@#22222112204308100000000 -T12023011111136883223500410672110323210559300000000000004760010000000000000000000000000000000000222222000000002229032 -T2202301111113688321219860323WT@9TPY9W2222212222225011212210025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113688321219870527WT@9TPY9W2222211222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368832120130907WT@9TPY9W22222122204303200000000 -T12023011111136898924200407271120213110611300000000000003160360000000000000000000000000000000211122222000000012219012 -T2202301111113689891219870127WT@#YWP0B2222212222221012216110372323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111368989120200523WTT9WWW#T22222112204398100000000 -T12023011111136901524200404891120332110740300000000000005010990000000000000000000000000000000000222222002600012219022 -T2202301111113690152219880701WT@WBP@0Z2221222122211012211120045613109900000000000000000000000000000000000000000000000000000000000000000000000369056500000000 -T320230111111369015120170121WTT@T0TBZ22211222204398100000000120100109WT@PP9#YW12211222204304100000000 -T12023011111136903420600414251120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111113690341219940421WT@BTY@PW2222212222225013216190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111136908124700406631120233110376300000000011704170040000000000000000000000000000000000222222000000002229022 -T2202301111113690812219810918WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369081120200909WTTYZ9ZW912222112204398100000000 -T12023011111136928320600407031120233120000300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111113692833219810912WTTWT90Z02222212222222012214120213911069940000000000000000000000000000000000000000000000000000000000000474100000000000000000000 -T320230111111369283120210421WTT9T#@TP22222122207398100000000 -T12023011111136932322000408451120412110939300000000000007620430000000000000000000000000000000000222222000000092219012 -T2202301111113693231219890318WT@PZPBWW2222122222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000008 -T320230111111369323120180304WTTW#W9#T22222112204398100000100 -T320230111111369323120210405WT@YT#B9922222112204398100000000120200521WTT#0YY@@22222122204398100000000 -T12023011111136959124700413761120623111395300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111113695911219870513WT@9TPY9W2222211222221011201290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113695911219950123WT@9TPY9W2222212222221011201290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369591120140418WT@9TPY9W22222112204398200000000120120227WT@9TPY9W22222122204302200000000 -T320230111111369591120210101WT@ZTZ0WY22222112204398100000000120170504WT@9TPY9W22222112204398200000000 -T12023011111136961323500410671120213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111113696131219930908WT@@0@@WZ2222211222221012216110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369613120180712WTTZ00#0P12222112204398100000000 -T12023011111136962324200414851120623111395300000000000010090220000000000000000000000000000000000222222000000002229012 -T2202301111113696231219930904WT@B9ZY0Z2121211222221011216190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113696231219930724WT@P99@0T1221222222221011211110600023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369623120170923WTTYB#B@T11222222204398100000000120130911WTTW#TYW#11222222204302100000000 -T320230111111369623120210401WT@WW9#YB11222222204398100000000120190727WTT9T0B#B21222212204398100000000 -T12023011111136973824100402401120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111113697381219950121WTT0#0Z#@2222221222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113697381220000101WTTZB9@@92222222222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369738120200311WT@PP#PP022222212204398200000000 -T12023011111136976423500406851120313110835106060000000006540400000000000000000000000000000000000222222000000002229012 -T2202301111113697641219940726WT@TBT00W2222212222221012210110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369764120200321WTTPZT@#T22212222204398100000000120190127WT@@#0@0Y22212212204398100000000 -T12023011111136983924100414392120823211691300000000000012890050000000000000000000000000000000000222222000000002229032 -T2202301111113698391219890901WT@PP#@@T2222221222222011213290006021011941000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113698391219940701WT@Z@0PZZ2222222222222021212290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369839120150409WT@BPWBYY22222212204301200000000120130726WTTTB#B@T22222222204303200000000 -T320230111111369839120190404WT@#WZ9TT22222212204398200000000120170124WT@W#@BZP22222212204398200000000 -T320230111111369839120220707WTTT##9TP22222122204398100000000120220108WT@090WZB22222122204398100000000 -T12023011111136985624700409321120723111480300000000040011650070000000000000000000000000000000000222222000000002229012 -T2202301111113698561219680707WT@WY##ZW2222211222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113698561219750722WT@TTYWB#2222212222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369856120060107WT@9TPY9W22222122204310200000000 -T320230111111369856120110709WT@YWB9ZZ22222112204306200000000120090502WTTBYWZB922222122204308200000000 -T320230111111369856120170109WTTB@YBWP22222112204398200000000120170109WTT9#BT@W22222112204398200000000 -T12023011111136989221000404551120213110576300000000000005280480000000000000000000000000000000000222222000000002229072 -T2202301111113698921219780226WTTBZYZ#T2222212222223012213111230023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369892120130411WTTY90WYP22222122204302100000050 -T12023011111136992424200407311120313110835300000000388706540050000000000000000000000000000000000222222000000002229012 -T2202301111113699241219910512WT@BPP09P2222212222221012214110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369924120150123WTT99B0ZT22222122204301100000000120120214WTT@9@WY#22222112204304100000000 -T12023011111136995623500411471120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111113699561219860702WTTP9Y0YZ1222211222222011212990114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113699561219900918WT@PY0#TY1222221222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111369956120110326WTT0#YB0P12222222204302200000000 -T320230111111369956120190123WT@BT@Y@Y12222112204398200000000120130321WT@TB90ZW12222222204301200000000 -T12023011111136997322700401571120433110939300000000000006540200000000000000000000000000000000000222222000000002229022 -T2202301111113699732219890101WT9TTZB@B1222222122211012211110006013109900000000000000000000000000000000000000000000000000000000000000000000000267066700000000 -T320230111111369973120130905WT@TTT#T922222222204303100000000 -T320230111111369973120210405WT@0@##PP12222212204398100000000120180709WTT@0@WPZ12222222204398100000000 -T12023011111137015722000407231120213110598300000000006505280050000000000000000000000000000000000222222000000002229012 -T2202301111113701571219980222WTT0ZTZB#2222212222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111370157120210418WT@B#T90022112122204398100000000 -T12023011111137020625900402121120713111575107510000001707000410000000000000000000000000000000000222222000000002229012 -T2202301111113702061219830311WT@W@ZBYY1222222222223012214110421821011748000000000000000000000000000000000000000000000000000000000000092800000000000000000000 -T320230111111370206120070711WT@PYPZB912222222204309100000000120060911WTT09ZW@T12222222204310100000000 -T320230111111370206120100423WTTPBY#BT12222212204306100000000120090118WTTYT0#BW12222212204306100000000 -T320230111111370206120180314WT@9BBY0B12222212204398100000000120130305WTTWBT00Z12222222204301100000000 -T12023011111137020720600409772110323210376300000000000005690010000000000000000000000000000000000222222000000002229032 -T2202301111113702071219810104WTT@#PB0T2222122222221011212990025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113702071219770226WT@0Y0@W@2222121222222021212990025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111370207120120423WT@YBYB0B22221222204304900000000 -T12023011111137033120600402141120233110516300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111113703312219920704WT@B0WZ@P2221222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000070600000000 -T320230111111370331120160126WT@P9BWWP22212212204398100000000 -T12023011111137037222000412691120412110939300000000000006200760000000000000000000000000000000000222222000001512219072 -T2202301111113703721219890318WT@TZ#TTW2222212222225012212120750023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111370372120160922WTTZB#Y##22222122204398100000187 -T320230111111370372120200221WT@WB0@9T22222122204398100000027120180902WT@ZTWBYY22222122204398100000187 -T12023011111137057620600411031120413110939300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111113705761219840312WTT9Y#0WW2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000002167 -T320230111111370576120200702WTT@TTBYT22222122204398100000000 -T320230111111370576420210705WT@9#9PZP22222112104398109140000420210705WTTZWYP@022222112104398109140000 -T12023011111137069123500414911120233120000300000000000004170940000000000000000000000000000000000222222000000002229022 -T2202301111113706913219660413WT@YW00T#2222212222224012212110006011069942000000000000000000000000000000000000000000000000000000000000327900000000000000000000 -T320230111111370691120140112WTTB@@0ZP22222112206398100000000 -T12023011111137074825900406081120333110670300000000000004200990000000000000000000000000000000000222222000001082219022 -T2202301111113707483219730226WTT0#ZBB#1222222222222012209210006011069971000000000000000000000000000000000000000000000000000000000000299200000000000000000150 -T320230111111370748120100312WTT090BP022222212206305100000054120070322WT@TZT#W#12222212206308100000054 -T12023011111137077220600402141120333120000300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111113707723219640201WT@TWZWY92222211222225012212110006011069936000000000000000000000000000000000000000000000000000000000000324000000000000000000000 -T320230111111370772120100304WT@Y#W##022222122206305100000050120090112WT@@TTWY#21222222206306100000050 -T12023011111137079122000402891120313110835300000000150006540030000000000000000000000000000000000222222000000002229012 -T2202301111113707911219770718WT@##9WZP2222212222221012216110471323011800000000000000000000000000160002000000000000000000000000000000000000000000000000000000 -T320230111111370791120190913WTT@ZYPY022222112204398100000000120180912WTTP###PY22222122204398100000000 -T12023011111137082420800410781120813111691300000000007612890190000000000000000000000000000000000222222000000002229012 -T2202301111113708241219830714WT@B#Z9YP1222212222223012213110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111370824120050126WT@@PWPPZ22222122204312100000000 -T320230111111370824120090309WT@BY9ZPW22222122204307100000000120060312WTTW@WYPB22222122204310100000000 -T320230111111370824120130707WTTY9TZ#P22222122204303100000000120120421WTT0WBYWW22222122204305100000000 -T320230111111370824120160107WT@PY#W0W22221212204398100000000120150523WT@WP9##W22221222204301100000000 -T12023011111137085424200411401120613111359300000000000010090030000000000000000000000000000000000222222000000002229012 -T2202301111113708541219850504WT@0Y#YW#1222212222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111370854120050904WT@PWY9ZT12221212204310100000000 -T320230111111370854120100712WT@0@#Z0Z12221222204306100000000120070527WT@TY#PPP12221222204308100000000 -T320230111111370854120200518WT@WP#WWZ12122222204398100000000120110907WT@99@9T012221222204305100000000 -T12023011111137088020600414871120333110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111113708802219840204WTT##YYY#2222212222211012212120610013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111370880120160513WT@@0Y#0#22222112204301100000000120150224WT@TYZ9Y#12222112204302100000000 -T12023011111137094023800401511120312110835300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111113709401219910712WTT9TTTW@2222212222225012212111100023011400000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111370940120140905WT@W@Z9P022222112204398100000000120110212WTTTWBT0B22222122204303100000000 -T12023011111137099322000407791120213110376300000000000204590060000000000000000000000000000000000222222000000002229012 -T2202301111113709931219960322WT@000B9W2221222222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111370993120220722WT@9TPY9W22212222204398100000000 -T12023011111137103622000408341120212110611300000000000004750070000000000000000000000000000000000222222005200012219072 -T2202301111113710361219810112WT@ZB9BBT2122222222221012211110800023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111371036120070721WTTWYB9Z@21222112204308100000000 -T12023011111137108825000403231120323110396300000000000003920210000000000000000000000000000000261122222000000012219012 -T2202301111113710881219880107WTTZT9WTW2222212222221011211110510923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113710881219750422WT@W@YBWP2222211222221011212190223823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111371088120120218WT@P0Y09W22222122204304100000000 -T12023011111137110725900406081110233110292300000000000000280010000000000000000000000000000000000222222000000002229021 -T2202301111113711072219740412WT@YYBT9P1222222222225012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111371107120050913WT@#0#Y@012222222204312100000267 -T12023011111137126925900406841120523111199300000000000808880260000000000000000000000000000000000222222000000002229012 -T2202301111113712691219960107WT@WBTPPP1222222222221011212190006023011800000000000000000000000000000000000000000000000000000000400000000000000000000000000000 -T2202301111113712691219970709WTT0YPYY@1222221222221011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111371269120110727WTTYBWZ0B12222222204304100000000 -T320230111111371269120210323WTTYT#W#012222222204398100000000120190924WTT@BY09Z12222222204398100000000 -T12023011111137134325900402831120313110803300000000000506540110000000000000000000000000000000000222222000000002229012 -T2202301111113713431220010514WTTP0ZYTT2122222222221012211120293123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111371343120220113WT@BYP9T912222212204398100000000120180323WT@9WBWW#22212212204398100000000 -T12023011111137134925200407301120213110598108470000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113713491219980727WTTW0PYBP2222212222223012212110055521011720000000000000000000000000000000000000000000000000000000000000139700000000000000000000 -T320230111111371349120210727WTT0TWZBW22222122204398100000000 -T12023011111137144123500411472120212210566300000000000504170620000000000000000000000000000000000222222000000002229032 -T2202301111113714411219720923WTTT@YTBB1222222222221012205210570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111371441520110714WTTYY#PZZ12222222104306109140000 -T12023011111137154121400408021120333110611300000000080005280120000000000000000000000000000000000222222000000002229022 -T2202301111113715412219990411WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111371541120210402WTTBYBYBB12222222204398100000000120160709WT@YZ0#P912222122204398100000000 -T12023011111137170820600412561120233110446300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111113717085219840404WTTBT0@WP2222212222222012212110600011069999000000000000000000000000000000000000000000000000000000000000201100000000000000000000 -T320230111111371708120160504WTTZYZZP#22222122209398100000000 -T12023011111137189122000405841120532111116300000000000005280510000000000000000000000000000000000222222000000002229022 -T2202301111113718912219860518WTTT#W0TW2221222222211012212120085213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111371891120170123WTTZWP0T@22212212204398100000000120140712WT@W0WP#922212212204398100000000 -T320230111111371891420100311WTT9TPTT#22212212104304109000050420060905WT@9P#Z9P22212212104309109000050 -T12023011111137203923900408801110213110516300000000000003230010000000000000000000000000000000000222222000000002229012 -T2202301111113720391219970407WT9TTT00T2122222222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372039120210411WT@Z9Z99Z21222222204398100000400 -T12023011111137221725900406841120313110835300000000000003920090000000000000000000000000000000261122222000000012219042 -T2202301111113722171219860727WTTYYP#BY2222211222221012211110045623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372217120200413WT@TWP@Y@22222112204398100000000120180712WT@00BTYP22222112204398100000000 -T12023011111137223122000407241120332120000300000000000005280900000000000000000000000000000000000222222000000002229022 -T2202301111113722312219810413WTT0TPPPB2221222222213012212120006011089926000000000000000000000000000000000000000000000000000000000000207200000000091400000000 -T320230111111372231120130312WTT0YPYBZ22212222204302100000000120060507WTTY#B0WY22212212204310100000000 -T12023011111137242622000410051120213110598300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111113724261219910304WTTYYZWZT2221222222221012213110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372426120210727WTT9Z0#WY22212212204398100000000 -T12023011111137247923500402711120232110516300000000040004170210000000000000000000000000000000000222222000000002229022 -T2202301111113724792219740222WT@#ZYZZ92222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111372479120150523WT@BZWYY022222112204301100000000 -T12023011111137249421700406141120313110835300000000003704540240000000000000000000000000000000000222222000002002219012 -T2202301111113724941219950305WT@W9WP@Z2222212222223012212110303023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000200 -T320230111111372494120220501WT@BB@PZW22222122204398100000000120180702WTTWTYPWB22222122204398100000000 -T12023011111137251422000400811120333110835300000000000005280840000000000000000000000000000000000222222000000002229022 -T2202301111113725142219810901WT@@#9ZZW2221222222214012216110680013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111372514120120708WTT0BPWZ@22212212204304100000000120110921WT@P@P0B#22212212204304100000000 -T12023011111137261524200411401120312110569300000000000003920170000000000000000000000000000000261122222000000012219012 -T2202301111113726151219900721WT@B0T#PY2222212222223012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372615120160723WT@WZWPT#22222122204398100000039120140421WT@9BY0#Y22222112204302100000000 -T12023011111137264320300401721120313110626300000000000504740380000000000000000000000000000000000222222000001802219012 -T2202301111113726431219850313WT@P@W@902222212222225012212120392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372643120180707WT@BT0PPT22222112204398100000000120080527WTTYZ0TY922222112204307100000180 -T12023011111137266022000400581120412110939300000000000004620200000000000000000000000000000000308122222000000012219072 -T2202301111113726601219790418WTTW9BW#Z2222212222221012212111080023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372660120050721WT@B#00BY22222112204310100000100 -T320230111111372660120170913WT@TY9Z@922212212204398100000000120070323WTTP0999P22222112204308100000000 -T12023011111137267521700406141120213110611300000000000505280020000000000000000000000000000000000222222000000002229012 -T2202301111113726751219990418WT@0W@0092222122222221012211110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372675120180118WT@@9Y@YP11222212204398100000000 -T12023011111137270422000412971120233110258300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113727042219740904WT@YYBT9P1222222222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372704120110721WTT09PZT#12222222204305100000000 -T12023011111137271725600414551120413111034300000000003507210070000000000000000000000000000000000222222000000002229012 -T2202301111113727171219910502WT@TTBPY92222212222221012216110332723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111372717120120423WT@@9@YZB22222122204305100000000 -T320230111111372717120220701WT@Y@#P0W22222112204398100000000120140427WTT09@Y9022222122204303100000000 -T12023011111137281422000413731120313110786300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111113728141219940318WT@Z0P9Z#2222222222221012213120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372814120210701WT@T90#0P12122222204398100000000120150721WTT#YWPZB22212212204301100000000 -T12023011111137287224700401281110412110939300000000000004170240000000000000000000000000000000308122222000000462219072 -T2202301111113728721219750409WT@PP@T@B2222212222221012212110780023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372872120100323WT@T#WPTB22222122204305100000000 -T320230111111372872120150727WT@BB9W#T22222122204398100000000120110301WT@@ZBTZB22222122204304100000000 -T12023011111137290322000408891120312110740300000000007205280990000000000000000000000000000000000222222000000002229072 -T2202301111113729031219770904WTT@ZBT0Z2221222222223012216112480023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372903120060212WTT#PZ#0T22212212204309100000000420060113WT@WT@@9W22212212104309109140000 -T12023011111137296824700409322120623211339300000000000010090100000000000000000000000000000000000222222000000002229032 -T2202301111113729681219920724WT@#T##P92222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113729681219940109WTTP#PZY@2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111372968120160421WTTBZ0PTZ22222122204398200000000120140723WT@99YT@Z22222122204398200000000 -T320230111111372968120200218WTTYBB9BT22222112204398200000000120180404WT@BPBT9022222112204398200000000 -T12023011111137297520600402131120233110376300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111113729755219770427WTTB0TP9Y2222212222225012213110411911069940000000000000000000000000000000000000000000000000000000000000400000000000000000000000 -T320230111111372975120060712WT@WB09PP22222112209309100000000 -T12023011111137303622000404841120213110598300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111113730361220000426WTTBTZ0TP2122222222221012210110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373036120170711WTTY#Z0#W22212212204398100000000 -T12023011111137324824200401241120233120000112270000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111113732483219750701WTTWWWYTP2222212222222012298120006013069900000000000000000000000000000000000000000000000000000000000000484600000000000000000000 -T320230111111373248120180704WTTZ#T0YT22222112207398100000000 -T12023011111137337424200407271120213110598300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111113733741220030323WTT#@BYP02221222222221012208110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373374120210104WT@BBPWP#22212222204398100000000 -T12023011111137340322000411281120623111395300000000000010090020000000000000000000000000000000000222222000000002229012 -T2202301111113734031219920427WTTP#WYPW2222121222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113734031219910227WT@T#Z9PW2222122222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373403120150309WT@#9@ZZ#22221222204301200000000120120108WTTBWB@BT12221222204302200000000 -T320230111111373403120210402WTTW@W@BP22222212204398100000000120180904WTT#@Y0PZ12222212204398100000000 -T12023011111137342620300400971120213110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111113734261219810726WT@B9TTT92222212222223012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373426120150908WTTTTW@WT22222112204301100000000 -T12023011111137343422000410381120313110786126040000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111113734341219930914WT@9#BP@P2221222222221012213110550523010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111373434120210412WTTBZBYWW22222212204398100000000120130102WTTZTWBY#22212222204303100000000 -T12023011111137345822000405701120313110835300000000021606540030000000000000000000000000000000000222222000000002229012 -T2202301111113734581219880107WTTPT#Y0W1222222222225012216110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373458120130708WTTP9T00B12222212204303100000000120070518WTTB#0W#Y12222212204310100000000 -T12023011111137347124200400491110213110611300000000000101360460000000000000000000000000000000000222222000003922219072 -T2202301111113734711219780913WTT0##WZB1221221222225012212110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373471120080324WTTTY#9TY12212222204306100000000 -T12023011111137350422000405841120533110766300000000000006540190000000000000000000000000000000000222222000000002229022 -T2202301111113735042219910924WT@YYBT9P2221222222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113735042219830223WT@YYBT9P2221221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373504120150327WTT#T#BWW22212212204398100000000 -T320230111111373504120210327WT@#ZT9BT22222212204398100000000120170127WTTBWTWWB22212222204398100000000 -T12023011111137355324200403511120312110835300000000000006540590000000000000000000000000000000000222222000000002229072 -T2202301111113735531219860509WT@Y90Z9W2221222222225012216110930021011800210000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111373553120140505WTTY9T#Z@22212222204302100000000120070114WT@#@B00P12222222204309100000000 -T12023011111137362222000408891120113110376300000000000004170060000000000000000000000000000000000222222000000002229072 -T2202301111113736221219820712WT@ZY#TT92221222222221013216190660023010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T12023011111137371220600400801120313110835300000000020006540060000000000000000000000000000000000222222000000002229012 -T2202301111113737121219970426WT@ZYWT#P2222212222221012216110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373712120180323WT@Y@@T@022222112204398100000000120160427WT@B@@BWW22222112204398100000000 -T12023011111137373425600400661120213110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111113737341220020912WTTWTPY0W2222212222221012211110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373734120210327WTT@@#Y@Z22222112204398100000000 -T12023011111137379423500402711110233120000104170000000003900010000000000000000000000000000000000222222000000002229021 -T2202301111113737943219710511WTT#Y9BW#2222212222221012215120006011069931000000000000000000000000000000000000000000000000000000000000933200000000000000000000 -T320230111111373794120130109WT@ZZP9#922222122207302100000000 -T12023011111137383522000413731120332120000117500000000005280290000000000000000000000000000000000222222000000002229022 -T2202301111113738352219880921WTT@BTWPY2221222222211012211110154511089944000000000000000000000000000000000000000000000000000000000000539500000000082200000000 -T320230111111373835120140312WT@BY99B#22212212204301100000000120090713WT@9T#99W22212222204306100000000 -T12023011111137390522000409211110113110291300000000000002550010000000000000000000000000000000000222222000000002229012 -T2202301111113739051219860904WT@@Y@WTB2221212222221013212190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111137394623500410671110213110579300000000000001130010000000000000000000000000000000000222222000000002229012 -T2202301111113739461219870902WTTP#Y0T02222211222221012212110263421011709000000000000170000000000000000000000000000000000000000000000055500000000000000000000 -T320230111111373946120170907WT@B99@#W22222212204398100000000 -T12023011111137398423500410671120212110631300000000000005280150000000000000000000000000000000000222222000000002229072 -T2202301111113739841219780311WTTZ9YT9#2222212222221012208111590023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111373984120100302WT@PBZ0TW22212212204305100000000 -T12023011111137409522000403351120232110493300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111113740952219830123WTTYBZBTZ2221222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111374095120180513WTTBZ9#WW22212212204398100000000 -T12023011111137410825600400661120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111113741081219930912WT@PTBYPB1222212222221013298190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111137411325800413571120113110376300000000003004170020000000000000000000000000000000000222222000000002229012 -T2202301111113741131220040111WTT@@PYT@2222212222221013211110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111137422922000411551120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111113742291219880723WTT#WYZZ@2212221222222011212290045623011800000000000000000000000000000000210001000000000000000000000000000000000000000000000000 -T2202301111113742291219920913WTT@T@9#02212222222222021212290045623011800000000000000000000000000000000210001000000000000000000000000000000000000000000000000 -T320230111111374229120210427WTT@PWZ9@22122212204398200000000 -T12023011111137424423500400891110232120000118900000000002690010000000000000000000000000000000000222222000000002229021 -T2202301111113742443219700305WT@@B9#PP2222212222221012214110312913069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111374244120190201WTT#WPPWZ12222212206398100000000 -T12023011111137429922000410221120633111034300000000040007710150000000000000000000000000000000000222222000000002229022 -T2202301111113742992219860713WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113742992219820904WT@YYBT9P1222211222222022298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374299120090222WT@B0WT#Y12222112204307100000000120070918WT@@9BZ9P12222222204309100000000 -T320230111111374299120150421WTTBYTWPY12222122204303100000000120110318WT@PP000912222112204305100000000 -T12023011111137433524700408301120413110939300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111113743351219880722WTT@0YY9#2222212222221012212110065421011730000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374335120130727WTT09T9#922222122204303100000100 -T320230111111374335120180922WT@PWB@B922222122204398100000013120160501WT@Z@Y@T@22222112204301100000000 -T12023011111137435122000408561110212110675300000000100005280280000000000000000000000000000000000222222000000002229012 -T2202301111113743511219800423WT@ZW00TP2221222222225012209210293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374351120080423WT@WT9B@Z22212212204308200000000 -T12023011111137437522700407441120333110376300000000010004170020000000000000000000000000000000000222222000000002229022 -T2202301111113743752219860714WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374375120150718WTTTWTYYY12222212204301100000000420050709WT@YYBT9P12222212204311900000000 -T12023011111137438122000411282120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111113743811219840724WTTWYTBTZ2222212222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113743811219800726WTTWZWPBZ2222211222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374381120150101WT@P#T90@22222122204301900000000120090718WT@B@WBYY22222122204307200000000 -T12023011111137438223500404531120213110611300000000000003780120000000000000000000000000000000000222222000001502219012 -T2202301111113743821219940204WTTTZ@9ZZ2222212222221012212120124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000150 -T320230111111374382120180408WTT90ZBYP22222112204398100000000 -T12023011111137439124200409091120313110855300000000000006540020000000000000000000000000000000000222122000000002229012 -T2202301111113743911219930327WT@90PYW02222212222225012211120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374391120170401WT@9Z@Y@B22222122204398100000000120160422WTTT#Z9#022222112204398100000000 -T12023011111137444224700405901120312110764300000000000006540390000000000000000000000000000000000222222000000002229012 -T2202301111113744421219960322WTT@YZY0T2222212222221012216110441623011800000000000000000000000000040000000000000000000000000000330000000000000000000000000000 -T320230111111374442120200401WT@@@0PW#22222122204398100000050120180702WTT@B90ZW22222122204398100000050 -T12023011111137444422000407411120423111034300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111113744441219810109WT@W0@P#T2222212222222011212290085223011800000011000200000000000000000000150001000000000000000000070000000000000000000000000000 -T2202301111113744441219840914WT@9WW0PZ2222211222222021214290085223011800000020000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111374444120120923WTTWBY00W22222122204307200000000120080704WT@9TPY9W22222122204305200000000 -T12023011111137449923500405981120213110611108680000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111113744991219860526WT@9TPY9W2222212222222012216210114923011400000000000000000000000000000000000000000000000000000000160000000000000000000000000000 -T320230111111374499120170323WT@9TPY9W22222122204398200000000 -T12023011111137450421200403951120333120000300000000020005280570000000000000000000000000000000000222222000000002229022 -T2202301111113745043219660401WTT0Y@Z@92222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374504120130123WT@WY9#@P22222122206302100000000120090923WT@@P#W9#22222122206307100000000 -T12023011111137452422100406981110323110740300000000000001050010000000000000000000000000000000000222222000000002229012 -T2202301111113745241219910709WT@B@Z#WY2221222222221011214190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113745241219900323WT@#9Y@WW2222211222221011214190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374524120210912WTTTP0WTY22212212204398100000000 -T12023011111137457723500411471120523111116300000000005608880100000000000000000000000000000000000222222000000002229012 -T2202301111113745771219960124WT@Z@PPTY2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000390000000000000000000000000000 -T2202301111113745771219960922WTT#TBTWW2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374577120160123WTTPWY0BP22222122204398200000000 -T320230111111374577120200327WT@W990#P22222122204398200000000120180527WTT0YW0@#22222112204398200000000 -T12023011111137458424200408391120333110516300000000030205070240000000000000000000000000000000000222222000000212219022 -T2202301111113745842219920318WT@YYBT9P1222212222221012212910006011079910000000000000000000000000000000000000000000000000000000000000058600000000000000000000 -T320230111111374584120150327WT@ZTB00T12222122204398100000108120150104WT@Z9YY9W12222112204398100000575 -T12023011111137458524200414851120433110987300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111113745853219880423WTTW#PW#W2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000113300000000000000000000 -T320230111111374585120140312WTTTTY#0P22222122209301100000000 -T320230111111374585420170412WT@##T9ZW22222122204398100000000420170405WT@B9@99922222122209398100000000 -T12023011111137464420800411991120213110611300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111113746441219830321WTTZ@9YTW2222212222221012213110352523011400000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T320230111111374644120110423WT@#B#BZ@22222122204304100000000 -T12023011111137465024200414021120233120000300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111113746503219590126WT@T09PYP2222212222222012298110006013079900000000000000000000000000000000000000000000000000000000000000174000000000000000000000 -T320230111111374650120140404WTT#BT0WB22222122206301100000050 -T12023011111137468223500402712120523212232300000000030008880020000000000000000000000000000000000222222000000002229032 -T2202301111113746821219850902WT@9TPY9W2222211222222011216290035723011800000000000000000002000000000000000000000000000000000000250000000000000000000000000000 -T2202301111113746821219840713WT@9TPY9W2222212222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374682120100212WT@9TPY9W22222112204305200000000 -T320230111111374682120210912WT@9TPY9W22222122204398200000000120150326WT@9TPY9W22222122204398200000000 -T12023011111137476124700409381120323110766300000000000003920450000000000000000000000000000000261122222000000012219072 -T2202301111113747611219860105WTTPPBP9@2222212222225011212111370023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113747611219870726WTTPWT9WZ2222211222225011212110610023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374761120170914WTTTWTWZZ22222122204398100000000 -T12023011111137478824200409841120233110376300000000100004170490000000000000000000000000000000000222222000000002229022 -T2202301111113747882219950509WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111374788120140324WTTBWZTW912222222204301100000050 -T12023011111137483825900403551120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111113748383219620312WTTT9Y0ZW2222212222222012209110065413069900000000000000000000000000000000000000000000000000000000000000578100000000000000000000 -T320230111111374838120110723WT@WPPPWY22222122206304100000000120100311WTT@Z9P#@22222122206305100000000 -T12023011111137497024200404421110213110611300000000000005280380000000000000000000000000000000000222222000000342219042 -T2202301111113749701219840501WT@#B0TZT2222212222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000001175 -T320230111111374970120060705WTTWZYZ@#12222112204309100000000 -T12023011111137501622000410051120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111113750161219980711WT@#TZZT01222222222221012212110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111375016120220907WTT9B@YTZ12222222204398100000000 -T12023011111137508724700406631120423111034300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111113750871219920407WTTZB0YB92222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113750871219940227WTT@Y@@Y#2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111375087120170926WTT9BPYBY22222122204398100000000120140324WT@T9Z@YW22222122204302200000000 -T12023011111137515825900402121120233110516300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111113751583219480723WT@B0Y@001222222122225012212120006013069900000000000000000000000000000000000000000000000000000000000000040000001705000000000000 -T320230111111375158120200409WTTPWYWTZ12222112206398100000000 -T12023011111137517020900411721120212110611300000000001103160240000000000000000000000000000000211122222000000012219012 -T2202301111113751701219990126WTTPYTZBT2222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111375170120200404WT@909T@P22222112204398100000000 -T12023011111137537625900406841120213110611300000000000003970170000000000000000000000000000000000222222000001312219042 -T2202301111113753761219920423WTTZTTWP@2122222222221012210110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111375376120210911WTT0@#WPP21222212204398100000000 -T12023011111137538125900400311120512111199117980000000008880330000000000000000000000000000000000222222000000002229012 -T2202301111113753811219980911WT@Z@@##01222212222221012216110124823010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111375381120160904WT@9P0@PZ12222112204398100000000120140207WT@B@W##912222112204302100000000 -T320230111111375381120200226WTTBTPWTT12222122204398100000000120190407WT@9YBP9@12222112204398100000000 -T12023011111137541820800414151120333110817300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111113754182219890123WT@ZTW9ZY2222211222211012212110144613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111375418120180124WT@ZT@0#B22222122204398100000000120160407WT@9090PZ22222112204398100000000 -T12023011111137548122000407241120313110835119400000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111113754811219840323WT@9TZT#T2221221222225012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111375481120210413WT@#9Y@ZB22212222204398100000000120090926WT@ZTZ#WP22212212204307100000000 -T12023011111137551922700408351120313110611300000000000203920130000000000000000000000000000000261122222000000012219012 -T2202301111113755191219770505WT@#0BBYP2222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111375519120140112WT@90Y@YB22212222204301100000000120070727WT@WYBW#B22212222204308100000000 -T12023011111137557120800411931120233110486300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111113755713219790326WTTYPB@YZ2222212222223012215120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111375571120170708WTTYZBZ0#22222112206398100000000 -T12023011111137571722000414501120233120000300000000500004170640000000000000000000000000000000000222222000000002229022 -T2202301111113757173219590526WTTTYZBY92222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111375717120070702WTTYBW#BB22212112206306100000000 -T12023011111137582225200412081120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113758223219580922WT@WT0W#P2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001710000000001280 -T320230111111375822120050909WT@#@YPW@22222122209311100000050 -T12023011111137589124700401011120213110611300000000004705280110000000000000000000000000000000000222222000000002229012 -T2202301111113758911219760304WT@90BPY92222212222225012212110114921011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111375891120140907WTTYTZBB022222112204303100000000 -T12023011111137590024200414351120213110611300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111113759001220010101WTTB9Y00@2222212222222013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113759005219680723WTT#TB@#02222211222222023212190006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111137603322000407791110113110281300000000000001610010000000000000000000000000000000000222222000000002229012 -T2202301111113760331219920721WT@#9YYZ92222212222221013216190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111137609124100402401120313110835300000000002506540070000000000000000000000000000000000222222000000002229012 -T2202301111113760911219910422WTT09#TT@2222211222221012211110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111376091120180107WTTPWBBZ@22222112204398100000000120170502WTTWY90@022222112204398100000000 -T12023011111137613525900405231120232110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111113761352219620123WTTBZ#ZW92222211222215012212110342613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111376135120060405WT@@B0T@Z22222122204310100000000 -T12023011111137618521000411361120423110893300000000000004620230000000000000000000000000000000308122222000000012219042 -T2202301111113761851219810127WT@PZWYWB2122222222221011213110283223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113761851219800707WT@PTT#T@2122221222221011209190006023011300000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111376185120170409WTT9TZBP@21222222204398100000000120140318WTT##Y9WZ21222212204398100000000 -T12023011111137618724200407311120233110516300000000000004170940000000000000000000000000000000000222222000000002229022 -T2202301111113761873219580104WTTYWP##Y2222212122225012212110134713069900000000000000000000000000000000000000000000000000000000000000000000001292000000000000 -T320230111111376187120090107WTTBYZ#BY22222112206307100000000 -T12023011111137628124200405921120213110611300000000139505280530000000000000000000000000000000000222222000000002229012 -T2202301111113762811219810723WTTP@@PWZ2222212222221012212110540621011741000000000000000000000000000000000000000000000000000000000000314300000000000000000000 -T320230111111376281120180127WTT00T0YP22212212204398100000000 -T12023011111137634222100401271120333120000300000000000005280260000000000000000000000000000000000222222000000002229022 -T2202301111113763423219560326WT@Y@#@0B2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001394000000000000 -T320230111111376342120170127WT@BZ909#22122112206398100000000120130701WT@@BW9@Y22122112206303100000000 -T12023011111137652620600414251120312110837123650000000006540390000000000000000000000000000000000222222000000002229012 -T2202301111113765261219860211WTT@9BY0W2222212222223012213110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111376526120210901WTTBPY@9W22222122204398100000000120200908WT@Z#9Z#Z22222112204398100000000 -T12023011111137662725000414191120212110516114720000005000010560000000000000000000000000000000000222222000000002229012 -T2202301111113766271219850327WT@PW@BW02122222222221012210110560411011700210000000000000000000000000000020000000000000000000000000000125600000000000000000000 -T320230111111376627120180421WT@WB00ZB21222212204312100000000 -T12023011111137665322000405842120922211902300000000150014160080000000000000000000000000000000000222222000000002229032 -T2202301111113766531219800721WTTW#999T2222211222222011208210025821011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113766531219870123WTTTBZPTB2222212222222021298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111376653120060123WTTY900WY22222122204309200000000 -T320230111111376653120120523WTT0Y@B0#22222122204303200000000120080721WT@090ZP022222112204306200000000 -T320230111111376653120160726WTT@B0B0T22222122204398200000000120140127WT@W9Z@0#22222122204398200000000 -T320230111111376653120220724WT@ZTPB@W22222212204398100000000120180718WTT0PPYZZ22222122204398200000000 -T12023011111137683622000401711120512111116300000000000005430050000000000000000000000000000000181222122000001642219012 -T2202301111113768361219940707WTT#PY0T#2221222222221012210120253521010111000000000000000000000000000000000000000000000000000000000000065000000000000000000000 -T320230111111376836120130523WTT0PT90@22212212204303100000000120100723WT@B#YB#@22212222207306100000000 -T320230111111376836120220102WT@W9YT0022222112204398100000000120160318WT@P#9WTZ22212212204398100000000 -T12023011111137694124200403941120312110766300000000000006530060000000000000000000000000000000000222222000000012219072 -T2202301111113769411219910904WTTP0#ZPZ2221222222221012216110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111376941120140113WT@YP90T022212212204301100000000120120502WTT@W9YTP22212222204304100000000 -T12023011111137711322000412231120233110470300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111113771133219850909WT@TBWB992221211122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001894000000000000 -T320230111111377113120140526WT@BZW#9P22212122207303100000000 -T12023011111137716325100407671120313110835300000000000006540560000000000000000000000000000000000222222000000002229012 -T2202301111113771631219800926WTTYWT@##2222212222223012216110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111377163120140712WT@@9Z00Z22222112204301100000000120090112WT@@@9W@@22222112204304100000000 -T12023011111137725124700402991120433120000300000000000006540090000000000000000000000000000000000222222000000002229022 -T2202301111113772515219640923WT@ZZ9@9P2222212222222012212110006011069940000000000000000000000000000000000000000000000000000000000000538300000000000000000000 -T320230111111377251120060713WTTTW009P22222122209311100000000 -T320230111111377251120170714WTT@WY99B22222112209398100000000120100223WTT9ZW0BY22222122209307100000000 -T12023011111137769422000408561120213110611300000000015005280320000000000000000000000000000000000222222000000002229012 -T2202301111113776941219960907WT@9TY#W#2222212222225012212210372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111377694120160509WT@@ZPTTB22222112204398100000000 -T12023011111137776722000407241120313110766300000000050006540100000000000000000000000000000000000222222000000002229012 -T2202301111113777671219850518WT@0W9PW#2222212222223012298210114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111377767120220721WT@@@9@ZW22222112204398100000000120180927WTTW0PZ0T22222122204398200000000 -T12023011111137780825800413571120413110939300000000000207710080000000000000000000000000000000000222222000000002229012 -T2202301111113778081220000123WTTTW0T0Y2222212222221012211110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111377808120190909WTT9PZ0@Y22222122204398100000000 -T320230111111377808120210721WT@WBBY#W21222212204398100000000120210721WT@P@T0@Z22222112204398100000000 -T12023011111137785625900402721120213110611300000000000005280330000000000035002000000000000000000222222000000002229072 -T2202301111113778561219850721WTT9@@ZY01222222222221012210111160023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111377856120200309WT@9TPY9W12222222204398100000000 -T12023011111137788524700406741120612111339300000000000006050600000000000000000000000000000000403122222000000012219072 -T2202301111113778851219880311WT@0#ZP#@2222212222221012212110890023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111377885120080927WTT#PZ#BT22222112204309100000000 -T320230111111377885120120309WTTB0PZZZ22212222204304100000000120100207WTTYP0TZZ12222122204307100000000 -T320230111111377885120190912WTTYP@PW#22222212204398100000000120140913WTT9B0B0B22212222204303100000000 -T12023011111137807822000406191120313110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111113780781219710726WT@0ZY0WY2222212222222012214210055521011826000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111378078120100414WT@9TPY9W22222122204307100000000120080507WT@9TPY9W22222122204308200000000 -T12023011111137812624700405901120332110740300000000000005280530000000000000000000000000000000000222222000000002229022 -T2202301111113781263219670918WTTW0ZZWY2222212222213012209120510913069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111378126120110427WTTYWZ99W22222122206305100000000120100221WTTZWBWP022222122206306100000000 -T12023011111137818220600400801120333110704300000000000005280550000000000000000000000000000000000222222000000002229022 -T2202301111113781823219490726WT@@ZTZB@2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001108000000000000 -T320230111111378182120140414WT@09BYT922222112206302100000000120120714WTTY@B0##22222112206303100000000 -T12023011111137826220600409001120413110987300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111113782621219720322WT@PWTWZZ2222212222223012215110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111378262120040113WT@Y09YTB22222112204310100000200 -T320230111111378262120110105WTT99TYBT22222122204305100000000120090318WT@0T@W0Y22222122204306100000000 -T12023011111137832523500409141110313110835300000000000004430010000000000000000000000000000000000222222000000002229012 -T2202301111113783251219850114WTTB99P9B2222122222221012212910105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111378325120210101WTTZY#00W22211222204398100000000120200423WTTZTPZ0W22211212204398100000000 -T12023011111137833422100414041120233110516300000000000004170970000000000000000000000000000000000222222000000002229022 -T2202301111113783343219590104WT@YYT9@@2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000994000000000000 -T320230111111378334120100907WTTP@WY#Z22222122206306100000050 -T12023011111137842022000404691120233110281300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111113784202219820104WT@YYBT9P1222212222221012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111378420120090511WT@BTWWWY12222112204307100000000 -T12023011111137886322000406951120213110599300000000000003160190000000000000000000000000000000211122222000000012219012 -T2202301111113788631219900411WTTPPP@902221222222221012216110233723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111378863120190707WTTP#0#9T22212212204398100000000 -T12023011111137893022000411131120313110766106000000000006540640000000000000000000000000000000000222222000000002229072 -T2202301111113789301219890202WTT9@YP#Z2222212222221012213110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111378930120170409WT@PYY#9P22222112204398100000000120080227WTTWTPTPB22222122204307100000000 -T12023011111137898824500403051120213110598300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111113789881219960108WT@Y#P99B2222212222221012208120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111378988120150204WTTP@Z0Z922222122204301100000000 -T12023011111137909224200403941120412111034300000000000405710360000000000035004000000000000000000222222000002002219012 -T2202301111113790921219870414WTT0#WP0P2221221222223012212110560423011400000000000000000000000000000000000000000000000000000000090000000000000000000000000200 -T320230111111379092120120123WT@TPB@W022212212204305100000000 -T320230111111379092120150921WTTP0#WTY22212212204302100000000120130722WTTZ#9#W#22212222204303100000000 -T12023011111137915521000403201120213110599300000000000003160200000000000000000000000000000000211122222000000012219012 -T2202301111113791551219790113WT@@TZYW#2222212222225012212110293123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379155120200122WT@T0ZPYW22222122204398100000000 -T12023011111137916524700413892110323210740300000000000001890010000000000000000000000000000000000222222000000002229032 -T2202301111113791651219960908WT@9TPY9W1222222222221011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113791651219900314WT@9TPY9W1222221222221011210290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379165120120409WT@9TPY9W12222212204304200000000 -T12023011111137917222000408561120232110516300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111113791722219630526WTTYY#P#P2222211222215012213111180013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111379172120110227WTTZT@#@B22222112204303100000000 -T12023011111137919920400407741120233120000300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111113791993219700714WTT9#TTWZ2222212222223012212110184213069900000000000000000000000000000000000000000000000000000000000000361600000000000000000000 -T320230111111379199120210301WT@90W9YP22222212206398100000000 -T12023011111137923225600411701120213110516300000000002000010040000000000000000000000000000000000222222000000002229012 -T2202301111113792321219770727WTT9#ZB@B2222212222225012213110233711011900210000000000000000000000000000120000000000000000000000000000135400000000000000000000 -T320230111111379232120050412WT@T#W@PZ22222122204311100000337 -T12023011111137926824700405901120212110611300000000005005280420000000000000000000000000000000000222222000000002229012 -T2202301111113792681219850412WT@900PTY2222212222221012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379268120180327WTT@9B#YZ22222122204398100000000 -T12023011111137935820600402141110113110376300000000000002690220000000000000000000000000000000154222221000000002229012 -T2202301111113793581219850721WTTY0PZW02222212222221013212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111137940924700411201120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111113794095219740123WT@BB@T@T2222212222222012212110065411069901000000000000000000000000000000000000000000000000000000000000102200000000000000000000 -T320230111111379409120220421WTTBY0BYY22222112208398100000000 -T12023011111137947122000407412120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111113794711219850126WT@W#Y9PP2222212222222011298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113794711219810726WT@ZY0WWY2222211222222021209290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379471120210708WT@YBBPZY22222112204398200000000120110405WTTB#0WYP22222112204305200000000 -T12023011111137949725900403711120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113794973219650713WTTZZYWZT2222212222225012216120154511069956000000000000000000000000000000000000000000000000000000000000592800000000000000000000 -T320230111111379497120130107WT@@ZP@ZW22212222206303100000000 -T12023011111137951225900402631120233110516300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111113795123219680512WTTYWWWZ#2222212222225012212110006011069913000000000000000000000000000000000000000000000000000000000000081300000000000009770000 -T320230111111379512120140401WT@@9#ZP#22222122206301100000000 -T12023011111137953722000405841120723111490300000000000011650070000000000000000000000000000000000222222000000002229012 -T2202301111113795371219910126WTTW9@Y#B2222211222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113795371219900114WT@W#YT9Z2222212222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379537120120707WT@#Y090#22222112204305200000000 -T320230111111379537120160223WT@Z#0BW@22222112204301200000000120150421WTT#9PZB#22222122204302200000000 -T320230111111379537120200118WT@Y@Y9@B22222112204398200000000120180507WT@B9W90922222112204398200000000 -T12023011111137954322500410151120613111339300000000000010090080000000000070003000000000000000000222222000000002229012 -T2202301111113795431219890111WT@TTBPZ@2122222222222012212110144623011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111379543120070927WTT00@P9B22222122204308100000000 -T320230111111379543120120118WTT9YPY@Z22222122204302100000000120090404WT@T##@#921222222204306100000000 -T320230111111379543120150127WTTW9@YY022222122204398100000000120130312WT@9TPY9W22222112204301100000000 -T12023011111137955320600409771120423111162300000000208007710020000000000000000000000000000000000222222000000002229012 -T2202301111113795531219690921WTTTBWT@#1222221222222011206190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113795531219780218WT@09ZPY#1222222222222021206190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379553120180301WT@Y#YB0Y12222222204398100000000120080527WT@#PTB##12222212204306100000000 -T12023011111137981625900406651120233110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113798163219770907WT@9@0Z002222212122211012212111040013069900000000000000000000000000000000000000000000000000000000000000000000000795013900000000 -T320230111111379816120070705WT@00@T##22222122206309100000000 -T12023011111137982320600400801120233110516300000000000002440160000000000000000000000000000000000222222000001732219022 -T2202301111113798233219660723WT@W@WTW92222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001341 -T320230111111379823120050408WT@@#9PZY22222122209310100000190 -T12023011111137984122000405701120323110766300000000000206300030000000000000000000000000000000000222222000000242219012 -T2202301111113798411219980918WT@TP9PBB2222212222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000023 -T2202301111113798411219970301WT@9TPY9W2222211222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379841120210223WTT@9Y#9Z22222112204398200000000 -T12023011111137984725800413571120413110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111113798471219900912WT@YT@9Y@2222212222221012212110372321011749000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379847120090323WTT0B@YZB22222112204306100000000 -T320230111111379847120180221WTTTZ##Z@12222212204398100000000120150727WTTZ#P0TT12222112204398100000000 -T12023011111137986623500407611120233110516300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111113798662219900927WT@YYT#0Z2222212222211012212110392111089917000000000000000000000000000000000000000000000000000000000000112800000000026000000000 -T320230111111379866120100726WTTZ0#0T@22222122204306100000000 -T12023011111137987125100407671120213110446300000000001005280070000000000000000000000000000000000222222000000002229012 -T2202301111113798711220000709WT@Z0@ZTT2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379871120220727WTTB0@0#Z22222122204398100000000 -T12023011111137991022000408891120513111116300000000000007930030000000000000000000000000000000000222222000000002229012 -T2202301111113799101219970404WT@YZ##Y#2222122222221012212110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379910120190904WT@T0Z0#B22221212204398100000000120170305WT@Y0YP#922221222204398100000000 -T320230111111379910120220302WT@T0PZPB22221222204398100000000120210909WT@W#YYZ022221212204398100000000 -T12023011111137992221400408021120632111034300000000050007710280000000000000000000000000000000000222222000000002229022 -T2202301111113799222219830923WT@YYBT9P1222212222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113799222219820713WT@YYBT9P1222211222222022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111379922120080723WT@YWZ#@012222122204307100000000120060504WTTPYZP#Y12222122204311100000000 -T320230111111379922120140524WT@@B@WZ012222222204302100000000120110713WT@B@9YPZ12222122204305100000000 -T12023011111138029525600403771120233110516300000000000204170990000000000000000000000000000000000222222000000002229022 -T2202301111113802953219620918WT@WZWB#Z2222212222215012213110600013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111380295120090902WT@YPW#@Z12222112206307100000000 -T12023011111138037925900406651120413110939300000000000006400940000000000000000000000000000000000222222000001312219012 -T2202301111113803791219890911WT@P90BZT2122222222223012208110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111380379120180221WT@ZPTT0011222222204398100000000 -T320230111111380379120210312WT@TP@9ZW11222222204398100000000120190122WT@Y#0WWY21222222204398100000000 -T12023011111138047622000410051120213110611119650000326600810180000000000000000000000000000000000222222002604212219012 -T2202301111113804761219930904WT@ZBYW@B2222212222221012212110194121011814000000000000000000000000000000000000000000000000000000000000084000000000000000000000 -T320230111111380476120210304WT@900ZW022222112204398100000000 -T12023011111138056421000414222120213210376300000000010005280030000000000000000000000000000000000222222000000002229032 -T2202301111113805641219830308WT@9TPY9W2222212222225012216210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111380564120170701WT@9TPY9W22222112204398200000000 -T12023011111138056622700408351120212110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113805661219930924WT@TBB@@@2222212222221012211110402023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111380566120200418WT@#9P0T#22222222204398100000000 -T12023011111138070124200414021120232110493300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111113807012219640104WT@TB000#2222212222213012212110580213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111380701120070409WT@#@Y#0P12222112204309100000000 -T12023011111138074622000404841120212110560300000000364003960220000000000000000000000000000000000222222002000012219072 -T2202301111113807461219710201WT@@B99PB2221222222221012214111470023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111380746520060418WTTW#0YYW22212222104310109140000 -T12023011111138076923500405271120313110835300000000100006540190000000000000000000000000000000000222222000000002229012 -T2202301111113807691219900713WT@@BZY9W2222212222221012212110382221011730000000000000000000000000000000000000000000000000000000000000287500000000000000000000 -T320230111111380769120210727WT@WZBYTB22122112204398100000000120120705WT@W0T@BY22222122204304100000000 -T12023011111138085322000411981120213110598300000000040405280120000000000000000000000000000000000222222000000002229012 -T2202301111113808531219940226WT@ZZ9YY#2221222222221012212110134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111380853120220227WT@TZYTP022212212204398100000000 -T12023011111138093620800414151120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113809363219540723WTT90P#9Z2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002527000000004599 -T320230111111380936120100318WTTW0W9TT22222112206306100000050 -T12023011111138099423500411471120213110618300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111113809941219890927WT@ZY@@T#2222212222221012212110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111380994120220226WTTBPB@0Y22222122204398100000000 -T12023011111138108422000408891110312110740300000000000101050410000000000000000000000000000000000222222000004162219012 -T2202301111113810841219880301WT@TZYZBT1222222222225012212210065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381084120220222WT@P@YYY012222212204398100000000120070707WT@YPYZBW12222122204309100000000 -T12023011111138112425900402631120233110258300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111113811242219750118WT@YYBT9P1222222222223012202910006011079903000000000000000000000000000000000000000000000000000000000000015000000000000000000000 -T320230111111381124120140701WT@@9B0PT12222122204301100000050 -T12023011111138113622000410051120413111034300000000000007710090000000000000000000000000000000000222222000000002229012 -T2202301111113811361219810423WTT0@Y#901221222222223012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381136120060714WT@#TWP@012212222204309100000000 -T320230111111381136120150314WT@WZZZZW12212212204398100000000120130323WT@YY9Z#012212212204302100000000 -T12023011111138122921000405411120213110611105570000004105280070000000000070011000000000000000000222222000000002229012 -T2202301111113812291219820913WT@Z0WBW91222212222221012216110283223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111381229120120705WT@WTYZP012222122204303100000000 -T12023011111138126020600407032110233220000300000000000003900010000000000000000000000000000000000222222000000002229021 -T2202301111113812603219900923WTT09P#WZ2212221222221012216210075311069941000000000000000000000000000000040002000000000000000000020000317300000000000000000000 -T320230111111381260120090411WT@#9T9@T22122222207307900000000 -T12023011111138130325100414031120313110611300000000050003920220000000000000000000000000000000261122222000000012219012 -T2202301111113813031219840911WT@YB0Y0P2222212222223012216110233723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381303120140113WTTTWZ@BZ22222122204398100000000120080722WTTWWTTWP22222212204306100000000 -T12023011111138132322000400811120213110598300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111113813231219920707WTT#BYTBP1222222222221012212210194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381323120210421WT@PPW@TB12222212204398100000000 -T12023011111138149722000402111120212110599300000000000003160280000000000000000000000000000000211122222000000012219012 -T2202301111113814971219960227WT@YB#WW92222212222221012213110263423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381497120200127WTTBY9@@T22222112204398100000000 -T12023011111138150322700407491120313110740300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111113815031219880724WT@@Y0@#B1222211222223012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381503120130707WT@#Z@B@P12222112204303100000000120120913WTT@T0B9T12222122204304100000000 -T12023011111138169023700414331120532111028300000000000005950530000000000000000000000000000000000222222000001762219022 -T2202301111113816902219860222WT@YYBT9P1222222222221012205920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000175 -T320230111111381690120080327WTT@YTPZT12222222204308100000050120070101WTT9BBY#912222212204309100000050 -T320230111111381690120210123WT@ZZ09TZ12222222204398100000000120180702WTT9#B#0912222222204398100000000 -T12023011111138172424900404261120213110611106740000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113817241219790124WT@TTTY#T2222212222222012216120312923010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111381724120200705WT@TBYBWW12222122204398100000000 -T12023011111138175322000412691120413110939110000000000006540130000000000000000000000000000000000222222000000002229072 -T2202301111113817531219880522WTTTBW0PZ2221222222221012216121010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381753420060223WTT9W90WP22212212104309109140000 -T320230111111381753120190904WT@99Z#9B22212222204398100000000120080901WTT0PBY9Y22212212204306100000106 -T12023011111138176520600400801120233110516300000000000004170900000000000000000000000000000000000222222000000002229022 -T2202301111113817653219370713WTT#P9BPB2222212112224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001808000000000539 -T320230111111381765120110711WT@9ZBP#022222112206304100000000 -T12023011111138178822000410221120212110493300000000010505280340000000000000000000000000000000000222222000000002229072 -T2202301111113817881219680711WT@0P0TYY2222212222221012213111720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381788120060922WTT9###WZ21222222204309100000000 -T12023011111138181424200403511120622111339300000000000008960080000000000000000000000000000000000222222000001132219072 -T2202301111113818141219890505WT@9@9@Y02221222222222011216190800023011800000000000000000000000000000000000000000000000000000000000000000000000000000000002057 -T2202301111113818141219900111WTTYBY9W#2221221222222021216190560421011808000000000000000000000000000000000000000000000000000000040000045000000000000000000000 -T320230111111381814120110101WT@@090Z#22212222204303100000000120070113WT@WW@90W22212212204308100000000 -T320230111111381814120200107WTTT#BZ#Z22212222204398100000000120150127WT@0T0@#W22212222204398100000000 -T12023011111138183221700406141120213110611300000000000003160090000000000000000000000000000000211122222000000012219012 -T2202301111113818321219920718WT@T90TTZ2122212222223012212110105023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111381832120130105WT@ZWB9TB11222222204303100000000 -T12023011111138186825800401581120413111034300000000470006950190000000000000000000000000000000000222222000000762219012 -T2202301111113818681219950926WT@09P0#Z2222212222221012212120402021010905000000000000000000000000000000000000000000000000000000090000030300000000000000000000 -T320230111111381868120160926WTT@0ZY9B22222122204398100000000 -T320230111111381868120200207WT@9P#WZ022222112204398100000000120180305WTTWP#@PY22222122204398100000000 -T12023011111138189920800410781110333120000300000000000003400010000000000000000000000000000000000222222000000002229021 -T2202301111113818993219720721WTT@ZY@@T2222212222223012216110006013069900000000000000000000000000000000000000000000000000000000000000270200000000000000000000 -T320230111111381899120190323WTT@PZPTY22222112207398100000000120140205WT@0T@@0T22222112207302100000000 -T12023011111138197122700413181120433110939300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113819713219790923WT@#Z@@YY2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001706000000000000 -T320230111111381971120090212WT@09PBZ#22222112209307100000000 -T320230111111381971420170307WTTW@TP0B22222112204398100000426420160711WTTYB0#0@22222122204398100000426 -T12023011111138206624200405921120313110835300000000000006540300000000000000000000000000000000000222222000000002229012 -T2202301111113820661219960718WT@T9@99W2221222222221012211110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382066120210709WTTBB0YZ#22212222204398100000000120160404WT@99YPBP22212212204398100000004 -T12023011111138210222000407411120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111113821021219850124WTTZPYYB02222212222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113821021219870101WT@B0W9B#2222221222222021216290114923011800000000000000000000000000130000000000000000000000000000000000000000000000000000000000 -T320230111111382102120120204WTT9ZYPYP22222212204305200000000 -T320230111111382102120190708WT@#B@@@T22222222204398200000000120120204WT@9W0#YT22222212204305200000000 -T12023011111138214524700405901110213110618110020000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111113821451220020901WT@@0#@@Z2222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382145120210908WT@@TZYPY22222122204398100000000 -T12023011111138220522000405321120213110598300000000000005280560000000000000000000000000000000000222222000000002229012 -T2202301111113822051219840308WTTPZWTZ02222212222225012213110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382205120080421WT@9@ZZ9Y21222212204308100000000 -T12023011111138220722000407411120312110791300000000000006540470000000000000000000000000000000000222222000000002229012 -T2202301111113822071219820422WT@PB900@2222212222223012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382207120180518WT@W0@0PY22222112204398100000000120050427WTT0W#0T#22222122204311100000000 -T12023011111138221722000408891120213110587114000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113822171219890313WTTT#Y@ZZ2221222222223012212110164421011734000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382217120210412WTTZY@#9B22212212204398100000050 -T12023011111138229823900408801120423111033300000000000507710190000000000000000000000000000000000222222000000002229012 -T2202301111113822981219860112WTT9ZW#9T2222212222222011212110382223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113822981219900924WT@T0W##T2222211222221021212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382298120140307WT@WYP00W22222112204301100000048120060313WT@YY@@@922222112204309100000000 -T12023011111138235222000412231120322110719300000000057706540200000000000000000000000000000000000222222000000002229072 -T2202301111113823521219830907WTTB#9@BW2222212222222011212110750023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113823521219780413WT@P999TW2222211222222021212190154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382352120050414WT@TB0W#922222112204311100000032 -T12023011111138235724200403941120233110516300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111113823573219700504WT@T9PPW@1221222222225012216110085211069920000000000000000000000000000000000000000000000000000000000000167100000000000000000000 -T320230111111382357120060423WT@ZZ900922212212207311100000000 -T12023011111138238522000413731120212110606300000000000005280440000000000000000000000000000000000222222000000002229072 -T2202301111113823851219920104WT@B0WZTP2221222222221012212110760023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111382385120110113WTT0##Y@P22212222204305100000000 -T12023011111138246625900412511120213110611300000000030002370380000000000000000000000000000000290222122000000012219012 -T2202301111113824661219810405WT@T#TYYT1222212222221012209120392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382466120090222WTT9WZZBZ22222122204306100000000 -T12023011111138248824700408701120333120000300000000000005280370000000000000000000000000000000000222222000000002229022 -T2202301111113824883219440111WTT00BBTT1222212122221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001809000000001760 -T320230111111382488120120409WTTB#009W12212212206304100000000120080427WTT@Z9@0T12212222207308100000000 -T12023011111138250223900400641120333120000109210000000005280860000000000000000000000000000000000222222000000002229022 -T2202301111113825023219790318WTTY9W@PP2222212222222012211110372313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382502120180423WTTTZTTZ#22222112207398100000000120140527WTT0PZWBB22222112207301100000000 -T12023011111138253322700401571120433110893300000000000006540050000000000000000000000000000000000222222000000002229022 -T2202301111113825333219730404WTTZYBWZY1222222222222012210110006011069938000000000000000000000000000000000000000000000000000000000000173100000000000000000000 -T320230111111382533120100923WTTP@PY9W12222222206307100000000 -T320230111111382533120140201WTT@#WWP#12222222206303100000000120130507WTT@PYWPT12222222206304100000000 -T12023011111138258622000413731120413110946300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111113825861219960308WT@PTBP#92222212222221012212110194123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382586120140426WT@9#0PWY21212122204302100000000 -T320230111111382586420220923WT@9B9@@#12222122104398109140000120180318WTTYZY#9022212212204398100000000 -T12023011111138268822000403891120233110516300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111113826882219900705WT@WT9#9@2221221222211012211120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111382688120120423WT@@WYW9B22212222204304100000000 -T12023011111138270923500405271120523111211300000000000008880120000000000000000000000000000000000222222000000002229012 -T2202301111113827091219810212WT@WBT@Z02122212222222011212110134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113827091219750504WT@BYY9BT2122211222222021212190035721011939000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382709120070721WT@909P0022222212204310100000000 -T320230111111382709120110412WT@P@@T#022222222204305100000000120090204WTTZWWT@021222112204306100000000 -T12023011111138272420600414161110213110516111530000000000530060000000000000000000000000000000000222222000000002229012 -T2202301111113827241220000507WT@90Y@9#2222212222221012216110075321011802000000000000000000000000000000050000000000000000000000000000000000000000000000002607 -T320230111111382724120200907WT@BZ0PP#22222112204398100000322 -T12023011111138284925900402121120313110740300000000005005280280000000000000000000000000000000000222222000000002229012 -T2202301111113828491219970301WT@TB#99B2222212222223012213110293123011800000000000000000000000000000000200000000000000000000000000000000000000000000000001022 -T320230111111382849120190109WT@PT9YTY12222112204398100000000420160323WT@BYY@B012222112104398108040000 -T12023011111138293022000411551120313110826300000000000006540370000000000000000000000000000000000222222000000002229012 -T2202301111113829301219920327WT@#B##Z@2221222222221012216110441623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382930120220921WT@9TPY9W22212222204398100000000120170123WT@PZTBB#22212212204398100000000 -T12023011111138293322000404841120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113829333219600523WTTPPT90Z2221222222224012216110006011069930000000000000000000000000000000000000000000000000000000000000598900000000000000000000 -T320230111111382933120060927WT@B9W@0B22212212206309100000000 -T12023011111138293424200404281120233110516300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111113829343219760124WT@0W99WW2221222222211012211110372313069900000000000000000000000000000000000000000000000000000000000000000000000000055900000048 -T320230111111382934120180905WTTBZ0BP#22212222206398100000000 -T12023011111138294622000409411120533111034300000000000307710100000000000000000000000000000000000222222000000002229022 -T2202301111113829462219890723WT@YYBT9P2222122222223012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111382946120130421WTT9PW@BZ22221212204302100000000120120901WTTW@BZ@T22221212204302100000000 -T320230111111382946120170112WTTP@0Z0Z22221212204398100000000120160404WTTPBT9B922221222204398100000000 -T12023011111138296622700413181120313110835115570000000003660840000000000045007000000000000000244122222000000442219072 -T2202301111113829661219930923WT@P0ZP#@1222222222221012212110640021011740000000000000000000000000000000000000000000000000000000000000000000000000000000000043 -T320230111111382966120200401WT@WTBWY912222222204398100000311120150712WT@@P09T012222212204398100000000 -T12023011111138300623500412161120213110383300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111113830061219820218WT@##TP9#2222212222221012208110322823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111383006120220109WT@9TPY9W22222122204398100000000 -T12023011111138321422000403892120423210959300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111113832141219850704WT@@WB0PW2222211222222011215290035723011800000000000000000000000000000000030000000000000000000000000000000000000000000000000000 -T2202301111113832141219980327WT@9TPY9W2222212222222021211290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111383214120210309WT@9TPY9W22222112204398200000000120190127WT@9TPY9W22222112204398200000000 -T12023011111138326023700414331120233110493300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111113832603219870726WT@TBT9Z#1222222222213012209110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111383260120100718WTT@0Y9B@12222212207306100000000 -T12023011111138347625600411701110413110939300000000000005220010000000000000000000000000000000000222222000000002229012 -T2202301111113834761219700123WT@YP@Y0#2222212122222012216190590123109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T2202301111113834761219710904WTT@P0##Y2222211222222022212190590123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111383476120070123WTTW#0P0P22222112204308100000000120050123WT@B@WBZZ22222122204311100000000 -T12023011111138352625000403231120532111116300000000000007710970000000000000000000000000000000000222222000000002229022 -T2202301111113835263219850208WT@BYPY902122222222221012210110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000541 -T320230111111383526120070321WTTBB@T@B11222222207308100000000120050123WTTY9@B#Y21222212207310100000100 -T320230111111383526120120511WTT@YTPYT11222212207304100000000120100127WTTWBPPB011222212207305100000000 -T12023011111138356622000401712120322210766300000000001006540050000000000000000000000000000000000222222000000002229032 -T2202301111113835661219800918WTT#@T9#Y2221221222222011214290065423011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111113835661219800118WTT@T#BBP2221222222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111383566120140322WT@9P#0#B12212212204302200000000 -T12023011111138358820900411721120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111113835881219930112WTTYPWW#@2222212222223012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111383588120220313WTTY@W0TW22222112204398100000000 -T12023011111138368624700409321120213110611300000000020005280990000000000000000000000000000000132222122000000002229072 -T2202301111113836861219820208WT@PTBYBW2222212222223012212121090023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111383686120150318WT@ZZ@#BT22212212204398100000000 -T12023011111138374723700414331120423110939300000000000207710030000000000000000000000000000000000222222000000002229012 -T2202301111113837471219920722WTT#T#Z002222211222222011216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113837471219930307WTTP#00T@2222212222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111383747120180704WT@B@ZPY#22222112204398200000000120160518WTTBBY@@B22222122204398200000000 -T12023011111138379524700409381120413111034114720000047401920040000000000035008000000000000000000222222000005792219012 -T2202301111113837951219790327WTT#T90YB2221221222225012212120411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111383795120140204WTTB0WBWP22212122204302100000579 -T320230111111383795120180204WTTZB@BYB22212112204398100000000120170407WT@WB0@@P22212112204398100000000 -T12023011111138409123500409141120533111116300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111113840913219810911WT@ZZ9BWB2222212222225012212110045611069941000000000000000000000000000000000000000000000000000000000000304700000000000000000000 -T320230111111384091420070326WT@T@009#22222122204309100000466420050401WTTP@PTTP22222122204312100000466 -T320230111111384091420080701WTTYZ9T0@22222122204308100000466120080424WT@B##B9922222112209309100000000 -T12023011111138409922100401551120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113840993219570114WT@W90@TP2222212222225012212110006011069999000000000000000000000000000000000000000000000000000000000000334800000000000000000000 -T320230111111384099120100108WTT#0T00@22222112206305100000050 -T12023011111138412320800411931120232110516300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111113841231219860912WTTZ#0B@@2221222222221012209110580223099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111384123520140401WTTWWP99B22212222104301104340500 -T12023011111138416223700414331120613111339300000000001010090310000000000000000000000000000000000222222000000002229072 -T2202301111113841621219860921WTT9###TY1222222222225012212110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111384162120060127WTTY##BWZ12222222204307100000000 -T320230111111384162120140421WTT9#ZZ@W12222212204398100000000120080904WT@@ZTW##12222222204306100000000 -T320230111111384162120220723WT@9TPY9W12222222204398100000000120190118WTTB@9PY912222112204398100000000 -T12023011111138424425900402631120413111017300000000000007710230000000000000000000000000000000000222222000000002229072 -T2202301111113842441219900921WT@YZTY9W2122222222221012212110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111384244120070326WT@WZ0BT021222222204308100000000 -T320230111111384244120160313WTT@W@TBZ11222212204398100000000120140118WTTPTP###21222212204398100000000 -T12023011111138425122000410051120412110957115340000000007710500000000000000000000000000000000000222222000000002229072 -T2202301111113842511219890426WT@Z0ZB#P2222212222221012216120820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111384251120120922WT@YWB9P#22222112204304100000000 -T320230111111384251120160704WT@@@B00B22212222204398100000000120160704WTT9BTZWZ22222122204398100000000 -T12023011111138443924700406701120213110611300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111113844391220030704WTT0BT09@1122222222221012210110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111384439120220913WTTT#BYWB11222222204398100000000 -T12023011111138474822100401271120833111490300000000000011650460000000000000000000000000000000000222222000000002229022 -T2202301111113847482219880301WT@YYBT9P1222222222223012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111384748120040323WT@ZY###Z12222222204312200000000 -T320230111111384748120070127WT@YT9TZP12222212204307200000000120060904WTTTZYZTP12222222204308200000000 -T320230111111384748120120901WT@9@@TWW12222212204301200000000120100923WTTY@9Z0T12222222204304200000000 -T320230111111384748120220211WTT9YWP@Z12222222204398100000000120160427WTTPB#0B912222122204398100000000 -T12023011111138479923700414331120333110670300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111113847993219550401WT@#WW0Y91222212122212012206210006013069900000000000000000000000000000000000000000000000000000000000000000000000462002800000000 -T320230111111384799120100404WTT@0Z#P012222122206306100000000120050921WTT9#0BP#12222122206310100000000 -T12023011111138501424200414721120312110835300000000000006540910000000000000000000000000000000000222222000000002229072 -T2202301111113850141219850712WTTYZYW##2222212222221012209120920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385014120160427WT@YZZTBY22222212204398100000000120090411WTTW0WW0W22222112204307100000000 -T12023011111138501824200404701120332110740300000000000005010990000000000000000000000000000000000222222002600012219022 -T2202301111113850182219820718WTT0@@##B2221222122221012213110006011109920000000000000000000000000000000000000000000000000000000000000154300000828000000000000 -T320230111111385018120100413WTTBT0BTZ22212222204306100000000120090208WTT00@TZW22212222204307100000000 -T12023011111138506724700408302120323210835300000000000006540050000000000000000000000000000000000222222000000002229032 -T2202301111113850671219760522WT@9TPY9W2222211222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113850671219790113WT@9TPY9W2222212222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385067120060723WT@9TPY9W22222122204312200000000 -T12023011111138522221000411361120212110598300000000000005280520000000000000000000000000000000000222222000000002229012 -T2202301111113852221219980721WT@@ZYPT91222222222225012208110530723011800000000000000000000000000000000000000000000180001000000000000000000000000000000000000 -T320230111111385222120160126WT@0@@TT@12222222204301100000000 -T12023011111138531325900402631120513111012105650000000008880100000000000000000000000000000000000222222000000002229072 -T2202301111113853131219920208WTTP#TWWY1222222222225012216110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385313120090401WTTYW9P#Z12222212204306100000000120050108WT@PZ@Y#B12222122204311100000000 -T320230111111385313120140304WTTZ0#@Y912222212204398100000000120100723WT@#@9Z9012222212204305100000000 -T12023011111138532522700401571120423111034300000000000106090080000000000000000000000000000000000222222000001622219012 -T2202301111113853251219700421WT@0WPZ#P1222221222223011208210095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113853251219760318WTT90T@BY2222212222222021214190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000161 -T320230111111385325120170922WT@B#PTWB12222122204398100000000120130527WTT9B#@ZW22222222204301100000000 -T12023011111138538520800411931120212110598300000000050005280180000000000000000000000000000000000222222000000002229072 -T2202301111113853851219840304WT@9ZWW#W2122222222223012214121100023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000019 -T320230111111385385120120412WTT0Y#ZW921222222204303100000000 -T12023011111138544522000410221120623111339300000000044602600060000000000000000000000000000000000222222000006282219012 -T2202301111113854451219790413WT@W0#@Y#2222212222222011214190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113854451219740323WTTT9#ZYZ2222211222222021214190075321011800210000000000000000000000000000000000000000000000000000160000125500000000000000000000 -T320230111111385445120050722WTTZ@T@9022222122204310100000000120050509WTTPTB#W@22222122204311100000000 -T320230111111385445420180118WT@#ZWPZW22222112104398109140000120080323WTT@9YB9022222122204307100000000 -T12023011111138546122000412691120312110611300000000000006540440000000000000000000000000000000000222222000000002229012 -T2202301111113854611219940923WT@B0#00@2212222222221012216110451523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385461120220707WTT9BY9W922122222204398100000000120190405WTTTBB0W022122212204398100000000 -T12023011111138554521700410451120323110766300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111113855451219870127WTT#0B#TB2222212222222011214210085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113855451219970721WT@##0P@P2222211222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385545120210314WT@BT0@YY22222122204398200000000 -T12023011111138555624200414721120313110835112270000000001750420000000000000000000000000000000000222222003204472219012 -T2202301111113855561219910727WTT9BWTBZ2221222222221012208110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385556120200927WT@@Y#ZZP22212222204398100000000120160704WTTB9Y@0W22212212204398100000446 -T12023011111138574322000411971120213110611300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111113857431219960312WT@9B0T@Y2222212222225012213110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385743120190107WT@YT9ZB022222112204398100000000 -T12023011111138578123500402291110213110541115380000000003250150000000000000000000000000000000000222222000002032219012 -T2202301111113857811219670126WT@PY09#@2221221222225012212110164421011800070000000000000000000000000000000000000000000000000000000000040500000000000000000000 -T320230111111385781120190527WT@BTPTP#22212212204398100000000 -T12023011111138586820600402131120212110611101300000080405280370000000000000000000000000000000000222222000000002229012 -T2202301111113858681219860404WT@Y#ZBWT2222211222221012212110382223011400000000000000000000000000000000000000000000000000000000450000000000000000000000000000 -T320230111111385868120190418WTT#Y9###22222122204398100000000 -T12023011111138588924700408361120213110610300000000000005280550000000000000000000000000000000000222222000000002229012 -T2202301111113858891219900412WT@Y@ZW#B2222212222221012211110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385889120160712WT@#0##9B22222112204398100000000 -T12023011111138590725000409431120313110517300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111113859071220030313WTT0PZWTW2222212222221012210110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385907120230401WT@9TPY9W21222212204398100000000120210527WTT9B#T9921222222204398100000000 -T12023011111138592224200413331120212110611300000000000005280360000000000000000000000000000000000222222000000002229072 -T2202301111113859221219740112WTTWTY9T01222212222221012212111850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385922120050507WT@PY0BBW22222122204310100000000 -T12023011111138593921400408021120532111116300000000000007710400000000000000000000000000000000000222222000000002229022 -T2202301111113859391219900113WT@900TZZ1222212222223012213110501023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111385939120120218WT@WP00@T12222112204304100000000120100124WT@ZYTY@P12222222204304100000000 -T320230111111385939120200918WT@TTPZZ#12222212204398100000000420190905WTTB@YWTZ12222212104398107970000 -T12023011111138595222000408891120233110516300000000000003960230000000000000000000000000000000000222222002000012219022 -T2202301111113859522219830426WT@WW@9#Y1222222222215012212120560413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111385952120040718WT@WZ0YBT12222222204310100000000 -T12023011111138597920800411991120212110516300000000050005140350000000000000000000000000000000000222222000000142219012 -T2202301111113859791219870424WTT0WTW#92222212222225012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000013 -T320230111111385979120090421WTTYW0TY#22222122204308100000050 -T12023011111138598921700407751120213110576300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111113859891219850924WTTZZW@PB1222222222225012209110263421011700210000000000000000000000000000000000000000000000000000000000125500000000000000000050 -T320230111111385989120210413WTTY#ZP@#12222122204398100000000 -T12023011111138599324700409321110333120000300000000000104930070000000000000000000000000000000000222222000000532219021 -T2202301111113859935219840204WT@BPP@#02222222222225012216110065411069943000000000000000000000000000000000000000000000000000000000000839500000000000000000000 -T320230111111385993120070223WT@#WWYW#22212122208309100000000120050113WT@@W@ZYT22212222208310100000000 -T12023011111138601222000410051110333110740300000000000002910010000000000000000000000000000000000222222000000002229021 -T2202301111113860121219860723WT@T0TZPP2222212222221012210110164423099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386012120210426WTTZ0B##@22212122204398100000130120190718WT@ZW0YPZ22212112204398100000130 -T12023011111138601525900402121120213110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111113860151219840918WTTWY9B9@2222212222223012214110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386015120140401WTTYW@@0P22222122204302100000000 -T12023011111138618624900404261120213110499300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111113861861219710307WT@T@T0TZ2222212222223012213110560423011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111386186120050301WTT0ZB09922222122204310100000050 -T12023011111138623020600400801120213110599300000000000005100820000000000000000000000000000000211222221000000002229072 -T2202301111113862301219830122WTT9PZ#9Z2222212222221012213110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386230120100907WT@@WTYBP22222122204307100000000 -T12023011111138626022000403891120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113862601219880301WTT9TY@PB2221222222221012212210055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386260120220722WT@#9B#0Y22212212204398100000000 -T12023011111138628822000400461120212110493300000000020004170700000000000000000000000000000000000222222000000002229072 -T2202301111113862881219720101WT@YWB#YY2222212222225012212110710023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111386288520100408WT@ZTPTB922222112104305108900000 -T12023011111138632424200403941120232110576300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113863243219850127WT@YZT@0T2222212222221012216110006011069914000000000000000000000000000000000000000000000000000000000000120400000000000000000000 -T320230111111386324120110711WT@P9PPB922211112209305100000000 -T12023011111138634224700408301120213110599300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111113863421219780314WTT0YT9W@2221222222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386342120080427WT@09B0TT12212222204308100000000 -T12023011111138641524100402401120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113864153219620204WT@Y0T9YB2222212222222012216110055511069941000000000000000000000000000000000000000000000000000000000000240000000000000000000000 -T320230111111386415120080718WTTB#YYWB12222112206306100000000 -T12023011111138644725100407671120413110959300000000000002940730000000000000000000000000000000359222122000000012219072 -T2202301111113864471219840112WTTPZT0B02222212222221012211120740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386447420060227WT@TW0ZZT22222112104310109140000 -T320230111111386447120090412WT@9TB99022222112204307100000000120070726WT@ZPW@BY22222112204309100000000 -T12023011111138645824200406011120313110766300000000004306540390000000000000000000000000000000000222222000000002229012 -T2202301111113864581219880127WTTPP9TW#2222212222221012212110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386458120130412WTTWT@BT#22222122204302100000000120110307WT@9#99@@12212222204303100000000 -T12023011111138651524100413561120433110835300000000030306540530000000000000000000000000000000000222222000000002229022 -T2202301111113865152219790907WT@YYBT9P1222212222222012202990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386515120050326WT@P@B@@W12222122204309100000000 -T320230111111386515120090901WTT##PB0Z12222122204306100000000120070314WT@@Y0PY912222112204307100000000 -T12023011111138657724200402531120213110598300000000001005280070000000000000000000000000000000000222222000000002229042 -T2202301111113865771219920423WTT@@PP#@2221222222221012216110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386577120190723WTTWBWB9#22212212204398100000000 -T12023011111138661822000409412120213210618300000000000005280140000000000000000000000000000000000222222000000002229032 -T2202301111113866181219670423WTT9@P#W@2222222222223012298210154523011800000000000000000000000000000000140001000000000000000000240000000000000000000000000000 -T320230111111386618120060526WTT9#T0#B22222212204312200000000 -T12023011111138672124200410001120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113867211220000327WT@P0ZZ902221222222221012212110114921011738000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386721120220904WT@B9BWZY22212212204398100000000 -T12023011111138676824200408231120333120000300000000000005280540000000000000000000000000000000000222222000000002229022 -T2202301111113867683219740118WTTTYPPPW2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386768120060105WT@WP##B022222122207309100000000120060105WT@T9Z9YZ22222122207309100000000 -T12023011111138685225900406081120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113868523219660423WTT#T90W91222222222225012214110253513069900000000000000000000000000000000000000000000000000000000000000571500000000000000000000 -T320230111111386852120170721WT@ZY9PZ@12222222206398100000000 -T12023011111138699220600403591120523111199300000000000008880090000000000000000000000000000000000222222000000002229012 -T2202301111113869921219930323WT@B#TP0P2221222222222011213190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113869921219940123WTTBTZP##2221221222222021213190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111386992120150727WTTYTW0PP22212222204398100000000 -T320230111111386992120200314WTTP9#WT#22222112204398100000000120170314WT@WYZP#B22212222204398100000000 -T12023011111138707624700409381120723111490300000000000011650100000000000000000000000000000000000222222000000002229012 -T2202301111113870761219940507WTT0B9ZY02222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113870761219960413WT@0Z@#Z#2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111387076120160218WT@Y#WYZB22222122204398200000000 -T320230111111387076120180708WT@Z0ZW@Y22222122204398200000000120170908WT@9T0WB022222122204398200000000 -T320230111111387076120210308WTTY0TWB922222112204398200000000120200418WTTPY#0WZ22222112204398200000000 -T12023011111138712524200404051120213110611300000000000005130560000000000000000000000000000000000222222000000152219012 -T2202301111113871251219710724WT@9TPW#P2122222222225012212110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000014 -T320230111111387125120130312WT@@P0Y9B22222212204302100000000 -T12023011111138715222000411551120422110941300000000000007710160000000000000000000000000000000000222222000000002229012 -T2202301111113871521219920212WT@ZP0TY@2222221222221011212190332723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113871521219920727WT@#WBY002212222222221011216110570323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111387152120140121WT@Z90TBT22122222204302100000000120120327WTT9#P@9022122222204303100000000 -T12023011111138741224500402221120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111113874121220010301WT@99Z@9Z1122222222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111387412120220123WT@0@0PBW22221112204398100000000 -T12023011111138743022000407411120213110611113100000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111113874301219920504WTT00PPBW2222212222225012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111387430120210108WT@9Y#YZ#22222112204398100000000 -T12023011111138756120600400872120412211158300000000000007710200000000000000000000000000000000000222222000000002229032 -T2202301111113875611220000924WT@W0PT0P2222212222221012212110283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113875611220010527WTT@@PY9@2222211122221012212190015923109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111111387561120220702WTT@@P09#22222112204398100000000120190407WTTZ00TY022222122204398100000000 -T12023011111138761325900406841120233110594300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113876133219630721WT@@T#WYP2122222222223012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000138 -T320230111111387613120110927WT@YPWW##21222212206305100000000 -T12023011111138766922600404461110213110516300000000000001850010000000000000000000000000000000000222222000000002229012 -T2202301111113876691219910713WT@PZ@PZP2222212222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111387669120210701WTTP9ZZBY12222112204398100000086 -T12023011111138769020600407031110423110939300000000000002980010000000000000000000000000000000000222222000000002229012 -T2202301111113876901219920912WT@@9@#T92222212222221011213190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000627 -T2202301111113876901219920413WT@ZWPT@T2222211222222021216190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111387690120200904WTTZZW9@022222122204398100000000120170427WTT#0WZ0#22222112204398100000000 -T12023011111138779821400410301120313110835111090000047006540080000000000080005000000000000000000222222000000002229012 -T2202301111113877981219930127WTTWPWP@02222212222221012212110213923011400000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T320230111111387798120190318WT@9BWT@W22222122204398100000000120130727WT@YBPTP912222122204302100000000 -T12023011111138823824200404891120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111113882381219910723WT@900B992222212222223011216110065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113882381219730327WT@@WYZP#2222211222221011216190065423011800000000000000000002000000000000000000000000000000000000420000000000000000000000000000 -T320230111111388238120160123WT@@#WBB922222112204398100000000120140304WT@0W0PYP22222112204398100000000 -T12023011111138832121700406141120433110939300000000000006540400000000000000000000000000000000000222222000000002229022 -T2202301111113883212219900722WT@90PT002222212222211012212110441613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111388321120100323WT@T909PY22222122204305100000000 -T320230111111388321120210327WTTZZB0T022222222204398100000000120210327WT@BPWB0P22222212204398100000000 -T12023011111138840922000403531120233110516300000000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111113884093219630902WTTYYP@Y02222212222225012213110204011069935000000000000000000000000000000000000000000000000000000000000219200000000000000000000 -T320230111111388409120130126WTT90@0B922222122206302100000050 -T12023011111138847820600414871120233120000300000000000004170970000000000000000000000000000000000222222000000002229022 -T2202301111113884783219540712WT@@PWPTY2222212122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001517000000000000 -T320230111111388478120120323WT@0B#Z#P22222122206303100000000 -T12023011111138860022600405051120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113886001219870412WT@BP@00Z2222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111388600120160224WT@@BW#@T22222122204398100000000 -T12023011111138868922000412231120212110606300000000020005280970000000000000000000000000000000000222222000000002229072 -T2202301111113886891219970211WT@@B@PB01222222222221012212120940023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111388689120150904WT@BB#@0B12222222204398100000000 -T12023011111138876624500407641110112110376300000000000003900060000000000000000000000000000000183222221000000002229012 -T2202301111113887661219950418WT@T@000#2222212222221013212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111138880722000403351120412111044100840000000007350180000000000000000000000000000000000222222000000002229012 -T2202301111113888071219930205WT@TY@T#02222212222221012216110550523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111388807120080104WTT0B#ZZ922222122204306100000000 -T320230111111388807120220709WT@PY9@PP22222122204398100000000120110307WTTW0P0Y922222112204303100000000 -T12023011111138894220800414651120332110704300000000000004170770000000000000000000000000000000000222222000000002229022 -T2202301111113889421219800907WT@P009TW2221222222225012216120800023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111388942520140113WT@##@Z0@22212212104398109140190520100109WT@@0WBP922212212104304109140190 -T12023011111138904624100405961120312110835300000000096106540080000000000000000000000000000000000222222000000002229012 -T2202301111113890461219760212WT@0Y#PBW2221222222221012216110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389046120100421WT@Y0#W@T22212212204307100000000120050121WT@YW@WW022212212204311100000000 -T12023011111138905023500402711120413111054300000000040007710590000000000000000000000000000000000222222000000002229072 -T2202301111113890501219970912WT@P0B9T#2122222222223012216120630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389050120170311WT@TWW0PT21222222204398100000000 -T320230111111389050120220318WTTZ@0W#P21222222204398100000000120220318WTT@WT99#21222212204398100000000 -T12023011111138914922000405181120312110766127000000000006540320000000000000000000000000000000000222222000000002229012 -T2202301111113891491219930426WT@B90@902221222222221012210110332723010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111389149120210427WTTY0P9YB22212212204398100000000120190914WT@#P9WW022212222204398100000000 -T12023011111138915025000403231120513111116300000000000008880060000000000000000000000000000000000222222000000002229072 -T2202301111113891501219910414WTT#Y@YBB1222212222223012210110690023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389150120180727WT@WW9Z#Y22222122204398100000000120080423WTT00Y9BY12222122204308100000000 -T320230111111389150120220909WT@@0P#B912222112204398100000000120210923WTTP@Y#YW22222112204398100000000 -T12023011111138917624700405901120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111113891763219670327WT@0WZBPT2222212222222012216110006011069922000000000000000000000000000000000000000000000000000000000000272300000000000000000000 -T320230111111389176120090113WTT@@0@WY22222122206305100000000120070723WTTPTW@Z@22222122206307100000000 -T12023011111138918625000414191120313110766300000000090006540050000000000070003000000000000000000222222000000002229012 -T2202301111113891861219970123WT@@WTZP#2222212222221012210110065423011400000000000000000000000000000000000000000000000000000000230000000000000000000000000000 -T320230111111389186120170913WT@T#9Y@T22222112204398100000000120150301WTTTY09YZ22222122204398100000000 -T12023011111138929924700405831120312110740300000000000006240720000000000000000000000000000000000222222000000302219072 -T2202301111113892991219830112WT@@WZPTT2221222222225012213110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000001478 -T320230111111389299120110108WTTPBB0BT22212212204304100000100120090512WTTYZ#B9#22212212204307100000100 -T12023011111138934922000408892120233220000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111113893495219840123WT@BTYY002222212222222012213210035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389349120050411WT@9TPY9W22222112209311200000000 -T12023011111138950223900406231120413110959116580000000007710130000000000080001000000000000000000222222000000002229012 -T2202301111113895021219850907WT@WPPWT02222212222221012216120253523010900000000000000000002000000000000000000000000000000000000240000000000000000000000000100 -T320230111111389502120060927WTTZZ@99#22222122204310100000133 -T320230111111389502120180702WTT0Y0Z0@22222122204398100000000120130301WTTTWZ0Z@22222112204303100000000 -T12023011111138953424200404051110213110611300000000000105280480000000000035006000000000000000000222222000000002229012 -T2202301111113895341219940507WTTBY9BZ92221222222225012212110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389534120180221WT@@ZTY#012212212204398100000000 -T12023011111138955122000401051120412110939300000000031807710650000000000000000000000000000000000222222000000002229072 -T2202301111113895511219890408WTTTBTT#Z2222212222225012214120610023011400000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111389551120100204WT@@P#P#@12222112204306100000050 -T320230111111389551120190513WT@Z#Y@#Z22222112204398100000000120160526WT@9P0Y9022222112204398100000050 -T12023011111138967524200404051120212110611300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111113896751219970423WTTZ#00#92221222222221012211120580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389675120130914WTTPWTP9022212212204303100000000 -T12023011111138967925000401171120233110493300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111113896795219700108WTTY#ZP092222211222221012212110015911069920000000000000000000000000000000000000000000000000000000000000170400000000000000000000 -T320230111111389679120090701WT@0Z9@BW22222112209306100000000 -T12023011111138972025900402831120213120000300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113897201220040726WT@B@T90B1222222222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389720120220121WTTB#YBWY12222222204398100000000 -T12023011111138980222000413681120213110611300000000010005280240000000000000000000000000000000000222222000000002229012 -T2202301111113898021219690113WT@#@#T#Y2222212222221012213110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389802120070404WTT0ZT@BY22222112204310100000000 -T12023011111138987122000403351120323110835300000000000003920250000000000000000000000000000000261122222000000012219012 -T2202301111113898711219820411WT@TZ9#TZ2222122222222011212910263423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113898711219710523WTTB@ZT9W2222121222221021216190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111389871120120421WTTZZ0W#B22221212204303100000000 -T12023011111138990025600413441120623111387300000000257910090230000000000000000000000000000000000222222000000002229012 -T2202301111113899001219910308WT@T@9@0Z2221222222222011216110293123011800000000000000000000000000000000190000000000000000000000000000000000000000000000001667 -T2202301111113899001219920423WTTPYTYBT2221121222222021216190144623011800000000000000000000000000000000000000000000000000000000370000000000000000000000002011 -T320230111111389900120160312WTTZTPW@@22221212204398100000000120150908WT@@TB90922212212204301100000000 -T320230111111389900120200708WTTZ@Y0Z922212222204398100000000120190405WT@P00ZY922212222204398100000000 -T12023011111138990825100402211120233110516300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111113899083219660727WTTZ9BY#@2222212222225012216110006013069900000000000000000000000000000000000000000000000000000000000000062600000000000000000000 -T320230111111389908120060911WTTZ@W0PY22222112206309100000000 -T12023011111139003525600400661120313110835300000000344606540250000000000000000000000000000000000222222000000002229012 -T2202301111113900351219890311WTTBTWTZZ2222212222223012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111390035120110707WTTTBPZ#@22222112204305100000000120090522WT@Y99Y#Z22222122204307100000000 -T12023011111139004425600412851120232110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113900443219700911WTT@9TP9W2222211222222012213110411913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111390044120100913WTT9PTYBY22222112206305100000050 -T12023011111139012722000406951120313110542300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111113901271219950407WT@9YYTYB1222212222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111390127120220523WT@ZTT0WY22222112204398100000000120200123WT@Z@Y@ZZ22222122204398100000000 -T12023011111139018424100402401120413110939300000000000307710110000000000000000000000000000000000222222000000002229012 -T2202301111113901841219980426WTT9TTT991222212222225012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111390184120160102WT@W#ZZ@T12222112204398100000000 -T320230111111390184120200512WT@90W9PY12222112204398100000000120180714WTTBZ#W#P12222122204398100000000 -T12023011111139022721000411361120232110516300000000000002820860000000000000000000000000000000000222222000001352219022 -T2202301111113902273219830713WT@B@Y9@#1222222222221012216110006011069924000000000000000000000000000000000000000000000000000000000000175400000000000000000000 -T320230111111390227120110118WT9TTTTPY12222122207304100000000 -T12023011111139023124200404891120522111116300000000000008880170000000000000000000000000000000000222222000000002229072 -T2202301111113902311219800326WT@9@#@Y02122221222222011216110530723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113902311219810527WTT00ZY@Z2122222222222021214190960023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111390231120080704WTTB@ZW@921222222204308100000000 -T320230111111390231120120713WTTP9WBPT22222122204303100000000120110221WTT@Z99T022212212204305100000000 -T12023011111139029020600409771120433110939300000000000006540670000000000000000000000000000000000222222000000002229022 -T2202301111113902902219870426WTTZ#BYT02222212222211012216110620013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000100 -T320230111111390290120040308WTTPZ0YZB22222122204311100000000 -T320230111111390290120100718WTT@@P9Y922222122204306100000000120070418WT@Y9TY@@22222112204309100000000 -T12023011111139043922700408351120212110606300000000029305280410000000000000000000000000000000000222222000000002229012 -T2202301111113904391219790923WTT9@@0B92222212222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111390439120140526WTT0WP@W922222122204303100000000 -T12023011111139057623500411471120513110939300000000153707710430000000000000000000000000000000000222222000000002229072 -T2202301111113905761219910712WTTYW9Y9Y2222212222222012212111070023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113905762220000418WT@YYBT9P1222221222222022211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111390576120110223WT@9BW#ZT22212222204305100000000 -T320230111111390576120140407WTTW@W#PZ22212212204302100000000120130423WTT9@TZ0B22212222204303100000000 -T12023011111139063622600405051110313110835300000000000003160010000000000000000000000000000000000222222000000002229012 -T2202301111113906361219960112WT9TT9T#Z1222212222221012211110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111390636120190524WT@9#PBWT12222222204398100000000120150911WT@Y0@T0W12222222204302100000000 -T12023011111139065425900402631120333110740300000000000005280740000000000000000000000000000000000222222000000002229022 -T2202301111113906542219930912WT@B9T9YP2222212122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000449048500000000 -T320230111111390654120170721WTTBY#B9Z22222122204398100000000120130705WTT#@0B#B22222112204302100000000 -T12023011111139070020600402131120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111113907002219910307WTTYP@PYY2222212222211012211110075313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111390700120120427WT@9Y0Z@Z22222122204305100000000 -T320230111111390700120180401WT@@Z9YYY22222112204398100000000420130427WT@TPT9WT22222112104303109140000 -T12023011111139078325200410141120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113907832219820121WT@@YYB0#2222212222211012210120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111390783120100209WTTPP@90#22222122204306100000050 -T12023011111139092124200408231120233120000300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111113909213219540113WTTT#T#TB2222212122224012214110144613069900000000000000000000000000000000000000000000000000000000000000000000001843000000001853 -T320230111111390921120060311WTT9ZWB##22222112206308100000000 -T12023011111139093420600407031120233110516300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111113909343219610513WTTT#TTPY2221222222215012212120065413069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111390934120070326WT@#BPBT922212222206308100000000 -T12023011111139107724700405831120323110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111113910771219940122WTTWYTYWB2222222222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113910771219950126WT@WW@@9P2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391077120190218WTTZYT0WB22222212204398200000000 -T12023011111139110520600414871120213110480300000000000005280350000000000000000000000000000000000222222000000002229012 -T2202301111113911051220000308WT@0##BBT2221222222221012210110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391105120160421WT@@0@9T022222112204398100000000 -T12023011111139112824200408391120213110611300000000000105280050000000000000000000000000000000000222222000000002229012 -T2202301111113911281219950102WTTZP#Z9@1222212222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000001436 -T320230111111391128120210412WTT@P9W@022222112204398100000000 -T12023011111139114024200404891120412110939300000000000807710240000000000000000000000000000000000222222000000002229072 -T2202301111113911401219880707WTTWP9WWT2221222222225012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391140120080708WTTYPT9YW22212212204308100000065 -T320230111111391140120160101WTT@@PTT022212212204398100000000120140511WT@B9B9B912212222204302100000000 -T12023011111139124722000411551120213110599300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111113912471219830423WT@00TP0P2221221222225012213110342623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391247120160707WTTTYP@T#22212222204398100000000 -T12023011111139130520800405391120413111032300000000000007710720000000000000000000000000000000000222222000000002229072 -T2202301111113913051219860102WTT#@W@TW2221222222221012211111410023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391305120080918WT@BB000T22212212204306100000000 -T320230111111391305120220121WTT@WTW@#22222212204398100000000120100701WTTB9YYPW22212222204305100000050 -T12023011111139144922000404691120233110631300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111113914493219740912WT@ZTB9PB1222222222225012211110600013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391449120070307WT@ZTWTY@12222222207308100000000 -T12023011111139152724700402991120423110949300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111113915271219820901WTTT9Y0W02222211222222011213290055521011931000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113915271219840722WT@0ZWPZW2222212222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391527120200409WTT#PW9TP22222122204398200000000120090704WTT9TZW#T22222112204398200000000 -T12023011111139159722700408351120433110376108250000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111113915972219970723WT@YYBT9P1222212222222012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391597420140126WT@YYBT9P12222122204302900000000 -T320230111111391597120210527WT@ZY@Y9@12222122204398100000000420160312WT@YYBT9P12222122204398900000000 -T12023011111139173524700405901120333120000300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111113917353219810308WTT0T9PY#2222212222221012211110006013069900000000000000000000000000000000000000000000000000000000000000669100000000000000000000 -T320230111111391735120200513WT@TP9W0@22222112208398100000000120090901WT@#TBT##22222112208305100000000 -T12023011111139174120600404491120312110835300000000000306540490000000000000000000000000000000000222222000000002229072 -T2202301111113917411219950926WTTWZ#9@02222212222225012213120610023010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391741120180423WTTW0YBYP22222122204398100000000120160202WT@PYBY9B22222112204398100000000 -T12023011111139182421700406141120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111113918242219730708WTTT09YWT2222211222211012203110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111113918242219840412WT@Z0ZYY@2222212222211102209190124813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111391824120070702WT@W9#TPZ22222122204308100000000120040923WT@T9WPP922222122204311100000000 -T12023011111139184520800414151120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111113918451219870523WT@YW@TP92222212222222011214190372323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113918451219850107WTTWZ#9@#2222211222222021213190382223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391845120130518WTTWTYBP@22222122204303100000000120100722WT@9TBPZT22222112204305100000000 -T12023011111139191422000403531120233110611300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111113919142219860501WTT0TZ9TW2221222222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111391914120180224WTTB9Y@Z022212222204398100000000 -T12023011111139191822000403352120323210835300000000000001050030000000000000000000000000000000000222222000005492219032 -T2202301111113919181219970713WT@TP9B0Z1222222222222011205290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113919181219970722WT@@WBZWZ1222221222222021205290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111391918120170323WT@009#Y#12222222204398200000000 -T12023011111139206924200414851120433110704300000000000005280520000000000000000000000000000000000222222000000002229022 -T2202301111113920692219750104WT@0BT@YP1222221222212012211290860013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111113920692219770202WT@YYBT9P2222222222222022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392069120170905WTTZZ9ZB@12222222204398100000000120130905WT@B0YPWB12222222204303100000000 -T12023011111139209222000406191120413111034300000000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111113920921219920126WT@T@T00B2222212222221012211110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392092120090318WTT#ZZP@W12222112204305100000000 -T320230111111392092120160905WTTBY#B#P12222212204398100000000120140726WTTP@0W0912222212204398100000000 -T12023011111139210025600411521120312110766300000000000006540060000000000000000000000000000000000222222000000002229072 -T2202301111113921001219870311WTT9W#B@B2221222222221012212110830023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111392100120140313WTT#9Z#BY22212222204301100000000120110527WT@00PBTZ22212222204305100000000 -T12023011111139214225600413441120433110939300000000000006540910000000000000000000000000000000000222222000000002229022 -T2202301111113921422219830705WTTPZ0Z9Z2222212222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111392142120050113WTT0T@9Z922222122204309100000000 -T320230111111392142120140418WT@BB00#T22222112204301100000000120090427WT@T9@YBZ22222122204306100000000 -T12023011111139218620600414871120312110740300000000000405280780000000000000000000000000000000000222222000000002229072 -T2202301111113921861219890904WT@9TY99B2222212222221012214110790023010900000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111111392186120140912WTT@T@PTY22222112204302100000000420080404WT@B99@@Z22222122104307109140000 -T12023011111139222725600406521120212110516300000000022504170990000000000000000000000000000000000222222000000002229072 -T2202301111113922271219830718WT@#PB9@W2222212222221012213111060023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392227520080412WT@W9ZWYW22222112104306109140000 -T12023011111139224822000412691120512111057300000000000007710340000000000000000000000000000000000222122000000002229012 -T2202301111113922481219820723WT@ZBW#ZB2221222222221012211110352523010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113922485220040922WT@W@ZYYY2221221222211043212190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111392248120070307WT@BZYTBY22212222204308100000000 -T320230111111392248120140102WT@W0W90P22212212204302100000000120110326WT@9#@@WZ22212222204308100000000 -T12023011111139227121000403201120313110810300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111113922711219980918WT@WYT09P2122222222221012211110243623010100000000000000000000000000000000000000000000000000000000230000000000000000000000000000 -T320230111111392271120220311WT@9TPY9W11222212204398100000000120190723WTT90@WY#11222212204398100000000 -T12023011111139235620600404491120212110611300000000000005280370000000000000000000000000000000000222222000000002229012 -T2202301111113923561219890927WTT@T#T9Z2222212222223012213110372323010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392356120160305WT@@YZ@@922222122204398100000000 -T12023011111139244822000412012110212210516300000000000001530010000000000000000000000000000000000222222000000002229032 -T2202301111113924481219850405WTT9YBTB02221222222223012206210303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392448120180404WT@TTYYYB22212212204398200000000 -T12023011111139251625000413201110213110576300000000000004760010000000000000000000000000000000000222222000000002229012 -T2202301111113925161219740112WTT#B9@#@2222222222223012213210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392516120050127WTTZP#00Y22222212204311200000000 -T12023011111139257520600414161120212110374300000000000505280600000000000000000000000000000000000222222000000002229072 -T2202301111113925751219680401WT@#@PB#Y2222212222225012214110710023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111392575120160101WT@TPZW0022222122204398100000449 -T12023011111139258523500411471120512111199300000000124208880220000000000000000000000000000000000222222000000002229012 -T2202301111113925851219840114WTTB0TBB92222122222221012210910283223011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111392585120060721WTT#YY#Y#22221212204309100000000120050304WTT9T9Y0W22221222204310100000000 -T320230111111392585120120423WT@ZP#9TT22221212204304100000000120070312WT@09WY9#22221222204308100000000 -T12023011111139258622000403352120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111113925861219930123WT@9TPY9W2222121222222011214290045621011984000000000000000004000000000000000000000000000000000000310000000000000000000000000000 -T2202301111113925861219900907WT@9TPY9W2222122222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392586120170426WT@9TPY9W22222212204398200000000 -T12023011111139259125200410141120433110939300000000010006540070000000000000000000000000000000000222222000000002229022 -T2202301111113925911219950113WT@@90ZYW2222212222223012216110085223099900000000000000000000000000000000000000000000000000000000000000000000000000000000001745 -T320230111111392591120160104WT@#@#TYT21222112204398100000000 -T320230111111392591120190721WTTYPTB9921222112204398100000000420180407WT@T@B0ZY21222112104398109140000 -T12023011111139260724700402991120413111017106690000000007710530000000000000000000000000000000000222222000000002229072 -T2202301111113926071219960226WT@@#9T@W1222212222221012211111030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392607120140711WTTYP@PTY12222122204398100000000 -T320230111111392607120190513WT@P@PPTT12222122204398100000000120160902WTTT@#P#T12222122204398100000000 -T12023011111139260921700407751110513111116300000000000002850010000000000000000000000000000000000222222000000002229012 -T2202301111113926091219890102WT@BZY#TB2222212222211012212190491123089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T2202301111113926091219750711WTTBYTW0Y2222211222221012212110055521011802000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392609420080712WT@#0#@0#22222112109307108300000 -T320230111111392609420120321WTT##@ZY022222222104303103740000120120426WT@0@BP@Y22222112204304100000000 -T12023011111139261724200414851120233120000300000000009004170990000000000000000000000000000000000222222000000002229022 -T2202301111113926173219630323WTTY##TBP2222212222225012212110006011069946000000000000000000000000000000000000000000000000000000000000260300000000000000000197 -T320230111111392617120050104WT@@##Z@Z12222112206310100000025 -T12023011111139266421700407751120433120000300000000000006540200000000000000000000000000000000000222222000000002229022 -T2202301111113926643220000412WT@WY@@#P1122222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000260000000000000000000000 -T320230111111392664120040102WT@@P9B9B21222222207310100000000 -T320230111111392664120130905WT@BYZT9Z21222212207301100000000120090423WTT@ZW#9021222212207306100000000 -T12023011111139268821000411361120213110599300000000000003160470000000000000000000000000000000211122222000000012219012 -T2202301111113926881219890427WTTBBPT9B2222212222221012212110481223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392688120170323WT@Z9ZZ0@22222122204398100000000 -T12023011111139269824100402401120733111480300000000000008880990000000000000000000000000000000000222222000000002229022 -T2202301111113926982219880926WT@99WT#02222212222215012208110085213089900000000000000000000000000000000000000000000000000000000000000000000000000067500000000 -T2202301111113926982219860426WTT@@9YT92222211222211102211190006013089900000000000000000000000000000000000000000000000000000000000000000000000000061600000000 -T320230111111392698120050223WTTY0TZ#Z22222112204311100000000 -T320230111111392698120140523WT@PPBYW#22222112204304100000000120130404WT@WBTPZ922222112204305100000000 -T320230111111392698120210901WT@9TPY9W22222122204398100000000120170522WTT0T9B#922222122204398100000000 -T12023011111139297222000407961120312110811128000000000006540260000000000000000000000000000000000222222000000002229012 -T2202301111113929721220030301WTT#BTP9W2221222222221012212110154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111392972120220524WT@PPYWTB22212212204398100000000120200222WTTP@WZPZ22212212204398100000000 -T12023011111139300325000403231120233120000300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111113930033219860413WT@@#Y0TT2222212222222012204110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393003120120724WT@Y@B#WP22222122207305100000000 -T12023011111139307425200407301110233110505124430000000000940500000000000000000000000000000000000222222000000002229021 -T2202301111113930743219960724WT@#W#PWW2222212222221012212120491111069980000000000000000000000000000000000000000000000000000000000000268600000000000000000000 -T320230111111393074120170312WTTZ09Y@P22222112207398100000000 -T12023011111139309724700408361120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113930973219520427WT@Y@T0T@2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000680000000000000 -T320230111111393097120070411WT@WWZTTW22222112206308100000050 -T12023011111139316024200414721120212110611300000000000003460420000000000000000000000000000000000222222000001822219012 -T2202301111113931601219660324WTTY#PWBY2221222222223012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393160120050327WT@PY#9YB22212222204311100000182 -T12023011111139318324700406741120313110835300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111113931831219850123WT@9BYYBT2222212222221012212110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393183120220527WT@@W90B022222112204398100000000120200718WT@YYPPZ922222112204398100000000 -T12023011111139319923500405271120423111034300000000001007710040000000000000000000000000000000000222222000000002229012 -T2202301111113931991219870124WTTBT@WW92222211222222011216190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113931991219880213WTTBT0PPB2221222222222021214190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393199120160307WT@B0TYWB22212112204398100000000120150911WTTYYWZ9T22212112204301100000000 -T12023011111139345224200411401120233110598300000000000005280210000000000000000000000000000000000222222000000002229022 -T2202301111113934521219910704WTTYZWZ0@2222212222221012212110223823099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393452120140921WT@#@W0PT22222112204301100000000 -T12023011111139353720600400871120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111113935373219840413WT@T#Z9BB2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111393537120090913WTTBTB9YP11222222209307100000307 -T12023011111139356222000400581120712111730300000000000111650160000000000000000000000000000000000222222000000002229072 -T2202301111113935621219820518WT@BYP0WP2221222222225012212121000021011735000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393562120060105WT@P0WP0Z22212222204311100000000120040113WT@@0Y0TP22212212204312100000000 -T320230111111393562120130918WTTZW9WBW22212222204304100000000120100412WT@@T0PPZ22212222204306100000000 -T320230111111393562120210413WTTZ9PYY022212122206398100000000120190707WT@WT9T@T22212222204398100000000 -T12023011111139359120800405391120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113935912219690713WTT00P9WY2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111393591120090711WT@#@P9TW22222112204305100000050 -T12023011111139371324200414721120313110785300000000000001180440000000000000000000000000000000186122222000003502219072 -T2202301111113937131219870105WT@9BTP9B2221222222225012213110740023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000021 -T320230111111393713120180227WTTT0@Y0022212112204398100000000120140501WTTPZZY@#22212212204302100000000 -T12023011111139371421400408021110233110516300000000000001740010000000000000000000000000000000000222222000000002229021 -T2202301111113937143220030721WTT#Y9B@T1222222222221012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393714120050923WT@WTB@P912222222207310100000000 -T12023011111139372424200408231120333110598300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111113937242219860426WT@YYBT9P2222222222225012213920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393724120140327WT@WZY#T922212222204302100000000120130507WT@0Z9B#B22212222204304100000000 -T12023011111139377420800411931120212110594300000000440705280650000000000000000000000000000000000222222000000002229072 -T2202301111113937741219890723WTT9TZZZ#2221222222221012216110650023010900000000000000000000000000000000000000000000000000000000000000000000000000000000001459 -T320230111111393774120070123WTT0YW#@T22212212204308100000050 -T12023011111139378620400413031120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111113937863219510404WTTWYPTYB2222212122224012214110006011069909000000000000000000000000000000000000000000000000000000000000081000001041000000000000 -T320230111111393786120150421WT@@#ZY#T22222122206301100000000120130104WT@#9@TWB22222122206303100000000 -T12023011111139383325600414951120512111140300000000000008880220000000000000000000000000000000000222222000000002229012 -T2202301111113938331219930101WTT09WPZ02221222222221012212110233723011700000000000000000000000000320000000000000000000000000000000000000000000000000000000000 -T320230111111393833120150412WTT9W#@#B12212222204398100000000120130107WT@0B#B0912212222204303100000000 -T320230111111393833120200326WTT90#Y9Z22212212204398100000000120170101WTTB0#PZB12212212204398100000000 -T12023011111139387423900400641120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111113938741219720212WTT@WW0#@2222212222223012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111393874120110409WTT#@@#9@22222112204304100000000 -T12023011111139391322000406212120333220000300000000000005280450000000000000000000000000000000000222222000000002229022 -T2202301111113939133219680112WTT9PTYZW2222212222222012214110134711069975000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111393913120070118WT@PYPWPY22222122207308200000000120050518WTTT@ZY@922222122207310200000000 -T12023011111139419722000403351120423111052300000000000004620020000000000000000000000000000000308122222000000012219012 -T2202301111113941971219870327WT@#9B0WY1222222222222011212190174323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113941971219860902WTTYP##ZW1222221222222021211190134723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111394197120190507WT@T#PP#012222212204398100000000120160212WT@B99T#T12222222204398100000000 -T12023011111139436624200403461120333110740300000000000005280930000000000000000000000000000000000222222000000002229022 -T2202301111113943663219700922WTT0@@TT#2222212222223012211120006011069975000000000000000000000000000000000000000000000000000000000000465000000000000000000000 -T320230111111394366120100326WT@WZ@PW@22222112206305100000050120090908WTT0Y00ZB22222122206307100000050 -T12023011111139439024700409321120323110766300000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111113943901219690423WTT9ZZWBY2222211222222011215210114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113943901219810427WT@BBYP0#2222212222222021211290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111394390120060904WTT##PPY022222112204309200000000 -T12023011111139444525800405801120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113944453219580327WTTW##@#Y2122222222221012214110006013069900000000000000000000000000000000000000000000000000000000000000463000000000000000000153 -T320230111111394445120080113WT@P#Y#YZ21222222207307100000000 -T12023011111139448522000410051120213110611112830000050005280260000000000000000000000000000000000222222000000002229012 -T2202301111113944851219980408WTTTPZPB#2122222222221012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111394485120200212WT@W9#YWY22222122204398100000000 -T12023011111139454022000408561120323110766300000000020006540050000000000000000000000000000000000222222000000002229012 -T2202301111113945401219810718WTTZYW#PP2222212222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113945401219780318WTTT0T#Z92222211222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111394540120090113WTT0T09WZ22222112204303200000000 -T12023011111139454120800414151120333110822300000000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111113945413219880201WTTBBBB@P2222211222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111394541120140923WT@@ZT@T#22222122207398100000000120080707WTTYBTB0W22222112207306100000000 -T12023011111139456522000401711120213110611300000000000001530170000000000000000000000000000000000222222000002642219012 -T2202301111113945651220010121WTTZT9@ZT2222211222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111394565120110709WTTZYTYB022222112207302100000000 -T12023011111139457424700401011120233110536300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111113945743219450902WTT@Z900W2212222222214012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000054600000000 -T320230111111394574120060926WT@0B@W#Z22122222206309100000000 -T12023011111139472720600402141120333120000300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111113947273219660702WT@B999BY2222212112225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001756000000003146 -T320230111111394727120160227WT@W90#B022212222206398100000000120130118WTTT#WT9Y22222122206301100000000 -T12023011111139477625900403551110333110517107510000122004590260000000000000000000000000000000000222222000000692219021 -T2202301111113947762219820323WT@YYBT9P1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111394776120170907WTTB#9@PY12222222204398100000000120050404WTTBZ#0ZT12222122204311100000000 -T12023011111139484422000406211120313110766300000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111113948441220020112WTTZW@Y9T2222212222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111394844120220113WTT@#9Y@022222112204398100000000120210314WTTZPB0@P22222122204398100000000 -T12023011111139487724600411871120213110557300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113948771219980212WTTYYTZ0B1222212222221012212110035723011400000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T320230111111394877120170904WTT#9#00Y12222112204398100000000 -T12023011111139489625600411701120333120000300000000000005280550000000000000000000000000000000000222222000000002229022 -T2202301111113948963219560318WTTTP#TTT2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000089300001114000000000000 -T320230111111394896120150511WT@YPBBPW22212212206398100000000120080118WTT00P#B#22212212206307100000000 -T12023011111139503024700408301120413110626300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111113950301219870924WTTT99YWY2222212222223012212110085223010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395030120080112WTTBWYTWT22222112204309100000508 -T320230111111395030120160718WT@@B#@YZ22222122204301100000000120110123WT@##9#W@22222112204306100000000 -T12023011111139509524200410211120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113950953219680902WTT@YW#9T2221222222222012212110570313069900000000000000000000000000000000000000000000000000000000000000000000000000000032380000 -T320230111111395095120090404WTTWYW0ZZ22222222206308100000000 -T12023011111139511724200404051120312110740108900000080005280140000000000035003000000000000000000222222000000002229072 -T2202301111113951171219900107WT@WZ@WWW2221222222223012216110750021011810000000000000000000000000000000000000000000000000000000000000078600000000000000000000 -T320230111111395117420180223WT@W@WWT022212222104398109140004120110427WT@Y#YY#W22212212204306100000007 -T12023011111139518622000408891120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111113951861219830324WT@@@9@YT2222211222222011212290095121011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113951861219860123WT@0@T0W02222212222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395186120120214WTTYT@@@@22222112204304200000000 -T320230111111395186120200524WTTZ@0#@B22222112204398200000000120150322WT@9W0BP022222112204398200000000 -T12023011111139537120800410751120833111691116000000229010090700000000000000000000000000000000000222222000000002229022 -T2202301111113953711219840227WT@YPPPTB2222212222225012212110910023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395371120050302WT@ZBZ9@B22222122204310100000000 -T320230111111395371120140107WT@WZ0T@912222112204302100000000120110324WT@@Y0PB@22222122204305100000000 -T320230111111395371420090113WT@0TWBWZ22212212104307108200000120080427WT@P#B9PZ22222112204308100000000 -T320230111111395371420200704WTTPT0W@022212212104398109140000120190904WTTZB#0Y922212212204398100000000 -T12023011111139543624700402991120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111113954361219930421WTTYBP9#T1221222222221012211110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395436120140704WTT0Z#B@W12212212204398100000000 -T12023011111139551123500409142120233210188300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111113955113219900201WT@W9WWT92222122222221012212910085213079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395511120140727WTTPZB9YB22221212207398900000000 -T12023011111139553124700409381120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111113955311219930723WT@YY@PBT2222212222225012213110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395531120130214WT@YT#W0T12222122204304100000050 -T12023011111139554723900408291120333110704300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111113955473219910111WT@WPZ@YY2122221222221012212110006011069921000000000000000000000000000000000000000000000000000000000000195400000000000000000000 -T320230111111395547420220318WTTT#PWWB22222222204398100000000120120312WT@PP0PY921222212208302100000000 -T12023011111139558523700414331120233110376300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111113955852219640727WT@YYBT9P1222211222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395585120090401WT@TZ9@Z#12222122204307100000169 -T12023011111139568121000408061120213110576300000000000005280230000000000070003000000000000000000222222000000002229012 -T2202301111113956811219980705WTTTPYPB#1222222222221012212110243623011800000000000000000002000000000000000000100000000000000000060000000000000000000000000000 -T320230111111395681120160204WT@B9PWW012222212204398100000050 -T12023011111139569021000403201120212110600117460000025703160200000000000000000000000000000000211122222000000012219012 -T2202301111113956901219990126WT@#9@#@Y1222212222221012216110213923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395690120210721WTTPZ0@9912212112204398100000000 -T12023011111139578920600414871120233120000300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111113957893219600511WTT0W0WB02222212122223012212110372313069900000000000000000000000000000000000000000000000000000000000000000000000809000000001087 -T320230111111395789120190702WT@@90@ZT21222112206398100000000 -T12023011111139584224700409321120333110493300000000080404390720000000000000000000000000000000000222222005200372219022 -T2202301111113958422219790901WT@YYBT9P1222222222221012209910006013079900000000000000000000000000000000000000000000000000000000000000064500000000000000000000 -T320230111111395842120120312WT@0#WBWP12222212204303100000000120050704WTT00@YT#12222212204311100000000 -T12023011111139588024200407311120323110776300000000160006540160000000000000000000000000000000000222222000000002229072 -T2202301111113958801219820313WT@W9PBTW2222212222222011208110770023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113958801219780707WTT#@#WW92222211222222021212190650023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395880120040324WTTBPBZ@B22222122204311100000000 -T12023011111139590020600400802120613211339300000000000003810300000000000000000000000000000000000222222000006282219032 -T2202301111113959001219880102WTT0TPB0Y2222122222221012208910312921011700210000000000000000000000000000000000000000000000000000020000125500000000000000000000 -T320230111111395900120070218WT@WB#BZ@22221212204307900000000 -T320230111111395900120100108WT@#YW@BT22221222204304900000000120080712WTT09WWTP22221222204307900000000 -T320230111111395900120190123WTT9@B9TT22221222204398900000000120120104WT@PYWPTB22221212204302900000000 -T12023011111139590524200414851120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111113959051220010905WTTB@BBB#2221222222221011211110045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113959051220000523WT@Y#B0BZ2221221222221011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395905120210126WT@9TPY9W22212212204398100000000120180123WTTTPYBTT22212222204398100000000 -T12023011111139590722000400431120213110611300000000600005280170000000000000000000000000000000000222222000000002229012 -T2202301111113959071219870923WT@WWY0BT2222212222221012216120184223011400000000000000000000000000000000000000000000000000000000030000000000000000000000002500 -T320230111111395907120070326WT@9PP0WW22222122204308100000000 -T12023011111139592020600414871120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113959203219650313WTTBPB0W#2222212222211012212120770013069900000000000000000000000000000000000000000000000000000000000000000000000000090400000000 -T320230111111395920120060214WT@@WZZ0#22212222206310100000000 -T12023011111139592324700409321120412110939300000000000007710170000000000000000000000000000000000222222000000002229072 -T2202301111113959231219870922WT@YZZ9@W2222212222221012212110930023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395923120070109WT@ZWT@#922212212204307100000000 -T320230111111395923120220501WT@#0#TZT22222122204398100000000120180907WT@ZBPBB@22212212204398100000000 -T12023011111139594825000414191120212110595300000000164604840450000000000000000000000000000000000222222000000442219012 -T2202301111113959481219830914WT@P#@9#@2222211222225012212110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000044 -T320230111111395948120080107WTT@TB@Y922222112204306100000050 -T12023011111139597922000406271110332110740300000000020003910010000000000000000000000000000000000222222000002632219022 -T2202301111113959791219760426WTT0ZT0Z92221222122213012214110006023089900000000000000000000000000000000000000000000000000000000000000000000011480000100000000 -T320230111111395979120190424WT@PZ0B9B22212212204398100000000120130904WT@9T0PW@22212212204303100000000 -T12023011111139598522000400461120412110939300000000000007710780000000000000000000000000000000000222222000000002229072 -T2202301111113959851219860323WTT#BYB0P2221222222221012210120790023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111395985120130721WTTP#Z@9022212222204303100000000 -T320230111111395985120180524WTTBB@Z@W22222122204398100000000120140723WT@#Y9TTY22212212204302100000000 -T12023011111139609922000406271120113110376300000000000004170150000000000000000000000000000000000222222000000002229012 -T2202301111113960991219860327WT@90P##92221222222221013216110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111139611324200410211120313110740300000000025000260610000000000000000000000000000000000222222000006282219072 -T2202301111113961131219890412WT@PWYPBZ2222212222221012212110780021011800210000000000000000000000000000000000000000000000000000000000125500000000000000000000 -T320230111111396113120140326WTT@PWP0#22222122204398100000000120110404WTT0Z09W@22212112204304100000000 -T12023011111139626922000408891120312110271300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111113962691219830527WTTY#@PYP2221222222225012213210105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111396269120160514WTT9P9@9922212222204398100000000120140927WTTB#BZ@W22212212204302100000000 -T12023011111139627120800411601120313110835300000000010004900350000000000000000000000000000000163222122000000012219012 -T2202301111113962711219940418WTTT@@T@Z1222222222221012209220362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111396271120190411WT@ZY0Y@912222222204398100000000120150723WT@9#WWTW12222212204398100000000 -T12023011111139630422000400811120113110376300000000000004170200000000000000000000000000000000000222222000000002229012 -T2202301111113963041219900122WT@BZZP#Y2222212222221013212190204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111139631220600414251120323110706300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111113963121219780322WT@Y#0BYP2222212222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113963121219690105WT@0BB@T92222211222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111396312120070112WT@PW0@W022222122204312200000000 -T12023011111139633323900408801120533111116300000000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111113963332219840226WTT@ZWYB@2222211222213012212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111113963332219910509WT@9ZT9P@2222222222211102212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000060900000000 -T320230111111396333120130723WTT#Z9TBW12222112204301100000000 -T320230111111396333120220914WT@B@#@9T22222222204398100000000120140904WTTW#YT9Y12222122204301100000000 -T12023011111139637524200407312120323210835300000000285006540030000000000000000000000000000000000222222000000002229032 -T2202301111113963751219880904WT@BWPPBP2222212222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113963751219910912WT@9TPY9W2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111396375120200726WT@9TPY9W22222122204398200000000 -T12023011111139644124200414721120233110536300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111113964411219900423WT@ZY9#B02221222222221012212220164423099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111396441520180712WT@0T#Y@@22212122104398106090000 -T12023011111139649222000410051120413111032300000000000007710160000000000000000000000000000000000222222000000002229012 -T2202301111113964921219920223WT@Z9T#0T2222122222221012210910312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111396492120160212WT@#Y##W#22221212204398100000000 -T320230111111396492120220214WTTZ@Z00W22221212204398100000000120170927WT@@WB9WB22221212204398100000000 -T12023011111139691622000412971120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111113969161219710713WTTTPPYT#1222212222225012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111396916120050327WT@ZZW#Z912222122204309100000000 -T12023011111139702820800410781120213110560300000000000005010120000000000000000000000000000000000222222002600012219012 -T2202301111113970281219980407WT@Z#@@#P2221221222221012212110124821011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111397028120150321WT@PPPTYT12212222204301100000000 -T12023011111139709320600401561120213110516300000000000004170230000000000000000000000000000000000222222000000002229012 -T2202301111113970931219840126WT@0PZB#02222212222221012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111397093520110124WT@W0@9BY22222112104304103020632 -T12023011111139712722000411551120233110516300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111113971272219820323WT@#9BZBZ1221222222213012210110421813089900000000000000000000000000000000000000000000000000000000000000000000000000084100000000 -T320230111111397127120220322WTTZT09BT12212212204398100000000 -T12023011111139719125200400411120333110376300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111113971913219770418WTTYB9@T92222212222222012214110243611069938000000000000000000000000000000000000000000000000000000000000288800000000000000000000 -T320230111111397191120060921WT@YT@BW@22222122209310100000445420060424WTT#9W#BY22222112204307100000000 -T12023011111139725322000408891120312110670300000000000005280790000000000000000000000000000000000222222000000002229072 -T2202301111113972531219850712WTTWW#@#B2221222222221012208111920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111397253120070313WT9TT900P22212222204308100000000420060901WT@PBPY9@22212212104310109140000 -T12023011111139735924200403941120233120000300000000001005280030000000000000000000000000000000000222222000000002229022 -T2202301111113973592219610318WTTZB#BPY2222212222215012216110213913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111397359120040326WT@ZP#ZZY22222112204311100000050 -T12023011111139741324200408391120213120000300000000097805280030000000000000000000000000000000000222222000000002229012 -T2202301111113974131219870412WTTPWZ0WY2212222222225012201210065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111397413120220324WTTZ0PBZZ22122222204398100000000 -T12023011111139741922000413691120533111116300000000000007710440000000000000000000000000000000000222222000000002229022 -T2202301111113974193219660301WTTBTY0T@2222212222223012213120006013069900000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111397419120070727WTTTP#TZ022222122206310100000000120040112WT@0#0WW022222122206312100000100 -T320230111111397419120110409WTTY09#@B22222212206306100000000120090418WTT#@PWZ922222122206308100000000 -T12023011111139743720600401981120613111395300000000000010090710000000000000000000000000000000000222222000000002229072 -T2202301111113974371219800307WT@YYZP#02222222222223012212110720023010100000000000000000000000000000000000000000000000000000000130000000000000000000000000000 -T320230111111397437120070921WT@T#Z99B21212212204309100000000 -T320230111111397437120180401WTT00TZ9#22212212204398100000000120150705WT@#PZ0@P21222222204398100000000 -T320230111111397437120220227WTT0#BBWW21222212204398100000000120210524WTT00#W9T21222222204398100000000 -T12023011111139764624700413891120623111339300000000000002780030000000000000000000000000000000000222222000007312219012 -T2202301111113976461219860723WTTZYZP#B2222121222222011212110035721011812000000000000000000000000000000000000000000000000000000000000073500000000000000000000 -T2202301111113976461219860927WT@WTB#Y01222222222222021207290035721011935000000000000000000000000000000000000000000000000000000000000109200000000000000000000 -T320230111111397646120090113WTT@BZY#Z12222212205306100000000120070301WTTT09#P#12222212205308100000000 -T320230111111397646120210301WTT9ZPW#W12222112204398100000000120180721WTTBY#Y0912221212204398100000000 -T12023011111139771722000405841120333110247300000000050004170570000000000000000000000000000000000222222000000002229022 -T2202301111113977172219790722WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113977172219760402WT@YYBT9P2222221222222022209990006013079900000000000000000000000000000000000000000000000000000000000000035000000000000000000000 -T320230111111397717120060902WT@TYWP@#12222122204310100000000 -T12023011111139777922000408891120413111034300000000000007710180000000000000000000000000000000000222222000000002229012 -T2202301111113977791219840507WTTYZ9P0B1222222222223012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111397779120060927WT@W9B@YP12212222204309100000000 -T320230111111397779120130726WTT0@#YPB12212212204302100000000120070104WTTZPT@ZY12212212204308100000000 -T12023011111139778424200414851120513111116300000000000008880780000000000000000000000000000000000222222000000002229072 -T2202301111113977841219860105WT@9Y@WTW2222212222224012210110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111397784120120505WT@Z@@#9022222112204305100000000120090412WT@WPB9ZZ22222112204308100000000 -T320230111111397784120210512WT@T#9YBY22222112204398100000000120130914WTT99W90#22222112204304100000000 -T12023011111139779924700408361120233120000106070000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111113977993219650313WT@BB0YBW2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000318500000000000000000000 -T320230111111397799120160726WT@#P9ZWP22222112206398100000000 -T12023011111139783425900400311120413111034300000000000007710290000000000000000000000000000000000222222000000002229012 -T2202301111113978341219980301WT@PZTP991222222222221012211110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111397834120170209WT@0P00WP12222122204398100000000 -T320230111111397834120210723WT@WZWP#P12222222204398100000000120200123WTTP@WP#Y12222112204398100000000 -T12023011111139786424700406741120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113978643219630208WT@Z#9ZP92222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000413100000000000000000000 -T320230111111397864120090926WT@Y0B@9#22212122206306100000000 -T12023011111139803620800404431120433110939300000000000005280880000000000000000000000000000000000222222000000002229022 -T2202301111113980362219850913WTT9T0WB02222212222212012212190481213089900000000000000000000000000000000000000000000000000000000000000000000010000000100000049 -T2202301111113980362219820126WT@9BBP9T2222211122212022211190015913109900000000000000000000000000000000000000000000000000000000000000000000000672035900000000 -T320230111111398036120170126WTT@@@0WB22222112204398100000000120150701WT@9#BZ@T22222122204398100000000 -T12023011111139835224700411201120233110611300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111113983523219690527WTT09WP092222212222225012212120510913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111398352120190212WTTB@WPWB22222122207398100000000 -T12023011111139843224200408391120333120000300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111113984323219780904WT@#000PY2222212222222012216110332713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000034 -T320230111111398432120180712WT@@ZYPB922222112209398100000000420090927WTT0YPZ#Z22222122204307100000000 -T12023011111139863820600414251120323110704300000000020006540100000000000000000000000000000000000222222000000002229012 -T2202301111113986381219800924WTTZYP@B02222211222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113986381219820426WT@#T#PZ#2222212222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111398638120100511WT@YYT09B22222112204306200000000 -T12023011111139873724200404891120213110576300000000238705280450000000000000000000000000000000000222222000000002229012 -T2202301111113987371219780305WT@9Y#@YP1222212222225012216110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111398737120070927WT@0#9ZP012222122204308100000050 -T12023011111139877324700406741110332110740300000000000003570350000000000000000000000000000000000222222000001712219021 -T2202301111113987732219890208WT@Z9@BBP2222212222211012216110910013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111398773120140523WTT@TWZ9@12222112204303100000000120110412WTT9##W@B12222122204306100000000 -T12023011111139887220800404431120413110939300000000000007710420000000000000000000000000000000000222222000000002229012 -T2202301111113988721219960105WTT0Z9#@Z2222212222225012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111398872120160518WT@Z9#ZWB22222112204398100000050 -T320230111111398872120210702WTTT@PWTP22222122204398100000000120170704WTTB@WB@Z22222122204398100000050 -T12023011111139889420300408521120213110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111113988941219850721WT@0W@PTY2222121222221012210110184223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111398894120090411WTTB9BZ0W22221222204306100000000 -T12023011111139889525900402831120313110817300000000000506540350000000000000000000000000000000000222222000000002229012 -T2202301111113988951219980512WT@W00@ZP2222212222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111398895120200327WTTT9PPZY22222122204398100000000120150123WT@@T#YPP22222112204398100000000 -T12023011111139899524100402401120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111113989952219820112WTT9B99W02222212222211012212110451511089911000000000000000000000000000000000000000000000000000000000000081300000000082200000000 -T320230111111398995120110704WT@#PY9YZ22222112204303100000000 -T12023011111139903422000405841120413110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111113990341219950211WT@9TPY9W2222212222222012212210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111113990342219880404WT@YYBT9P2222211222222022212290006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111399034120190213WT@9TPY9W22222112204398200000000120160701WT@9TPY9W22222112204398200000000 -T12023011111139904520800411991120232110516300000000000004170900000000000000000000000000000000000222222000000002229022 -T2202301111113990452219840421WT@B#W9#B2222211122211012212110015913109900000000000000000000000000000000000000000000000000000000000000000000000548029400000000 -T320230111111399045120130321WT@0ZW09W22222112204302100000000 -T12023011111139914924700413891120313110835300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111113991491219960427WT@9@W9BT1222222222223012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111399149120150421WT@@TBTT#12222122204302100000000120120723WTT9@TB0Z12222112204305100000000 -T12023011111139918623500407161120423110939300000000200007710040000000000000000000000000000000000222222000000002229012 -T2202301111113991861219820118WTTZTPZB02222212222222011214290055523011800000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T2202301111113991861219820209WTTYYWW@02222221222222021214290055523011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111399186120190505WT@0YW0BW22222222204398200000000120100704WTTW0WPP922222222204306200000000 -T12023011111139936622000406192110213210516300000000000002380010000000000000000000000000000000000222222000000002229032 -T2202301111113993661219760413WT@9TPY9W2221222222223012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111399366120170513WT@9TPY9W22212212204398200000000 -T12023011111139966720800411991120212110611300000000000005280520000000000000000000000000000000000222222000000002229012 -T2202301111113996671219830309WT@TTY9T@2222212222223012216210461423010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111399667120070101WT@9Y900022222112204308100000000 -T12023011111139976125900406841120232110470300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111113997613219860501WTTB@9#WW2122222222221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002619 -T320230111111399761120220312WT@9@BTZW21222222207398100000000 -T12023011111139979025900402831120333110516300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111113997902219790314WTT0T@@@Z1222222222221012212910015913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111399790120150907WT@PP0YZT12222212204398100000000420070304WTT9ZP9Y@12222222104306109140000 -T12023011111139989124700408301120213110611300000000010005280050000000000000000000000000000000000222222000000002229012 -T2202301111113998911219880202WT@TTWBZ02222211222224012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111399891120160522WT@TB@@@P22222112204398100000004 -T12023011111140009325100407171120213110611300000000020005280140000000000000000000000000000000000222222000000002229012 -T2202301111114000931219790507WTTZYZ@WW2222212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111400093120210427WT@TPWWWW22222112204398100000000 -T12023011111140039525900406081120233120000300000000000004170670000000000000000000000000000000000222222000000002229022 -T2202301111114003953219910901WT@#BY@#T2122212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000346000000000000000000145 -T320230111111400395120170427WT@TW@ZBT11222122207398100000000 -T12023011111140050122000409411120233120000300000000030604170340000000000000000000000000000000000222222000000002229022 -T2202301111114005013219650423WT@@WT##Z2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001846000000000000 -T320230111111400501120050312WTTWTZZ9W12222122207311100000000 -T12023011111140062220600400871120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114006221219990409WT@WPBPBB2222212222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111140063025900406651110113110376300000000000002690010000000000000000000000000000000000222222000000002229012 -T2202301111114006301220040708WT@ZBB0Y@2222212222221013209190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111140071022000402371120313110822300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111114007101219880927WT@WY0Z0Y2221222222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111400710120140724WT@@TTZYP22212212204302100000000120110702WT@PWP#P922212212204305100000000 -T12023011111140075020800414651120313110835300000000053505280020000000000000000000000000000000000222222000000002229012 -T2202301111114007501219790204WT@0Z@B9P2222212222223012214120213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111400750120110714WT@0##WYY22222112204305100000000420080421WTTYZT@W@22222112104309108220000 -T12023011111140094420600407031120433110893300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111114009442219890527WTT#PYT0W2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111400944420100911WT@BP@0ZT12222112104305106870000 -T320230111111400944120200723WT@9#00P@22222122204398100000000420160214WT@@@BPTW22222122104398108220000 -T12023011111140109922000402371120312110835300000000000006540290000000000000000000000000000000000222222000000002229012 -T2202301111114010991219880727WTTB99BPP2221222222221012213110303021011973000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401099120140423WT@PY@0#Y22212212204302100000000120100405WTTT#Z0Z@22212212204306100000000 -T12023011111140110625900406841120333120000300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111114011063219360722WT@0TT0002122222122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002255000000000269 -T320230111111401106120110212WT@T00BY921222222206306100000000120050707WT@9099BP21222222206309100000000 -T12023011111140114822000405181120213110598300000000000005280460000000000000000000000000000000000222222000000002229012 -T2202301111114011481219920402WTT9WYTBW2221222222221012212110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401148120190318WTT9PZ0#T22212222204398100000000 -T12023011111140120324200407271120313110766300000000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111114012031220010902WT@T0PZ#P2222212222221012204110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401203120200223WT@BZZ9B022222122204398100000000120170314WTTT99#BY22222112204398100000000 -T12023011111140131024200403941120413110767300000000000002420560000000000000000000000000000000000222222000005292219012 -T2202301111114013101219860326WTT#0BBZP2221222222223012212110570321011723000000000000000000000000000000000000000000000000000000000000134200000000000000000000 -T320230111111401310120080501WTT0W00#922212212204305100000176 -T320230111111401310120180301WTT#WYBYP22212212204301100000000120150514WTTYBT9P#22212212204302100000000 -T12023011111140136523500407161120212110611300000000050005280060000000000000000000000000000000000222222000000002229012 -T2202301111114013651219770913WT@0BYBWZ2222212222221012216110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401365120050701WTTT#@PZ022222112204310100000000 -T12023011111140138022700407441120433110611300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111114013802219870114WT@YYBT9P1222222222221012216990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114013802219850407WT@YYBT9P1222221222221102211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401380120220713WT@9TPY9W12222212204398100000000120220713WT@9TPY9W12222212204398100000000 -T12023011111140142924200402501120233110446300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114014292219800313WT@TW0Z9T2222212222215012212110810013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111401429120070423WTTP0#9#922222122204308100000239 -T12023011111140148624100413561120433110611300000000050205280020000000000000000000000000000000000222222000000002229022 -T2202301111114014862219820924WT@YYBT9P1222212222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114014862219790118WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401486120130227WTT9W90WY12222122204303100000000120080527WT@PY@9WY12222122204308100000000 -T12023011111140153324100402402120323210835300000000000006540020000000000070001000000000000000000222222000000002229032 -T2202301111114015331219990118WTTT9Z9T02222211222222011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114015331219980304WT@P0Y#W#1222222222222021214190006021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401533120220905WTTZ0#0@P12222212204398100000000 -T12023011111140156324700406701120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111114015631219730121WTT0#ZPYT2222211222222011207190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114015631219790914WT@Z0TZYP2222212222222021207190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401563120160212WTT#0PWBY22222112204398100000000 -T12023011111140163224200403941120312110817300000000000506540120000000000000000000000000000000000222222000000002229072 -T2202301111114016321219860423WTT#ZBPWB2222212222221012216111040023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401632120160404WTTTPTT0T22222122204398100000000120100124WT@0900YW12222122204305100000000 -T12023011111140168023500410671120212110516300000000000004170730000000000000000000000000000000000222222000000002229072 -T2202301111114016801219820107WT@WZ#@TT2222212222225012208121450023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111401680520090427WT@@T#W0W22222112104307109140000 -T12023011111140168624200402531120523111116300000000000008880050000000000000000000000000000000000222222000000002229042 -T2202301111114016861219830312WT@YP@WW02222221222222011211290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114016861219880323WTTY#Z#9P2222212222222021211290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401686120070911WT@Z#BBBZ22222222204308200000000 -T320230111111401686120130213WTT@BTW#W22222212204303200000000120100923WT9TTTP9B22222222204306200000000 -T12023011111140171520600402141120212110611300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111114017151219850312WTTP#PWYT2222212222221012216110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401715120190109WT@Y99##B22222112204398100000000 -T12023011111140175324200411401120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111114017533219800408WT@@@@9WY2222212222222012212110065413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401753120140324WTTY@#BBB22222122207302100000000 -T12023011111140175423500410672120323210786300000000000006540140000000000000000000000000000000000222222000000002229032 -T2202301111114017541219970723WTTPT##9B2222212222222011214210055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114017541219930313WT@PWT0902222211222222021214290006021011967000000000000000000000000000000000000000000000000000000180000411000000000000000000000 -T320230111111401754120220112WT@9@YP9B22222122204398100000000 -T12023011111140175722000404841120232110598113960000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111114017571219890927WTT#P@#ZZ2221222222221012212110293123099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401757120200923WTT9ZP#T@22212212204398100000000 -T12023011111140182523500404531110213110611300000000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111114018251219970207WT@TWT@B#1222212222221012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401825120210402WTT#Y@#ZB12222112204398100000000 -T12023011111140192322000400281120323110776300000000000006540440000000000000000000000000000000000222222000000002229012 -T2202301111114019231219730401WTTPZYWP91222221222222011212190461423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114019231219680104WT@YY#T#Y1222222222222021210290204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111401923120050418WT@90#W#912222222204311100000000 -T12023011111140201225200409361120323110835300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111114020121219940102WTTY#9Y0Y2221222222222011212110303023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114020121219790723WT@P@0YPZ2222211222222021212190035723011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111402012120150701WTTTBP#W#22212222204301100000000 -T12023011111140223325200410591120233110516300000000000004170750000000000000000000000000000000000222222000000002229022 -T2202301111114022332219860107WTTZTZPPW2122222222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000090400000699 -T320230111111402233120160305WT@0YZWZ#22222122204398100000000 -T12023011111140228422000406191120533111116300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111114022843219540104WT@PYWZ0W2222212122225012212120006013069900000000000000000000000000000000000000000000000000000000000000000000002527000000000000 -T320230111111402284120060726WTTZB#ZP#22222122206309100000000120050421WTT0WYTBZ22222122206311100000000 -T320230111111402284120100318WTT#090W@22222112206305100000000120070414WTTYYBTW#22222112206309100000000 -T12023011111140239424200414851120233110516300000000005004170960000000000000000000000000000000000222222000000002229022 -T2202301111114023943219620914WTTW#WZWP2221222122224012212110144613069900000000000000000000000000000000000000000000000000000000000000000000001190000000000000 -T320230111111402394120110507WT@#PT#9022212222206304100000000 -T12023011111140242522000413732120423211034300000000050007710030000000000000000000000000000000000222222000000002229032 -T2202301111114024251219980121WTTTB90@P2222121222222011212290065423011800000000000000000002000000000000000000000000000000000000390000000000000000000000000000 -T2202301111114024251219990924WT@P0Z#@T2222122222222021212290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111402425120210123WT@BTT#@022221222204398200000000120200713WTT#BTP9P22221222204398200000000 -T12023011111140251220600400871120213110598111250000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114025121219940426WTT9#W9YW2221222222223012213110035721011733000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111402512120220227WTTWP9TPP22212212204398100000000 -T12023011111140254622900405641120233110516300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111114025462219750912WTTT@@#WZ2222212122211012212110233713109900000000000000000000000000000000000000000000000000000000000000000000000720021400000452 -T320230111111402546120050327WT@BY0Z9B22222122204310100000050 -T12023011111140260920800404431120433110939300000000000006540830000000000000000000000000000000000222222000000002229022 -T2202301111114026092219950114WT@Z9TWB#2222212222215012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111402609120160107WT@WBBB9#22222122204398100000000 -T320230111111402609120200113WTT90TZZB22222122204398100000000120170222WTT@PTZWY22222122204398100000000 -T12023011111140263322000411281120213110611300000000000003160620000000000000000000000000000000211122222000000012219012 -T2202301111114026331219900118WTT#90BTY1222212222221012216110570323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111402633120180227WT@TTZ@0W22222112204398100000000 -T12023011111140266822600405051120213110611300000000005003160080000000000000000000000000000000211122222000000012219012 -T2202301111114026681220030427WTTWPW9PP2222212222221012212120095123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111402668120210707WTT0Y999Y22222122204398100000000 -T12023011111140267124900412321120433120000125000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111114026713219900512WTTYB@YP91222222222222012213110006013069900000000000000000000000000000000000000000000000000000000000000392700000000000000000750 -T320230111111402671420190413WT@BBT@TT12222222204398100000000 -T320230111111402671120220704WTT90BTYT12222122209398100000000420210321WT@BPPBBW12222222204398100000000 -T12023011111140302020300400971120232110516300000000075004170910000000000000000000000000000000000222222000000002229022 -T2202301111114030203219490907WT@0W@Z092222212122224012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000410000000001062 -T320230111111403020120140324WTT@Z@9B#22222122206302100000000 -T12023011111140307222900405641120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114030721219840423WTTYBPBY#2222211222225012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111403072120060213WTTTWWZW#22222122204310100000135 -T12023011111140323422000403481120212110602113950000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114032341219940101WT@WW0PZT1222212222221012216120114923011700000000000000000000000000180002000000000000000000000000000000000000000000000000000000 -T320230111111403234120200113WT@9YT@9P12122112204398100000000 -T12023011111140331020600407031110323110740300000000000000420010000000000000000000000000000000000222222000000002229012 -T2202301111114033101219810327WT@Y@PBB92222212222221011216190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114033101219780208WT@#BTB992222211222221011212190025821011939000000000000000000000000000000000000000000000000000000000000242600000000000000000000 -T320230111111403310120210323WTTTYWB@@22222122204398100000000 -T12023011111140334022700413181120313110766300000000000004900120000000000000000000000000000000163222122000000012219012 -T2202301111114033401219810701WTT#@YPB91222212222221012212220124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111403340120080311WT@#0T@WZ12222122204307100000000120050412WTT990TTZ12222112204311100000000 -T12023011111140343323500407161120523111116300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111114034331219850427WTT0BPBYZ2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T2202301111114034331219870114WT@9TPY9W2222212222222021214290114923011800000000000000000000000000000000180000000000000000000000130000000000000000000000000000 -T320230111111403433120100526WT@9TPY9W22222212204305200000000 -T320230111111403433120140301WT@9TPY9W22222222204301200000000120110507WT@9TPY9W22222222204304200000000 -T12023011111140345122000409871120912111786300000000000014160200000000000000000000000000000000000222222000000002229072 -T2202301111114034511219910708WTT#0WZPZ2222222222223012212110810023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111403451120090924WT@Y@Z0Y912222112204307100000000120070201WTT#0P#PZ11222212204310100000000 -T320230111111403451120130401WTTBZW@WZ12222122204303100000000120120424WTT0BWY#W12222112204304100000000 -T320230111111403451120180301WT@PBZPPB12222122204398100000000120170321WTTZ#PY9P12222122204398100000000 -T320230111111403451120220718WT@Y#0WB@22222212204398100000000120200721WTT#P#9Z011222212204398100000000 -T12023011111140356224100412771110433110740300000000065000850140000000000000000000000000000000000222222000005692219021 -T2202301111114035622219850418WT@PWBYTW1222222222221012212910015913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111403562120120227WT@09Z0WB12222212204304100000000 -T320230111111403562120160913WTT90Y@0912222212204398100000000420140107WTTT@9P9#12222222104302109140000 -T12023011111140356922000410051110233110376300000000000001680070000000000000000000000000000000000222222000002492219021 -T2202301111114035692219760907WT@YYBT9P1222222222221012206910006011079910000000000000000000000000000000000000000000000000000000000000061600000000000000000000 -T320230111111403569120060927WT@P#YW0W12222212204311100000000 -T12023011111140364924200414721110212110516300000000025000330120000000000000000000000000000000000222222000000002229012 -T2202301111114036491219970922WT@@0@9WZ2222222222221012208110461421011807000000000000000000000000000000000000000000000000000000000000088100000000000000000000 -T320230111111403649120160407WTTZZ900922222122204398100000000 -T12023011111140372024700406701120313110694300000000010006540040000000000000000000000000000000000222222000000002229012 -T2202301111114037201219800521WTTY0W#@#2222212222223012212210243621011940000000000000000000000000000000000000000000000000000000000000361200000000000000000000 -T320230111111403720120120112WT@0#TYY@22222122204304100000000120090418WT@9BTZB#22222112204307100000000 -T12023011111140372624700405901120213110611300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111114037261219890424WTTBB@@W92222212222221012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111403726120100713WT@W#0#TY12222222204307100000000 -T12023011111140374824200404891120613111339123890000000008000220000000000000000000000000000000000222222000002092219072 -T2202301111114037481219900123WTTTB#BTW2211222222225012216110730021011814000000000000000000000000000000000000000000000000000000000000083300000000000000000000 -T320230111111403748120090101WT@#BY#TP22222222204306100000000 -T320230111111403748120130509WTTP@T0ZY22222222204303100000000120120427WTTWTW##T22222222204304100000000 -T320230111111403748120200421WTT#@BB@022222222204398100000300120170323WT@B9P0T@22212222204398100000000 -T12023011111140375525600412851120313110835300000000040006540310000000000000000000000000000000000222222000000002229012 -T2202301111114037551219910114WT@P0@99P2222212222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111403755120150711WT@0TW#0@22222112204301100000000120140407WT@Y@#B0Y22222122204302100000000 -T12023011111140376321700407751120233110516300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111114037632219920718WT@T9TYPZ2222212122211012209110006013109900000000000000000000000000000000000000000000000000000000000000000000000900003400000000 -T320230111111403763120210107WTT0#PW0022222122204398100000000 -T12023011111140379022000410051120113120000300000000000004170100000000000000000000000000000000000222222000000002229012 -T2202301111114037901219940701WT@P90@W@2222212222221013212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111140390724700413761120232110516300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114039072219820323WTT#W9#@Z1122222222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111403907120160721WT@#B@0WY12221222204398100000000 -T12023011111140393122000403891120213110611120300000000205280290000000000000000000000000000000000222222000000002229012 -T2202301111114039311220000704WTT9PT0BT2221222222221012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111403931120210221WTT@B00YW22212212204398100000000 -T12023011111140393422000411981120233110536300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114039342219940923WTTP#PTPY2222212222211012212210006013089900000000000000000000000000000000000000000000000000000000000000000000000000062000000000 -T320230111111403934120210104WTTBPY#Y@22222112204398100000000 -T12023011111140414125900402831120213110611300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111114041411219990112WTT#9#BP01222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111404141120150908WT@TT0P0912222122204398100000000 -T12023011111140437320600411031120233120000300000000017804170140000000000000000000000000000000000222222000000002229022 -T2202301111114043733219690123WTTYYZ#YP2222212222225012211110055511069938000000000000000000000000000000000000000000000000000000000000598600000000000000000000 -T320230111111404373120150407WT@Z9P9P@22222122206302100000000 -T12023011111140438824200414851120312110788300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111114043881219980201WTTTTPW902122221222211012210190006023089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T2202301111114043881220000301WT@ZWZWZZ2221222222221012216190184223011800000000000000000000000000000000000000000000000000000000590000000000000000000000000000 -T320230111111404388120190318WTTW9TPZY22222112204398100000000 -T12023011111140444121700409521120413111034300000000000004620110000000000000000000000000000000308122222000000012219012 -T2202301111114044411219920913WTTYWZZT02222212222223012212110124823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111404441120130127WTT0P9W#B22222122204303100000000 -T320230111111404441120170727WTTB9BB@W22222122204398100000000120140722WTTWTWBT022222122204398100000000 -T12023011111140454022900410121120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111114045401219940426WT@BW9TY@2222212222221012216110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111404540120210311WT@WPBWZT22222122204398100000000 -T12023011111140472820600407031120313110835300000000000005340060000000000000000000000000000000000222222000001202219012 -T2202301111114047281219980722WT@Z0T@Y92222212222221012212120065421010908000000000000000000000000000000000000000000000000000000040000047700000000000000000000 -T320230111111404728120210211WT@@B#0WT22222112204398100000000120170711WT@WWT0WW22222112204398100000000 -T12023011111140476821700410451120213110611300000000000004880320000000000000000000000000000000000222222000000402219072 -T2202301111114047681219780127WTT@PP00B2222212222223012213110910023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000040 -T320230111111404768120100305WTTZYTPT022222112204303100000000 -T12023011111140482222000413731120832110376300000000000204170180000000000000000000000000000000000222222000000002229022 -T2202301111114048222219880209WTTY90PPB2221222222223012216910015913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111404822420070105WT@09WT9@22212212204309900000000 -T320230111111404822120210923WTTT9TT9W22212212204398100000000420180724WTTY9WYT022212222204398900000000 -T320230111111404822420090923WT@WZZWT#22212212204307900000000420080718WTTW9YPB922212212204308900000000 -T320230111111404822420150708WT@TPT99022212212204398900000000420110905WTTZWPBTP22212222204306900000000 -T12023011111140485025000402561120213110599300000000022905270190000000000000000000000000000000000222222000000012219012 -T2202301111114048501219930418WT@Y#P0W02222222222223012213110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111404850120160708WT@9YT@Y922212212204398100000000 -T12023011111140517324700409321120312110542300000000000003920310000000000000000000000000000000261122222000000012219072 -T2202301111114051731219710523WTTWPTT0Z2222212222225012213110910023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111405173120110701WTTW9TPYZ22222112204301100000000120080723WTTYTPW9T22222122204307100000000 -T12023011111140517922000400811120313110740300000000040002090150000000000000000000000000000000139122222000003062219012 -T2202301111114051791219900918WT@990BB92222122222221012214110164421011207000000000000000000000000000000000000000000000000000000000000060800000000000000000000 -T320230111111405179120190918WT@B@TB#@22221212204398100000000120170318WT@###9#@22221222204398100000000 -T12023011111140519520600407031120213110611300000000006405280270000000000000000000000000000000000222222000000002229012 -T2202301111114051951219900402WT@TBZ@9B2222212222225012213110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111405195120150327WT@BP@9#T12221112204398100000000 -T12023011111140524623300410111120213110611300000000040005280210000000000000000000000000000000000222222000000002229012 -T2202301111114052461219850702WT@P@TZY#2222212222221012212110283223011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111405246120200702WT@99#PB@22222112204398100000000 -T12023011111140530225900406841120233110611300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114053023219650711WT@YT0YZZ2122221222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111405302120070909WTTWB0WW#21222212206309100000000 -T12023011111140532020600404491120213110516110820000000504170350000000000000000000000000000000000222222000000002229012 -T2202301111114053201219910712WT@YPBB#Y2222212222225012212110352523011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111405320520200126WTT#PBT#Z22222122104398109140000 -T12023011111140540322000405321120312110835300000000000006540740000000000000000000000000000000000222222000000002229072 -T2202301111114054031219930307WT@P@T@@#2221222222225012210120750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111405403120210309WT@Z@P@#T22222212204398100000000120090118WTTT9PWB922222122204306100000000 -T12023011111140541024200414721120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114054103219740214WTT9B@@W#2222212222225012213110431713069900000000000000000000000000000000000000000000000000000000000000387800000000000000000000 -T320230111111405410120070101WTTY0T@Y922212222206311100000000 -T12023011111140541320800410781120233110516300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111114054132219820127WT@Z9BPPT2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111405413120200421WT@Z9@0WB22222122204398100000000 -T12023011111140546124200408571120233120000300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111114054613219690114WT@PYTTB02222212222222012212110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000003390 -T320230111111405461120060427WT@@@T9#@12222122206310100000000 -T12023011111140552125900402632120132210306300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114055215219780112WT@99000T1222222222221013210110620013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111140568224700408361120413110740300000000000004620310000000000000000000000000000000308122222000000012219012 -T2202301111114056821219820207WTTZYYY#Y2222211222221012212110322823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111405682120100105WT@@9PPBP12222122204304100000000 -T320230111111405682120160913WTTW#@T#922222112204398100000000120140226WTTWT90Y#22222112204302100000000 -T12023011111140584424200403941120312110740300000000000003160120000000000000000000000000000000211122222000000012219012 -T2202301111114058441219980213WT@@YZT902221222222221012212110134723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111405844120220405WT@P@@9#B22212212204398100000000420180405WT@YWPTY#22212222104398103060000 -T12023011111140591323900403801120212110611300000000025005280280000000000000000000000000000000000222222000000002229012 -T2202301111114059131219900704WT@BY0TY02222212222221012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111405913120150413WTTTT@9@W22222112204302100000009 -T12023011111140593025000403231120313110598100500000001205880130000000000000000000000000000000000222222000000002229012 -T2202301111114059301219920127WTTZBP0TB2222212222223012216120144623010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111405930120220705WT@ZP#B9#22222122204398100000000120130718WT@@BZTYW22222122204303100000000 -T12023011111140597723500411471120622111361300000000000008190300000000000000000000000000000000000222222000001902219012 -T2202301111114059771219940913WT@B0BTB02222212222222011211190243621011813000000000000000000000000000000000000000000000000000000000000075900000000000000000000 -T2202301111114059771219920921WTTZ#T0@W2222211222222021212190164423010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111405977120160709WT@PYY@Y022222112204398100000000120140301WT@PZTT0922222122204301100000000 -T320230111111405977120200926WTTY00T@P22222122204398100000000120170307WT@#W90#T22222112204398100000000 -T12023011111140606524100402401120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111114060651219850704WTTPB@P#T2222212222221012214210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406065120070723WTTY#@WZW22222112204308200000000 -T12023011111140628320600400801120213110631300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114062831219860527WTT9##@YP2222122222221012212910233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406283120200104WT@BWT#BW22221212204398100000000 -T12023011111140628820600400801110213110611300000000000004930250000000000000000000000000000000000222222000000002229012 -T2202301111114062881219860923WT@PBWT9P2222211222225012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406288120080722WTT#@B#9B22222112204308100000000 -T12023011111140635825900402631120613111434109310000000010090300000000000000000000000000000000000222222000000002229012 -T2202301111114063581219960701WTTW@0@ZZ1222222222221012211110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406358120120123WT@ZTPZBB12222212204301100000000 -T320230111111406358120180104WT@T#PB9B12222222204398100000000120150709WT@99B9@W12222212204398100000000 -T320230111111406358120220902WT@9TPY9W12222112204398100000000120180104WT@PW09ZB12222222204398100000000 -T12023011111140639422700407441110313110766300000000000006540330000000000000000000000000000000000222222000000002229012 -T2202301111114063941219940326WTT##T9ZT1222222222221012216110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406394120150712WT@0YZP#Y12222212204302100000000120140204WTT0#YB0Z12222222204303100000000 -T12023011111140640120600404351120333120000103440000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111114064013219580704WT@ZTP9TT2221221222225012213110006011069940000000000000000000000000000000000000000000000000000000000000420300000000000000000000 -T320230111111406401120140718WTT#WYPW022212112206302100000000120130318WT@T9W0Y@22212112206303100000000 -T12023011111140640922000409211120313110760105910000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111114064091219980522WT@##9W9@2221222222221012209110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406409120200122WTTT0TB9022212212204398100000000120170127WT@BZ0#@922212212204398100000000 -T12023011111140641222000405841120433120000300000000000006540500000000000000000000000000000000000222222000000002229022 -T2202301111114064123219800923WT@09Z@0#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406412120070514WT@Z##@T#22222122207308100000000 -T320230111111406412120120313WTT##B0#022122212207302100000000120100213WT@9B9WYY22122222207305100000000 -T12023011111140649425900402631120313110835300000000000006530160000000000035011000000000000000000222222000000012219072 -T2202301111114064941219830212WT@90BZ9P1222222222225012216110750021011801000000000000000000000000000000000000000000000000000000000000000000000000000000001449 -T320230111111406494120070207WT@B#T@WP22222222204310100000000120040312WT@ZT@WB@22222112204311100000000 -T12023011111140655424200407271120323110766300000000002206540080000000000000000000000000000000000222222000000002229012 -T2202301111114065541219800127WT@T99YW#1222212222222011212110095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114065541219880723WT@BB@PB@2222211222222021212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406554120170405WTTPYP@PW12222122204398100000000 -T12023011111140658622000411981120213110604300000000007905280020000000000070001000000000000000000222222000000002229012 -T2202301111114065861219870301WT@@TPYB02221222222225012213110035722011900000000000000300004000000000000000000000000000000000000120000000000000000000000000000 -T320230111111406586120140412WT@Y9W9BW22212112204303100000310 -T12023011111140669425600414411120212110611300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111114066941219770105WTTBB#Y0P1222222222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406694120070905WTTB@0W9Y11222212204308100000000 -T12023011111140676722000408891120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114067672219870123WT@TB@BBB2122211222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111406767120130726WT@WBZ#TW22222112204398100000000120120413WTTZ0ZYBY22222122204302100000000 -T12023011111140685525600404651120312110764300000000000006540360000000000000000000000000000000000222222000000002229042 -T2202301111114068551219810112WT@P#W9WT2221222222225012210110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111406855120130122WTTY99YTB22212222204301100000000120080218WT@#W00BB22212212204307100000152 -T12023011111140694620600406751120413110939300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111114069462219900104WTT0W9@@@2222212122212012211110006013109900000000000000000000000000000000000000000000000000000000000000000000000731020300000000 -T2202301111114069461219810211WT@ZW@T@02222211222222022213190174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000001304 -T320230111111406946120190104WT@B999@022222112204398100000000120170327WTTPT@0@B22222112204398100000000 -T12023011111140697323900400641120233120000300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111114069733219840923WTTWWZTZT2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000412800000000000000000679 -T320230111111406973120060513WT@TW@0TB22222122207309100000000 -T12023011111140701524200403941120312110793126090000070006540190000000000000000000000000000000000222222000000002229012 -T2202301111114070151220000521WT@#W0PZ92222212222221012211110194121011700200000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111407015120200318WTTPYTT0022222122204398100000000120180122WTTP@Z0Z#22222112204398100000000 -T12023011111140704924700410421120333110776300000000000005280740000000000000000000000000000000000222222000000002229022 -T2202301111114070493219620107WTTYW0P9P2222212222222012209120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407049120090127WTT90B09W22222122206306100000000120070901WTT##@W#Y22222112206308100000000 -T12023011111140709123500404531120533111116114070000000002330340000000000000000000000000000000000222222000006552219022 -T2202301111114070911219730123WTT#WP@Y92221222222225012212111190021099900210000000000000000000000000000000000000000000000000000010000130900000000000000000000 -T320230111111407091120090223WTT0#P#9B12212212204306100000000120070207WTTWWWPZ012212222204308100000000 -T320230111111407091120190904WTT#Z0YWZ12212222204398100000000120150123WT@9ZPBPZ12212222204398100000000 -T12023011111140719924500405781120213110598300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111114071991220000507WTT9#WWY#2122222222221012211110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407199120210423WTT0Y@@YP21222212204398100000000 -T12023011111140720320300400971110723111557300000000030005630050000000000000000000000000000000000222222000003142219012 -T2202301111114072031219910404WTTP0B09T2222212222222011212110283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114072031219820923WTTW#PTTZ2222211222222021212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407203120090421WTTPY0@T022222122204307100000000 -T320230111111407203120150527WT@BBTPYW22222112204301100000000120130123WT@Y#90PB22222112204303100000000 -T320230111111407203120190907WT@@9T9WT22222122204398100000000120170923WTTWPY#W@22222112204398100000000 -T12023011111140730024200403511120213110611300000000000005280690000000000000000000000000000000000222222000000002229072 -T2202301111114073001219740123WT9TT9Z9@2222212222223012210110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407300120170312WTTZBP9P922222112204398100000000 -T12023011111140737320800411601120212110611104040000001005280380000000000000000000000000000000000222222000000002229012 -T2202301111114073731219750101WT@909BWP2222212222225012212120392123011400000000000000000000000000000000000000000000000000000000420000000000000000000000000000 -T320230111111407373120150423WT@TBBTW922222112204398100000000 -T12023011111140739921000408061120422110945300000000000007710990000000000035009000000000000000000222222000000002229072 -T2202301111114073991219840926WT@B09@0P2222212222225011213111350023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114073991219900401WTTP90PZ#2222211222221011213190491123011800000000000000000000000000000000000000000000000000000000530000000000000000000000000000 -T320230111111407399120130927WT@YW#0ZZ22222112204304100000000120110904WT@#T#TBY22222122204306100000000 -T12023011111140748524500405941120213110611300000000000005280060000000000000000000000000000000000222222000000002229072 -T2202301111114074851219810927WTT9900BP2222212222225012208110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407485120070713WTTZ#@0Z022222122204309100000000 -T12023011111140755625100407671120413110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111114075561219960105WT@W0@9YZ1122222222221012212120124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407556120190208WTT@TZWYW22222112204398100000000 -T320230111111407556120220908WTT@WTZWP12222122204398100000000120200312WT@99TTZZ12222112204398100000000 -T12023011111140755820800405391120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114075581219780318WTT#W0#002222212222225012212110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000120 -T320230111111407558120170923WT@Y@B#TY22222112204398100000602 -T12023011111140760724200414721120212110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114076071219780904WTT9Y9P#01221221222225012213110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407607120050112WTT0@T@WW12212112204311100000000 -T12023011111140768521700406141120323110835300000000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111114076851219960321WTTZWY0BY2222212222221011210190372323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114076851219940707WTT9PTWB@2222211222221011210190481223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407685120140326WT@TPW@@T12222122204302100000000 -T12023011111140775223500410671120713111490117460000567311650050000000000000000000000000000000000222222000000002229012 -T2202301111114077521219810311WTTTWZZT92222212222223012213120501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000002600 -T320230111111407752120060407WTTTWZPP022222122209308100000000120060418WTTTY#ZT#22212112204310100000000 -T320230111111407752120170921WT@W#PZPT22212122204398100000000120070123WT@YBB0Y022212122204309100000000 -T320230111111407752120210922WTT#Z90Z022212112204398100000000120180101WT@YZ09@W22212112204398100000000 -T12023011111140779624200402501120312110805116330000010006210230000000000000000000000000000000000222222003200012219072 -T2202301111114077961219810912WTT099Z@#2222212222221012211110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407796120200918WTT0TYY@B22212212204398100000000120120102WT@ZTZZB922212112204303100000000 -T12023011111140784125000406021120412110939300000000000007710280000000000000000000000000000000000222222000000002229012 -T2202301111114078411219990323WTTBYY@#Z2222212222221012211120293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407841120160102WT@9TPY9W12222112204398100000000 -T320230111111407841120220926WT@9TPY9W22222112204398100000000120200727WTTZZTZ0022222112204398100000000 -T12023011111140785422700401571120233120000300000000000000870990000000000000000000000000000000000222222000003302219022 -T2202301111114078543219670127WTTZBZP@W2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111407854120080314WT@T@TTT#22222112206306100000330 -T12023011111140805725100407671120712111480300000000000011650600000000000070011000000000000000000222222000000002229072 -T2202301111114080571219890726WT@B0YTBZ2222212222221012213111100023011400000000000000000000000000000000000000000000000000000000190000000000000000000000000000 -T320230111111408057120120218WTTP@BZTB22222212204303100000000120110127WT@Y#T#BP22212212204304100000000 -T320230111111408057120170505WTTW@#TZP22212222204398100000000120150718WTTB#B@@P22212222204398100000000 -T320230111111408057120200123WT@W0BBP@22212212204398100000000120190923WT@WT9@YT22212222204398100000000 -T12023011111140807222000409871120512111211170030000011108880580000000000000000000000000000000000222222000000002229072 -T2202301111114080721219870323WTT0TPW#P2221222222221012211210770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408072120180112WT@#09YBY22212222204398100000000120160318WTTZZZPTW22212222204301100000000 -T320230111111408072120220214WTTB#W9@@22222212204398100000250120190207WT@Z@Y0Z922212222204398100000000 -T12023011111140814625900402631120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114081462219900407WTTWB#9991222212122211012212120006013109900000000000000000000000000000000000000000000000000000000000000000000000234060200000000 -T320230111111408146120160324WT@0W#9WW12222122204398100000000120130727WTTP9Y9PT12222112204301100000000 -T12023011111140821222700408351120232110516300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111114082122219750327WT@Z#W9TZ2222212222214012216110085213089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111408212120150712WT@9PPPZB12222112204301100000000 -T12023011111140831220600404121120412110374300000000000007710350000000000000000000000000000000000222222000000002229012 -T2202301111114083121219880108WTT#WB@Y@2222212222223012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408312120120424WT@9TW0WB22222122204303100000000 -T320230111111408312120170405WTT#Y9WBZ22222112204398100000000120130707WT@@T#WY021222222204301100000000 -T12023011111140833524200414021120333120000113170000000005280510000000000000000000000000000000000222222000000002229022 -T2202301111114083352219860901WTT@TBWB02221221222211012213110006011089923000000000000000000000000000000000000000000000000000000000000167600000000082200000000 -T320230111111408335120210101WTTTWWTP022212222204398100000000120160327WTTZW#BB@22212222204398100000000 -T12023011111140835524500405781120623111269300000000501010090030000000000000000000000000000000000222222000000002229012 -T2202301111114083551219880323WT@W0TP#92222212222222011216190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114083551219870102WT@BYWT0P2222211222222021216190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408355120170413WTT@@0@WP22222112204398100000000120100705WTT#9Z@PP22222122204307100000000 -T320230111111408355120200323WT@9TPY9W12222122204398100000000120190423WTT9W@99T22222122204398100000000 -T12023011111140836224200409731120333110493300000000005505280300000000000000000000000000000000000222222000000002229022 -T2202301111114083622219860904WT@YYBT9P1222222222223012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408362120070104WTTTWYWPY12222212204308100000000120060124WTT9T990Y12222222204309100000000 -T12023011111140841420600414871120213110578300000000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111114084141220030723WTTT#BW#02222122222221012210910144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408414120200718WTT@WP#9B12221212204398100000000 -T12023011111140843920600414771120213110376300000000000105280170000000000000000000000000000000000222222000000002229012 -T2202301111114084391219920127WTTZWBYTB1222211222223012216110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408439120080427WTTBT9WT912222112204308100000452 -T12023011111140845323500405271120623111395300000000055010090100000000000000000000000000000000000222222000000002229012 -T2202301111114084531219870709WT@Z@0ZTT2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000390000000000000000000000000500 -T2202301111114084531219920718WT@#Z#ZZ@2222212222222021213290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408453120170501WTTBZ#ZY@22222122204398200000000120150113WT@WZ#B0@22222122204398200000000 -T320230111111408453120200312WTTZP09#P22222112204398200000000120180702WT@##9PBW22222122204398200000000 -T12023011111140846622000403482120423211034300000000440007710020000000000000000000000000000000000222222000000002229032 -T2202301111114084661219860918WT@#@#P#P2222211222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114084661219930723WTTWZ#9@@2222222222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408466120190114WTT9YW#Y922222122204398200000000120160907WT@#9YWYY22222122204398200000000 -T12023011111140873725600412851120312110699300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111114087371219930313WT@9#P0W@2222212222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408737120210113WTT0ZWTZ#22212212204398100000000120160122WT@B9ZBT@22212222204398100000000 -T12023011111140873824200409091120333110740113880000581505280830000000000000000000000000000000000222222000000002229022 -T2202301111114087381219900107WT@@9PZPW1221222222223012212110840023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111408738420180201WTTBTY@T@12212212104398109140000120080112WT@TTTY0#12212222204307100000050 -T12023011111140880622700401571120213110611300000000200005280130000000000000000000000000000000000222222000000002229012 -T2202301111114088061219800326WTT#0TP0#1222211222223012212110144623011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111408806120060301WT@PW#T#012222122204310100000000 -T12023011111140900324200404891120423110939300000000000007710730000000000000000000000000000000000222222000000002229072 -T2202301111114090031219850109WT@9009T#2222211222221011210190332723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114090031219850514WTTZZZBYT2222212222221011213110980023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409003120160722WTTT9#9W#22222112204398100000000120090911WT@WB#BY922222122204307100000000 -T12023011111140906722000412231120232110544300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114090672219750304WT@P0W#B@2222212222211012213111410013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111409067120120713WT@WZY#TY21222222204303100000000 -T12023011111140911624700409381110523111199300000000002408880040000000000140001000000000000000000222222000000002229012 -T2202301111114091161219850112WT@B0@Y0#2221222222222011212190045621011814000000000000000001000000000000000000000000000000000000100000000000000000000000000000 -T2202301111114091161219670421WT@YT090B2222211222222021212190045621011916000000000000220002000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409116120080313WTTZTYB9W22212122204308100000000 -T320230111111409116120140923WTTP9WW#T22212122204303100000000120110527WT@YYW@P#22212112204306100000000 -T12023011111140915620800410781120333120000300000000000005280510000000000000000000000000000000000222222000000002229022 -T2202301111114091563219560918WT@#TTWTP1222212122222012214110006013069900000000000000000000000000000000000000000000000000000000000000240000001707000000000000 -T320230111111409156120140721WT@YB99TW12222112209302100000000120130902WTT0#Z00912222122209303100000000 -T12023011111140920924600411871120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114092091219810404WT@PY@ZPY2222212222223012212120114921011728000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409209120220927WT@#0TBT022222122204398100000000 -T12023011111140922524200414851120213110611300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111114092251220010408WTTBPZPTT2222212222221012210110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409225120190723WT@P#09P012222112204398100000000 -T12023011111140924922700401571120333120000300000000000005280490000000000000000000000000000000000222222000000002229022 -T2202301111114092493219660926WTT9PZWTZ2222212222225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409249120110127WTT@#TPBW22222112206302100000000120100326WT@Y@TW@#22222112206303100000000 -T12023011111140926122000400431120313110835300000000000006540290000000000000000000000000000000000222222000000002229012 -T2202301111114092611219890526WT@TT9ZZZ2222212222225012211210461423010900000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111409261120140101WTTZTTWPB22222122204303100000000120120105WTT9Y0WY022222112204305100000000 -T12023011111140932425600413441120413110876300000000000005880990000000000000000000000000000000000222222006500012219072 -T2202301111114093241219850311WT@P9B@P02222212222222012213111270023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114093242219800208WT@00WZZB2222121222212022216190283213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111409324120120523WTTY9ZYB022222112204303100000000120070208WT@W#T9Y#22222112204309100000000 -T12023011111140937424200409091120233110516300000000000404170400000000000000000000000000000000000222222000000002229022 -T2202301111114093741219690905WTTW#YPW#2221222222225012212110461423099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409374520090108WTTZW#YB#22212212104306108220247 -T12023011111140945023500400892110323210740300000000000005480010000000000000000000000000000000000222222000000002229032 -T2202301111114094501219920902WT@ZYPT@B2222212222222011214290025823011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T2202301111114094501219890108WTTBB0#0Y2222211222222021214290025823011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111409450120180721WT@90PW0Y22222122204398200000000 -T12023011111140955425600411521120413110939300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111114095541219920702WT@0PYZPY2222212222223012213110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409554120130921WT@0BB9#Y11222122204303100000000 -T320230111111409554120190707WT@@09B#B11222122204398100000000120150112WTTYZ90BB11222112204398100000000 -T12023011111140955725900402831110213110516300000000000001020180000000000000000000000000000000000222222000000002229012 -T2202301111114095571219930914WT@YWTY#P1222222222221012212110184221011802000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409557120190513WT@BPBY@B12222222204398100000000 -T12023011111140959521000408061120313110835300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111114095951219990127WTT@PYPZP2222212222221012209110154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409595420220301WT@YYBT9P22222122204398100000000120170908WTT#T0@WB22222112204398100000000 -T12023011111140962125900402121110233120000108680000000004170010000000000000000000000000000000000222222000000002229021 -T2202301111114096213219680309WT@9Z99@W1222222222225012212210015911069946000000000000000000000000000000000000000000000000000000000000309100000000000000000000 -T320230111111409621120170123WTTP0WBZZ12222222206398100000000 -T12023011111140962722000400461120312110799300000000000004900330000000000000000000000000000000163222122000000012219012 -T2202301111114096271219980423WT@BZP9BP2221222222221012212120342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409627120210212WT@0@W0PB22212222204398100000000120190902WTTPY99W922212222204398100000000 -T12023011111140964622000410051120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111114096461219780423WT@09PZBY2222212222221012298210105021011823000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409646120080227WT@99PPBB22222122204398200000000 -T12023011111140964823900400641120333120000300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111114096483219610426WT@#99Y902222211222222012212110006013069900000000000000000000000000000000000000000000000000000000000000197200000000000000000000 -T320230111111409648120170413WT@WW9W#012222112206398100000000120150411WTT#YTW0Z12222112206398100000000 -T12023011111140975122000411551120412110939160440000000007710400000000000000000000000000000000000222222000000002229012 -T2202301111114097511220000922WTTTBYY0#2221222222221012211110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409751120180105WT@B#T#9022212212204398100000000 -T320230111111409751120220209WTTPWTW0T22212212204398100000000120200426WTT##Y#TP22222112204398100000000 -T12023011111140975320600400801120232110516300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111114097532219710101WTTTB#BYP2222212222213012212120402013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111409753120100327WTT@#BBBZ22222112204305100000050 -T12023011111140985525900402631120213110611105770000000105280300000000000070005000000000000000000222222000000002229012 -T2202301111114098551219900504WTTZ9W#T02222212222225012213110312923011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111409855120200227WT@Z00#B@22222122204398100000050 -T12023011111140992524200407311120333110611300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111114099253219780318WT@BBP@B92222211222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111409925120050323WTTZ9@W0W22222122207310100000000120050108WT@TYW#PP22222122207310100000000 -T12023011111141004524200414721120322110835300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111114100451219970912WTT#W#9Z02222211222222011210110204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114100451219990705WTT9ZZ##P2221222222222021212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410045120130307WTTB0Y@#Z22222112204302100000000 -T12023011111141005822000407791120213110598300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111114100581219890707WTTYW9#TZ2222212222221012214110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410058120200402WTT9#ZWB@22122112204398100000000 -T12023011111141006324500405781120213110598300000000000505280030000000000000000000000000000000000222222000000002229012 -T2202301111114100631219820727WTTPP#TYB2222211222223012211110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410063120220504WT@9BBYZP22222122204398100000000 -T12023011111141019820600404122120213210611300000000002305280080000000000000000000000000000000000222222000000002229032 -T2202301111114101981219640718WTTT9P#@@2222122222224012212910095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410198120060323WT@PZ99ZZ21222222204309900000000 -T12023011111141021723500411471120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111114102171219800904WT@9YTWTY2222212222221012214110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410217120100326WTT0BY0YW22222112204306100000000 -T12023011111141033125600411521110313110740300000000000002530010000000000000000000000000000000000222222000000002229012 -T2202301111114103311219760308WTT@#@YY#2222212222223012213110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410331120150101WTTWPWZBB22222112204398100000000120080207WT@WT09#P22222112204308100000000 -T12023011111141048122000402371120332110740300000000000012780990000000000000000000000000000000000222222000000002229022 -T2202301111114104812219850113WTTBY9YYB2221222222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111410481120170904WTTWTY@#922212222204398100000000120080226WTT90#PZT22212212204309100000000 -T12023011111141052120600400871120312110835300000000000005770270000000000000000000000000000000163222221000000002229012 -T2202301111114105211219980413WT@WZW9PW2221212222221012216120283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410521120210301WT@##09#@22212222204398100000000120200118WTT09TBPW22212122204398100000000 -T12023011111141052824200403941120413110835300000000000003270120000000000000000000000000000000261122222006500012219012 -T2202301111114105281219940909WT@09#YWY2221221222221012216190243623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114105282219980123WT@YYBT9P1222222222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410528120220921WTT@0TZB#12212222204398100000000120200418WTT#@99PZ12212212204398100000000 -T12023011111141060025600411522120323210826300000000000006540090000000000000000000000000000000000222222000000002229032 -T2202301111114106001219990211WTT@T@ZP92222212222221011212110055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114106001220020709WTTZPZZWZ2222211222221011210190015921011999000000000000000000000000000000000000000000000000000000000000000200000000000000000000 -T320230111111410600120220921WT@@B909P22222122204398100000000 -T12023011111141068721700407751120213120000300000000000003160270000000000000000000000000000000211122222000000012219012 -T2202301111114106871219890414WTTBWZP9T2222211222221012212110243623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410687120170321WTTY##TW@22222122204398100000000 -T12023011111141080025600414551120413110939300000000000007710450000000000000000000000000000000000222222000000002229072 -T2202301111114108001219920504WT@YP0ZBP2222212222223012216110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111410800120100723WT@0ZZWB022222122204306100000000 -T320230111111410800120170701WT@WB0Y##22222112204398100000000120140326WTT9#0#Z#22222112204301100000000 -T12023011111141109520600400801120423111034300000000021007710020000000000000000000000000000000000222222000000002229012 -T2202301111114110951219920907WT@0@BY@P2222212222221011216190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114110951219900918WT@0TZZ#@2222211222221011216190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000001793 -T320230111111411095120150908WT@#WZP@Y22222112204301100000000120100308WTT0ZP90Z22222112204305100000000 -T12023011111141112822000414501120632120000300000000000007040710000000000000000000000000000000000222222000000672219022 -T2202301111114111283219590727WTTB#YPZZ2222212222225012216120006011069904000000000000000000000000000000000000000000000000000000000000022800000000000000000000 -T320230111111411128420060723WT@@Y9W9W11222212204306100000684 -T320230111111411128120130112WTTPW#Y0T21222222209304100000000120070404WT@9WZTWT21222212208310100000000 -T320230111111411128120150121WT9TTZ09@21222212208302100000033120140212WT@PTW#PP21222212208303100000033 -T12023011111141112923500412161120333110670300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111114111293219580422WTT#Z#P#W2222211122222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000750000000000000 -T320230111111411129120070922WT@YWTZ@P22222122206306100000000120060426WTTY@ZYB022222112206309100000000 -T12023011111141114724200407311120213110376300000000000002560370000000000000000000000000000000171122222000001012219072 -T2202301111114111471219780927WT@#9#BB02222212222225012210110790021010219000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111411147120060109WTT0#YYWY22222122204311100000050 -T12023011111141125924700406741120232120000114720000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111114112593219670921WT@9B#Y0Z2221222222221012216110194111069940000000000000000000000000000000000000000000000000000000000000408600000000000000000000 -T320230111111411259120180107WTTW#9WT#22212212206398100000000 -T12023011111141130924200414721120313110766300000000000006540640000000000000000000000000000000000222222000000002229072 -T2202301111114113091219910404WTT@TP#0T2122222222221012212110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111411309120220422WTTZ00@@#22222122204398100000000120200102WT@@@9WWZ22222122204398100000000 -T12023011111141141525900402831120313110498300000000000003920140000000000000000000000000000000261122222000000012219012 -T2202301111114114151219770324WT@@ZTZYT2222212222221012212110550523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111411415120130904WTT#Y00BB22222122204303100000000120120527WTT9@B@BP22222122204305100000000 -T12023011111141142820600414871120233110560300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114114283219590704WTTP@P#Z@2222122222222012212910065413079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111411428120060324WTTB@##B#22221222206308100000000 -T12023011111141154120200409311120212110606300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111114115411219880313WT@B@##9Z2222212222221012216110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111411541120070518WTTTZYYY#22222112204309100000000 -T12023011111141158224200404051120232110493300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111114115823219590204WTTWPPWP#2221222122225012211110263413069900000000000000000000000000000000000000000000000000000000000000000000001145000000000000 -T320230111111411582120160901WT@T@TY#@12222212206398100000000 -T12023011111141165320600414251120313110598300000000000005560420000000000000000000000000000000000222222000000002229012 -T2202301111114116531219960426WTTBBZ9WY2222212222221012209110431723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111411653120220305WTTB#09B#22222112204398100000000120180707WTTP@@PT#22222122204398100000000 -T12023011111141175825900402831120313110835300000000000006540360000000000000000000000000000000000222222000000002229072 -T2202301111114117581219870412WTT9YP#WP2222212222221012209110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111411758120210121WTT@TY@Y#12222122204398100000000120200412WTT#0#P0T12222122204398100000000 -T12023011111141189424600411871120433111034300000000000006540060000000000000000000000000000000000222222000000002229022 -T2202301111114118943219700712WTT#P#WBW2221222222223012212110600013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111411894120130121WTTPYTZ#Z22212212208304100000000 -T320230111111411894120220305WTTP@ZWP922212222208398100000000120140101WTTTB@@B@22212212208302100000000 -T12023011111141190520600414831120333110835300000000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111114119053219640904WT@PYTZWY2222121222223012216910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111411905120090511WTT@99##922221212206306100000000120060112WTT0WPBWY22221212206309100000000 -T12023011111141198220800403781120233110516300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111114119823219720712WTT@9#TZZ2222212222215012212110600013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111411982120190121WTT@99Y#@22222122206398100000050 -T12023011111141209722000407411110232110524300000000000003900010000000000000000000000000000000000222222000000002229021 -T2202301111114120972219750321WT@B0TW@W2122222222211012212111070013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111412097120100209WTTY000#Y21222222204305100000000 -T12023011111141209824700408301120213120000300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111114120981219970113WT@TW0Y9B2222212222221012211110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412098120220124WTT0Z9P##12222122204398100000050 -T12023011111141214322000412811120212110611300000000000005010210000000000000000000000000000000000222222002600012219072 -T2202301111114121431219720126WT@9BP0PZ2222212222221012216110640023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412143120050418WTTWY#TPW22222222204311100000000 -T12023011111141224322700408351120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114122433219760122WT@YP#Z#Y2222212122222012212110114913069900000000000000000000000000000000000000000000000000000000000000000000001066000000000000 -T320230111111412243120200112WT@WWWWYY22222122206398100000000 -T12023011111141228823700414331120433110740300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111114122882219880701WT@YYBT9P1222222222223012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412288120090924WT@09PT9#12222222204307100000250 -T320230111111412288120210707WTT0B0#PZ12222112204398100000000420140426WTTWWYY@W12222212104302107600250 -T12023011111141231222000413731120423111034300000000050007710050000000000000000000000000000000000222222000000002229012 -T2202301111114123121219890223WT@#@B0@P2222221222222011216290055521011937000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114123121219940518WTT@0PT##2222222222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412312120210426WTT0TT09@22222222204398200000000120190304WTT###YBT22222222204398200000000 -T12023011111141234923800409221120313110835300000000056306540030000000000000000000000000000000000222222000000002229012 -T2202301111114123491219730914WTT@#Y0W02221221222225012214110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412349120080301WT@P@9B9W22222112204307100000000120060926WTT#Z#P#Z22222112204310100000000 -T12023011111141239825800401991120332110611300000000000005280630000000000000000000000000000000000222222000000002229022 -T2202301111114123982219970426WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000010000000000000000000000 -T320230111111412398120180108WTT@PBBYY12222222204398100000000120150418WTTTBT90Z12222212204301100000000 -T12023011111141243023700414331120233110516300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111114124303219480107WT@0TTZ##2222221122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002691000000000000 -T320230111111412430120180321WT@BWT90022212212206398100000000 -T12023011111141243224100402401120413111034300000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111114124321219960907WT@Z@09YT2222212222223012212110174323011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111412432420150923WT@T#9@YT22222112104302108220000 -T320230111111412432120180718WT@T9ZYZ022222112204398100000000120170527WT@WPZBBY22222122204398100000000 -T12023011111141251222700403021120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114125123219650118WT@YWTB#Z2222212222225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412512120110424WTTPT@BW022222112206305100000050 -T12023011111141265724500405781120233110493300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111114126572219760211WTTP0BB0T2222212222215012212110560413089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111412657120060102WT@#BP@9T12222122204309100000183 -T12023011111141268222000406211120412110948300000000000007710540000000000000000000000000000000000222222000000002229072 -T2202301111114126821219980202WTT09@WY02122222222221012212110650023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412682120160711WT@B#@W@W11222212204398100000000 -T320230111111412682120210905WTT9WZBWZ21222222204398100000000120180527WTTPYTY9T11222212204398100000000 -T12023011111141270022600405051120212110557300000000000005280410000000000070019000000000000000000222222000000002229072 -T2202301111114127001219850902WTTT0W@PZ2222122222225012211110840023011800000000000000000002000000000000000000000000000000000000080000000000000000000000000000 -T320230111111412700120100504WT@9TBB0022221222204306100000050 -T12023011111141275324200407271120513111199109490000008008880040000000000000000000000000000000000222222000000002229012 -T2202301111114127531219830904WTTZ0T0@@1222222222223012212110065423011800000000000000000002000000000000000000000000000000000000070000000000000000000000000000 -T320230111111412753120080712WTTP##@TY12222222204309100000000120060926WTT0BBWWT12222212204311100000000 -T320230111111412753120200123WT@YZ@Z0@12222212204398100000000120120409WT@##0PTY12222212204305100000000 -T12023011111141289524100402401120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114128953219590321WTT0#Y00#1222222222225012212110006013069900000000000000000000000000000000000000000000000000000000000000296000000000000000000000 -T320230111111412895120050926WT@B0P9YY12222212206310100000000 -T12023011111141290224700409381120632111269300000000000008880540000000000000000000000000000000000222222000000002229022 -T2202301111114129023219940118WT@9@@YT02222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412902120090723WT@Y#W@#P22222122207306100000000 -T320230111111412902120130501WT@BTB0#@22222122207303100000000120120727WT@ZTB9YW22222122207304100000000 -T320230111111412902120170726WT@#PT9P022222122207398100000000120140205WT@@PYPY922222112207302100000000 -T12023011111141299320600409771120313110766300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111114129931219910926WTTZ#BZW@2222212222221012213120213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111412993120200318WTTYBT99T12212112204398100000000120160523WTT#WZ#Y@22212122204398100000000 -T12023011111141302023500404531120433110835300000000000004850250000000000000000000000000000000000222222000001692219022 -T2202301111114130202219900912WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413020120060124WT@@B0@B912222222204310100000000 -T320230111111413020120110727WT@9#T09W12222212204304100000000120100701WTT09WWT012222222204305100000000 -T12023011111141305122000410051120213110557300000000001105280020000000000035004000000000000000000222222000000002229012 -T2202301111114130511219990404WTT9WYYPT2221222222221012216110322821011813000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413051120170502WTT0ZWTBZ22212222204398100000000 -T12023011111141310024200410711120433110939300000000000005280730000000000000000000000000000000000222222000000002229022 -T2202301111114131002219870121WT@PZZTW@2222212222211012214120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111413100420060927WT@#BPZ@W12222112104310109140000 -T320230111111413100120130421WT@#Z99W912222112204303100000000120110423WT@TPTWPT12222122204305100000000 -T12023011111141318322000414461110323110835300000000000001260010000000000000000000000000000000000222222000000002229012 -T2202301111114131831220000412WTTYTWB#Z2222212222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114131831219990401WTT9Y#PPW2222211222222021216290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413183120220123WTT@PTTTB22222112204398100000000 -T12023011111141319122500405071120333120000300000000012004170220000000000000000000000000000000000222222000000002229022 -T2202301111114131913219690123WT@#0ZYBT2222211222222012298110006013069900000000000000000000000000000000000000000000000000000000000000691600000000000000000000 -T320230111111413191120080927WT@9@BP##12222212208308100000000420060308WTTB#Y9#W11222212204309100000000 -T12023011111141333124700413761120333120000112660000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111114133313219610427WTTPW0Z#92222212222225012212110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413331120170123WTTTPTYT@22222112206398100000000120150401WT@#9TT9@22222122206398100000000 -T12023011111141338122000404691110433110376300000000000002890010000000000000000000000000000000000222222000000002229021 -T2202301111114133812219990201WT@YYBT9P1222222222221012209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114133812219970114WT@YYBT9P1222221222221102209990006011079929000000000000000000000000000000000000000000000000000000000000180000000000000000000000 -T320230111111413381120210707WTT0PZ#PZ12222222204398100000000420190514WT@YYBT9P12222222204398900000000 -T12023011111141339820900411721120313110542300000000000003920170000000000000000000000000000000261122222000000012219012 -T2202301111114133981219830302WT@#@TW#W2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413398120140423WTTTWP#BZ22222112204302100000000120050112WT@T@ZTY@22222122204311100000000 -T12023011111141369623500411471120423110939300000000023000140080000000000000000000000000000000000222222000007572219012 -T2202301111114136961219780312WT@W#Z@BP2222211222222011214290085221011949000000000000000000000000000000000000000000000000000000000000302700000000000000000000 -T2202301111114136961219830126WTT99##9Z2222212222222021215290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413696120130202WTTT9ZBYB22222122204303200000000120090309WT@T0@W9P22222122204306200000000 -T12023011111141377223500410671110213110611300000000000001190080000000000000000000000000000000000222222000000002229012 -T2202301111114137721219980507WTTYB9WZY2222212222221012216120075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413772120210105WTTPW0PPT22222122204398100000000 -T12023011111141378920600414251120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111114137891219750409WTTPW#BBP2222212222223012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413789120140912WTT9ZY#BP12222122204302100000000 -T12023011111141382720800410781120313110766132370000000006540260000000000000000000000000000000000222222000000002229012 -T2202301111114138271219980326WTT@00T@Y1222212222225012210110283221011818000000000000000000000000000000000000000000000000000000000000000200000000000000000000 -T320230111111413827120220226WTTBTY99B12222112204398100000000120200414WTTPT@@ZW12222122204398100000000 -T12023011111141385322000405321120213110611300000000180005280250000000000000000000000000000000000222222000000002229012 -T2202301111114138531219980701WTTY0TWYW2221222222221012212210253522011700000000000000200002000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413853120200914WT@WBBP0@22222222204398100000000 -T12023011111141386223500411471110323110740300000000000002950010000000000000000000000000000000000222222000000002229012 -T2202301111114138621219910712WTT#9#PB02222211222222011215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114138621219900413WT@ZP@#@Z2222212222222021215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413862120190326WTTTZT#BZ22222122204398100000000 -T12023011111141398324100410041120233110536300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111114139833219710307WT@PP99YZ2222212222213012208110850013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111413983120140704WTTYBWP9022222122206398100000000 -T12023011111141398722000413081120213110376300000000060005280040000000000000000000000000000000000222222000000002229012 -T2202301111114139871219900126WT@Y0W9ZZ2212222222221012214110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111413987120220308WTT9@B09#22222112204398100000000 -T12023011111141409324200414021120212110493300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114140931219760723WTTWPZ@PY2221222222221012214110085223011400000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T320230111111414093120060105WT@BB0P@#22212212204309100000025 -T12023011111141418225900402121110313110835107560000090002510030000000000035001000000000000000000222222000000002229012 -T2202301111114141821219960101WT@Y9YY@@1222222222221012212110035723011400000000000000000000000000000000000000000000000000000000030000000000000000000000000059 -T320230111111414182120200413WT@T0#Y@@12222212204398100000000120150127WTTZBZTZ#12222212204302100000306 -T12023011111141420924500405781120413110992300000000052507710260000000000000000000000000000000000222222000000002229012 -T2202301111114142091219910527WTT@TY@WZ2222212222221012216110273323011400000000000000000000000000000000000000000000000000000000240000000000000000000000001902 -T320230111111414209120120107WT@9PBW0@22222122204305100000000 -T320230111111414209120180214WTTZP@@WY22222112204398100000000120140327WTTTB909B22222122204302100000000 -T12023011111141421522000411131120532111211300000000000006960470000000000000000000000000000000000222222000000752219022 -T2202301111114142152219830727WT@#TP0TW2221222222211012216110670013089900000000000000000000000000000000000000000000000000000000000000000000000000060900000000 -T320230111111414215120140702WTTPBT0W#22212222204303100000000120070221WT@9@W0#@12212222204310100000000 -T320230111111414215120190922WTTP#BT0P22212222204398100000000120180113WTT9WY#YP22212222204398100000000 -T12023011111141422722000409871120232110516300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111114142272219830721WT@@BWBP@2222212222211012213110960013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111414227120090723WTTWW9ZB#12222222204305100000000 -T12023011111141425822000411551110213110599300000000000003160010000000000000000000000000000000000122222000000002229012 -T2202301111114142581219970426WT@P9T00@2222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111414258120180112WTTPBP0P#22212222204398100000000 -T12023011111141428523500405271120213110568300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111114142851219890227WT@ZYYBPY2122222222221012212910065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111414285120220307WTT9#W@@921222212204398100000000 -T12023011111141434522700408491120333120000300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111114143453219670307WTTZ0YP0P2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000319500000000000000000000 -T320230111111414345120180512WTT0B9#YZ22222122206398100000000120140726WTT909Y9#22222112206301100000000 -T12023011111141442925600413441120333110740300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111114144292219840427WT@W0YP@P2222211122211012212110411913109900000000000000000000000000000000000000000000000000000000000000000000000336059800000000 -T320230111111414429120070707WTTW9@T#P22222112204309100000000120050718WT@B@Z9@Y22222122204310100000000 -T12023011111141469224700413761120333110418300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111114146922219800521WT@YYBT9P1222222222223012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111414692120100218WT@P9TBBB12222222204306100000050120080218WT@Z0B0T#12222222204308100000050 -T12023011111141474624100402401120833110835300000000000206540230000000000000000000000000000000000222222000000002229022 -T2202301111114147462219830401WT@YYBT9P1222221222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114147462219840714WT@YYBT9P1222222222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111414746120200712WT@T@T0WP12222212204398100000000120190305WT@9@TP0Z12222222204398100000000 -T320230111111414746420100407WT@YYBT9P12222222204304900000000120050126WT@P9BYYP12222212204307100000000 -T320230111111414746420120423WT@YYBT9P12222212204302900000000420110504WT@YYBT9P12222212204303900000000 -T12023011111141499624500405781120213110598300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111114149961219970123WTTW0Y0T92222212222221012212110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111414996120210101WTTW@BY@Z12222122204398100000000 -T12023011111141512322000402321120213110611300000000000005280170000000000000000000000000000000000222222000000002229072 -T2202301111114151231219790422WT@Y@@P@@2221222222221012211111090023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415123120080712WT@Z9@@ZT22212212204307100000050 -T12023011111141514025900402831120213110611112250000000003970160000000000000000000000000000000000222222000001312219012 -T2202301111114151401219970721WTTBBT9092122222222221012209110035721011700210000000000000000000000000000000000000000000000000000080000136400000000000000000149 -T320230111111415140120220411WT@0WYZT@11222222204398100000000 -T12023011111141524924900403221120413111034108250000005007710070000000000000000000000000000000000222222000000002229012 -T2202301111114152491219890327WTTWZPPZB2222212222221012216120134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415249120060307WT@BT#9W912222112204311100000000 -T320230111111415249120200327WTTBBP9TZ12222122204398100000000120090318WT@Y9T@#Z12222122204307100000016 -T12023011111141530424200404701110423110939300000000000003480010000000000000000000000000000000000222222000000002229012 -T2202301111114153041219820211WTT09ZY9Y2222212222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114153041219820707WT@P@PT#P2222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415304120120721WTTP0YPY#22222112204304200000000120080408WT@P0000@12222112204308200000000 -T12023011111141530824200404891120533111139300000000000007710260000000000000000000000000000000000222222000000002229022 -T2202301111114153083219660904WT@ZP90#92222122122222012212910312913079900000000000000000000000000000000000000000000000000000000000000000000001010000000000000 -T320230111111415308120090505WT@WT##WT22221222206308100000000120080727WT@WP0##@22221212206309100000100 -T320230111111415308120120523WTTP@WP#922221222206305100000000120100414WTTWT#PB@22221212206307100000100 -T12023011111141539523500408281120323110835300000000020006540100000000000000000000000000000000000222222000000002229012 -T2202301111114153951219960412WT@PWP0WT2222211222222011212290114921011820000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114153951219980424WT@ZYWPYP2222212222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415395120200912WT@P#PWP922222112204398200000000 -T12023011111141542524200404701120423111034300000000042307710050000000000000000000000000000000000222222000000002229012 -T2202301111114154251219810323WTTP9PZ#@2222212222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114154251219820112WTT@T09P02222211222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415425120100404WT@#P#YBY22222122204307200000000120060209WT@#PWPY922222112204311200000000 -T12023011111141552824700408981120233120000300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111114155283219540204WTT9B#PZT2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002785000000000000 -T320230111111415528120070911WT@T99WB#22222112206308100000000 -T12023011111141553820600414871120323120000300000000000003920060000000000000000000000000000000261122222000000012219012 -T2202301111114155381219790708WT@B#@9T@2222122222222011211990065423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114155381219790923WTTYY0ZBY2222121222222021212990065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415538120160105WT@W0B0TW22222222204398100000000 -T12023011111141554522700407441120413111034300000000000007710250000000000000000000000000000000000222222000000002229012 -T2202301111114155451219900212WTT09@@BZ1222212222225012206210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415545120120107WT@PTZBW@12222122204303100000000 -T320230111111415545120190507WT@#00@0W12222112204398100000000120140318WTT#W@@@912222122204301100000000 -T12023011111141568625900403551120413110975300000000000007710750000000000000000000000000000000000222222000000002229072 -T2202301111114156861219840922WT@T@WZ#01222222222221012211110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415686120060402WT@ZPPPTY12222222204310100000080 -T320230111111415686120100712WT@9PYZ9912222222204305100000080120070121WT@@@T0YY12222212204309100000080 -T12023011111141575820600400801120213110598300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111114157581219760713WT@@T#TW@2222212222223012212110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415758120060704WTTPW09WB22222112204309100000000 -T12023011111141581122000408341110323110835300000000000000960010000000000000000000000000000000000222222000000002229012 -T2202301111114158111219930118WT@Y9@BZT1222222222221011214190025821011801000000000000000000000000000000000000000000000000000000000000005800000000000000000000 -T2202301111114158111219940512WT@YBY@@T2222211222221011212190025821011803000000000000000000000000000000000000000000000000000000000000015900000000000000000673 -T320230111111415811120200722WTTWZZP@B22222112204398100000000 -T12023011111141584024200414851120213110598300000000000005280550000000000000000000000000000000000222222000000002229042 -T2202301111114158401219790704WT@0Y900Z1222211222225012213110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000001222 -T320230111111415840120070918WTT9YT@YY12222122204309100000000 -T12023011111141588323500400891120233120000113380000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111114158833219770918WT@ZW#YY02222222222222012212110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415883120200412WTTT@B@#T12222112207398100000000 -T12023011111141593924200413331110323110740300000000000001580010000000000000000000000000000000000222222000000002229042 -T2202301111114159391219970201WT@WBYBZ#2222122222221011212990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114159391219950712WT@#Y0#092222121222221011212990006021011810000000000000000000000000000000000000000000000000000000000000088100000000000000000000 -T320230111111415939120210409WT@TBTWB022221222204398100000000 -T12023011111141597421000408061120213110598300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111114159741219950112WT@@9Z@@@2222212222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111415974120210409WTT@WPWBB22222112204398100000000 -T12023011111141600120500404361120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114160013219750104WT@ZZ@Z@P2222212222222012216110530713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416001120080427WTTTPWZ@#22222112207308100000000120050507WT@B@Y#B@22222122207311100000000 -T12023011111141601620800411931120623111395300000000101210090110000000000000000000000000000000000222222000000002229012 -T2202301111114160161219850321WT@#9P0902222122222222011212120293123011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T2202301111114160161219870424WTT#B99TB2222121222222021212190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416016120140927WT@P@@#0T22221222204302100000000120070701WTTT#9T#T22221222204308100000000 -T320230111111416016120210226WT@BWYZT922221222204398100000000120150727WTT@BZ#ZT22221222204301100000000 -T12023011111141603724700401281110212110516300000000000000340010000000000000000000000000000000000222222000000002229012 -T2202301111114160371219760901WT@PZ@Z0#2222212222221012211110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416037120060409WT@##@B9022222122204311100000000 -T12023011111141606424600411871120532111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111114160642219880304WTTZ9TY@#2222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111114160642219820527WTTBP#PW@2222211222213022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111416064120070712WTT0BP9ZW22222122204304100000000 -T320230111111416064120220412WTT00P#9#22222122204398100000000120160913WTT0@WPYZ22222112204398100000000 -T12023011111141618920600400801120412110941300000000000907710490000000000000000000000000000000000222222000000002229012 -T2202301111114161891219950427WTT@P@ZYW1222212222223012211120402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416189120140307WT@#YBTTY12222222204301100000000 -T320230111111416189120210104WTTB0PZZ912222122204398100000000120150314WT@T@PP9T12222112204398100000000 -T12023011111141619624700406701120213110611300000000000004170110000000000000000000000000000000000222222000000002229012 -T2202301111114161961219820324WTT#T999Y2222212222223012214110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416196520060201WTT@W00W#12222122104309108840000 -T12023011111141627622700401571120233120000300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111114162763219650101WTTY9PZTB2222212222222012212110154513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416276120110701WT@T#ZY@Y22222222206303100000066 -T12023011111141629322000408891120313110787300000000000206540150000000000000000000000000000000000222222000000002229012 -T2202301111114162931219920213WT@0#000P2222212222221012212110154523011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111416293120200404WTT9TBWZ@22212112204398100000000120160718WTT#B@9#T22212122204398100000305 -T12023011111141631624200414721120213110599300000000002002370140000000000000000000000000000000290222122000000012219012 -T2202301111114163161219890127WT@##BWBP2222211222225012216120223823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416316120060213WTTPYWZW#22212112204309100000000 -T12023011111141635425900406081110433110329300000000000002950010000000000000000000000000000000000222222000000002229021 -T2202301111114163542220000323WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114163542220020701WTT@PWT@Y1222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416354120230412WT@9TPY9W12222212204398100000000420180918WT@YYBT9P12222222204398900000000 -T12023011111141637925600411702120423210939300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111114163791219820313WT@9TPY9W1222222222221011298290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114163791219860513WT@9TPY9W1222221222221021298290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416379120130727WT@9TPY9W12222222204302200000000120110507WT@9TPY9W12222222204303200000000 -T12023011111141655624200407311120213110538300000000000000780110000000000000000000000000000000000222222000004502219012 -T2202301111114165561219720113WTTW@00BY2211222222224012212110124821011812000000000000000000000000000000000000000000170000000000000000089800000000000000000000 -T320230111111416556120080318WT@Y@99ZB22112222204307100000000 -T12023011111141661923500405271120623111283300000000300010090020000000000000000000000000000000000222222000000002229012 -T2202301111114166191219650122WT@BWPPBT2222211222222011215290035723011800000000000000000002000000000000000000000000000000000000360000000000000000000000000000 -T2202301111114166191219720418WT@PBB0BB2222212222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111416619120060913WTT##Y0@922222112204308200000000120050513WTTPZYZ@022222112204312200000000 -T320230111111416619120090101WT@PP99BZ22222122204307200000000120080426WT@0#0#TB22222122204307200000000 -T12023011111141699325900402831110233120000300000000000001610010000000000000000000000000000000000222222000000002229021 -T2202301111114169933219840304WT@B#W#@W1222222222221012212110006011069964000000000000000000000000000000000000000000000000000000000000400000000000000000000000 -T320230111111416993120100123WTTP@ZZYB12222212207306100000000 -T12023011111141718720800404431120213110631300000000002405280240000000000070014000000000000000000222222000000002229012 -T2202301111114171871219850324WTT9BYPP#2222212222221012213110481223011400000000000000000000000000000000000000000000000000000000330000000000000000000000000000 -T320230111111417187120080707WT@T0YW@Z22222112204308100000050 -T12023011111141721024700407521120313110766300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111114172101219860423WT@P9P@9B2222212222223012214210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111417210120150118WTT@9Y@9@22222112204301200000000120080504WT@PWW@PB22222122204308200000000 -T12023011111141728725900406841120233120000300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111114172875219770312WTT@WZ9T92122222222221012214110006013069900000000000000000000000000000000000000000000000000000000000000313000000000000000000149 -T320230111111417287120190426WTTT@TTT@21222222209398100000000 -T12023011111141737324200413971120423110939300000000000007710070000000000000000000000000000000000222222000000002229042 -T2202301111114173731219880313WT@9TPY9W2222211222222011214290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114173731219860107WT@9TPY9W2222212222222021214290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111417373120140713WT@9TPY9W22222122204301200000000120100305WT@9TPY9W22222112204305200000000 -T12023011111141737923500402711120423110939300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111114173791219850526WT@@@YBPY2222212222223011212210095123011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T2202301111114173791219790108WTTYPZB@B2222211222222021212290075323011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111417379120140105WT@99TW#@22222112204301200000000120050923WT@TYB#PB22222112204311200000000 -T12023011111141739321000403202110323210740300000000000004850010000000000000000000000000000000000222222000000002229032 -T2202301111114173931219780323WT@9TPY9W1222222222222011216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114173931219760411WT@9TPY9W1222221222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111417393120110714WT@9TPY9W12222222204305200000000 -T12023011111141751525000414191120333110376300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111114175152219680107WT@YYBT9P1222212222222012204990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114175152219650713WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000023100000 -T320230111111417515120050422WT@990#Z@12222212204310100000000 -T12023011111141755823500404531120333120000300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111114175583219660701WTTYB9#T02212222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111417558120070312WT@YP9Z9T22122212207308200000000120060427WTTP@9Y@P22122222207310200000000 -T12023011111141771024700408091120313110835300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111114177101219770926WT@YWY@T92222212222221012216110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000001918 -T320230111111417710120160418WT@WW#YW#12222222204301100000000120100507WT@P#TYPY12222222204307100000000 -T12023011111141771620800405391120333120000104170000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114177163219760718WT@BY0Z@Y2222212222222012212120006011069912000000000000000000000000000000000000000000000000000000000000075000000000000000000000 -T320230111111417716120210312WTT0T990B12222112206398100000000120150123WT@Y#TBZ912222222206301100000000 -T12023011111141773122000405841120233110507300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111114177312219620927WTT0#W9P@2221222222213012214120570313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111417731120050918WT@PBW0B922212212204312100000000 -T12023011111141782925900403551120313110834300000000020003790320000000000070004000000000000000000222222000002752219012 -T2202301111114178291219820504WT@99YTZY1222222222221012213110471321011809000000000000000000000000000000040000000000000000000000110000054800000000000000000000 -T320230111111417829120190426WTT@TW0BY12222122204398100000000120120512WTT0WPZ@Z12222212204304100000000 -T12023011111141784324200409091120213110631300000000000005280130000000000000000000000000000000000222222000000002229072 -T2202301111114178431219850112WT@0BWT9#2221222222221012211110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111417843120070108WTTZYB0WP12212212204309100000000 -T12023011111141787524200414851110523111211300000000010001710010000000000000000000000000000000000222222000000002229012 -T2202301111114178751219920123WTTYP0PBB2221222222222011213190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114178751219870726WTTTWTBPW2221221222222021212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111417875120120326WT@BTZPZ@22212222204303100000000 -T320230111111417875120200118WTTTTYY#Y22212212204398100000000120170507WT@BYP#TT22212222204398100000000 -T12023011111141798722000414501120212110611103920000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114179871219900908WTT#ZP#0Y2222212222225012213110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111417987120110101WTTTP@0WP22222122204303100000000 -T12023011111141803120600414162120423210939300000000050007710020000000000000000000000000000000000222222000000002229032 -T2202301111114180311219800426WT@9TPY9W2222212222222011216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114180311219840118WT@9TPY9W2222211222222021215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111418031120100209WT@9TPY9W22222122204305200000000120070124WT@9TPY9W22222122204308200000000 -T12023011111141805720600409001120233110516300000000000004170760000000000000000000000000000000000222222000000002229022 -T2202301111114180572219950402WTTYZ@BWB2222211222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111418057120160712WTTW9B@#B22222122204398100000050 -T12023011111141809425900403552120313210776300000000000006540020000000000000000000000000000000000222222000000002229032 -T2202301111114180941219830912WT@9TPY9W1222222222223012205210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000002000 -T320230111111418094120170708WT@9TPY9W12222222204398200000000120090902WT@9TPY9W12222222204306200000000 -T12023011111141810722500410151120212110603300000000000005610810000000000000000000000000000000000222222000000002229072 -T2202301111114181071219850901WT@WZ@ZT#2222212222221012212110760023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111418107120150322WTTTYT@BT22222112204398100000000 -T12023011111141812622000409871121032112113300000000000012890440000000000000000000000000000000000222222000000002229022 -T2202301111114181262219860518WTTBB9#TT2221222222211012211110025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000100 -T320230111111418126120060412WTT0T9@Y022212222204310100000000 -T320230111111418126120080911WTT9B9ZY922212212204308100000000120070911WTTZ9@T#@22212222204309100000000 -T320230111111418126120120904WTT@WY99Z22212212204304100000000120090727WTT99PZ#Y22212212204306100000000 -T320230111111418126120150714WTTY@ZYP@22212222204398100000000420140408WTT@@9TYY22212212104302100760000 -T320230111111418126120220726WT@W0B@B022212222204398100000000120210926WT@P90PT022212212204398100000000 -T12023011111141813324200403941120313110740300000000000006540750000000000000000000000000000000000222222000000002229072 -T2202301111114181331219890713WT@@Z#TW92222212222225012211110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111418133120090412WTTBP#TTW22222122204307100000055120090412WTT0WZT0Y22222122204307100000045 -T12023011111141818524200414021120423110939300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111114181851219770911WT@WT9@002222211222222011212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114181851219750113WT@@Y0P9Y2222212222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111418185120150314WT@@W0WYP22222112204301200000000120140407WTT@W@@P922222122204303200000000 -T12023011111141821524200405671120313110835300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111114182151219870127WT@@BZZZ02222212222223012216110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111418215120130412WTTP9#W0@22222112204302100000000120080223WT@W#TWYP22222122204308100000000 -T12023011111141821621600412781120233120000300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111114182163219910126WTT099Y#@2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000949500000000000000000000 -T320230111111418216120160118WTT9P99ZT22222112207398100000000 -T12023011111141826024900404261120213110598300000000080005280330000000000000000000000000000000000222222000000002229012 -T2202301111114182601219810214WT@#9ZBT#2222212222225012215110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111418260120100323WTTTY9B@Y12222122204304100000000 -T12023011111141861024200414721120313110835300000000000004570340000000000000000000000000000000163222122003200022219012 -T2202301111114186101219910512WT@9WBPBT2221222222221012216120134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111418610120210921WTTPP@@TP22212212204398100000000120150909WTT#909WB22212222204398100000000 -T12023011111141863625800405801120533111116300000000000007710040000000000000000000000000000000000222222000000002229022 -T2202301111114186363219610301WTT0@09Y02122221222221012212110006011069940000000000000000000000000000000000000000000000000000000000000296700000000000000000325 -T320230111111418636120060901WT@PB9#9#21222222206310100000000120040105WTT##@0P921222212206311100000000 -T320230111111418636120200112WT@T09TYW21222222206398100000121120170202WTTPPBT@W21222212206398100000121 -T12023011111141873423500407161120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114187341220010509WT@0P0BT#2222122222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111141879124700401281120313110855300000000000006540020000000000000000000000000000000000222222000000002229042 -T2202301111114187911219880427WT@Z@Y99Z2122221222221012211110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111418791120080418WTT9#0Y@@21222222204308100000000120060323WT@B#YW#W21222212204309100000000 -T12023011111141884720600401561120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111114188471219920126WT@B0WB@P2222212222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111141905220600414831120313110835300000000007205610060000000000000000000000000000000000222222000000002229012 -T2202301111114190521219920504WT@@Z@Y9Y2222212222221012216110233721011740000000000000000000000000000000000000000000000000000000000000313900000000000000000000 -T320230111111419052120180523WTTZW#@W#22222122204398100000000120110724WT@ZZ@#TB22222122204304100000000 -T12023011111141908224500405941120113120000300000000007802500060000000000000000000000000000000166122222000000012219012 -T2202301111114190821220040902WT@#Z@TP02222212222221013207190065423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111141909825900402721120333110740300000000000005280920000000000000000000000000000000000222222000000002229022 -T2202301111114190983219550313WTTW@W#9W1222212122224012206110006013069900000000000000000000000000000000000000000000000000000000000000000000001044000000000000 -T320230111111419098120080507WTTY0Z90T12222122206306100000000120050118WTTY#00Y012222212206309100000000 -T12023011111141910822000400811120212110557300000000009005280990000000000000000000000000000000000222222000000002229072 -T2202301111114191081219680423WTTBPTBT@2221222222225012201111600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419108120060505WTTPZY@WZ22212222204310100000000 -T12023011111141914524200404891120313110776300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111114191451219870704WT@#90BB#2222212222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419145120210707WTTY0W@#Z22212112204398100000000120150401WTT90W@#@22222212204301100000000 -T12023011111141915223700414331120323110855300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111114191521219860727WT@@TPB#T2222211222222011213190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114191521219880927WT@0#PPZ@1122222222222021212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419152120170523WT@PWPBT#12222122204398100000000 -T12023011111141921524700408092120212210598300000000000005280100000000000000000000000000000000000222222000000002229032 -T2202301111114192151219830912WT@TY@9##2222212222225012214210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419215120100713WTTYYPYYT22222122204303200000000 -T12023011111141928624200410371120233120000300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111114192863219910905WT@TYW#WW2222212222221012212110006011069940000000000000000000000000000000000000000000000000000000000000596300000000000000000000 -T320230111111419286120140113WTTWZ#BPP22222112207303100000000 -T12023011111141942622000411971120413110939300000000000007710210000000000000000000000000000000000222222000000002229012 -T2202301111114194261219980411WT@0YW0B#2221222222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419426120180913WTTZZYB#B22112112204398100000000 -T320230111111419426120210123WTTPWZY0Z22212212204398100000000120200113WTTWZ@@Y@22112112204398100000000 -T12023011111141943222000413731120232110516300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111114194323219720323WTTBZ0YBT2221222222214012212220680013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111419432120160904WTT@BYZZZ22222212206398100000000 -T12023011111141951124200404701120232110516300000000000804170290000000000000000000000000000000000222222000000002229022 -T2202301111114195111219850713WT@#@#T@Z2222212222221012216110840023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419511520110723WT@TTZ#W#22212212104303109140000 -T12023011111141953124900404261120312110793300000000000506540330000000000000000000000000000000000222222000000002229012 -T2202301111114195311219870423WT@PW@YWT2222212222225012216110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419531120060122WT@B#B9W022222122204310100000000120060122WT@Y@@0#Y22222122204310100000000 -T12023011111141953925200410591120312110778300000000000005880300000000000000000000000000000000000222222006500012219012 -T2202301111114195391219990326WT@9#W@Y02222212222221012209110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000002 -T320230111111419539120220501WTTW@WYY@12222112204398100000000120170226WTTWZ#Y#@22222122204398100000000 -T12023011111141956525900406841120313110766300000000000006540120000000000000000000000000000000000222222000000002229042 -T2202301111114195651219830208WTT#T#BZ#2222212222221012212110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419565120100721WTTPZ0#PW22222122207305100000000120070321WT@#@B@WP22222122207308100000000 -T12023011111141962224700406741120432110893300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111114196222219710507WTTBBZ9TP2222212222211012208110174313089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111419622120040704WTTWPP9WB22222122204311100000000 -T320230111111419622120070412WTTTBWY9W22222122204307100000000120050709WT@PB@YPW22222122204309100000000 -T12023011111141973025600404651120233120000300000000000004170750000000000000000000000000000000000222222000000002229022 -T2202301111114197303219870318WTT#TW0#B2222222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000076200000000000000000000 -T320230111111419730120160414WT@#0ZT@Z21222212208398100000000 -T12023011111141979823700414331120233120000300000000000003960990000000000000000000000000000000000222222002000012219022 -T2202301111114197983219690118WT@W@09ZW2221221122221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001983000000000000 -T320230111111419798120120418WTTBT0Z#B22212222207304100000000 -T12023011111141980422000403352120423211034300000000014207710040000000000000000000000000000000000222222000000002229032 -T2202301111114198041219850904WT@BZB@Y92222212222222011212290055522011800000000000000180003000000000000000000000000000000000000040000000000000000000000000000 -T2202301111114198041219880912WTT##P0P02222211222222021212290055522011800000000000000180003000000000000000000000000000000000000050000000000000000000000000000 -T320230111111419804120180527WT@#@TB@B22222122204398200000000120140327WTT0#W0T922222112204301200000000 -T12023011111141983724700413761120113110376300000000000104170110000000000000000000000000000000000222222000000002229012 -T2202301111114198371219860918WTTWBTZ@Z2222212222223013212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111141995625600411521120213110599300000000000003160260000000000000000000000000000000211122222000000012219012 -T2202301111114199561220010504WT@9TTY@92222212222221012212110273323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111419956120190723WTT@Y0B9Y22222122204398100000000 -T12023011111142003123900408801120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114200313219670407WT@Y0W9W92222212222223012213120006013069900000000000000000000000000000000000000000000000000000000000000416000000000000000000000 -T320230111111420031120080907WT@T@WZTT21222122206307100000000 -T12023011111142007020600414091120212110598300000000000005280100000000000000000000000000000000000222222000000002229072 -T2202301111114200701219910913WTTZZ9ZTB2222212222221012213110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420070120170512WT@#9PYZY22222112204398100000000 -T12023011111142008323700414331110233110376300000000000003490010000000000000000000000000000000000222222000000002229021 -T2202301111114200832219870711WT@YYBT9P2222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420083120220301WT@99Y@0Z12222122204398100000000 -T12023011111142013921400408021120533110611300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111114201392219890512WT@YYBT9P1222212222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114201392219850705WT@YYBT9P1222211222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420139420050923WT@YYBT9P12222122204310900000000 -T320230111111420139120120212WT@#BYB#T12222122204305100000000120090104WTT#YY#BP12222112204308100000000 -T12023011111142014224700405831120523111199300000000298808880020000000000070002000000000000000000222222000000002229012 -T2202301111114201421219940705WT@PP00#B2212221222222011214290025823011800000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T2202301111114201421219900414WTTT9TW#@2212222222222021215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420142120160213WT@P#W9@022122212204398100000000 -T320230111111420142120210723WT@TB#PWZ22122222204398100000000120180314WTTYWP#T@22122212204398100000000 -T12023011111142016424700408301120313110811300000000000006540180000000000000000000000000000000000222222000000002229012 -T2202301111114201641219940313WTT@YP0ZW2222212222225012212120590123011800000009000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420164120180412WT@W90WYP22222112204398100000000120150426WTTT0TB0#22212122204301100000000 -T12023011111142017621000403201120233120000300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111114201763219690323WTT0@#Z0T2222211222222012211110006013069900000000000000000000000000000000000000000000000000000000000000440000000000000000000000 -T320230111111420176120170104WTTBPYTWW22222112206398100000000 -T12023011111142021425900402831120233110611300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111114202143219870318WT@#TYWWZ1222222222221012212110075311069925000000000000000000000000000000000000000000000000000000000000177300000000000000000000 -T320230111111420214120150721WT@B@#ZT912222122207398100000038 -T12023011111142023022000407411120323110835300000000000003920180000000000000000000000000000000261122222000000012219012 -T2202301111114202301219860707WTTY#P#0W2222212222221011216190075323011200000000000000000000000000000000000000000000000000000000000000000000000000000000001958 -T2202301111114202301219810424WT@TTB9WB2222211222225011214190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420230120210922WTTBY9PWP22222112204398100000000 -T12023011111142024124200403941120333110611300000000000002540320000000000000000000000000000000000222222000002742219022 -T2202301111114202412219910705WT@YYBT9P1122222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000400 -T320230111111420241120170721WT@00T9#Z12222122204398100000000120120401WTT00BP@T12222122204303100000000 -T12023011111142029022000412231120313110766300000000026806540030000000000000000000000000000000000222222000000002229012 -T2202301111114202901219860311WTTYYP00T2221222222221012212110312921011800200000000000000001000000000000000000000000000000000000110000136400000000000000000000 -T320230111111420290120150407WTTBW0#YW22212222204302100000000120110901WTTY#@Y0022212212204306100000000 -T12023011111142041722000408891111013112113300000000000005930010000000000000000000000000000000000222222000000002229072 -T2202301111114204171219840423WTT0Z9TW02222212222223012205210730021011801000000000000000000000000000000000000000000000000000000000000001000000000000000000000 -T320230111111420417120050207WT@@YZT0Y22212212204310100000000 -T320230111111420417120080712WTTBB#TZZ22212212204307100000000120070423WTTZWPP@B22212222204309100000000 -T320230111111420417120120118WT@B#BW9922212222204304100000000120090701WT@YTY@#022212222204306100000000 -T320230111111420417120140327WTT9@Z9#T22212222204301100000000120130909WT@BZBBPW22222212204302100000000 -T320230111111420417120190911WT@TWP9##22212222204398100000000120170218WT@T@#P@T22212212204398100000000 -T12023011111142046321000403201120613111339300000000000010090090000000000000000000000000000000000222222000000002229012 -T2202301111114204631219900126WT@#ZPP@Y2122222222221012211110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420463120060712WT@@ZTBY#21222222204309100000000 -T320230111111420463120170207WT@0T#WWT21222212204398100000000120090923WT@9TPBYP21222212204307100000000 -T320230111111420463120210727WT@YWY#0W21222222204398100000000120190924WT@9TPY9W21222222204398100000000 -T12023011111142049425200412081120213110611300000000000103500220000000000000000000000000000000000222222000001782219012 -T2202301111114204941219910312WT@9#9Z0W2222212222225012212110233721011806000000000000000000000000000000000000000000000000000000000000035500000000000000000000 -T320230111111420494120220409WTTTBZ90922222222204398100000000 -T12023011111142056522000413731120213110376103280000000003160180000000000000000000000000000000211122222000000012219012 -T2202301111114205651219880212WTTPW#Y0W2222212222221012210110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420565120160118WTTYPTYZP22222122204398100000000 -T12023011111142063324500407641120313110766300000000000004900300000000000000000000000000000000163222122000000012219012 -T2202301111114206331219940304WT@0ZP#9B2222212222221012212120253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420633120170423WTT@TBT0012222222204398100000000120160124WTTBP99#922222112204398100000000 -T12023011111142073722000402321120233110516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114207373219790714WT@TBBB#02221222222221012216110006011069966000000000000000000000000000000000000000000000000000000000000413000000000000000000000 -T320230111111420737120220502WT@9Y9B0022212222208398100000000 -T12023011111142074625800401871120332110704300000000000005280980000000000000000000000000000000000222222000000002229022 -T2202301111114207462219720726WT@9PWBWW1222212222215012213111390013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111420746120100721WT@ZB##YB12222112204304100000000120050312WT@YT909#12222122204309100000000 -T12023011111142075224200404701120232110493300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111114207523219700708WT@@Y#9Z@2221222222221012216111080011069913000000000000000000000000000000000000000000000000000000000000087900000000000000000000 -T320230111111420752120110323WTTP@BB9922212222206304100000050 -T12023011111142081723500409141120213110521300000000010005280070000000000000000000000000000000000222222000000002229012 -T2202301111114208171219780711WT@9WB@BY2222212222225012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420817120060723WT@PW@#WT22222112204310100000067 -T12023011111142094124700409381120233120000300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111114209413219530713WTTP@W@002222212122222012298110006013069900000000000000000000000000000000000000000000000000000000000000860200001479000000000000 -T320230111111420941120200509WTTWYBTW922222112206398100000000 -T12023011111142097022000406191120313110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114209701219800326WTTW@WT9#2222212222222012214210105021011822000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111420970120090113WTTYWYYT@22222112204305200000000120050726WT@YPZPPP22222112204310200000000 -T12023011111142101725800413571120613111339300000000000110090060000000000000000000000000000000000222222000000002229012 -T2202301111114210171219910907WT@#9ZY9T2222212222223012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111421017120140407WTTPW@9##12222122204303100000125 -T320230111111421017120180707WT@990@ZB22222122204398100000125120170726WTTZWWB9@12222122204398100000125 -T320230111111421017120210321WT@P@PY#012222112204398100000000120200127WTTWB90TP12222122204398100000125 -T12023011111142102225900406081120533110611300000000001105280570000000000000000000000000000000000222222000000002229022 -T2202301111114210222219880422WT@YYBT9P1222222222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114210222219870323WT@YYBT9P1222221222222022208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111421022420090423WT@YYBT9P12222222204307900000000 -T320230111111421022120170114WT@99@@##12222212204398100000000120140127WTTY00BTY12222212204302100000000 -T12023011111142107723900403801120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114210773219630511WTT@PP#Z92222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111421077120060427WTTP@WWBZ21222212206309100000000 -T12023011111142112222100413531120233120000105390000000001710160000000000000000000000000000000000222222000002462219022 -T2202301111114211225219940301WTTTTB9P#2222212222225012214110006013069900000000000000000000000000000000000000000000000000000000000000516000000000000000000000 -T320230111111421122120130904WT@#YBB@T22222112209302100000246 -T12023011111142113420400407741120333110740300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111114211342219770122WTT@#@T092122222222211012216110372313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111421134120130227WTTYZYT9W21222212204303100000000120050404WTT99BB@Z21222222204311100000000 -T12023011111142128223900403801120212110611300000000000005280300000000000000000000000000000000000222222000000002229072 -T2202301111114212821219760326WTTY@Y0@02222212222225012213111180023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111421282120050511WT@TYBY@922222112204310100000000 -T12023011111142151522000402321120232110516300000000000004170750000000000000000000000000000000000222222000000002229022 -T2202301111114215153219650704WTTW0TP#Z2221222122211012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000763017100000000 -T320230111111421515120070224WTT@@ZW9Y22212222207309100000070 -T12023011111142153522000411551120423110939300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111114215351219880502WT@WY@#W01221221222222011210290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114215351219900413WT@Z#9B@P1221222222222021209290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111421535120180724WTTBB0@TW12212222204398200000000120110723WTTTWBZW912212222204304200000000 -T12023011111142154020800414651120213110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111114215401219810402WTTT0ZZW@2222222222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111421540120150114WTTW@T9#W22222222204301100000000 -T12023011111142162122000413731120213110611300000000000005280160000000000000000000000000000000000222222000000002229072 -T2202301111114216211219810326WTT@@YB#B2222212222221012213120820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111421621120090304WTT#W9@@@22222212204306100000000 -T12023011111142187224200403511120213110516300000000080004170130000000000000000000000000000000000222222000000002229012 -T2202301111114218721219660426WT@#@Z0B#2222212222225012212110154523011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111421872520060323WTT0ZWY9022222112104309109140000 -T12023011111142188222000403891120312110740300000298000000010160000000000000000000000000000000000222222000000002229012 -T2202301111114218821219830423WTT@#@@@P2222222222223012212110164411011800210000000000000000000000000000000000000000000000000000130000138500000000000000000000 -T320230111111421882120100908WT@#0@9W922222222204306100000149120080305WT@00@@BZ12222212204307100000149 -T12023011111142200222000413731120212110606300000000002505280150000000000000000000000000000000000222222000000002229012 -T2202301111114220021219800227WTT##9#TY2222212222221012211110550523010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111422002120170107WTTTPB#Y@22222122204398100000000 -T12023011111142206320800411931120513111116300000000000007990030000000000000000000000000000000000222222008800012219012 -T2202301111114220631219990513WT@P0TWY92221222222221012213110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422063120180927WTT09TZ@T22212212204398100000000120150722WTTP09B@B22212222204398100000000 -T320230111111422063120210101WT@ZWB@#T22222122204398100000000120200407WTTP@#9P022212222204398100000000 -T12023011111142212225600411521120212110611108310000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111114221221219990407WT@0@9ZZT2221222222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422122120200507WTTP#TY9W22222122204398100000000 -T12023011111142219023500406851120213110598121820000020005280030000000000000000000000000000000000222222000000002229012 -T2202301111114221901219950902WT@WP##Z92222212222221012212210045621011724000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422190120200723WT@9PYTTW22222122204398200000000 -T12023011111142232722000402371120212110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111114223271219930926WT@WY00BW2221221222221012212110154521011933000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422327120130126WTTYZ#@9B22212222204302100000000 -T12023011111142249225900406841120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114224922219930905WTTTY@YBB1222222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111422492120130102WT@##W9@012222212204303100000000 -T12023011111142257522000413731120233110376300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111114225752219900705WT@YYBT9P1222212222223012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422575120210127WTT#TPPW#12222112204398100000000 -T12023011111142261124900404261120513111116300000000000208880170000000000000000000000000000000000222222000000002229012 -T2202301111114226111219920514WTT9YBWT92222212222221012212110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422611120160726WT@#Y0ZBY22222122204398100000000120140322WTTZW0YP#22222122204301100000000 -T320230111111422611120220212WT@PTBW@922222212204398100000000120200327WT@TZ@@ZT22222112204398100000000 -T12023011111142263120800414151120313110558300000000000306540020000000000000000000000000000000000222222000000002229012 -T2202301111114226311219970911WT@9BY#YB2222212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422631120210409WTTB90BT012222122204398100000000120190112WT@BYBZTZ22222122204398100000000 -T12023011111142269822000408891120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114226982219780923WTTZP0P9W2221222122211012212110890013109900000000000000000000000000000000000000000000000000000000000000000000000519041500000000 -T320230111111422698120110126WTTPP9@##22222122204305100000000120050307WTTTBB@ZP22212212204309100000000 -T12023011111142278324700406701120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111114227831219690423WTT@#BTW#2222212222221012213110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422783120080918WTT@BBPWW22222122204308100000000 -T12023011111142278522000409411120233110376300000000020004170330000000000000000000000000000000000222222000000002229022 -T2202301111114227852219760405WT@YYBT9P1222222222221012212910006011079905000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111422785120070421WTTPTBTTY12222212204310100000050 -T12023011111142281724700406701120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111114228171219910708WT@Z#9#YT2222211222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114228171219990427WT@WZW#0B2222212222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422817120210302WTTWYBPTW22222112204398200000000120200112WTT@9W0W922222122204398200000000 -T12023011111142283924100402401120233110557300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114228393219590118WT@#9BWY@1222221222225012212110441613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000005 -T320230111111422839120070723WTTZPWBTP12222112206309100000000 -T12023011111142295525900406651120313110730300000000000306540330000000000000000000000000000000000222222000000002229012 -T2202301111114229551219970705WT@YPZWY02222212222221012211110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111422955120210918WT@P9@99#22222122204398100000000120190704WTTZP9BTT22222122204398100000000 -T12023011111142324825900402631120633111211300000000000007710270000000000000000000000000000000000222222000000002229022 -T2202301111114232482219870501WT@YYBT9P1222221222221012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111423248120060118WT@TBTTBT12222212204310100000000 -T320230111111423248120130401WTTW@B@0T12222212204302100000000420080507WT@B0TTTZ12222222104308109140000 -T320230111111423248120180902WT@BT9ZWY12222212204398100000000120150123WT@09W9PB12222222204398100000000 -T12023011111142326720600414251120412110920300000000000005010480000000000000000000000000000000000222222002600012219072 -T2202301111114232671219870204WTTW0ZTZ92222212222221012211110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114232672219870907WTT0#TZ#B2222211222211102212190154513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111423267120190322WTTYZW0B@22222112204398100000000120120421WT@@ZP0P922222122204303100000000 -T12023011111142336624200406251120233110493300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114233663219630927WTTYBY9WW2221222222225012212210006011069912000000000000000000000000000000000000000000000000000000000000087600000000000006980000 -T320230111111423366120070502WT@99TP#B22212222206310100000000 -T12023011111142343222000410051120233110281300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111114234323219740312WT@YYBT9P1222222222221012209910006011079937000000000000000000000000000000000000000000000000000000000000260700000000000000000000 -T320230111111423432120080324WTTBZ@ZP912222122206308100000000 -T12023011111142354422000406951120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114235441219790212WT@9TPY9W2222222222223012215210114923011800000000000000000000000000000000260001000000000000000000000000000000000000000000000000 -T320230111111423544120170223WT@9TPY9W22222122204398200000000 -T12023011111142362622100406981120212110611300000000000005280310000000000000000000000000000000000222222000000002229072 -T2202301111114236261219790121WTT@PT0092222212222223012212110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111423626120080923WTTZP#B9W22222112204308100000000 -T12023011111142364722000412231120212110557300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111114236471219820112WT@P00#WB2222212222225012213111460023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111423647120070401WT@WY9##922222122204308100000000 -T12023011111142367024700402991120523111116300000000000008880120000000000000000000000000000000000222222000000002229012 -T2202301111114236701219800408WT@P@T9Z02222211222222011212290124821011828000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114236701219890101WTTB0TT#B2222212222222021216290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111423670120090912WT@WW0B0B22222122204307200000000 -T320230111111423670120160109WT@WW9ZB@22222122204398200000000120120223WT@WWBZ0@22222122204303200000000 -T12023011111142368623500405271120313110794300000000110901900150000000000000000000000000000000063222122000004012219012 -T2202301111114236861219820711WTTWYW#Y91222222222221012212120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000400 -T320230111111423686120210407WTT9T#0Y912222222204398100000000120080311WT@##0@0Z12222212204306100000000 -T12023011111142373924200406011120413120000300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111114237391219950708WT@YT#0092221221222222012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111423739120170414WT@ZB0ZTY22212212204398100000000 -T320230111111423739120210405WTT9ZZPBW22212112204398100000000120190223WTT#ZTY9922212112204398100000000 -T12023011111142378022000407411120313110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111114237801219940414WT@ZB9TYB1222222222225012212120065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111423780120220127WT@BYWW0#22221222204398100000000120180907WT@#Y#@TT12222212204398100000000 -T12023011111142381024200404891120233110211300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114238103219920124WT@0T0W992222211222221012212110006011069938000000000000000000000000000000000000000000000000000000000000326800000000000000000000 -T320230111111423810120100723WTTB9WZZ022222122209305100000000 -T12023011111142384022000410381110213110516300000000000003400010000000000000000000000000000000000222222000000002229012 -T2202301111114238401220010307WT@Y@BWWW1222212222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111423840120220409WTTZ9Z0PW12222112204398100000000 -T12023011111142396322000410051120232110516300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111114239632219780418WTTY0ZPZ#2222221222211012208110025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111423963120130713WT@90090Y12222212204302100000000 -T12023011111142396523500412161120312110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111114239651220010413WT@Z0BWPP2222212222221012210110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111423965120210512WTTBBZYT@22222122204398100000000120190907WT@Z99PPB22222112204398100000000 -T12023011111142402323500404531120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111114240233219490404WTTPPP##92222211122222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000002276000000001769 -T320230111111424023120080712WT@YB9PZ#22222112206308100000000 -T12023011111142404125900402631120433111034300000000000006540460000000000000000000000000000000000222222000000002229022 -T2202301111114240413219870902WTTB0@#PY1222212222221012211110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424041120050926WTTWWTZTP12222212207311100000000 -T320230111111424041120090413WT@B09PTB12222222207306100000000120070523WTTWB#ZW@12222222207308100000000 -T12023011111142405124200400491120212110611113820000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111114240511219970118WT@0Y0P@92221222222221012210110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424051120210421WT@B#B0@922212212204398100000000 -T12023011111142419125900406081120333110783300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114241913219660921WT@@ZBBBZ2222222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000254 -T320230111111424191120120213WT@@P@BT922222222206304100000000120100514WTTZWBW0#22222212206305100000000 -T12023011111142421924700400741110213110611300000000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111114242191219700402WTTZ@ZP@T2222212222225012216110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424219120060922WTTWZWB#Z22222112204310100000000 -T12023011111142428320600400801120213110557300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111114242831219970304WTT990W0@2222212222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424283520180923WTTZWBZWT22222112104398109140000 -T12023011111142437021700406141120313110835138190000000006540310000000000000000000000000000000000222222000000002229012 -T2202301111114243701219900126WTTYYWW@B2222212222221012216110273323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424370120220109WTT00ZPT922222122204398100000000120180323WT@@ZTWPT22222122204398100000000 -T12023011111142442423500410671120312110835120540000001406540220000000000000000000000000000000000222222000000002229012 -T2202301111114244241219950713WTTBTWTYP1222212222221012216110233723011400000000000000000000000000000000000000000000000000000000270000000000000000000000000000 -T320230111111424424120180321WT@9Z09BZ12112112204398100000000120170912WTTWPZT@T12112122204398100000000 -T12023011111142442920600400801120213110407300000000000104170040000000000000000000000000000000000222222000000002229012 -T2202301111114244291219940323WT@YZZY#P2222212222221012216110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000001660 -T320230111111424429120220718WT@9TPY9W22222112204398100000000 -T12023011111142443822000407241120513111211300000000000008880440000000000000000000000000000000000222222000000002229072 -T2202301111114244381219930707WT@T0BPB@2221222222221012212110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424438120140213WTT##Z0ZB22212212204398100000025120130121WT@9WTWTT22212222204301100000025 -T320230111111424438120180514WT@9P#@W922212212204398100000025120150918WTTBWW#T922212212204398100000025 -T12023011111142450821700407751120413111010300000000000005330260000000000000000000000000000000000222222000002382219012 -T2202301111114245081219900402WTTP09YZT2222212222225012216110273323011700000000000000000000000000240000000000000000000000000000000000000000000000000000000000 -T320230111111424508120100921WTTWB0WZB22222122204306100000050 -T320230111111424508120180408WT@ZBY9B@22222122204398100000119120150304WT@9#B@0@22222122204398100000119 -T12023011111142457225900402721120312110835103490000000006540950000000000000000000000000000000000222222000000002229072 -T2202301111114245721219800305WTT@ZB#W01222212222223012211110960023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424572120170222WT@BPP#BZ12222212204398100000000120110118WTT0BYP@P12222222204303100000000 -T12023011111142458025200412081120213110611300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111114245801219790926WT@9WW@ZW2222211222223012213110362423011400000000000000000000000000000000000000000000000000000000160000000000000000000000000000 -T320230111111424580120090102WTT@9#BPP22222112204307100000000 -T12023011111142460222000412971120333120000124070000000005280470000000000000000000000000000000000222222000000002229022 -T2202301111114246023219650204WT@9@@BZ92222212222225012212110065411069942000000000000000000000000000000000000000000000000000000000000406300000000000000000000 -T320230111111424602120180413WT@TPY#0Y22222122206398100000000120170407WTTW0@Z#P22222122206398100000000 -T12023011111142462824500409151120333110740300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111114246283219560922WTT@0Y9PY2222212122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001076000000000000 -T320230111111424628120180123WT@PBBP@022222122206398100000000120150705WTT90BP0Y22222122206301100000000 -T12023011111142468024200404891120213110598300000000000705280080000000000000000000000000000000000222222000000002229012 -T2202301111114246801219920401WTT##YBZ@2221212222221012212110095121011728000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424680120170218WTTY0Z0W022212222204398100000000 -T12023011111142472022000402371120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111114247201219860718WT@YT@#WZ2222212222221013211190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111142487824200414851120513111116122760000064205320200000000000000000000000000000000355122222000000012219072 -T2202301111114248781219860421WT@9BB9Z92221222222221012211110900023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424878120150923WTT#WPP0@22212212204301100000000120100205WTTBP@90922212222204306100000000 -T320230111111424878120190305WTTWW0B0T22212212204398100000000120180418WTTZ9WZ0922212222204398100000000 -T12023011111142492422000412231120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111114249241219940123WTTW@YY#P2222212222223012213120075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111424924120180701WT@##9BZB22222212204398100000000 -T12023011111142500022700407441120233110557300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114250003219560701WT@PPTB@Y2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000764000000000000 -T320230111111425000120140714WT@#Y0BZ#22222122206301100000000 -T12023011111142505924700401281120533120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111114250593219820713WTT9WPYBY2222212222222012214110015913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111425059120190408WTTTTYWPZ12222122209398100000000420180112WTT0BWW9W22222122204398100000000 -T320230111111425059420160905WT@T@ZTWP22222112204398100000000420100101WTTY#Z9@W22222112204305100000000 -T12023011111142510424200401241120423110959300000000009907710020000000000000000000000000000000000222222000000002229012 -T2202301111114251041219740504WT@ZT#9@B2222212222222011213110035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114251041219810912WTTZ#P0BY2222211222222021216190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111425104120150902WT@WZPWZZ22222122205301100000000120130923WTT90ZP#W22222122205303100000000 -T12023011111142523820600402141120322110817300000000000003920360000000000000000000000000000000261122222000000012219012 -T2202301111114252381219980512WT@PPW0W@2122222222221011210110342623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114252381219820527WT@0W09WW2222211222221011211190293123011300000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111425238120190113WTTZP@99@21222212204398100000000 -T12023011111142549524200412571120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114254951219930722WTT090BW02222212222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111142554422000403531120313110766300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111114255441219850704WT@9#BYBZ2222212222222012215210095123011800000000000000000000000000000000230001000000000000000000000000000000000000000000000000 -T320230111111425544120150921WT@#ZPBP022222122204301200000000120100412WT@T@0Y0@22222122204306200000000 -T12023011111142556622600405051120333120000300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111114255663219660304WTTZZBZZ@2222211222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000031460000 -T320230111111425566120180111WTTTPT#0Y22222112206398100000000120100401WT@Z9TP0P22222122206305100000000 -T12023011111142570422500410151120233110470300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114257043220000413WT@Z@#0PP1222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111425704120100902WTTZ@@#Z012222122207307100000000 -T12023011111142576422900405641120333110611113800000020005280210000000000000000000000000000000000222222000000002229022 -T2202301111114257642219840113WT@YYBT9P1222211222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111425764120170726WTTZZ9#0W12222112204398100000000120170726WTTW9#@W#12222112204398100000000 -T12023011111142582222000403351120413110939300000000001407710230000000000000000000000000000000000222222000000002229012 -T2202301111114258221219830913WTTPWT9PP2221222222223012212220144623010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111425822120110123WTTTP9@Y022212212204304100000000 -T320230111111425822120160427WT@WB000P22212212204398100000000120130127WTTTBYZ0B22212222204301100000000 -T12023011111142582625200410591120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111114258261219970921WT@BYY9YZ2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111425826120220907WT@@#YTTY22222112204398100000000 -T12023011111142596620600414831120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114259663219860327WT@0YY#ZP2222212222221012212110006011069940000000000000000000000000000000000000000000000000000000000000352600000000000000000000 -T320230111111425966120100112WTT#9W9W@22222112209306100000000 -T12023011111142609422000413691120332110776300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111114260943219860914WT@9BBPBW2222212222221012212120451513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111426094420100704WTTW9#0YZ12222112204305100000000120080102WTTZ0TZ0@22222112209307100000000 -T12023011111142609820600414771120533111116300000000000006540350000000000000000000000000000000000222222000000002229022 -T2202301111114260982219890423WTT@P0BPY2221222122214012212110441613109900000000000000000000000000000000000000000000000000000000000000000000000639023600000000 -T320230111111426098120100112WTTZ@ZZW922212222204305100000000120090112WT@BP0YB@22222122204306100000000 -T320230111111426098120110913WTTB#WTPY22212222204304100000000420110913WTTBW#Z9922212222104304109140000 -T12023011111142610520600401561120313110740300000000050006540030000000000000000000000000000000000222222000000002229012 -T2202301111114261051219780323WTTW9#PB02222212222223012213110045623011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111426105120090724WT@PZBW#B22222112204306100000352120050712WT@9T#9@P22222122204311100000000 -T12023011111142616422000401711120212110493300000000000002500310000000000000000000000000000000166122222000000012219012 -T2202301111114261641219760723WT@@@9YY92221221222221012212110322823010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111426164520170912WT@#BPPTT22212212104398108030000 -T12023011111142623125900403711120232110493300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111114262313219620126WT@ZBBTPY2222211212222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001926 -T320230111111426231120200123WTT9T@@WB22222112206398100000000 -T12023011111142623822000406191120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114262382219820904WT@W###@P1222212222211012210120770013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111426238120080507WT@0Y0Y0P12222122204307100000000 -T12023011111142635922000413731120323110727300000000000006540120000000000000000000000000000000177222221000000002229012 -T2202301111114263591219850322WT@@ZZ0Y#2222212222222011216110540623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114263591219940527WTTWZYZZ92222211222222021212190213923011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111426359120120921WT@@W@ZW#22222112204304100000000 -T12023011111142636224200409731120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111114263621219850108WT@PY#@TZ2222212222225012212210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111426362120080523WTT@TWPBP22222112204307200000000 -T12023011111142643724200413971120323110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114264371219860707WTTBZPZZ02222211222222011209290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114264371219970707WT@9TPY9W2222212222222021210290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111426437120210923WT@YPZZ0T22222112204398200000000 -T12023011111142663022000402371120412110947300000000031007710490000000000000000000000000000000000222222000000002229072 -T2202301111114266301219810426WTTWZY#@B2122222222221012212121220023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111426630120060924WTTW@B@PY21222222204309100000000 -T320230111111426630120150914WTT9T#Z9Z21222222204301100000000120140409WTT0PB##021222222204302100000000 -T12023011111142668623300410111120723111507300000000050004620120000000000000000000000000000000000222222005806452219012 -T2202301111114266861219940905WTT#P@PYT2222212222222011212110352523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114266861219950707WTTZB#@T@2222211212222021212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000644 -T320230111111426686120130711WTTZ0TYZY22222112204301100000000 -T320230111111426686120170709WT@@WPB9Z22222122204398100000000120160212WT@Y##WWT22222112204398100000000 -T320230111111426686120210912WT@Y#BY9#22222112204398100000000120200723WTTT@B9WB22222112207398100000000 -T12023011111142673324700408091120312110776300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111114267331219810912WTT0ZB9YY2222212222223012212111350023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111426733120140509WTT9#W@P#22222122204303100000000120100712WTT@YZPY922222122204306100000000 -T12023011111142683020600406751120233110611300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111114268303219810313WTTT@W0TT2222211222221012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002386 -T320230111111426830120120104WTTTZ09B022222112209303100000000 -T12023011111142687224200414851120212120000300000000000005280990000000000000000000000000000000000222222000000002229042 -T2202301111114268721219830227WTTY0PYY02221221222221012216110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111426872120050122WT@T0YWTZ12212212204311100000000 -T12023011111142688620600400871120333110223300000000000005280160000000000000000000000000000000000222222000000002229022 -T2202301111114268863219920311WT@TT#0YT2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111426886120210918WTT#Z#0@W21222222209398100000000120210926WTTPP0Z#022222112209398100000000 -T12023011111142695820800414151120233110313300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111114269583219760308WTTZ0ZP9B2222212222222012211110720013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111426958120180423WTTBWTYT@22222112206398100000000 -T12023011111142700824600411871120233120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111114270083219680511WTTPP#0TY2222212222222012215110006011069908000000000000000000000000000000000000000000000000000000000000050000000000000000000000 -T320230111111427008120150324WTT0@#@Z922222112209398100000000 -T12023011111142701420600407031110213110516300000000000001190010000000000000000000000000000000000222222000000002229012 -T2202301111114270141219930701WT@ZYBTT02222222222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427014120210922WT@0ZP@P912222112204398100000000 -T12023011111142729425000414191120333120000300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111114272943219680504WTTYPTWT@2222211222222012298910006013079900000000000000000000000000000000000000000000000000000000000000581000000000000000000000 -T320230111111427294120200724WTT@YWYBY22222122208398100000000420070404WT@T0@#B922222112205304100000000 -T12023011111142730120900411721120433110969300000000000006540510000000000000000000000000000000000222222000000002229022 -T2202301111114273015219730526WTTP99WBT2222212222222012216110085211069927000000000000000000000000000000000000000000000000000000000000165600000000000000000000 -T320230111111427301120080914WT@ZB99ZZ22222122209305100000000 -T320230111111427301120100723WTTWZW9P#22222112209303100000000120090913WT@#PW00T22222112209305100000000 -T12023011111142746824700401011120213110598300000000001505280140000000000000000000000000000000000222222000000002229012 -T2202301111114274681219870907WT@#PTWWZ2222212222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427468120210713WTT@Z9@Z922212112204398100000000 -T12023011111142749122000405841120313110759300000000000003440060000000000000000000000000000000000222222000001842219012 -T2202301111114274911219980507WTTTBZZZ#2221222222221012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000183 -T320230111111427491120220704WT@Y0P0WW22212222204398100000000420160207WT@PZTZ@#22222112104398109140481 -T12023011111142750724200402981120433111034101000000000005880220000000000000000000000000000000000222222006500012219022 -T2202301111114275072219860407WTTZWZ@0@2221222222211012216110660013089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111427507120060712WTTTWY09#22212212204309100000000 -T320230111111427507120210413WTT#Z#T0P22212222204398100000000120180321WTTBYP#0#22212222204398100000000 -T12023011111142753722900405641120533110704300000000041006540190000000000000000000000000000000000222222000000002229022 -T2202301111114275372219780708WT@YYBT9P1222222222222012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114275372219700727WTT@Z#@901222221222222022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427537120070114WT@9BZWBT12222212204307100000000 -T320230111111427537120190412WT@P00B@Y12222212204398100000000120120308WT@W9Z9##12222222204302100000000 -T12023011111142753824200403511120213110493300000000053104170110000000000000000000000000000000000222222000000002229012 -T2202301111114275381219740721WT@TBP@YB2222212222225012212120114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427538520090723WTT#Z00W012222112104307108220000 -T12023011111142755021400408021120512111116300000000018007380240000000000000000000000000000000000222222000001502219012 -T2202301111114275501219860409WT@#BYP9Y2222212222225012216110253521011810000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111427550120180102WTT9Y#WTY12222112204398100000050120140721WT@Y@YBBZ12222112204301100000000 -T320230111111427550120220407WT@0Y#@W912222122204398100000000120210108WTTB0WYT@12222112204398100000050 -T12023011111142767520600401641120312110805300000000052103310160000000000000000000000000000000000222222000003232219012 -T2202301111114276751219930126WTTBYPP@Z2222212222223012212110491121011810000000000000000000000000000000000000000000000000000000000000064400000000000000000000 -T320230111111427675120180227WT@B9B9TB22222112204398100000000120150114WT@T#PWB#22222122204398100000000 -T12023011111142774621400408021120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114277463220010722WTTBTP0002222212222221012212120006011069954000000000000000000000000000000000000000000000000000000000000305400000000000000000000 -T320230111111427746120220421WT@9TPY9W22222212207398100000000 -T12023011111142777424700408361120233110516300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111114277742219890318WTT@T@@B02122212222211012212120332713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111427774120120427WTTTPTWZP21212122204304100000000 -T12023011111142786523700414331120213110528300000000010005280180000000000000000000000000000000000222222000000002229072 -T2202301111114278651219700523WT@YZ#WWB1222222222225012212110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427865120050707WTTBZYB#912222122204311100000050 -T12023011111142790824700407521120233110516300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111114279083219630101WTT0@P@0W2222212122225012215110006013069900000000000000000000000000000000000000000000000000000000000000000000002438000000000000 -T320230111111427908120120721WT@Y9ZBBY22222212206303100000000 -T12023011111142794222000405841120412110969300000000000007710650000000000000000000000000000000000222222000000002229072 -T2202301111114279421219870113WT@PPPYZ@2221222222221012216110870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427942120060424WTTW0B#BY22212212204309100000000 -T320230111111427942120170901WT@0Z90T#12222112204398100000000120100112WTT###TWZ22222212204304100000000 -T12023011111142795924100412771120233110376300000000030004170030000000000000000000000000000000000222222000000002229022 -T2202301111114279592219720426WT@YYBT9P1222212222221012204910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427959120060412WT@WZWYZB12222112204308100000000 -T12023011111142796821400408021120933111490300000000000011650230000000000000000000000000000000000222222000000002229022 -T2202301111114279682219900905WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114279682219930105WT@YYBT9P1222221222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427968120060727WTTTPWB@B12222122204308100000000 -T320230111111427968120090311WTT0W0TP012222122204305100000000120070302WT@W00#Y012222112204307100000000 -T320230111111427968120160311WT@T00PB912222222204398100000000120140311WTTWWYPBZ12222222204398100000000 -T320230111111427968120210708WTTBB9YBB12222222204398100000000120190712WTT9T9ZZ#12222112204398100000000 -T12023011111142797220600404121120313110835300000000000006210350000000000000000000000000000000000222222003200012219012 -T2202301111114279721219840527WTTWPWW#Z2222212222223012213120560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111427972120210214WT@@WPWTZ12222222204398100000000120140423WTTZY0P@912222212204398100000000 -T12023011111142800425000413201110423110939300000000050002860410000000000000000000000000000000116222221000000762219012 -T2202301111114280041219880712WTT#0#YBP2222212222222011216110421823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114280041219860307WTTBZ@WBB1222221222222021212190332723011800000000000000000000000000000000000000000000000000000000000000055000000000000000000000 -T320230111111428004120170724WTT0TPY##22222212204398100000000120120413WT@YWT#TY12222122204304100000000 -T12023011111142801322000407411120233110516300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111114280132219730911WTTPZY9BT1222212222213012212110680013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111428013120070921WTT0T0YPW12212122204309100000000 -T12023011111142802424200414021110113110376300000000000003090010000000000000000000000000000000000222222000000002229012 -T2202301111114280241220040411WT@0P#BB#2221222222221013212190025823011500000000000000000000000000000000000000000000020000000000000000000000000000000000000000 -T12023011111142805322000406211120213110557300000000000005010420000000000000000000000000000000000222222002600012219072 -T2202301111114280531219800927WT@P0PTWY2222212222225012213110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428053120060908WTTY0BYB@22222112204309100000000 -T12023011111142823220800411601120233120000300000000000504170800000000000000000000000000000000000222222000000002229022 -T2202301111114282323219730927WT@9WTYYT2222212222222012212110075313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428232120050121WTTB9Z#9P22222122207312100000000 -T12023011111142825822000409871120213110611300000000000205250140000000000000000000000000000000000222222000000032219012 -T2202301111114282581219910713WT@P0ZTPZ2221222222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000002 -T320230111111428258120130113WTT9BB@0T22212222204302100000050 -T12023011111142829823500400891120213110598300000000010003960020000000000000000000000000000000132222122000000002229012 -T2202301111114282981219920113WTT#0Y9ZW2222212222221012212120570323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428298120220321WTT@BPTTB22222112204398100000000 -T12023011111142835624200409731120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114283562219830427WT@ZTY09Y2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111428356120140427WT@9BBYWW22222112204301100000050 -T12023011111142836222000405841120312110704300000000005806540800000000000000000000000000000000000222222000000002229072 -T2202301111114283621219820409WT@T#Z#9P2221222222221012216110810021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428362120090412WT@BZ@#@T22212212204307100000000120050122WT@@P@TZY22212212204310100000244 -T12023011111142836720200409311120212110611300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111114283671219960708WT@0@Z#YW2222212222221012210110273323011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111428367120180326WTTY@WBZT22222122204398100000000 -T12023011111142839722000400591120413110975131220000000407710450000000000000000000000000000000000222222000000002229012 -T2202301111114283971219870218WTTWPT@B02222212222221012212110372323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428397120140224WTTYT0ZPP22222112204301100000023 -T320230111111428397120220411WTTYZZWB922222122204398100000000120170712WT@@WW#WB22222112204398100000023 -T12023011111142841424700409381120623111199300000000000009580160000000000000000000000000000000000222222000000002229012 -T2202301111114284141219860913WTTWB#P@W2212222222225011216110471323011800000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T2202301111114284141219860101WT@WBPZTB2221211222221011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428414120110127WTTW9YTY#22212222204305100000000120090107WT@B0@Y0022212212204306100000000 -T320230111111428414120200421WTTBYWPPP22212122204398100000000120160926WT@YZWY#B22212112204398100000000 -T12023011111142857020600414161120322110835300000000100006540040000000000000000000000000000000000222222000000002229012 -T2202301111114285701219940412WTT9Y9TZY2222211222222011213290055521011941000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114285701219940212WT@W0WW9P2222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428570120190404WT@Y@PYBY22222122204398200000000 -T12023011111142857622000408891110212110516300000000000003860010000000000035007000000000000000000222222000001832219072 -T2202301111114285761219830412WT@TW@Y0T2221222222225012208120900021011802000000000000000000000000000000000000000000000000000000070000000000000000000000000067 -T320230111111428576120060123WT@Z0YYZW22212212204309100000000 -T12023011111142860420800411931120233110470300000000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111114286043219720105WT@YT0P@Y2222212222221012213110006011069945000000000000000000000000000000000000000000000000000000000000277100000000000000000000 -T320230111111428604120100209WTTB#BPPT12222112207306100000000 -T12023011111142869924200408571120523111199300000000000008880250000000000000000000000000000000000222222000000002229012 -T2202301111114286991219920104WT@0BWT@T2221222222221011212110431723011800000000000000000000000000000000000000000000000000000000000000274400000000000000000000 -T2202301111114286991219880708WTTY0T@T02221221222221011213190263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428699120110226WT@0P0PPB22212222204305100000000 -T320230111111428699120150921WT@@BB#ZT22212222204301100000000120120304WT@0BYTYP12222122204303100000000 -T12023011111142872624200403511120533120000300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111114287263219820501WTTTZZTYY2222122222222012212110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428726120180507WT@TTPZB922222112209301100000000120140312WTTTPYW9022222112209398100000000 -T320230111111428726420070309WT@ZP9B@W12222122205307100000850420050101WTT9@P#0P22221212204309100000000 -T12023011111142890722700413181120613120000300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111114289072219790926WTT9TWPZZ2222212222222012216110204013051400000000000000000000000000000000000000000000000000000000000000158400000000000000000000 -T320230111111428907420050323WTTB@P#BY22222112204310100000000 -T320230111111428907120190301WTT90@T@022222112204398100000000420130207WT@PPPTTY22222122204303100000000 -T320230111111428907420110307WTTTTYBPW22222122204304100000000420090326WT@0##9W#22222122204306100000000 -T12023011111142897322000411551120213110364300000000000003160350000000000000000000000000000000211122222000000012219012 -T2202301111114289731219760527WTT#T0#0P2222212222221012209110491123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111428973120070722WTTY#Z9TB12222222204309100000000 -T12023011111142899624900404261120233120000300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111114289963219640223WT@TYP0T#2222212222222012210110006013069900000000000000000000000000000000000000000000000000000000000000121900000000000000000000 -T320230111111428996120050723WTTY9B99Z22222112206310100000000 -T12023011111142904225200407301120212110611300000000071005280330000000000000000000000000000000000222222000000002229012 -T2202301111114290421219720713WT@YPB0#Y2222212222225012212120342621011900070000000000000000000000290003000000000000000000000000000000052000000000000000000359 -T320230111111429042120050913WTTT0W@9022222122204310100000000 -T12023011111142905520600412681120433110939300000000030006540800000000000000000000000000000000000222222000000002229022 -T2202301111114290555219590511WT@PBP#9B2222212122224012212110006013109900000000000000000000000000000000000000000000000000000000000000000000001616000000000000 -T320230111111429055120060927WT@#ZYP@W22222122209310100000000 -T320230111111429055120080326WT@ZP@0Z022222112209307100000000120070718WT@#P9#0022222112209309100000000 -T12023011111142910621000403201120332110740300000000000001290100000000000000000000000000000000000222222000002882219022 -T2202301111114291062219740223WT@P#@YTY2222211122214012211110006013109900000000000000000000000000000000000000000000000000000000000000000000000778015600000000 -T320230111111429106120140322WTT@9@@B#21222212204301100000288420080701WTTY#BBWB21222212105307103570288 -T12023011111142915022000401711120412110893300000000000207710200000000000000000000000000000000000222222000000002229072 -T2202301111114291501219850704WTT09TZWW2221222222224012212120870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429150120110927WT@P@@9@Z22212212204305100000000 -T320230111111429150120180321WTTTY@P9Y22212212204398100000000120170708WT@B@0#9B22212222204398100000000 -T12023011111142919325600414551120212110610300000000000005010440000000000000000000000000000000000222222002600012219012 -T2202301111114291931219880307WTTB@9TB92222212222221012213110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429193120180527WTTP0#P@922222122204398100000000 -T12023011111142922223800413801120213110598300000000005605280040000000000000000000000000000000000222222000000002229012 -T2202301111114292221219960721WTTWPWTYP2222212222225012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429222120180323WT@PP#Z9912222122204398100000000 -T12023011111142935222000406192120423210939300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111114293521219860126WTT#0B90P2222212222222011211290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114293521219860501WTTTZB@P@2222211222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429352120160713WTTPW##0P22222112204398200000000120130104WTTZ09#WB22222122204303200000000 -T12023011111142942220500413621120413110939300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111114294222219880914WT@0P#P@Y2222212222212012212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111114294221219870702WT@Y9@Y@@2222211222222022212191070023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111429422120160923WT@@0TP#B22222112204301100000000420140502WT@#P0#BY22222112104302109140000 -T12023011111142947122500406901120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111114294711219730427WTT#@W9WW2222212222225012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429471120060118WTT#0W#Y@22222112204309100000000 -T12023011111142961324700404541120623111384300000000000010090050000000000070001000000000000000000222222000000002229012 -T2202301111114296131219870408WT@BB9P9Z2222212222222011212290065421011808000000000000000000000000000000000000000000000000000000000000106700000000000000000000 -T2202301111114296131219780727WT@WWWP#Y2222211222222021205290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429613120130701WT@T9Z@ZZ22222112204303200000000120060713WT@PZ@9B022222122204307200000000 -T320230111111429613120180723WTT09T9YY22222112204398200000000120170223WT@0WZBPP22222122204398200000000 -T12023011111142965625900410241120432110769121180000000006540300000000000000000000000000000000000222222000000002229022 -T2202301111114296562219980922WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429656120160305WTTB0TB@W12222122204398100000000 -T320230111111429656120210922WTTZZY@WT12222122204398100000000120200912WT@#9#PPY12222222204398100000000 -T12023011111142981320800409831120213110611300000000000003160250000000000000000000000000000000211122222000000012219012 -T2202301111114298131219940504WTTW0Y@PZ2222212222221012212110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429813120170205WT@P@#9ZY22222122204398100000000 -T12023011111142984322000413691120313110835300000000000006540390000000000000000000000000000000000222222000000002229072 -T2202301111114298431219870921WT@TW@ZT02221222222221012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429843120200523WT@WZZ9W922212222204398100000000120130923WTTW@@ZW#22212212204303100000000 -T12023011111142988925000405572120323210835300000000000002360020000000000000000000000000000000000222222000000002229032 -T2202301111114298891219900713WTTT@9@902222212222222011212190006021011912000000000000000000000000280000000000000000000000000000000000083400000000000000000000 -T2202301111114298891219880926WT@ZYP0BW2222221222222021213190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429889120220209WTT#@WZ#@22222122204398100000000 -T12023011111142991423500402711120323110704300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111114299141219830905WT@9#@0#Y2222212222222011212210065421011938000000000000000000000000000000000000000000000000000000180000295000000000000000000000 -T2202301111114299141219740718WTTPBWP0@2222211222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111429914120080427WT@YZ9Z@P22222122204308200000000 -T12023011111142993720600414251120313110835300000000015503420020000000000000000000000000000000000222222000000002229012 -T2202301111114299371219960524WTT9T0PP@2222212222221012212110025821011819000000000000000000000000000000000000000000000000000000000000014800000000000000000000 -T320230111111429937120170527WTTTW0@@B12222122204398100000248120130212WT@P#PPB#22222122204304100000263 -T12023011111143000422000407411120412120000300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111114300042219750923WTTP@#T@#2222221222212012204190095113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111114300041219760423WTT9@TZBZ2222222222222022205191120023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111430004120090104WT@TZ#T@B22222212204306100000000120050705WT@Z@WPTP22222222204310100000000 -T12023011111143004022000407241120113110376300000000100004170050000000000000000000000000000000000222222000000002229012 -T2202301111114300401220010104WTTBYW@0W2221212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111143015620600414871120212110611300000000000105280300000000000000000000000000000000000222222000000002229012 -T2202301111114301561219920513WT@9YBP9#2222212222225012214120312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111430156120210522WTT@9TBB#22222122204398100000000 -T12023011111143031022000409971120312110769300000000000004930190000000000000000000000000000000000222222000001612219072 -T2202301111114303101219800109WT@0W@PWZ2221222222221012212111270023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111430310120130426WT@9B9P#022222222204303100000050120070408WTTB@@T@Y22212211204309100000160 -T12023011111143032125000414191110213110516300000000014702380230000000000000000000000000000000000222222000000002229012 -T2202301111114303211219870308WT@#Y#WYW1222212222221012209110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111430321120080912WT@P0@@YW12222222204308100000000 -T12023011111143034522000410052120113210396300000000000004170030000000000000000000000000000000000222222000000002229032 -T2202301111114303451220030314WT@YZWBYT2222122222221013212990035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111143039622000407241120213110611117680000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111114303961219910201WT@Y9#9@W2222212222225012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111430396120200405WTTY99PZ#12222122204398100000000 -T12023011111143040322000402321120212110611300000000000005280490000000000000000000000000000000000222222000000002229012 -T2202301111114304031219970407WT@ZTBT#P1221222222221012212110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111430403120150412WT@WWP9#P12212212204302100000000 -T12023011111143055420600401642110523211116300000000000004010010000000000000000000000000000000000222222000000002229032 -T2202301111114305541219910721WT@P#09Y#2222211222222011298990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114305541219870524WTTZ0W@902222212222222021298990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111430554120110307WT@@@0B0P22222122209304900000000 -T320230111111430554120200907WTTZBP#Z@22222122204398900000000120180122WTT9Z0T#B22222112204398900000000 -T12023011111143063525200407301120312110516300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114306351219800707WTT#9PZPW2222211222221012210190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114306352219870312WTTW#WZYY2222212122211102212190144613109900000000000000000000000000000000000000000000000000000000000000000000000920001400000000 -T320230111111430635120190113WTT@Z#BBY22222112204398100000000 -T12023011111143064725800413571120233120000300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111114306473219640405WT@0ZWP0Y2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000480600000000000000000000 -T320230111111430647120140304WTTP9Y#0Z22222112206301100000000 -T12023011111143082122700406181120332110740300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111114308212219680104WTT9P@ZTB2222222222212012202190960013089900000000000000000000000000000000000000000000000000000000000000000000000000050100000000 -T2202301111114308212219680923WT@@0PW@W2222221122212022206191150013109900000000000000000000000000000000000000000000000000000000000000000000000389050100000000 -T320230111111430821120040923WT@0WW0Z922222212204312100000000 -T12023011111143084925900414481120333120000101740000000005280140000000000000000000000000000000000222222000000002229022 -T2202301111114308493219730402WTT9#@ZTZ1222212222221012214110006011069944000000000000000000000000000000000000000000000000000000000000929900000000000000000000 -T320230111111430849120110923WTT@@0#WB12222112207305100000000120060107WT@T0WBP912222122207310100000000 -T12023011111143089125600413441120333110611300000000000003310320000000000000000000000000000000000222222000001972219022 -T2202301111114308912219840714WT@YYBT9P1222222222221012203910006011079921000000000000000000000000000000000000000000000000000000000000129000000000000000000000 -T320230111111430891120150501WT@YTY@BZ12222122204302100000000120090912WT@WZ##YY12222112204305100000000 -T12023011111143093924100402401120723111480300000000000011650030000000000000000000000000000000000222222000000002229012 -T2202301111114309391219750308WTTY@TWB@2222222222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114309391219720911WTTWB#PP@2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111430939120050105WT@PBTWWP22222222204310200000000 -T320230111111430939120100421WTT0W0WYT22222212204307200000000120080711WT@BYWWYZ22222212204309200000000 -T320230111111430939120140918WT@##BBTB22222222204302200000000120110713WTT0ZTYZY22222212204305200000000 -T12023011111143103420600414251120313110835300000000025005280290000000000000000000000000000000000222222000000002229072 -T2202301111114310341219840511WTTWWY9WP2122222222221012212110930023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111431034420100312WT@@#PBT021222212104304109140000120090901WTT90YP#021222122204305100000000 -T12023011111143104923500404531120232110516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114310492219700702WT@09W0992222211222215012212110382213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111431049120070321WTT0@99#B22222122204308100000000 -T12023011111143109820800411601120233110516300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111114310981219930709WTTY@9@0W1222212222221012212110550523099900000000000000000000000000000000000000000000000000000000000000000000000000000000002651 -T320230111111431098520150914WT@Y9WW#B12222112104398108220000 -T12023011111143112320600402131120212110611300000000000003160440000000000000000000000000000000211122222000000012219012 -T2202301111114311231220000123WT@WZ0TW02222212222221012212110312923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431123120190724WT@W9WT@922222112204398100000000 -T12023011111143114124200404891120212110576300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111114311411219750227WTTZBPPY02221222222225012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431141120060105WT@BW0TW922212222204309100000050 -T12023011111143117724900404261110212110516300000000000001700070000000000000000000000000000000000222222000000002229012 -T2202301111114311771219930408WTTPZZZTB2222212222221012212120322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431177120190411WTTZB0PWY12222122204398100000000 -T12023011111143132024700409381120232110493300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114313203219760726WTTZZ9BZP2222212122221012213110690013069900000000000000000000000000000000000000000000000000000000000000000000001006000000000000 -T320230111111431320120200909WT@Y@BZWB11222212206398100000000 -T12023011111143145224200404422120233210391300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111114314523219840509WTTTZ#YYB2222122222222012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431452120040526WT@P#9ZYW22221222207312900000000 -T12023011111143151324200409091120312110835300000000000006540080000000000035006000000000000000000222222000000002229012 -T2202301111114315131219830101WT@#WTT#02222212222225012216120451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431513120150323WTT#Y@00#22212222204301100000000120070507WTT9BPWPB22222112204310100000000 -T12023011111143154324200409731120213110493300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114315431219910314WT@BPW9WZ2222211222221012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431543120050123WTT0B@B0Y22222112207312200000000 -T12023011111143154525200400391120213110598300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111114315451219950123WT@09B9Y@2122222222221012211120253523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111431545120180404WT@@YB9Z@12222112204398100000000 -T12023011111143160620600401641120413110939300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111114316061219810123WT@9TPY9W2222212222223012212210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431606120090312WTTWZBWW@22222112204303200000000 -T320230111111431606120190905WT@9@BTY922222112204398200000000120150501WTT@09PPT22222112204302200000000 -T12023011111143163820200409311120212110611300000000000005280610000000000000000000000000000000000122222000000002229072 -T2202301111114316381219870112WT@#BZ9#P2222212222221012210110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431638120140223WT@ZY#Y@#22222112204301100000000 -T12023011111143166922000410051120423110959300000000000007710120000000000000000000000000000000000222222000000002229012 -T2202301111114316691219820308WTTB0WYYZ2222212222221011212190213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114316691219820218WT@BYB0#@2222211222221011208190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111431669120120927WTT0#ZBWB22222112204304100000000120070901WT@ZB0@YP22222112204307100000000 -T12023011111143171020600404491120313110835126550000053306540130000000000000000000000000000000000222222000000002229012 -T2202301111114317101219980122WTTTBB9@@2222212222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000001632 -T320230111111431710120220426WTTTZ9TPT12222122204398100000100120190311WTT@P0YBT22222122204398100000000 -T12023011111143181920600400801120233120000300000000000004170900000000000000000000000000000000000222222000000002229022 -T2202301111114318193219650318WTT9PZPZT2222212222222012216110025813069900000000000000000000000000000000000000000000000000000000000000345900000000000000000000 -T320230111111431819120060913WTT@BBY#@22122212206309100000000 -T12023011111143183325100407671120433111034300000000000006540050000000000000000000000000000000000222222000000002229022 -T2202301111114318332219890713WT@Y#WP@#2122222222211012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000071400000000 -T320230111111431833120110112WTTPWWYWB11222212204306100000000 -T320230111111431833120150412WT@YTYWZW22222222204302100000000120130709WT@B#ZYYZ11222222204303100000000 -T12023011111143201420800411991120233120000300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111114320143219600923WTTZP#@@B2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000401700000000000000000000 -T320230111111432014120140411WT@TBY#YB22222112206301100000000 -T12023011111143217224200408571120233110306300000000000004170950000000000000000000000000000000000222222000000002229022 -T2202301111114321722219660201WT@YYBT9P2222222222223012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432172120050408WTT@#TTW012222212204310100000000 -T12023011111143224625900402631110613111339300000000000000140050000000000000000000000000000000000222222000000002229012 -T2202301111114322461219890726WTT0#0ZZ01222222222221012209120065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432246120050108WT@WPYY0912222122204310100000159 -T320230111111432246120120707WT@B@#YPZ12222112204302100000000120120707WT@#@#9T@12222122204302100000000 -T320230111111432246120220101WTTBB9@BZ12222122204398100000000120160121WTT#@TW@Y12222122204398100000414 -T12023011111143228425200407301120212110557300000000000005280630000000000000000000000000000000000222222000000002229072 -T2202301111114322841219800502WT@B9Z@0P2222212222223012212110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432284120100918WT@00YPYY22222112204305100000000 -T12023011111143228820600401561120313110740123650000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111114322881219990304WT@P@PYZB1222222222221012216110075323011800000000000000000000000000000000080001000000000000000000000000000000000000000000000000 -T320230111111432288120200322WT@TBP@@B12222112204398100000000120170723WT@Z9WZZ912222122204398100000000 -T12023011111143232722000409971120413110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111114323272219870104WT@YYBT9P1222222222221012212210025813050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114323272219990108WT@YYBT9P1222221222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432327120220108WT@9TPY9W12222212204398100000000120200318WT@9TPY9W12222222204398200000000 -T12023011111143242225900403551120412110893300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111114324221219780727WTTZBY@#T1222222222223012212111910023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432422120040707WT@#W90T912222222204310100000000 -T320230111111432422120090108WT@9W0TWY12222222204305100000000120070421WTTZ#9PB912222222204308100000000 -T12023011111143252522000407961120323110776300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111114325251219760109WTTZ90BZ@2222211222222011214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114325251219770926WT@ZP@P9T2222222222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432525120120924WTTWBY0@P22222212204305200000000 -T12023011111143252922000404841120213110598118330000200005280290000000000000000000000000000000000222222000000002229012 -T2202301111114325291219940301WTTZBW@T92222212222221012216110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432529120200218WTT000Z0B22222112204398100000000 -T12023011111143261423500410671120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111114326141219810313WTTZ0TZW#2222212222225012209210065423011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111111432614120080302WT@090W@922222112204307200000000 -T12023011111143261523500411471120512111028129430000000008880170000000000000000000000000000000000222222000000002229072 -T2202301111114326151219870304WT@0ZB@T92222212222225012216110720023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432615120180908WT@##@P0Z12222112204398100000000120170204WTTW0B#@Z22222112204398100000000 -T320230111111432615120220702WTTT#BYT912222112204398100000000120180908WTT@Z0@T@12222112204398100000000 -T12023011111143270024200404891120512111199300000000000008880290000000000000000000000000000000000222222000000002229012 -T2202301111114327001219960307WT@@#@#WW1222212222221012211120332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432700120160721WT@TP9P9@12222212204398100000000120150101WT@WBYBY#22222112204301100000000 -T320230111111432700120220401WTT0Y0T#@22222222204398100000000120210412WT@Z0#B@Y12212222204398100000000 -T12023011111143271720600414871120313110835122940000080002320060000000000000000000000000000000000222222000004222219012 -T2202301111114327171219790518WT@9WBYBT2222211222221012216110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432717120200914WTTTWBP#T22222122204398100000211120180701WT@9WYPT#22222122204398100000211 -T12023011111143275222000408891120233110560104960000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114327523219590414WT@@99B9T1221222222223012212110006011069911000000000000000000000000000000000000000000000000000000000000085100000000000000000000 -T320230111111432752120150705WTTZZP#0022212222206301100000000 -T12023011111143279024700401281120612111339300000000000003550330000000000000000000000000000000236122222000004182219072 -T2202301111114327901219840126WTTPZBP902222212222221012212110830023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432790120060123WTTPW@9Z922222122204310100000139 -T320230111111432790120100426WTTB@P#P@22222122104307107950139120080127WT@T#BT##22222112104309107950139 -T320230111111432790120190427WTT9YZ#Z@22222122204398100000000120140923WTTBT#PZB22222122204303100000100 -T12023011111143284324200403511120313110835300000000000106540030000000000000000000000000000000000222222000000002229012 -T2202301111114328431219940707WTTYPP9@Y2221222222225012212110045621011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432843120220312WT@P@Z@#W22212212204398100000000120140213WTT@WTWP@22212212204302100000000 -T12023011111143284724700406702120423210939300000000008307710140000000000000000000000000000000000222222000000002229032 -T2202301111114328471219930914WTTT@ZZYZ2222211222222011212990124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114328471219990927WTTY9T#@T2222212222222021212290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432847120210527WT@ZT9#TW22222122204398200000000120190101WT@P#TPTT22222112204398200000000 -T12023011111143285122600405051110333110418300000000000002040010000000000000000000000000000000000222222000000002229021 -T2202301111114328513219800907WTTZ9PWTP2222122122224012214110006011069940000000000000000000000000000000000000000000000000000000000000420000001013000000000000 -T320230111111432851120120412WTT#@0WY@22122122209305100000000120100114WT@BYZY#T22122122209306100000000 -T12023011111143291725900402721120313110704300000000046106540070000000000000000000000000000000000222222000000002229072 -T2202301111114329171219840208WT@@P0#W#1222212222223012212110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111432917120140314WTTP#Z0YT22222112204310100000000120060712WTT09YB0W22222112204309100000000 -T12023011111143304324200407311120313110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111114330431220030127WT@#PWTWZ2222211222222012213210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433043120080118WT@0#0BZB22222112207309200000000120060304WTTP#ZPTY22222112207309200000000 -T12023011111143307520600400801120213110611300000000000004150070000000000000000000000000000000000222222000001132219012 -T2202301111114330751219990221WT@WBB#B#2222212222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000112 -T320230111111433075120200721WT@TPZYBP22222112204398100000050 -T12023011111143314223500402711120323110766300000000003006540100000000000000000000000000000000000222222000000002229012 -T2202301111114331421219770304WTTWTZZPW2222212222222011212290105021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114331421219660218WTT9#0@YY2222211222222021212290105021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433142120060424WT@9TPY9W22222122204310200000000 -T12023011111143317820300408321120313110835300000000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111114331781219870527WT@WPZZ#Y2222211222221012211110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433178120070702WT@Y@#W0922222122204309100000000120070702WT@TBZPPB22222122204309100000000 -T12023011111143324225900402721120413110959300000000000007710020000000000035002000000000000000000222222000000002229012 -T2202301111114332421219820923WT@BZZBT#1222212222221012209210223823011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111433242120060502WTTZZTW9Y12222112204311100000000 -T320230111111433242120200314WT@0Y#9TW12222122204398100000000120100911WTTBBBP#P12222112204306100000000 -T12023011111143324924200414851120233110524300000000050004170640000000000000000000000000000000000222222000000002229022 -T2202301111114332493219790404WTTBW0#YY2222212222221012213110006011069910000000000000000000000000000000000000000000000000000000000000085800000000000000000000 -T320230111111433249120050307WT@@T0@BZ22222122209310100000000 -T12023011111143328620600414871120313110835107300000000006540080000000000000000000000000000000000222222000000002229072 -T2202301111114332861219930123WT@9TYZPW2222212222221012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433286120180714WT@#BWWZZ22222122204398100000000120140304WT@0Y090Y22222122204302100000000 -T12023011111143339122900405641120212110631300000000000005280590000000000000000000000000000000000222222000000002229072 -T2202301111114333911219790412WT@9T0B@W2222212222221012212110840023011800000000000000000002000000000000000000000000000000000000030000000000000000000000000000 -T320230111111433391120110304WT@00BB0P22222112204303100000000 -T12023011111143340823500411471120233120000300000000000004170770000000000000000000000000000000000222222000000002229022 -T2202301111114334082219770407WTTYT@Y0W2222212222215012216120352513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111433408120130501WT@@PZP9@22222112204301100000000 -T12023011111143341620600402141120213110611300000000340005280040000000000000000000000000000000000222222000000002229012 -T2202301111114334161220010513WT@YYP0PY2222212222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433416120180423WTT0Y#T#Z22222122204398100000000 -T12023011111143345224200409091120332110727300000000000005280530000000000000000000000000000000000222222000000002229022 -T2202301111114334523219810727WTTPP0YYY2221222222225012212110850013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000016 -T320230111111433452120080301WT@@TPPZY22212222207307100000000120060527WT@T9WYYY22212222207310100000000 -T12023011111143355620800414651120213110598110270000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111114335561219900105WT@00B99@1122222222223012216110065423011700000000000000000000000000290000000000000000000000000000000000000000000000000000000000 -T320230111111433556120190312WT@0ZTPWB11222212204398100000000 -T12023011111143365322000405841120723111480300000000000011650060000000000000000000000000000000000222222000000002229012 -T2202301111114336531219750223WTTBPPBZW2222221222221011212290075323011800000000000000000004000000000000000000000000000000000000410000000000000000000000000000 -T2202301111114336531219830109WT@PBP9P#2222222222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433653120050907WTTY#BYBW22222222204310200000000 -T320230111111433653120100509WTTZPYB@Z22222222204307200000000120070312WTTP#PZ#P22222222204312200000000 -T320230111111433653120150926WT@ZYWP0T22222212204303200000000120120701WTT0B9@0W22222212204304200000000 -T12023011111143367222000413731120313110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111114336721219800718WT@9900BY2222121222224012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433672120170904WTTPYY@BZ22221212204398100000000120100321WTTP#@Y9W22221212204304100000000 -T12023011111143368622000407961120312110835300000000028006540900000000000000000000000000000000000222222000000002229072 -T2202301111114336861219840926WT@T9#PB02222212222221012214110910023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433686120170423WTTPBPB@022212122204398100000000120130121WT@@B#0T022212112204301100000000 -T12023011111143373920800411931120332110740300000000000005280380000000000000000000000000000000000222222000000002229022 -T2202301111114337392219750323WT@B0#@@Z2221222222213012206111130013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000006 -T320230111111433739120060721WT@9T0B@022212212204310100000000120040223WT@ZZZT#@22212212204311100000000 -T12023011111143376025000409641120413111032300000000000007710120000000000000000000000000000000000222222000000002229072 -T2202301111114337601219860911WT@PZB#BP2222212222221012216110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433760120060113WTT9Y#9@T22222112204308100000000 -T320230111111433760120170427WTTZPT0TP22222122204398100000000120090505WT@B0@0#Y12222122204306100000000 -T12023011111143391325900406842120133210247300000000000002860080000000000000000000000000000000000222222000001312219022 -T2202301111114339135219660723WT@YWYWPP2122222222221013212110114913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000269 -T12023011111143398524200409091120213110611300000000000005280030000000000000000000000000000000000222222000000002229072 -T2202301111114339851219780312WTTWWZ##T2222211222225012212110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111433985120060902WTT0@P0#T22222112204310100000000 -T12023011111143406120600401981120312110740300000000000405800680000000000000000000000000000000000222222000000742219072 -T2202301111114340611219870723WTTP9Y00B1222222222222012213111110021011805000000000000000000000000000000000000000000000000000000000000029300000000000000000000 -T320230111111434061120110712WTT9Y0T0Y22222112204304100000100120070426WTT@ZZ9@W22222212204309100000000 -T12023011111143427121700406141120313110766300000000000006540170000000000000000000000000000000000222222000000002229072 -T2202301111114342711219860327WT@TYB9P02222212222221012212110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111434271120150921WTTB9Z@@P22222112204302100000000120100526WT@9@B0BB22222122204307100000000 -T12023011111143455923900403801120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114345593219750427WT@Y0PTP@2222212222225012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000023720000 -T320230111111434559120120707WTT9WZ#WZ22222122207302100000000 -T12023011111143471224500410691120113110376300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111114347121219910412WTTWP@TWP2222212222221013212190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111143472325600412851120213120000300000000000003160140000000000000000000000000000000211122222000000012219012 -T2202301111114347231219900423WTTP#W0092222211222221012216110283223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111434723120100112WTTB9@0Z#22222112204305100000000 -T12023011111143473824200404052120423210939300000000000007710110000000000000000000000000000000000222222000000002229032 -T2202301111114347381219910127WT@9TPY9W2222122222222011201290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114347381219860513WT@9TPY9W2222121222222021201290124823011800000012000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111434738120160901WT@9TPY9W22221222204398200000000120140927WT@9TPY9W22221222204302200000000 -T12023011111143474821100402261120233120000300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111114347483219730422WTTY@WB0@2222212222222012212110124811069941000000000000000000000000000000000000000000000000000000000000311600000000000000000000 -T320230111111434748120050727WT@B@ZPT012222122209311100000050 -T12023011111143481822000405841120513111116300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111114348181219780423WTTBPY0992221222222225012205210154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111434818120110305WT@90YBTZ22212212204304200000000120090721WT@T9#09B22212222204306200000000 -T320230111111434818120160918WTT#Z@YZ022212212204398200000000120140112WTT@YPZTB22212222204302200000000 -T12023011111143484123700414791120633110611300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111114348412219780726WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114348412219720227WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111434841120170908WTTYYW9ZW12222212204398100000000120150923WTTZ0##PT12222212204398100000000 -T320230111111434841420130927WT@YYBT9P12222212204303900000000420120918WT@YYBT9P12222222204302900000000 -T12023011111143484325600414551120213110611300000000019505280240000000000000000000000000000000000222222000000002229012 -T2202301111114348431219810913WTTW@09PB2222212222225012213110253523011400000000000000000000000000000000000000000000000000000000420000000000000000000000000000 -T320230111111434843120080407WTTW#@W#Z22222122204309100000000 -T12023011111143490322700401571110513111116300000000000000360010000000000000000000000000000000000222222000000002229012 -T2202301111114349031219840504WTT9W0P@#2222212222222012212110025821011809000000000000000000000000000000000000000000000000000000000000063000000000000000000000 -T320230111111434903120090311WTT9BBZ9P22222122204306100000000120070909WT@W@#W0#22222112204308100000000 -T320230111111434903120180404WT@9##WZ022222112204398100000000120170118WT@WYYZPP22222122204398100000000 -T12023011111143507625600414551120313111211300000000000006540240000000000000000000000000000000000222222000000002229072 -T2202301111114350761219860127WT@9WBPW@2222212222225012212110840023010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111435076120200521WT@WW09#Z22222112204398100000008120060427WT@@T900#22222112204308100000000 -T12023011111143511123900408291120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114351113219630914WT@#9T@9B2122222122225012213110223813069900000000000000000000000000000000000000000000000000000000000000000000001572000000000000 -T320230111111435111120210927WTT#TBWYT21222212206398100000000120140121WTT9WZT9Y21222222206301100000000 -T12023011111143513322000405841120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114351333219770305WT@@ZYPPP2122222222221012212110352513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111435133120100704WT@Z0B##Z12212212207305100000000 -T12023011111143517024200414851120233110376300000000000001150260000000000000000000000000000000000222222000003022219022 -T2202301111114351702219780127WT@YYBT9P1222212222221012209910431711079913000000000000000000000000000000000000000000000000000000000000082500000000000000000000 -T320230111111435170120090101WT@WPTBP012222122204307100000000 -T12023011111143523625000414191120233120000300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111114352363219490512WT@Z@W#PP2222212122225012214110006013069900000000000000000000000000000000000000000000000000000000000000030000002567000000000501 -T320230111111435236120050402WT@Y9T#@P22222122206311100000000 -T12023011111143540722000411981120212110516300000000004004170480000000000000000000000000000000000222222000000002229012 -T2202301111114354071219840518WT@PWP#ZT2221222222225012212110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111435407520170412WTT9@#P0Z22212212104398108030000 -T12023011111143546020400400211110213110611300000000000003230010000000000000000000000000000000000222222000000002229012 -T2202301111114354601219720912WTTYTBTTT2222211222225012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111435460120080707WTTYP09@922222112204307100000000 -T12023011111143550424200408391110313110835300000000999905690120000000000000000000000000000000000222222000000002229012 -T2202301111114355041219880104WTTYTYW@@2212112222223012216110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111435504120140308WT@0@TYTP22121122204301100000000120110412WT@ZWPTY922121112204304100000000 -T12023011111143559020600400801120213110598300000000050005280170000000000000000000000000000000000222222000000002229012 -T2202301111114355901219770301WT@ZTW@TZ1222211222221012213110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111435590120050107WT@PTP9BZ12222112204311100000000 -T12023011111143564323500405271120233110611300000000020805280390000000000000000000000000000000000222222000000002229072 -T2202301111114356431219830126WTT9WY0TZ2221221122225012212110920023109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111111435643120120902WT@9@99PY22212212204304100000000 -T12023011111143571224200414851120212110557300000000000005280070000000000000000000000000000000000222222000000002229072 -T2202301111114357121219660712WT@YWPWT#2221222222221012212110650023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111435712120050712WT@0#W9Y021222222204311100000000 -T12023011111143571425600411521120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111114357141220020307WTT9@TWPB2222212222221013211190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111143579225900402831120533111034300000000000107710340000000000000000000000000000000000222222000000002229022 -T2202301111114357922219830523WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111435792120120326WT@Y#9#@W12222112204303100000000120080527WT@YPZWP012222212204309100000000 -T320230111111435792120160113WTTPWB0PP12222122204398100000000120140921WT@#TY#Z#12222112204301100000000 -T12023011111143581624200407431120232110516300000000000003960150000000000000000000000000000000000222222002000012219022 -T2202301111114358162219870326WTTBBTZTW2221221222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111435816120070718WT@TTTB0T22212212204308100000000 -T12023011111143594121700406141120413111034300000000000005490120000000000000000000000000000000000222222000002222219012 -T2202301111114359411219880518WT@0TBW#Y2222212222221012212110372321011937000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111435941120080707WTTTYZWBZ22222122204308100000074 -T320230111111435941120130222WT@PB##T022222122204304100000074120110721WTT9@PZB#22222122204305100000074 -T12023011111143595725900402831120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111114359571219980924WTT0ZZ@W#2222212222225013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111143607425900406081120233110493300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111114360743219660212WTT0P9ZZY2122222222222012216110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000468 -T320230111111436074120160309WT@@@#Z9W11222222206301100000000 -T12023011111143612725900402631120613111339300000000000010090290000000000000000000000000000000000222222000000002229072 -T2202301111114361271219910427WTTBYWZY92222212222221012212110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436127120110713WT@9WTTB#22222112204304100000000 -T320230111111436127120190118WTT#Z0TTZ22222122204398100000000120160105WTTBW9Y9W22222112204398100000000 -T320230111111436127120220504WT@BB0P9922222122204398100000000120210118WTTTP@09@22222122204398100000000 -T12023011111143613220800414151120313110835300000000005004750410000000000000000000000000000000000222222005200012219012 -T2202301111114361321219810727WTT#9TTZ92222211222221012211110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436132420140323WTTWYY9P922222122104301109140000120070712WT@@PP09@22222122204309100000000 -T12023011111143616425000409431120213110399300000000000005280060000000000000000000000000000000000222222000000002229072 -T2202301111114361641219840324WT@@ZWTYW2222212222221012208110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436164120220901WTTTZP9WB22222122204398100000000 -T12023011111143634121700407751120213110611300000000005005280520000000000000000000000000000000000222222000000002229072 -T2202301111114363411219750412WTTYYZY@92222212222223012216110610023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111436341120050926WTTYZ0YW#22222122204311100000000 -T12023011111143642921600402511110212110557300000000000003910010000000000000000000000000000000000222222000000002229012 -T2202301111114364291219870523WTTZBY#Y@2122222222221012213110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000233 -T320230111111436429120080412WTTTZW#Y#21222222204308100000100 -T12023011111143653022000403531110213110559113570000000004760010000000000000000000000000000000000222222000000002229012 -T2202301111114365301219960721WT@@Y0Z#B1222222222221012212120025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436530120180126WTTPYP@9Y12212212204398100000000 -T12023011111143656622000410051110312110740108940000000702510390000000000035004000000000000000000222222000002082219012 -T2202301111114365661219860126WT@9@#0TB2221222222221012216110560421011805000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111436566120170405WTT0@@9#W22212212204398100000000420050426WT@TW@#@B22212212104311103020612 -T12023011111143659620800411991120233120000300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111114365963219590226WTTBW9WB#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000005500 -T320230111111436596120070313WT@WBPBY@22222122207308100000000 -T12023011111143661220300404641120523111116300000000010001710310000000000000000000000000000000000222222000006002219092 -T2202301111114366121219780921WTT@B0T0#2222222222222011212110900023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114366121219820507WT@Y0YP0#1222221222222021211190253523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000600 -T320230111111436612420070327WT@#B0B0922222212104307109070000 -T320230111111436612120150921WT@B9WBZY22222222204398100000000120130709WTT9P#Y9W22222212204302100000000 -T12023011111143663622000409871120232110516300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111114366362219640127WT@@P@TPY1221211222211012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111436636120140301WT@BWZT@T12212222204398100000000 -T12023011111143668022000414461120213110611103390000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111114366801219880327WT@W@BZ9W2221222222221012212110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436680120130327WT@ZYW0@P22212222204302100000000 -T12023011111143671320600400871110312110740300000000000002950450000000000000000000000000000000000222222000003592219012 -T2202301111114367131219810123WT9TT90P@1122222222225012210110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436713120110223WT@PT@#BT11222212204306100000000120060422WTTP#BZPP11222212204309100000000 -T12023011111143672523700414791120422110941300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111114367251219960322WTTT9WPZZ2222212222221011212190530723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114367251219980202WTT0YPBTZ1222211222221011212190530721011938000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436725120190524WTT##B0ZZ12222122204398100000000120150304WT@B9PZW912222112204398100000000 -T12023011111143675623500410671120522111199300000000000008880080000000000000000000000000000000000222222000000002229012 -T2202301111114367561219890912WT@90W#W02222212222222011215290095123011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T2202301111114367561219870713WTTBY09B92222211222222021215290095123011800000000000000000000000000000000000000000000000000000000190000000000000000000000000000 -T320230111111436756120110921WT@WPT0T@12222122204306200000000 -T320230111111436756120200513WT@PP9Z0Z22222122204398200000000120140126WTT#Z@W@Z22222122204303200000000 -T12023011111143681022000408811120213110611100500000000002370460000000000000000000000000000000290222122000000012219012 -T2202301111114368101219940427WT@ZP@PTP2221212222221012212120471323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436810120190421WTT9WWP@022212212204398100000000 -T12023011111143684425000406021120313110855300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111114368441219850411WT@Y90YTT2222222222225012216210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436844120180727WTTZTWB9W22221222204398200000000120050918WTT9PP90Y22222212204312200000000 -T12023011111143687221000414221120213110611300000000000003160130000000000000000000000000000000211122222000000012219012 -T2202301111114368721219860904WTTT@P9WB2222212222221012212110144623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436872120060412WTT0P9PT#22222112204309100000000 -T12023011111143690920600400872120422210893300000000001702900090000000000000000000000000000000000222222004405542219032 -T2202301111114369091219560927WTTP@P9YB2222122222222011208910352523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114369091219490127WT@T@0P#@2222121222222021212990283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000488 -T320230111111436909120140712WTTP9TPWY22221222206398900000000120090709WTT@9P9WZ22221222204306900000064 -T12023011111143699622000407961120212110606300000000236305280240000000000000000000000000000000000222122000000002229012 -T2202301111114369961219740927WTTWYZ#YP2122222222221012215110362423010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111436996120160407WTTZWBP@@21222222204398100000000 -T12023011111143702020600414872120313210776300000000030006540050000000000000000000000000000000000222222000000002229032 -T2202301111114370201219760307WTTT9BZP02222122222225012209910105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437020120050324WT@9B9WPT22221212204310900000000120050324WT@BP#PTZ22221212204310900000000 -T12023011111143705821700407751120523111199300000000080008880050000000000000000000000000000000000222222000000002229012 -T2202301111114370581219970418WT@YWWYBB2222212222222011210190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114370581219960414WTTBZBY9Z2222211222222021212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437058120140726WT@#P0B#W22222122204301100000000 -T320230111111437058120200308WTTYZ99T022222122204398100000000120180411WT@WTT#@T22222122204398100000000 -T12023011111143707224200402501120233110470300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111114370723219700504WTTTB9T0Z2222122222222012212110045611069919000000000000000000000000000000000000000000000000000000000000135800000000000000000000 -T320230111111437072120100926WT@BB0YW922222222207304100000000 -T12023011111143709422700408351110422110939300000000000001240010000000000000000000000000000000000222222000000002229012 -T2202301111114370941219920301WT@#TT@9W2222222222222011205190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114370941219780218WT@TB##P02222221222222021214190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437094120190424WTT#PB0Z@22222212204398100000000120120318WT@BBZPY#22222212204304100000000 -T12023011111143725322000409971120212110599300000000000003160420000000000000000000000000000000211122222000000012219012 -T2202301111114372531220010702WTTP0@YZ02222212222221012210110402023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437253120190108WT@9YP#P022212212204398100000000 -T12023011111143726423500408281120313110786300000000281306540030000000000000000000000000000000000222222000000002229012 -T2202301111114372641219950226WTTYBZ0Y@1222212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437264120200404WT@W0T#WW12222122204398100000000120150318WT@Y#Z0ZZ12222122204398100000000 -T12023011111143742724200404891110323110822300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114374271219950513WT@Z9YYP#2222222222221011211110402023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114374271219860904WT@YB9PW02221221222225011213190322823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437427120220311WT@#9TZ0B22212212204398100000000 -T12023011111143745124100402401120313110855117450000000306540080000000000000000000000000000000000222222000000002229012 -T2202301111114374511219940709WT@##PWZW2222212222221012214110352523011700000000000000000000000000380004000000000000000000000000120000000000000000000000002456 -T320230111111437451120200509WT@YWY09Y22222122204398100000000120180112WT@ZWW0ZP22222112204398100000000 -T12023011111143748222000410331120423111034300000000080007710060000000000000000000000000000000000222222000000002229012 -T2202301111114374821219800701WTT#TBZYW2222211222222011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114374821219840421WTT9PPTWB1222212222221021213190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437482120160312WTTZP9#9#22222122204398100000000120140112WT@@YW@T922222122204303100000000 -T12023011111143749025000403231120333110812104030000000005280260000000000000000000000000000000000222222000000002229022 -T2202301111114374905219890504WT@YYWBTT1222212222225012212110610013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000053 -T320230111111437490120110427WT@#ZY9#012222122209305100000000120050911WT@90PTY912222122209311100000000 -T12023011111143757424500403051120233110516300000000000004170630000000000000000000000000000000000222222000000002229022 -T2202301111114375743219630726WTT#Z0BW92222212122225012211110085213069900000000000000000000000000000000000000000000000000000000000000000000001439000000000000 -T320230111111437574120090427WT@Y#WWB@22222122206308100000000 -T12023011111143758424700406701110413111034300000000000006710070000000000000000000000000000000000222222000001002219012 -T2202301111114375841219790912WT@TZ@@P#2222212222223012298110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437584120140305WTT#00ZWW22222112204302100000000 -T320230111111437584120170913WTTPWPP#022222122204398100000000120160713WTTWZT#YW22222112204398100000000 -T12023011111143758522000407411120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111114375851219840301WT@9W@WTB2222212222222011298290114923011800000012000000000000000000000000150001000000000000000000000000000000000000000000000000 -T2202301111114375851219860221WTT@ZW9992222211222222021298290114923011800000012000200000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111437585120080912WT@#W9PBT22222112204398200000000 -T320230111111437585120130727WT@ZZB0PT22222122204303200000000120130727WTTW#WTYT22222112204303200000000 -T12023011111143760624200414021120413120000300000000000007710110000000000000000000000000000000000222222000000002229012 -T2202301111114376061219850912WTTZ9Y@9@1222222222223012212210124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437606120060918WT@BZYTPY12222212204309100000000 -T320230111111437606120090326WTT@WWBP@12222222204306100000000120080101WTTZYBYTW12222222204307100000000 -T12023011111143761422700408351120333110493300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111114376142219750227WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437614120110923WTTBYZ@YY12222212204304100000000420060305WT@#TW@ZW12222212104309109140000 -T12023011111143765623700414331120433110611300000000000003020060000000000000000000000000000000000222222000002262219022 -T2202301111114376562219880108WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114376562219840718WT@YYBT9P1222221222221102212990006011079901000000000000000000000000000000000000000000000000000000000000093700000000000000000000 -T320230111111437656120140505WTT@ZP@#P12222222204303100000000120090912WT@P@T@@B12222212204308100000000 -T12023011111143778120600407031120323110740300000000000305280420000000000000000000000000000000000222222000000002229012 -T2202301111114377811219810527WTTWBZZTB2222212222222011212110431723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114377811219860226WTTBPPT0T2222211222222021212190273323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437781520130304WTT@ZT@PT22222112104301109140000 -T12023011111143784724700409381120213110606300000000003005280320000000000000000000000000000000000222222000000002229012 -T2202301111114378471219820413WTTPB99BZ2222212222225012216110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437847120110412WT@BW099022222112204306100000050 -T12023011111143791925900402831120233120000300000000000004170670000000000000000000000000000000000222222000000002229022 -T2202301111114379193219770923WT@#TZPYW2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437919120140407WTT9BWWT@22222122206303100000000 -T12023011111143797524200407431120233120000300000000005204170990000000000000000000000000000000000222222000000002229022 -T2202301111114379753219820918WTT0Y@WP#2221222222221012216110006011069940000000000000000000000000000000000000000000000000000000000000583700000000000000000000 -T320230111111437975120050323WT@ZTT@#W22212212207309100000049 -T12023011111143797924700407521120213110599300000000000003160200000000000000000000000000000000211122222000000012219012 -T2202301111114379791219950427WT@TB0T002222212222221012212110213923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111437979120190913WTTZWP@WT22222112204398100000000 -T12023011111143798224200407271120232110493300000000010704170210000000000000000000000000000000000222222000000002229022 -T2202301111114379822219670113WT@P#W0Y02222122222215012212110600013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111437982120040112WT@BP9WZ@22221222204312100000000 -T12023011111143799020600402142120332210704300000000000005280330000000000000000000000000000000000222222000000002229022 -T2202301111114379903219610312WTTTB09PT2222122222222012212910352511079941000000000000000000000000000000000000000000000000000000000000260000000000000000000000 -T320230111111437990120110309WTTB9W0ZW22221222206304900000000120100421WT@@T@WYZ22221212206306900000000 -T12023011111143825325800408261120333110704300000000000005280880000000000000000000000000000000000222222000000002229022 -T2202301111114382533219710913WT@PPY9P02122222222222012212110006011069940000000000000000000000000000000000000000000000000000000000000258000000000000000000208 -T320230111111438253120140909WTT#ZZ0B022222122207301100000000120120201WTTP@@Y9B21222222207303100000000 -T12023011111143835321700406141120233120000300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111114383533219600914WT@PYB0PY2222212222225012213110006011069941000000000000000000000000000000000000000000000000000000000000385000000000000000000000 -T320230111111438353120050718WT@Y9PWZ012222122206310100000000 -T12023011111143849125900403711120523111116300000000000008880300000000000000000000000000000000000222222000000002229012 -T2202301111114384911219970501WTTWZW##Y1222221222221011210190322823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114384911219990727WT@9BYP9W2122222222221011209190322823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111438491120150426WT@0TWW##11222222204398100000000 -T320230111111438491120180921WTTWB#W0011222212204398100000000120160713WT@TBZBY011222222204398100000000 -T12023011111143855420800405141120423111034300000000165407710020000000000000000000000000000000000222222000000002229012 -T2202301111114385541219900501WT@PWBWWT2222212222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114385541219750112WTTYP@09T2222211222225011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111438554120160109WTT@0@BBB22222112204398100000000120130122WTTY0WBW#22222112204303100000000 -T12023011111143857424700406491110213110576300000000000004260010000000000000000000000000000000000222222000000002229012 -T2202301111114385741219950318WT@YT#TZT2222212222221012210110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000020 -T320230111111438574120180201WTT#Y9YZ022222112204398100000000 -T12023011111143858123500404821120313110835300000000000006540760000000000000000000000000000000000222222000000002229072 -T2202301111114385811219880926WTTT09PTY2222212222221012212110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111438581120190405WT@@W9T0#22222122204398100000000120170109WT@00#WZZ22222122204398100000000 -T12023011111143860822000407791120423111034300000000002006210080000000000000000000000000000000000222222003200012219012 -T2202301111114386081219980207WTT9YP#001222222222221011212110293123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114386081219980712WT@WWWT0@1222221222221011209190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111438608120210904WT@9TPY9W12222212204398100000000120170704WT@BBPP@912222222204398100000000 -T12023011111143861922000410051120432110939300000000000006540020000000000000000000000000000000000222222000000002229022 -T2202301111114386193219660504WTT#B##WB2221222222221012212111200013069900000000000000000000000000000000000000000000000000000000000000099000000000000000000000 -T320230111111438619120070401WTT#W0BY922212212206309100000000 -T320230111111438619120170302WTTYPYZP022212112206398100000000120170302WT@T09@#B22212122206398100000000 -T12023011111143863622000411551120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114386363219600414WT@BY0@#P2222212222221012214110025811069938000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111438636120090113WT@Z#9#9021212212206307100000033 -T12023011111143872922700408351120332110740300000000000005280770000000000000000000000000000000000222222000000002229022 -T2202301111114387292219740423WT@T#0WBB2221222222213012298210194113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111438729120060423WTT0Z@#PZ22212222204310200000000120050901WTT9#BZYY22212212204312200000000 -T12023011111143885623300410111121033112113300000000000014160050000000000000000000000000000000000222222000000002229022 -T2202301111114388562219840904WTTTB9#T#1222212222213012212110293113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111438856120070218WT@@P9@WB12222212204309100000000 -T320230111111438856120110124WT@@W9Z#Z22222122204305100000000120090405WTTPPB09Z22222112204307100000000 -T320230111111438856120140312WTTZ#PTP912222112204301100000000120120301WTTBTT9##22222112204303100000000 -T320230111111438856120180518WT@9WBZ9W12222112204398100000000120160907WT@WWZW@P12222112204398100000000 -T320230111111438856120210702WT@BP9Z@B22222212204398100000000120200404WT@Y@P#WB12222122204398100000000 -T12023011111143897120600403591120212110493300000000079800010250000000000000000000000000000000000222222000000002229072 -T2202301111114389711219730923WT@TZTZ0B2221222222225012212112020011011800200000000000000000000000000000000000000000000000000000000000127300000000000000000000 -T320230111111438971520120518WT@TBT9Y922212222104303109140000 -T12023011111143905420500413621120213110519300000000000000010060000000000000000000000000000000000222222000000002229012 -T2202301111114390541219810718WTTZT9Y9T2222211222225012213110352511011800210000000000000000000000000000000000000000000000000000000000125600000000000000000000 -T320230111111439054120050318WTTTW00#W22222122204311100000000 -T12023011111143920922000413682120423211034300000000196707710030000000000000000000000000000000000222222000000002229032 -T2202301111114392091219830323WT@9TPY9W2222211222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114392091219830101WT@9TPY9W2222212222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111439209120130712WT@9TPY9W22222112204302200000000120100902WT@9TPY9W22222122204306200000000 -T12023011111143925222000410051120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114392521219920402WTTZYWYT02222212222222012212210114923011800000000000000000000000000000000140001000000000000000000000000000000000000000000000000 -T320230111111439252120150301WT@YW9BT022222112204301200000000 -T12023011111143929922000411131120233110423300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111114392993219860701WTT##Y9B#1222212222222012213110550513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111439299120130722WTTTB@@BP22212222209304100000000 -T12023011111143940124200408571120423110939300000000160007710260000000000000000000000000000000000222222000000002229012 -T2202301111114394011219680714WT@#9Z9BY2221221222222011212190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114394011219870307WT@BZ90BT2221222222222021212290134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111439401120200312WT@0PYP9Z22212222204398100000000120130922WT@B0ZPZ922212212204302100000000 -T12023011111143940821000411361120233110516300000000000004170680000000000000000000000000000000000222222000000002229022 -T2202301111114394083219650114WT@99Y9WY2222212222225012212110263411069924000000000000000000000000000000000000000000000000000000000000194400000000000000000000 -T320230111111439408120150307WT@#YP#PW22222112206398100000000 -T12023011111143952124200409091120213110608300000000050005280060000000000000000000000000000000000222222000000002229012 -T2202301111114395211219970421WTT9P@99W2122222222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111439521120210707WT@ZT9T@T21222222204398100000000 -T12023011111143972320600402141120312110790300000000000006540520000000000000000000000000000000000222222000000002229012 -T2202301111114397231219860723WTTBYTYP91222212222221012216110590123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111439723120220701WT@9TPY9W12222112204398100000000120160718WT@PTP0B012222112204398100000000 -T12023011111143986022000413681120313110835300000000000106540100000000000000000000000000000000000222222000000002229012 -T2202301111114398601219920318WT@WYBBBT2122222222221012216110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111439860120220427WTTP0P@9T11222212204398100000000120130918WT@BW0W@021222222204302100000000 -T12023011111143993623500410671120433110376300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111114399362219910111WT@YYBT9P1222222222222012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111439936420080309WT@YYBT9P12222212204305900000000 -T320230111111439936120190922WTT0@@PWP12222212204398100000000420100314WT@YYBT9P12222222204304900000000 -T12023011111144002224500410691120233110493300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111114400222219620704WT@9Y0Y@T2222211222215012212110144613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111440022120050423WTTT9WTZ022222112204308100000000 -T12023011111144014724200403461120333110822300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111114401473219980902WTT@#TW0P2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111440147120100921WTTPWWPY#22222122207305100000000120090112WT@9BZWPT22222122207307100000000 -T12023011111144019124200413331120323110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114401911219870701WT@9TPY9W2222211222222011216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114401911219870313WT@9TPY9W2222212222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111440191120100409WT@9TPY9W22222122204306200000000 -T12023011111144027621700403821120313110816300000000000006540340000000000000000000000000000000000222222000000002229072 -T2202301111114402761219860512WT@#TTYP02222212222221012212110870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111440276120140104WT@#Y#Y0P22222112204301100000000120060124WTTZ0B@#B22222122204309100000000 -T12023011111144031425600414951120433110611300000000000003940620000000000000000000000000000000000222222000001342219022 -T2202301111114403142219840701WT@YYBT9P1222222222222012201990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114403142219750223WT@YYBT9P1222221222222022203990006011079925000000000000000000000000000000000000000000000000000000000000150500000000000000000000 -T320230111111440314120160127WT@T9YPPB12222212204398100000000120090113WT@ZY#9Z#12222222204307100000000 -T12023011111144032823300407291120333120000300000000000005280830000000000000000000000000000000000222222000000002229022 -T2202301111114403283219550421WT@T#9PTW2222221112222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000001281000000004209 -T320230111111440328120150423WTT9TB9WB22222122206301100000000120130326WTTTYWB0#22222122206302100000000 -T12023011111144034225900402721120332110376300000000065004170520000000000000000000000000000000000222222000000002229022 -T2202301111114403422219810418WT@YYBT9P1222212222221012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114403422219840401WT@YYBT9P1222221222221102211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111440342120130101WTTW@WP@912222212204303100000000 -T12023011111144034724700402991120313110766300000000382506540040000000000000000000000000000000000222222000000002229012 -T2202301111114403471219930127WT@#B#BB92221222222222012212210055523010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111440347120220921WT@W0WBB#22212222204398100000000120210905WT@YPPW@#22212222204398100000000 -T12023011111144042724700413761110213110516300000000000003910420000000000000000000000000000000000222222000000002229012 -T2202301111114404271219890927WT@B0T#@@2222212222221012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111440427120170201WTTBYY@9912222122204301100000000 -T12023011111144052823900408801120413111034300000000050007710050000000000000000000000000000000000222222000000002229012 -T2202301111114405281219830911WTTPT#9YP2222212222223012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000272 -T320230111111440528120070901WT@Y9Y@@922222122204310100000000 -T320230111111440528120150518WT@WYT0WT22222122204302100000000120120308WTTZ9BZ@922222122204304100000000 -T12023011111144064922500405581120512111116300000000000000870290000000000000000000000000000000000222222000006842219012 -T2202301111114406492219910113WTT0@TZ0P1222222222212012211190134713089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T2202301111114406491219890723WTTT#PWPB1222221222222022212190124821011816000000000000000000000000000000000000000000000000000000000000136700000000000000000000 -T320230111111440649120100109WTTTZY@9912222222204305100000000 -T320230111111440649120190127WT@@BBWYP12222212204398100000000120150705WTT@WP0T#12222212204301100000000 -T12023011111144073824200407271110213110611300000000000004760010000000000000000000000000000000000222222000000002229012 -T2202301111114407381219940301WTT0ZTWB#2221222222221012216110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111440738120220704WTTTT@WZ@22212222204398100000000 -T12023011111144086723500404531120233110557300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111114408673219810922WT@@P0@YY2222212222223012211110630013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000009 -T320230111111440867120070121WTTY#Z@ZP22222122207307100000050 -T12023011111144100320800414151120213110611300000000000505280360000000000000000000000000000000000222222000000002229072 -T2202301111114410031219890413WT@BYP@#Z2222212222225012212110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441003120070727WTTW@B9TW22222112204306100000000 -T12023011111144104721700403821120233110516300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111114410473219550918WTTZ99#Z02222212122225012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001466000000000000 -T320230111111441047120150114WTTP9T9T#22222112206398100000000 -T12023011111144108022000408341120623111339300000000000010090120000000000000000000000000000000000222222000000002229012 -T2202301111114410801219820327WTTZY0PBY2222212222222011214290065423011800000000000000000000000000000000180002000000000000000000010000000000000000000000000000 -T2202301111114410801219790921WTTPPB00Y2222211222222021214290065423011800000000000000000000000000000000180002000000000000000000130000000000000000000000000000 -T320230111111441080120150412WT@BBBBPT22222112204398100000000120080701WTT#TPWZZ22222112204308200000000 -T320230111111441080120180207WT@0PY#YT22222112204398100000000120160118WTTPYB0ZT22222112204398100000000 -T12023011111144111622000409991120213110598115000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114411161219980923WT@P@#YPZ2222222222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441116120210924WT@BB#9P922222212204398100000000 -T12023011111144112524200403511120333110740300000000000005280370000000000000000000000000000000000222222000000002229022 -T2202301111114411253219640327WT@WTPZP#2222122122211012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000552038200000000 -T320230111111441125120080907WTT9B9TY#22221212206308100000000120070918WTTY###0@22221212206310100000000 -T12023011111144117124200402981120213110611300000000000000920160000000000000000000000000000000000222222000004362219042 -T2202301111114411711220020726WT@#T9TWB1222212222221012212110154521011740000000000000000000000000000000000000000000000000000000000000087100000000000000000000 -T320230111111441171120200114WTT00WPT922222212204398100000000 -T12023011111144122420300410341110413110939300000000000006460040000000000000000000000000000000000222222000000002229012 -T2202301111114412241219950223WT@ZWPBT92222212222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441224120120407WTTBY00B922222122204304100000000 -T320230111111441224120180304WT@0#09#922222122204398100000000120140918WTTW09YPZ22222112204302100000000 -T12023011111144126522000400811120313110835300000000000006540180000000000070007000000000000000000222222000000002229072 -T2202301111114412651219840907WTTTPPYPZ2222212222221012216210610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441265120130309WTT@@W9ZB22222112204302100000100120100423WTT#9YT0T22212222204306100000000 -T12023011111144127622000407411120212110516300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111114412761219790718WT@PTZ9@@2221222222221012213110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441276120050313WT@#WWYB922212212204309100000423 -T12023011111144150225800401871120233110516300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111114415022219790113WTTBPWPY02222211222213012212110580213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111441502120080924WT@0YT00W22222112204306100000000 -T12023011111144150522000408811120213110611300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111114415051219980922WT@0YYYPY2222212222223012210110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441505120170412WTT9T#ZZ022222122204398100000000 -T12023011111144154424200411401120233110611300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111114415443219590507WTT#T#Y002221222222225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441544120190921WT@TYBWZW22212222206313100000000 -T12023011111144154524200414721120612111339300000000000008880420000000000000000000000000000000000222222000000002229012 -T2202301111114415451219880401WTTYBP0@#2221222222225012213110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441545120050514WT@W9Y0YB22212212204312100000000 -T320230111111441545120120926WTTYTY@@912212212204305100000050120090304WTT#TZYP@12212212204307100000050 -T320230111111441545420090304WT@Y9TZ0912212212104307109140050120060326WT@B@#W@022212212204310100000000 -T12023011111144164525600411521120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114416453219620327WTTZZPYPZ2222211122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001426000000000000 -T320230111111441645120050127WT@ZWT0WT22222112206311100000000 -T12023011111144168224900404261120212110611300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111114416821219940301WT@9TY9B@1222222222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441682120170712WT@#B#@0T12222222204398100000000 -T12023011111144181621700406141120333110704300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111114418163219570704WTT9W00PY2222211112222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001485000000000152 -T320230111111441816120220511WTT0PPBZT22222122206398100000000120180207WTTTTWW#@22222112206398100000000 -T12023011111144197720300408211120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114419773219630701WTT9#TY0P2222212222213012212110184213069900000000000000000000000000000000000000000000000000000000000000000000000000084300000000 -T320230111111441977120080914WTT0@T9BY22222122206307100000000 -T12023011111144198324900404261120412110957300000000000007510340000000000000000000000000000000000222222000000202219012 -T2202301111114419831219870718WT@9PPBZ#1222212222223012213120580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000593 -T320230111111441983120140427WTT0@9#PW12222112204301100000000 -T320230111111441983120190909WTT0BYPBZ22222122204398100000000120150726WT@W09T0@22222122204398100000000 -T12023011111144199625900402231110433110524300000000000004420490000000000000000000000000000000000222222000000002229021 -T2202301111114419962219840713WT@YYBT9P1222212222225012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111441996420060405WT@YYBT9P12222122204310900000000 -T320230111111441996120130714WT@#@W0YY12222122204303100000000120090326WTTBYWB9P12222122204306100000000 -T12023011111144211525100407671120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114421153219520312WTT##9Z0P2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001007000000000000 -T320230111111442115120050221WTTTZ#W0#22222112206310100000050 -T12023011111144212524100412771120533110835300000000000006540520000000000000000000000000000000000222222000000002229022 -T2202301111114421252219870401WT@YYBT9P1222222222223012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111442125120080922WTT9Y999P12222122204308100000000420050413WT@YYBT9P12222112204311900000000 -T320230111111442125120110713WT@@TT@WB12222112204304100000000120100207WTT0@YPP@12222112204305100000000 -T12023011111144214722000410051120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114421471219800427WTTTP09#92222212222221012214210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111442147120100707WT@00T9PT22222122204306200000000 -T12023011111144222624200409731120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114422263219540423WT@Z@YWYP2222122122222012205120006013069900000000000000000000000000000000000000000000000000000000000000000000001973000000001534 -T320230111111442226120090213WTTP9PWYY22221222206307100000000 -T12023011111144229220600407031120823111714300000000001807080130000000000000000000000000000000000222222000005812219072 -T2202301111114422921219830704WT@Z@9BBW2222122222221011212910630023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114422921219760911WTTWTT###2222121222221021212990134721011999000000000000000000000000000000000000000000000000000000000000296000000000000000000000 -T320230111111442292120120513WT@YPP00T22221212204303100000000120090413WT@@0YB9P22221212204306100000000 -T320230111111442292120160907WTT0ZB0PT22221222204398100000000120120513WT@ZYZ0@@22221212204303100000000 -T320230111111442292120190301WTTYBY#WZ22221222204398100000000120180214WT@Z0@0@Y22221222204398100000000 -T12023011111144236720600402131120413111032300000000000007710110000000000000000000000000000000000222222000000002229012 -T2202301111114423671219890123WT@W@@PW92222212222221012214110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111442367120120704WTTZZ#YZZ22222122204302100000000 -T320230111111442367120170923WTTT@9#Z#22222122204398100000000120150408WT@PP9BB922222122204398100000000 -T12023011111144244024700409321120512111116300000000358605320120000000000000000000000000000000355122222000000012219072 -T2202301111114424401219880412WT@WTW9ZP2222212222223012212110910023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111442440120100108WT@#Y0Z0B22222122204304100000025120080313WT@0YBWY922222112204306100000025 -T320230111111442440120190323WT@ZP0WY#22222112204398100000025120170301WT@#ZBW@922222122204398100000025 -T12023011111144279524200410211120312110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114427951219910302WTT0Y@ZTZ2212222222221012216110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111442795120090323WT@##90#W22112222204307100000000120070301WT@Z@W9ZW22112222204309100000000 -T12023011111144283625600406521120433110939300000000000006540440000000000000000000000000000000000222222000000002229022 -T2202301111114428363219610407WTTT0Y@W92221222122225012216120006013069900000000000000000000000000000000000000000000000000000000000000000000001440000000000000 -T320230111111442836120120113WTT@9999#12212212206304100000000 -T320230111111442836120150921WTTP0#ZWZ12212222206301100000000120130401WTTZ@ZTWT12212212206303100000000 -T12023011111144289023300410111120213110598300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111114428901219990701WTTP#9Z#B2222212222221012207110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111442890120150412WTTT0#99#22222122204301100000000 -T12023011111144292420200409311110213110516102520000000004760030000000000000000000000000000000000222222000000002229012 -T2202301111114429241219890123WT@YTZB0Z2221222222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111442924120150927WTTT0WTW022212222204301100000000 -T12023011111144294125900406841120433120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114429413219850112WT@W99ZBZ2122222222221012212110283213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111442941420050711WT@0P@BYZ21222212204306100000269 -T320230111111442941120190727WT@WPTB#Y21222222208398100000000420080512WTTBY90WT21222212204304100000269 -T12023011111144297325900402631120113110376300000000006004170040000000000035001000000000000000000222222000000002229012 -T2202301111114429731220010404WTTZ#BZYW1222222222221013212190055523011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T12023011111144303023500406851120213110611300000000000005010410000000000000000000000000000000000222222002600012219012 -T2202301111114430301219960709WTTTYY0WB2221222222221012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443030120180904WTTB9#B#W22212212204398100000000 -T12023011111144304023500402711120233110327300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114430402219800911WTTTT099B2222212222211012210110471311089908000000000000000000000000000000000000000000000000000000000000050000000000087300000000 -T320230111111443040120120223WT@P#@@BW22222112204305100000000 -T12023011111144308123900406231120213110516300000000000304170230000000000000000000000000000000000222222000000002229012 -T2202301111114430811219940104WT@#0WYBB2222212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443081520150905WT@9W#Z@Z22222112104301109140000 -T12023011111144314025100407671120333110670300000000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111114431403219660909WTT00@9YP2222211222214012209110085213069900000000000000000000000000000000000000000000000000000000000000000000000000049200000000 -T320230111111443140120160127WT@T#P@0912222112206398100000000120120912WTTY@0#9#22222122206303100000000 -T12023011111144317925900403551120633111269300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111114431792219860923WT@0WPY0Z1222222122213012211110690013109900000000000000000000000000000000000000000000000000000000000000000000000523031300000000 -T320230111111443179420050523WT@@9T9TT12222122204310100000000 -T320230111111443179120070311WTTTZP0#Y12222222204307100000000120060301WTTY#Z99Y12222212204308100000000 -T320230111111443179120100918WTTBW0T#P12222222204305100000000120090908WT@0YYYWW12222212204306100000000 -T12023011111144333121400408021120412110939300000000000007710740000000000000000000000000000000000222222000000002229012 -T2202301111114433311219810227WTT#BYB#01222222222221012211210293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443331120120307WTT@PTBTB12222112204303100000000 -T320230111111443331120210121WTTTPP#BB12222122204398100000000120160912WT@W@YT@012222122204398100000000 -T12023011111144334024200414721120233110611300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111114433402219970102WT@ZPTBBY2221222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111443340120200912WT@T99B#022212222204398100000000 -T12023011111144338220600407031120413110893300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111114433821219820318WT@ZY0PP92222212222221012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443382120090926WT@9P9#BP22222122204306200000000 -T320230111111443382120160422WTTPZ@9@T22222122204398200000000120100101WT@B@T9T022222122204305200000000 -T12023011111144350024700413761120312110740112150000000000260410000000000000000000000000000000000222222000006282219012 -T2202301111114435001219810324WT@Y00P#Z2222211222221012210110421821011800210000000000000000000000000000000000000000000000000000170000125500000000000000000000 -T320230111111443500120160312WT@P09P#Z22222112204398100000045120140707WTT9PZ@P@22222112204398100000045 -T12023011111144350820600412681120723111500300000000000011650020000000000000000000000000000000000222222000000002229012 -T2202301111114435081219900714WTT0TPYZY2222211222222011216290035723011800000000000000000002000000000000000000000000000000000000140000000000000000000000000000 -T2202301111114435081219930922WT@@BYP#P2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443508120120712WTT0W0BP022222112204304200000000 -T320230111111443508120150409WT@WB0#TP22222112204302200000000120130326WT@#Z#@YP22222112204303200000000 -T320230111111443508120180327WT@00Z0P@22222122204398200000000120170427WT@Z#9PB@22222112204398200000000 -T12023011111144367223500410671120233110235300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111114436725219560408WTTZZZ0Z92222211222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443672120050107WTTYT0T#@22222222209311200000000 -T12023011111144368222000413731120313110766300000000000006540270000000000000000000000000000000000222222000000002229012 -T2202301111114436821219810909WTTBYW#@W2212222222223012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443682120130701WT@B@0@WT22222122204304100000000120090404WT@WW###022222122204308100000000 -T12023011111144382524200407311120313110835300000000000006540250000000000000000000000000000000000222222000000002229012 -T2202301111114438251219990912WTTYWT0TP2222212222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443825120210426WTTPP@WPP22222122204398100000000120160309WT@W@YWP#22222112204398100000000 -T12023011111144389721000408061120212110611300000000029003160950000000000000000000000000000000211122222000000012219072 -T2202301111114438971219790701WTT9009WB2222212222221012209111550023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443897120170323WT@WWZP#Z22222112204398100000000 -T12023011111144390724200409731120513111116300000000000006660290000000000000000000000000000000222222122000000002229012 -T2202301111114439071219920312WT@W#@9PZ2222122222223012212120263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111443907120170922WT@ZZ@#9T22221212204398100000000120110702WTT0P#ZB022221212204304100000000 -T320230111111443907120210408WT@PY0ZPW22221222204398100000000120190413WT@B##B#Z22221222204398100000000 -T12023011111144398224100402401120113110376300000000000004170090000000000000000000000000000000000222222000000002229012 -T2202301111114439821219970912WT@B#WWW01222222222221013211110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111144416725900400311120232110611300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111114441673219750209WT@T00ZYT2222212222215012216110154513069900000000000000000000000000000000000000000000000000000000000000000000000000011800000000 -T320230111111444167120050526WT@B0#BBY22222112207310100000000 -T12023011111144422625800402241120233120000300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111114442263219850305WTT#YYPBZ2122222222221012216110105011069940000000000000000000000000000000000000000000000000000000000000387500000000000000000000 -T320230111111444226120190411WT@Y0TPTP21212122207398100000000 -T12023011111144425924200404891120513111116300000000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111114442591219830423WTTZ9WTBB2221222222223012213110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111444259120140926WT@0BYB#W22212222204302100000000120130123WT@Z#Y9#Z22212212204303100000000 -T320230111111444259120210304WTTB99PWP22212212204398100000000120180723WT@Y9Z@P#22212222204398100000000 -T12023011111144426920800410781120313110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111114442691219990421WT@9TPY9W1222221222221012210290055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114442692220020327WT@YYBT9P1222212222221022210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111444269120220307WTT0#TBYZ12222112204398100000000 -T12023011111144440324200403941120313110611300000000023903920420000000000000000000000000000000261122222000000012219012 -T2202301111114444031219810318WTTPY#@#92221222222221012212220431723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111444403120100723WT@@0WBZP22212222204305100000000120090327WT@0Y#YWY22212212204306100000000 -T12023011111144441623500404531120323110835300000000008506540020000000000000000000000000000000000222222000000002229012 -T2202301111114444161219730127WT@@B0BZP2222211222222011215290035723011800000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T2202301111114444161219750912WT@ZY@B#P2222212222222021215290035723011800000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111444416120050312WT@#W#ZPZ22222112204310200000000 -T12023011111144447720800410781120533120000300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111114444773219710713WT@@09Z9#2222211222222012216110025811069940000000000000000000000000000000000000000000000000000000000000661500000000000000000000 -T320230111111444477120200913WT@B@90ZW12212212209398100000000420090105WT@Y@ZWT@12222112204308100000000 -T320230111111444477420060723WT@WZ@TYW12222122204310100000000420050418WT@@BBPZ012222112204312100000000 -T12023011111144457023700412381120213110376300000000000003160420000000000000000000000000000000211122222000000012219072 -T2202301111114445701219820108WT@PY@#ZY2222212222223012212110730023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111444570120130418WT@TT##B022222122204302100000000 -T12023011111144457225100407671120313110776300000000000006540130000000000000000000000000000000000222222000000002229042 -T2202301111114445721220010907WT@99W@W92222212222221012211110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111444572120210418WT@##YT@912222112204398100000000120180105WT@9P0#9@12222122204398100000000 -T12023011111144458124200403511120113110306300000000075004170030000000000000000000000000000000000222222000000002229012 -T2202301111114445811219960127WTT0WZ@#Y2221212222221013216190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111144459725200407301120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111114445971219860724WTTWYP0@B2222212222222011216110065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114445971219880527WTT0@Z@TZ2222211222222021212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111444597120110523WT@09#BZP22122212204304100000000 -T12023011111144464720200409311120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114446473219670302WTT0BZW002222212222222012212120006011069936000000000000000000000000000000000000000000000000000000000000402400000000000000000000 -T320230111111444647120110714WT@Y0PP9B22222112207305100000000 -T12023011111144478122000406211110112110376300000000000003090010000000000000000000000000000000000222222000000002229012 -T2202301111114447811219870907WTT@YWBW02222212222221013213190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111144480224500402221120233120000300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111114448023219820418WT@BZ9WZ92222212222225012212120164411069941000000000000000000000000000000000000000000000000000000000000341400000000000000000000 -T320230111111444802120110104WTTZZYY#Z22222112209305100000000 -T12023011111144484824200414721120512111211300000000116008880070000000000000000000000000000000000222222000000002229072 -T2202301111114448481219900308WTTPYTP0@2222122222225012212110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111444848120100426WTTBBY0ZW12221222204306100000000120090209WT@TT00#B22221222204307100000000 -T320230111111444848120200909WT@P@WYZP12222222204398100000000120180711WTT@YPT9T12221212204398100000000 -T12023011111144484922000406191110113110254300000000000002820010000000000000000000000000000000000222222000000002229012 -T2202301111114448491220010222WTT##9T@Y2221222222221013213190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111144486025100407671120213110528111990000000000010210000000000000000000000000000000000222222000000002229012 -T2202301111114448601219840918WT@@YBPBT2122222222225012212110530711011700210000000000000000000000000000000000000000000000000000030000136400000000000000000000 -T320230111111444860120200207WT@BWPZ@021222212204398100000000 -T12023011111144499824200405921120213110598300000000000005280190000000000000000000000000000000000222222000000002229072 -T2202301111114449981219780327WT@9#WWY02222212222225012212111020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111444998120210304WT@TY#@ZB22222122204398100000000 -T12023011111144500624600411871110423111034300000000000003760010000000000000000000000000000000000222222000000002229012 -T2202301111114450061219920908WTT0#Y@#@1222211222222011212190015921011810000000000000000000000000000000000000000000000000000000000000067600000000000000000000 -T2202301111114450061219940418WT@00TYT02222212222222021213190015921011930000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111445006120200401WT@@0ZZ#T12222112204398100000000120180127WTT#T09T@12222112204398100000000 -T12023011111144507124200403941120513111034300000000005007710080000000000000000000000000000000000222222000000002229012 -T2202301111114450712219970404WTTPZTZY92222212222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114450711219950704WTT90#0#T2222211222221012212190095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111445071120160724WT@TZB90Y22222122204398100000000 -T320230111111445071120220707WTTTBZWTZ22222222204398100000000120170101WT@BBY#Z@22222112204398100000000 -T12023011111144520024700405901120213110599300000000000003160140000000000000000000000000000000211122222000000012219012 -T2202301111114452001219930323WTTPWT9TZ2222212222221012212110154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111445200120220126WT@9TPY9W22222112204398100000000 -T12023011111144528320900411721110113110281300000000000000130070000000000000000000000000000000000222222000005152219012 -T2202301111114452831219860721WT@P@#PT91122222222225013212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111144546624200414021120233110493300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111114454663219620527WT@9BY@B92222212122224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001258000000000000 -T320230111111445466120190723WTTZYWPPP22212222207398100000000 -T12023011111144548620600414871120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114454863219660327WT@00#PPY2221222222221012213110006011069938000000000000000000000000000000000000000000000000000000000000363100000000000000000000 -T320230111111445486120120224WTTTB9PZ022212222206304100000000 -T12023011111144560820300400971120313110754300000000006006540950000000000000000000000000000000000222222000000002229072 -T2202301111114456081219860318WTTT0#P9Z2122222222221012211111630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000175 -T320230111111445608120110512WTTWZZW0W21222112204305100000000120050309WT@Y90@Z021222112204309100000024 -T12023011111144568923500405271120413110939300000000000007710350000000000000000000000000000000000222222000000002229012 -T2202301111114456891219850512WT@ZPZ9##2222122222221012211910580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111445689120050321WTTYP0PY@22221222204310100000000 -T320230111111445689120160723WT@@9W@TZ22221212204301100000000120080724WTT#TY9YW22221222204308100000000 -T12023011111144569723500408281120323110786300000000080006540020000000000000000000000000000000000222222000000002229012 -T2202301111114456971219960308WT@BZ#W0W2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114456971219990327WTT0PT#0T2222212222222021215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111445697120200313WT@9TPY9W22222112204398200000000 -T12023011111144572024700410421120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114457202219920922WTTW#TWYW2222212222211012208110441613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111445720120120112WT@0ZW@0P21222122204303100000000 -T12023011111144576622000405321120212110611300000000000005280700000000000000000000000000000000000222222000000002229072 -T2202301111114457661219840926WT@9P9###2221222222221012212110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111445766120110314WT@@ZTPBB22212222204304100000000 -T12023011111144601820600414871120213110598300000000046905280370000000000000000000000000000000000222222000000002229012 -T2202301111114460181219830418WT@W#TT@@1222212222225012216110382223010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446018120140511WTT9WB@YP12222112204302100000000 -T12023011111144610220600412681120413111034300000000040007710410000000000000000000000000000000000222222000000002229012 -T2202301111114461021219950121WT@T9TBZT2222212222221012216110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446102120130322WTTYZZ9@P22222122204303100000000 -T320230111111446102120170101WT@@#@ZZ#22222112204398100000000120150113WT@WBPTBY22222122204301100000000 -T12023011111144611024200402501120413110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111114461101219900427WT@@B9Z0@2212222222223012213110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446110120170123WT@WBWB0B22122222204398100000000 -T320230111111446110120220412WT@P9@Y9P22222222204398100000000120190726WT@P@@0@W22122222204398100000000 -T12023011111144616224200414852120433210991300000000000006540140000000000000000000000000000000000222222000000002229022 -T2202301111114461623219830302WT@T@@9@Z2222122222225012212920006011079934000000000000000000000000000000000000000000000000000000000000210900000000000000000000 -T320230111111446162120050213WTT@TYZ#T22221222207311900000000 -T320230111111446162120100102WT@WTP#ZB22221212207306100000000120050213WTTBPPY@Z22221222207311900000000 -T12023011111144628222700408491120613111199300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111114462821219740502WT@@@BT#W1222212222222012213120322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114462822219820501WT@YYBT9P1222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446282120110101WTTP##09Z12222122204304100000000120070402WTTB#@P0P22222112204308100000000 -T320230111111446282120140102WTT9W9@W#12222122204301100000000120120405WTTTT@T#@12222112204304100000000 -T12023011111144643421200403951120233110511300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111114464343219710405WT@9#WYZ92222212222222012216110213913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446434120140307WTT9@@#9Z22222122206398100000000 -T12023011111144644724200414851120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114464473219660701WT@99@Y#P2221222222221012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446447120210918WTTY#ZZ@B22222212208398100000000 -T12023011111144645624700402991120213110598300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114464561219950109WTT0ZWZB#1222222222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446456120180918WT@0ZBZ#B12222222204398100000000 -T12023011111144646723900408801120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114464673219710401WTT#ZPZ0T2221222122225012212120750013069900000000000000000000000000000000000000000000000000000000000000000000000937000000000000 -T320230111111446467120120405WTTTZ@P@W22212222206304100000000120100307WT@090@#T22212222206305100000000 -T12023011111144647724200414851120433120000300000000000006540090000000000000000000000000000000000222222000000002229022 -T2202301111114464773219670921WTT00P@YB2222122122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000872000000000937 -T320230111111446477120040127WTTBBYPWW22221222206311100000000 -T320230111111446477120100918WTT#0ZP9922221222206306100000000120060418WT@Y#0#0P22221212206309100000000 -T12023011111144650224900404261120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114465022219770209WTTY0WP#T2222212222215012212110800013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111446502120050909WTTTB09#922222112204310100000000 -T12023011111144658622500405581110312110740300000000000004000150000000000000000000000000000000000222222000001692219012 -T2202301111114465861219850313WT@YWYPT02222212222223012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446586120150318WTT099PB#22222112204301100000000120050426WT@0P#0#W12222222204311100000000 -T12023011111144659622000400461120213110611300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111114465961219780107WT@0TWWBB2221222222221012216110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446596120100724WT@@@YYT#12212112204304100000000 -T12023011111144668925000402561120233120000300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111114466893219680418WT@ZP9ZB91222222222222012213110006013069900000000000000000000000000000000000000000000000000000000000000103200000000000000000000 -T320230111111446689120150318WTTZYPP#B12222122206398100000000 -T12023011111144678725200407301120533110835300000000000003880020000000000000000000000000000000000222222000000002229022 -T2202301111114467872219870421WTTWZZ99@1222221222222012208990006011079901000000000000000000000000000000000000000000000000000000000000100000000000000000000000 -T2202301111114467872219910411WT@YYBT9P1222222222222102208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446787120110423WTTZY@99P12222222204304100000000 -T320230111111446787120180721WT@Y0YBYZ12222212204398100000000120140527WTTYY99Z912222112204301100000000 -T12023011111144679824700409381120333120000110750000000005280380000000000000000000000000000000000222222000000002229022 -T2202301111114467983219800501WTTB990WW2122222222222012214110134713069900000000000000000000000000000000000000000000000000000000000000070000000000000000000204 -T320230111111446798120200318WT@ZB@0Z911122212206398100000000120200318WT@#TB9ZB11122222206398100000000 -T12023011111144683720800404431120213110611300000000025005280770000000000000000000000000000000000222222000000002229072 -T2202301111114468371219760709WTT0T0YZ#2222212222225012213110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446837120130412WTT#99T0@22222122204303100000000 -T12023011111144689423500404531120323110766300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111114468941219970724WT@TY#YPP2222212222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114468941219930911WT@#T#W9T2222211222222021212290095121011944000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111446894120180721WTT@TYY##22222112204398200000000 -T12023011111144698120600411031120213110611300000000000005280540000000000000000000000000000000000222222000000002229012 -T2202301111114469811219880924WTTB#PY#Z2222212222221012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111446981120170212WTTTBW9TT22222112204398100000000 -T12023011111144700420300414741120213110598300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111114470041220010318WT@@0WBZZ2222211222221012209110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447004120170118WTT@TT#WW22222112204398100000000 -T12023011111144702324200408571120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114470233219610201WTTYP0WTT2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447023120120327WTT9P#9YT12222122206304100000000 -T12023011111144707722000409411120312110766300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111114470771219850114WT@BBBYT@2222212222221012212110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447077120080726WTTP9ZTZ022222122204308100000000120040727WTTY00TPT22212212204312100000000 -T12023011111144711124200411401120712111480118040000000011650260000000000000000000000000000000000222222000000002229072 -T2202301111114471111219930723WT@TBP0WB2221222222221012210110870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447111120080721WT@ZZ00TP22212212204306100000050120080501WTTY999WP22212212204307100000050 -T320230111111447111120170412WTTP@0YT@22212212204398100000000120120227WTT0#PBW@22212212204302100000000 -T320230111111447111120200923WT@#PWY#@22212222204398100000000120180726WTTP#P@@W22212212204398100000000 -T12023011111144711322000412691120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111114471131220020421WTTW##@#W2222212222221012211110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447113120220524WTTT#@YZP22222112204398100000000 -T12023011111144713924700401011120433110939300000000000006540420000000000000000000000000000000000222222000000002229022 -T2202301111114471392219850704WTT#YWY#Z1222222222213012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111447139120050118WTT9Z@YPY12222222204311100000000 -T320230111111447139120120726WTTT9Z9T912222222204304100000000120060312WTTT@#PPZ12222212204310100000000 -T12023011111144715120300400971120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114471513219610121WTT9WPP@W2222212112224012216110650013069900000000000000000000000000000000000000000000000000000000000000000000001985000000000824 -T320230111111447151120120112WTTB0YZP022222112206304100000050 -T12023011111144724223500407161120212110493300000000005004170990000000000000000000000000000000000222222000000002229072 -T2202301111114472421219630424WT@BP@W9T2222211222221012212111200023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447242520060922WTTB#Y00022222122104310105340380 -T12023011111144727922000406191120233110516300000000000004170680000000000000000000000000000000000222222000000002229022 -T2202301111114472793219530914WTTTWY0T02222212122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001957000000000031 -T320230111111447279120040723WTT0TZ0Z#22212212206311100000000 -T12023011111144733320800414651120613111339300000000000010090140000000000000000000000000000000000222222000000002229012 -T2202301111114473331219920202WTT#@BZ#B2221222222221012214120154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447333120170412WT@9TZ9W022212122204398100000000 -T320230111111447333120200526WTTY0ZP#Z22212112204398100000000120180204WTTP0@YT#22212112204398100000000 -T320230111111447333120220523WTT@ZP90Y22212212204398100000000120210412WT@YZY@9Y22212122204398100000000 -T12023011111144737524200414351110213110542300000000000002350050000000000000000000000000000000000222222000000002229012 -T2202301111114473751219860309WT@@#@WZZ1222222222221012212210065421011801000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447375120140321WTTBBY0@T12222212204301100000000 -T12023011111144738722000407411120213110384300000000080005280460000000000000000000000000000000000222222000000002229072 -T2202301111114473871219770527WTT0W9BBT2221222222223012212110620023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447387120070218WTTZ0@99P22212222204310100000050 -T12023011111144738921700407751120233110493300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114473893219670527WT@P@ZPZW2222212122223012216110045613069900000000000000000000000000000000000000000000000000000000000000000000001349000000000000 -T320230111111447389120220423WT@9TPY9W22222122206398100000000 -T12023011111144741924200404891120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114474192219830307WT@BPYBZW2221222222211012213111140013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111447419120150712WTT##BY#W22212222204302100000100120060923WTTTT9@0P22212212204310100000000 -T12023011111144742824100402401120413111034300000000006007710270000000000000000000000000000000000222222000000002229072 -T2202301111114474281219770918WT@ZYW@@#2221222222221012216111000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447428120060501WT@B0B#9Z22212212204311100000000 -T320230111111447428120090111WTTZZB##Y22212222204307100000000120080527WT@BTTB9922212222204309100000000 -T12023011111144745822900401031120213110611106510000001905030230000000000000000000000000000000000222222000000252219012 -T2202301111114474581219950323WT@TWTTTB1222212222221012212110243623011400000000000000000000000000000000000000000000000000000000310000010000000000000000000000 -T320230111111447458120190702WT@B@09ZZ11222212204398100000000 -T12023011111144754420600414161110313110776300000000000001890010000000000000000000000000000000000222222000000002229012 -T2202301111114475441219700414WT@@9B#BW2222212222221012214110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447544120090305WT@@TBPPT22122112204305100000000120070204WTTB@P@PW22122122204308100000000 -T12023011111144769722000409871120212110611114000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111114476971219930104WTT#TY#9P2221222222223012216110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000752 -T320230111111447697120210526WT@WZY@B#22212212204398100000000 -T12023011111144774623700414331120313110835300000000000006540420000000000000000000000000000000000222222000000002229012 -T2202301111114477461219980723WT@ZWT9W#1222212222221012211110421821011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447746120200226WTTBBZTTZ12222122204398100000000120160504WT@9@#YW#12222122204398100000000 -T12023011111144774824500410691120312110835300000000000006540180000000000000000000000000000000000222222000000002229012 -T2202301111114477481219830918WT@Y#0@0B2222212222221012216110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447748120180718WT@TPT9@#22222112204398100000000120160421WTTBW0Z#Y22222122204398100000100 -T12023011111144782521000411361120333110734300000000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111114478253219880302WTTPW#0@B2222212222221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000012 -T320230111111447825120210913WT@Y9BPP#12222122207398100000000120190121WT@0WW9YY12222122207398100000000 -T12023011111144784823700414331120213120000106900000010004170150000000000000000000000000000000000222222000000002229012 -T2202301111114478481220020505WTTZZZTTB2221222222221012216110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000001583 -T320230111111447848520210112WT@@P9B@P22212222104398106090000 -T12023011111144792320600402131120213110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111114479231219850108WT@#Z0Y0W2222212222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111447923120160908WTTBZY9ZB22222122204398100000000 -T12023011111144798621700406141120232110601300000000001405210420000000000000000000000000000000000222222000000072219022 -T2202301111114479861219850909WTTBZ@Y#B2222211222221012216110431721099901000000000000000000000000000000000000000000000000000000000000002500000000000000000000 -T320230111111447986120130323WTTZBB9#@22222122204302100000000 -T12023011111144799221700406141120232110516300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111114479922219810921WT@YY@0P92222212122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000385054900000000 -T320230111111447992120190412WTT0TT#@@22222122204398100000000 -T12023011111144810722700408351120423111032300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111114481071219890505WT@00W9@Z1222222222222011212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114481071219740412WTTYT#YB#1222221222221021209290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448107120130113WT@BP##@012222212204303200000000120080512WTTYT9BBY12222222204308200000000 -T12023011111144812422000411281120313110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114481241219960221WTTTBW@@B2222212222225012216110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448124120220304WT@#900@B22222122204398100000000120190723WT@WZP0TZ22222122204398100000000 -T12023011111144816322000408562110323210740300000000000002740010000000000000000000000000000000000222222000000002229032 -T2202301111114481631219880313WT@9TPY9W1222221222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114481631219910522WT@9TPY9W1222222222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448163120130523WT@9TPY9W12222222204302200000000 -T12023011111144818020600414162120332210704300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111114481802219660118WT@T@P@Y#2212221222212012204290085213089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111114481802219700413WTTBY9@9@2212222222212022298290174313089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111448180120070518WT@PZ#WPY22122212204309200000000 -T12023011111144820725900412511120213110493300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111114482071220000927WTTBZT#ZW1222212222221012208110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448207120170404WTT#ZB0##12222122204398100000000 -T12023011111144822422000408891120413110537300000000000007710240000000000000000000000000000000000222222000000002229072 -T2202301111114482241219790326WTT#0WZW92222212222221012212110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448224120050901WT@#Z@YTW12222122204309100000000 -T320230111111448224120200313WT@P9YW@Y12222122204398100000000120190427WTTTWTTY#12222112204398100000000 -T12023011111144827420600400801120312110740300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111114482741219880723WT@ZWWZWY2222212222221012210111260023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448274120210702WT@PTY@WY22222112204398100000000420130321WTT9WBZPT22222112104302109140000 -T12023011111144827625900406841110313110740300000000000003410130000000000000000000000000000000355122222000001922219042 -T2202301111114482761219860912WTTY99YTY2122222222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000510 -T320230111111448276120190704WT@B#T@P@21222222204398100000010120140124WT@9W9Y@W21222222204301100000010 -T12023011111144838421000405411120312110740300000000000000010340000000000000000000000000000000000222222000000002229072 -T2202301111114483841219800101WTTBPWT992222212222221012213110870011011900210000000000120000000000000000000000000000000000000000040000132100000000000000000000 -T320230111111448384120150318WT@ZYB@W@22222122204312100000050120120323WT@9Y@0PY22222122204304100000050 -T12023011111144840922000406951110313110710141150000000005690010000000000000000000000000000000000222222000000002229012 -T2202301111114484091219940901WTTWYBBB#2222122222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448409120200722WT@0ZT@@022221222204398100000000120200412WTT@ZPP@T22221222204398100000000 -T12023011111144841223500412161120412110740300000000000004620170000000000000000000000000000000308122222000000012219072 -T2202301111114484121219810113WT@T#ZY901222212222221012211110830023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448412120100312WT@#TZW#Y12222122204306100000000 -T320230111111448412120140122WT@0WW0ZZ12222112204303100000000120120118WT@#Y@PP012222112204305100000000 -T12023011111144843724200407431120513111116300000000000008560220000000000000000000000000000000000222222000000322219072 -T2202301111114484371219850101WTT#9@ZY02222212222225012212110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000031 -T320230111111448437120150718WT@P@W#B#22222122204302100000000120130727WTTTZ9PZZ22222112204303100000000 -T320230111111448437120210923WT@9WYPWT22212222204398100000000120190312WT@@BW00Z22222112204398100000000 -T12023011111144847725100407671120213110599300000000000004860120000000000000000000000000000000000222222000000422219012 -T2202301111114484771219870712WTT0#WTYB2122222222225012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000041 -T320230111111448477120210309WT@0#999#11222212204398100000000 -T12023011111144860722000406191120233120000113010000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111114486073219710907WT@PTWYB02221222222222012216110006011069940000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111448607120180404WTTTZB#YP22212222206398100000000 -T12023011111144870624200414721120213120000300000000014005280030000000000000000000000000000000000222222000000002229012 -T2202301111114487061220010326WTTWB00BT1222222222221012216110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448706120220126WTTYYWZTZ12222222204398100000000 -T12023011111144872422000410051120333120000300000000000005280350000000000000000000000000000000000222222000000002229022 -T2202301111114487243219470924WTT00BZZZ2222212122225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000002255000000002056 -T320230111111448724120070301WT@WP@PBZ22222112206308100000000120050121WT@@T00YY22222122206311100000000 -T12023011111144874720500413621120213110631300000000001205280220000000000000000000000000000000000222222000000002229012 -T2202301111114487471219730421WT@Z@Y@BW2212222222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111448747120160912WTT099@9P22222122204398100000000 -T12023011111144876725600413441120233120000109240000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111114487673219760418WT@@@9BT#2122222222221012212110720011069934000000000000000000000000000000000000000000000000000000000000307800000000000000000000 -T320230111111448767120200714WTTZ@W##Y22222122206398100000000 -T12023011111144880023500408281120413111027300000000000007710380000000000000000000000000000000000222222000000002229012 -T2202301111114488001219840927WTT9TZ9Y#1222222222221012207910223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000023 -T320230111111448800120150507WT@YZ#Z9922221222204301100000023 -T320230111111448800120190323WTTB#WP0B22221212204398100000000120160311WT@9W00P922221222204398100000023 -T12023011111144884223700414331120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114488423219510321WTTT9P#PB2222212122224012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001801000000000000 -T320230111111448842120070313WTTPWYBZP12222122206307100000000 -T12023011111144885124200404051120332110751300000000000005280870000000000000000000000000000000000222222000000002229022 -T2202301111114488513219570918WT@YYWTT@2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000937000000000000 -T320230111111448851120130922WT@9Y90B022212222206302100000000120110423WT@YTPZW022212222206305100000000 -T12023011111144897121700406141120233110470300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111114489713219970518WTTW@Z0YP2222212222221012211110520811069926000000000000000000000000000000000000000000000000000000000000177700000000000000000000 -T320230111111448971120150226WTTBTB@YW22212222207301100000000 -T12023011111144910424200411401120213110611300000000000904030380000000000000000000000000000000000222222000001252219012 -T2202301111114491041219810107WTTB#ZWB@2222212222221012213110392121011819000000000000000000000000000000000000000000000000000000000000025000000000000000000000 -T320230111111449104120070407WTTT@W##Z22222112204308100000000 -T12023011111144912325900402631110113110376300000000000002820010000000000000000000000000000000000222222000000002229012 -T2202301111114491231220040209WTTYWYP091222212222221013211190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111144918725600414552110323210740300000000000001470010000000000000000000000000000000000222222000000002229032 -T2202301111114491871219790212WT@Z9##W92222211222221011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114491871219830511WTT9@@BWW1222212222221021215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449187120120418WT@9TPY9W22222122204304200000000 -T12023011111144920022000408891120413111034300000000100007710050000000000000000000000000000000000222222000000002229012 -T2202301111114492001219910421WTT#@W0ZP2222212222222012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449200120110123WT@W#T@TW22222122204305200000000 -T320230111111449200120150309WT@Y0YY#Y22222122204398200000000120130411WTT0@Y0B@22222112204303200000000 -T12023011111144921522000400811120313110766125900000000006540380000000000000000000000000000000000222222000000002229012 -T2202301111114492151219960424WTT@WW90@2221222222221012216110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449215120200401WT@TBZT@021222222204398100000000120170918WT@0PP0WW22212212204398100000000 -T12023011111144923620800403781120213110598300000000000005280600000000000000000000000000000000000222222000000002229072 -T2202301111114492361219640201WT@Z0Z9W@2222212222225012216110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449236120080321WT@@@WY9B22222112204307100000000 -T12023011111144929920800405391120233120000111990000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111114492993219940312WT@YW@YBZ2222212222221012214110006013069900000000000000000000000000000000000000000000000000000000000000513600000000000000000000 -T320230111111449299120180412WT@YWW9WT22222122207398100000000 -T12023011111144945020600403591120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111114494501219950112WTTZZ9TW92221222222221012213110095123010900000000000000000000000000000000000000000000000000000000000000000000000000000000008848 -T320230111111449450120210313WT@9BYW0@22212112204398100000000 -T12023011111144947122000400461120212110611105380000002005280150000000000035003000000000000000000222222000000002229012 -T2202301111114494711219910923WT@T0YTB@2221222222221012212210590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449471120160912WT@YZT@PB22212212204398100000000 -T12023011111144949020800411601120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111114494905219770101WT@0T9@@92222212222222012216110243613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449490120210411WTTYTW90#22222122208398100000000 -T12023011111144955320600404351120213110611300000000005005280850000000000000000000000000000000000222222000000002229072 -T2202301111114495531219680927WT@WZ#BW92222211222225012216110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449553120100718WT@ZB#PY@22222112204304100000000 -T12023011111144961222000405321120412110957300000000000007040710000000000000000000000000000000000222222000000672219072 -T2202301111114496121219890927WTTTPPP#91222212222221012212110720021011820000000000000000000000000000000000000000000000000000000000000000000000000000000000066 -T320230111111449612120090223WT@0BP#9T12212122204306100000100 -T320230111111449612120160227WT@#BPP0912212112204398100000000120110918WTTT9T9##12212122204304100000000 -T12023011111144964824700409321120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114496482219870722WT@TYW0YP2221222222211012212110382213089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111449648120080712WTT9T@PYY22212212204307100000000 -T12023011111144966920800404431120213110631300000000001205280080000000000000000000000000000000000222222000000002229012 -T2202301111114496691219900108WTTZBTT002222212222221012212120095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449669120210726WT@BP0TBY12222112204398100000000 -T12023011111144969520600400871120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111114496951219770418WT@B@#@BT2222211222223012213110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449695120130427WT@#WWP0P22222122204302100000000 -T12023011111144977420600404351110313110740300000000000004640010000000000000000000000000000000000222222000000002229012 -T2202301111114497741219810327WTT0Z#0Y02222212222225012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449774120150709WTTT@9Y@#22222122204301100000000120110126WT@#P@TBP22222112204305100000000 -T12023011111144982522000407411110313110835106900000000005900020000000000000000000000000000000000222222000000002229012 -T2202301111114498251219980727WT@@P9B#B2221222222221012211110025823010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449825120200427WTTY9W9#Y22222112204398100000000120170712WTT9PPYTY22222122204398100000000 -T12023011111144986622700408351120333110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114498662219620727WT@@B0@Y@1222221222212012209210600013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111114498662219730418WT@YYBT9P1222222222222022203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449866120060423WT@#ZB#@#12222212204309100000000 -T12023011111144989723500408281120213110598300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111114498971219970221WTTWT99Z#2222212222221012213110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449897120210522WTT#@0T0P22222112204398100000000 -T12023011111144991022000413731120433110376300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111114499102219960101WT@YYBT9P1222222222221012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449910420170123WT@YYBT9P12222222204398900000000 -T320230111111449910120220423WT@WYPTPP12222212204398100000000420200911WT@YYBT9P22222212204398900000000 -T12023011111144991425900402121120413110835300000000000007630030000000000000000000000000000000000222222000000002229012 -T2202301111114499141219930905WT@W9YYT#1222222222223012298210045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449914120100124WT@90P#TW12222212204305200000000 -T320230111111449914120220724WTT@#PWT912222222204398100000000120150527WT@WYBWPT12222212204301200000000 -T12023011111144992123700414331120533111034300000000000007710330000000000000000000000000000000000222222000000002229022 -T2202301111114499212219820901WTTPT#Y0@1222222222223012211920680013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111449921120110226WT@T#09ZW12222112204307100000000120100526WT@0P0P@Z12222122204308100000000 -T320230111111449921120130102WT@WBW#Y@12222112204303100000000120120127WT@YWB0@B12222122204305100000000 -T12023011111145012122700408351120512111170116550000000008880680000000000070003000000000000000000222222000000002229072 -T2202301111114501211219880112WTT@WWB0#2221222222221012212110700023011800000000000000000002000000000000000000000000000000000000160000000000000000000000000000 -T320230111111450121120100104WT@###W@B12212222204307100000000120080709WT@PWZPP012212212204308100000000 -T320230111111450121120200904WTTZBT0#Y12212212204398100000000120190918WT@#0ZP@T12212222204398100000000 -T12023011111145022025000414191120333120000300000000000005280450000000000000000000000000000000000222222000000002229022 -T2202301111114502203219610107WTT@BZWBZ2222212122222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000001351000000000000 -T320230111111450220120190527WT@P9Z0WY21222212206398100000000120170527WTTT@TZZ#22222122206398100000000 -T12023011111145044924600411871120233110516300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111114504493219640418WT@9Z#YZ@2222212122225012210110025811069903000000000000000000000000000000000000000000000000000000000000012000000940000000000000 -T320230111111450449120100427WT@B#YT#Z22222122206306100000000 -T12023011111145051324700409381120323110724300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114505131219790413WT@WZYT#02222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114505131219790112WTTBPZY9P2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111450513120120418WTT#@YWZT22222122204304200000000 -T12023011111145051725000414191120623111339300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111114505171219890914WT@0P#PP#2222212222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114505171219870923WT@PZPWW#2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111450517120170214WT@00@ZZT22222112204398200000000120090922WT@0BZTBY22222122204306200000000 -T320230111111450517120200705WT@YP#Y0Z22222112204398200000000120180307WTTTTZZTP22222112204398200000000 -T12023011111145053222000409971120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114505322219680423WT@P#B#P@2221222222213012298120154513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111450532120080923WT@P0##W@22212222204308100000000 -T12023011111145068423500404531120513111116300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111114506841219870401WT@T99ZTB2222122222221012211910045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111450684120080109WT@Y00WTZ22221222204307100000125420060318WT@90ZW9@22221212104309107750000 -T320230111111450684120100304WT@ZZT0Z#22221212204305100000125120090514WTT0ZY@Z922221212204306100000125 -T12023011111145068825900403711120313110786300000000577206540080000000000000000000000000000000000222222000000002229012 -T2202301111114506881219840423WT@PTW#YB2222212222223012211110095123010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111450688120090918WT@ZPP@WZ22222112204306100000000120070402WT@@#@BYP22222122204308100000000 -T12023011111145084022000407241120413111020300000000000006510150000000000000000000000000000000000222222000001202219012 -T2202301111114508401219970402WT@B0BZWY2222122222223012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000120 -T320230111111450840120180302WT@PYWZW@22221222204398100000000 -T320230111111450840120220524WTTB#W#WT22221222204398100000000120210107WTT#ZZ#Y@22221222204398100000000 -T12023011111145106820600404491120232110516300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111114510683219890212WT@9#WZP@2222212222211012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000088900000000 -T320230111111451068120060223WTTZZ@YYP22222122209309100000050 -T12023011111145120824700406741120423111034300000000498207710120000000000000000000000000000000000222222000000002229012 -T2202301111114512081219910224WT@PPB@@#2222211222222011213190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114512081220000108WT@YY0Y#P1222212222222021211190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451208120210924WTT0ZP0@B22222122204398100000000120180723WTTY0Z#TT22222122204398100000000 -T12023011111145121020600404491120323110835300000000053006540080000000000000000000000000000000000222222000000002229012 -T2202301111114512101220010527WT@#00#ZP2222212222222011212190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114512101219980707WT@09PZ9T2222211222222011216190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451210120200302WTT#Y9Z9#21222212204398100000000 -T12023011111145127425100407671120333110376300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111114512742219870912WTTZ9P@0B1222222222222012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451274120180424WTTZ@T9PB12222122204398100000000420120326WT@YYBT9P12222112204302900000000 -T12023011111145136222000404841120412110939300000000000007710040000000000000000000000000000000000222222000000002229072 -T2202301111114513621219760212WTT0#WY@T2222212222221012213110980023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451362120110418WTTWBZWBT22222112204305100000308 -T320230111111451362120160926WTTY@ZBBP22222112204398100000000120150412WT@9BZ0WP22222112204301100000000 -T12023011111145139423500412161120313110766300000000000006540590000000000000000000000000000000000222222000000002229072 -T2202301111114513941219920927WTT@90T0W2222212222221012216110660023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451394120220927WTT##@0TW22222122204398100000000120110712WTTYYP0T@22222112204303100000000 -T12023011111145141721700407751120233120000300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111114514173219670223WTT#@#WWW2222212222222012214110910013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451417120150921WTT0@@@#922222112206398100000000 -T12023011111145153123500414281120313110766117460000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111114515311219960212WT@WBY@BY2222212222221012212110055523011400000000000000000000000000000000000000000000000000000000220000000000000000000000000000 -T320230111111451531120200908WT@TW0Y#B12222112204398100000000120190412WT@WTBYTY12222122204398100000000 -T12023011111145156922000401711110213110598300000000000005280590000000000000000000000000000000000222222000000342219012 -T2202301111114515691219720312WT@#ZY@TP1222222222223012212110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451569120070513WT@9TP9WW12221222209310100000000 -T12023011111145162422000411282120233210536300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111114516243219980507WT@YYBT9P2222212222221012213210006013069900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111451624120050427WT@9TPY9W22222112207311200000000 -T12023011111145165624700406701120323110786300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111114516561219920326WTTT099TT2222212222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114516561219740423WT@9TPY9W2222211222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451656120160221WTT99909922222122204398200000000 -T12023011111145167524200414021120623111339300000000000010090070000000000160004000000000000000000222222000000002229012 -T2202301111114516751219830923WT@9BP@9#2222122222221011213910154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114516751219780327WT@YTB#BP2222121222221011212990085223011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111451675120050327WTTZZWZ@P22221222209310900000000120050121WTT0WYT9@22221212204311900000000 -T320230111111451675120210421WT@PB00WY22221212204398100000000120200423WTT@#B@WT22221212204398100000000 -T12023011111145174122000413731120633111034300000000112907710270000000000000000000000000000000000222222000000002229022 -T2202301111114517412219790326WT@YYBT9P1222222222222012209990154513079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114517412219820501WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451741120080904WTTYT0PT912222212204309100000000120050427WTTB0Z9Y912222212204312100000000 -T320230111111451741120180307WT@@ZWB9P12222112204398100000000120160709WT@0YBTWP12222112204301100000000 -T12023011111145177722000408891120413110969128600000004007710730000000000000000000000000000000000222222000000002229072 -T2202301111114517771219920705WTT#WT99#2221222222221012212110740023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451777120140123WT@Z0@T9022212212204398100000000 -T320230111111451777120210322WTTZ9@9Y922212222204398100000000120200114WTT00P@Y022212222204398100000000 -T12023011111145178420600402141120113110376300000000000002500490000000000000000000000000000000166122222000000012219012 -T2202301111114517841219850507WT@T##YWT2222212222221013212110501023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111145181422000410051120313110845129880000002006540200000000000000000000000000000000000222222000000002229012 -T2202301111114518141219940118WT@W9@B@P2221222222223012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451814120220427WT@@#ZWZW22212212204398100000050120210411WT@@0BY@P22212212204398100000050 -T12023011111145182720600414771120232110516300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111114518273219660413WT@ZWTZ@@2222212122225012213110154511069943000000000000000000000000000000000000000000000000000000000000134100001462000000000000 -T320230111111451827120120407WT@P9W9PT22222122206305100000050 -T12023011111145189825600414551120312110740300000000000005280670000000000000000000000000000000000222222000000002229072 -T2202301111114518982219810327WTTY@Y@0P1222212222212012212190293113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111114518981219700922WT@9@@9T#2221221222222022216191040023011400000000000000000000000000000000000000000000000000000000000000000000000000000000002499 -T320230111111451898120150312WTT#@9YYZ12222212204398100000000 -T12023011111145192624700402991120233110376300000000000003930740000000000000000000000000000000000222222000000242219022 -T2202301111114519262219820711WT@YYBT9P1222222222221012213910006011079909000000000000000000000000000000000000000000000000000000000000053700000000000000000000 -T320230111111451926120140909WT@YPZZPY12222222204302100000000 -T12023011111145195724700405901120233120000300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111114519573219520327WTTZ@PP#T2222212122225012215110006013069900000000000000000000000000000000000000000000000000000000000000000000002762000000000000 -T320230111111451957120090107WT@W9#Z@922222112206306100000000 -T12023011111145196020600402141120313110704300000000000006540180000000000000000000000000000000000222222000000002229012 -T2202301111114519601219800201WTTBTPPBB2222212222223012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111451960120110409WT@PBW99W22222122204305100000000120070426WTT@#T#Y@22222122204309100000000 -T12023011111145197822000412971120213110631300000000000005280280000000000000000000000000000000000222222000000002229072 -T2202301111114519781219690104WT@ZZY9@Z1222222222225012207210890023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111451978120120113WT@9TY0##12222222204304100000000 -T12023011111145199420800409061120333110740300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111114519942219810304WT@#9P#PY1222211122215012211110124813109900000000000000000000000000000000000000000000000000000000000000000000000715021900000000 -T320230111111451994120160118WT@WBTWW#12222112204398100000000120120423WT@0TPW@B12222122204304100000000 -T12023011111145207423800403361120213110598300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111114520741219970526WTTB#9#092222212222221012211110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452074120210527WTTTBBBZT22212112204398100000000 -T12023011111145209424900404261120413111034300000000000003710040000000000000000000000000000000000222222000004002219012 -T2202301111114520941219840405WTTW@PTPP1222222222223012210110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452094120090912WT@W090YY12221222204306100000000 -T320230111111452094120130714WT@TZ##BY12222222204302100000200120120726WT@PY@0BP12222112204303100000200 -T12023011111145214425900402831120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114521443219920714WT@#TT@9#1222212222221012211110006011069984000000000000000000000000000000000000000000000000000000000000227800000000000000000000 -T320230111111452144120130313WT@YBBY#B12222222207302100000000120130313WTTBZ0PTB12222222207302100000000 -T12023011111145225024200403941120233110516300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111114522503219840913WT@Z0PT001221222222223012213110105011069915000000000000000000000000000000000000000000000000000000000000109000000000000000000985 -T320230111111452250120090326WTT9P09T@12222222207306100000000 -T12023011111145227024200414851120312110781300000000000003920540000000000000000000000000000000261122222000000012219072 -T2202301111114522701219940221WT@WYT0ZZ2221222222221012208110830023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452270120160707WTTZ@@00@12212212204398100000000120130923WTT0BYPP922212112204303100000000 -T12023011111145232020300401921120233110516300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111114523203219780914WTTWBZBB02122222222221012216110006011069940000000000000000000000000000000000000000000000000000000000000261000000000000000000156 -T320230111111452320120150227WTTT@PPYP21222222206301100000156 -T12023011111145236724200403941120313110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111114523671219840512WTT#90@#B2222212222225012211110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452367120170923WTTT0B@P#22212212204398100000000120150423WTT0W#YT022212222204301100000000 -T12023011111145250325600411521120413110939300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111114525032219790308WT@#0Z0BP2222212122215012216110760013109900000000000000000000000000000000000000000000000000000000000000000000000781000500000000 -T2202301111114525031220040324WT@YZTYZY2222212222221083211190006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452503420050718WTTPT0PBB22222112104310109140025120050527WTTB9BZPB22222122204312100000025 -T12023011111145261622700408351120333110611300000000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111114526162219970713WTTBZ@YWB1222212222221012203920114913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452616120180227WTTW0Z0T012222212204398100000000120170923WT@#ZZPTB12222122204398100000000 -T12023011111145268625900402721120413111034300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111114526861219870114WTTW##BPY1222212222221012212111430023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452686120060901WTTY0ZYY@12221212204308100000000 -T320230111111452686120100907WTTT9#ZT@12222112204304100000000120080113WTTWTZT9Z12222112204307100000000 -T12023011111145270022000406191120613111395300000000188310090100000000000000000000000000000000000222222000000002229072 -T2202301111114527001219890723WTT#PP#Y92212222222221012212110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452700120110523WT@9B##TT22222222204304100000000 -T320230111111452700120140911WTT#YY0TP22222222204301100000000120130711WT@PWZ@0T22222222204302100000000 -T320230111111452700120220413WT@PB#Z0B22122222204398100000000120150323WTTW@##Y#22222222204398100000000 -T12023011111145274922000405321120313110766300000000020006540130000000000000000000000000000000000222222000000002229012 -T2202301111114527491219920102WT@PZ90YW2222212222221012209110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111452749120220214WTTPP0Z0W22222112204398100000000120200422WTTWT@WP922222112204398100000000 -T12023011111145282720600406751120213110611300000000300005280070000000000000000000000000000000000222222000000002229012 -T2202301111114528271219980224WTT99P9002222212222221012212110085223010900000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111452827120190322WTTY9Y9@#22222112204398100000050 -T12023011111145285320600407031120213110603300000000037104780080000000000000000000000000000000000222222000000502219012 -T2202301111114528531219760102WTTP09PY92222212222225012213110213921011804000000000000000000000000000000000000000000000000000000000000019700000000000000000000 -T320230111111452853120120726WT@9BTY@B22222122204303100000000 -T12023011111145292022700401571120433110893115000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111114529203219720104WTTW0@PY@1222212222225012216110441611069919000000000000000000000000000000000000000000000000000000000000320000000000000000000000 -T320230111111452920120110127WTTY0TZZZ12222112206302100000000 -T320230111111452920120160902WT@##YB9Y12222112206398100000000120140727WT@9@99WT12222112206398100000000 -T12023011111145298724200403511120233120000105930000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111114529873219710201WT@YZ0BYP2212212222225012212110144613069900000000000000000000000000000000000000000000000000000000000000502800000000000000000000 -T320230111111452987120210407WT@@W0P#Z22222112206398100000000 -T12023011111145305822000413732120133210274300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111114530585219760923WT@9B#Y9#2222222222221013216121120023069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111145313524700402991120113110281300000000000204170060000000000000000000000000000000000222222000000002229012 -T2202301111114531351220000712WTTBT@#PW2222212222221013211190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111145331222000403531120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114533123219590512WT@0Y90B@2222212122222012213120055513069900000000000000000000000000000000000000000000000000000000000000000000001342000000000000 -T320230111111453312120100413WT@#Z@0YZ22222122206304100000000120070301WTT0ZZ#YP22222112206307100000000 -T12023011111145334825900402632120313210875300000000000002050080000000000000000000000000000000136122222000003132219032 -T2202301111114533481220030426WT@@YPY@#2222212122221012209110065423109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T2202301111114533481219980912WTTB0@TY02222211222221012209190006021011810000000000000000000000000000000000000000000000000000000000000062300000000000000000000 -T320230111111453348120220112WT@#BBP9022222112204398100000000 -T12023011111145338525600414551120413110939116840000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111114533851219860401WT@TY#TZ02222212222223012216110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000002529 -T320230111111453385120140409WTTYP#BP#22212122204303100000449 -T320230111111453385120170712WTT9#BBYW22222112204398100000591120150413WT@Z9T#B#22222122204302100000591 -T12023011111145354022000405701120333110598300000000020005280110000000000000000000000000000000000222222000000002229022 -T2202301111114535402219750407WTTTY9Y9W2212222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111453540120070707WT@YB0ZBB22122222204309100000000120060923WT@##@0B#22122212204310100000000 -T12023011111145362622700408491120323110835300000000352106540140000000000000000000000000000000000222222000000002229012 -T2202301111114536261219620327WT@#YB@TB2222211222222011213190154523011800000000000000000000000000000000000000000000000000000000400000000000000000000000001100 -T2202301111114536261219650204WT@W#T9W@2222212222222021213190154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111453626120050301WTTPY#PY922222112204309100000000 -T12023011111145368924200414021120213110598112270000050005280040000000000000000000000000000000000222222000000002229012 -T2202301111114536891219960321WT@Z#BY@Y2221222222223012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111453689120190721WTTB#WW0Y21212112204398100000000 -T12023011111145374323500409141120413111034300000000003007710330000000000000000000000000000000000222222000000002229012 -T2202301111114537431219900724WT@ZPTZZ92122222222221012212110560423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111453743120120423WT@00YTBT22222122204304100000000 -T320230111111453743120220313WT@P#@@@B21222222204398100000000120140218WT@99@#@922222112204302100000000 -T12023011111145375024900404261120413110939300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111114537501219780112WTT99YW@B2222212222221012213110154523010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111453750120160323WTT@@09@922222112204398100000000 -T320230111111453750120200704WT@00@TZP22222122204398100000000120180709WT@PZ@#B#22222112204398100000000 -T12023011111145375320600402141120212110557300000000000005280420000000000000000000000000000000000222222000000002229012 -T2202301111114537531219810313WT@9WT@0T2222212222221012210110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111453753120060407WTT@Z9ZYP22222122204309100000000 -T12023011111145378622000413731120623111339300000000060010090040000000000000000000000000000000000222222000000002229012 -T2202301111114537861219800705WT@YPB#WP2222211222222011298290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114537861219910202WT@T@Y9#T2222212222222021298290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111453786120150102WT@Z9ZW0B22222112204398200000000120140112WT@P9@TBB22222112204398200000000 -T320230111111453786120210413WT@WP99T922222122204398200000000120190426WT@BB#W9W22222112204398200000000 -T12023011111145380424200404281120332110740300000000000005280570000000000000000000000000000000000222222000000002229022 -T2202301111114538042219810413WT@PWBBPY2222211222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111453804120110713WTTYWZP#022212122204304100000000120080923WTTBZ0#@T22222222204306100000000 -T12023011111145389920600402141120213110376300000000000004240080000000000000000000000000000000000222222000000002229012 -T2202301111114538991219820114WT@BW9Y9P2222212222221012209110095123010100000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111453899120230423WT@WYBB0B22222112204398100000000 -T12023011111145390422000405702120323210766300000000200506540160000000000000000000000000000000000222222000000002229032 -T2202301111114539041219890311WT@090T9W2222211222222011212290174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114539041219890707WT@#P#0TY2222212222222021212290174321011920000018000200000000000000000000000000000000000000000000130000000000000000000000000000 -T320230111111453904120110913WT@B9TBT022222112204305200000000 -T12023011111145391522000413731120212110407300000000000005280520000000000000000000000000000000000222122000000002229072 -T2202301111114539151219800412WT@WY9TPY1222222222221012213120920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111453915120190101WTTW0@@YT12212212204398100000000 -T12023011111145391924500410691120333110740300000000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111114539192219870227WT@B99##T2222212122215012212110382213109900000000000000000000000000000000000000000000000000000000000000000000000520041400000000 -T320230111111453919120110926WTTTWP0TP22222112204305100000000120070904WTTBWWZYP22222112204309100000000 -T12023011111145410921700410451120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111114541091219740307WT@WP@BT02222212222223012213110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454109120050101WT@PZP#0922222122204311100000000 -T12023011111145415320600407031120433120000300000000000006540800000000000000000000000000000000000222222000000002229022 -T2202301111114541533219780907WTTPPPTY02212212222222012211110810013069900000000000000000000000000000000000000000000000000000000000000152300000000000000000000 -T320230111111454153120070212WT@#PW0TW22222122207307100000017 -T320230111111454153120130501WT@##9#WW22222122207301100000017120100712WTT0T0@9B22222122207303100000017 -T12023011111145415622000401711120412110939300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111114541562219640113WTT#@9TP@2221221222212012216111000013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111114541561219770724WTTZZZ9PZ2222212222222022212191670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454156120080424WTTW@@@W922222212204307100000000120070412WTT90ZP0022222222204308100000000 -T12023011111145417224500405941110113110376300000000000003360080000000000000000000000000000000000222222000000272219012 -T2202301111114541721219850101WT@#P@TY@2222212222221013216190144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111145433824200409091120433110939300000000000006540170000000000000000000000000000000000222222000000002229022 -T2202301111114543383219700113WTT#WYBZW2221222222213012212110105013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111454338120120121WTTTW@#ZY22212212206304100000000 -T320230111111454338120150412WTTT@0#Y922212222206301100000000120130723WT@9TBY@#22212212206306100000000 -T12023011111145439524200407271110413110939300000000002506710110000000000000000000000000000000000222222000000002229012 -T2202301111114543951219900708WTTWTZBTZ2221222222221012211110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454395120120923WT@0BBZTY12212222204302100000000 -T320230111111454395120220507WT@ZB9PZT12212222204398100000000120140926WT@P09@YP12212222204302100000000 -T12023011111145446822000407791120313110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111114544681219900912WT@#Z#Z9Z2222212222223012216210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454468120210718WT@B0WWYP22222122204398200000000120120323WT@T@PT@P22222122204398200000000 -T12023011111145453622000407411120323110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114545361219970722WTTW#9ZWY2222211222222011298290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114545361220010323WTTZ@0P@02222212222222021298290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454536120210711WTT0ZPP##22222112204398200000000 -T12023011111145456124200403941120213110516112270012000000010220000000000000000000000000000000000222222000000002229012 -T2202301111114545611220010407WTTZB#0Z#1222222222221012210110223811011700200000000000000000000000000000000000000000000000000000010000135400000000000000000012 -T320230111111454561120200924WTTZW9YPT12222122204312100000050 -T12023011111145456420600407031120333110740300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111114545643220010314WT@9Y0Y#Y2222212222221012212110006011069937000000000000000000000000000000000000000000000000000000000000274500000000000000000000 -T320230111111454564120080322WT@P9WZ9B22222112207307100000000120060723WT@TTPB@922222122207309100000000 -T12023011111145456724700403421120213110576300000000000605280450000000000000000000000000000000000222222000000002229012 -T2202301111114545671219820304WTT0W9P#@2222212222225012216110461423011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111454567120120201WT@ZY#0P922222122204303100000050 -T12023011111145461824700406701120413111034300000000000006930040000000000000000000000000000000000222222007700012219012 -T2202301111114546181219780311WTT9@Z99T2122222222223012213110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454618120050507WTTT0T99911222222204312100000000 -T320230111111454618120110512WTTP@990P21222222204306100000000120070513WTT#WZWP011222212204309100000000 -T12023011111145468425900402831120313110766300000000000006540300000000000000000000000000000000000222222000000002229012 -T2202301111114546841219950127WT@P90T#B2222222222221012211110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454684120190207WT@@Y90W@12222122204398100000000120160327WTTBZPYYT12222222204398100000000 -T12023011111145471324100402401120613111339300000000000607710110000000000000000000000000000000000222222000000002229012 -T2202301111114547131219950113WT@YZ9W0P2222212222222012212190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114547132219840907WT@Z0B#WZ2222211122212022212190006013109900000000000000000000000000000000000000000000000000000000000000000000000912002200000000 -T320230111111454713120160527WTTB#ZZZT22222122204398100000000420120926WT@@T#0B#22222112104302109140000 -T320230111111454713120200109WT@WWZPP022222112204398100000000120180507WT@#W#0W#22222122204398100000000 -T12023011111145476725900406081120513111231300000000000008880070000000000000000000000000000000000222222000000002229042 -T2202301111114547671219970527WTTYZ#TT92221222222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454767120190726WT@TYWP9Z12212212204398100000000120180718WTTTT@PPB12212212204398100000000 -T320230111111454767120220212WTT@0Z##@12212212204398100000000120200701WT@T900B@12212222204398100000000 -T12023011111145485124200403941120213110611300000000003505280200000000000000000000000000000000000222222000000002229012 -T2202301111114548511219890318WT@WZBP#B1222212222225012213110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454851120200318WTTP9WP9#12222112204398100000000 -T12023011111145485222900405641120233120000106920000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111114548523219700926WTTWT#W@B2222212122222012216110006011069912000000000000000000000000000000000000000000000000000000000000119500001167000000000537 -T320230111111454852120220705WTTYTYBP922222112206398100000000 -T12023011111145490120900411721120233110516300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111114549012219830104WT@YT9T902222212222215012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000084100000000 -T320230111111454901120130526WT@T09T9P12222122204302100000000 -T12023011111145493124100408431120213110611300000000002005280430000000000000000000000000000000000222222000000002229012 -T2202301111114549311219910104WTT#9ZZWT2222212222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111454931120180905WT@#W#P0W22222112204398100000000 -T12023011111145499123300410111120233110516300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111114549913219640112WT@0ZY#TB2212221122223012212110441613069900000000000000000000000000000000000000000000000000000000000000000000001254000000000000 -T320230111111454991120160112WT@PTWW@@12122212206398100000000 -T12023011111145500624100400671120213110611300000000000405280130000000000000000000000000000000000222222000000002229012 -T2202301111114550061220020107WT@W90#ZB2222212222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455006120210412WT@##9YP@22222112204398100000000 -T12023011111145510724700413762120113210376300000000000004170020000000000000000000000000000000000222222000000002229032 -T2202301111114551071220000912WTT9Y@TWW2222122222221013212990035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111145511524200403941110213110611300000000000000800010000000000000000000000000000000000222222000000002229012 -T2202301111114551151219980909WTTPBY@YZ2222212222222013212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114551155220010113WTT0@T@P#2222211222222023212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111145518124500405941120333110741300000000000005280970000000000000000000000000000000000222222000000002229022 -T2202301111114551812219810313WT@YTWB@Y2222212222215012207110134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111455181120150412WTTT00#WB22222112204398100000000120130109WTTWB##@@12222112204303100000000 -T12023011111145528224700405831120533110611300000000010002630330000000000000000000000000000000000222222000002652219022 -T2202301111114552822219900323WT@YYBT9P1222222222222012216990006011079940000000000000000000000000000000000000000000000000000000000000250000000000000000000000 -T2202301111114552822219810114WT@YYBT9P1222221222222022216990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455282420050104WT@YYBT9P22222212204309900000000 -T320230111111455282120190126WTT@BY#9W12222212204398100000000120160409WT@ZPZ0#@12222222204398100000000 -T12023011111145533721700403821120233110516300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111114553373219580921WTTYY99@T2222212122213012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000445048900000000 -T320230111111455337120100212WTTBTTY@Z22222122206305100000000 -T12023011111145535824900404261120212110516300000000000200010400000000000000000000000000000000000222222000000002229012 -T2202301111114553581219790327WTTT0@ZP@2222212222221012213110510911011700200000000000000000000000000000000000000000000000000000040000135400000000000000000000 -T320230111111455358120200407WTT#ZWYPY22222122204398100000000 -T12023011111145539122000413731120313110766300000000000006540260000000000000000000000000000000000222222000000002229012 -T2202301111114553911219990922WTTZ0BTYW2221222222221012211110273323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455391120220723WT@9TPY9W22212112204398100000000120170513WTT@PB9BZ22212212204398100000000 -T12023011111145541924500405941120212110606300000000002005280310000000000000000000000000000000000222222000000002229012 -T2202301111114554191219900904WT@TY@BTZ2222212222221012212120322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455419120200427WTTZP000Y12222112204398100000000 -T12023011111145543224700401281120213110611300000000000003160490000000000000000000000000000000211122222000000012219012 -T2202301111114554321219840418WT@TBP9WY2222212222221012216110501023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455432120140527WTTBBY@#Y22222112204301100000000 -T12023011111145545023500410671120212110611300000000000005280360000000000000000000000000000000000222222000000002229072 -T2202301111114554501219680908WTT@BWWWP1222212222225012209111010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455450120050721WTTPTT9B#12222122204310100000000 -T12023011111145545322000408891120613111339300000000000010090080000000000000000000000000000000000222222000000002229012 -T2202301111114554531219870714WT@Y0W#ZW2222122222225012210910095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455453120050307WT@PZW0P022221212204310900000000 -T320230111111455453120130409WT@B0TB9@22221222204304100000000120070227WT@TYTBZ922221222204310100000000 -T320230111111455453120190401WTTB@BBYB22221212204398100000000120160409WTTZ0WPW#22221222204301100000000 -T12023011111145555224200414721120313110835300000000000003920120000000000000000000000000000000261122222000000012219012 -T2202301111114555521219970127WT@W99#T92211212222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455552120220307WTT@#Y0WT22112122204398100000000120190305WT@P#0@ZT22112112204398100000000 -T12023011111145557121000404881120332110792300000000390006540160000000000000000000000000000000000222222000000002229022 -T2202301111114555711219730313WTT00WPZW2222212222221012212111260023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455571120110926WTTZT99@P22212222204305100000000120100913WTT0BPZ@Y22212222204306100000000 -T12023011111145561925600400661120333120000300000000000005280250000000000000000000000000000000000222222000000002229022 -T2202301111114556193219540424WT@BZZ##Z2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001256000000001200 -T320230111111455619120160302WTTYP9W@@22222112206398100000000120120927WTTPWZB@912222212206303100000000 -T12023011111145562320600404601120233120000300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111114556235219720908WT@YYPYP@2222212122224012212120035713109900000000000000000000000000000000000000000000000000000000000000000000002648000000000000 -T320230111111455623120060413WT@W0#ZZW21212122209309100000000 -T12023011111145567622700408351110113110281300000000000000940010000000000000000000000000000000000222222000000002229012 -T2202301111114556761219940524WTTZT#PT@1222222222221013210190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111145568820200409311120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111114556885219770314WT@#PYYP92222212122221012298120006013109900000000000000000000000000000000000000000000000000000000000000154400001602000000000000 -T320230111111455688120060518WT@TWWW@B22222112209310100000000 -T12023011111145569722000409871120333110396113000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111114556972219960124WT@YYBT9P1221222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455697120190118WT@PTBZPZ12212212204398100000000420130104WT@YYBT9P12212212204398900000000 -T12023011111145582821700407751120413110958300000000000006540140000000000000000000000000000000000222222000000002229072 -T2202301111114558281219930427WT@@T#@902222212222221012212110750023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111455828120190509WT@#PZYPZ22222112204398100000000 -T320230111111455828420220213WT@YTYZ0Z22222122104398109140000120190509WTTYP@#T922222122204398100000000 -T12023011111145597523500405981120333110516300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111114559752219850326WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455975120180404WT@0BTWY012222212204398100000400120140105WTT00TYWP12222122204301100000000 -T12023011111145598824200404891120433110939300000000000006540220000000000000000000000000000000000222222000000002229022 -T2202301111114559881219810318WT@9PB9BB2222122222221012209110710023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111455988120130701WTTZZZP0022122222204302100000000 -T320230111111455988420190321WT@TBPT@022122222104398109140000120160123WT@#@ZB@Y22122212204398100000000 -T12023011111145615520600414771120432110740300000000000005280880000000000000000000000000000000000222222000000002229022 -T2202301111114561552219890213WTTPB9BT#2222212222211012216120431713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111114561552219780918WTT9Z@ZW@1222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111456155120220309WT@T9#0ZW12222212204398100000000120160212WT@BY##PW22222112204398100000000 -T12023011111145616023900400641120233120000106370000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111114561603219770201WTTWZB0YY2222211222221012212110491111069940000000000000000000000000000000000000000000000000000000000000258000000000000000000000 -T320230111111456160120150121WT@9Z@PBP22212222209398100000000 -T12023011111145625822000406191120333110740300000000000005280560000000000000000000000000000000000222222000000002229022 -T2202301111114562582219810401WT@YYZP0#2222212222213012212110322813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111456258120090323WT@BPYW#B22222122204303100000000120070309WTT#YWB@T22222122204305100000000 -T12023011111145628322000413731120433110835300000000000006540620000000000000000000000000000000000222222000000002229022 -T2202301111114562832219840512WT@YYBT9P1222222222221012203920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111456283120090904WTT9T@@ZY12222212204306100000000 -T320230111111456283120200709WTT#B99BY12222222204398100000000120190908WTTW9#0WZ12222212204398100000000 -T12023011111145645324700403421120233120000106070000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111114564533219610721WTTWY###02222211222221012212110006011069924000000000000000000000000000000000000000000000000000000000000916600000000000000000000 -T320230111111456453120160218WT@TW@T9@22222112206398100000000 -T12023011111145651322000413691120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114565131219880407WT@9TPY9W1222222222221012214210045623011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111456513120150127WT@9TPY9W12222212204302200000000 -T12023011111145659920600400871120722111480300000000000011650050000000000000000000000000000000000222222000000002229012 -T2202301111114565991219830101WT@9TPY9W2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114565991219830314WT@@0Z#YT2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111456599120060713WT@9TPY9W22222112204309200000000 -T320230111111456599120100407WT@9TPY9W22222122204306200000000120080912WT@9TPY9W22222112204307200000000 -T320230111111456599120180327WTTP9W@9Z22222122204398200000000120130327WT@WBBP0#22222122204303200000000 -T12023011111145666323500410671120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111114566635219850704WTTZBTYB92222212222223012212110006011069937000000000000000000000000000000000000000000000000000000000000326500000000000000000000 -T320230111111456663120150723WT@B9ZZZB22222112208398100000000 -T12023011111145667022000413731120523111116300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111114566701219860912WTT0WB9BT2212221222222011210290055521011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114566701219890908WT@ZBTZZ02212222222222021209290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111456670120180407WT@TZBPWY22122212204398200000000 -T320230111111456670120210926WTTZT00@@22122222204398200000000120190307WT@#YZ0@P22122222204398200000000 -T12023011111145672422000400811120213110598120300000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111114567241219960427WT@WYP9P@2221222222221012216120352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111456724120200305WT@Y9WPWT22212222204398100000000 -T12023011111145674824200403511120313110766113020000000005880070000000000000000000000000000000000222222006500012219012 -T2202301111114567481219960902WTTY###001222222222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111456748120200723WT@#Y0BZ912222222204398100000000120140323WT@Y@W9T#12222212204302100000000 -T12023011111145682420600402141120213110611116320000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111114568241219990505WTTPZTW#Z2222212222221012208110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000500 -T320230111111456824120180121WTTTT99@B22212222204398100000474 -T12023011111145690222000405181120213110598300000000015005280310000000000000000000000000000000000222222000000002229012 -T2202301111114569021219840322WT@Y@@Y@91222212222221012216110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111456902120080304WT@YT@0B022222122204307100000000 -T12023011111145703520600414871120313110835300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111114570351219800712WT@ZWPW#92222212222225012214110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457035120180109WTT0TZZ9T12222112204398100000000120150712WT@Z9@TBW12222122204301100000000 -T12023011111145704322000405181120212110607300000000000004900200000000000000000000000000000000000222122002600122219012 -T2202301111114570431219950504WTT9BPY902221222222221012212110213921011801000000000000000000000000000000000000000000000000000000000000004400000000000000000000 -T320230111111457043120120226WT@PYBT#@22212222204304100000000 -T12023011111145706325100407671120233110446300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114570635219810204WT@YWYY9Z1222222222221012211110560413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457063120060726WT@BWP90Y12222212209309100000000 -T12023011111145723420800405141120213110493300000000277205280040000000000000000000000000000000000222222000000002229012 -T2202301111114572341220000205WT@YTT9@Y2222212222221012212120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457234120210427WTT@W#@B#22222112204398100000000 -T12023011111145730720600402141120522111000300000000150205320320000000000000000000000000000000355122222000000012219072 -T2202301111114573071219780927WT@#WP0TZ2222122222221011212990750023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114573071219780102WTT@9WYB92222121222221011212990441623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457307120100121WTTYZT9YW22221212204307100000000 -T320230111111457307120210214WTTZBBW0Y22221222204398100000000120160413WTT#YP@0W22221222204301100000000 -T12023011111145736620600402131110313110835300000000000004210010000000000000000000000000000000000222222000000002229012 -T2202301111114573661219990501WT@@P@T9@2221212222221012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457366120210326WTT0#0PPT22212122204398100000000120180321WTT@009YP22212222204398100000000 -T12023011111145737122600405051110213110493300000000000003910010000000000000000000000000000000000222222000000002229012 -T2202301111114573711219790113WTTZ00#@@1222212222225012216110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457371120090322WTTY#TB9912222112204305100000000 -T12023011111145737322000407411120623111339300000000000010090110000000000000000000000000000000000222222000000002229012 -T2202301111114573731219810721WT@9TPY9W1222211222222011211290124823011800000007000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114573731219860301WT@9TPY9W2222212222222021211290124823011800000008000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457373120090112WT@9TPY9W22222122204307200000000120060704WT@9TPY9W22222112204309200000000 -T320230111111457373120160212WT@9TPY9W22222112204398200000000120160212WT@9TPY9W22222112204398200000000 -T12023011111145780925900407441120312110818300000000000006540050000000000000000000000000000000000222222000000002229072 -T2202301111114578091219850126WTTPT9B#91222222222221012213110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457809120120418WTT9@W@0P12222212204304100000000120090926WTTB0Z0@Y22222112204307100000000 -T12023011111145791124200403941120233110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114579113219710423WT@#TY0YZ1222212222223012208210006011069906000000000000000000000000000000000000000000000000000000000000034400000000000000000000 -T320230111111457911120060301WT9TT@BP@12222122207308100000000 -T12023011111145796521000412411120413110972300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111114579651219970504WT@BYZ@Z91222212222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111457965120190426WTTZ#Y00012222122204398100000000 -T320230111111457965120220113WTTZ@WYY912222112204398100000000120210318WTTYBY@T022222112204398100000000 -T12023011111145799822000407231120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114579982219840413WT@TZ#ZZZ2122222222215012212120760013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111457998120140912WTTTP@ZZW11222212204303100000000120100126WTT@T#YP011222222204304100000000 -T12023011111145801424100402401110313110674300000000000001470010000000000000000000000000000000000222222000000002229012 -T2202301111114580141219830723WTT09Y#@#1222222222223012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111458014120120923WTT@PBYY012222222204305100000000120060307WT@Z9PB9912222212204310100000000 -T12023011111145809820600414251120233110516300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111114580982220000918WTT@Y@PT92222212122211012210110006013109900000000000000000000000000000000000000000000000000000000000000000000000086084800000000 -T320230111111458098120210511WTT#9P0@P22222112204398100000000 -T12023011111145818422000407412120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111114581841219880326WT@9TPY9W2222211222222011298290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114581841219920104WT@9TPY9W2222212222222021298290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111458184120190907WT@9TPY9W22222122204398200000000 -T12023011111145824121000405411120313110835300000000032006540350000000000000000000000000000000000222222000000002229012 -T2202301111114582411219670307WT@T#990P2222222222225012213120362423010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111458241120070113WT@0ZBYTW22222222204308100000000120050727WTTPYPYPB22222222204310100000000 -T12023011111145825620600402142121113212324300000000508915390140000000000000000000000000000000000222222000000002229032 -T2202301111114582561219790423WTT0PPBWT2221221222222012212190124823099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114582561219800423WT@WB@9PP2221222222222022212190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111458256120050423WTTT#Y@0922212212204311200000000 -T320230111111458256120080423WT@Y0YT0022212222204308100000000120060423WT@9BYZ#B22212222204310100000000 -T320230111111458256120100726WTT0Z0TPB22212222204306100000000120090326WTTYYBBT@22212212204307100000000 -T320230111111458256120140318WT@Z#B0P922212212204302100000000120120714WTTY#@PYW22212212204304100000000 -T320230111111458256120220123WTTPTP0ZP22212212204398100000000120170307WTTWB#PYW22212212204398100000000 -T12023011111145832720600400801120333120000300000000000005280510000000000000000000000000000000000222222000000002229022 -T2202301111114583275219730712WTTZY09T02222212122222012215110006013109900000000000000000000000000000000000000000000000000000000000000000000002594000000000000 -T320230111111458327120110708WTTP9Z0BY22222122209302100000000120100123WTTT#YY#P22222122209305100000000 -T12023011111145834624200409091120213110611300000000000002680050000000000000000000000000000000000222222000002602219012 -T2202301111114583461219950427WT@99BY9Y2221222222221012213110065421011809000000000000000000000000000000000000000000000000000000000000052000000000000000001760 -T320230111111458346120110701WTTB9Z@#Z22212222204305100000000 -T12023011111145838625000414191120213110611114720000050005280040000000000070002000000000000000000222222000000002229012 -T2202301111114583861220000711WTT0P#@9P1222212222221012212110055521011717000000000000030000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111458386120180911WTT#909ZB12222222204398100000050 -T12023011111145851922000408891120412110954135510000000007710250000000000000000000000000000000000222222000000002229072 -T2202301111114585191219910123WTTBPY#BB2221222222221012216120790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111458519120110409WT@0PZP@022212212204305100000000 -T320230111111458519120210111WTTYYZTW#22212212204398100000000120190712WTTTY9YWW22212212204398100000000 -T12023011111145874123500408281120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114587413219630122WT@W#9YZP2222212222222012210110105013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111458741120090927WTTZTTTWY22222112206307100000000 -T12023011111145876920600404351120332120000300000000000005280570000000000000000000000000000000000222222000000002229022 -T2202301111114587693219710926WTT@W#WBT2222212222223012213110263413069900000000000000000000000000000000000000000000000000000000000000378400000000000000000000 -T320230111111458769120170907WTT0#W#WP22222122206398100000050120160207WT@#0YP@#22222112209398100000050 -T12023011111145887621700406141120333110611300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111114588762219770927WT@YYBT9P1222222222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111458876120090401WT@P#Z##P12222222204307100000000120040223WTT9YYPZ@12222212204312100000000 -T12023011111145892324200414851120333110634300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111114589233219880327WTT#9WBY@2222122222222012211110095113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111458923120190726WT@@BWB9Z22221222207398100000000120180327WT@9PYTYZ22221212207398100000000 -T12023011111145901420600414161120312110835300000000001006540090000000000000000000000000000000000222222000000002229012 -T2202301111114590141219750923WTTWWB##Z2212222222225012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459014120090905WT@Z00WPW22122222204307100000000120070413WTTBZY@BY22122222204309100000128 -T12023011111145907925100407671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114590793219400914WTT@BBBTT2222211122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000485000000001781 -T320230111111459079120110326WT@BZ@P9#22222112206304100000000 -T12023011111145911424200411401120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111114591141219770412WTT0Y9BZ02222222222223012216210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459114120100422WTTW@WTP022222122204307100000000 -T12023011111145913624200410211120412110983105540000008006540160000000000070025000000000000000000222222000000002229072 -T2202301111114591361219830909WT@@TTB0W2212222222221012216110610023011400000000000000000000000000000000000000000000000000000000280000000000000000000000000000 -T320230111111459136120060107WT@YZ#BY@22122222204310100000000 -T320230111111459136420130413WT@ZB00ZZ22221222104303108220000120100907WTTWPY0PW22221212204306100000000 -T12023011111145933722000405841120333110598300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111114593372219810905WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459337120110723WT@@BYYP912222112204306100000000120090707WT@@WYWBY12222122204305100000000 -T12023011111145936124200414021120233110470300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111114593615219680718WTTZY@0Z02212222222222012209210035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459361120120321WTT@ZWYZ022122212209303100000000 -T12023011111145938825900402721120332110557300000000000005280380000000000000000000000000000000000222222000000002229022 -T2202301111114593882219800126WT@YYBT9P1222222222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459388120170504WT@B0#T#@12222222204398100000000120080112WTTZ@@P@T12222212204306100000000 -T12023011111145939222700408351110332110740300000000005900690120000000000000000000000000000000000222222000005852219021 -T2202301111114593922219900709WT@#P@9YT1222212222211012212110441613089900000000000000000000000000000000000000000000000000000000000000000000000000021600000000 -T320230111111459392120190404WTTY@0YW#22222112204398100000050120190404WT@Y@W0##22222122204398100000050 -T12023011111145942122000408891110333110524300000000000002630010000000000000000000000000000000000222222000000002229021 -T2202301111114594212219850427WTTP9B@9@2221222222223012216910006011079922000000000000000000000000000000000000000000000000000000000000135700000000000000000000 -T320230111111459421120200301WT@0W0WWP22212212204398100000000120040305WTTZ@WTYB22212212204311100000000 -T12023011111145943224700405832120323210724300000000500006540040000000000000000000000000000000000222222000000002229032 -T2202301111114594321219830112WTTYY#@#Z2222211222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114594321219850121WTTZY9PP@2222212222221021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459432120060902WTTZ0TBT022222122204312200000000 -T12023011111145944424600406061120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114594441219740513WTTBY@BTT2222212222225012216110045623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459444120050924WT@#B#0#022222112204311100000000 -T12023011111145945825900402721120423110846300000000000007710380000000000000000000000000000000000222222000000002229012 -T2202301111114594581220000107WT@#0PPZ91222212222221011212190312923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114594581220000326WTT##0#W#1222221222221011212190243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459458120200501WT@#ZY0Y012222212204398100000000120200501WTT#0#Z0Y12222212204398100000000 -T12023011111145954024200408571120333120000300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111114595403219550301WTTBZWZ#P2221222122221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001871000000000000 -T320230111111459540120210421WTTB@PYBY22212212206398100000000120130523WTT9B#YZP22222122206398100000000 -T12023011111145955623500411471120212120000300000000000005280360000000000000000000000000000000000222222000000002229012 -T2202301111114595561219580705WTT@BYWZ@2212221222224012213110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459556120090322WT@ZB@P#Z22222122204305100000000 -T12023011111145960322700408352120523211116300000000000008880060000000000000000000000000000000000222222000000002229032 -T2202301111114596031220020207WT@9TPY9W1222222222221011206290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114596031219930126WT@9TPY9W1222221222221011209290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459603120170512WT@9TPY9W12222212204398200000000 -T320230111111459603120210424WT@9TPY9W12222222204398200000000120190512WT@9TPY9W12222212204398200000000 -T12023011111145965124200405921120333110740300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111114596512219940427WT@0YT#002222212122215012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000863007100000000 -T320230111111459651120210718WT@Y9B#@021222222204398100000000420200427WTT0Z0@PT22222112104398109140000 -T12023011111145965821000408061120422110957300000000002504620180000000000000000000000000000000308122222000000012219012 -T2202301111114596581219780108WT@T@Z@9#2222211222222011211190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114596581219810111WT@9#ZWYB2222212222222021210190372323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459658120140409WTT9#W9B@22222112204302100000000120120927WTTPZW9Z#22222122204304100000000 -T12023011111145969822000405841120213110611300000000017603160250000000000000000000000000000000211122222000000012219072 -T2202301111114596981219830304WT@B#ZPT@2222211222225012212110770023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459698120050907WTT@P#@@T22222122204310100000000 -T12023011111145977425900402631120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114597743219490404WT@##WBPY2222212222215012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111459774120090923WT@P9#@##12222112206308100000000120060326WTTTPZ@TW12222122206310100000000 -T12023011111145977924200414851120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114597792219770914WT@B0PPW92222212222215012210110342613089900000000000000000000000000000000000000000000000000000000000000000000000000088900000000 -T320230111111459779120060724WTTPZPYYY22222112204309100000000120050424WTTWTB@WP22222122204311100000000 -T12023011111145978624900404261120212110611300000000000003160820000000000000000000000000000000211122222000000012219072 -T2202301111114597861219830113WT@@09TYZ2222212222221012212110880023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459786120100418WT@YT@0PY22222112204306100000000 -T12023011111145980022000411971120313110766300000000000006540320000000000000000000000000000000000222222000000002229072 -T2202301111114598001219940101WT@P0#Y#T1221222222221012211110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111459800120210311WTTP099@#22222212204398100000000120110313WT@#BY##@12222212204304100000000 -T12023011111145991720800411991120523111116300000000000001930020000000000035001000000000000000000222222000000002229012 -T2202301111114599171219860723WTT@#BT9#2222211222222011212190035721011924000000000000280002000000000000000000000000000000000000000000144300000000000000000000 -T2202301111114599171219890914WTT900##P2222212222222021216190035721011822000000000000000000000000000000000000000000000000000000000000133600000000000000000000 -T320230111111459917120140927WT@WB9#Z@22222122204302100000000 -T320230111111459917120210212WTT#W#P#B22222112204398100000000120180722WTTBZWZZZ22222122204398100000000 -T12023011111146004322500405581120333110376300000000054604170020000000000000000000000000000000000222222000000002229022 -T2202301111114600432220040512WT@YYBT9P1222222222221012210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114600432219910522WT@YYBT9P1222221222221102209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111460043120210712WT@9YP#Y012222222204398100000000 -T12023011111146022320800411601120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114602233219700221WT@ZPPPZ@2222212222215012211110471313069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111460223120140127WT@@BB9W022222122206301100000000 -T12023011111146028124700402991120413110939300000000000007710450000000000000000000000000000000000222222000000002229072 -T2202301111114602811219860226WTTPW@0TZ2122222222221012212110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111460281120060307WT@YWT##Z22212222204309100000000 -T320230111111460281120200327WT@TB0YPB12212112204398100000000120140212WTTB9#P#912212112204302100000100 -T12023011111146038522000408891120413111034300000000000007710090000000000000000000000000000000000222222000000002229012 -T2202301111114603851219900722WTTWZW9#02221222222221012216120144623010900000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111460385120070718WT@PBZ90W22212212204308100000000 -T320230111111460385120180212WT@WT9ZB922212222204398100000000120120101WTTZB9YZ922212222204304100000000 -T12023011111146048224200410531120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111114604821219740101WTTY@PPBY2222212222223012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111460482120050122WTTBYYWZP22222112204311100000000 -T12023011111146048525000400451120232110446300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114604853219710909WT@T@Y@0T2122222222223012212120461413069900000000000000000000000000000000000000000000000000000000000000404000000000000000000000 -T320230111111460485120150205WTTB0#9PY21222212206398100000000 -T12023011111146050024700409322120313210704300000000020000260080000000000000000000000000000000000222222000006282219032 -T2202301111114605001219720312WT@B@Z@P@2221222222221012212210114921011800210000000000000000000000000000000000000000000000000000000000125500000000000000000000 -T320230111111460500120080104WT@PWTWZ@22212222204307200000000120050418WTT0#Y9Y@22212212204310200000000 -T12023011111146055824100410041120213110613110320000000705280100000000000000000000000000000000000222222000000002229012 -T2202301111114605581220010726WTTYWTW#Z1222212222221012211110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111460558120200718WTT@0YT#B12222222204398100000000 -T12023011111146060824200408391120213110598300000000000003960180000000000000000000000000000000132222122000000002229012 -T2202301111114606081219720418WTTWTYZ@02222212222224012216120283223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111460608120070927WT@W0WBZB12222122204307100000000 -T12023011111146062122000411551120432110493300000000000005280340000000000000000000000000000000000222222000000002229022 -T2202301111114606212219810326WT@YYBT9P1222212222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114606212219810109WT@YYBT9P1222221222222102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111460621120200314WTTWB0WBZ12222112204398100000000120110927WT@@YTZTZ12222112204305100000000 -T12023011111146064724100402401120332110740300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111114606472219940227WT@T#Y0TY2222212222213012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111460647120200318WT@0WW0PB22222112204398100000050120130209WT@TBPY#W22222112204303100000050 -T12023011111146076920600402131120213110306300000000000003160130000000000000000000000000000000211122222000000012219072 -T2202301111114607691219870101WTTY@TP#Z2222212222221012212110740023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111460769120100104WTT@W9ZZ922222122204305100000000 -T12023011111146085225200407301120413111034300000000000007710500000000000000000000000000000000000222222000000002229012 -T2202301111114608521219940113WT@WWTTPZ1222222222221012211110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111460852120120313WTT99P#9Z12222222204302100000000 -T320230111111460852120220712WT@9#T@0W12222222204398100000000120160411WTT@T0Z0B12222212204398100000000 -T12023011111146095920600414161120313110835300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111114609591219850423WTT9W@#P@2221222222223012212210154523011800000017000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111460959120170727WT@Z9TB0P22212222204398200000000120160321WT@TPT9WY22212212204398200000000 -T12023011111146101025900402631120233110376300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111114610102219930923WT@YYBT9P1222222222221012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111461010120190307WTTB@W0T@12222112204398100000000 -T12023011111146107724200404891120213110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111114610771220030318WTT#ZB9PB1222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111461077120210512WTTB0T@YW22222122204398100000000 -T12023011111146120024200400491120433110835300000000341206540190000000000000000000000000000000000222222000000002229022 -T2202301111114612002219740326WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111461200120040709WTTZWPTY912222212207310100000000 -T320230111111461200120050113WTTTWY0W#12222222207310100000000120050927WT@P9WTZZ12222222204310100000000 -T12023011111146140722000414461120413110939133090000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111114614071219970302WT@WWBPT#1222122222221012216110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111461407120180909WT@PTWPBW12221212204398100000000 -T320230111111461407120220111WT@00#WZP12221222204398100000000120210104WTT@#@ZWY12221222204398100000000 -T12023011111146142224700405831120423110939300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111114614221219810704WT@PP0ZPY2222212222222011215290065421011932000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114614221219820701WT@BYPBYY2222211222222021215290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111461422120130701WT@99#PT@22222112204303200000000120070427WT@9TPY9W22222112204309200000000 -T12023011111146143120600406751120113110223300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114614311220040313WT@0YZW#W2222212222221013211190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111146149624200414721120332110740300000000000005280700000000000000000000000000000000000222222000000002229022 -T2202301111114614962219870707WT@Y#PWWZ2222212122213012210110322813109900000000000000000000000000000000000000000000000000000000000000000000000626026200000000 -T320230111111461496120130701WTTZ0WZTZ22222122204302100000000120110127WTTZZBW@Y21222112204304100000000 -T12023011111146152725900403551120513110939108470000000307710100000000000070004000000000000000000222222000000002229012 -T2202301111114615271219860423WTTB99ZY@1222222222221012213110481223011800000000000000000001000000000000000000000000000000000000310000000000000000000000000000 -T320230111111461527120070323WT@WY99T@12222222204308100000000420060408WTTT##PZ#12222222104310107310000 -T320230111111461527120190523WTTWBWTW#12222212204398100000000120110512WT@9@#B@912222212204305100000000 -T12023011111146154822000409412120523211195300000000200508870130000000000000000000000000000000000222222000000002229032 -T2202301111114615481219830326WTTZW@Z002212221222222011214290105021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114615481219890512WT@@BT@YT2222212222222021213290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111461548120120307WT@@#P@9P22222112204302200000000 -T320230111111461548120180422WTTPZZTZY22222122204398200000000120140112WT@TYBW@#22222112204301200000000 -T12023011111146158021700407751120233120000300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111114615803219960107WTTTY9PBP2222212222221012213110006011069942000000000000000000000000000000000000000000000000000000000000243400000000000000000000 -T320230111111461580120100701WTT9PBTZZ22222112207305100000050 -T12023011111146179925000414191120333120000300000000000005280600000000000000000000000000000000000222222000000002229022 -T2202301111114617993219980113WTT0WPY091222222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000382200000000000000000000 -T320230111111461799120120309WTTP90@9012222212207304100000000120110921WT@W#YBWP12222222207305100000000 -T12023011111146182325600413441120212110598300000000000005280400000000000000000000000000000000000222222000000002229012 -T2202301111114618231219800707WTT@TWT0P2222212222225012212110411923011400000000000000000000000000000000000000000000000000000000340000000000000000000000000000 -T320230111111461823120170723WTTTZPZYY12212122204398100000000 -T12023011111146190524100402401120433110939300000000000006540200000000000000000000000000000000000222222000000002229022 -T2202301111114619053219630723WTTW@00Y02212222212224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001742 -T320230111111461905120140207WTT9BW@T@22122122206302100000000 -T320230111111461905120210518WTT9T#P9022222112206398100000000120160922WTTYZ#YW@22222122206398100000000 -T12023011111146198022000411981120232110306300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114619803219700124WTTTBZZPY2222212222221012211120006011069938000000000000000000000000000000000000000000000000000000000000294700000000000000000000 -T320230111111461980120040126WTTTYB@@@22222122209312100000000 -T12023011111146204122600404461120233110576300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114620413219660112WT@YZZWYY2222212222225012214110154513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462041120060201WTTBTWW#T22222122206310100000000 -T12023011111146205620600414871120213110631300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111114620561219960712WTT@99#ZP2222212222221012208110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462056120220712WT@9Y@0YW22212222204398100000000 -T12023011111146211724700403421120213110611300000000000005280250000000000070003000000000000000211222221000000002229012 -T2202301111114621171219880323WT@Z9##YP2222212222221012213110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462117120190104WTT#@W@T022222112204398100000000 -T12023011111146213620600402131120513111209111530000002008880170000000000000000000000000000000000222222000000002229012 -T2202301111114621361219930304WTT#9B#@Z2222212222225012216110283223010900000000000000000000000000000000000000000000000000000000000000000000000000000000002610 -T320230111111462136120150127WT@BT#PYY22222122204301100000000120130924WT@9W0W9W22222112204303100000000 -T320230111111462136120210921WTTB@Y0#Z22222112204398100000000120170913WTTW@#WYW22222122204398100000000 -T12023011111146226822000403891120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114622683219600312WT@W0T#@02221222222222012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462268120070209WT@TW#0TT22222212206307100000000 -T12023011111146229020600401131120233120000300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111114622903219710123WTT9W@@ZB2222212222222012212110105013069900000000000000000000000000000000000000000000000000000000000000078000000000000000000000 -T320230111111462290120200908WT@BY9B9Z22222122207398100000000 -T12023011111146245425900406841120213110598300000000041005280390000000000000000000000000000000000222222000000002229042 -T2202301111114624541220000112WTTPWWYZ91222222222221012210110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462454120170118WTTWYZZTY12222112204398100000000 -T12023011111146245824700402991120233120000300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111114624582219780201WT@0#@P@T1222222222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462458120080212WTTB#Y9YT12222222204304100000050 -T12023011111146248620600412561120413110939300000000000007710380000000000000000000000000000000000222222000000002229012 -T2202301111114624861219880726WTT##@9W@2222212222221012209110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462486120070427WT@@#@9Z022222122204309100000000 -T320230111111462486120150923WT@####B022222112204301100000000120080104WT@ZTY0Y@22222122204308100000000 -T12023011111146254524700406701120212110611300000000004004870140000000000000000000000000000000000222222000000412219012 -T2202301111114625451219760412WT@9@@Y0T2222212222221012209110362423011400000000000000000000000000000000000000000000000000000000010000000000000000000000000040 -T320230111111462545120100314WT@@9BP0P22222122204305100000000 -T12023011111146255625900402631120333110611300000000000005280240000000000000000000000000000000000222222000000002229022 -T2202301111114625562219920726WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111462556120130723WT@##0#ZB12222112204301100000000120120723WTT#T@##Y12222122204302100000000 -T12023011111146257522600405051120333110611300000000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111114625752219940207WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462575120180308WT@9#BBWW22222212204398100000000120150407WT@W9B@ZW22222222204301100000000 -T12023011111146259821000408061120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111114625981219850714WTTY@PTPT2122222222223013216190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000964 -T12023011111146267425900402831120513111199300000000060008880320000000000000000000000000000000000222222000000002229012 -T2202301111114626741219870913WT@9TY@Y01222222222221012212110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462674120150526WTT0ZTB#T12222222204302100000000120090727WT@BYW#0912222222204308100000000 -T320230111111462674120220112WTT@##BZ#12222122204398100000000120210127WT@TPBWBZ12222112204398100000000 -T12023011111146271220600404121120232110516300000000000004170670000000000000000000000000000000000222222000000002229022 -T2202301111114627122219770704WTTT9#0T@2222212222211012208110860013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111462712120140513WTTB9W#YW22222112204301100000000 -T12023011111146271920800414651120512111025117800000000008430280000000000000000000000000000000000222222004400012219072 -T2202301111114627191219810327WTTBB@0T02222212222225012216120630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462719120060123WT@@9#W0T22222122204310100000000120050507WT@PT@Z0T22222112204312100000000 -T320230111111462719120170323WTT90T9P#22222112204398100000000120170323WT@0TT@#Y22222122204398100000000 -T12023011111146272425000414191110333110516114970000000005280010000000000000000000000000000000000222222000000002229021 -T2202301111114627242219870926WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111462724120160127WTTZZTWPY12222222204398100000000120110123WT@W9Y@@912222212204302100000000 -T12023011111146291520800405391120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114629153219600404WT@W9T#9@2222212222215012212110006011069909000000000000000000000000000000000000000000000000000000000000025800000000091400000000 -T320230111111462915120080121WT@Y9TT0@22222112206307100000000 -T12023011111146304123500411471120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111114630411220000912WT@ZYW9TP2222212222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114630411219990423WT@YBZ@YB2222211222222021212290095123011800000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111463041120210423WT@0#Y9WZ22222122204398200000000120190701WTTYZ0Z0022222112204398200000000 -T12023011111146306824200408231120413110939127820000000007710130000000000000000000000000000000000222222000000002229012 -T2202301111114630681219920924WTTP#ZT#02222212222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111463068120110323WT@#ZZTP#22212222204304100000050 -T320230111111463068120190318WTT#@@0#T22212112204398100000000120160102WT@@Z00@Y22222212204398100000000 -T12023011111146309724700402991120422110893300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111114630971219800101WT@PZ@TPZ2222212222222011216290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114630971219800423WT@BT09@Z2222211222222021213290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111463097120070101WT@Y@TPTP22222112204304200000000120050313WTT0YB#BY22222122204308200000000 -T12023011111146313820600406751120313110822300000000000005280400000000000000000000000000000000000222222000000002229012 -T2202301111114631381219930913WT@BW9Z@Y2222212222222012213110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114631382219870427WT@PWYYPT2222211222212022212190015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111463138120180209WT@Z90YT022222122204398100000000 -T12023011111146319921700407751120313110766300000000000006540370000000000000000000000000000000000222222000000002229012 -T2202301111114631991219940418WT@T009@Z2122222222221012211110530721011700210000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111463199120210327WT@W##@#T22222212204398100000000120200302WTT@TTZZT22222122204398100000000 -T12023011111146322225800401871120233110516300000000000004170860000000000000000000000000000000000222222000000002229022 -T2202301111114632223219630318WT@WP@0#P2222212122225012212110283213069900000000000000000000000000000000000000000000000000000000000000000000001220000000000000 -T320230111111463222120070404WT@0@9PZ@22222112206308100000050 -T12023011111146332523500408281120433110835300000000000006540060000000000000000000000000000000000222222000000002229022 -T2202301111114633252219810304WT@YYBT9P1222211222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111463325120090408WT@ZTWWWW12222222204307100000000 -T320230111111463325120160426WT@0Z@PPW12222112204398100000000120110124WT@@90TPW12222212204304100000000 -T12023011111146336020600407031120423120000300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111114633601220000118WT@Z@Y9#@2222212222221011212110035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114633601220010412WTTWBZTWP2222211222221011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111463360120210311WT@#Z0TT922222122204398100000000120180102WT@#B00BB22222212204398100000000 -T12023011111146340220600411641120233120000300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111114634023219570726WT@Z@Z9@T2222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000585200000000000000000000 -T320230111111463402120110927WTT0BTWP922222122206305100000000 -T12023011111146343220600409771120233110516300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111114634323219640227WTTTBZTW#2222212122224012207110362413069900000000000000000000000000000000000000000000000000000000000000000000001445000000000000 -T320230111111463432120050518WT@W@T0T922222122206311100000000 -T12023011111146348324200408391120533110939300000000000002340940000000000000000000000000000000000222222000005372219022 -T2202301111114634832219760918WT@YYBT9P1222222222223012209910006011079919000000000000000000000000000000000000000000000000000000000000130700000000000000000000 -T320230111111463483120080121WT@WT@YYP12222112204308100000000120070104WT@#P#BWB12222222204310100000000 -T320230111111463483120160723WT@9T9WW@12222112204398100000200120110304WTTZBW#P012222212204304100000000 -T12023011111146351920200409311120412110939300000000005007710020000000000000000000000000000000000222222000000002229012 -T2202301111114635191219870421WTTWY#9PB2222212222223012212120520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111463519120120301WTT#9WY9022222112204303100000000 -T320230111111463519120170523WT@PYY@#W22222112204398100000000120150513WT@BZ@BPW22222112204301100000000 -T12023011111146359524200404051120433110939300000000013004200990000000000000000000000000000000000222222000002342219022 -T2202301111114635952219580712WT@0YBW@92221221122211012212111090013109900000000000000000000000000000000000000000000000000000000000000000000000337059700000000 -T320230111111463595120060927WT@00@#Y922212112204307100000078 -T320230111111463595120110322WT@0TP@WT22212222204304100000078120090918WTTPWPTTW22222122204307100000078 -T12023011111146367125900402631120413110893300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111114636711219820427WT@P9WB9Y2222212222221012212111030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111463671120040927WTT0#BW0922222112204311100000000 -T320230111111463671120210922WT@W09B@Y22222122204398100000050120190226WT@Y##WT#22222112204398100000050 -T12023011111146368324200404701120233110516300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111114636833219610123WTTZPW@ZW2222211122225012212110144611069919000000000000000000000000000000000000000000000000000000000000115900001468000000000000 -T320230111111463683120060724WTT99Y@YZ22222122206308100000000 -T12023011111146380920600400871120233110521300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111114638092219960327WTT0W@#BW2222212122211012210110095113109900000000000000000000000000000000000000000000000000000000000000000000000771016300000000 -T320230111111463809120160418WT@@WTTZ#22212112204398100000000 -T12023011111146382224200409591120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114638222219810114WT@##TWP92122212222215012213111210013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111463822120080423WT@99ZZ9#21222212204308100000050 -T12023011111146390322000405701120213110598300000000020005280080000000000000000000000000000000000222222000000002229012 -T2202301111114639031219810124WT@BTWYBZ2222212222221012215210095121011938000000000000000000000000000000270001000000000000000000000000000000000000000000000000 -T320230111111463903120060723WTTW0PT9P22222122204309200000000 -T12023011111146397123500408281120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111114639711219880204WTTT#9Z#W2222212222222011212290065423011800000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T2202301111114639711219860501WT@##Z0P#2222211222222021215290065423011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111463971120170927WT@T@090Y22222122204398200000000120140705WT@@YW#0Z22222122204301200000000 -T12023011111146402624700405901120413110959107640000000007710020000000000035001000000000000000000222222000000002229012 -T2202301111114640261219930109WTT9@00T@1222222222223012212110035723010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111464026120090721WT@0B9#B@12222212204307100000000 -T320230111111464026120210407WT@#ZY0W012222212204398100000000120090721WT@W#TBBP12222212204307100000000 -T12023011111146404023500408281120332110740300000000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111114640403219620924WTT#BZ9ZT2222212122224012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001551000000000000 -T320230111111464040120210207WT@@PTWW922222112206398100000000120150909WT@0PY9Y#22222112206302100000000 -T12023011111146406223500404531120333110611300000000000004060940000000000000000000000000000000000222222000001222219022 -T2202301111114640622219830722WT@YYBT9P1222222222221012209910006011079908000000000000000000000000000000000000000000000000000000000000070900000000000000000000 -T320230111111464062120150523WT@#090P@12222112204302100000000120090311WT@0T99B#12222222204306100000000 -T12023011111146414025600413441120312110582300000000000003920250000000000000000000000000000000261122222000000012219072 -T2202301111114641401219880902WTT0@W@0#2221222222221012212110960023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464140120140914WT@0TWTZ#22222122204301100000000120070901WT@9PYWTB22212222204308100000000 -T12023011111146416024200403511120433110751300000000000006540100000000000000000000000000000000000222222000000002229022 -T2202301111114641603219700412WT@9PP###2222212222211012212110680013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111464160120060709WTTTT#ZW912222122206310100000000 -T320230111111464160120200309WTTTY9Y@Y22222122206398100000000120080204WT@PZ9YBT12222122206308100000000 -T12023011111146419525600414951120233110516300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111114641953219600412WTT#@YPW@2221222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001341000000000000 -T320230111111464195120070727WT@9P@PP@22212222206309100000050 -T12023011111146429722000406191120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111114642973219790712WTT0PWPW@2221222222221012211110550511069932000000000000000000000000000000000000000000000000000000000000299600000000000000000052 -T320230111111464297120150318WTT9900P@22212212206398100000000 -T12023011111146435520600407031120313110835300000000594706540200000000000000000000000000000000000222222000000002229012 -T2202301111114643551219950723WT@#B0YWY1221222222221012212110471321011826000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464355120160423WT@#WYTT022212222204398100000000120140414WTT@9BTB022212212204302100000000 -T12023011111146435820600404491120333110704300000000000005280230000000000000000000000000000000000222222000000002229022 -T2202301111114643583219690922WTT9B@W0@2222212222221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000018760000 -T320230111111464358120140911WTTP@P0TT22222122206303100000000120120227WTTBZPY@P12222112206305100000000 -T12023011111146438424700402991120323110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111114643841219970121WT@BW0PW92222211222222011216290065421011940000000000000000000000000000000000000000000000000000000000000334600000000000000000000 -T2202301111114643841219990302WTT#PYTYB2222212222222021216290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464384120200412WT@#0WZYB22222122204398200000000 -T12023011111146439522000405181120212110599300000000000003160280000000000000000000000000000000211122222000000012219072 -T2202301111114643951219840118WTTT0WW@92221222222221012216110970023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464395120050218WTT@##0Z922212212204311100000050 -T12023011111146446722000407412120323210766300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111114644671219900104WTT#BY0YT2222211222222011202290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114644671220020902WT@9TPY9W2222222222222021202290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464467120170118WT@0T9#0B22222222204398200000000 -T12023011111146455122000411282120323210835300000000060006540080000000000000000000000000000000000222222000000002229032 -T2202301111114645511219880101WT@9ZB#TT2222212222222011215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114645511219860123WT@9B0@PW2222211222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464551120150523WTT9Z@BZW22222112204398200000000 -T12023011111146466825800405801120313110766300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111114646681219800407WTTPTT0#P2222212222221012212121390023010900000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111464668120070126WT@9990WB22222122204309100000000120050104WTTWY00B022222112204310100000000 -T12023011111146475420600412681120333110670300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111114647543219720327WTTPW#PWY2222212222222012213110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464754120170311WT@WBYYPT22222122206398100000000120140704WTT0W9TP922222122206301100000000 -T12023011111146476822700413181120213110611113020000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114647681219940327WT@B90##02222211222221012212110144623010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464768120200313WT@9WZBY#12222112204398100000000 -T12023011111146477922000407241120213110516300000000007502050170000000000000000000000000000000000222222000003232219012 -T2202301111114647791219980412WT@Y@PT0Z2222212222221012212110174321011810000000000000000000000000000000000000000000000000000000000000064500000000000000000000 -T320230111111464779120200913WTTB#@Y#T22222122204398100000000 -T12023011111146479824100413561120413111034104670000000007710450000000000000000000000000000000000222222000000002229012 -T2202301111114647981219860327WT@PW@WZ#1222222222225012213110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464798120120927WT@T@Z@WB12222212204304100000000 -T320230111111464798120200704WT@T#WYWW12222122204398100000000120170707WT@#ZZY9B12222212204398100000000 -T12023011111146481620600406751120312110821300000000004006210210000000000000000000000000000000000222222003200012219012 -T2202301111114648161219790418WT@9#0#0Y2222221222225012212110392123011400000000000000000000000000000000000000000000000000000000010000000000000000000000002231 -T320230111111464816120120327WTT##W9BT22222112204302100000000120090907WTT#9#YT922222222204305100000000 -T12023011111146482820600402131120313110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114648281219870721WTT#W9T0@2222212222225012214210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464828120110512WTTYP@PBT22222122204304200000000120090512WTTB@9W#@22222122204306200000000 -T12023011111146485020600402131120313110826300000000000006540090000000000000000000000000000000000222222000000002229072 -T2202301111114648501219830302WT@W900ZP2222212222225012206110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111464850120210923WT@9BP9WP22222122204398100000000120200504WTTYB#9YW22222122204398100000000 -T12023011111146513924200414851110313110740300000000000001050010000000000000000000000000000000000222222000000002229042 -T2202301111114651391219830102WT@Y9@W9@1221222222221012214110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111465139120150123WTT#ZY#0@12212222204302100000000120090207WTTYTP@BP12212222204307100000000 -T12023011111146533223500408281120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114653323219760504WT@0#90@#2222212222211012210110293113069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111465332120110101WT@YBZ@YT22222112206305100000000 -T12023011111146537924200404701120212110611300000000040000170940000000000000000000000000000000000222222000005112219072 -T2202301111114653791219810109WTTWBY9#B2222212222225012213111070023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111465379120060507WTTWPB#WT22222122204310100000000 -T12023011111146540424200407531120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111114654043219690404WTT@@ZTYB2122222222222012214110006013069900000000000000000000000000000000000000000000000000000000000000609100000000000000000000 -T320230111111465404120100323WT@0909TT21222212209304100000033 -T12023011111146543123500410671120213110618300000000089005280060000000000000000000000000000000000222222000000002229012 -T2202301111114654311219940418WTTTWZZBZ2222212222221012216110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111465431120220301WTTW#0PPW22222122204398100000000 -T12023011111146554322700407441120213110516300000000000001050050000000000000000000000000000000000222222000004232219012 -T2202301111114655431219990526WTTT@B9Y91222212222221012211110154521011813000000000000000000000000000000000000000000000000000000000000084400000000000000000000 -T320230111111465543120190418WTTWT#BPB12222112204398100000000 -T12023011111146555824900404261120233110470300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111114655585219790321WT@@9W@#P2222212222222012210110580213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111465558120080701WTT#@WTYY12222122209308100000000 -T12023011111146560324200403941120213110611300000000020005280210000000000000000000000000000000000222222000000002229012 -T2202301111114656031220010123WTTZ0PBB01222222222221012211110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111465603120210509WT@PWYT#P12222212204398100000050 -T12023011111146560520800405141120233120000110900000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111114656053219860408WTTZT#@992222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000460000000000000000000000 -T320230111111465605120200423WTTW0BZ#022222122207398100000000 -T12023011111146565621400408021120733111199300000000000008880150000000000000000000000000000000000222222000000002229022 -T2202301111114656562219890701WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114656562219890727WT@YYBT9P1222221222222022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111465656120070118WTTPZ@00912222212204309100000000 -T320230111111465656120100723WTTB#B#0@12222222204305100000000120080713WT@TWWTB012222222204307100000000 -T320230111111465656120190904WTTZ0W00912222212204398100000000120120104WT@BW90TZ12222222204304100000000 -T12023011111146582822100410901120213110364300000000000003160320000000000000000000000000000000211122222000000012219012 -T2202301111114658281219870108WT@BZWZ9T2222212222221012216110510923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111465828120130722WTTYBW@0Z22222122204304100000000 -T12023011111146593924200407271120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114659392219710226WTT99YZW#2222212222215012212110810013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111465939120060207WT@0YBY@@22222112204309100000000 -T12023011111146597224200411401110413111034300000000000007710010000000000000000000000000000000000222222000000002229012 -T2202301111114659721219830312WTT0ZWYYP2222212222221012216110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111465972120060407WTTZWBP@Z22222122204311100000000 -T320230111111465972120160307WTT90#W@Y22222112204398100000000120090918WTTWYZ@Y922222112204309100000000 -T12023011111146603223900403801110313110611300000000000002950050000000000000000000000000000000000222222000001642219012 -T2202301111114660321219950309WT9TT9YYW2222212222221012212110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466032120230404WTT0BPW9#12222222204398100000000120200911WTT@#W9T#22222112204398100000000 -T12023011111146611623500408281120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111114661161219810108WT@9T#ZB#2222212222221012213110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466116120140412WTTB0T#9@22221122204302100000000 -T12023011111146619820600414251120333110740300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111114661983219640423WTT0@0YB#2222212222225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466198120180718WT@PB0@9Z22222112206398100000537120170309WT@WT@Y@Y22222112206398100000750 -T12023011111146619920800405391120112110396300000000000004170290000000000000000000000000000000000222222000000002229012 -T2202301111114661991219980123WT@TBPWT92222212222223013212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111146620524200414722120213210611300000000000005230200000000000000000000000000000000000222222000000052219032 -T2202301111114662051219880923WT@9TPY9W1222212222221012205210213921011801000000000000000000000000000000000000000000000000000000000000002000000000000000000000 -T320230111111466205120080408WT@9TPY9W22222112204307200000000 -T12023011111146622524200408391120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111114662251220000722WTTZ9PY0@2122222222221012210110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000166 -T320230111111466225120220414WT@909BZY11222222204398100000000 -T12023011111146625120300408521120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114662512219630414WTTWYYW0B2222212222215012216110481213089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111466251120100523WT@WP9@PY22222122204305100000369120080204WT@@TZ@YW22222112204307100000369 -T12023011111146628625900403711120433120000300000000000006540930000000000000000000000000000000000222222000000002229022 -T2202301111114662863219680918WT@@9PP@02222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000290700000000000000000000 -T320230111111466286120050227WT@0TBT0012222212206311100000000 -T320230111111466286120100709WTTYB999#22222122206306100000000120090107WTTT#@BWP22222122206306100000000 -T12023011111146630920600400871120412110869300000000000000070750000000000000000000000000000000117122222002306242219012 -T2202301111114663091219880424WTTYT0BWP2222122222221012212910570321011720000000000000000000000000000000000000000000000000000000000000124600000000000000000000 -T320230111111466309120140704WT@90PPZY22221212204301100000000 -T320230111111466309120190908WTTB99B#W22221212204398100000000120170704WTT#BBW9@22221212204398100000000 -T12023011111146656224900404261120213110611104350000001505280020000000000000000000000000000000000222222000000002229012 -T2202301111114665621219930726WTT0PWWW91222211222225012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466562120140723WTTTZBZTY22222122204301100000000 -T12023011111146659923800413801120533110939300000000000006540570000000000000000000000000000000000222222000000002229022 -T2202301111114665992219840424WT@WWBP#Y2122222122211012216120006013109900000000000000000000000000000000000000000000000000000000000000000000000679021800000000 -T2202301111114665992219850326WT@YYBT9P1222221222221022211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466599120120924WT@BBTWPZ11222222204304100000000 -T320230111111466599120200408WT@WZT@Y#11222212204398100000000120150427WT@WP#PZZ11222222204301100000000 -T12023011111146663225600411521120113120000300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114666321220010722WT@ZZ#ZTT2222212222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111146665121700406141120313110790300000000000006540520000000000000000000000000000000261222221000000002229012 -T2202301111114666511219890421WT@0BP@9B2222212222223012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466651120070123WTTP9PPZT22222112204310100000550120060424WT@P@9YT#22222112204311100000000 -T12023011111146667722000408811120413110971140990000019007710110000000000000000000000000000000000222222000000002229012 -T2202301111114666771219920208WT@@B0T0W2221222222223012212220124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466677120170107WT@W9YT@T22212212204398100000000 -T320230111111466677120220524WTTB9#YP#22212212204398100000000120190707WT@TY#YZ@22212222204398100000000 -T12023011111146670225900402831120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114667021219850422WT@YY#Y#92222212222223012214120045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466702120200907WTTBBW9W022222112204398100000000 -T12023011111146672922000412692120423210893300000000000007710080000000000000000000000000000000000222222000000002229032 -T2202301111114667291219750518WT@PB@WZP2222212222222011298290095123011800000010000100000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114667291219710501WT@@B@@PY2222211222222021298290095123011800000010000100000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466729120080721WTTTWZP0022222112204308200000000120050724WTT#@BZYZ22222112204311200000000 -T12023011111146679021700406141120333120000300000000020405280780000000000000000000000000000000000222222000000002229022 -T2202301111114667903219600313WT@#WY99T2222212122222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001482000000000276 -T320230111111466790120080421WT@0PZ0Z022222112206308100000000120080421WTTZ00WT#22222122206308100000000 -T12023011111146680022000406951120413110939123830000050007710430000000000000000000000000000000000222222000000002229012 -T2202301111114668001219870324WTTZB#09W2222122222225012213120283223010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466800120140721WT@ZY9@PY22222112204302100000000 -T320230111111466800120210712WTT@@W@0@22222122204398100000000120200513WT@9TB#PW22222112204398100000000 -T12023011111146683424200414721120412110939300000000025005280990000000000000000000000000000000000222222000000002229072 -T2202301111114668341219840413WT@YPPW#T2222212222222012213110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114668342219750318WTTT9#@0Z1222211222212022210190530713089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111466834120180205WTTP9Z#9Z12222122204398100000000420130527WT@T0BYZW22222112104303108220000 -T12023011111146683924200411401120333110835300000000000005280400000000000000000000000000000000000222222000000002229022 -T2202301111114668393219660712WTTB#B0#Y2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466839120110901WT@0@T9ZP22222112206305100000000120100514WTT9B0@W922222112206306100000000 -T12023011111146684620300408521120613111310112440000010010090030000000000000000000000000000000000222222000000002229012 -T2202301111114668461219820101WT@W@#P##2222212222223012212110312923010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466846120110305WTTPB9BPB22222122204304100000000 -T320230111111466846120150723WT@Z#T@@P22222112204398100000000120130701WT@0TBYT022222112204301100000000 -T320230111111466846120200407WT@WPPYZP22222112204398100000000120170327WT@9TPY9W22222122204398100000000 -T12023011111146684920600407031120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111114668491219910723WT@ZYP@@#2222212222221012213110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111466849120150309WTT@PZT@P22222112204398100000000 -T12023011111146687125200402161120313110766300000000000006540040000000000090003000000000000000000222222000000002229012 -T2202301111114668711219920918WT@B@@PP02222212222221012212110055523011400000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111466871120180509WTT#Y##9#22212112204398100000000120140701WTTYPP0#922222122204302100000000 -T12023011111146696224700413761120333110740300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111114669622219850912WT@9Z@PB92222211222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000085400000000 -T320230111111466962120120705WTTB@#ZYB12212212204305100000000120090114WT@ZTZBZY22222212204398100000000 -T12023011111146704222000408891120412110957113040000000007710100000000000000000000000000000000000222222000000002229072 -T2202301111114670421219860307WTT90@B#Z2222212222221012213110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467042120110322WT@TYZ#PB22222122204302100000000 -T320230111111467042120170712WT@@0ZWYP22222112204398100000000120140301WTTWYWZPZ22222122204398100000000 -T12023011111146705825900402831120313110835300000000000006540060000000000070002000000000000000000222222000000002229012 -T2202301111114670581219860722WT@@@BW9Y1222212222221012208210075323011800000000000000000002000000000000000000000000000000000000210000000000000000000000000000 -T320230111111467058120180909WTTBW9Y9912222112204398100000000120140727WTTYY#@Y#12222122204301100000000 -T12023011111146708020600414161120233120000300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111114670803219720527WT@ZB#Z902222212222222012204110006013069900000000000000000000000000000000000000000000000000000000000000699900000000000000000000 -T320230111111467080120120924WT@Z9B@@922222122206303100000000 -T12023011111146719424900404261120313110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111114671941219960701WT@#WTBW92222212222223012212120075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467194120190223WTTTZ#9Z@22222122204398100000000120170426WTT9BWYZ@22222112204398100000000 -T12023011111146726920600404121120212110376300000000000003160310000000000000000000000000000000211122222000000012219072 -T2202301111114672691219800421WTT@9PP902222212222221012211111320023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467269120150201WT@P#WYWP22222122204302100000000 -T12023011111146730220800411601120212110551300000000000005280020000000000000000000000000000000000222222000000002229072 -T2202301111114673021219740927WTT#B@P#B1222222222221012212111580023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467302120070908WT@WYPY9T12222222204309100000000 -T12023011111146739920800411601120333110611300000000000005280640000000000000000000000000000000000222222000000002229022 -T2202301111114673992219740113WT@YYBT9P1222222222225012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467399120100423WT@ZWYB9P22222222204306100000000120080124WTT@WZWZT12222112204308100000000 -T12023011111146745320800405141120213110376300000000010004590040000000000000000000000000000000000222122000000002229012 -T2202301111114674531220000323WTTBY0ZT#2221222222223012213120055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467453120230427WT@9TPY9W12212212204398100000000 -T12023011111146754925900402832120213210598103490000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111114675491220000307WT@9TPY9W1222222222221012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467549120160312WT@9TPY9W12222212204398200000000 -T12023011111146757424900404261120432110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111114675742219890727WT@W9@90P2222212222213012207110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111467574120080927WTTBZ@Z9Y21222222204307100000000 -T320230111111467574120130423WT@ZY9@WZ22212222204302100000050120100721WT@0#YZ9Y22212222204305100000050 -T12023011111146768724200409841120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114676871219840426WT@00PZBP2222211222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467687120070724WTTBWBW@P22222112204308100000000 -T12023011111146772322700408351120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114677232219670507WTT#9WBW91222221222212012214110204013089900000000000000000000000000000000000000000000000000000000000000000000000000059500000000 -T2202301111114677232219730426WTTZBWP9P1222222222212022212191270013089900000000000000000000000000000000000000000000000000000000000000000000000000059500000000 -T320230111111467723120100713WT@9Z#YY922222222204305100000000 -T12023011111146779722000411281120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114677971219890321WTTW9P@#P1222212222225012213110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111467797120060701WTTW@P@9B22222122204302100000000 -T12023011111146782723900408801120313110670300000000125006540920000000000000000000000000000000000222222000000002229072 -T2202301111114678271219890911WT@0@@ZYP2222212222221012211110910023011400000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111467827120100705WTT9PB0YY22222112204305100000000120080714WTTYWPZB022222122204308100000000 -T12023011111146787724200407431120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114678772219790227WTTZ0Z0PP1222212222211012210111300013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111467877120120923WT@PPZTYW12222112204303100000000120070912WTT#W99Z#12222212204309100000000 -T12023011111146796921000408061120433110893300000000000006540070000000000000000000000000000000000222222000000002229022 -T2202301111114679693219860423WT@TBT#0P2222212222225012216110144611069940000000000000000000000000000000000000000000000000000000000000344000000000000000000000 -T320230111111467969120120312WTT9PZWT922222122207303100000000 -T320230111111467969120190923WTTYP0TTY22222112207398100000000120150723WT@Z#TWPP22222112207398100000000 -T12023011111146805520600400871120323110835300000000090006540020000000000000000000000000000000000222222000000002229012 -T2202301111114680551220000127WT@#9YY@B2222212222221011212190223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114680551219960904WTT9YBZ#Z2221221222221011212190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468055120190512WTTBT9Y9@22212222204398100000000 -T12023011111146807225900402721120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111114680721220030905WTT9ZWT0Y1222222222221012209110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468072120050312WT@Y#9B@Z12222212207312100000000 -T12023011111146807520600402141120312110787300000000000006540450000000000000000000000000000000000222222000000002229012 -T2202301111114680751219830414WTTY#9W#Y1222212222221012216110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468075120220224WTT0TW0ZT12212212204398100000000120140907WT@9@WW0Z12222112204302100000000 -T12023011111146812020900411721120213110611300000000000005280290000000000000000000000000000000000222222000000002229012 -T2202301111114681201219970123WTT9W0@YY2222212222225012211110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468120120210418WTT90@P0022222112204398100000000 -T12023011111146812125900402831120313110855109310000000103920320000000000000000000000000000000261122222000000012219012 -T2202301111114681211219910418WTTPY0BYW2222212222221012216110332723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000950 -T320230111111468121120170307WT@@PB0T@22222112204398100000000120150923WTT@@9WYY12222112204398100000000 -T12023011111146813322700408351120413110939300000000005006540710000000000000000000000000000000000222222000000002229072 -T2202301111114681331219830107WTTYT9B9T2222212222221012211191580023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114681332219890412WTTP@0YB01222211222211102211190105013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111468133120150526WTTB#09@Y12222122204398100000000120150526WT@#0@9WT12222112204398100000000 -T12023011111146829622000410051120633110971300000000035007590170000000000000000000000000000000000222222000000122219022 -T2202301111114682962219830423WT@ZTT00B1222221222222012206990006011079916000000000000000000000000000000000000000000000000000000000000100000000000000000000000 -T2202301111114682962219850104WT@YYBT9P1222222222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468296120130426WT@B@9TP@12222222204303100000000120070224WT@B9PPPP12222222204309100000000 -T320230111111468296120220226WTT@ZYYWW12222212204398100000000120150713WTTB9P#Y#12222212204301100000000 -T12023011111146835624100405611120623111339300000000070010090030000000000000000000000000000000000222222000000002229012 -T2202301111114683561219750911WTT#9BY992222222222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114683561219730111WT@Y0@9@W2222221222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468356120070127WT@T#YWT@22222212204309200000000120050709WT@9@ZYZ@22222212204312200000000 -T320230111111468356120100718WT@Y0ZTB922222222204306200000000120090224WT@9TPW0#22222212204307200000000 -T12023011111146836623700414331120633111199300000000000908880020000000000000000000000000000000000222222000000002229022 -T2202301111114683662219840909WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468366120060322WT@0Y@B#@12222112204310100000000 -T320230111111468366120100101WTT#Z0B#B12222112204305100000000120080101WT@@YY#0#12222122204308100000000 -T320230111111468366120180924WT@WZP@BB12222222204398100000000120160104WT@0ZPZ#Z12222212204398100000000 -T12023011111146851122700408351120233110516300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111114685111219940427WT@9@##@B2222222222221012211110590123099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468511520120518WT@9#TZ#Z12222222104304108840000 -T12023011111146860221000405411120212110516300000000000402670330000000000000000000000000000000000222222000001502219012 -T2202301111114686021219970122WTT0@@T0T2222212222221012212110342621011810000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111468602520200513WTTY@9ZP022212212104398108030000 -T12023011111146861222500410151120233120000300000000000103750990000000000000000000000000000000000222222004100012219022 -T2202301111114686123219510318WT@@@9W9Y2222212122222012212110006011069919000000000000000000000000000000000000000000000000000000000000136500000999000000000000 -T320230111111468612120050208WT@TYWWW@22222122206311100000000 -T12023011111146867324700410421110213110611300000000003203740210000000000035001000000000000000000222222000000852219012 -T2202301111114686731219780118WT@@P@ZT02222212222225012213110223823011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111468673120180426WT@WPZBYW22222112204398100000000 -T12023011111146871622000407411120413110766300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111114687161219910512WT@0B0@992222212222221012212110085223010900000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111468716120080923WT@#Y90YY22222122204308100000000 -T320230111111468716120170201WT@W@BZ@Y22222112204398100000000120160402WTT9@@@#Z22222112204301100000000 -T12023011111146876122000411551110213110611300000000000001360030000000000000000000000000000000000222222000000002229012 -T2202301111114687611219940924WT@YYZP9Z2221221222221012214110045621011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468761120180913WTTBPZ#0@12212212204398100000000 -T12023011111146885522000400431120212110593112110000000000780400000000000000000000000000000000111122222000003392219012 -T2202301111114688551219980913WTTP#ZWZ92221222222221012216110431721010208000000000000000000000000000000000000000000000000000000000000067700000000000000003333 -T320230111111468855120200123WTTP@9BZ#22212212204398100000000 -T12023011111146891420600400871120233110516300000000005004170990000000000000000000000000000000000222222000000002229022 -T2202301111114689143219480704WT@Z#P@P@1222222122215012202110015913069900000000000000000000000000000000000000000000000000000000000000000000000783013600000000 -T320230111111468914120090912WT@W@090B12212222206307100000050 -T12023011111146893520600402131120412110973300000000000000880990000000000000000000000000000000000222222000006832219072 -T2202301111114689351219870107WT@BPT0W@2222212222223012211111210023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468935120060727WT@#0@WY@22222122204311100000683 -T320230111111468935120160923WT@9T#WYT22222122204301100000000120120923WTTPZ@BTP22222112204304100000000 -T12023011111146894224200404891120413110939300000000000007710360000000000000000000000000000000000222222000000002229012 -T2202301111114689421219870918WTTTTTZZY2222212222221012211110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468942120120321WTTZW0TP022222112204304100000000 -T320230111111468942120210104WTT#@YZBB22222112204398100000087120180327WTTZYBBYP22222112204311100000000 -T12023011111146899125200410141120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114689912219740323WTT##YWTB2222211222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111468991120050718WTTT#0WWY22222122204309100000000 -T12023011111146899322000406191120613111395123580000000010090030000000000000000000000000000000000222222000000002229012 -T2202301111114689931219930407WT@9@#P9B2212222222222012209210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111468993120080423WTT9@@0#922122212204308200000000 -T320230111111468993120120423WT@00W0WW22122222204303200000000120080721WT@B0TWZB22122222204307200000000 -T320230111111468993120190423WT@TBTWZP22122222204398200000000120140313WTT0YBW#022122212204301200000000 -T12023011111146899623900406231120112110376300000000000004170120000000000000000000000000000000000222222000000002229012 -T2202301111114689961219890413WT@#Z@YW02222212222221013213110134723011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T12023011111146903123500400891110323110740300000000000000420010000000000000000000000000000000000222222000000002229012 -T2202301111114690311219930213WT@9TPY9W2222212222222011215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114690311219930401WT@9TPY9W2222211222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111469031120170326WT@9TPY9W22222122204398200000000 -T12023011111146906124700408301120213110611300000000000004170890000000000000000000000000000000000222222000000002229072 -T2202301111114690612219830912WTTP90TZT2222212222223012216110790013050700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111469061120110401WTTTW09PZ22222122204304100000000 -T12023011111146906422000407831120512111116300000000000008880760000000000000000000000000000000000222222000000002229072 -T2202301111114690641219860113WTTP0B0B@2221222222221012212110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111469064120210505WT@YYYBW#22212212204398100000000120140308WTTPB#0P922212222204301100000000 -T320230111111469064120220109WTT999ZBB22212222204398100000000120220109WT@ZWB9#Z22212222204398100000000 -T12023011111146914122000407792120623211339300000000000610090080000000000000000000000000000000000222222000000002229032 -T2202301111114691411219840107WTTTZTWB#2222212222222011214290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114691411219830904WT@YWZBT92222212222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111469141120070407WT@9TPY9W22222112204309200000000120040323WT@9TPY9W22222112204311200000000 -T320230111111469141120110713WT@9TPY9W22222112204305200000000120090208WT@9TPY9W22222122204307200000000 -T12023011111146918821000408061110423111034300000000000001740010000000000000000000000000000000000222222000000002229072 -T2202301111114691881219820312WTT00TP#Z2222211222221011212190530723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114691881219810721WT@T#PBBY1122222222221011212190620023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111469188120140102WT@Y@BWYY21222212204303100000000120110305WTT###00P21222212204305100000000 -T12023011111146923520600400801120232110611300000000005005280990000000000000000000000000000000000222222000000002229072 -T2202301111114692351219520414WTTP0@WWP2222122122225012207911620023109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111111469235120120926WTTB0B0@Y22221212206304100000000 -T12023011111146924623500410671120333110306300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111114692462219720727WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114692462219610718WT@YYBT9P1222221222221102211990006011079913000000000000000000000000000000000000000000000000000000000000076600000000000000000000 -T320230111111469246120120912WT@YTZTT912221222204305100000000 -T12023011111146929425200409361120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114692943219720708WTTW0WB9T2222212222215012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111469294120130912WT@0@#0Z022222122206302100000000 -T12023011111146942123500410671110213110542300000000000004590010000000000000000000000000000000000222222000000002229012 -T2202301111114694211219970327WT@BW#9Y01222122222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111469421120200914WT@9YB9B922221222204398100000000 -T12023011111146954223500411471120433110611300000000100001260190000000000000000000000000000000000222222000004022219022 -T2202301111114695422219770909WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114695422219690327WT@YYBT9P1222221222222022212990006011079910000000000000000000000000000000000000000000000000000000000000129000000000000000000000 -T320230111111469542120160926WT@YWWP#T12222212204398100000000120110304WT@BP#9PY12222212204304100000000 -T12023011111146977522000414461120313110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111114697751219940112WTT@Z@YWT2222212222221012216110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111469775120210921WT@Y#B0YB22212122204398100000000120150424WTT0W0ZB922222222204302100000000 -T12023011111146986924700402991120733111116300000000200001410030000000000000000000000000000000000222222000007472219022 -T2202301111114698692219900121WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114698692219740322WT@YYBT9P1222221222222022208990006011079966000000000000000000000000000000000000000000000000000000000000409200000000000000000000 -T320230111111469869120060711WT@@0WBP012222212204309100000000 -T320230111111469869120150512WTTT@BTPT12222212204301100000000120090204WT@9@ZY0Y12222212204308100000000 -T320230111111469869120200407WTT90@WZW12222212204398100000000120180514WTTTYW#0Z12222212204398100000000 -T12023011111146996720200409311120312110835300000000160006540220000000000000000000000000000000000222222000000002229072 -T2202301111114699671219780312WTT9T9#Y#2222212222225012213110960023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111469967120100514WT@W#@ZT922222112204305100000050120050107WTTBZPYW922222122204311100000050 -T12023011111147006024700413761120312110776300000000000006540250000000000000000000000000000000000222222000000002229012 -T2202301111114700601219870111WTT#9#W9#2222212222221012216110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000001017 -T320230111111470060120200302WTT0Y90P022222122204398100000000120110421WT@WZP#TT22222122204306100000000 -T12023011111147011824200402531120433120000300000000000006540110000000000000000000000000000000000222222000000002229022 -T2202301111114701183219640301WTTY##90B2221222212223012213110253511069939000000000000000000000000000000000000000000000000000000000000609400000000000000000301 -T320230111111470118120080312WT@#Y@@0Y22212212206306100000000 -T320230111111470118120160126WTTWTZT0022212212206398100000000120150902WT@@Z9@YW22212212206398100000000 -T12023011111147020422000407411110522111116300000000000000530050000000000000000000000000000000000222222000000002229072 -T2202301111114702041219860323WT9TT@9@92222122222222011212910660023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000299 -T2202301111114702041219810727WTTBP0ZB92222121222222021212990065421011812000000000000000000000000000000000000000000000000000000000000070300000000000000000000 -T320230111111470204120080223WT@Y0PP##22221112204308100000431 -T320230111111470204120180705WTTWZ#9@P22221222204398100000000120160302WT@0W009Z22222212204398100000000 -T12023011111147020821700406141120313110835300000000000006040040000000000000000000000000000000000222222003200182219072 -T2202301111114702081219890123WT@#@PZZB2222212222221012216110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000017 -T320230111111470208120170909WT@W9WPYB22222112204398100000000120110504WTTBB#W0Z22222122204306100000000 -T12023011111147031322700408491120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114703131220010507WT@W#B0Y@2222122222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111147048422000404841120523111116300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111114704841219960423WT@9TPY9W2222212222222011206290174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114704841219950901WT@9TPY9W2222211222222021205290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111470484120150312WT@9TPY9W22222112204301200000000 -T320230111111470484120210213WTT@##Z0@22222222204398100000000120180101WT@9TPY9W22222112204398200000000 -T12023011111147060522000409211110213110516300000000000000850010000000000000000000000000000000000222222000000002229072 -T2202301111114706051219840501WT@PB@9##2222212222224012212110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111470605120060104WTTWWZB9P22222122204309100000000 -T12023011111147064522700401572120323210766300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111114706451219870707WT@9TPY9W1222212222221011214210105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114706451219830412WT@9TPY9W1222211222221011212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111470645120090707WT@9TPY9W12222122204307200000000 -T12023011111147066424200407431120313110835300000000000006540820000000000000000000000000000000000222222000000002229072 -T2202301111114706641219900108WTT#PB00T2222212222223012212110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111470664120140114WT@@P00ZW22222122204301100000000120120126WT@#WY9TB22222112204303100000000 -T12023011111147072321000411361120313110741300000000015505280050000000000000000000000000000000000222222000000002229012 -T2202301111114707231219960401WT@#9#BB@2222212222221012216120065423011800000000000000000000000000070003000000000000000000000000010000000000000000000000000000 -T320230111111470723120180518WTT#TB09W22222122204398100000000420170408WTT9BT##Z22222122104398109140000 -T12023011111147076122700408491120413111006300000000032007710090000000000000000000000000000000000222222000000002229012 -T2202301111114707611219890712WTT@YBWPW2222212222225012216110105021011700200000000000000000000000000000320001000000000000000000000000119300000000000000000000 -T320230111111470761120120522WT@99P0ZP22222112204304100000041 -T320230111111470761120190421WT@TWZ0#922222112204398100000041120170526WT@#P0Z9P22222112204398100000041 -T12023011111147087021100404511120533120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111114708703219790701WT@WZZT#P2222212222222012212110095111069921000000000000000000000000000000000000000000000000000000000000132300000000000000000000 -T320230111111470870120210407WT@9TPY9W22212112208398100000000420100718WTT9YB@#W22212212208305100000000 -T320230111111470870420100718WTTWPPZY#22212212208305100000000420100718WT@B@#ZYW22212212208305100000000 -T12023011111147090124700405901120333110281300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111114709013219730301WT@9BBZT@2122222122225012213110124813069900000000000000000000000000000000000000000000000000000000000000000000001418000000000000 -T320230111111470901120180126WT@9PTBWT22222122206398100000000120160513WT@0@0TTZ22222112206398100000000 -T12023011111147096723500407161120323110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111114709671219890309WT@B##ZB#2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114709671219930223WT@YW9##02222212222222021212290114923011800000000000000000000000000000000100000000000000000000000000000000000000000000000000000 -T320230111111470967120200423WT@T#W#9022222122204398200000000 -T12023011111147100522700408351120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111114710051220030223WTT@T00WY2222212222221012211110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471005120220426WTTY@ZYWT22222222204398100000000 -T12023011111147101723700414331120433120000300000000000006540870000000000000000000000000000000000222222000000002229022 -T2202301111114710173219570702WTT0PBP#W1222122122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000663000000000000 -T320230111111471017120080326WTTB@09#Y22221222206307100000000 -T320230111111471017120150111WTTTBWZY022221212206301100000000120130421WT@PPW@BB22221212206303100000000 -T12023011111147102124700401011120413111002300000000000004620830000000000000000000000000000000308122222000000012219072 -T2202301111114710211219880512WTT@T#TP@2222212222223012211110870023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471021120080407WT@TP9WYB12222112204308100000000 -T320230111111471021120150723WT@#YZ#W@12222112204398100000000120110109WTT0##0P912222222204304100000000 -T12023011111147103520600411641120433110893300000000000006540880000000000000000000000000000000000222222000000002229022 -T2202301111114710353219770927WT@@TZTZZ1222222222222012213120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471035120080313WTT0P@T0912222212209306100000000 -T320230111111471035120110723WT@0B#YT#12222212209304100000000120100904WTT@BBZ0Y12222222209305100000000 -T12023011111147113822900405641120312110835300000000000005280580000000000000000000000000000000000222222000000002229012 -T2202301111114711381219860708WT@B9ZYT02222212222221012216110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471138420090107WTTWBTZT912222112104307109140000120050322WTTPYZ#@W12222122204310100000000 -T12023011111147114225900406081120633111034300000000036806960810000000000000000000000000000000000222222000000752219022 -T2202301111114711422219880727WT@YYBT9P1222222222222012210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114711422219860507WT@YYBT9P1222221222222022210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471142120090907WTT#WP@Y012222222204306100000000120070427WTT@0YZBY12222212204308100000000 -T320230111111471142120190118WT@Y9BBBP12222112204398100000000120140501WT@WT#90@12222212204301100000000 -T12023011111147122720800404431120233120000300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111114712273219820207WTTTT###B2222212222221012211110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471227120210413WT@@ZY9#T22222122207398100000000 -T12023011111147132123500404531120213110611300000000000003160280000000000000000000000000000000211122222000000012219012 -T2202301111114713211219960422WTT@ZP9ZB2222212222221012211110293123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471321120160318WTTYWZY9Y22222122204398100000000 -T12023011111147136721400408021120533110835300000000001707710740000000000000000000000000000000000222222000000002229022 -T2202301111114713672219960908WT@YYBT9P1222222222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471367120130912WTTZ@9PW012222212204302100000000120110923WT@9Y@99Z12222212204304100000000 -T320230111111471367120220902WTTYTB0#Z12222122204398100000000120160423WTTPZ009Y12222122204398100000000 -T12023011111147139820600408181120333110727300000000000005280290000000000000000000000000000000000222222000000002229022 -T2202301111114713983219910323WT@@0P0B02222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000008284 -T320230111111471398120070408WT@WP0P@@22222122207305100000000120050905WT@YY#0YB22222112207307100000000 -T12023011111147143624700411201120313110835300000000008906540310000000000000000000000000000000000222222000000002229072 -T2202301111114714361219840112WT@#YYZ0Y2222212222221012216110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000002150 -T320230111111471436120180112WTTWY@YZZ22222122204398100000000120080926WT@PZZ@0022222112204307100000100 -T12023011111147161224200404891110213110618113330000000005280010000000000070001000000000000000000222222000000002229012 -T2202301111114716121219940426WTTP#WPZ91221222222223012212110213921011819000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471612120200907WTT@9P0TZ22212212204398100000000 -T12023011111147162020600414871120313110766300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111114716201219960721WTTYPWBW#2122222222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471620120210307WT@9W#0WT11222212204398100000000120160401WTTPTTTPB11222212204398100000000 -T12023011111147172822000400921120513111211300000000000007710130000000000000000000000000000000000222222000000002229012 -T2202301111114717281219620411WT@#99YT92222121222221012212190144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114717282219860126WTTYY09@W2222212122211102212190006013109900000000000000000000000000000000000000000000000000000000000000000000000793014100000000 -T320230111111471728120160213WTTWTYBB922221212204398100000000 -T320230111111471728120190727WTT@TBTY022221212204398100000000120180411WT@###9Z#22221212204398100000000 -T12023011111147177322000406191120513111116300000000000008880230000000000000000000000000000000000222222000000002229012 -T2202301111114717731219900304WTTT9@TB#2221222222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111471773120180301WTT@09@YB22212212204398100000000120110118WTTTPPWZB22212212204305100000000 -T320230111111471773120220704WTTZ@@WTW22212222204398100000000120200427WTTYPW@@@22212212204398100000000 -T12023011111147190921700407751120523111116300000000020008880530000000000000000000000000000000000222222000000002229012 -T2202301111114719091219860318WT@BYTYP02222212222222011212110540621011800190000000000000000000000000000190000000000000000000000000000119300000000000000000416 -T2202301111114719091219860212WT@W99BZ92222211222222021212190392123011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111471909120080708WTT@#Z@#T22222112204306100000000 -T320230111111471909120190101WT@P9##ZB22222122204398100000000120110721WTT@Y#B0@22222112204303100000000 -T12023011111147193424200404891120332110740300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111114719342219900405WT@9Z9@Y02221221222211012212120105013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111471934120200423WT@Z@TY#Z22212212204398100000000120190522WTTTPZ@PP21222212204398100000000 -T12023011111147194521600412781120412110970300000000000006540260000000000000000000000000000000000222222000000002229072 -T2202301111114719451219860912WTTB#P@W02222212222223012212110910023011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T2202301111114719452219890311WT@PZ9@BT2222211122211102212190006013109900000000000000000000000000000000000000000000000000000000000000000000000207072700000000 -T320230111111471945120200112WT@@B##9@22222112204398100000000120170326WT@ZP0Z0022222112204398100000000 -T12023011111147200022000402322120213210611300000000000005280080000000000000000000000000000000000222222000000002229032 -T2202301111114720001219900312WT@9TPY9W2222212222223012213210095123010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472000120110427WT@9TPY9W22222112204304200000000 -T12023011111147201624200414851120213110611300000000000105240170000000000000000000000000000000000222222000000042219012 -T2202301111114720161219900926WT@#ZB0BP2222212222225012213110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000003 -T320230111111472016120090727WT@Z9@#9#12222112204307100000000 -T12023011111147206322000407241120213110598300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111114720631219800513WTT#TZYPB2221221222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472063120080114WT@BYY9B@22212212204308100000000 -T12023011111147211123500410671120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111114721111219870413WT@9TPY9W2222212222222011215290045622011900000000000000330004000000000000000000000000000000000000090000000000000000000000000000 -T2202301111114721111219850902WTTYYPPZT2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472111120140101WT@PTZ@BW22222112204303200000000120090123WTTP#YBTZ22222112204308200000000 -T12023011111147214224200404891120312110740300000000042605280680000000000000000000000000000000000222222000000002229072 -T2202301111114721421219780709WT@YYY#P92222212222221012212110690023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472142420170901WT@Y@#BT@22222112104398108040000120070718WTTY9Z9BT22222222204309100000000 -T12023011111147225520600404121120413111034300000000000007710270000000000000000000000000000000000222222000000002229072 -T2202301111114722551219930913WT@TWTPZW2221222222223012216110620021011900210000000000090000000000000000000000000000000000000000000000136400000000000000000000 -T320230111111472255120090223WT@BTBZ#021222222209308100000000 -T320230111111472255120150927WT@0#9WBP21222222204302100000000120130304WT@ZBZ9BZ22212222204303100000000 -T12023011111147229424200402501120212110557300000000000003160430000000000000000000000000000000211122222000000012219072 -T2202301111114722941219790718WTTZ#PBW92221222222221012213111200023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472294120050926WT@00#T#P22212212204310100000000 -T12023011111147246624200401241120233120000118410000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111114724663219750321WT@0BZ9@W2222212222221012213110312913069900000000000000000000000000000000000000000000000000000000000000000000000000000000003994 -T320230111111472466120180701WT@BBZ0@W12222112206398100000000 -T12023011111147248322000410051120423111034300000000015007710100000000000000000000000000000000000222222000000002229012 -T2202301111114724831219940909WT@9@PY#Z2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114724831219960711WT@ZB@Y0P2222212222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472483120200427WTTT9TT#P22222122204398200000000120050112WT@WPP##Z22222122207311200000000 -T12023011111147251523500405271120333110268300000000000005280200000000000000000000000000000000000222222000000002229022 -T2202301111114725153219520121WTTPTY9TZ2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000002351000000000225 -T320230111111472515120210713WTT09YYP@22222212206398100000000120170414WTTBB@#TZ22222112206398100000000 -T12023011111147265720800405391120212110611300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111114726571219930404WT@@WTPT92222212222221012213110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472657120070926WT@#@#@P012212112204308100000000 -T12023011111147266124500405781120312110835300000000000006540450000000000000000000000000000000000222222000000002229012 -T2202301111114726611219890526WT@@BYYWB2222212222221012216110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472661120210412WTTPY@##W22222222204398100000000120110113WT@@#Z99Z22222212204306100000050 -T12023011111147274920600414871120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111114727491219780404WTTPP0#9@2222212222221012211110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472749120090918WT@WZT#0#22222112204306100000000 -T12023011111147276124500409151120233120000300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111114727613219540504WT@WYBTTP2222212122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000002844000000000000 -T320230111111472761120100505WTT@@#WT022222112206306100000000 -T12023011111147281122000405841120233110376300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111114728112219800709WT@YYBT9P2212222222225012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472811120160412WT@WW9PPT22122222204398100000000 -T12023011111147290222000411551120333110598300000000051005280040000000000000000000000000000000000222222000000002229022 -T2202301111114729022219840112WTTBTWBYW2222222222221012214910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472902120220118WT@P9TBTB22222212204398100000000120220118WT@PW9ZPZ22222212204398100000000 -T12023011111147294324200414021120313110781114470000000106540320000000000000000000000000000000000222222000000002229012 -T2202301111114729431219960902WTTTZ0BZ@1222212222221012216110293123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111472943120220422WTT0@99#Z12222112204398100000000120190321WTTYTYW#022222112204398100000100 -T12023011111147313625900406081120333110376300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111114731362220010721WT@YYBT9P1222212222222012208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114731362220000401WT@YYBT9P1222211222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111473136120220414WT@Y09Z9012222222204398100000000 -T12023011111147328222700408491110312110835300000000005004210360000000000000000000000000000000000222222000002332219072 -T2202301111114732821219820418WTTWZT9PP1222212222224012208111010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111473282120130127WTT0W9TB022222122204301100000000120080107WTT#T0WZT12222122204307100000000 -T12023011111147334422000410051120233120000300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111114733443219590123WT@W00BTP2222212122224012211110006013069900000000000000000000000000000000000000000000000000000000000000139400001762000000000000 -T320230111111473344120080427WTTZYPBP#21222222207308100000000 -T12023011111147335420600411031120212110493300000000027004170990000000000000000000000000000000000222222000000002229072 -T2202301111114733541219780404WTTT@T99W2221222222225012213111010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111473354520070412WTT9WBYW#22212212104308109060000 -T12023011111147347522000414501120232110493300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111114734753219560309WTTWWB#YT2222212122225012212110035713069900000000000000000000000000000000000000000000000000000000000000000000001086000000000422 -T320230111111473475120200321WTT0T@BW@22222112206398100000000 -T12023011111147349821000411361120313110766300000000090503920120000000000000000000000000000000261122222000000012219042 -T2202301111114734981219810927WT@9T0@B@2122222222221012216110174323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111473498120190918WTTBY@TT921222222204398100000000120130307WT@##YWYB21222212204301100000000 -T12023011111147360120600400801120432110939300000000000006540640000000000000000000000000000000000222222000000002229022 -T2202301111114736012219850426WTT#T0TWY2222212222211012216110134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111473601120050423WT@P0T9W#22222112204311100000100 -T320230111111473601120200227WTT0YT9Z@22212222204398100000000120090723WTT@00##B22212222204306100000000 -T12023011111147362925900402831120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114736291219970713WTTT@W0ZT2122222222221012212110045623010100000000000000000000000000000000000000000000000000000000340000000000000000000000000000 -T320230111111473629120220321WT@9T0WTP21222212204398100000000 -T12023011111147367223500407611110233110306300000000000000800010000000000000000000000000000000000222222000000002229021 -T2202301111114736723219500202WTT@@BTZ92222212122224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000002613000000000000 -T320230111111473672120220113WT@99#W@W22222112206398100000000 -T12023011111147367824200403941120413111034300000000000007710460000000000000000000000000000000000222222000000002229072 -T2202301111114736781219900312WTTT9#BTP2222212222223012216110800023011800000000000000000000000000000000210002000000000000000000040000000000000000000000002600 -T320230111111473678120100323WT@BB90Z@22222222204398100000000 -T320230111111473678120190709WTTWZT9#@22212122204398100000000120180923WTTWBZYZ022222222204398100000000 -T12023011111147369124700405901120113110306300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111114736911220020912WTTYZYBT02222212222221013211190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111147393924200409091120712111339300000000000010540380000000000000000000000000000000000222222000000002229072 -T2202301111114739391219890918WT@TZZBZ#2221222222221012212111300023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111473939120090404WT@ZTTZTT22212212204307100000000120060223WT@P#WW9B22212212204310100000000 -T320230111111473939120170305WT@B9P@BT22212222204398100000000120150523WTTZ0YYB#22212212204301100000000 -T320230111111473939120210401WTTY9Y@TP22212212204398100000000120190401WT@TB0Y0922212212204398100000000 -T12023011111147403624500405781120212110584300000000000503160380000000000000000000000000000000211122222000000012219012 -T2202301111114740361219890101WT@99BB9B2122222222221012213110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000208 -T320230111111474036120130924WTTPY@Z0B21222212204303100000171 -T12023011111147407325100407671120233110493300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111114740733219710414WTTT900Y@2222212222222012210110481213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474073120120126WTT0T90##22122112206303100000000 -T12023011111147408024200402981120623111269300000000000010090050000000000000000000000000000000000222222000000002229012 -T2202301111114740801219760301WTTWBTBYB2222211222222011215290065423011800000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T2202301111114740801219770422WTTTT#09@2222212222222021213290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474080120100914WT@#@YT0W22222112204306200000000120050408WTTZ#WB9T22222122204311200000000 -T320230111111474080120180301WTTTTBZ0@22222112204398200000000120180301WTT9@YYWB22222112204398200000000 -T12023011111147413425200407301120313110740300000000000005890370000000000000000000000000000000000222222000000652219012 -T2202301111114741341219850113WT@TYPYTW2222212222225012216110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000064 -T320230111111474134120080712WT@T0B0Z922222122204308100000000120060108WT@BWPZZB22222112204311100000255 -T12023011111147425222000407791120733111480300000000000011650760000000000000000000000000000000000222222000000002229022 -T2202301111114742521219890401WT@#P000T1222222222221012212110770023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474252120100709WT@PTWBYY12222222204305100000310120070126WTT#@PB#022222112204308100000000 -T320230111111474252120150102WT@BBTZB912222222204398100000000120150102WTTT@TYP@12222212204398100000000 -T320230111111474252120200424WT@TWBBP#12222212204398100000000120180926WTTBZY0#@12222212204398100000000 -T12023011111147426820300400971120212110611300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111114742681219790113WTT0#0#YW2222212222221012216110342623011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111474268120140704WTTWW90YB22222122204302100000000 -T12023011111147433224200414021120433120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111114743323219890914WTTWWT0PY2222222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000167900000000000000000000 -T320230111111474332420170323WTTZP#T9W22212212204398100000000 -T320230111111474332120190304WT@W@W@WW22212122208398100000000420190905WTTTWP0Y022222122204398100000000 -T12023011111147433820300407051120213110611300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111114743381219840713WT@@T@Y#B2222211222221012208110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474338120100427WTTBWP9P@22222112204305100000000 -T12023011111147435521000411361120633111199300000000000008880220000000000000000000000000000000000222222000000002229022 -T2202301111114743552219890408WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474355120110221WTTPTPT@912222122204304100000000 -T320230111111474355120150722WT@YBW#ZZ12222122204398100000000120130301WT@Z09PBY12222112204301100000000 -T320230111111474355120210712WT@Y9P@9P12222122204398100000000120180901WT@0PW@WP12222112204398100000000 -T12023011111147448722000406192120213210618300000000000005280020000000000000000000000000000000000222222000000002229032 -T2202301111114744871219730312WT@9TPY9W2221222222224012210210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474487120110924WT@9TPY9W22212212204306200000000 -T12023011111147474223500414281120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114747423219590418WT@@@P9Y@2222212222222012298110006011069928000000000000000000000000000000000000000000000000000000000000170000000000000000000000 -T320230111111474742120090113WT@BPBBWB22222112206306100000000 -T12023011111147474822000408891120312110776300000000000002110490000000000000000000000000000000000222222000000002229012 -T2202301111114747481219890305WTTBWYZ#Y2221222222221012216110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474748120170522WTTP@TZZP22212222204398100000000120160404WTTW#P@@B22212222204301100000443 -T12023011111147487420600400801120333110670300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111114748743219640727WTT@PYZYB1222212122222012211110006011069908000000000000000000000000000000000000000000000000000000000000050000000374000000000000 -T320230111111474874120140418WT@W0@TY012222122207302100000000120120123WTT09Y0#Y12222112207303100000000 -T12023011111147493120600414871120213110599300000000000003160230000000000000000000000000000000211122222000000012219012 -T2202301111114749311219860413WTTWW#Y#@2212221222223012212110233723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474931120190304WT@WTW#Z#22122212204398100000000 -T12023011111147495320800414651120212110470300000000000005280700000000000000000000000000000000000222222000000002229072 -T2202301111114749531219890113WT@BT9BTT1222222222221012210121330023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111474953120070427WTT@BP@9P12222222204310100000000 -T12023011111147505220300412371120533111116300000000000006540270000000000000000000000000000000000222222000000002229022 -T2202301111114750522219900914WTTT##Y#T2222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111475052120110913WT@9ZPY9Z22222122204305100000000420060307WT@#WW0Y#22222112104309109140000 -T320230111111475052120150107WT@B00#0P22222122204398100000000120120726WT@BT@#YP22222112204303100000000 -T12023011111147512422000408451120213120000300000000000005280650000000000000000000000000000000000222222000000002229072 -T2202301111114751241219800701WTTZWY9#92222212222225012212110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475124120040726WT@@WWPWW12222112204312100000000 -T12023011111147521825200414061120213110598300000000000505280060000000000000000000000000000000000222222000000002229012 -T2202301111114752181219930727WTTWPZZ@02222211222221012211110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475218120180708WT@YP##9Y22222122204398100000000 -T12023011111147522424700406741120612111395300000000000010090180000000000000000000000000000000000222222000000002229072 -T2202301111114752241219840309WTTW9Z09B2222212222223012212120770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475224120060412WTTZTZ09P22212212204307100000000 -T320230111111475224120100922WTTYBTWY@22222122204304100000000120060412WTTY#P0P#22222112204307100000000 -T320230111111475224120190727WT@0YP@YY22212212204398100000000120110526WTTYZY9P#22212212204306100000000 -T12023011111147523824500405781120213120000300000000034005280030000000000000000000000000000000000222222000000002229012 -T2202301111114752381220030712WTT0Y@BY91222212222221012209210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475238120210721WTT99#9ZB12222112204398100000000 -T12023011111147526924200414851120233110611300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111114752693219720307WTTYY@T9Z1221221222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475269120180927WTTYW@WYP12212222207398100000000 -T12023011111147538520600404121120232110493300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111114753853219640509WT@Y09#TT2222212122225012212110223813069900000000000000000000000000000000000000000000000000000000000000000000000965000000000000 -T320230111111475385120100718WTTPBBWW#22222112206306100000050 -T12023011111147541725900403551120413110939300000000000007320240000000000000000000000000000000000222222003800012219012 -T2202301111114754171219890907WT@Z#@P#@2222212222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475417120130713WT@BYTZ@T12222122204302100000000 -T320230111111475417120200726WT@@@TBZT12222212204398100000000120170512WT@WZTZPW12222122204398100000000 -T12023011111147542124500405781110613111339300000000000002980010000000000000000000000000000000000222122000000002229012 -T2202301111114754211219890111WT@PYY99Y2222212222223012216120431721011806000000000000000000000000000000000000000000000000000000000000037200000000000000000000 -T320230111111475421120080512WTTBW9BBW12222222204308100000000 -T320230111111475421120110326WTT@P#P9W12222222204305100000000120100527WTT@P9@TT12222212204307100000000 -T320230111111475421120160401WTTT@TP##12222122204301100000000120130327WT@Y#ZY#Y12222222204303100000000 -T12023011111147549125100402211110233110281111530000000002690010000000000000000000000000000000000222222000000002229021 -T2202301111114754912219940326WT@YYBT9P1222221222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475491120180426WT@99@@9Y12222122204398100000000 -T12023011111147560424700410421120322110796300000000000106540430000000000035003000000000000000000222222000000002229012 -T2202301111114756041219790721WT@9YYW0Z2222212222222011216190441623011800000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T2202301111114756041219750523WT@P#T99@2222211222222021212190441623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475604120130727WT@9@##T022222112204302100000000 -T12023011111147562224100412771120433110835300000000000006540140000000000000000000000000000000000222222000000002229022 -T2202301111114756222219830421WT@YYBT9P1222222222221012212910461413079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475622120080509WTT99#BW912222222204308100000000 -T320230111111475622120110512WTTZZZBPP12222212204305100000000120080509WTT90@ZY912222222204308100000000 -T12023011111147569525600411521120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111114756952219810402WTTW90#WT2222212222211012208110720013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111475695120070718WT@BPW9Y#22222122204308100000000 -T320230111111475695120110513WTTBZ00BB22222112204304100000000120080922WT@BZ90YP22222122204307100000000 -T12023011111147576322900405641110313110835300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111114757631219790327WTTB9@WZP1222211222221012208110312923011400000000000000000000000000000000000000000000000000000000010000000000000000000025700000 -T320230111111475763120130312WTT##9#T012222222204302100000000120090223WT@W9P9P912222112204307100000000 -T12023011111147578525900406651120233110364107370000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111114757853219830701WTT9B0##02222212222222012212110342611069941000000000000000000000000000000000000000000000000000000000000319400000000000000000000 -T320230111111475785120050312WT@ZYT9WP22212222209310100000000 -T12023011111147580422000409871120413110939300000000100007710090000000000000000000000000000000000222222000000002229012 -T2202301111114758041219900322WT@@ZBYYP2221222222223012208110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475804120120523WT@PBPZBB22212212204304100000000 -T320230111111475804120210726WTT@ZBTPY22212212204398100000000120130423WTTTB@TY@22212212204303100000000 -T12023011111147583824200403461110313110835300000000000003910100000000000035013000000000000000000222222000000002229012 -T2202301111114758381219770323WTT@PP0Y#2222212222221012212110481222011900000000000000300001000000000000000000000000000000000000070000000000000000000000000000 -T320230111111475838420130921WT@YZZ90T22222112104302106360000120080909WTTWPT9YP22122212204308100000000 -T12023011111147586022700413181120313110776300000000002506540630000000000000000000000000000000000222222000000002229072 -T2202301111114758601219830927WTTWWTTP#2222212222221012210110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111475860120200312WTTZT90#W22222112204398100000075120060701WTTY#0#@P12222122204307100000000 -T12023011111147591920600400801120213110598106000000000305280320000000000035001000000000000000000222222000000002229012 -T2202301111114759191219870904WTTYZPPPY2222212222225012212110332723011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111475919120190326WTTW@Y#W#12222122204398100000000 -T12023011111147602725900400311120212110599300000000000003160950000000000000000000000000000000211222221000000012219042 -T2202301111114760271219820111WTTPZP@#Y1222212222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476027120160409WT@Y09YTP12222112204398100000000 -T12023011111147617022000411281120213110598300000000090005280290000000000000000000000000000000000222222000000002229012 -T2202301111114761701219830323WTT#WYYWB1222211222221012213110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476170120190326WT@P#0YP012222112204398100000000 -T12023011111147635623500404531120313110766300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111114763561219870113WT@PW@ZY92221212222221012216110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476356120220123WTT@TB#BY22212122204398100000000120080101WT@9WTZ0W22212212204306100000000 -T12023011111147637525600412851120233110516300000000000004170780000000000000000000000000000000000222222000000002229022 -T2202301111114763752219910104WT@9ZP09B1222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111476375120160927WTTZW9@9T12212122204398100000000 -T12023011111147642624200407271120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114764263219690307WT@99#WP@2221221222222012214110006011069937000000000000000000000000000000000000000000000000000000000000645500000000000000000000 -T320230111111476426120060412WT@TYT99T22212212207311100000000 -T12023011111147645122000407411120412110942113000000020007710220000000000000000000000000000000000222222000000002229012 -T2202301111114764511219970927WTTBWWTT@1222122222221012210120233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476451120160913WTTWT99P922221212204398100000000 -T320230111111476451120210312WT@09Z#YZ22122212204398100000000120190712WT@TY00ZB12122212204398100000000 -T12023011111147645622000400812120213220000300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111114764561219860123WTTYPT0PW2222212222223012214210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476456120100312WT@BYY00022222112204398200000000 -T12023011111147649225100407671120533110376300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111114764922219960911WTTPP@YPY1222221222221012205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114764922219980912WT@YYBT9P1222212222221022204990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476492420150104WTTWBYW9#12222222204398900000000 -T320230111111476492120220524WT@@0PZPB12222212204398100000000420180326WT@YYBT9P12222122204398900000000 -T12023011111147662820800410781120213110611300000000000005280210000000000000000000000000000000000222222000000002229012 -T2202301111114766281219860502WT@0#0WTY2122222222221012212110164423010600000000000000000000000000000000000000000000000000000000000000000000000000000000000175 -T320230111111476628120210126WT@PTZ9B021222212204398100000000 -T12023011111147663224200403941120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114766323219670204WT@YB0#BZ2122222222222012211110213913069900000000000000000000000000000000000000000000000000000000000000000000000000000000002000 -T320230111111476632120220226WTT0P9W#Z21222212207398100000000120120408WTTWBWTB#21222212209303100000000 -T12023011111147668622000407241120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114766863219600713WT@##WY@Z2221222222222012214110114911069940000000000000000000000000000000000000000000000000000000000000469700000000000000000000 -T320230111111476686120070305WT@0@B#BY22212212206307100000000 -T12023011111147668822000413731120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114766881219920409WTTWY9PZP2221222222221012216110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476688120100721WT@B@@@Z#22212222204306100000000 -T12023011111147669425900402631120333110740300000000000005280690000000000000000000000000000000000222222000000002229022 -T2202301111114766942219970326WT@B9T@0Y1222222222211012211120114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111476694120190123WTTP99YP@12222212204398100000000120150322WT@YBZ#ZB12222122204398100000000 -T12023011111147671420800411931120613111395300000000000010090040000000000000000000000000000000000222222000000002229072 -T2202301111114767141219880727WT@T@T0092222212222221012212110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476714120080313WT@ZY0@TB12222112204307100000000 -T320230111111476714120180109WT@Y#Y@PZ22222112204398100000000120130126WT@Y090BT12222112204398100000000 -T320230111111476714120210727WT@PBBBT#22222122204398100000000120200112WT@ZZ9B0T22222112204398100000000 -T12023011111147671620800411991120323110766300000000000003920150000000000000000000000000000000261122222000000012219012 -T2202301111114767161219900423WT@#YY0TT2222212222221011212190223823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114767161219900127WT@PPT#Z#2222211222221011216190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476716120200309WTT@BB0P022222112204398100000000 -T12023011111147685223500405981120213110516300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114768521219830411WT@@#PB@B2222212222225012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111476852120040513WT@@B0W0Z22222112204311100000000 -T12023011111147687620600402131120113110376300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111114768761219960922WTTY@ZTZ92222212222221013211190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111147695724200409731120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111114769571219900527WTT9W@9T92222212222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111147702320600402131120213110598300000000000005280420000000000000000000000000000000000222222000000002229012 -T2202301111114770231219960927WTTTZ9BP02221222222221012212110421821011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477023120180918WT@P0@ZT#22212222204398100000000 -T12023011111147712724700406701120412110948300000000069007710210000000000000000000000000000000000222222000000002229012 -T2202301111114771271219840421WT@WZ9WWW2222212222223012212210223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477127120090122WTTW90B#B22222122204306100000000 -T320230111111477127120170701WTTWP0P@022222112204398100000000120130723WTTZ9ZWT#22222112204303100000000 -T12023011111147715525900402631120713111339300000000000010090030000000000000000000000000000000000222222000000002229012 -T2202301111114771551219920413WT@9B0BWW1222222222221012202110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000122 -T320230111111477155120140112WT@TY#BW@12222212204303100000113420100112WT@YYBT9P12222222204306900000000 -T320230111111477155120180427WT@ZYB09T12222212204398100000113120150711WT@W#Z@#Y12222222204301100000113 -T320230111111477155120220904WTTP0WW9Y12222222204398100000000120210114WTTT@Y0PB12222222204398100000000 -T12023011111147719422000411552120423211034300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111114771941219850227WT@9TPY9W2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114771941219860418WT@9TPY9W2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477194120110724WT@9TPY9W22222112204305200000000120060923WT@9TPY9W22222112204308200000000 -T12023011111147725524700408981120213110611300000000000003160230000000000000000000000000000000211122222000000012219012 -T2202301111114772551219920421WT@T@0BZ92222212222221012212110322823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477255120180713WTTP@P@TT22222112204398100000000 -T12023011111147727625200400391120413110893300000000000007710160000000000000000000000000000000000222222000000002229072 -T2202301111114772761219840723WT@9Z#YY@2222212222225012216110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477276120050727WTT#WWPZ022222112204311100000000 -T320230111111477276120100326WT@@@9P0#22222112204305100000000120060312WT@Z@9Y0B22222122204309100000000 -T12023011111147733724200414351120213110548300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114773371219790324WTTZPTTY@2222222222223012298210114923011800000000000000000000000000000000230001000000000000000000000000000000000000000000000000 -T320230111111477337120200112WT@0YTP0Z22222212204398200000000 -T12023011111147734124700410421120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114773411219830405WT@9TPY9W2222212222225012214210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477341120130501WT@9TPY9W22222112204304200000000 -T12023011111147738524200414851120233110396300000000020004170020000000000000000000000000000000000222222000000002229022 -T2202301111114773852219920212WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477385120220312WTT@@W0@012222212204398100000000 -T12023011111147747824700406631120233110561300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111114774782219500727WTT0Y0W0Z2212221222214012212110035713089900000000000000000000000000000000000000000000000000000000000000000000000000060900000000 -T320230111111477478120060408WTTWP0P0922122222204310100000000 -T12023011111147753523500407162120323210766300000000000006540020000000000000000000000000000000000222222000000002229032 -T2202301111114775351219900418WTTYTWTYT2222211222223011214290035723011800000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T2202301111114775351219900705WTTTWZTBB2222212222222021214290035723011800000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111477535120180402WT@BBWB0Y22222122204398200000000 -T12023011111147765220600412561120323110835300000000054106360150000000000000000000000000000000000222222000000182219012 -T2202301111114776521219850213WTTPZW#TZ2222212222222011214190194123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000017 -T2202301111114776521219800712WT@@T0BZ02222211222222021212190223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477652120120507WTTT09BYP22222122204303100000000 -T12023011111147766621700406141120213110611300000000010605280070000000000000000000000000000000000222222000000002229012 -T2202301111114776661220030714WT@TTBWYT2222212222221012212120124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477666120210427WT@Y#BT#Z22222122204398100000000 -T12023011111147771323800413801120422111014300000000364405840230000000000000000000000000000000000222222000001872219012 -T2202301111114777131219910911WT@##Z9@Y2222221222222011214290144621011813000000000000000000000000000000000000000000000000000000000000074600000000000000002023 -T2202301111114777131219970507WTT9TB#ZB2222222222222021212290144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477713120200409WT@#9ZB##22122222204398100000000120180218WTT@Z0BP#22222212204398200000000 -T12023011111147788322900405641120233110557300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114778833219560112WT@@WT#0@2222212222222012216110312913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000200 -T320230111111477883120050118WTT@TZWW022222112206310100000000 -T12023011111147791425600406521110323110835300000000000006540010000000000000000000000000000000000222222000000002229012 -T2202301111114779141219790112WTT#YT9B02222212222225011212110025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114779141219870518WT@TTB9902221211222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477914120160305WT@TTPZB@22212122204398100000000 -T12023011111147791823500411471120323110835300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111114779181219570322WTT#W9Z@Y2222221222222011212290144622011900000000000000340000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111114779181219630312WT@@#W@TB2222222222222021212290144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477918120050712WTTZWT09Z22222222204311200000000 -T12023011111147796025100402211120513111116300000000000000720220000000000000000000000000000000024222122000007922219012 -T2202301111114779601219880701WT@B0T9ZP2222212222221012212120491121011725000000000000000000000000000000000000000000000000000000000000158000000000000000000000 -T320230111111477960120170513WT@WPWW0Z22222112204398100000000120140518WT@ZZPPYZ22222112204302100000000 -T320230111111477960120210907WTT#ZP90Z22222112204398100000000120190908WT@9Z@B9P22222112204398100000000 -T12023011111147796724700408301120232110516300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111114779672219780713WTTYTBWWP2222212122211012208110510913109900000000000000000000000000000000000000000000000000000000000000000000000703023100000000 -T320230111111477967120100905WT@@#PYZT22222212204311100000000 -T12023011111147799223500404341120432120000300000000000006540130000000000000000000000000000000000222222000000002229022 -T2202301111114779923219760507WTT0TYTWY2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477992120140414WTTB9W9B022212212206302100000000 -T320230111111477992120210227WTT0PZ#@W22222112206398100000000120150923WT@0#@WPZ22222122206301100000000 -T12023011111147799424700413761120213110598300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111114779941219860912WT@0TBP0P2222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111477994120210427WT@Y@#0BB22222122204398100000000 -T12023011111147801824700404542120423210959300000000600007710020000000000000000000000000000000000222222000000002229032 -T2202301111114780181219860226WTTB0@T992222211222222011215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114780181219850124WT@0W#YZP2222212222222021215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478018120170423WTT@ZZBT@22222122204398200000000120150113WTT9WBYZZ22222122204301200000000 -T12023011111147803324700406701120233120000300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111114780333219520313WTT9P#WPP2221222122224012213110006013069900000000000000000000000000000000000000000000000000000000000000000000002833000000000983 -T320230111111478033120070108WTTBZPBT922212222206308100000000 -T12023011111147806122000403891110213110576300000000000003570010000000000000000000000000000000000222222000000002229012 -T2202301111114780611219720318WT@TT@WY92221222222222012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478061120130726WT@9B#9ZT22212212204303100000000 -T12023011111147819125100402211120233110611300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111114781913219740507WT@T09@9B2222122222223012210110322813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478191120050301WTT#ZP@B#22221222207309100000000 -T12023011111147825520800414151120732111480300000000001007710900000000000000000000000000000000000222122000000002229022 -T2202301111114782551219860218WT@90#@ZZ1222222222222012212120910023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114782552219890902WTT0WP@YT1222221122212022212190006013109900000000000000000000000000000000000000000000000000000000000000000000000850007400000000 -T320230111111478255420070111WT@#Y@WP#12222222104310109140000 -T320230111111478255120100702WT@0W@00012222222204306100000000120090704WT@W99WT@12222212204308100000000 -T320230111111478255420120421WTTTZ9@9012222212104305109140000120100704WT@@TZYYY12222222204307100000000 -T12023011111147827422000403352120323210835300000000000006540020000000000000000000000000000000000222222000000002229032 -T2202301111114782741219800904WT@9TPY9W1222212222222011212290035723011800000000000000000004000000000000000000000000000000000000130000000000000000000000000000 -T2202301111114782741219760527WT@9TPY9W1222211222222021208290035723011800000000000000000004000000000000000000000000000000000000130000000000000000000000000000 -T320230111111478274120120909WT@9TPY9W12222112204304200000000 -T12023011111147828820600414871120333120000300000000000005280320000000000000000000000000000000000222222000000002229022 -T2202301111114782883219870918WTT#T9WBP2222212222221012216110006011069902000000000000000000000000000000000000000000000000000000000000158100000000000000000000 -T320230111111478288120210708WTTB#WBBW22222222209398100000000120200924WTTT#@TP@22222112209398100000000 -T12023011111147835324200404891120333110740300000000000005280660000000000000000000000000000000000222222000000002229022 -T2202301111114783533219630307WT@B0PTYZ2222212122225012210110253513069900000000000000000000000000000000000000000000000000000000000000000000000850000000000000 -T320230111111478353120180124WTT@@Y@BY22222112206398100000000120150502WT@T09P#T12222112206398100000100 -T12023011111147839124100402401120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114783912219740126WTTYPYPYB1222212222211012211111530013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111478391120040323WTTYY#9ZZ12212212204309100000000 -T12023011111147842424200414351120533111335300000000000007710020000000000000000000000000000000000222222000000002229022 -T2202301111114784242219790123WT@WBBPWT2222122222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478424120080913WT@0PW9WT22221222204309100000000120050313WTT9Z9W9022221222204312100000000 -T320230111111478424120190927WT@@0YTZY22221212204398100000000120170124WT9TT9B@Y22221212204398100000000 -T12023011111147846725900402832120323210766300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111114784671219990514WT@9TPY9W1222221222221011209290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114784671219970426WT@9TPY9W1222222222221011209290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478467120210526WT@9TPY9W12222222204398200000000 -T12023011111147852222000403351120333110376300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111114785222220020201WT@YYBT9P1222212222223012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478522120190723WT@TPWWYB12222122204398100000000420170407WT@YYBT9P12222122204398900000000 -T12023011111147857020600400871120423111034300000000600007710040000000000000000000000000000000000222222000000002229012 -T2202301111114785701219870714WT@9B#PW@2222211222222011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114785701219880926WTTBT0W002222212222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478570120160707WT@Y@T9#022222122204398200000000120120112WTTB#YP@@22222112204303200000000 -T12023011111147858824100405611120433110893300000000003006540600000000000000000000000000000000000222222000000002229022 -T2202301111114785883219750512WTTTBBZ@T2222212222222012216110006011069942000000000000000000000000000000000000000000000000000000000000409300000000000000000000 -T320230111111478588120120518WTTTTTBB@11222222207304100000000 -T320230111111478588120170712WTTYYW@YZ22222112207398100000000120120904WTTY9@PWP22222122207304100000000 -T12023011111147870822000407411120213110563300000000000004170180000000000000000000000000000000000222222000000002229012 -T2202301111114787081220000409WTTZ0#PP02222222222221012211110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478708520210926WT@YZ0ZBZ22212122104398106090000 -T12023011111147877624700402991120213110598300000000080005280100000000000000000000000000000000000222222000000002229012 -T2202301111114787761219830927WT@@9TP9W2222212222221012214210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478776120100727WT@90Y0TZ22222112204305200000000 -T12023011111147883322000405841120523111116300000000200008880040000000000000000000000000000000000222222000000002229012 -T2202301111114788331219820724WT@BBYTB92222221222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114788331219820401WT@#YZB@02222222222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478833120070208WTTT#099Z22222222204309200000000 -T320230111111478833120120101WT@#Y@WBB22222222204304200000000120100404WTTYZ#PZ@22222222204306200000000 -T12023011111147884924700402991110233110281300000000000001610070000000000000000000000000000000000222222000002022219021 -T2202301111114788492219990704WT@YYBT9P1222222222223012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111478849120190409WTTZY@9P912222212204398100000000 -T12023011111147885220600401641120333110740300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111114788522219950909WT@Y#Y@PY2222122222211012216110144613089900000000000000000000000000000000000000000000000000000000000000000000000000082200000050 -T320230111111478852120170204WTTBT90@B22221212204398100000000420140912WT@0B00Z#22222112104302109140000 -T12023011111147901124500410691120233120000300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111114790113219680724WTT9T@WTT2222212222222012212110164413069900000000000000000000000000000000000000000000000000000000000000230300000000000000000000 -T320230111111479011120050102WT@09Z0ZW22222122209311100000000 -T12023011111147903823900406231120433110611300000000000005280760000000000000000000000000000000000222222000000002229022 -T2202301111114790382219880326WT@YYBT9P1222222222222012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114790382219880414WT@YYBT9P1222221222222022203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479038120190708WTTZZW@0Z12222122204398100000000120160713WT@9W#B9Z12222212204398100000000 -T12023011111147906120600414161120323110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111114790611219810123WTTZ@#PT#2222211222222011213120223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114790611219840912WT@#PYB#92222212222222021213190431723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479061120100118WTT#9@YW022222122205307100000000 -T12023011111147906623500414281120212110611300000000000105280320000000000000000000000000000000000222222000000002229012 -T2202301111114790661219940523WTT@TZ9Z02222212222221012208110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479066120190401WT@0ZWP0Z22222112204398100000000 -T12023011111147914222000411282120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111114791421219930102WT@9TPY9W1222211222222011205290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114791421219930413WT@9TPY9W1222212222222021205290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479142120160522WT@9TPY9W12222112204301200000000120130918WT@9TPY9W12222122204303200000000 -T12023011111147918921700406141120233110611300000000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111114791891219880307WT@0Y9W#W2222212222221012212110570323099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479189120080127WT@PB9PZ922222112204305100000000 -T12023011111147930924200407311120213110611300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111114793091220020126WTTZ@99Z02222212222221012210110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479309120190104WTTBYP0B912222112204398100000000 -T12023011111147932320600414251120113110376300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114793231219970407WTTZZYYWY2222212222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111147937324200408781120213110611113170000080405280100000000000000000000000000000000000222222000000002229012 -T2202301111114793731219990518WTT#W#Y9#1122222222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000867 -T320230111111479373120200318WT@PZT@ZY11222212204398100000000 -T12023011111147969925200407301120313110786300000000000006540200000000000035002000000000000000000222222000000002229012 -T2202301111114796991219810526WT@TP#@9W2222212222221012211110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479699120090323WT@WB9P#Z22222122204306100000000120080223WT@Y@@TBZ22222122204308100000000 -T12023011111147971724200411401120233120000300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111114797173219720509WT@BYWPBT2222212222222012216110640013069900000000000000000000000000000000000000000000000000000000000000077700000000000000000000 -T320230111111479717120060327WTTW@PTB#22222122209309100000000 -T12023011111147979624200402501120213110611300000000000005280710000000000000000000000000000000000222222000000002229072 -T2202301111114797961219930304WT@TYT##02221112222221012213110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479796120140921WTTZ0WZ9922212122204303100000000 -T12023011111147980722000404012120213210598117300000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111114798071219970207WT@9TPY9W2221222222221012210210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479807120200526WT@9TPY9W22212212204398200000000 -T12023011111147981223500414281120523111116300000000000004130030000000000000000000000000000000000222222000004752219012 -T2202301111114798121219990226WT@TYTYBT2222221222222011212290045621011812000000000000000000000000000000000000000000000000000000000000190000000000000000000000 -T2202301111114798121220000711WTTPZ@Y0Y2222222222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479812120180412WT@PP#TW@22222212204398100000000 -T320230111111479812120200501WTT0ZP@YY22222222204398100000000120190401WT@Y9TW9@22222212204398100000000 -T12023011111147993224200404281120213110618300000000000005280390000000000000000000000000000000000222222000000002229072 -T2202301111114799321219830912WT@Y@#PBP2222212222221012212111230023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479932120190404WT@@YP00#22222122204398100000000 -T12023011111147993925600413441120213110399300000000000003160370000000000000000000000000000000211122222000000012219072 -T2202301111114799391219910411WT@BWTZZZ2222212222223012216110630023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111479939120130913WTTYPY0P#12222112204303100000000 -T12023011111147996422000407411120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111114799641219970327WT@W9@Z#Y1222222222221013212190441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111148000921400408021120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111114800091219920513WT@@WW9ZP1222222222223012212110283223010900000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111480009120160702WTT9#PB#Z12222222204398100000000120120301WT@@@ZT@P12222212204302100000000 -T12023011111148011022000403351120513111082300000000000007710300000000000000000000000000000000000222222000000002229012 -T2202301111114801101219930702WT@09Z9@Z2222122222221012213190451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000416 -T2202301111114801102219930107WTTW0@BBZ2212221222211102212190006011089919000000000000000000000000000000000000000000000000000000000000176000000000060900000000 -T320230111111480110120180923WT@YY#B9@22122212204398100000000 -T320230111111480110120220112WT@9@9Z@Z22122222204398100000000120190309WTTYB0P#B22122212204398100000000 -T12023011111148013520600402131110413110939300000000000503490040000000000000000000000000000000119222122000000102219012 -T2202301111114801351219880112WTTY99#9P2222212222225012212120055521011813000000000000000000000000000000000000000000000000000000000000076700000000000000000000 -T320230111111480135120080522WTTZ#Z0##22222122204308100000000 -T320230111111480135120130504WTTPY9B9T22222112204303100000000120090727WTTWTB@PW22222122204307100000000 -T12023011111148019124200414021120233120000300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111114801913219660308WTT0Z#YBP2221222122221012212110124813069900000000000000000000000000000000000000000000000000000000000000000000002419000000000956 -T320230111111480191120180313WTTZWP@BT21212112207398100000000 -T12023011111148022723900403801120313110835300000000012206530080000000000000000000000000000000000222222000000002229012 -T2202301111114802271219830918WT@Y#BYPZ2222212222222012212110085223010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111480227120220712WT@##9T@922222122204398100000000120170302WT@@YW90@22222112204398100000000 -T12023011111148028223800401511120233110423300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111114802823219890918WT@Z909#Y2222212222222012214110006011069980000000000000000000000000000000000000000000000000000000000000516000000000000000000000 -T320230111111480282120180909WT@0WBTY@11222212206398100000000 -T12023011111148029123500402291120433110766300000000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111114802912219890927WT@YYBT9P1222212222221012206910095113079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111480291120100922WT@BPPB@P12222122204305100000000 -T320230111111480291120140727WT@@P0BZ012222112204301100000000120130112WT@TWZ9WY12222112204302100000000 -T12023011111148050924700409321110213110524300000000000003050100000000000000000000000000000000000222222000000002229072 -T2202301111114805091219820518WTT0BT9TW2222212222221012216110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000052 -T320230111111480509520050509WT@##YZ@922222112204309100000229 -T12023011111148055922000406951120232110516300000000080004170990000000000000000000000000000000000222222000000002229022 -T2202301111114805592219730327WTT0##BZY2222212222211012213110501013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111480559120080123WT@YZ#TP#22222122204306100000050 -T12023011111148061222000413681120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111114806121219740423WT@WYZP902212222222223012211111390023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111480612120050511WTT00#0TY22122212204311100000000 -T12023011111148067920900411721120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114806791219800102WTTY9ZYT@1222222222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111480679120140105WTT9Z#@B021222212204303100000000 -T12023011111148087620600402131120313110542300000000000003920420000000000000000000000000000000261122222000000012219072 -T2202301111114808761219730912WTTTW@#PB2222212222225012216111330023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111480876120140413WTT9W#0#Y22222122204301100000000120120101WT@#WW9ZW22222122206303100000000 -T12023011111148089322000413731120412110971300000000000007710310000000000000000000000000000000000222222000000002229072 -T2202301111114808931219820408WTT@Z0YBP2221222222221012211121490023010900000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111480893120110512WT@YWP9TZ22212222204305100000000 -T320230111111480893120190327WTTBY@B0P22212222204398100000000120130111WTT@BYZPW22212222204302100000000 -T12023011111148093825800401871120233110516300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111114809382219890404WT@TTYTBY2222212222215012207110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111480938120140404WTT@0@0BB12222222204302100000000 -T12023011111148094525000414191120212110618117460000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111114809451220010423WTTY9#TYT2122222222221012216110164421011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111480945120210423WT@Y@0WW#21222222204398100000000 -T12023011111148095923500402291120413110939300000000000004620790000000000000000000000000000000308122222000000012219072 -T2202301111114809591219750905WT@9Y9Y@Y2222122222221012208910800023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111480959120130227WTT@@#TP922221212204302100000000 -T320230111111480959120160104WT@Z9YPT922221212204398100000000120150908WTT0@YBBP22221212204301100000000 -T12023011111148103024200414721110213110516111620000000003570010000000000000000000000000000000000222222000001022219012 -T2202301111114810301219960912WTT9@WZW#2221222222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481030120200401WT@BYBZYZ22212222204398100000000 -T12023011111148113822000407411120213110599300000000000003160020000000000000000000000000000000211122222000000012219012 -T2202301111114811381219830118WTTYYBP9B1222212222221012212110303023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481138120130907WTTT#ZTPP12222122204304100000000 -T12023011111148114220800410781110213110446300000000000003230010000000000000000000000000000000000222222000000002229012 -T2202301111114811421220020223WTT##TBTP2222212222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481142120220422WT@##ZZZY22222112204398100000000 -T12023011111148115422000408451120232120000300000000000004170940000000000000000000000000000000000222222000000002229022 -T2202301111114811543219850107WTTPBBB@Y2221222222221012212110055511069940000000000000000000000000000000000000000000000000000000000000284900000000000000000000 -T320230111111481154120100212WTT00T9WT22212222207306100000000 -T12023011111148117922000412691120433110893300000000000007710700000000000000000000000000000000308222221000000002229022 -T2202301111114811791219620118WT@##B@WB2221221222223012212110164423099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481179120090426WTT@#B0BT22212212205306100000000 -T320230111111481179120160201WTTY#B@YT22212212204398100000000120130113WT@0YZ9#922212212204302100000000 -T12023011111148125624700406701120413110766300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111114812561220010126WT@9PZ09@2222212222222012212210144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114812562219990213WTT0@YT##2222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481256120180926WTT#BZ#B022222122204398100000000120170923WTTP#TBZP22222122204398100000000 -T12023011111148130622000409411120233110517300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111114813063219900112WTTW##ZBT2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481306120080304WT@WZ#YB#22222122207308100000000 -T12023011111148136223500411471120313110447300000000000003920150000000000000000000000000000000261122222000000012219072 -T2202301111114813621219840426WT@TZWZ9T2221222222223012213110850023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481362120110112WTTP0PT@Y22212212204304100000000120100122WTTT0T@9#22212222204306100000000 -T12023011111148149924200414721120412110893300000000000007710320000000000000000000000000000000000222222000000002229012 -T2202301111114814991219850218WT@0T@@WT2222112222221012212120332723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481499120060112WTT#@0B@W22221112204309100000000 -T320230111111481499120190313WT@#B#Y#922221212204398100000000120090418WT@BW#P@022221112204307100000000 -T12023011111148151023300407291120313110835300000000220006540050000000000000000000000000000000000222222000000002229012 -T2202301111114815101219890324WT@09B0Z02222212222221012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481510120160326WTTZ0ZPBT22222112204398100000000120140404WTTYBTB@Z22222112204302100000000 -T12023011111148155120800414651120212110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111114815511219980407WT@TZ9Y#92222212222221012212120144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481551120210126WTTWTBWP012222122204398100000000 -T12023011111148172425800409911120232110258300000000000000360440000000000000000000000000000000000222122000003812219022 -T2202301111114817242219770301WT@YYBT9P1222212222225012206920006011079914000000000000000000000000000000000000000000000000000000000000088700000000000000000000 -T320230111111481724120060314WTTB0P#9Y12222122204310100000000 -T12023011111148173121700407751120213110599300000000305603160100000000000000000000000000000000211122222000000012219012 -T2202301111114817311219880518WT@PBPPT#2222212222225012213110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481731120200523WTTY00#WY22222122204398100000000 -T12023011111148175320600414161120433111034300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111114817532219910213WT@BT90TB2222212222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111481753120090301WT@ZB#BB022222112204306100000030 -T320230111111481753120180402WT@YZBT@Z22222122204398100000030120150512WT@WYPZTY22222112204301100000030 -T12023011111148176022900401031120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114817602219710121WT@W9@YWB2222212222215012216110720013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111481760120070726WT@099Z@@22222122204309100000050 -T12023011111148179422000408891120812111691300000000015012890550000000000000000000000000000000000222222000000002229072 -T2202301111114817941219890113WT@BP#@PZ2221222222223012212110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481794120080207WT@#0T09P22212222204308100000000 -T320230111111481794120110107WT@BBZW9922212222204306100000000120090722WTTZYZ9BY22212222204307100000000 -T320230111111481794120130323WTT#ZB09022212222204398100000000120120126WT@#0@@##22212222204304100000000 -T320230111111481794120190312WTTBY09TY22212212204398100000000120160723WT@9YYZT#22212212204302100000000 -T12023011111148181024700402991120313110766300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111114818101219970312WTTY0ZPYZ2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481810120220702WT@@P9##T22212212204398100000000120200907WT@9@0TPT22222122204398100000000 -T12023011111148194023500411471110323110740300000000000004000010000000000000000000000000000000000222222000000002229012 -T2202301111114819401219760423WTT@PWZT#2222211222222011216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114819401219830302WT@Y@B0@B2222212222222021216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111481940120140901WTT@BP@PW22222122204302200000000 -T12023011111148209421000405411120213110599300000000000003160240000000000000000000000000000000211122222000000012219012 -T2202301111114820941219820312WT@TW00PP1222212222225012212110243623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111482094120060726WTTBYYTZ#12222212204308100000000 -T12023011111148213620800410781120313110704300000000000006540520000000000000000000000000000000000222222000000002229012 -T2202301111114821361219870107WT@90TZB#2222212222223012210110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111482136120120907WT@Z@T#TT22222122204303100000000120090124WTTTZ0Z0P22222122204305100000000 -T12023011111148219923800401511120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114821992219840713WT@YBYZPY2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111482199120210918WTT@0@WYB22222122204398100000000120120718WT@PWWYB#22222122204304100000000 -T12023011111148220025000403231120612111434300000000000010090180000000000000000000000000000000000222222000000002229072 -T2202301111114822001219900424WTT0TZ0PW2222212222221012212110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111482200120080927WT@Z0YT9P22222122204308100000000 -T320230111111482200120130927WT@YZ@Z@@22222122204303100000050120100721WTTY@@PBB22222222204306100000000 -T320230111111482200120190327WT@0PZ9WY22222112204398100000050120180713WTTP#ZP#W22222122204398100000000 -T12023011111148222923500407161120523111116300000000050008880250000000000000000000000000000000000222222000000002229012 -T2202301111114822291219840721WT@YPBT092222221222222011211290184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114822291219830112WT@9BP@9B2222222222222021211290243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111482229120070921WTTT9@T#Y22222222204310100000000 -T320230111111482229120110324WT@9TPY9W22222212204304200000000120080702WTTZBWZBP22222212204308100000000 -T12023011111148231322000406191120232110458300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114823135219820718WTT@@WB#Y2221222222221012212110213911069937000000000000000000000000000000000000000000000000000000000000340100000000000000000000 -T320230111111482313120210401WT@999P@922222222209398100000000 -T12023011111148241724700409321120232110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111114824173219620727WT@TYW00W2221222222211012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111482417120080908WT@P@ZW#W22212212206308100000000 -T12023011111148254924700401012120423210939300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111114825491219890723WT@P@#W@Y2222222222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114825491219900218WTTZ@9P@92222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111482549120120505WT@BB9PBB22222112204304200000000120090327WT@@PZZWB22222122204306200000000 -T12023011111148269521000411361120313110917300000000000706540320000000000000000000000000000000000222222000000002229042 -T2202301111114826951219870926WTTB9PZ#W1122222222221012213110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111482695120160423WTTBBPYBT21222212204398100000000120060405WT@W@ZY0@21222212204310100000000 -T12023011111148283022000407832120213210598300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111114828301219880427WT@9TPY9W1222222222223012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111482830120110305WT@9TPY9W22222212204306200000000 -T12023011111148292420600414871120313110796300000000050006540310000000000000000000000000000000000222222000000002229012 -T2202301111114829241219950927WTTY@0ZZT2221222222223012212110322823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111482924120220927WTT@90@YY22121222204398100000000120190924WTTWPT9PT12222112204398100000000 -T12023011111148301822000403351120413110939123980000000000600210000000000000000000000000000000020222122000006912219072 -T2202301111114830181219860304WT@9BPYWT2221222222221012212120760021011700210000000000000000000000000000000000000000000000000000020000138100000000000000000000 -T320230111111483018120150512WT@9Z#@PB22212222204398100000000 -T320230111111483018120200422WT@T#T@@022212212204398100000000120190401WT@#@YZ#W22212222204398100000000 -T12023011111148304722000411281120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114830471219900912WT@099Z@P2222212222221012210110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483047120180721WTT9PWWY#22222122204398100000774 -T12023011111148307920800411601120233110573300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114830793219660709WT@9Z@0#T2222222122211012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000446048800000000 -T320230111111483079120050912WTTB@@@YW22222212206311100000000 -T12023011111148317123300410111120413111034300000000000007710020000000000000000000000000000000000222222000000002229072 -T2202301111114831711219770912WT@YB0P0Y2222212222221012212111040023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483171120040709WTTWW@W@B12222122204311100000000 -T320230111111483171120100912WTT#09#@B12222112204307100000000120080124WTTBWYWZ012222122204308100000000 -T12023011111148317825600411521120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114831782219880212WTTB0BPWB2222212222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111483178120080704WT@0Z@PPY22222122204307100000000 -T12023011111148319525900406651120333110835300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111114831953219670312WTT@#YWT#2222212222225012215110303013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483195120140927WT@9ZP0BP12222212206302100000000120130718WT@TBWZ9B12222212206302100000000 -T12023011111148321024700405901120233120000300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111114832103219610321WT@9W9T0W2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000800000000000000000000000 -T320230111111483210120100324WTT9W0P#W22222122206304100000050 -T12023011111148321723500405981120512111116300000000000008880300000000000000000000000000000000000222222000000002229012 -T2202301111114832171219880526WT@0@W@Y#2221222222221012212110312923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483217120080401WT@W@@WP@22212222204308100000000120070527WTT999BY@22212212204309100000000 -T320230111111483217120220912WTTZWTPB922212212204398100000000120190927WTTWB@B0W22212212204398100000000 -T12023011111148326824200403941120332110740300000000000005280770000000000000000000000000000000000222222000000002229022 -T2202301111114832682219610904WTTZ#0TZ@2221221222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000090400000000 -T320230111111483268120120308WT@PZZ9WW22212212204301100000000120090918WT@@#TTY#12212212204306100000000 -T12023011111148329924700409381120213110618300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111114832991219980123WT@BBWWBZ2222212222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483299120210912WTTP#T###22212112204398100000000 -T12023011111148333221400408021120733111480300000000000010090990000000000000000000000000000000000222222000000002229022 -T2202301111114833322219840307WTT#W0#WB2222212222211012209120114913089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111483332120070327WTT0B#YBT12222112204309100000000120050108WT@@@YZPT12222122204312100000100 -T320230111111483332120130405WTTBTB09022222112204305100000000120090304WTT##0YB@22222212204307100000000 -T320230111111483332120210714WT@TTYZ@P12222212204398100000000120190112WT@BYY0B022222122204398100000000 -T12023011111148340122000407412120213210396300000000000005280020000000000000000000000000000000000222222000000002229032 -T2202301111114834011219750507WT@09YZ#Y2222212222223012212210035723011800000000000000000000000000000000060000000000000000000000000000000000000000000000000000 -T320230111111483401120050327WTTPY#9TB22222112204310200000000 -T12023011111148344422500411311120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114834443219620123WTT#ZT#BT2222211222222012212110006011069941000000000000000000000000000000000000000000000000000000000000605800000000000000000000 -T320230111111483444120080707WTTYBPZYZ12222112206307100000000120060301WT@Y090WW12222122206308100000000 -T12023011111148354522000414461120323110835300000000050005280040000000000000000000000000000000000222222000001262219012 -T2202301111114835451220000412WTTYTWB#Z2222212222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114835452219990401WTT9Y#PPW2222211222222021216290006013051800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483545120220123WTT@PTTTB22222112204398100000000 -T12023011111148364820300411441120313110818300000000156006540290000000000000000000000000000000000222222000000002229012 -T2202301111114836481219740505WTTTWTTTY2222212222221012216110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483648120150421WTTY9Z09T22222112204301100000000120140404WT@T#@WB#22222122204302100000000 -T12023011111148366622000403351110323110740300000000000804050110000000000000000000000000000000000222222000000002229012 -T2202301111114836661219860527WT@ZT##Z92222121222222011212110025821011944000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114836661219800512WTTT##ZYB2222212222222021212190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483666120160105WTT9ZZ@BW22221212204398100000000 -T12023011111148382523500407161120212110611114720000001005280160000000000000000000000000000000000222222000000002229012 -T2202301111114838251219960708WTTWZT@@B2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111483825120190704WT@@BBWY022222122204398100000000 -T12023011111148389821000411361120522111116300000000088308880280000000000000000000000000000000000222222000000002229072 -T2202301111114838981219830427WTTPP9T@@2222212222222011216190900023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111114838981219830324WTT9@Z00B2222211222222021213190293121011826000000000000000000000000000000000000000000000000000000000000172700000000000000000000 -T320230111111483898120060313WTTTPWP#B22222122204310100000000 -T320230111111483898120120513WT@TB#BT022222122204305100000000120090504WT@WB9WWZ22222122204308100000000 -T12023011111148394222700407491120313110781111990000002006540720000000000000000000000000000000000222222000000002229072 -T2202301111114839421219930723WTTWB9BYW1222212222223012212110730023011400000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111483942120180121WT@#99TY#12222112204398100000100120160918WT@YY#@0012222122204398100000000 -T12023011111148395524200403941120723111480300000000000000930020000000000000000000000000000000000222222000009162219012 -T2202301111114839551219830113WT@YZPPPP2222122222221011212190580223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114839551219850701WT@W0TP##2222121222221011212190055521011959000000000000000000000000000000000000000000000000000000000000366200000000000000000000 -T320230111111483955120090721WT@Z9BW0Y22221222204306100000000 -T320230111111483955120130123WT@9W###T22221222204302100000000120120223WTTPB@P0922221222204304100000000 -T320230111111483955120180127WTTPBYBTY22221212204398100000000420160914WT@ZW#@PW22221222104398109140000 -T12023011111148405924200410371120213110611300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111114840591219940107WT@9@@99P2222212222221012213110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111484059120190422WT@0@PB@P22222122204398100000000 -T12023011111148408922700408491120523111048300000000040007710100000000000000000000000000000000000222222000000002229012 -T2202301111114840891219810723WTT@BY99@2222122222222011211910263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114840891219740704WT@WZWB@Y2222121222222021210990263421011944000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111484089120050112WTTTYPT0Z22221222204310900000000 -T320230111111484089420210912WT@0W0B@P22221212104398109140000120190701WT@P9WB0#22221222204398100000000 -T12023011111148420424700408301120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114842041220040412WT@9@Y@@B2222211222221012208110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111484204120200401WTT@Z00YT22222122204398100000000 -T12023011111148427124200403461120513111169300000000000308610110000000000000000000000000000000000222222000000272219012 -T2202301111114842711219890718WT@@BWW9@2222212222225012216110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000026 -T320230111111484271120180726WTTBTWBPY22222112204398100000050120150709WT@0BB@@022222112207398100000050 -T320230111111484271120210927WTTWZWWP022222112204398100000000120190712WTT0YZ0PZ22222122204398100000000 -T12023011111148430625200414061120213110611300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111114843061219840407WT@9#Z#YY2222212222221012209110243623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111484306120130413WTTPB0T#Y22222122204304100000000 -T12023011111148438420600402141120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114843841219910405WTTP9@@@#2222212222221012216110144623011400000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111484384120190301WT@Y0Y@T022222122204398100000000 -T12023011111148440720600403591120213110516300000000000004170130000000000000000000000000000000000222222000000002229012 -T2202301111114844071219830322WTT0BBWZ#2222212222225012216110144621011812000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111484407520130518WT@TP##Z#22222112104301109140400 -T12023011111148449524200414351120313110717300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111114844951219780201WTT#90YP@2222212222222012212210075321011820000000000000000000000000000000000000000000000000000000000000124000000000000000000000 -T320230111111484495120160102WTTBPTTZT22222112204398100000000120060307WT@0TT#YY22222122204309200000000 -T12023011111148455222000410051120333120000116660000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111114845523219650421WTT@PWP0B1222222222222012216210006013069900000000000000000000000000000000000000000000000000000000000000400000000000000000000000 -T320230111111484552120200921WTTZ0WYYP22222122206398100000000120180518WT@09@#0W22222122206398100000000 -T12023011111148456724200408391120313110835300000000000106300330000000000000000000000000000000000222222000000242219072 -T2202301111114845671219800127WT@YPWZ#W2221222222221012216110880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000023 -T320230111111484567120080327WTT9ZPBPZ22222212204307100000050120050118WTT@BPTP@22212222204310100000050 -T12023011111148468022000411132120213210611300000000000004170020000000000000000000000000000000000222222000000002229032 -T2202301111114846801219840314WT@9TPY9W1222222222222013212290035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114846805219880712WTTWYZTYP1222221222222023212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111148480022000408891120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114848002219810126WTTZ99TT02221222222211012211120015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111484800120060709WTTPY0Z##22212222204308100000000 -T320230111111484800120150418WT@W@YBYW22212212204398100000000420090724WTTZYZ00Z22212212104306109140000 -T12023011111148480522000402321120312110779300000000000003920440000000000000000000000000000000261122222000000012219072 -T2202301111114848051219840423WT@PWZZ9Z2221222222221012213210650023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111484805120190407WTT00W#ZT22212212204398100000000120140722WT@B0W#9922212212204302100000000 -T12023011111148480622000408891120312110835300000000000306540490000000000000000000000000000000000222222000000002229012 -T2202301111114848061219920923WT@@0ZPP92122222222225012212110501021011700210000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111484806120200109WTTYYYW@921222212204398100000000120140108WT@0T@BBZ21222212204302100000000 -T12023011111148481323700414331120333110611300000000000005280730000000000000000000000000000000000222222000000002229022 -T2202301111114848132219840118WT@YYBT9P1222212222221012298920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111484813120100308WTT@PZ9PY12222212204304100000000120050722WT@Y@9@#Y12222222204309100000000 -T12023011111148500522700408351120332110740300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111114850052219900424WTT09B@@B2222212122211012212120015911109902000000000000000000000000000000000000000000000000000000000000005000000794004800000000 -T320230111111485005420160227WT@ZB00B022222112104398109140000120120427WT@T0@0WY22222112204304100000000 -T12023011111148506724700413761120213110611300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111114850671220030404WT@PYY#PW2222212222223012211110174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485067120220427WTTBZW9PZ12222122204398100000000 -T12023011111148508020600402131120713120000300000000000011650150000000000000000000000000000000000222222000000002229012 -T2202301111114850801219890524WTTBZP0BW2222212222222012216110392123099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114850801219830223WTTPYTW@Y2222211222222022212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485080120100712WT@9T9YP922222112204304100000000 -T320230111111485080120160422WTTP9PBY#22222112204398100000000120130701WT@@9#9PB22222112204302100000000 -T320230111111485080120200104WT@9PYWTZ22222112204398100000000120180501WT@PPBT@B22222112204398100000000 -T12023011111148533524200408391120213110610300000000000002900270000000000000000000000000000000211122222002600012219012 -T2202301111114853351219840307WTTWPPB@B2222212222221012212110283223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485335120170409WT@@@BTWB22222122204398100000000 -T12023011111148565524200407311120233110306300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111114856553219820126WTTZT9BTT2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000600000000000000000000000 -T320230111111485655120220518WTT0ZY0B922222122207398100000000 -T12023011111148567322000413731110513110909300000000000002980010000000000000000000000000000000000222222000000002229012 -T2202301111114856731219940523WTTWPWYP#1222212222221012212190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114856732219820102WT@YYBT9P1222221222221102208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485673120110913WTTZZPBWB12222122204305100000000 -T320230111111485673120190322WTT0BZ99B12222112204398100000000120140118WT@WPBYWY12222122204302100000000 -T12023011111148571025900403711120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114857101220010124WTT@9TB@Y2222212222221012210110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485710120210923WTT90TTB912222112204398100000000 -T12023011111148572622000411281120333120000300000000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111114857263219680207WT@Z99@ZY2222212222222012216120035713069900000000000000000000000000000000000000000000000000000000000000430000000000000000000000 -T320230111111485726120220523WT@9TPY9W21222122206398100000000120150304WTTBT0TP022222112206398100000000 -T12023011111148582824200403941120313110740128230000000002950070000000000000000000000000000000000222222000003592219012 -T2202301111114858281220000127WT@PZ9#TP1222222222221012211110065421010110000000000000000000000000000000000000000000000000000000000000071600000000000000000000 -T320230111111485828120220123WTTBB09YB12212212204398100000000120190201WTTPT@ZZB12222212204398100000000 -T12023011111148585322000405321120213110611300000000000005280310000000000000000000000000000000000222222000000002229012 -T2202301111114858531219780323WT@P@BTP02222212222225012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485853120200121WT@BPYTZ#22222112204398100000000 -T12023011111148588922700408351120433110939300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114858892219920713WT@B@B9B92222212122211012212190411913109900000000000000000000000000000000000000000000000000000000000000000000000369056500000000 -T2202301111114858892219920412WTTT9BWP92221221222211102211190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111485889120130113WT@YBPWYP22222122204302100000000420110326WTTTY#TY922222122104303109140000 -T12023011111148590122000408341120213110859300000000000004760150000000000000000000000000000000000222222000000522219012 -T2202301111114859011219640411WT@@P9@W02222211222225012210210164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485901120070926WT@#9PYPT22222112204309100000000 -T12023011111148591820600414771120212110470300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111114859181219980723WTT@#WTBY2222211222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485918120170213WT@Y9PWZT22222122204398100000000 -T12023011111148594423500408281110523111116300000000000004010010000000000000000000000000000000000222222000000002229012 -T2202301111114859441219890324WT@PWWWYW2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114859441219920423WT@ZBZBZ02222212222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485944120110712WTTT@PWBZ22222122204305200000000 -T320230111111485944120190722WT@#99T@022222122204398200000000120140704WT@9WZPZZ22222112204302200000000 -T12023011111148595322000400921120313110781300000000000006210050000000000000000000000000000000000222222003200012219012 -T2202301111114859531219990109WT@9TPTTW2222122222221012212110065423010100000000000000000000000000000000310001000000000000000000000000000000000000000000000000 -T320230111111485953120220509WT@PT@BBZ21222212204398100000000120200313WTT9#BW0Y22221222204398100000000 -T12023011111148599521000405411120313110766138130000000006540220000000000000000000000000000000000222222000000002229012 -T2202301111114859951219870126WT@PBW#PZ2222212222221012212110233723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111485995120220221WTT0T@Y@T22222122204398100000000120180412WT@PYTY#Y22222112204398100000000 -T12023011111148620521700407751110213110611300000000000205130040000000000000000000000000000000000222222000000002229012 -T2202301111114862051219970524WT@TTPPTT2122212222221012208110144621011806000000000000000000000000000000000000000000000000000000000000048400000000000000000028 -T320230111111486205120170122WTT@YB@0#12222122204398100000000 -T12023011111148623824200414721110313110835300000000000006540010000000000000000000000000000000000222222000000002229012 -T2202301111114862381219820921WT@YYY0992221221222225012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486238120140118WTTYTYPYW22112222204301100000000120110501WTT0@T#9W22112222204305100000000 -T12023011111148624624700413761120423111034300000000006507710070000000000000000000000000000000000222222000000002229012 -T2202301111114862461219870126WT@9TPY9W1222211222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114862461219870413WT@9TPY9W2222212222222021201290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486246120170707WT@90YBTB22222122204398100000000120140907WT@9TPY9W22222112204302200000000 -T12023011111148625525900402721120233120000300000000050004170730000000000000000000000000000000000222222000000002229022 -T2202301111114862552219720101WT@YYBT9P1222222222223012209910006011079906000000000000000000000000000000000000000000000000000000000000032200000000000000000000 -T320230111111486255120050712WT@##Z@@012222212204311100000050 -T12023011111148628824700410421120323110835300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111114862881219700313WT@9TPY9W1222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114862881219780918WT@9TPY9W1222212222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486288120150518WT@9TPY9W12222222204301200000000 -T12023011111148632023500408282110423211034300000000000000490010000000000000000000000000000000000222222000000002229032 -T2202301111114863201219910523WT@9TPY9W2222211222222011216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114863201219900301WT@9TPY9W2222212222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486320120200104WT@9TPY9W22222122204398200000000120140702WT@9TPY9W22222112204301200000000 -T12023011111148641624200403941120423111034300000000000007710210000000000000000000000000000000000222222000000002229012 -T2202301111114864161219900418WTT#PPT0W2222122222221011212110303023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114864161219800914WT@Z#PW9B2222121222221011212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486416120210726WT@TBZPWW22221222204398100000000120090123WT@YYTW#P22221212204306100000000 -T12023011111148641720600402131120313110773300000000000105280410000000000000000000000000000000000222222000000002229012 -T2202301111114864171219990912WT@@@Z90Y2122222222221012210110421823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486417420220707WT@YYBT9P22222112204398100000000120190101WT@YBWB9#22222122204398100000000 -T12023011111148647220600403591120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114864723219680912WTTPYZ9BW2222212222225012211110015911069937000000000000000000000000000000000000000000000000000000000000249900000000000000000000 -T320230111111486472120070927WT@P9@0YY22222112207308100000000 -T12023011111148649324200407311120323110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111114864931219870322WT@9P0TY02222212222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114864931219830122WTTWPB99Y2222211222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486493120100307WTTP#P@YY22222122204305200000000 -T12023011111148653220600402141120212110536300000000017004170130000000000000000000000000000000000222222000000002229012 -T2202301111114865321219820402WT@#9P0P@2222211222221012212110144623011800000000000000000000000000000000130000000000000000000000000000000000000000000000000000 -T320230111111486532520150305WTTZ#@BBZ22222112104398109140000 -T12023011111148666324700409321120213110320300000000000003160120000000000000000000000000000000211122222000000012219012 -T2202301111114866631219800124WT@PZB#TT2222122222223012210110372323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486663120140507WT@PWWT#@22221212204301100000000 -T12023011111148695222700407491120233110516300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111114869523219600921WTT0WZPT92222212122225012211110006013069900000000000000000000000000000000000000000000000000000000000000000000001131000000000000 -T320230111111486952120130421WT@TBBTZ@12222122206303100000000 -T12023011111148696822000411551120213110598300000000000005280120000000000000000000000000000000000222222000000002229072 -T2202301111114869681219790118WT@YPBWYP2221222222221012212111390023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111486968120080422WTT9B@PB@22212222204308100000000 -T12023011111148703124900404261120213110493300000000020005280090000000000000000000000000000000000222222000000002229012 -T2202301111114870311219960914WTTTTZPYB1222212222221012216110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487031120220227WT@@9Y0WW12222112204398100000000 -T12023011111148705625600414551120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114870562219800404WTTBW9P#T2222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111487056120160505WT@#B#ZYP22222122204398100000000120070912WTT@BY@TY22222112204309100000000 -T12023011111148707321200403951120213110598300000000000505280030000000000000000000000000000000000222222000000002229012 -T2202301111114870731219940923WT@P@YTBY2222212222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487073120200104WTT#9Z#P@22222122204398100000000 -T12023011111148710222700408351120533111034300000000000007710210000000000000000000000000000000000222222000000002229022 -T2202301111114871022219740127WT@YYBT9P1222222222223012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487102120080513WTTP9009912222212204306100000000120050727WT@0YTB9012222212204309100000000 -T320230111111487102120130423WTT@BYT9W22222212204302100000000120100718WTT9B#TPY12222222204304100000000 -T12023011111148712324700408092120423211007300000000020005460050000000000000000000000000000000000222222000002252219032 -T2202301111114871231219820102WTTY#PT9Z2222211222222011204290065423011800000000000000000000000000000000000000000000000000000000000000045000000000000000000000 -T2202301111114871231219830113WTT9TYYTY2222212222222021207290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487123120170307WT@ZYZ00T22222112204398200000000120080401WT@#@YT#P22222112204303200000000 -T12023011111148713423700414331120323110760300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114871341219960122WT@#@00YW2222212222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114871342219920407WTTBY9W#W2222211222222021216290006013051800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487134120220722WT@ZY00PZ22122222204398100000000 -T12023011111148719722000409871120233110611300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111114871973219710711WTTZWWWB92222212222225012213110223813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487197120080708WT@ZYB99#22212222206308100000000 -T12023011111148725722000406211120313110835103850000000006540200000000000000000000000000000000000222222000000002229072 -T2202301111114872571219800726WTTTZ#PPY1221222222225012216110870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487257120200227WT@P09TY022212212204398100000000120050313WT@#0#9#022212222204309100000000 -T12023011111148732422700408351120533111225300000000000007710610000000000000000000000000000000000222222000000002229022 -T2202301111114873242219880126WTTWYYZTT1222222122211012213110273313109900000000000000000000000000000000000000000000000000000000000000000000000556037800000000 -T320230111111487324120150308WT@B@WPZZ12222122204301100000000120130908WTT#PP#ZZ12222212204302100000000 -T320230111111487324120180723WT@0#@PB012222122204398100000000120160307WT@TBY9YT12222112204398100000000 -T12023011111148736625600411521120233110516300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111114873662219840704WT@Y00WYW2222212122214012212110015913109900000000000000000000000000000000000000000000000000000000000000000000000742019200000000 -T320230111111487366120120927WTTZ0PYP#12222112204304100000000 -T12023011111148737322000407791120413111034300000000000007710350000000000000000000000000000000000222222000000002229072 -T2202301111114873731219930107WT@ZP9PTB2221212222221012216110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487373120130412WT@P9PTW912212112204303100000000 -T320230111111487373120220502WTTZYPYZT22212112204398100000000120160407WTTP9YW0022212212204398100000000 -T12023011111148742223500411471110213110611300000000000001910010000000000000000000000000000000000222222000000002229012 -T2202301111114874221219920327WT@WTYTYP1222222222221012212210105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487422120190223WT@ZZ@PYT12222212204398100000300 -T12023011111148746622000407241120213110376300000000000003160150000000000000000000000000000000211122222000000012219012 -T2202301111114874661219870312WTTY9PY@B1222211222221012212110164423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487466120130914WT@YTTPW012222122204304100000000 -T12023011111148747322700413181120422111034300000000000201300150000000000000000000000000000000000222222000006412219012 -T2202301111114874731219890405WTT900PWZ1222212222222011212190174321011814000000000000000000000000000000000000000000000000000000000000091800000000000000000000 -T2202301111114874731219810301WTT##PWT#2222211222222021212190194121011806000000000000000000000000000000000000000000000000000000000000036100000000000000000000 -T320230111111487473120150509WT@#Z090P12222112204398100000000120130904WTT0P9ZB912222122204302100000000 -T12023011111148760622000406271120512111116300000000000008880990000000000000000000000000000000000222222000000002229072 -T2202301111114876061219740327WTT9BYWPW2221222222221012212111340023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487606120090404WTT09YZZB12222222204307100000000120040727WTTBT0@WB22212212204311100000000 -T320230111111487606120170212WTT#009W#12222212204398100000000120110327WTTBYYZTP22222222204305100000000 -T12023011111148780020900411721110213110306110570000000000850130000000000000000000000000000000191222221000002022219012 -T2202301111114878001219850708WT@YZ@0WB2222211222223012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487800120200901WTT9YYBT#22222112204398100000000 -T12023011111148784821700409521120312110740300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114878481220010305WTTY@ZPZZ2222212222222012211190105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114878482220010411WTTW9Y@P02222211222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111487848120210512WT@TW009T22222112204398100000000 -T12023011111148788624700406701120512111116300000000030008880460000000000000000000000000000000000222222000000002229012 -T2202301111114878861219810912WT@T#09P02222212222221012212110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487886120080418WT@W9@ZPB22222112204307100000000120060518WT@B0@TTP22222122204310100000000 -T320230111111487886120150901WTT0YYBB#22222112204398100000000120090201WT@BPB#T@22222112204307100000000 -T12023011111148789020800414151120333120000104170000000005280530000000000000000000000000000000000222222000000002229022 -T2202301111114878903219640227WTT#B@0Y02222212222222012214110006011069937000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111487890120140108WTT9B##Z022222122206301100000000120100323WT@W0@T9T22222122206305100000000 -T12023011111148795625000400451120213110557300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111114879561219840427WTTBTTYB#2222212222221012211110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487956120060701WTT99PTYW22222122204310100000000 -T12023011111148796120800411931120313110766300000000000406540330000000000000000000000000000000000222222000000002229012 -T2202301111114879611219940912WT@@Z@TY@2221212222221012216110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111487961120200912WT@TY@9#022212122204398100000000120160927WTT@#0BYZ22212122204398100000000 -T12023011111148810124700406742120623211395300000000163910090270000000000000000000000000000000000222222000000002229032 -T2202301111114881011219700923WTT9WTWYP2222211222222011212190213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114881011219880908WT@P@YB@T2222212222222021212290213923011800000000000000000000000000000000000000000000000000000000370000000000000000000000000000 -T320230111111488101120140702WT@P0@P@T22222122204302100000000120120727WTT0T0Y0W22222112204304100000000 -T320230111111488101120220913WTTZPP@P022222112204398100000000120170712WT@PY@@ZW22222122204398100000000 -T12023011111148810424200410212120523211116300000000040008880100000000000000000000000000000000000222222000000002229032 -T2202301111114881041219880421WT@@Y9#TB2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114881041219890205WTTZPY#0Z2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111488104120110918WT@B9T9Y922222112204398200000000 -T320230111111488104120150904WT@WP#BWW12222122204398200000000120120713WTT0B#TWZ22222122204398200000000 -T12023011111148813424200404891120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111114881341220040921WTT@ZP#WW2221222222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111148826324200404421120513111136300000000000008880180000000000000000000000000000000000222222000000002229012 -T2202301111114882631219860207WTTYP@09Y2222122222223012212110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111488263120100302WT@@B9T9W22221212204305100000000120090118WTTT#PP#B22221212204307100000000 -T320230111111488263120190104WT@Y@9Y@T22221212204398100000000120180907WTT#0WPWP22221212204398100000000 -T12023011111148835224100402401120232110516300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111114883522219750401WTT@PYBPP1221222222215012212111100013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111488352120180327WTT00ZB9P12222122204398100000000 -T12023011111148837521700403821120213110376300000000000002980300000000000000000000000000000000199122222000000312219072 -T2202301111114883751219800223WTT#W9T0Z2222212222221012213110640023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000029 -T320230111111488375120050304WT@W0W0YY22222122204311100000050 -T12023011111148859022000411981120623111293300000000020010090270000000000000000000000000000000000222222000000002229012 -T2202301111114885901219680504WT@PTWZZ@2222221222222011213190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114885901219840707WT@ZPPB9W2222122222222021214190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111488590120150726WTTTPPB0922222112204398100000000120120122WTT9TBYYP22221222204303100000000 -T320230111111488590120210902WTTTBZP#B22222122204398100000000120190709WTTYPYPZZ22222122204398100000000 -T12023011111148887620600406751120313110766300000000000006540360000000000000000000000000000000000222222000000002229012 -T2202301111114888761219860701WT@WP0PB@2222212222223012212120372323010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111488876120170305WTTPP#YW#22222112204398100000000120160427WT@P#TZ@022222122204301100000000 -T12023011111148894322000407791120213110598119380000100005280140000000000000000000000000000000000222222000000002229012 -T2202301111114889431219880727WTTYWWTW91222222222221012216110154523011400000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111488943120200327WT@TWP@0W12222112204398100000000 -T12023011111148900820600414871120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114890083219560102WTT9Y#B@#2222212122222012213110114913069900000000000000000000000000000000000000000000000000000000000000000000002374000000000000 -T320230111111489008120070224WT@@@0TZY22222122206308100000000 -T12023011111148902322000410051110723111480300000000000001870010000000000000000000000000000000000222222000000002229012 -T2202301111114890231219790327WTTWZB#B@2212221222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114890231219840127WT@#Y@WPZ2212222222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489023120060923WTTZ@99B022122212204310200000000 -T320230111111489023120120918WTTP@@0ZT22122222204303200000000120080521WT@0TW#BZ22122212204308200000000 -T320230111111489023120200712WTT@00ZY022122212204398200000000120170902WTTPB@WZ022122222204398200000000 -T12023011111148904425000401171110513111116300000000000108880150000000000035001000000000000000000222222000000002229012 -T2202301111114890441219870712WTTZTPBY92222212222224012216110164421011802000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111489044120130918WT@WTYT0022222122204303100000000120100423WTT0Z@#YB22222122204306100000000 -T320230111111489044120160112WT@YZZBWP22222112204398100000000120150207WT@T0Y00#22222122204301100000000 -T12023011111148909222000411981120312110835300000000000004900520000000000000000000000000000000163222122000000012219012 -T2202301111114890921219980913WTTYW9WWT2221212222221012212120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489092120180313WT@B@PB9922212122204398100000000120150409WTT0WT0WP22212122204302100000000 -T12023011111148915725100407671120233110564300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114891573219560101WT@PWY0ZT1222222222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000932 -T320230111111489157120120704WTTZZWZ9922222122206302100000004 -T12023011111148916222000405182120213210598300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111114891621219900113WT@9TPY9W1222222222221012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489162120100709WT@9TPY9W12222222204305200000000 -T12023011111148928624700405901120333110822300000000000005280540000000000000000000000000000000000222222000000002229022 -T2202301111114892862219860127WTTT@#PTT2222212222211012207110322813089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111489286120200522WT@ZB9B9T22222112204398100000000120170727WTTZW#WPZ22222122204398100000000 -T12023011111148935220800414651120212110569300000000000005280290000000000000000000000000000000000222222000000002229012 -T2202301111114893521219930908WT@9Y9ZY#2221222222225012216120303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489352120150114WT@#YWZB#22212222204312100000100 -T12023011111148953420300408321120213110517300000000450105280020000000000000000000000000000000000222222000000002229012 -T2202301111114895341219840727WT@YPTPBZ2222212222221012216110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489534120140123WTTW@B09022212112204302100000000 -T12023011111148957624100402401120433110835300000000182006540130000000000000000000000000000000000222222000000002229022 -T2202301111114895762219850422WT@YYBT9P1222221222223012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489576120120401WT@ZZTY9012222112204305100000000 -T320230111111489576120150404WTT##@PZZ12222222204302100000000120140414WTTTYPZTT12222112204303100000000 -T12023011111148958424700408091120212110516300000000010002500200000000000000000000000000000000166122222000000012219012 -T2202301111114895841219960701WTT90@T9W1222222222221012211110213923011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111489584520180527WT@@#WT0B12222222104398109140000 -T12023011111148958525900403711120333110704300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111114895853219890126WTTB0#09Y2222212222222012212110006011069962000000000000000000000000000000000000000000000000000000000000282600000000000000000000 -T320230111111489585420200701WTT9#P0#@22222112204302100000000120130127WTT#@@PB@22222122209303100000000 -T12023011111148959925600412851120213110557300000000046905280350000000000000000000000000000000000222222000000002229072 -T2202301111114895991219800312WT@#0Z9#B2222212222225012216110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489599120140713WT@0TTT9Y22222112204302100000000 -T12023011111148962224200414851120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114896222219800505WTTW#TZWP2221222222211012214110095113089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111489622120120108WTT0Z9Y@W22212212204303100000000 -T12023011111148964420600402141120513111130300000000000008880200000000000000000000000000000000000222222000000002229072 -T2202301111114896441219870201WT@0P0P0P2222212222223012213110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489644120090409WTT@9###W22222122204307100000000120070304WT@PT0#B@22222122204308100000000 -T320230111111489644120150723WT@TZBT@T22222112204301100000000120120118WT@W9@YB#22222112204304100000000 -T12023011111148968323500411471120523111057300000000000008330100000000000000000000000000000000000222222000000552219012 -T2202301111114896831219760421WT@@#Y#YT2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T2202301111114896831219810927WT@Y@TBYW2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111489683120090421WTTBY9PZT22222122204307200000054 -T320230111111489683120170727WTTPZY0P@22222122204398200000000120140323WT@WPP@YT22222122204301200000000 -T12023011111148989022000407232110323210740300000000000002740010000000000000000000000000000000000222222000000002229032 -T2202301111114898901219760527WT@9TPY9W1222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114898901219770913WT@9TPY9W2222212222222021215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489890120100914WT@9TPY9W22222112204306200000000 -T12023011111148989925900402631120232110258300000000100004170020000000000000000000000000000000000222222000000002229022 -T2202301111114898992219810312WT@YYBT9P1222222222221012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111489899120140723WT@0#TTY012222212204302100000000 -T12023011111149009625900406081120233110376300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111114900962219950323WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490096120210101WT@WZ#@Y@12222112204398100000000 -T12023011111149010520800409831120233120000300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111114901053219590904WTTT9T9T#2222212222225012298110006013069900000000000000000000000000000000000000000000000000000000000000396100000000000000000000 -T320230111111490105120110718WT@@T0#Y@12222112206303100000000 -T12023011111149011722000405321120412111034300000000240004380110000000000000000000000000000000000222222000003332219012 -T2202301111114901171219880213WT@###0Y92222211122221012212110124823010700000000000000000000000000000000000000000000000000000000000000000000000333000000000000 -T320230111111490117120150404WTTTZ#BZ922222122204302100000000 -T320230111111490117120180901WTTTWY9#922222122204398100000000120160118WTTZ0ZZB#22222122204398100000000 -T12023011111149015922000405841120112110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111114901591220010227WT@Y0#Y0W2222122222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111149024123500414911120233120000300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111114902413219640912WTTZWZ@ZZ1222222222222012212110461413069900000000000000000000000000000000000000000000000000000000000000167900000000000000000000 -T320230111111490241120200401WT@TY0Z0#12222222206398100000000 -T12023011111149024625900406841120413110939300000000050007710220000000000000000000000000000000000222222000000002229042 -T2202301111114902461219680301WTT@WZ0#T2122221222225012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000040 -T320230111111490246120120323WT@#BP90011222222204302100000040 -T320230111111490246120200412WTTZ@P90P21222222204398100000000120140723WTT0WT#B921222212204398100000000 -T12023011111149029425900406651120313110835300000000000006540200000000000000000000000000000000000222222000000002229012 -T2202301111114902941219860304WTTBW#9W@1222212222223012214110213923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490294120220912WTT##TYT012222122204398100000000120150427WT@9@P#ZB12222122204301100000000 -T12023011111149036622000407241120212110598300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111114903661219920323WT@@9@@WW2222222222221012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490366120150418WTT#BB#P022212222204301100000000 -T12023011111149042323500412161120823111691300000000000012890470000000000000000000000000000000000222222000000002229012 -T2202301111114904231219850305WTT0#B9YT2222211222221011216190114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114904231219900407WT@#BP0B92222212222225011213110560421011826000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490423120150921WT@00#T9@22222122204398100000025120110307WT@Z@ZT@022222112204301100000000 -T320230111111490423120170724WTTYPWBBY22222112204398100000025120160927WTTWZBPY@22222122204398100000025 -T320230111111490423120210112WT@ZW0BTW21222212204398100000000120180712WTTT9#T9022222122204398100000025 -T12023011111149045922000411981120212110618300000000000405280150000000000000000000000000000000000222222000000002229012 -T2202301111114904591219990727WTTW09@#Z2221222222223012212110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490459120220423WT@9#WWW@22212222204398100000000 -T12023011111149056220600400801120233120000300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111114905623219720921WT@P009#T2222211212222012212110045613069900000000000000000000000000000000000000000000000000000000000000638500000000000000000758 -T320230111111490562120090313WTT9ZYBB#22222112206306100000050 -T12023011111149059225600412851120213110631300000000000005280390000000000000000000000000000000000222222000000002229012 -T2202301111114905921219960404WTTBPP09Y1222212222221012211110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490592120200226WTT9ZPWP#12222122204398100000000 -T12023011111149059423500410671120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111114905941219830401WTTP#@@TY2222212222223012214210065421011938000000000000000000000000000000210002000000000000000000060000000000000000000000000000 -T320230111111490594120090704WTT09WWPZ22222112204306200000000 -T12023011111149061522700408351120322110766300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111114906151220000127WTT9#Z9YW2222211222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114906151219990708WTT#PPPP02222211222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490615120190907WTTT9T@TY22222122204398200000000 -T12023011111149063724700402991120233110516300000000000004170950000000000000000000000000000000000222222000000002229022 -T2202301111114906372219860314WTTW9TTPZ2222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111490637120050104WT@YTTZZ#22222112204309100000000 -T12023011111149067323500411471120212110611300000000000004490200000000000000000000000000000000000222222000000792219072 -T2202301111114906731219810523WT@TZZ9@P1222222222221012211111100023011400000000000000000000000000000000000000000000000000000000130000000000000000000000000078 -T320230111111490673120090112WT@ZWT0T#12222222204307100000000 -T12023011111149083922000407241120533110939300000000000007710730000000000000000000000000000000000222222000000002229022 -T2202301111114908392219850421WT@YYBT9P1222222222223012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490839120060926WT@9WWBY#22222212204310100000000120050227WTTB#ZB9912222222204311100000000 -T320230111111490839120100912WT@B#000Y12222212204306100000000120080327WT@9PZBY#12222212204307100000000 -T12023011111149094525600411521120313110835300000000000005230250000000000000000000000000000000000222222000001312219072 -T2202301111114909451219900114WT@BZT9TT2222212222221012213120670021011809000000000000000000000000000000000000000000000000000000000000052000000000000000000000 -T320230111111490945120110127WT@9PZZY022212222204305100000000120080109WTT@9ZW#022222122204309100000000 -T12023011111149096024500405781120232110516300000000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111114909603219690927WT@#9TWZ92222212222214012212110154513069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111490960120070907WT@#T@TYP22222112206309100000000 -T12023011111149099524200407311120923111902300000000040014160100000000000000000000000000000000000222222000000002229012 -T2202301111114909951219800708WTTBTT00T1222211222222011212210114921011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114909951219760327WT@ZZWY002222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111490995120050204WTTZ@TWBT22222122209311200000000 -T320230111111490995120070411WT@9TPY9W22222122209309200000000120060423WTTZ0PZP#22222112209310200000000 -T320230111111490995120090504WT@ZTP@@022222112209307200000000120080723WT@BB#T@P22222122209307200000000 -T320230111111490995120110918WT@9TPY9W22222122204304200000000120110911WT@9TPY9W22222112209304200000000 -T12023011111149103122000407241120623111339300000000050010090100000000000000000000000000000000000222222000000002229012 -T2202301111114910311219880411WTT0YTYP@2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114910311219810713WTTBBZBB@2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111491031120130401WTT0Y#PTT22222122204304200000000120110709WTTT0Y0PP22222122204303200000000 -T320230111111491031120210513WTTYZ#@TP22222112204398200000000120170424WT@WT0ZYB22222112204398200000000 -T12023011111149124722000405702120323210766300000000250006540060000000000000000000000000000000000222222000000002229032 -T2202301111114912471219950924WTT#TTTBZ2222211222222011212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114912471219970423WT@9TT09Z2222212222222021216290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111491247120180924WT@ZWWWY922222122204398200000000 -T12023011111149130224200414851120213110611300000000000005280420000000000000000000000000000000000222222000000002229072 -T2202301111114913021219780905WT@TY@YPT2222212222225012211110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111491302120060201WT@YPWBZZ22222122204311100000165 -T12023011111149135122000413731120433110611300000000020002790100000000000000000000000000000000000222222000002492219022 -T2202301111114913512219930523WT@YYBT9P1221221222221012207910006013079900000000000000000000000000000000000000000000000000000000000000150000000000000000000000 -T2202301111114913512219960705WT@YYBT9P1221222222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111491351120220907WTT@90B9922212222204398100000000120150921WT@ZP#0#@12212212204398100000000 -T12023011111149136120800410751121013112476140500000000214620140000000000000000000000000000000000222222007600012219012 -T2202301111114913611219870109WTTPZ@TYW2222122222223012212110510923010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111491361120070307WT@Z@#90W22221212204308100000000 -T320230111111491361120090323WT@0Y@P0022221222204306100000000120080318WTTZ#B9YT22221222204307100000000 -T320230111111491361120120204WTTPPZ@0@22221212204303100000000120100307WTT#0TT#Z22221222204304100000000 -T320230111111491361120150412WT@PYWZ9P22221212204398100000000120140501WT@B0Y@TP22221222204301100000000 -T320230111111491361120190908WTT#P#@0922221212204398100000000120170401WTT09ZB#022221212204398100000000 -T12023011111149152720900411721120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114915273219630702WT@WYTB0T2222212122225012213210530713069900000000000000000000000000000000000000000000000000000000000000000000001140000000000000 -T320230111111491527120110201WT@@9##9@22212222206304100000033 -T12023011111149154025900402831120433110835126470000100006540270000000000000000000000000000000000222222000000002229022 -T2202301111114915402219950204WT@YYBT9P1222222222221012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111491540120150126WTTZ9WWBT12222212204301100000000 -T320230111111491540120190921WTT9T@PZZ12222112204398100000000120170412WT@009P#Z12222212204398100000000 -T12023011111149156924700406701120213110611300000000000005280410000000000000000000000000000000000222222000000002229012 -T2202301111114915691219840401WT@9PPY0@1222212222225012216110421823011700000000000000000000000000260004000000000000000000000000030000000000000000000000001079 -T320230111111491569120170304WTTTT9P#912222122204398100000000 -T12023011111149167722000409871120313110835300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111114916771219760326WTTY09YYW2222212222225012214110184223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111491677120120127WTT9@#WY922222112204302100000000120090326WTTPB9#TZ22222112204305100000000 -T12023011111149179925100407671120413111002300000000000007710170000000000000000000000000000000000222222000000002229012 -T2202301111114917991219960512WTTZB@PTB1222212222221012213110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111491799120130311WT@0@WWPW12222122204398100000000 -T320230111111491799120210309WT@0TY9PB22222112204398100000000120180327WTTYBZ0@P22222112204398100000000 -T12023011111149185024100402401120433110740300000000000006540110000000000000000000000000000000000222222000000002229022 -T2202301111114918502219890523WTT0ZPZB@1221222222212012213110431713089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111491850120070307WT@9@W9P#12212212204307100000000 -T320230111111491850120180524WTTT0YYPT12212122204398100000000120150926WTTWP9BYZ12212122204301100000000 -T12023011111149189625900406081120213110364300000000000002380150000000000000000000000000000000158122222000001322219042 -T2202301111114918961219870111WTT9B@WW#2122222222221012211110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111491896120070427WTTPYY@YY21222212204310100000000 -T12023011111149216820800414651120232110516300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111114921682219680421WTTP9P@Y92212222222215012214110075313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111492168120080405WT@9BYWBP22122222204307100000000 -T12023011111149219322000407241120213110598300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111114921931219870913WT@WY0Z@B1222212222221012213110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111492193120050112WTTYTZBWZ12222122204311100000000 -T12023011111149227824200408391120213110598300000000005005280080000000000000000000000000000000000222222000000002229012 -T2202301111114922781219880513WTT#9PWT92221221222221012210110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111492278120090705WT@P@WWB#22212222204305100000000 -T12023011111149246723900400641120433110893300000000000006540790000000000000000000000000000000000222222000000002229022 -T2202301111114924673219520707WT@#WY#W#2222212122222012212120035713069900000000000000000000000000000000000000000000000000000000000000000000001110000000000000 -T320230111111492467120050109WTT#BPYWY22222122206312100000100 -T320230111111492467120150918WTTW0TPYP22222122206302100000000120130327WTTBTTYZZ22222122206303100000000 -T12023011111149267621700406141120313110835300000000000506540520000000000000000000000000000000000222222000000002229072 -T2202301111114926761219840723WTT#WTYZ#1222222222221012216110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111492676120100714WT@WTW9T@12222122204305100000000120050123WTT09T#PB12222112204310100000000 -T12023011111149271222000406191120212110543300000000016006540990000000000000000000000000000000000222222000000002229072 -T2202301111114927121219800901WTT9T0#YB1222212222225012212111580023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111492712120220307WT@9TPY9W22222122204398100000000 -T12023011111149271624200404891120512111116143000000000008880360000000000000000000000000000000000222222000000002229072 -T2202301111114927161219910222WTTPTTWYP2222212222221012216110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111492716120200412WTT0B9@9B22212222204398100000000120090427WTT990PB@22222212204306100000000 -T320230111111492716120210308WTTZYZYBP22212222204398100000000120210308WTT9W#W#P22212212204398100000000 -T12023011111149280022000412971120212110355300000000002003160230000000000000000000000000000000211122222000000012219012 -T2202301111114928001219950101WT@WBZT#P2222212222221012211110273323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111492800120120422WTTWYP0B@22222112204305100000050 -T12023011111149284123500405981120213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111114928411219640301WTTT909#@2222212222224012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111492841120050118WTTYZZ@ZY22222122204309200000000 -T12023011111149287022000410221120312110818300000000025006540360000000000000000000000000000000000222222000000002229012 -T2202301111114928701219790727WTT@WZ9PW2222212222225012213110392123010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111492870120090407WT@ZZ0##B22222222204307100000000120050912WTTTTPTBP22222112204309100000000 -T12023011111149299122000407411120432110939300000000000006540720000000000000000000000000000000000222222000000002229022 -T2202301111114929912219880107WTT9PWZBB2221222222211012211110680013089900000000000000000000000000000000000000000000000000000000000000000000000000082100000000 -T320230111111492991120100102WTTTYTYZ022212222204306100000000 -T320230111111492991120120723WTT9WW#YB22212212204304100000000120110904WT@YWWPW#22212222204305100000000 -T12023011111149305724200402501110213110611300000000000000100010000000000000000000000000000000000222222000000002229012 -T2202301111114930571220000704WT@W9ZP0@2221222222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493057120210913WT@#9#@W#22212222204398100000474 -T12023011111149329922000413682110323210740300000000000006110010000000000000000000000000000000000222222000000002229032 -T2202301111114932991219960326WT@9TPY9W1222221222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114932991219940123WT@9TPY9W1222222222222011206290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493299120190307WT@9TPY9W12222212204398200000000 -T12023011111149337525900403711120233110611300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111114933752219810712WT@P9YWWW2222212222215012211110640013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111493375120090312WT@0TBYTP22222112204305100000000 -T12023011111149339924200404051120313110611300000000000006540200000000000000000000000000000000000222222000000002229012 -T2202301111114933991219990301WTTPYPZ9@2222212222221012211110213923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493399120220312WTTY0PWZ022212222204398100000000120160713WTTZY#TZW22222122204398100000000 -T12023011111149342620400409801120212110611300000000230005280150000000000000000000000000000000000222222000000002229012 -T2202301111114934261219780127WTTYWYTT#2222212222225012216110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493426120210311WT@PY9B@922222112204398100000000 -T12023011111149361821400408021120233110376300000000050004170400000000000000000000000000000000000222222000000002229022 -T2202301111114936182219750104WT@YYBT9P1222222222223012201910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493618120100918WT@TYBBT012222212204305100000000 -T12023011111149364124200414021120213110598300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111114936411219810227WTTTPWYY92222212222223012212110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493641120070107WTTBB##@#22222122204308100000000 -T12023011111149367923700414331120213110446300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114936791220040327WTTZZZ##T1222222222221012211110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493679120210207WT@WW09T912222122204398100000000 -T12023011111149373824700409381120523111199300000000115008880290000000000140009000000000000000000222222000000002229012 -T2202301111114937381219870501WT@P@WZW02222212222221011211110441623011800000000000000200000000000000000000000000000000000000000060000000000000000000000000000 -T2202301111114937381219870118WTTWZ@PZ@2222211222225011212190411923011800000000000000150000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111493738120040712WT@9PWZ#022222112204311100000000 -T320230111111493738120190427WTTBZWPY#22222122204398100000000120070326WT@@T@B#022222112204309100000000 -T12023011111149381424700406701110232110611300000000009500260160000000000000000000000000000000000222222000003372219021 -T2202301111114938142219780107WT@09WB9P2222212222211012212110114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400001358 -T320230111111493814120060923WT@BYYT#Y22222122204310100000000 -T12023011111149381522000412691120313110822300000000000306540220000000000000000000000000000000000222222000000002229012 -T2202301111114938151219820714WT@00T0#92222212222225012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493815120100118WTTYZB@ZW22212212204305100000000120050112WT@WZP#T022212222204311100000000 -T12023011111149381923500410681120313110611300000000000503160060000000000000000000000000000000211122222000000012219012 -T2202301111114938191219800712WT@WBW9B92222212222225012214110065423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493819120220318WTTTTYB@T12222122204398100000000120170323WTTWPP0WT22222122204398100000000 -T12023011111149383925900406081120433110557300000000026505280440000000000000000000000000000000000222222000000002229022 -T2202301111114938392219840902WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114938392219880926WT@YYBT9P1222221222221022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493839120130912WT@WW00#W12222212204303100000000120110318WT@0TT09T12222212204304100000000 -T12023011111149387722000410051120213110598300000000000003960320000000000000000000000000000000132222122000000002229012 -T2202301111114938771220000314WT@W9YTZ91222222222221012211120332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111493877120200721WTT@ZB@#T12222222204398100000000 -T12023011111149405925900402631120313110694300000000078906540050000000000000000000000000000000000222222000000002229012 -T2202301111114940591219780712WT@@0BTW#1222222222223012211210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111494059120110212WTTZBWBT#12222222204305100000000120060712WTTPP@WB012222212204310100000000 -T12023011111149407920600414771120313110743300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111114940791219690923WT@0Y#WT92222211222223012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111494079120130712WT@Z9BYZ922222122204302100000025120120727WT@YZ@T#W22222122204304100000025 -T12023011111149423022000410052120423210939300000000000007710080000000000000000000000000000000000222222000000002229032 -T2202301111114942301219890427WT@PBY0B92222211222222011209290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114942301219980912WTTP@TZ9@2222212222222021209290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111494230120190114WT@PYZYB#22222122204398200000000120160113WTTBT0B#T22222112204398200000000 -T12023011111149425625900402631110933111691300000000000002230010000000000000000000000000000000000222222000000002229021 -T2202301111114942562219880307WT@YYBT9P2222222222222012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111494256120090913WTTP#Z#WZ12222212204308100000000420090512WTT#TBYP012222222205307200000000 -T320230111111494256120110207WT@T#Y9T#12222222204305100000000420100913WTT0#YY0012222212205306200000000 -T320230111111494256120150912WT@W@#Y9P12222212204301100000000420140314WTT@YB9TP12222212205301200000000 -T320230111111494256420210418WT@9P@T0B12222222204398100000000120180921WT@YW@0Y#12222212204398100000000 -T12023011111149435022700413181110313110682109560000000002530010000000000000000000000000000000000222222000000002229012 -T2202301111114943501219940718WTTW0B##@2222212222221012216110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000075 -T320230111111494350120210421WT@B009BP22222112204398100000000120120707WT@W0#0##22222122204304100000000 -T12023011111149450424200413331120213110516300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114945041219860712WTTYZ#YZ02222212222224012211110045621011805000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111494504120190207WTT99W9Z@21222212204398100000000 -T12023011111149453820600414771120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114945381219880405WTTW9Z9P@2222212222221013216190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111149474022000400461120212110611300000000000005280030000000000000000000000000000000000222222000000002229072 -T2202301111114947401219770222WT@@B9Z0Z2221222222224012216111040023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111494740120200711WTT0@#0@W22222222204398100000000 -T12023011111149474722000404691110423110611300000000000003950010000000000000000000000000000000000222222000000002229012 -T2202301111114947471219850123WTTZBYWBZ1222211222222011212210025821011820000000000000000000000000000000000000000000000000000000000000120000000000000000000000 -T2202301111114947471219940721WT@Y@@PB#1222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111494747120180407WT@90#0BB12222222204398200000000120090707WT@ZWY@PB12222222204308200000000 -T12023011111149487222700408351120522111163300000000000008880160000000000000000000000000000000000222222000000002229012 -T2202301111114948721219760312WTTBW#BBY1222221222222011209290174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114948721219800304WTTPY9TBW2222222222222021209290174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111494872120050927WTTYZB#@P22222212204310200000000 -T320230111111494872120120414WTT@YTY@922222212204305200000000120090104WTT@#W9BW22222222204307200000000 -T12023011111149493220600402141120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111114949321220040427WT@TBYBTY1222212222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111149495425200414821120723111480300000000005006350040000000000000000000000000000000000222222000005302219012 -T2202301111114949541219910218WTTWTP0W01222212222221011212190055523011800000000000000000000000000000000300002000000000000000000010000000000000000000000000000 -T2202301111114949541219800523WT@@BYPBB2221221222222021212190055521011935000000000000000000000000000000000000000000000000000000000000211600000000000000000000 -T320230111111494954120140714WT@0ZZ0#922222122204398100000590 -T320230111111494954120170726WT@9#WTZ#22222112204398100000590120150407WTT9B@@#012212112204398100000590 -T320230111111494954120190318WT@T##Y9#12212122204398100000000120180901WTT@WTW9B22222122204398100000590 -T12023011111149498722700408351120433110893300000000000006540580000000000000000000000000000000000222222000000002229022 -T2202301111114949873219570713WT@YYZ@W@1222222122222012205210006013069900000000000000000000000000000000000000000000000000000000000000000000000927000000000000 -T320230111111494987120110707WT@WPYB@B12222212206305100000000 -T320230111111494987120180322WT@Z@9BPB12222222206398100000000120170123WTT@Z9TTW12222212206301100000000 -T12023011111149509820600401561120623111339300000000010205580170000000000000000000000000000000000222222000004512219012 -T2202301111114950981219870411WTTWYPTYP2222212222221011213110055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000537 -T2202301111114950981219840709WT@WTW@PY2222211222221021212190055521011829000000000000000000000000000000000000000000000000000000000000180000000000000000000000 -T320230111111495098120080212WT@00WBZ022222122204308100000000120070223WTT0#9W@922222112204309100000000 -T320230111111495098120190501WTTPYTBBY22222112204398100000000120110902WT@9B0ZTT22222122204305100000000 -T12023011111149526824200414721120333110835300000000000005280680000000000000000000000000000000000222222000000002229022 -T2202301111114952682219920327WTTTB@9W92221222222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111495268120180301WT@909BBZ12212212204398100000000120170927WT@PYZ0@@12212212204398100000000 -T12023011111149536320600407031120323110835300000000010006540100000000000000000000000000000000000222222000000002229012 -T2202301111114953631219940401WTTZTBP9Z2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114953631219920926WT@PY#TBW2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495363120200401WTTB90Z#Z12222122204398200000000 -T12023011111149546422000406211120213110611300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111114954641219730221WTTW0TTBB2221221222221012216110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495464120190701WTTTT000P22212212204398100000000 -T12023011111149557622000411971120212110598300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111114955761220010323WTT0#W@#Z1222212222221012211110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495576120200709WTTBWWYB@12222212204398100000000 -T12023011111149560524200414021120433110846111880000000006540610000000000000000000000000000000000222222000000002229022 -T2202301111114956053219870727WTT@#P9YP2121212222221012216110322811069936000000000000000000000000000000000000000000000000000000000000306300000000000000000000 -T320230111111495605120070427WT@PYB0TY12212112207310100000000 -T320230111111495605120130523WT@9#W#@P22212112207304100000000120100118WT@TW@@#P12212112207307100000000 -T12023011111149562225600406521120213110599300000000000003160500000000000000000000000000000000211122222000000012219072 -T2202301111114956221219830108WTT@YWBYB2222212222225012216110690023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495622120220422WTTY@#9WT22222122204398100000000 -T12023011111149563322500410151120312110611300000000000005010240000000000000000000000000000000000222222002600012219072 -T2202301111114956331219880409WT@#WB@BW1222222222222012212111030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114956332219790921WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495633120110722WT@9PBW#012222212204303100000000 -T12023011111149566224500405781120213110598300000000004505280380000000000000000000000000000000000222222000000002229072 -T2202301111114956621219780109WT@@0B#PW2222212222221012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495662120100701WT@W9#PP022222122204305100000000 -T12023011111149567024200403941110213110611300000000013904170290000000000000000000000000000000000222222000000002229012 -T2202301111114956701219910501WTTPZ0YW@1222222222221012213110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495670520200523WT@BY@YPB12222122104398109140000 -T12023011111149571020600414871120623111339300000000000010090040000000000000000000000000000000000222222000000002229012 -T2202301111114957101219780523WT@#Y@BZ92212221222222011209290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114957101219880426WT@P0@0BZ2212222222221021206290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495710120130423WTTZ0#BZ@22122222204303200000000120110112WTT@0W0YT22122222204305200000000 -T320230111111495710120180413WT@#WPZ@Z22122222204398200000000120140704WT@ZYTW@922122212204302200000000 -T12023011111149577720600400871120423110900300000000050004620130000000000000000000000000000000308122222000000012219012 -T2202301111114957771219880314WTTB#@ZBZ2222212222221011212190164423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114957771219670914WT@9BY#0W2222211222225011210190164423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495777120150911WTTZ9B@9Z22222112204301100000000120140412WT@90W9@#22222112204302100000000 -T12023011111149578822000411551120212110364300000000000002780100000000000000000000000000000000185122222000000652219012 -T2202301111114957881219870424WTTYYBT#T2221222222221012216110600023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000063 -T320230111111495788120120207WTTT@Z#PT22212222204303100000000 -T12023011111149579822700413181120432110939300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111114957982219830313WTT#ZB9##1222222222215012212110740013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111495798120120412WT@YP90ZZ12222212204304100000000 -T320230111111495798420140407WTT09YY9@12222112204303100000000120130421WT@@@Z@W#12222212204304100000000 -T12023011111149581425900402721120633111034300000000000007710170000000000000000000000000000000000222222000000002229022 -T2202301111114958142219830114WT@YYBT9P1222212222224012205910740013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114958142219770914WT@YYBT9P1222221222222022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495814120090727WT@#0TB9912222122204308100000000120060424WTTTW@90@12222122204311100000000 -T320230111111495814120200412WT@BY@W@012222112204398100000000120160113WTT00@ZB012222112204398100000000 -T12023011111149582424200410211120213110611300000000000005010400000000000000000000000000000000000222222002600012219012 -T2202301111114958241219870718WT@09#ZTP2222212222221012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495824120170718WTT#WT@WY22212212204398100000050 -T12023011111149587122000405842110113210357300000000000003900010000000000000000000000000000000000222222000000002229032 -T2202301111114958711219990112WT@YB@TWP2222122222221013212990025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111149592223900408801120212110611112490000000505280310000000000000000000000000000000000222222000000002229012 -T2202301111114959221219960307WTTT9#W0#2222212222221012213110322823011800000000000000000000000000000000240000000000000000000000000000000000000000000000000478 -T320230111111495922120200901WT@99#ZYZ22222112204398100000000 -T12023011111149592922000407961120312110796113620000000006540480000000000000000000000000000000000222222000000002229012 -T2202301111114959291219880711WT@@PBW#Z2221222222221012216110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111495929120210727WTTT@9PWT22212212204398100000000120140422WT@@09WB#22212212204301100000000 -T12023011111149605220800405391120233110545300000000000004170860000000000000000000000000000000000222222000000002229022 -T2202301111114960522219930912WTT@Y0B002222212222211012209110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111496052120150512WT@W90YBB22222122204398100000000 -T12023011111149612525900402721120333110611300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111114961252219770722WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496125120120723WTT9BTTTP12222122204303100000000120060118WT@YBBB0B12222222204310100000000 -T12023011111149623022000405841120432110846300000000036003450210000000000000000000000000000000000222222000003092219022 -T2202301111114962303219930124WTTZ0WBT92122222222225012212110006011069934000000000000000000000000000000000000000000000000000000000000392900000000000000000811 -T320230111111496230120060927WTTZ0T90W21222122207310100000169 -T320230111111496230120110109WTT#9TW0B21222112207306100000169120090707WTT09#TPT21222122207307100000169 -T12023011111149627720300405081120313110766300000000015006540280000000000000000000000000000000000222222000000002229072 -T2202301111114962771219870207WT@9ZYW@#2222212222225012212110670023011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111496277120110518WT@B#BBTP22222122204303100000000120080907WTT@YW@Y922222112204308100000000 -T12023011111149631122600405051120413111034300000000130007710210000000000000000000000000000000000222122000000002229012 -T2202301111114963111219970423WT@9TP9YW1222212222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496311120160712WT@TY99W912222122204398100000000 -T320230111111496311120220904WT@B000ZY12222122204398100000000120180324WT@0BZT9Y12222222204398100000000 -T12023011111149637822700413181120332110740300000000000005280500000000000000000000000000000000000222222000000002229022 -T2202301111114963782219760527WT@B9ZYBP2222212122215012211111160011109917000000000000000000000000000000000000000000000000000000000000115900000495043900000000 -T320230111111496378120140923WTT#WT9WT22222122204303100000000120070913WT@PBPWZZ22222122204310100000000 -T12023011111149640222000403892120413210939135650000000007710080000000000000000000000000000000000222222000000002229032 -T2202301111114964021219940427WTT#P@PBT2221222222222012211210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496402120170727WT@0TY99B22212222204398200000000 -T320230111111496402120210327WT@#B0YY#22212222204398200000000120190411WTT0PZW#@22212222204398200000000 -T12023011111149654422000406951120212110532300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111114965441220020905WT@TWPZBB2221222222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496544120190907WT@@0YZ9Z22212212204398100000000 -T12023011111149662223500411471110213110516300000000000000340010000000000000000000000000000000000222222000000002229012 -T2202301111114966221219950914WTT0@B0@T2222122222221012212910025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496622120200723WT@ZZ##BZ22221212204398100000000 -T12023011111149663625200410591120412110939300000000000004620340000000000000000000000000000000308122222000000012219012 -T2202301111114966361219950504WT@TWW0TT2222212222223012216110510923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496636120120724WTT#@9PB@22222222204303100000016 -T320230111111496636120180913WTT0W#W9Y12222122204398100000016120140123WT@#W#@B@12222112204301100000016 -T12023011111149672624200414351120313110740107760000000006540920000000000000000000000000000000000222222000000002229072 -T2202301111114967261219940426WT@ZWB@@Y2222212222221012216110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496726120180421WTTT@BPZW22222122204398100000100120120427WTT9TZBB#22222112204301100000000 -T12023011111149673725100407671120313110835300000000002506540270000000000000000000000000000000000222222000000002229012 -T2202301111114967371219780707WTT0@#W9W2222211222225012212110481221011741000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496737120190426WT@ZWW#9B21222112204398100000000120050914WT@WY@BW012222112204311100000000 -T12023011111149685723700414331120323110740300000000007705280050000000000000000000000000000000000222222000000002229012 -T2202301111114968571219700724WT@P#PZ9B1222211222222011212190243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114968571219760414WTT##TBP01222212222222021212190471323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496857520050405WTTW@9WB@12222112104311108740000 -T12023011111149690122000405841120423111018300000000014106540210000000000000000000000000000000000222222000000002229012 -T2202301111114969011219900305WT@PPYWB#2222211222222011216190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114969011219980218WTT@9ZWTZ2222222222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111496901420210727WTT@ZBP#@22222212104398109140000120200912WT@T9#P9B22222212204398100000000 -T12023011111149700121000411361120232110516300000000002004170990000000000000000000000000000000000222222000000002229022 -T2202301111114970012219840118WT@@00B#B2222212222215012213110006011089911000000000000000000000000000000000000000000000000000000000000034100000000077500000000 -T320230111111497001120060424WTTZZTY@P22222122204310100000000 -T12023011111149700620800414651120413110893300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111114970061219890314WT@WPBBTB2221222222221012214121620023010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111497006120090912WTTZY#W@#22222112204307100000000 -T320230111111497006120170918WT@W09PZ@22212222204398100000000120120702WT@TTT##T22212212204304100000000 -T12023011111149706922900405641120513111116300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111114970692219820401WTT0T0B#92222212222212012212111060013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111114970691219790101WTTB#Y90B1222221222222022208290293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111497069120050405WT@@#90P@12222222204311100000000 -T320230111111497069120110704WTTYTWWBZ12222112204304100000000120100123WT@#0PB@@12222122204306100000000 -T12023011111149708922000403352120133210258300000000000003510990000000000000000000000000000000000222222000000662219022 -T2202301111114970895219590701WTTYBWWZP2122222222221013212111430011069916000000000000000000000000000000000000000000000000000000000000116100000000000000000088 -T12023011111149709424200403461120513111199300000000020008880110000000000000000000000000000000000222222000000002229012 -T2202301111114970941219910904WT@0@Y0YP2222212222221012212110253523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111497094120200913WT@TTZ@Z022222112204398100000000120100401WT@0BPYTP22222122204306100000000 -T320230111111497094120220327WT@0TW@B022222112204398100000000120210313WT@WPBWBT22222122204398100000000 -T12023011111149711521000405411120233110516300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111114971153219610108WTTY009P02222212222225012212110006011069912000000000000000000000000000000000000000000000000000000000000088100000000000000000000 -T320230111111497115120050307WT@ZPWW#P22222122206310100000000 -T12023011111149718523500408281120212110598300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111114971851219910327WT@P99@@02222212222225012216110332723011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111497185120200118WTT@Z@9W@22222112204398100000000 -T12023011111149733525900402831120413110835300000000000206540110000000000000000000000000000000000222222000000002229012 -T2202301111114973351219960223WT@P#T0@01222222222222012212190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114973352219920904WT@YYBT9P1222221222222022203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111497335120210702WTT99W0#Y12222222204398100000000120190123WT@TZB@PZ12222222204398100000000 -T12023011111149744724200403941120233110516300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111114974472219810323WT@T9#@TP2222212122215012213110025813109900000000000000000000000000000000000000000000000000000000000000000000000539039500000000 -T320230111111497447120110707WT@Y#ZP@B22222122204304100000000 -T12023011111149746122000409872120323210766300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111114974611219910923WT@#0P#PB2222212222222011212210075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114974611219910509WT@9#@0BP2222211222222021212290055523011800000000000000000001000000000000060001000000000000000000130000000000000000000000000000 -T320230111111497461120180123WT@9TPY9W12222122204398200000000 -T12023011111149754220600404491120323110501300000000020003920080000000000000000000000000000000261122222000000012219012 -T2202301111114975421219780126WT@@9TB0P2222212222222011212110095123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114975421219800727WT@#PYB0W2222211222222021216190095123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111497542120170713WTTB@WP9Z22222112204398100000000 -T12023011111149757824200414851120423111034300000000000007710150000000000000000000000000000000000222222000000002229012 -T2202301111114975781220000704WTTB0ZPY92222211222221011209190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114975781220020421WTTPWWY@W2222212222221011211190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111497578120210727WT@YZWPTB22222112204398100000000120200412WTTWWYZBY22222112204398100000000 -T12023011111149764522000409871120213110548300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111114976451219760502WTT@00W#02222221222223012212210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111497645120060707WTTYP#P#@22122212204309200000000 -T12023011111149787420400413031120312110740300000000000502080500000000000000000000000000000000000222222000004462219072 -T2202301111114978741219900101WTTZZP9992222212222221012212110700021011810000000000000000000000000000000000000000000000000000000000000086000000000000000000015 -T320230111111497874120180118WT9TT@#0B22222122204398100000000120120723WTTP0BP@922222112204303100000050 -T12023011111149789722000407241120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111114978971220000121WTTWZZ9002222212222221012212110283223011400000000000000000000000000000000000000000000000000000000340000000000000000000000000000 -T320230111111497897120210101WT@0@PBY@12222122204398100000000 -T12023011111149801522000410051120233110376300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111114980153220020127WT@ZYPBT@2222212222221012212210006013069900000000000000000000000000000000000000000000000000000000000000292400000000000000000000 -T320230111111498015120050418WT@TWZPT922222212207311100000000 -T12023011111149805520600400801110313110752300000000000002140310000000000000000000000000000000166122222000000372219012 -T2202301111114980551219910112WTTBYBW#Y2222212222225012212110322823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498055120220326WT@9TPY9W22222122204398100000000420190426WTTW#99BP22222122104398109140000 -T12023011111149814223500404531110313110835120280000000401470390000000000000000000000000000000000222222000000002229012 -T2202301111114981421219850901WT@0W@WW@1222212222221012213110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498142120190223WT@Y0B9@Z12122122204398100000000120160723WTTWWPBTP12222122204398100000000 -T12023011111149833021700409521110213110611300000000000001360010000000000000000000000000000000000222222000000002229012 -T2202301111114983301220020326WT@ZTZ9@Y1222212222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498330120220512WT@@TT9#Y22222222204398100000000 -T12023011111149841522900405641120612111339300000000000010090330000000000000000000000000000000000222222000000002229012 -T2202301111114984151219920927WTT0@PZP@2222212222221012216110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498415120110102WT@P9PT#Y22222112204304100000000 -T320230111111498415120160418WT@WPY@TP22222112204398100000000120150123WTTT9#ZPZ12222112204398100000000 -T320230111111498415120220102WT@YY0##B12222122204398100000000120170921WTTP#TP#@22222122204398100000050 -T12023011111149842123700414331120313110766300000000000006310990000000000000000000000000000000000222222000000232219072 -T2202301111114984211219790312WT@BWTBZB2221222222221012211111410023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000022 -T320230111111498421120160702WT@WPYW@T22212212204398100000000120130414WTT#99B9B12212222204302100000000 -T12023011111149847624600411871120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111114984763219590721WTT0#TTTZ2222212222221012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498476120090123WT@ZP0W0022222112206306100001000 -T12023011111149848221000408061120333110689300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114984822219810904WT@Y0#@0B2222212222215012209110481213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111498482120110407WTTP0ZY#Z22222112204305100000000120060712WT@0ZB0WB22222112204309100000000 -T12023011111149850925900406081120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114985093219600404WT@BWWW9B1222222122215012206110006013069900000000000000000000000000000000000000000000000000000000000000000000000495043900000000 -T320230111111498509120120313WTTTBBTZB12222212209303100000000 -T12023011111149853222000407791120212110609105220000260005280540000000000000000000000000000000000222222000000002229012 -T2202301111114985321219850423WT@BW00@P2221222222221012213210550523011400000000000000000000000000000000000000000000000000000000330000000000000000000000000000 -T320230111111498532120130907WTT9TPBPB22212212204303200000000 -T12023011111149860624200414721120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111114986061219970912WT@09YBZ91222222222221012212110144623011900000000000000000000000000330000000000000000000000000000000000000000000000000000000000 -T320230111111498606120160324WT@9YWY@Y12222222204398100000000 -T12023011111149861420800410781120213110611109310000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111114986141220000523WTTPPWY902221222222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000791 -T320230111111498614120210104WT@WT9T#Y22212222204398100000000 -T12023011111149861621700410451120213110611300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111114986161219720407WTTTPW00W2222212222223012216120411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498616120100423WT@9BWWYY22222122204305100000000 -T12023011111149861925000414191120232110412300000000008005280300000000000000000000000000000000000222222000000002229022 -T2202301111114986191219750727WTT#9T0Y01222222222221012212210312923099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498619120080127WTT#@ZP#Z12222212204308100000000 -T12023011111149863325000409431120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114986333219480712WT@B0P9#W2222212122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000773000000000000 -T320230111111498633120060908WT@Z0Y9WB12222112206307100000000 -T12023011111149872521000403301120213110611300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111114987251219820312WTT#YPP#92222212222223012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498725120140726WT@ZYP##B22222112204303200000000 -T12023011111149873824200408571120513111034300000000000007710300000000000000000000000000000000000222222000000002229012 -T2202301111114987381219800512WTTYYPP9Z1222221222222012212190312921011722000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114987382219850924WT@YYBT9P1222222222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498738120130421WT@TY00#012222222205302100000000 -T320230111111498738120190726WTTZYBTPZ12222212204398100000000120150112WTTBT99WB12222212204301100000000 -T12023011111149896922000405321120212110611118830000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111114989691220010712WTT@YYTPB2221222222221012209110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111498969120190327WT@@PBY9022212222204398100000000 -T12023011111149901524200414851120433110493300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114990152219790112WT@YYBT9P1222222222221012205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114990152219810722WT@YYBT9P1222221222221102206990006011079915000000000000000000000000000000000000000000000000000000000000093500000000000000000000 -T320230111111499015120100121WTTP#YZ@W12222212204305100000000120050527WTTZZWZ#Z12222212204311100000000 -T12023011111149910523500407161120212110631300000000004305280020000000000000000000000000000000000222222000000002229012 -T2202301111114991051219950509WTTTZ@9T#2222212222225012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000159 -T320230111111499105120190914WTTWB0##Z22222112204398100000000 -T12023011111149916425900402631120413111034300000000000007710300000000000000000000000000000000000222222000000002229072 -T2202301111114991641219880309WT@BP@9@T1222222222221012210110910021011931000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111499164120050318WT@BWB0PY12222212204309100000000 -T320230111111499164120150913WT@@PTTPY12222212204398100000000120120502WT@@B0#0Y12222212204304100000000 -T12023011111149922620600402141120332110670300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111114992262219800127WTTW9P@002222212122211012212110860013109900000000000000000000000000000000000000000000000000000000000000000000000867005700000000 -T320230111111499226120210712WTTB0ZYT922222112206398100000000120060401WT@00YWB@22222122204311100000000 -T12023011111149923725600414551120213110557300000000000403160080000000000000000000000000000000211122222000000012219012 -T2202301111114992371219940523WTTTWYZWP2222212222221012216120134723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111499237120180104WT@ZT0ZZZ22222122204398100000000 -T12023011111149925522600413251120533110835300000000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111114992552219740127WT@YYBT9P1222212222221012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111114992552219740427WT@YYBT9P1222211222221102201990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111499255120070227WTT@0@#YZ12222122204309100000000 -T320230111111499255120140926WT@@P@TBY12222112204301100000000120110223WT@BB9Y9W12222112204305100000000 -T12023011111149936520600401131120213110611300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111114993651219970321WT@B@T#T92222212222221012212110223823011400000000000000000000000000000000000000000000000000000000290000000000000000000000000340 -T320230111111499365120200501WT@#ZWBTB22222122204398100000000 -T12023011111149949625200407301120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111114994961219900411WTTP#@PPB2222212222223012213110154523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111499496120100312WTTWTWZZW22222112204306100000000 -T12023011111149953923500400891120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111114995393219570923WTTBTW#P@2222212222222012216110006011069940000000000000000000000000000000000000000000000000000000000000553400000000000000000000 -T320230111111499539120140108WTTBTP@PB22222122206302100000000 -T12023011111149960020600410091120213120000300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111114996001219940726WTTT9PP@B2122222222225012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111499600120190713WTT#0ZYYW21222212204398100000000 -T12023011111149977122000406271120412110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111114997711219870908WT@#09PBY2221222222221012210110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111499771120070313WT@WYY@Y922212222204309100000000 -T320230111111499771120180707WT@T#Y09B22212222204398100000000120170918WT@PB90TW22212212204398100000000 -T12023011111149978424700402991120312110766300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111114997841219970114WT@@Z#ZTB2221222222221012211110223823010900000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111499784120190108WT@PTT###22212212204398100000000120170727WTTYB99BB22212212204398100000000 -T12023011111149986323500411471120213110376300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111114998631219840404WTTY@00T#1222211222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111499863120170105WT@TZ#Z@Y12222222204398100000000 -T12023011111149988124700405901120213110611300000000005005280090000000000000000000000000000000000222222000000002229012 -T2202301111114998811219960227WT@BPWPBT2212212222223012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111499881120190411WTT00990Z22122222204398100000000 -T12023011111149993522000405181120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111114999351219930122WT@0@YTTY2222112222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150009024200403941120213110611300000000000001330990000000000000000000000000000000111122222000002842219072 -T2202301111115000901219810212WT@@0@TBB2221222222221012211111430021011209000000000000000000000000000000000000000000000000000000000000056600000000000000000000 -T320230111111500090120040511WTT9TWTWW22212222204311100000000 -T12023011111150015622700408491120213110611113020000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111115001561219930404WT@9TWP@@1222222222221012212110184223011800000000000000000000000000000000380001000000000000000000000000000000000000000000000000 -T320230111111500156120210726WT@@0Z0@W12222112204398100000000 -T12023011111150020622000411281120412110939300000000000007710250000000000000000000000000000000000222222000000002229012 -T2202301111115002061219860701WTTWB@YBB2212222222221012211120431723011800000000000000000001000000000000000000000000000000000000080000000000000000000000000000 -T320230111111500206120150104WTTZ@PZZB22122212204301100000000 -T320230111111500206120220727WTT@YW9BZ22122222204398100000000120170913WT@09Z0Z@22122212204398100000000 -T12023011111150024921000403201110213110516300000000000002950010000000000000000000000000000000000222222000000002229012 -T2202301111115002495219940723WTTWBYP0B2222211222222013214290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115002491219940412WT@#ZWBWB2222212222222023214290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150026724900404261120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115002673219560213WT@@@T#T02222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000832000000000000 -T320230111111500267120100726WT@ZPTTZZ22222112206306100000000 -T12023011111150029320800410751120233110258300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111115002933219870913WTT@@BB#B2222212222221012211110263413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111500293120130514WTTB#TZTW22222122207302100000000 -T12023011111150038621700407751120213110376300000000000003160220000000000000000000000000000000211122222000000012219012 -T2202301111115003861219890112WT@0PP0WZ2222211222225012212110372323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111500386120110523WT@PBPB9W22222122204304100000000 -T12023011111150049724200403941120332110740300000000000005280870000000000000000000000000000000000222222000000002229022 -T2202301111115004972219890721WT@Z#0WBT2221222222211012201120204013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111500497120180312WT@WB#TPZ22212212204398100000000120110418WTT@0W90T22212222204304100000000 -T12023011111150064422700413181120413110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111115006441219940408WTT@9@TY01222222222221012212120105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111500644120130111WTT0TBWZ012222222204303100000000 -T320230111111500644120220123WTT9ZWP@W22222222204398100000000120140213WTT9@#Y0012222222204302100000000 -T12023011111150064622000411551120213110600300000000000005280900000000000000000000000000000000000222222000000002229012 -T2202301111115006461219840301WTT@Y@Y#Z1222212222221012216110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111500646120090305WTTZ0YW@W12222112204306100000000 -T12023011111150072724200414721120333110740300000000000001000680000000000000000000000000000000000222222000003172219022 -T2202301111115007272219630721WT@PWB0PB2221222222211012212110510913089900000000000000000000000000000000000000000000000000000000000000000000000000046900000000 -T2202301111115007272219590723WT@@9T9ZT2221221122211102211190006013109900000000000000000000000000000000000000000000000000000000000000000000000452046900000000 -T320230111111500727120070402WTT#Z#WTP22212222204308100000317 -T12023011111150078325900402121120213110611300000000000004420220000000000000000000000000000000000222222000000002229012 -T2202301111115007831219930411WT@BW#0Z01122222222221012213110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111500783120150213WTTP9T0W012222212204301100000000 -T12023011111150084022000412231120813111691300000000000011650420000000000000000000000000000000000222222000000002229072 -T2202301111115008401219900123WT@990#9T2212222222221012211110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111500840120080309WTTTT9PTW22122212204306100000000 -T320230111111500840120100704WTT0TYZ0T22122222204306100000000120090926WTT0T#YWW22122222204308100000000 -T320230111111500840120140107WT@9WY@@Y22122222204302100000000120110718WTTPWYY#Y22122212204305100000000 -T320230111111500840420180102WT@YB@ZWZ22122222104398109140000120160727WTTWP#WBW22122212204398100000000 -T12023011111150100224700402991120313110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111115010021219780726WT@P9Z@BT2222212222225012212210105021011949000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501002120120312WTT00BT0#22222122204303200000000120080201WTT09P@P#22222122204308200000000 -T12023011111150104522000414461120432110939136580000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111115010452219830927WTT@0YWY#2222212222212012203110025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111501045120060927WT@ZWTWZW22222122204309100000000 -T320230111111501045120150721WTT@P@0Y022222122204301100000000120140413WT@T9BB@P22222122204302100000000 -T12023011111150109624500405781120213110611300000000002004590140000000000000000000000000000000000222222000000692219012 -T2202301111115010961219850708WTTYB#T##2222212222225012210110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501096120100921WT@Z#YP9Z12222112204306100000000 -T12023011111150113722000405841120313110835300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111115011371219850312WT@PPBYY#2222212222222012212210105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000001500 -T2202301111115011373219840921WT@@@9#TZ2222211222222022212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501137120120407WT@99YZT922222112209304200000000 -T12023011111150119025900402631120313110611300000000000104580070000000000000000000000000000000000222222000000702219012 -T2202301111115011901219990927WTTZ9BP@W1222222222221012213190085221011805000000000000000000000000000000000000000000000000000000000000027700000000000000000000 -T2202301111115011902219990923WT@YYBT9P1222211222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501190120210301WT@0@WWW#12222122204398100000000 -T12023011111150120420800411601120212110611300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111115012041219850713WT@ZPTT0Y1222222222225012210110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501204120160409WTTW9YTBZ12222212204398100000000 -T12023011111150121021000405411120313110611300000000218205600080000000000000000000000000000000000222222000000002229012 -T2202301111115012101219950312WT@P#@WTT2222212222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501210120220321WTTPPP9P#22222112204398100000000120190723WT@9ZZZ9922222112204398100000000 -T12023011111150139824200403941120212110611300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111115013981219740511WT@#@ZTBP2221222222221012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501398120070321WT@W@#@W022212212204308100000000 -T12023011111150160122000400431120312110766300000000000006540620000000000000000000000000000000000222222000000002229072 -T2202301111115016011219950112WTT09PW##2221222222221012216120720023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501601120180123WT@#WB@P012212222204398100000000120150323WTT0@Y0#@12212212204301100000000 -T12023011111150163925900402831120433110939300000000000006540410000000000000000000000000000000000222222000000002229022 -T2202301111115016392220000704WTTYY#T9W1222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111501639120170113WT@0PY0@Z12222212204398100000000 -T320230111111501639120210301WTT9@999T12221122204398100000000120200418WT@W9WZ@Z12221222204398100000000 -T12023011111150165224100413561120513111034300000000000107710100000000000000000000000000000000000222222000000002229012 -T2202301111115016521220000304WTTTZ@0@#1222211222221012211190114921011720000000000000000000000000000000000000000000000000000000000000135300000000000000000000 -T2202301111115016522220010927WT@YYBT9P1222222222221102210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501652120190407WT@BZY#9912222212204398100000000 -T320230111111501652120210701WT@@W@TTY12222112204398100000000120190323WTT#T@@ZT12222112204398100000000 -T12023011111150166124200414021120212110611300000000000005280310000000000000000000000000000000000222222000000412219012 -T2202301111115016611219810418WTT0TPP#02222212222223012211110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501661120070507WT@0PT@@#22222112204309100000000 -T12023011111150170523700414331120622111369300000000000010090060000000000035017000000000000000000222222000000002229072 -T2202301111115017051219810718WTT#@9Y0Y2222212222221011212110940023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115017051219790405WT@@Z@Z9#2222211222225011212190273323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501705120100718WTTB@@0WZ22222122204307100000000120090708WT@WBYBT@22222122204308100000000 -T320230111111501705120130904WTTY#BZ0#22222122204303100000000120120205WTT0PZ@W922222122204303100000000 -T12023011111150170620800410751120213110611300000000000505280480000000000000000000000000000000000222222000000002229012 -T2202301111115017061219910423WTT999PTP2222212222221012212110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501706120170413WT@YWTBPY22222112204398100000000 -T12023011111150171523500405271120523111199300000000042008880100000000000000000000000000000000000222222000000002229012 -T2202301111115017151219870324WTTY@Y@YZ2222211222222011216290114923011800000000000000000000000000000000160002000000000000000000230000000000000000000000000000 -T2202301111115017151219880927WT@ZTBW#@2222212222222021214990114923011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111501715120180107WTTPW@00T22222122204398900000000 -T320230111111501715120200707WT@@YBTYZ22222122204398900000000120190107WT@B0#TPP22222122204398900000000 -T12023011111150180320800414651120212110611300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111115018031219960104WTTTTZWYT2221222222221012216110441623011400000000000000000000000000000000000000000000000000000000340000000000000000000000000000 -T320230111111501803120150318WT@TP##ZB22212222204398100000000 -T12023011111150186224200402501120213110611300000000002005280280000000000000000000000000000000000222222000000002229072 -T2202301111115018621219840204WT@T#BWZP2222212222221012210110630023011800000000000000000000000000000000000000000000200001000000000000000000000000000000000000 -T320230111111501862120110212WTT@#T00922222122204305100000000 -T12023011111150192422000413731120423111034300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111115019241219870127WT@T0ZPW02222221222222011215290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115019241219980208WT@@WB@BT2222222222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501924120210523WT@#Z9YPB22122212204398200000000120170305WTTZ#PWTY22122222204398200000000 -T12023011111150194521000411361120213110598300000000000005280510000000000000000000000000000000000222222000000002229012 -T2202301111115019451219920318WT@YW90BT2222212222221012212110520823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501945120130904WT@TT9@@022222112204304100000000 -T12023011111150196522000407411110523111116300000000000002570200000000000000000000000000000000000222122000000002229012 -T2202301111115019651219900926WTT9@@9T@2222122222222011212920213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115019651219830913WTTPYYP@Z2222221222222021208990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111501965120080224WT@B#PPZW22222212204308900000000 -T320230111111501965120180412WT@9T9T##22221212204398100000000120160423WT@0YPBTW22221212204301900000000 -T12023011111150210724700408361120313110766300000000050006540030000000000000000000000000000000000222222000000002229012 -T2202301111115021071219720112WTT00ZYY92222211222225012209110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111502107120120327WTTY0TWWT12222122204303100000000120100111WTT@Z9@BB12222112204306100000000 -T12023011111150211320800414151120313110806300000000000002230090000000000000000000000000000000000222222000004312219012 -T2202301111115021131219890908WTTYBWPPZ2222212222225012212110134721011728000000000000000000000000000000000000000000000000000000000000172200000000000000000000 -T320230111111502113120190314WTTBZ##9022222112204398100000000120080421WT@YZTZ#P22212222204308100000000 -T12023011111150217422000408891120313110835102550000000005900070000000000070003000000000000000000222222000000642219012 -T2202301111115021741219840105WT@#P9PYT2121212222223012213110520821011805000000000000000000000000000000000000000000000000000000190000025500000000000000000000 -T320230111111502174120210126WT@Y9#@W#22212212206398100000000120050113WTTYTZ@#Y21222222204311100000000 -T12023011111150227920200410361120313110634107550000010005280710000000000000000000000000000000000222222000000002229072 -T2202301111115022791219880308WTT9B9T#Y2222212222221012210111430023011800000000000000000001000000000000000000000000000000000000010000000000000000000000000000 -T320230111111502279420160527WTTZ9WW9#22222122104398109140000120110418WT@#BW@W@22222122204305100000000 -T12023011111150236122000413732110113210281300000000000002010010000000000000000000000000000000000222222000000002229032 -T2202301111115023611219960211WT@B@PPBT2222122222221013212990025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150245022000409871120312110536300000000000003920990000000000000000000000000000000261122222000000012219072 -T2202301111115024501219840712WTT0WT9W02221222222221012216111420023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111502450120080309WT@Y#999@22212212204307100000050120060312WT@@9BB#B22212212204309100000050 -T12023011111150249620400409801120212110611300000000001505280220000000000000000000000000000000000222222000000002229072 -T2202301111115024961219800426WTTT9PTBZ1222212222225012212110700023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111502496120110713WT@##P9Y012222122204303100000000 -T12023011111150250720600402141120233110514300000000000002560020000000000000000000000000000000000222222000000002229022 -T2202301111115025073219780204WTTBW99WP2222212222225012212110411911069919000000000000000000000000000000000000000000000000000000000000156100000000000000000000 -T320230111111502507120050327WTT0T9#0B22212112207310100000161 -T12023011111150257322000412971120213110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111115025731219820302WT@@YB@TP2222212222221012212111140023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111502573120060312WTT@PP0Z#22222122204309100000000 -T12023011111150281524200406011120413111034300000000000307710280000000000000000000000000000000000222222000000002229012 -T2202301111115028151219970526WTTB9#B0#2222212222221012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111502815120170712WTTT@T#PB22222122204398100000000 -T320230111111502815120210504WT@WPWBBZ22222122204398100000000120200512WTT0BB#@W22222112204398100000000 -T12023011111150281622000411981120322110735300000000032806540720000000000000000000000000000000000222222000000002229072 -T2202301111115028161219660423WT@Y9WBYP2221222222222011207110730023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115028161219570324WTT#ZZZY92212221222222021298290134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111502816120060423WTTZZWP0B22212212204310200000000 -T12023011111150288322000414461120413110939300000000000007710420000000000000000000000000000000000222222000000002229012 -T2202301111115028831219940921WTTPZ#WBZ2222122222221012211110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111502883120170927WT@BBZBY922221222204398100000000 -T320230111111502883120190313WT@0TPWZ922221212204398100000000120180923WTT0BPYYY22221212204398100000000 -T12023011111150298524200413331120213110599300000000000003160070000000000000000000000000000000211122222000000012219012 -T2202301111115029851219860408WTTP@@#TB2222212222225012212110075323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111502985120220726WT@9TPY9W22222222204398100000000 -T12023011111150299322700408491120213110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111115029931219940104WTTPZ0PT@2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111502993120180704WT@#ZBY@Y22222112204398100000050 -T12023011111150306922000403351120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115030691219840108WTTZ#@YYY1222212222225012212110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111503069120080326WT@TP9WYT22222112204307100000000 -T12023011111150314122000403351110523111211300000000000000420010000000000000000000000000000000000222222000000002229012 -T2202301111115031411219910227WTTB0@@BP2222211222222011212290085221011819000000000000000000000000000000000000000000000000000000180000148600000000000000000000 -T2202301111115031411219950926WT@#ZPWZP2222212222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111503141120150404WTT@WWY#022222122204301200000000 -T320230111111503141120200323WT@#Z@WWP22222112204398200000000120170524WTTBBTZ#Y22222112204398200000000 -T12023011111150314622000402321120213110611300000000000005280050000000000035004000000000000000000222222000000002229012 -T2202301111115031461219820407WTT00ZTZB2222212222223012212110065423011400000000000000000000000000000000000000000000000000000000220000000000000000000000000000 -T320230111111503146120170507WTT0Y9ZZY22222112204398100000000 -T12023011111150320024200403511120213110598300000000000005280390000000000000000000000000000000000222222000000002229012 -T2202301111115032001219960307WTT##@0BZ2222122222221012216110392121011700210000000000000000000000000000000000000000000000000000020000136400000000000000001219 -T320230111111503200120170726WT@Y0P90022221212204398100000000 -T12023011111150324222000402371120212110376300000000000003160330000000000000000000000000000000151122222000000612219072 -T2202301111115032421219830922WT@BZBTZW2221222222221012212110710023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111503242120050309WT@YT0###21212212204310100000000 -T12023011111150334124700410421120422110939300000000000007710570000000000000000000000000000000000222222000000002229012 -T2202301111115033411219820712WT@P@9BWT2222211222221011216190411923011800000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T2202301111115033411219870727WTTB9#WTZ2222212222221011212190471323011800000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111503341120200127WTTYWW#@021222222204398100000000120130909WTTBZ@BBB22222122204302100000000 -T12023011111150342123700414331120313110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111115034211219860427WTTB@YP0W1222221222223012211110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111503421120070927WTT@T@W#T11222212204310100000000120070927WT@PZ@ZYZ11222212204310100000000 -T12023011111150358225200410591120312110766300000000000006540970000000000000000000000000000000000222222000000002229072 -T2202301111115035821219800302WT@09BZYY2222212222221012208111010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111503582120100512WT@BPP#@012222222204304100000000120080324WT@Z#ZPP912222112204308100000000 -T12023011111150377324200409841120433110939112580000000006540490000000000000000000000000000000000222222000000002229022 -T2202301111115037733219700924WT@Z@@WZT2221222222225012213110006011069941000000000000000000000000000000000000000000000000000000000000362100000000000000000000 -T320230111111503773120080926WT@PYT0@022212212206307100000000 -T320230111111503773120130327WT@@ZYBT922212212206301100000000120120924WT@PPZB9#22212212206303100000000 -T12023011111150378420800410751120233120000300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111115037843219530227WT@W@#W#@1222212122221012298110006013069900000000000000000000000000000000000000000000000000000000000000000000002188000000000000 -T320230111111503784120160107WTTT@WTW022222112206398100000000 -T12023011111150395422000407411120623111269300000000000010090040000000000000000000000000000000000222222000000002229012 -T2202301111115039541219730711WT@9BYZBB2222221222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115039541219830121WT@WW#9Z@2222222222222021208290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111503954120070923WT@T9@W0W22222212204309200000000120050723WT@#90Y0P22222212204310200000000 -T320230111111503954120120526WT@PY@@ZB22222222204307200000000120090423WT@#B90W#22222212204309200000000 -T12023011111150406022000408452110213210516300000000000002550010000000000000000000000000000000000222222000000002229032 -T2202301111115040601219900723WT@9TPY9W2222212222221012214210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111504060120100113WT@9TPY9W22222212204305200000000 -T12023011111150407923500412161120113110376300000000000104170040000000000000000000000000000000000222222000000002229012 -T2202301111115040791219990221WT@9##ZZ92222212222225013216190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150408722000407411120212110557300000000001105270190000000000000000000000000000000000222222000000012219072 -T2202301111115040871219850504WT@#YPPWW2222212222223012212110730021011801000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111504087120060204WT@00T@BW22222122204310100000000 -T12023011111150415722700408351120312110740300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111115041571219840701WTTY0B0ZT2222222222222012212210273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115041572219760511WT@YB0WBY2222221222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000088900000000 -T320230111111504157120200302WT@W9BTTB22212212204398100000000 -T12023011111150422322700401571120433120000300000000000006540620000000000000000000000000000000000222222000000002229022 -T2202301111115042233219690322WTT#YZZPB2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111504223120130901WT@YP9W@021222212206302100000000 -T320230111111504223120160512WT@T@99B#12222112206398100000000120140107WTTPZ#ZB021222222206398100000000 -T12023011111150425622000411131120213110611300000000000003160090000000000000000000000000000000290222122000000002229012 -T2202301111115042561219960307WT@WYB#TB2221212222221012211120184223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111504256120200227WT@9YWPB022212222204398100000000 -T12023011111150431022500410151120333110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115043103219610401WT@W@P9TT2222211222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001100 -T320230111111504310120090413WTTTT@ZYB22222122206307100000000120060321WTT0#0TBZ22222122206309100000000 -T12023011111150435120600414161120313110776300000000000003920180000000000000000000000000000000261122222000000012219072 -T2202301111115043511219900727WTTZYWBY92222212222221012212110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111504351120180421WTT0#PP0B22222122204398100000000120080101WT@WBY#P922222112204308100000000 -T12023011111150443322000408891120313110835300000000000006540180000000000000000000000000000000000222222000000002229072 -T2202301111115044331219870707WTTWBTWB#2222212222221012213110760023010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111504433120160118WTTW9WW9W22212212204398100000000120080118WTT#@B9##12222122204306100000000 -T12023011111150456122000411981120312110740110440000500005280120000000000000000000000000000000000222222000000002229012 -T2202301111115045611219910126WTTTT9P0@2221222222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111504561120160313WT@0Z@TYY22222222204398100000000420140412WT@#BB##B21222212104302103780000 -T12023011111150470722000413731110113110376300000000000003090010000000000000000000000000000000000222222000000002229012 -T2202301111115047071219980123WTT@TZP9#2222222222221013212190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150470920600409771120332110670300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115047092219860202WTTWYP9PT2222212122211012212110730013109900000000000000000000000000000000000000000000000000000000000000000000000428050600000000 -T320230111111504709120090309WTT#WZW#Z22222122204307100000050120080123WT@@Z@PZW22222122204309100000050 -T12023011111150476424200403511120313110740300000000000401820150000000000000000000000000000000000222222000004722219012 -T2202301111115047641219790921WT@PY#@PB2222212222225012212110441621011813000000000000000000000000000000000000000000000000000000000000094300000000000000000000 -T320230111111504764120080513WTTBZZWBT22222112204309100000250120060904WT@PZW0T922222122204311100000250 -T12023011111150482225600411521120233110516300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111115048222219660405WTTPZY0#W2222211222211012209110015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111504822120140218WT@#0YWZ922222112204302100000000 -T12023011111150483925900406081120233120000300000000000001660900000000000000000000000000000000000222222000002512219022 -T2202301111115048393219710704WT@YPY9@T2122222222224012216110006011069940000000000000000000000000000000000000000000000000000000000000999900000000000000000018 -T320230111111504839120150304WTTW#9WZT21222212209398100000269 -T12023011111150489822000411551120232110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115048982219700423WT@B#PYPB2222222222215012208110015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111504898120060213WTT#ZTY@W22222212204309100000000 -T12023011111150496022000403351120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115049603219870723WTT9WBWWP2222212122221012216110006011069904000000000000000000000000000000000000000000000000000000000000024400001095000000000500 -T320230111111504960120120113WTT0PB0@P21222122209305100000000 -T12023011111150500320600402131120233120000105280000000004170770000000000000000000000000000000000222222000000002229022 -T2202301111115050033219680126WTTWZT#BT2221222222225012212110630011069935000000000000000000000000000000000000000000000000000000000000286500000000000000000561 -T320230111111505003120130427WTTT0BZT022212212206303100000000 -T12023011111150501824200413331120212110516300000000002400010050000000000000000000000000000000000222222000000002229012 -T2202301111115050181219910213WTTT@WT#Y2221222222221012212110055511011900210000000000090000000000000000000000000000000000000000090000136400000000000000000000 -T320230111111505018120100701WT@PT@WBY22212222204305100000000 -T12023011111150508325900402831120333110631300000000000005280390000000000000000000000000000000000222222000000002229022 -T2202301111115050832219950301WT@YYBT9P1222222222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505083120200308WTT#@B#WB12222222204398100000000120160912WT@0YWWBW12222112204398100000000 -T12023011111150511422000407411110312110835300000000000006540250000000000000000000000000000000000222222000000002229072 -T2202301111115051141219940311WT@P9#0992221222222221012212110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505114120210304WTT#0W0ZP22212222204398100000000120120513WT@W9TTYZ22212222204305100000000 -T12023011111150518824700408301120313110826300000000000003920130000000000000000000000000000000261122222000000012219012 -T2202301111115051881219850304WTTP###PZ2122221222221012210110144623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505188120160107WTTTTY@W#21122112204398100000000120150409WT@#WZP9@21122112204301100000000 -T12023011111150521522700407441120213110611102180000010105280590000000000000000000000000000000000222222000000002229012 -T2202301111115052151219900301WTT@BW00B2222212222221012212110590121011700210000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111505215120170426WT@BY#W0W22222122204398100000000 -T12023011111150526324200409091120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111115052631219890212WTTY@@PZ92222212222223011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115052631219910413WTT0##WBZ2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505263120150722WTT#@P9T#22222122204398200000000 -T12023011111150527023300410111120213110557300000000000002230050000000000000000000000000000000074222122000002312219072 -T2202301111115052701219780124WTT#BBZPP2222212222225012213121020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505270120040727WT@ZTP@#B22222112204312100000230 -T12023011111150535921200414781120233110446300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111115053593219960213WT@T0#PB@2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505359120220323WT@W9Z#@022222112207398100000000 -T12023011111150544424200403511120213110576113080000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111115054441219990207WT@@ZZTZ92222122222221012216110322821011816000000000000000000000000000000000000000000000000000000000000000000000000000000000627 -T320230111111505444120190701WT@0@W@9Z22221222204398100000000 -T12023011111150555025900402721120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115055503219700718WTTZ##Y@W2222212222225012212110590113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505550120150512WTT@WZBB@12222222206398100000000 -T12023011111150555324700410421120233120000300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111115055533219690126WT@ZPW9W02222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000336000000000000000000050 -T320230111111505553120180121WT@9#9YPW22222112207398100000000 -T12023011111150571125600404161120413111034103650000000206540060000000000000000000000000000000000222222000000002229012 -T2202301111115057111219910126WT@TPZTP#2222212222225012216110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505711120120101WTTP#00TT22222122204303100000000 -T320230111111505711120220321WT@BZZZZ#22222222204398100000000120170713WT@BBWWY022222112204398100000000 -T12023011111150571324200403941120113120000300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111115057131219870223WT@@9@W#T2222212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150581624200414721120213110611300000000000005280760000000000000000000000000000000000222222000000002229072 -T2202301111115058161219910408WTTBW9Z@92222212222221012212110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505816120180702WT@9TPY9W21222222204398100000000 -T12023011111150582021000403301120213110611300000000000505280990000000000000000000000000000000000222222000000002229072 -T2202301111115058201219860908WT@Z##PZT2222212222221012216111470023011400000000000000000000000000000000000000000000000000000000320000000000000000000000000000 -T320230111111505820120110214WT@WP9T@Y22222122204305100000050 -T12023011111150585522000406951120212110611300000000000005280880000000000000000000000000000000000222222000000002229072 -T2202301111115058551219860918WTTP@9BPP2211222222221012210110890023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505855120190923WTT0WZ@0#22112222204398100000000 -T12023011111150587623500414281120213110611300000000000005010450000000000000000000000000000000000222222002600012219012 -T2202301111115058761219810921WTT0TWB#Y2222212222221012213110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505876120060502WTT9@0ZBZ22222122204310100000000 -T12023011111150588024200408391120312110740300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111115058801219900108WT@PBZPTT2222222222221012213110570321011819000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111505880120120326WT9TTZZ0P22222212204303100000000120080726WT@Y9#TZ922222212204307100000103 -T12023011111150591024200403511120113110235300000000000004170030000000000070002000000000000000000222222000000002229012 -T2202301111115059101220020727WTTPW@T0Y2222212222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150604923500405981120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115060493220000721WTT#9WZ#Z2222212222221012205110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506049120220109WT@9TPY9W22222122208398100000000 -T12023011111150609725900402831120532120000300000000000006540050000000000000000000000000000000000222222000000002229022 -T2202301111115060972219910922WT@YYBT9P1222222222221012208990035713079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115060972219680123WT@YYBT9P1222221222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506097120160127WTT9ZWTYT12222112204398100000000 -T320230111111506097120190108WT@PP@0@P12222222204398100000000120170314WT@@#WZYT12222112204398100000000 -T12023011111150610024200404891120212110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111115061001219850422WTTP#YW@Z2222212222221012216110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506100120140112WTTPP0PT922222122204301100000000 -T12023011111150631223500405981120533120000300000000000007710370000000000000000000000000000000000222222000000002229022 -T2202301111115063123219600901WT9TT@P#Z2222212222225012216110025811069941000000000000000000000000000000000000000000000000000000000000635500000000000000001350 -T320230111111506312120100309WTT##T@0T22222112206304100000000120080126WTTZ#TZWW22222122206307100000000 -T320230111111506312120150404WTTTTBTPZ22222122206398100000000120130118WT@0T@T@P22222122206302100000000 -T12023011111150631320800414151120333110740300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111115063133219550524WTTTTW@9B2122222222214012213110134713069900000000000000000000000000000000000000000000000000000000000000000000000000082200000010 -T320230111111506313120220208WTTYTB0TT21222222206398100000000120220208WTTTYZY9P21222222206398100000000 -T12023011111150631822700408351120232110344300000000000004170670000000000000000000000000000000000222222000000002229022 -T2202301111115063182219850907WTTWZY0B@2222212222215012216120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111506318120170322WTT0B#@ZY22222122204398100000000 -T12023011111150638121700407751120332110611300000000000005280460000000000000000000000000000000000222222000000002229022 -T2202301111115063812219840207WT@YYBT9P2222212222225012213910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506381120190127WTT#BYBBW22222122204398100000000120150427WTTB9ZPB@22222112204301100000000 -T12023011111150659123500410671120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111115065913219900926WT@9YWPBP2222222222222012215110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506591120110523WTTWYTZ9022222112209305100000000 -T12023011111150661125900402722120313210835132760000000006540110000000000000000000000000000000000222222000000002229032 -T2202301111115066111219970313WT@9TPY9W1222212222221012216910006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506611120210107WTT@#YTY#12222122204398100000000120180926WTTP#9TTP12222112204398100000000 -T12023011111150662324200403941120433110939300000000000006540020000000000000000000000000000000000222222000000002229022 -T2202301111115066233219630123WT@#WTBZ@2221222122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001151000000000000 -T320230111111506623120080927WTTBTPZ0B21222222206310100000000 -T320230111111506623120140701WT@WB@9ZZ12122212206301100000000120130426WT@P0Z0@B12212212206302100000000 -T12023011111150666724200414721120212110611300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111115066671219950427WTTWP#T#Y1221212222221012211110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506667120140402WTT0#9WT922212122204302100000000 -T12023011111150669424200408571120333120000300000000001403340300000000000000000000000000000000000222222000000832219022 -T2202301111115066941219980401WTTB#0WWB2222212222221012212110670023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000082 -T320230111111506694520190407WTT#P9PZ922222122104398109140573520170713WT@BWTPWP22222112104398109140287 -T12023011111150682520600414771120333110670300000000000005280870000000000000000000000000000000000222222000000002229022 -T2202301111115068252219790208WTT@0BZ0@2221221222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111506825120160412WTT@9BT0Z22112212204302100000050120150409WT@TTTTYY22112212204398100000050 -T12023011111150686123500411471120413111034300000000000007710420000000000000000000000000000000000222222000000002229012 -T2202301111115068611219940705WTT@P9#ZT2212222222221012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506861120120526WT@@Z9WYP12122212204304100000000 -T320230111111506861120220427WTT@0W#ZT12222122204398100000000120150409WTT#BYB0T12222122204301100000000 -T12023011111150692223500408281120413110939300000000000007710930000000000000000000000000000000000222122000000002229072 -T2202301111115069221219950509WTTBPTYZZ2222222222221012212120940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506922120150418WT@YT#PY922212222204398100000000 -T320230111111506922120200726WT@#0B#T922212222204398100000000120170323WTTT0#BWP22212222204398100000000 -T12023011111150698420600402141120332110740300000000000004170730000000000000000000000000000000000222222000000002229022 -T2202301111115069842219840905WTTT@P@#P2222221222212012212190075313079900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111115069842219840923WT@BY#0P92222222222212022205190690013079900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111506984120130301WT@T#99W922222222204302100000000 -T12023011111150698724200409731120212110611300000000002002900570000000000000000000000000000000211122222002600012219012 -T2202301111115069871219990901WTTZTZBTB2222212222221012216110570323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111506987120180222WT@09WZTW22222112204398100000000 -T12023011111150699325900402631120233120000300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111115069933219570327WT@B@WPWY2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000980000000000000 -T320230111111506993120120411WT@0TTZWY22222122206303100000000 -T12023011111150703924200403461120313110835300000000000004900160000000000000000000000000000000163222122000000012219012 -T2202301111115070391219630218WTTTZTW#Y2212221222225012203120243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111507039120070123WTT0T0Z@@22122222204309100000000120050301WTT099WW#22122222204310100000000 -T12023011111150704823500406851120512120000300000000000005280360000000000000000000000000000000000222222000000002229012 -T2202301111115070483219510712WT@TTYB092221222122215012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000713022100000000 -T2202301111115070481220040301WTTTYP@TB2221222222221093211190006023011400000000000000000000000000000000000000000000000000000000000000134100000000000000000000 -T320230111111507048420080104WT@#@#0#P12212222204308100001638 -T320230111111507048120080307WT@PY0TPT22212222209307100000000420080104WTTW#WYT@12212222204308100001638 -T12023011111150713822700407491120233110611300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111115071382219900918WT@9@T9B92222212122221012211110530713109900000000000000000000000000000000000000000000000000000000000000000000000681000000000000 -T320230111111507138120100226WT9TT9P0Z22222112204305100000000 -T12023011111150717424200408391120213110554300000000000004850440000000000000000000000000000000000222222000000432219012 -T2202301111115071741219930205WTTW9T0ZT2222212222221012213110441621011813000000000000000000000000000000000000000000000000000000000000000000000000000000000042 -T320230111111507174120100724WTTWTW9B@22222122204305100000100 -T12023011111150718823500411471120232110571300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115071883219670122WTT9ZYTTW2222212222221012212110740011069921000000000000000000000000000000000000000000000000000000000000133700000000000000000000 -T320230111111507188120110704WTTPYP9WW22222112206304100000016 -T12023011111150736225900402122120133210280300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115073625219580208WTTW####02222212222223013212110174313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150737525900402831120213110591300000000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111115073751219980121WTTWY@W0W2122222222225012216120253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111507375120200723WTTT@B9WB22222112204398100000000 -T12023011111150738823500402711120213110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111115073881219660205WTTYTW00B2222212222223012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111507388120070421WTTZYYPZ@22222122204309100000000 -T12023011111150746625900402631120413110893300000000000005880330000000000000000000000000000000000222222006500012219012 -T2202301111115074661219960307WTT#ZWWTB1222212222221012212110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111507466120110727WT@B99@#912222112204304100000050 -T320230111111507466420210518WTT90Z9T022222212204398100000000120150323WT@Z9WP@Y12222112204398100000050 -T12023011111150751122900405641120312110817300000000000006540570000000000000000000000000000000000222222000000002229072 -T2202301111115075111219790405WT@W@ZBBT2222212222223012212110850023011800000000000000000004000000000000000000000000000000000000040000000000000000000000000000 -T320230111111507511120130918WTTZBWZTW21222222204303100000000120120123WT@##T9#B21222222204304100000000 -T12023011111150753224700409321120312110740300000000040606540150000000000000000000000000000000000222222000000002229012 -T2202301111115075321219920401WT@TWY#9#2222212222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000265 -T320230111111507532120210226WT@B9Y09@22222112204398100000000120170907WT@Z@0TTW22222112204398100000368 -T12023011111150767425800402201120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115076743219550712WTTWB@9WB1222212122222012216120006013069900000000000000000000000000000000000000000000000000000000000000000000000878000000000000 -T320230111111507674120080208WT@P99TPW12222112206308100000000 -T12023011111150778520800410751120233110446300000000010004170990000000000000000000000000000000000222222000000002229022 -T2202301111115077853219830718WTTB@PBYT2122222222222012212110015911069939000000000000000000000000000000000000000000000000000000000000332600000000000000000000 -T320230111111507785120060404WTTZB@Y@022222122207310100000000 -T12023011111150778622000411982120322210835300000000000006540370000000000000000000000000000000000222222000000002229032 -T2202301111115077861219780407WT@9TPY9W2221221222222011213290263423011800000000000000000000000000000000200001000000000000000000000000000000000000000000000000 -T2202301111115077861219800927WT@9TPY9W2221222222222021212290263423011800000000000000000000000000000000200001000000000000000000000000000000000000000000000000 -T320230111111507786120190707WT@9TPY9W22212222204398200000000 -T12023011111150782722000400922120423211034300000000493207710030000000000000000000000000000000000222222000000002229032 -T2202301111115078271219900718WT@W#@T0#2222121222222011212290045621011925000000000000090000000000000000000000000000000000000000030000000000000000000000000000 -T2202301111115078271219950314WT@BYBY#92222122222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111507827120210905WT@Y9Z00#22221212204398200000000120190707WT@Y##PTY22221212204398200000000 -T12023011111150793523500402291120433110939300000000000006540890000000000000000000000000000000000222222000000002229022 -T2202301111115079352219910923WTTW@P9Z02222212222211012212110600013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111507935120140907WT@TB0WY@22222122204302100000000 -T320230111111507935120220923WT@@YP@PT22212112204398100000000120190107WTTYPZY0Z22212112204398100000000 -T12023011111150794825600400661120113110376300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111115079481219970507WT@TPTT9Y2222212222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150809420600409001120333120000300000000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111115080943219370123WT@YW@9PY2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001504000000001793 -T320230111111508094120070104WT@YYT0W022222122206308100000000120050726WTT@WYW0922222112206309100000000 -T12023011111150812724200414021120313110557300000000001002790130000000000000000000000000000000000222222000002492219012 -T2202301111115081271219680712WT@Z@TPZT1222221222222012212290144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115081272219710409WT@YYBT9P1222212222222022209990006013079900000000000000000000000000000000000000000000000000000000000000150000000000000000000000 -T320230111111508127120070724WTT90P##@12222222204309100000000 -T12023011111150828722700408351120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111115082873219470513WTTTW@P0Y2222211122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002757000000000000 -T320230111111508287120100412WTT0TWB#Z22222122206306100000050 -T12023011111150831524200402501120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115083153219510126WTTY99WY#2222212122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000002904000000000000 -T320230111111508315120140504WTTT90YBP22222122206302100000000120060405WTTPZYZYT22222122206310100000000 -T12023011111150838825900402721120523111211300000000000008430190000000000000000000000000000000000222222004400012219012 -T2202301111115083881219960208WTT9@BY9#1222221222221011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115083881219960224WTTPZZ0#@1222222222221011216110362421011931000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111508388120150423WTTY0BW9P12222222204398100000000 -T320230111111508388120210313WT@0ZZP0912222222204398100000000120160322WT@9P@ZTP12222222204398100000000 -T12023011111150845522000405841120213110611300000000000005280370000000000000000000000000000000000222222000000002229042 -T2202301111115084551219940913WT@09Z#ZY2222122222221012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111508455120150918WT@@#YYTP22221222204301100000000 -T12023011111150870622000414461120312110765300000000001005790420000000000000000000000000000000000222222000000752219012 -T2202301111115087061219870913WT@W#@00Z2222222222221012214110431721011805000000000000000000000000000000000000000000000000000000000000029800000000000000000000 -T320230111111508706120180507WTT9P#9Y922222212204398100000050120180507WTTWTZTZ#22122222204398100000050 -T12023011111150873923700414331120433110757128780000000006540020000000000000000000000000000000000222222000000002229022 -T2202301111115087393219600123WTT9Z@0@@1222212222222012212110124811069940000000000000000000000000000000000000000000000000000000000000455400000000000000000000 -T320230111111508739120150208WT@ZZ9TPB12222122206398100000000 -T320230111111508739120190701WT@T9BZ#B12222122206398100000000120170308WTT9W9T0012222122206398100000000 -T12023011111150875920400413031120513111181300000000065707880190000000000000000000000000000000000222222000001002219012 -T2202301111115087591219800301WT@P0T0WB2222212222225012214110204021011807000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111508759120160401WT@WZPTW922222112204398100000000120140321WT@9WWB9@22222122204398100000000 -T320230111111508759120190922WT@YZW00@22222122204398100000000120180412WTT@PPPBW22222122204398100000000 -T12023011111150883625600414411120213110598300000000000205280170000000000000000000000000000000000222222000000002229012 -T2202301111115088361219980727WTTBWZWT02221222222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111508836120200301WT@Y#T9ZZ22212212204398100000000 -T12023011111150884124700408301120212110599300000000000003160760000000000000000000000000000000211122222000000012219072 -T2202301111115088411219880318WT@@WBPPY2222212222221012209110770023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111508841120180922WTTY0W9B022222112204398100000000 -T12023011111150896021600402511120233120000101960000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111115089603219820126WT@TBYZPZ2122222222221012212110006011069940000000000000000000000000000000000000000000000000000000000000326200000000000000000175 -T320230111111508960120170722WTT#P#PTB21222212207398100000000 -T12023011111150899420800414651120333110611300000000000005280270000000000000000000000000000000000222222000000002229022 -T2202301111115089942219790922WT@YYBT9P1222212222221012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111508994120190427WT@#TPBB@12222112204398100000000120160324WT@9WB9YW12222112204398100000000 -T12023011111150911924700401281120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115091192219800707WT@0BW#B02222212122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000774016000000000 -T320230111111509119120050723WTT#BWY0W22222122204310100000000 -T12023011111150918622000410051120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115091861220020212WT@#Z@#Z@2221222222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509186120220423WT@0P9P#W22212212204398100000000 -T12023011111150918822000411981120212110611300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111115091881219940423WTT@9#T9#2221221222221012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509188120140427WTTT#Z9TY22212222204302100000000 -T12023011111150922522000406191120213110598300000000000005280800000000000000000000000000000000000222222000000002229072 -T2202301111115092251219880526WT@0Y9YT#1222212222221012212110730023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509225120160726WT@P0TZP912222112204398100000000 -T12023011111150925323800410721120333120000300000000020005280550000000000000000000000000000000000222222000000002229022 -T2202301111115092533219640713WT@P@PWB@2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509253120090104WT@#T9WB#22222112207306100000000120040707WT@Z0W0T922222122207310100000000 -T12023011111150933224200403941120213110376300000000000003160100000000000000000000000000000000211122222000000012219072 -T2202301111115093321219790426WT@T##@@T1221222222221012213111280023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509332120070927WTT##W09T22212122204309100000000 -T12023011111150934123500407161120633111299300000000000008880150000000000000000000000000000000000222222000000002229022 -T2202301111115093413219690101WTTW90TB01222222222223012212210085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509341120120305WTTYPW9TB22222222206302100000000 -T320230111111509341120160218WT@ZTZZW@22222112206398100000000120140526WTT#WYB9T12222122206301100000000 -T320230111111509341120190714WT@ZY@BBY12222222206398100000000120180707WT@Y00#Y@12222212206398100000000 -T12023011111150942823500414281120333120000300000000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111115094283219580326WTTTZ@T@92222212122222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000883000000000000 -T320230111111509428120120513WTTT0PPTP22222122206304100000000120080313WT@W@Z#9Y22222112206307100000000 -T12023011111150943525200402191120333120000300000000000005280200000000000000000000000000000000000222222000000002229022 -T2202301111115094355219910413WTT9W@9T02222212222221012212110402011069925000000000000000000000000000000000000000000000000000000000000172000000000000000000007 -T320230111111509435120080412WTTPTT9B@22222122209309100000000120070513WT@B0BY0W12222112209309100000000 -T12023011111150943722000402321120233110516300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111115094372219850112WT@BPP@TY2222212222211012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111509437120190918WTT@9T0WY22212222204398100000000 -T12023011111150943821400408021120313110766300000000000003920060000000000000000000000000000000261122222000000012219072 -T2202301111115094381219880513WT@BT##B#2222212222221012212110830023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000764 -T320230111111509438120110914WTT@9@Z9B22222122204304100000000120090702WT@##9T@@22222122204306100000000 -T12023011111150945224700409321120213110376300000000000004170310000000000000000000000000000000000222222000000002229012 -T2202301111115094521219750207WT@Y0@@902222212222221012216110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509452520070721WTTTBB#BB22222212104308109140000 -T12023011111150948520800410781120213110611300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111115094851219900707WTTYW0BBB2222212222221012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509485120140523WT@#TWB@P22222122204302100000000 -T12023011111150948624200403511120213110511300000000000005280700000000000000000000000000000000000222222000000002229072 -T2202301111115094861219760918WTTZPWZZW2222222222221012212111230023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509486120040118WT@YT0@ZY22222122204312100000000 -T12023011111150955120800405391110313110761300000000002604030090000000000000000000000000000000000222222000000002229012 -T2202301111115095511219910104WT@9BYY#@2222212222221012212110105021011802000000000000000000000000000000000000000000000000000000000000011500000000000000000000 -T320230111111509551120200122WT@9BWT0B22222122204398100000000120150101WTTYY9PT@22222112204301100000000 -T12023011111150965022000412691120212110516119160000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111115096501219830409WTTZ##YBW2221222222222012214210263421011800120000000000000000000000000000000000000000000000000000190000075500000000000000000000 -T320230111111509650120190323WT@@TT#WB22212212204398100000000 -T12023011111150972124200402501120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115097213219800908WT@YPYYTT2222212222225012212110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509721120050722WT@#WTP0B21222222208310100000000 -T12023011111150978523500410671120513111156300000000000008880600000000000000000000000000000000000222222000000002229072 -T2202301111115097851219970211WTT#TW@WT2222122222221012211910640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509785120170301WTT#@#WZB22221222204398100000000120140127WT@WPYWPT22221212204301100000000 -T320230111111509785120220423WTTWPT9@B22221212204398100000000120200301WT@0WT@PT22221212204398100000000 -T12023011111150983120600414871120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115098312219750412WTT@Y0#PY1222222222211012212111570013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111509831120050912WT@PWYT@W12212212204311100000000 -T12023011111150986122000404841120213110611300000000348505280200000000000000000000000000000000000222222000000002229012 -T2202301111115098611219940411WT@T9BW0Z2221222222221012214110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509861120160304WT@Z0W0WT22212122204398100000050 -T12023011111150987924200414021120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111115098791219970527WTT@0BT#W2221222222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111150988624700402991120723111480300000000000011650040000000000000000000000000000000000222222000000002229012 -T2202301111115098861219800112WT@#P0@Y01212221222222011298290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115098861219860423WTT#TZ#T92212222222222021298290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509886120060923WT@B##0P922122222204398200000000 -T320230111111509886120110318WTTP#BP0922122222204398200000000120070923WTTY0B0W@22122212204398200000000 -T320230111111509886120150721WT@@0YBWZ22122222204302200000000120130404WTT00YB#Z22122222204398200000000 -T12023011111150991320600404121120232110516300000000000002420990000000000000000000000000000000000222222000001752219022 -T2202301111115099132219740509WT@YB9#T@2222212122211012215110006013109900000000000000000000000000000000000000000000000000000000000000000000000924001000000000 -T320230111111509913120060502WT@9Z@WB#22222122204309100000175 -T12023011111150994324200402501120313110704300000000000006540850000000000000000000000000000000000222222000000002229072 -T2202301111115099431219810904WT@00PWBB2222212222225012213120860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000004166 -T320230111111509943120070704WTTWPZW@Y22222122204309100000000120040921WTTBZZTZ@22222112204311100000000 -T12023011111150995524500405941120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115099553219670314WT9TT99B#2222212222225012214110114911069919000000000000000000000000000000000000000000000000000000000000148800000000000000000000 -T320230111111509955120070912WTTWBYZBY22222122206308100000000 -T12023011111150996223500405271120312110835300000000000006540290000000000000000000000000000000000222222000000002229012 -T2202301111115099621219980423WTT0PB9ZZ2222212222221012212110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111509962120200218WTT0BZWYY22222122204398100000000120180704WTT#0P0ZW22122212204398100000000 -T12023011111151000023300410111120312110751300000000000006050830000000000000000000000000000000000222222000000492219072 -T2202301111115100001219930124WT@@PYPZB2222212222225012216110830021011900230000000000080000000000000000000000000000000000000000030000000000000000000000000048 -T320230111111510000120140104WTT@YZBBT22222122204301100000050120130901WT@WT@PP022222112204303100000050 -T12023011111151013624200414851120232120000300000000000004170960000000000000000000000000000000000222222000000002229022 -T2202301111115101363219760713WT@0PZWBY2222122222221012210110006011069913000000000000000000000000000000000000000000000000000000000000378800000000000000000000 -T320230111111510136120090318WT@TYTTP@22221212207305100000000 -T12023011111151014525900400311120333110764300000000000005280960000000000000000000000000000000000222222000000002229022 -T2202301111115101453219610707WTT@Y#9@#2122222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000262 -T320230111111510145120160427WT@#B90TW21222222206398100000000120130512WTT#0BPPT21222212206302100000000 -T12023011111151016224600411871120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115101623219530523WTTWP9BWB2221222122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000518000000000000 -T320230111111510162120120123WTTTZWT#W22212212206303100000000 -T12023011111151018922000405701120233110557300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111115101893219800701WTTZ@0YWT1122222222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510189120220205WT@0@0#9912212222207398100000000 -T12023011111151019924700406631120313110542300000000000006540940000000000000000000000000000000000222222000000002229072 -T2202301111115101991219870113WT@9#BB@92222212222221012212111510023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510199120120127WTT0BW09P22222112204302100000000120060114WTT0#9ZT922222112204310100000000 -T12023011111151022823500411471120232110516300000000000004170910000000000000000000000000000000000222222000000002229022 -T2202301111115102283219750301WT@99TYYB2221222122221012216110164413069900000000000000000000000000000000000000000000000000000000000000000000001740000000000000 -T320230111111510228120150313WTTP#PZ@B22212222206398100000000 -T12023011111151023820600407031120233110516300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111115102382219840421WTT0W@Z#W2222212122215012212110382213109900000000000000000000000000000000000000000000000000000000000000000000000331060300000000 -T320230111111510238120180426WT@YPBT@T22221212204398100000000 -T12023011111151025822000412231120232110523300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111115102582219850227WT@9W0T@Y1222222222213012210120085213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111510258120090218WT@#W@TZ012222122204307100000000 -T12023011111151030124700410421120413111034300000000000207710050000000000000000000000000000000000222222000000002229012 -T2202301111115103011219890927WT@#BP@#W2122222222225012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510301120070927WTTYWTZPB21222212204308100000000 -T320230111111510301120140227WTTBWWY0Z21222222204301100000000120110113WTT@#BYYW21222222204304100000000 -T12023011111151032020600412681120313110818300000000000006540300000000000000000000000000000000000222222000000002229012 -T2202301111115103201219940401WT@Z90PZT2222212222223012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510320120200909WT@P0ZTPW22222112204398100000100120120709WTTP90Y0#22222112204303100000000 -T12023011111151036322700408491120333120000300000000019005280360000000000000000000000000000000000222222000000002229022 -T2202301111115103633219840912WT@9YZ@PZ2122211212222012213110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000837 -T320230111111510363120130905WT@@W9#BT22222122207302100000000120100723WTTB@9@B922222122207304100000000 -T12023011111151037520600402131120313110835300000000000006540440000000000000000000000000000000000222222000000002229012 -T2202301111115103751219930412WTT#BW#Z@2221222222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510375120220912WTTPB@09T22212212204398100000000120160318WT@WPWWWP22212212204398100000100 -T12023011111151038621000408061120312110835118130000000006540300000000000035004000000000000000000222222000000002229012 -T2202301111115103861219880908WTTBBP@@92222212222225012216110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510386120200922WTTB#PP#@22222122204398100000100120160327WT@B000@Z22222112204398100000000 -T12023011111151052322000407241120233110611300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111115105233219680926WT@@PP0ZT2222212222225012212110075313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510523120120426WTTZ9W#0B22222122206304100000000 -T12023011111151055923500412162120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111115105591219820323WTTZT@#PZ2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115105591219840218WT@9P0BYY2222212222222021216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510559120130224WT@WZ#Z#B22222112204303200000000120110101WT@#Y9ZTB22222112204303200000000 -T12023011111151062522000410221120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111115106251219730326WT@YWZ0WT2222212222221012213121340023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510625120100404WT@00#@0T22222112204306100000000 -T12023011111151063522000409971120233110516300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111115106353219550304WT@TTB9WW2122222222211012210110392113069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111510635120080923WT@P0BTT021222222207306100000000 -T12023011111151063822000409871120233110496300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115106382219720114WTT0@TWW02122222222215012208111120013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000171 -T320230111111510638120050907WT@PYT#P#11222212204311100000000 -T12023011111151069720600401981120213110611300000000001405280280000000000000000000000000000000000222222000000002229012 -T2202301111115106971219770708WTTBWPY@@2222212222225012214110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510697120090702WTT#BPYW022222122204307100000000 -T12023011111151078320600404121120523111199300000000000008880110000000000000000000000000000000000222222000000002229012 -T2202301111115107831219840721WTTB#@#BB2222211222222011214290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115107831219850105WT@T@#T0Z2222212222222011214290124823011800000000000000000000000000000000140002000000000000000000020000000000000000000000000000 -T320230111111510783120070407WT@P#WYZZ22222112204302200000000 -T320230111111510783120140108WT@ZWWBP022222112204301200000000120100222WT@#PYP9Z22222112204304200000000 -T12023011111151082223500407161120313110766300000000001506540210000000000000000000000000000000000222222000000002229012 -T2202301111115108221219830407WT@BB@@0Y2222212222223012211110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111510822120110904WT@T#YW0Y12222122204303100000000120090709WTT9@BBZZ12222112204305100000000 -T12023011111151085024200402501120212110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111115108501219970701WTTTPZ@BP2222212222223012216110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000001668 -T320230111111510850120160907WTTW@@9W@22222112204398100000000 -T12023011111151101422000413731120313110786300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111115110141219970105WTTWTZ0B92222122222221012212910085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511014120220311WT@9ZWWB@22221212204398100000000120190123WTTY#0BB022221222204398900000000 -T12023011111151129322000403481120312110804124100000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111115112931219940723WT@@0B#WZ2221222222221012211110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511293120190912WTTYPT0Z022212222204398100000000120160104WT@90B#9@22212222204398100000000 -T12023011111151138125100407671120213110516300000000002004170370000000000000000000000000000000000222222000000002229012 -T2202301111115113811219880123WTT0ZB9WZ2222212222225012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511381520180211WTTZ@PBP912222212104398109140000 -T12023011111151147824200407271120313110760300000000000003920380000000000000000000000000000000261122222000000012219072 -T2202301111115114781219860101WT@Y@WWY02221222222221012212110870023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511478120130227WT@@P@Y#B22212212204301100000000120070723WT@ZBWPYP22212222204308100000100 -T12023011111151149525100407671120213110576300000000006804600370000000000000000000000000000000000222222000000682219012 -T2202301111115114951219740912WT@TZZP#B2222212222225012201110382223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000068 -T320230111111511495120080112WTT99#@P@22222122204308100000050 -T12023011111151154224700407521120922111997300000000000005360090000000000000000000000000000000000222222000000002229072 -T2202301111115115421219900727WT@0ZWZP#2222212222222011212120700021011828000000000000000000000000000000000000000000000000000000000000175800000000000000000000 -T2202301111115115421219890208WTT0@TPYW2221221222222021212190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511542120110902WT@WYYBB#22222122204305100000100 -T320230111111511542120140226WTT09BPWY22222122204302100000000120120312WT@P##@TW22222122204304100000000 -T320230111111511542120170708WTT@@0WT#22212212204398100000000120160324WTTP9P0#922212222204398100000000 -T320230111111511542120200712WT@YBZZ##22212212204398100000000120190401WTT99##T022222122204398100000000 -T12023011111151155724100402401120812111691300000000000012890140000000000000000000000000000000000222222000000002229072 -T2202301111115115571219890713WTTW0PTWB1222222222221012210110630023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511557120060413WT@WTWZ9T12222212204309100000000 -T320230111111511557120110411WTTYPBY9@12222212204305100000000120090208WT@WBZZY912222222204306100000000 -T320230111111511557120120222WTTYYB9#922222122204304100000000120110413WTTTPBWYY12222122208304100000000 -T320230111111511557120160118WT@BYP#@Y12222112208398100000000120140413WT@PW#@0912222122208302100000100 -T12023011111151156222700408351120413110939114550000000007710120000000000000000000000000000000000222222000000002229012 -T2202301111115115621219970212WTT09@P9Z2221222222223012211110411921011720000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511562120140912WT@9WTZZT22212222204302100000000 -T320230111111511562120220418WT@#0WPY@22212212204398100000000120160923WT@#B0YPP22222112204398100000000 -T12023011111151172722000405181120613111339116070000000010090410000000000000000000000000000000000222222000000002229012 -T2202301111115117271219890308WTT#WBY902221222222221012212110421823011900000000000000000000000000310004000000000000000000000000020000000000000000000000000000 -T320230111111511727120080718WT@PBY0@W22212212204308100000000 -T320230111111511727120120714WTT#Z0@WZ22212222204303100000000120110427WT@W@#BTZ22212212204306100000000 -T320230111111511727120160927WT@BY9WY#22212212204301100000000120150111WTT0PZ#YT22212212204301100000000 -T12023011111151178724700413761120312110766300000000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111115117871219870126WT@9#W0B#2222212222221012209110293123010100000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111511787120220401WTT0Y9BYP22222122204398100000000120120101WT@PY00ZY22222122204303100000000 -T12023011111151183922000409971120333110835300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115118393219720112WTTWB#PBT2221222222221012212111520013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511839120100107WT@0BW@W#22212222206305100000000120080104WT@@W9Y9022212212206306100000000 -T12023011111151190925900402631120233120000300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111115119093219530108WT@Z@#PTB2222212122224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000799000000000000 -T320230111111511909120060904WT@TZYBBP22222112206308100000000 -T12023011111151197325800405801120412111013300000000000307710020000000000000000000000000000000000222222000000002229012 -T2202301111115119731219970304WT@Y9B@0Z1222222222221012212110392123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111511973120150409WT@ZWP#PY12222222204301100000000 -T320230111111511973120220726WT@#TW@9Y12222222204398100000000120220401WT@Y#YTZZ12222212204398100000000 -T12023011111151205325600414951120212110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111115120531219900309WT@YP@WWW2222212222221012211110164423011800000000000000000000000000000000000000110000000000000000000000000000000000000000000000 -T320230111111512053120210102WTTTYWZT022222112204398100000000 -T12023011111151207622000400811120313110699300000000000005880400000000000000000000000000000000000222222006500012219072 -T2202301111115120761219850704WTT0PPW@P2221222222223012209110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512076120180307WT@Z#WBZT22212212204398100000000120080314WT@#YZPP@22212212204307100000000 -T12023011111151208622000407231120213110585118260000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115120861219950127WTTWTBZ902221212222221012216110045623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512086120190426WTTWT@0ZP22212212204398100000465 -T12023011111151209120600400871120323110835300000000011704900050000000000000000000000000000000163222122000000012219012 -T2202301111115120911219830101WT@W9ZYW02222211222222011212120085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115120911219780302WTT###WZ#2222212222222021213190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512091120120407WTT@YYWYW22222112204305100000000 -T12023011111151212622000405181120512111002138630000000007710320000000000000000000000000000000000222222000000002229012 -T2202301111115121261220000212WTTWTWPWP1222222222221012210290105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115121262219960222WT@YYBT9P1222221222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512126120170721WTTBP@Y##12222112204398100000000 -T320230111111512126120210908WTT0P99@012222112204398100000000120180721WTTP00YB012222122204398100000000 -T12023011111151224925900406841120213110618300000000000000350080000000000000000000000000000000111122222000003822219042 -T2202301111115122491219990707WT@@#B9Y92122222222221012211110015923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111512249120150708WT@0@#9Z#21222212204398100000299 -T12023011111151234722000414461120312110835300000000000006540400000000000000000000000000000000000222222000000002229012 -T2202301111115123471219990127WTTZ9TW#Y2221222222221012211120411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512347120220701WT@9TPY9W22212212204398100000000120200505WT@9WB@0P22212222204398100000000 -T12023011111151236623500402711120312110740300000000015005280270000000000000000000000000000000000222222000000002229012 -T2202301111115123661219900513WT@0ZBTWP2222212222225012209210283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512366120110223WTTTTZ00T22222122204305200000200420090213WT@WZ@@W922222112104307206740200 -T12023011111151239922000400591120212110606300000000219905280130000000000000000000000000000000000222222000000002229012 -T2202301111115123991219870127WTT90Z0WT2222222222224012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512399120050727WTT00W@B@22222222204310200000000 -T12023011111151244424200414351120113110348300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111115124441219930102WTTYYYP@W2222212222221013216190144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111151247222000409411110113110281300000000000000940010000000000000000000000000000000000222222000000002229012 -T2202301111115124721219980312WT@#TPW9B1212222222221013212190025823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111151248124900404261120313110835300000000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111115124811220000308WT@Y##@TY1222222222221012211110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512481120210123WT@#9T09W12222212204398100000000120190704WT@W@W0TZ12222222204398100000000 -T12023011111151253124200403511120433120000300000000000006540860000000000000000000000000000000000222222000000002229022 -T2202301111115125313219640902WT@TB#PTB2221222222222012213110085213069900000000000000000000000000000000000000000000000000000000000000426400000000000000000000 -T320230111111512531120080902WT@ZWPPBW22222212206307100000000 -T320230111111512531120120723WTTZW#Z0922212212206303100000000120080902WTTZPPW#T22222222206307100000000 -T12023011111151253625100407671110213110524300000000000003310010000000000000000000000000000000000222122000000002229012 -T2202301111115125361219690923WT@@Y@0PZ2221222222224012213120045621011820000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512536120100923WT@@W0PW@22212222204306100000000 -T12023011111151255620800409831120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115125561219790523WT@TTZYBZ2222211222225012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512556120070711WTTWZTPZB22222112204309100000000 -T12023011111151258025900402121120233110611300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111115125803219600311WTTW0P09Y1122222222225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000334 -T320230111111512580120100902WT@00WY#P11222222206306100000350 -T12023011111151261225900402831120233110306300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111115126122219730107WT@YYBT9P1222222222221012204910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512612120110501WT@@@TP#T12222112204302100000000 -T12023011111151261724700402991120213110611300000000000005010050000000000000000000000000000000000222222002600012219072 -T2202301111115126171219790111WTTYWYY#P1222222222221012211210650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512617120050704WT@#T#@9#22222222204310100000000 -T12023011111151265924200403511120113110376300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111115126591219980302WTTWPPY0@2221222222221013211190035723011800000000000000000000000000240400000000000000000000000000020000000000000000000000000000 -T12023011111151269122000413731120623111339300000000000010090030000000000000000000000000000000000222222000000002229012 -T2202301111115126911219900723WT@@Y9BYP1222222222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115126911219880905WTT9WZ9#@2222221222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111512691120140914WTTZ@TT9B22222212204302200000000120130212WT@YP#@##22222212204303200000000 -T320230111111512691120190127WTT0#99T@22222222204398200000000120160504WT@P0Y#YW22222212204301200000000 -T12023011111151283725900402721120333110760300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115128373219620902WTTTWZ#TT2122222222225012212110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000269 -T320230111111512837120090201WT@TZ#@Y#21222212206307100000131120060322WTTYPYWTB21222212206308100000131 -T12023011111151287722700408351120233120000300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111115128773219650213WT@PZ0TT92222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000344000000000000000000000 -T320230111111512877120080709WTTPYBZP012222112206307100000000 -T12023011111151306223300410111120333110740300000000000005280430000000000000000000000000000000000222222000000002229022 -T2202301111115130622219880705WTTTPWPW#2222212222211012209110660013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111513062120170309WT@ZTW#Y#22222112204398100000000120110421WTTT90B0Z22222122204304100000000 -T12023011111151309221700406141120213120000300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115130921219910304WTTZ@B0WZ2122222222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513092120210207WTTP0T0BP21222212204398100000000 -T12023011111151310822000406191120523111116300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111115131081219870123WTTPYYTTT2222211222222011214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115131081219870104WTT0#9#0P2222212222222021214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513108120110927WT@#@Z9#P22222112204305200000000 -T320230111111513108120190218WTTY#TB#@22222122204398100000000120140726WTTY0@@Y922222112204303200000000 -T12023011111151315025200400391120623111268300000000151106880230000000000000000000000000000000000222222000003212219012 -T2202301111115131501219790423WT@@9P0P#2222212222222011208190273323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115131501219710901WT@B0YYPB2222211222222021212190035721011821000000000000000000000000000000000000000000000000000000000000128300000000000000000000 -T320230111111513150120110907WTT@T#BPZ22222112204305100000000120060412WT@W9BZ0W22222122204310100000000 -T320230111111513150120210307WT@ZYZ@@T22222122204398100000000120140104WT@@@@#TZ22222112204302100000000 -T12023011111151319123500411471120313110835300000000000004390060000000000000000000000000000000000222222000002152219012 -T2202301111115131911219930222WT@0BPZ092222222222221012216110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000215 -T320230111111513191120170326WTTZPT9BB22222212204398100000000120160404WTTTTTP#Z22222212204301100000000 -T12023011111151320824700409381120213110599300000000000003160120000000000000000000000000000000211122222000000012219012 -T2202301111115132081219920312WTTB9BTT#2222212222221012210110134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513208120220427WTTT0PBWB22222112204398100000000 -T12023011111151321622000403891120213110585300000000004004780120000000000000000000000000000000000222222000000502219012 -T2202301111115132161219680101WT@P9@BB#2221222222223012216110134721011804000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111513216120090712WTTBP@9@Z22212212204307100000000 -T12023011111151329724200414351110233110281300000000000002010010000000000000000000000000000000000222222000000002229021 -T2202301111115132972219910202WT@YYBT9P2222222222221012216910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513297120220723WT@#9TYYY22212212204398100000000 -T12023011111151349224200403511110533110893300000000000001490010000000000000000000000000000000000222222000000002229021 -T2202301111115134923219960504WTT99PZZ91222212222221012214110006013069900000000000000000000000000000000000000000000000000000000000000328300000000000000000000 -T320230111111513492120110107WTTTP0TY922222122207305100000000120080507WT@BBBW#B22222122207308100000000 -T320230111111513492120170424WTTZ@P9#Y22222112207398100000000120140326WT@@TB9Z022222112207301100000000 -T12023011111151350022000400921120423110959300000000055007710030000000000000000000000000000000000222222000000002229012 -T2202301111115135001219890127WTT#PPBP@2222212222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115135001219900911WT@#YT#B02222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513500120180411WTT0YP#P#22222112204398200000000120120401WT@#00B9922222112204304200000000 -T12023011111151364821700403821120333110704300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111115136483219670408WT@BTYWBW2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513648120120105WT@T0TBW922222112209304100000000120110913WT@WY#9PZ22222112209306100000000 -T12023011111151365224200403941120233110536300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111115136522219890411WT@PTZ@ZZ2222212222213012212110025813089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111513652120170726WTT0#Y09012222122204398100000000 -T12023011111151371523500402711120213110493300000000026303270160000000000000000000000000000000000222222000002012219012 -T2202301111115137151220020918WTT#Z@BYZ2221222222221012212110174321011805000000000000000000000000000000000000000000000000000000000000026400000000000000000000 -T320230111111513715120210121WT@YZ#PBP22212212204398100000000 -T12023011111151374724200407271120333110611300000000000005280520000000000000000000000000000000000222222000000002229022 -T2202301111115137473219780923WTTWWB@#92222122222223012216920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513747120140214WT@9@#ZBW22221212207302100000000120080409WTTYW#@W@22221212207307100000000 -T12023011111151383024200414021120423111011300000000090007710030000000000070002000000000000000000222222000000002229012 -T2202301111115138301219640711WTTWY#BB#2222211222222011216190045623011800000000000000000002000000000000220001000000000000000000100000000000000000000000000000 -T2202301111115138301219940227WTT@0WPY02222122222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513830120190204WT@0@0##Y22221122204398100000000120150327WT@@@0#@@22221212204398100000000 -T12023011111151391623700414331120633111116300000000000008880090000000000000000000000000000000000222222000000002229022 -T2202301111115139162219870501WT@YYBT9P1222222222223012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513916120130123WTTB#@09012222222204301100000000 -T320230111111513916120170107WTT@W00WW12222212204398100000000120150701WTTZYP@#912222212204398100000000 -T320230111111513916120210724WTTBYYY9012222112204398100000000120210724WT@P#WYB@12222112204398100000000 -T12023011111151391722000411551120212110611105740000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111115139171219880705WT@YZT00W2221222222225012212210144623011700000000000000000000000000180300000000000000000000000000000000000000000000000000000000 -T320230111111513917120170911WTTYZBWBZ22212222204398100000000 -T12023011111151393025900402831120213110611300000000000703160550000000000000000000000000000000211122222000000012219012 -T2202301111115139301219920707WT@TTW#WW2222212222221012212110372323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111513930120160709WTTWZPZWY22212222204398100000000 -T12023011111151394122700408351120313110740300000000000005280580000000000000000000000000000000000222222000000002229072 -T2202301111115139411219820513WTTWP0TWP1222222222225012212110990023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111513941420090114WT@0ZTZ@P12222222104307109140000120070423WT@@B#WWW12222222204309100000000 -T12023011111151401725900406081120312110620300000000000006540340000000000000000000000000000000000222222000000002229012 -T2202301111115140171220010202WTTY9ZT#91222222222221012211110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111514017120210418WT@#@W@YB12222112204398100000000120200427WTTBZ0P@W12222112204398100000000 -T12023011111151402120600402141120213110598300000000000005280350000000000000000000000000000000000222222000000002229072 -T2202301111115140211219770113WT@P99TBW2222212222222012212121390023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111514021120060921WT@##9BZ922222112204310100000000 -T12023011111151402422000409971120612111339300000000000510090160000000000000000000000000000000000222222000000002229072 -T2202301111115140241219910412WTTB9PY#Z2222222222221012216110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111514024120060921WTTTWP@WW22212222204310100000000 -T320230111111514024120180412WT@ZP##9Y22212212204398100000000120130313WT@9TYYB022212212204301100000000 -T320230111111514024120220205WT@WTBZWW22212222204398100000150120220205WT@BW@BWZ22212222204398100000150 -T12023011111151404724700408301120312110784121850000000006540180000000000000000000000000000000000222222000000002229012 -T2202301111115140471219940304WTTTTP9#92221222222221012216110312923011400000000000000000000000000000000000000000000000000000000250000000000000000000000001450 -T320230111111514047120190222WT@9WTBWZ22212222204398100000000120130718WTTB9@BP#22212212204303100000000 -T12023011111151405224200403941120313110786300000000000003920150000000000000000000000000000000261122222000000012219072 -T2202301111115140521219850712WTTT9#T0Y1222222222221012207110810023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111514052120050304WT@P@@09B12222212204309100000000120050304WTTBPYT0@12222212204309100000000 -T12023011111151412823500412161120333120000300000000000005280580000000000000000000000000000000000222222000000002229022 -T2202301111115141283219580904WTTBZYWTZ1222211122222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000002454000000006228 -T320230111111514128120080212WT@@B9Z9P12222112206308100000000120050412WT@WZW#9@12222122206310100000000 -T12023011111151423724200403941120233110598300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115142371219810326WTTYB#WBB2221222222221012209111620023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111514237120100702WTTBT0TWP22212212204305100000000 -T12023011111151426422000411551120233120000300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111115142643219660418WTTT#9#BT2221222222225012298110006011069996000000000000000000000000000000000000000000000000000000000000883100000000000000000000 -T320230111111514264120110427WTTTZB@@922212222206304100000000 -T12023011111151427823500406851120233110493300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111115142783219920718WT@BP9BBT1222212222221012213110006011069916000000000000000000000000000000000000000000000000000000000000147300000000000000000000 -T320230111111514278120210112WTT9@#TP@12222122207398100000000 -T12023011111151432024700406701120412110939300000000000007710770000000000000000000000000000000000222222000000002229072 -T2202301111115143201219950224WT@@@Y9992222212222221012210110820023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111514320120130301WTTB009PB12221222204301100000108 -T320230111111514320120170113WT@0WTBY#22222122204398100000000120150701WTT#PBPB012222112204398100000000 -T12023011111151434823500410672120323210835300000000059406540080000000000000000000000000000000000222222000000002229032 -T2202301111115143481219960924WTTW@W99#2222212222222011215290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000001800 -T2202301111115143481219940701WTTTBW@WY2222211222222021215290095123011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111514348120210201WT@ZPT0T022222112204398200000000 -T12023011111151437922700401572120523211199300000000000008880170000000000000000000000000000000000222222000000002229032 -T2202301111115143791219890707WTTY0B@YB1222222222222011212190095123011800000000000000000000000000280001000000000000000000000000000000000000000000000000000000 -T2202301111115143791219870111WT@PTPZ#01222221222222021212190065423011800000000000000000000000000280001000000000000000000000000000000000000000000000000000000 -T320230111111514379120090121WT@0Y#ZWT12222222204307100000000 -T320230111111514379120220427WTTPTT#Y022222212204398100000000120100409WT@YBWZW012222212204306100000000 -T12023011111151438124200409842120233210493300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111115143813220000421WT@YYBT9P2222211222221012216210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111514381120050427WT@9TPY9W22222112207310200000000 -T12023011111151454120800405391120233110516300000000000004170700000000000000000000000000000000000222222000000002229022 -T2202301111115145412219690105WT@0B99YB2222212222215012209120006013089900000000000000000000000000000000000000000000000000000000000000000000000000090400000000 -T320230111111514541120050718WTTY9P9P#22122212204311100000000 -T12023011111151454924200404281120232110516300000000000004170860000000000000000000000000000000000222222000000002229022 -T2202301111115145493219700318WTTBZZTZ#1222222122211012211111300013069900000000000000000000000000000000000000000000000000000000000000000000000390054400000000 -T320230111111514549120120414WTTY#T###12222112206304100000000 -T12023011111151460320600403441120233120000300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111115146033219710914WT@Z0W#Y92222211122225012216110075313069900000000000000000000000000000000000000000000000000000000000000000000002040000000000000 -T320230111111514603120070418WT@0#TYTT22222112207311100000000 -T12023011111151463121700406141120212110493300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111115146311219990104WT@@TBPY02222212222221012209110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111514631120170204WT@B@##T#22222112204398100000100 -T12023011111151463823500410671120432110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111115146382219890401WTT0BZ00P2222211222215012212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111514638120100513WT@TW0Y9@22222122204306100000000 -T320230111111514638120180112WT@ZWBZW#22222112204398100000000120150707WT@@9@9P#22222112204398100000000 -T12023011111151468920800411991120333120000300000000000005280210000000000000000000000000000000000222222000000002229022 -T2202301111115146893219690112WT@ZBY00Y2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000678100000000000000000000 -T320230111111514689120140504WT@P#0YPW22212212206301100000875120120212WTT@P9TYW22212222206303100000875 -T12023011111151472724700409381110213110618300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115147271219870523WT@WTYBWZ2222212222223012212120045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111514727120110926WT@YPW#YY22222112204398100000000 -T12023011111151477222000412971120213110611105220000049003160280000000000070003000000000000000211122222000000012219012 -T2202301111115147721219880104WTTBTWZPP2212222222223012211110362423011200000000000000000000000000000000000000000000000000000000170000000000000000000000000000 -T320230111111514772120150309WTTYTZYW922122112204301100000000 -T12023011111151499420600400871120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115149942219860723WTT@PZTTP2222212222211012209110312913089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111115149942219640921WTT9#@#BP1222211222215102210190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111514994120170923WTT@BZB##22222122204398100000000120090708WTTWZ9@#912222122204306100000000 -T12023011111151500522000407411110213110516300000000000002040010000000000000000000000000000000000222222000000002229012 -T2202301111115150051219830912WT@@ZY#Z#2222212222222012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111515005120130126WT@W000B@22222112204303100000000 -T12023011111151506524700409322120523211199300000000159408880020000000000000000000000000000000000222222000000002229032 -T2202301111115150651219840511WT@9TPY9W2222221222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115150651219830301WT@9TPY9W2222222222222021211290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111515065120080524WT@9TPY9W22222222204308200000000 -T320230111111515065120180923WT@9TPY9W22222212204398200000000120110711WT@9TPY9W22222222204304200000000 -T12023011111151507020600414161120312110810300000000000006540910000000000000000000000000000000000222222000000002229072 -T2202301111115150701219910404WT@YZTT@W2221222222223012210110980023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111515070120160323WT@#@Y0TT22212212204398100000000120150709WTTWYWPTW22212212204398100000000 -T12023011111151536622000412811120413110704300000000000006540280000000000000000000000000000000000222122000000002229012 -T2202301111115153661219940913WT@TBBZ9P1222222222225012212120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115153662219920711WT@YYBT9P1222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111515366120210927WT@9#Y99Y12222222204398100000000120160707WTTB#PY9T12222212204398100000000 -T12023011111151551424200404891120313110835300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111115155141219820523WTTWB9PZ02222212222225012213110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111515514120150114WTTWBTWYZ22222112204302100000656120080711WTTZPTPP@22222112204308100000656 -T12023011111151556625900402631120413110893300000000000004480220000000000000000000000000000000299122222000000242219072 -T2202301111115155661219870312WTTT9@#@T1122222222221012210120830023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000153 -T320230111111515566120060227WTTT@Z0BT11222212204307100000000 -T320230111111515566120140711WTTY#TWW011222212204398100000000120080707WTT@ZZWB@12222212204304100000000 -T12023011111151557520600414161120313110835111470000060006450100000000000000000000000000000000000222222000000002229012 -T2202301111115155751219880907WTT@##Z902221222222223012212210124823010100000000000000000000000000000000040000000000000000000000000000000000000000000000000000 -T320230111111515575120220312WT@Y9@W#Z22212222204398100000000120190301WTTP#WTPB22212212204398100000000 -T12023011111151575324200404701120232110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111115157533219650427WTT#B9#0P2222212122221012213110164413069900000000000000000000000000000000000000000000000000000000000000000000000957000000000000 -T320230111111515753120120405WT@0T#0PW12222122206304100000000 -T12023011111151575524200404891120212110611300000000002005280450000000000000000000000000000000000222222000000002229072 -T2202301111115157551219830526WTT0B99PY2221222222225012211110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111515755120050405WT@BPT@0#22212222204310100000000 -T12023011111151608822000409871120312110835300000000000006540480000000000000000000000000000000000222222000000002229072 -T2202301111115160881219860323WT@TB9P#92222212222223012211110610023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111516088120210309WT@YPZB#@22222222204398100000000120130727WTTYT9ZZB22222122204302100000000 -T12023011111151611720600402131120332110740300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111115161173219660526WTT0TY##P2222212222215012213110075313069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111516117120100122WTTYP0W0W12212122206305100000000120100122WTT090PW912212122206305100000000 -T12023011111151612425900402121120433110939300000000000006540330000000000000000000000000000000000222222000000002229022 -T2202301111115161242219920226WT@9ZT@WP1222221222213012212110114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111516124120110101WT@YTY99Z12222212204303100000000 -T320230111111516124120180927WT@0WT9#Y12222122204398100000000120160426WT@B@@TTZ12222122204398100000000 -T12023011111151618125900402631120232110517300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111115161813219740412WTT#B#9ZB1222222222222012208110263413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111516181120060422WTTP0YPTB12222212207308100000000 -T12023011111151623824200411401120313110835300000000000003920070000000000000000000000000000000261122222000000012219012 -T2202301111115162381220010709WT@#BB0T@1222222222221012212110085223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111516238120220926WTTWTZ90021222212204398100000000120210127WT@TTWW0@12222212204398100000000 -T12023011111151629625900402831120233110536300000000001704170160000000000000000000000000000000000222222000000002229022 -T2202301111115162961219920924WT@@Z9#W92222212222221012216110174323099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111516296520170105WTTBYBBT922222122104398109140000 -T12023011111151633424700411201120233120000300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111115163343219900418WTTY#0#@W2222211222221012212110006013069900000000000000000000000000000000000000000000000000000000000000374600000000000000000000 -T320230111111516334120060312WTTWWZPPT22212212207309100000000 -T12023011111151677823700414332120623211395300000000030010090020000000000000000000000000000000000222222000000002229032 -T2202301111115167781219920307WT@9TPY9W1222221222221011213210035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115167781219940707WT@9TPY9W2222222222221021298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111516778120160701WT@9TPY9W12222222204302200000000120140327WT@9TPY9W12222222204301200000000 -T320230111111516778120210107WT@9TPY9W12222222204398200000000120180426WT@9TPY9W12222222204398200000000 -T12023011111151683820600400871120232110516300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111115168382219770512WT@@YW0@@1222222222211012213110790013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111516838120060304WTTZ9BYZZ12222212204309100000000 -T12023011111151684022000414462120423210939300000000000007710170000000000000000000000000000000000222222000000002229032 -T2202301111115168401219910314WTT#TPW092222212222222011212290174323011800000010000200000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111115168401219860324WTTT#0YWZ2222211222222021212290174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111516840120160118WT@@W9ZBT22222122204398200000000120120318WTT#9##YP22222122204304200000000 -T12023011111151684220600402131120423110766300000000000007660020000000000000000000000000000000000222222000000002229012 -T2202301111115168421219810727WT@TP09Y02122222222222011212110332721011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115168421219800918WTTP0Z@Z02122221222222011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000004 -T320230111111516842120140707WT@Y0WY@T21222212204301100000000120060327WTTPTY9YT21222222204309100000000 -T12023011111151693220800405391120213110478300000000020005280100000000000000000000000000000000000222222000000002229012 -T2202301111115169321219800721WT@YYBZ#Y2222212222222012211110114923010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111516932120050524WTT0BTZY022222112204311100000000 -T12023011111151696425200410591120313110766300000000007306540150000000000000000000000000000000000222222000000002229012 -T2202301111115169641219820309WTTYYWTYY2222211222221012212110164423011900000000000000000000000000380004000000000000000000000000090000000000000000000000001870 -T320230111111516964120150214WT@@BY@BB22222222204302100000000120130707WT@Y9P0Z022222212204304100000000 -T12023011111151699923500404531120313110530300000000000001430040000000000000000000000000000000000222222000003852219012 -T2202301111115169991219950904WTT0PTWZP1222222222222012298290055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115169992219960321WT@YYBT9P1222221222222102204990006011079933000000000000000000000000000000000000000000000000000000000000204200000000000000000000 -T320230111111516999120170107WTTPBZZ9T12222222204398200000000 -T12023011111151708324200414851120213110611300000000002005280190000000000000000000000000000000000222222000000002229012 -T2202301111115170831220010727WT@9T@YYY2222212222221012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111517083120210721WT@#TT@BP22222112204398100000000 -T12023011111151727021000414221120213110611300000000010005280430000000000000000000000000000000000222222000000002229012 -T2202301111115172701219850123WT@TP00T02222212222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111517270120220926WTTBPTYWT22212222204398100000000 -T12023011111151745222000409971120332110740300000000000004170760000000000000000000000000000000000222222000000002229022 -T2202301111115174522219650713WTT@Y90092212221222212012212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111115174522219690721WT@B@YZZW2212222222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111517452120110723WT@W9W99922122212204303100000000 -T12023011111151765020600414871120213110493300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115176501219910923WTT0TT9#92222212222223012212120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111517650120140711WT@WYYBY022212212204301100000000 -T12023011111151779325900402721120213110446300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115177931220040112WT@#BY@TB1222212222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111517793120210311WTT0@T#ZT12222212204398100000000 -T12023011111151781722000409871120513111116147070000000008880170000000000000000000000000000000000222222000000002229012 -T2202301111115178171219930427WT@9TP9TW2221222222221012213110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111517817120180104WTTB#Z#@T22212222204398100000000120140301WTTZBBPY022212212204302100000000 -T320230111111517817120210912WT@Z0B9WB22212222204398100000000120190304WT@Z9T0WT22212212204398100000000 -T12023011111151791725000409431120233110493300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111115179173219800126WTTTWP#PP2222212222225012213110530711069923000000000000000000000000000000000000000000000000000000000000261000000000000000000007 -T320230111111517917120220504WTT090BYY11222212206398100000000 -T12023011111151799223500405981120213110598300000000020005280080000000000000000000000000000000000222222000000002229012 -T2202301111115179921219750113WTT#9BY#W2222212222223012212210095121011829000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111517992120120914WT@WPZPZZ22222122204304200000000 -T12023011111151803523500409141120213110364300000000000003160300000000000000000000000000000000211122222000000012219012 -T2202301111115180351219950918WTTYPZZ0@2222212222221012210110580221011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518035120170523WT@Z9ZTZ922222122204398100000000 -T12023011111151809924200414851120213110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111115180991219820111WT@W#YZP#1222222222223012211121100023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518099120090223WT@@00@BP12212222204308100000000 -T12023011111151823421700406141120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115182343219590121WTT9#Z@#@2222212122224012212110144613069900000000000000000000000000000000000000000000000000000000000000000000001558000000000396 -T320230111111518234120090121WT@WPZZTW22222122206305100000000 -T12023011111151830022000410222120323210740300000000000002240090000000000000000000000000000000000222222000004302219032 -T2202301111115183001219920201WT@9TPY9W1222221222222011212990006021011828000000000000000000000000000000000000000000000000000000000000172000000000000000000000 -T2202301111115183001219970112WT@9TPY9W1222222222222021212990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518300120200724WT@9TPY9W12222222204398900000000 -T12023011111151832620800410781120333110740300000000000105280520000000000000000000000000000000000222222000000002229022 -T2202301111115183263219670721WT@9ZY09@1222212122221012202220204013069900000000000000000000000000000000000000000000000000000000000000000000000931000000000000 -T320230111111518326120080907WT@Y#0@P@12222122206306100000000120070707WT@@WWTPY12222112206307100000000 -T12023011111151841124200403941120512111211300000000000008430170000000000000000000000000000000000222222004400012219072 -T2202301111115184111219940413WTTZPTPT@2221222222221012212120890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518411120160312WT@9BZ@T#22212222204398100000000120120723WT@YTT@0#22212212204304100000000 -T320230111111518411120200924WTT9ZWYTZ22212222204398100000000120180711WT@B#TY9P22212222204398100000000 -T12023011111151845725900402722120323210835300000000000006540050000000000000000000000000000000000222222000000002229032 -T2202301111115184571219730127WT@9TPY9W1222221222222011208290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115184571219740114WT@9TPY9W1222222222222021208290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518457120190124WT@9TPY9W12222212204398200000000 -T12023011111151847725900402831110313110740114920000000000840040000000000000000000000000000000000222222000003362219012 -T2202301111115184771219950123WT@@@WP0P1222212222221012212120055521010109000000000000000000000000000000000000000000000000000000000000056000000000000000000000 -T320230111111518477120220226WTTWP9WPY12222112204398100000000120170418WT@ZPZBWY12222112204398100000000 -T12023011111151848724200413331120323110835300000000010006540080000000000000000000000000000000000222222000000002229012 -T2202301111115184871219960411WT@YBY@ZZ2221221222221011211190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115184871219990724WT@P0ZZTY2221212222221011212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518487120190905WTT0PPZ@022212122204398100000000 -T12023011111151851324700402991120523111116300000000050008880070000000000000000000000000000000000222222000000002229012 -T2202301111115185131219770421WTTW#YWTZ2212221222222011209290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115185131219830913WT@WYT9BB2212222222222021209290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518513120060423WTTB@##W022122222204310200000000 -T320230111111518513120170324WTTTBYYP022122222204398200000000120100411WTT9B#9@B22122222204306200000000 -T12023011111151853924200410211120523111199300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111115185391219960427WT@YTT0WB2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115185391219950104WT@B##PWT2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518539120170723WT@PPB#TT22222122204398200000000 -T320230111111518539120210226WT@TYBYWY22222112204398200000000120190505WT@9PZ#W022222112204398200000000 -T12023011111151867524700411201120213110611300000000000005280890000000000000000000000000000000000222222000000002229072 -T2202301111115186751219760423WTT9YBT0Y2222212222221012211110900023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111518675120090109WT@0WWBTP22222112204306100000000 -T12023011111151868822000408891120413110835300000000284705280020000000000000000000000000000000000222222000000002229012 -T2202301111115186881219790112WTT@##B9W2221221222222012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115186882219870427WT@YYBT9P2221222222222102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518688120220111WTTY99ZTY22212222204398100000000420200323WTTP09W#922212212204398100000000 -T12023011111151874125000414191120213110598300000000020005280690000000000000000000000000000000000222222000000002229072 -T2202301111115187411219800302WT@##Z0PZ2222212222221012212110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518741120170327WT@T@YZP#22222112204398100000000 -T12023011111151878822000411552120113210376300000000000004170050000000000000000000000000000000000222222000000002229032 -T2202301111115187881219960918WT@9TZZYZ2222122222221013212990065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111151888824700405901120433110835300000000010005090990000000000000000000000000000000163222122000000002229022 -T2202301111115188881219850418WTTTT#9#Y2222222122225012212120035723109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111111518888120110714WT@Z@#Z9Y22212212204304100000000 -T320230111111518888120230424WT@9TPY9W22222222204398100000000120150912WTTBB@T#022212212204398100000000 -T12023011111151892022000413732120323210835300000000020006540060000000000000000000000000000000000222222000000002229032 -T2202301111115189201219810727WT@YYYWY@2222211222222011214290075323011800000000000000000000000000000000160001000000000000000000000000000000000000000000000000 -T2202301111115189201219960407WT@TY909Z2222212222222021214290075323011800000000000000000000000000000000160001000000000000000000000000000000000000000000000000 -T320230111111518920120170123WT@W0P0YZ22222122204398200000000 -T12023011111151894323500411471120533110776300000000250006540070000000000000000000000000000000000222222000000002229022 -T2202301111115189432219840112WT@YYBT9P1222222222222012210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115189432219810318WT@YYBT9P1222221222222022211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518943120070921WTT#TPZ#Y12222222204307100000000 -T320230111111518943120190513WTTB@B9W#12222222204398100000000120100721WTTBY0@@W12222222204305100000000 -T12023011111151895724700406741120213110557300000000000005280240000000000000000000000000000000000222222000000002229072 -T2202301111115189571219840407WT@@#Y9ZY2222212222221012215111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111518957120070327WTTBTY99#22221212204308100000000 -T12023011111151915225900402831120413110818300000000000007700170000000000000000000000000000000308222221000000002229072 -T2202301111115191521219890212WTTTW@99W1222222222221012212110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519152120050927WT@@0PYZT12222122204312100000000 -T320230111111519152120100423WTT@999YW12222122204307100000000120080101WT@Y0#BW912222122204309100000000 -T12023011111151915821700403821120213110611300000000000003160380000000000000000000000000000000211122222000000012219072 -T2202301111115191581219800124WT@Z0ZZBP2222212222221012213110920023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519158120080913WT@Y#YBBB22222112204307100000000 -T12023011111151917822000400591120623111339300000000018008880090000000000000000000000000000000000222222000000002229012 -T2202301111115191781219870723WTTB00T9Y2212222222222011214190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115191781219760301WTTP0PT0T2212221222222021212190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519178120200527WTTWT#PB#22122212204398100000000120170712WT@P00@#022122222204398100000000 -T320230111111519178420130227WTTWWZBY@22122212104398109140000120110114WTTZZY@#B22122212204304100000000 -T12023011111151926221700406141120213110611300000000000005280440000000000000000000000000000000000222222000000002229072 -T2202301111115192621219850112WT@@ZBZ0Y2222212222225012212111130023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111519262120110511WT@ZWYBY#22222122204306100000000 -T12023011111151926922500410151120313110670300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111115192691219940408WTTZZY##Y2222212222223012211110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519269120120423WTT90@W9@22222112204305100000000120110212WT@TP@Z@P22222112204306100000000 -T12023011111151933520600412561120232110516300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111115193352219590407WTTB0Z#002222211222213012213110154513089900000000000000000000000000000000000000000000000000000000000000000000000000089400000000 -T320230111111519335120110212WTTBYBYY#22222122204304100000000 -T12023011111151933824200403511120213110529300000000000004170520000000000000000000000000000000000222222000000002229012 -T2202301111115193381219970309WT@Y#0BZ#2221222222221012216110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519338520190907WT@9T09BT22222112104398104980000 -T12023011111151936424700402991120313110724123070000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115193641219960918WT@##Z@P#2222212222223012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519364120180911WT@#T0ZBT22222122204398100000000120150105WT@B@W9Z022222112204398100000000 -T12023011111151943723500412161120213110611300000000000005280160000000000070006000000000000000000222222000000002229072 -T2202301111115194371219870504WT@#WW#P@2222212222223012216110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519437120110404WTT9Z@ZY022222122204305100000000 -T12023011111151946623900400641120233110536300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111115194662219900904WT@TTZ#WB1222212222211012298110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111519466120070723WT@WTWT#022222112204309100000000 -T12023011111151947420600402131120213110611300000000000005280400000000000000000000000000000000000222222000000002229012 -T2202301111115194741219880122WTTT@WY9Y2222212222221012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519474120080911WT@#WW@P022222112204308100000000 -T12023011111151947825900403551120233110376300000000100004170370000000000000000000000000000000000222222000000002229022 -T2202301111115194782219760727WT@YYBT9P1222222222224012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519478120080213WT@ZZZZ#912222222204304100000000 -T12023011111151956824900404261120213110412111990000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115195681219950723WTTP9TT902222212222221012216110035723011700000000000000000000000000350004000000000000000000000000120000000000000000000000001641 -T320230111111519568120190526WT@#BZ##Z22222112204398100000000 -T12023011111151959224700408301120413110959300000000000007710450000000000000000000000000000000000222222000000002229012 -T2202301111115195921219950311WTTY@#@WT1222212222221012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519592120170901WTTTBP9TW12222112204398100000000 -T320230111111519592120210123WTTPZPT0Y12222112204398100000000120200421WT@Z0#B@Z12222122204398100000000 -T12023011111151978225000402561120533110835300000000000006540130000000000000000000000000000000000222222000000002229022 -T2202301111115197822219820104WT@YYBT9P1222221222221012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115197822219850927WT@YYBT9P1222222222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519782120050908WT@Y@@B0P12222112204311100000000 -T320230111111519782120190918WT@PW@TYP12222212204398100000000120120124WTT9#P90@12222212204304100000000 -T12023011111151978825900402631120813111691300000000000012410240000000000000000000000000000000000222222000000002229072 -T2202301111115197881219830513WTT@PZPB91222212222223012212112060023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519788120040307WTTTY0YWB12222212204310100000000 -T320230111111519788120090504WTTTY@#9912222222204307100000000120080527WTTBW0B9P12222212204308100000000 -T320230111111519788120130222WTTT@Y#0B12222222204303100000000120100518WTTP9ZYZW12222222204306100000000 -T320230111111519788120210318WTTY9#9Y012222112204398100000000120190723WTT9ZT@WB12222122204398100000000 -T12023011111151981922000412972120213210611300000000000003780050000000000000000000000000000000000222222000001502219032 -T2202301111115198191219810126WT@9TPY9W1222212222221012212210065421011810000001000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111519819120140101WT@9TPY9W12222122204301200000000 -T12023011111151993622900405641120113110316300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111115199361220030305WT@WB@9P02222212222221013210190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111151999520600407031120213110599300000000000003160320000000000000000000000000000000211122222000000012219012 -T2202301111115199951219850213WTTBWBTYZ2222212222224012211110332723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111519995120060414WT@W9BBTP22222122204310100000000 -T12023011111152007223500411472120523211116300000000030008880090000000000000000000000000000000000222222000000002229032 -T2202301111115200721219790214WT@YW@9@92222211222222011216290105023011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T2202301111115200721219850705WT@0ZW@0B2222212222222021212290105023011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111520072120040923WT@#@YB@W22222112204311200000000 -T320230111111520072120140527WT@PZY@Z922222112204398200000000120100924WTTTZ0PWB22222112204304200000000 -T12023011111152014220800411991110312110740300000000000003390010000000000035001000000000000000000222222000000002229012 -T2202301111115201421219920409WT@T0@PY02222212222221012212110352521011801000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111520142120170709WT@B#9#TP22222122204398100000000420120212WTTYZZPTZ22222112104305109140000 -T12023011111152014320600402141120333110740300000000000005280670000000000000000000000000000000000222222000000002229022 -T2202301111115201433219480112WT@@TWZB02222122122224012211110045613069900000000000000000000000000000000000000000000000000000000000000000000001347000000000000 -T320230111111520143120110912WT@B@Z0T922221222206303100000000120040923WT@Y0TPP922221212206310100000000 -T12023011111152021524200403512120423211034300000000150007710070000000000000000000000000000000000222222000000002229032 -T2202301111115202151219830713WTT#BTYZT2222212222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115202151219830726WTT9@BP0P2222211222222021212290085222011900000000000000290004000000040002000000000000000000000000090000000000000000000000000000 -T320230111111520215120180327WT@B0Y90Y22222122204398200000000120160304WT@##YPY@22222122204398200000000 -T12023011111152023623900403801120212110611300000000025005280160000000000000000000000000000000000222222000000002229072 -T2202301111115202361219910918WT@Z9#W902122222222221012210120680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520236120170227WTTWTZZZP11222212204398100000000 -T12023011111152023825900402831120333110611115950000022005280590000000000000000000000000000000000222222000000002229022 -T2202301111115202382219980308WT@YP#W#Z1222212222221012211910015913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520238120200726WT@9W90TT12222212204398100000000120180407WTT#T090012222122204398100000000 -T12023011111152034922000400591120412110939300000000189806540610000000000000000000000000000000000222222000000002229012 -T2202301111115203492219850426WTTBPBZ@Y2221222222212012212110035713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111115203491219870926WTTT@0YZW2221221222222022214290411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520349120190227WTT0B9Y0922212212204398100000000120150322WTTPZT0P922212222204398100000000 -T12023011111152035620600406752120333210194300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115203563219840212WT@Y9ZZYB2222122222222012211910253511079951000000000000000000000000000000000000000000000000000000000000312800000000000000000000 -T320230111111520356120070923WTTYWY0BZ22221222207308900000000120050907WTTPZ@W0P22221212207310900000000 -T12023011111152038622700408351120512111116300000000000008880400000000000000000000000000000000000222222000000002229072 -T2202301111115203861219930913WTT@PPZZT2221222222221012216110920023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111520386120130418WT@#TYZPB22212212204302100000000120120121WT@BT0#WY22222122204304100000000 -T320230111111520386120220923WT@0##0PY22222112204398100000000120190723WT@WZ@Z@922212212204398100000000 -T12023011111152047924700402991120233120000300000000000004170770000000000000000000000000000000000222222000000002229022 -T2202301111115204793219610721WTTPZ9YY#2222212122222012212110134713069900000000000000000000000000000000000000000000000000000000000000000000000997000000001599 -T320230111111520479120070504WTT@B@9#022212222206309100000000 -T12023011111152054122000405841120433120000300000000000004940530000000000000000000000000000000000222222000000342219022 -T2202301111115205413219720426WTT#TZT902122222222221012212110530711069939000000000000000000000000000000000000000000000000000000000000463500000000000000000673 -T320230111111520541420060912WT@PTZTY921222222204306100000033 -T320230111111520541120160305WTT0PP0P@21222222209398100000000120120418WT@BB#9YT21222222209303100000033 -T12023011111152055622000410221120212110611300000000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111115205561220010702WTT#Z#BBT2221222222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520556120210914WTT0Y9@0T22212212204398100000000 -T12023011111152056424200404891120212110557110350000000005280310000000000000000000000000000000000222222000000002229012 -T2202301111115205641219860218WT@Z9@9TW2222212222221012216110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520564120150701WT@W090##22212212204301100000000 -T12023011111152059322000412231120232120000300000000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111115205932219750913WTTZPWT@92222212222211012214120283213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111520593120140904WTT9W9P0022222112204302100000000 -T12023011111152062121700406141120313110740300000000000004770690000000000000000000000000000000000222222000000512219072 -T2202301111115206211219750513WTTW0TY#02222212222223012212110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111520621420090126WT@PTYZPB22222112104306107140330120060101WTTY090#W22222112204310100000330 -T12023011111152070724700402991120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111115207071219950912WTT9WZ0WZ2222211222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115207071219930426WTTT#0W9@2222212222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520707120190207WTT@0PPW022222112204398200000000 -T12023011111152079024900404261120313110835300000000000006540340000000000000000000000000000000000222222000000002229012 -T2202301111115207901219980912WTTYTBP@Z2222212222221012212110352523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520790120220413WTTZ#90PT22222112204398100000000120200101WT@0Y9Z0Z22222122204398100000000 -T12023011111152080522000408891120212110611113000000000003160240000000000000000000000000000000211122222000000012219012 -T2202301111115208051220000401WTT09W#@@2221222222221012212110253523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520805120180311WTTPTZBBY22212212204398100000000 -T12023011111152080622700408351120433110376300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111115208062219980422WT@YYBT9P2222222222221012208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115208062219920107WTT#009WY1222212222221102208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520806120220313WT@9TPY9W22222212204398100000000420190422WT@YYBT9P22222222204398900000000 -T12023011111152083423500408281120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115208341219950401WTT@TW#9P2222212222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520834120180304WT@Z@ZTTZ21222212204398100000000 -T12023011111152083824500405161120213110560104430000000005010360000000000000000000000000000000000222222002600012219072 -T2202301111115208381219870513WT@TT0WP#2222212222223012214110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111520838120160326WTTBWWZ9T22222122204398100000000 -T12023011111152091722000405321120213110599300000000000003160230000000000000000000000000000000211122222000000012219012 -T2202301111115209171219870907WTT990BBZ2222212222221012212110243623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111520917120160312WTTT@BZ@#22222112204398100000000 -T12023011111152092620800411991120232110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111115209262219820218WT@@WWW#W2222212122211012212110372313109900000000000000000000000000000000000000000000000000000000000000000000000489044500000000 -T320230111111520926120070108WTT#W0YZ#22122112204310100000000 -T12023011111152099924900404261120213110585300000000159104780110000000000000000000000000000000000222222000000502219012 -T2202301111115209991219820123WTT0Z#ZW02222212222225012213110124821011804000000000000000000000000000000000000000000000000000000000000019700000000000000000000 -T320230111111520999120120312WTT@ZPPT@12222112204303100000000 -T12023011111152129723500411471120423110959300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111115212971219890507WT@W0YB0@2222212222222011216290045623011800000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T2202301111115212971219810901WT@0W#PBT2222211222222021215290045623011800000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111521297120190709WTT0PPW9Z22222112204398200000000120160922WT@BBZWBY22222112204398200000000 -T12023011111152145720600414251120213110611300000000000005280570000000000000000000000000000000000222222000000002229012 -T2202301111115214571219950418WT@T@09B#2222212222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111521457120190104WTTWTP0@Y22222112204398100000000 -T12023011111152146722000412692120423210959300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111115214671219890512WT@PB#YWT2222211222222011298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115214671219920501WTT#PPZTT2222212222222021298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111521467120200723WTTPYW@0#22222112204398200000000120170507WT@0PTZZY22222112204398200000000 -T12023011111152147624200414351120233120000300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111115214763219900524WTTB9WZ#W2222212222221012212110144613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111521476120210127WT@9TPY9W22222112207398100000000 -T12023011111152155123500410681120333120000300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111115215513219530923WTT9PBWWB2222212122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001510000000000430 -T320230111111521551120130301WT@0T@TB022222122206301100000000120090118WTTZBP#WT22222112206306100000000 -T12023011111152170122000405841120512111116300000000000007710390000000000000000000000000000000000222222000000002229012 -T2202301111115217011219900713WT@Y#TBZW2221221222221012211110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115217012219890722WT@@ZP#Z#2222212222211102209190670013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111521701120140901WT@0YW#T#22222222204302100000000 -T320230111111521701120200414WTTYBT@P@22212222209398100000000120190911WT@0YWB0Z22222112204398100000000 -T12023011111152172722000407241120823111691300000000000012890100000000000000000000000000000000000222222000000002229012 -T2202301111115217271219780524WTTYP0P002222212222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115217271219780912WT@PBTBYT2222211222222021212290025823011800000000000000000004000000000000000000000000000000000000360000000000000000000000000000 -T320230111111521727120130902WT@YPTBW#22222112204303200000000120120111WT@B9T@Y@22222112204304200000000 -T320230111111521727120160301WTTWP90@Z22222122204398200000000120140921WTTZ#T#9#22222122204302200000000 -T320230111111521727120210726WT@T000YZ22222112204398200000000120190404WT@B9P9Y#22222122204398200000000 -T12023011111152178922000409871120313110786106520000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111115217891220020412WTT0P0#Z#2222222222225012210120164423010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111521789120210308WTTW9P09Y22212222204398100000000120180727WT@Y9ZTW@22212222204398100000000 -T12023011111152186424200414021120323110786300000000000003920130000000000000000000000000000000261122222000000012219012 -T2202301111115218641219780308WTT0BZW0Z2222211222221011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115218641219940324WT@PP@#P#2222212222221011212190035723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111521864120210327WT@@@PZPW22222112204398100000000 -T12023011111152204824200404051120332110723300000000000004170930000000000000000000000000000000000222222000000002229022 -T2202301111115220482219910723WT@#9YZ0Y2221222222211012214120006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111522048120150502WT@@0Z0Y@22212212204302100000000420110327WT@Y@T0YB22212222104304108220000 -T12023011111152212424900404261120412110893300000000000007710280000000000000000000000000000000000222222000000002229072 -T2202301111115221241219850109WTTZ#BPT@1222222222223012210111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522124120060301WTTYWT#T@12222112204308100000000 -T320230111111522124120120527WTTT@B0BW12222112204303100000000120100723WT@#T#T@012222122204304100000000 -T12023011111152214924200404701120313110575300000000000003920270000000000000000000000000000000261122222000000012219012 -T2202301111115221491219850923WT@0#T9TY1222222222221012210110342623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522149120150714WTTT0BYB@12212212204398100000000120050527WT@ZP9Y##12212222204311100000000 -T12023011111152215324700402991120213110611119990000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111115221531219890313WTT0YP@9B2222212222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522153120220904WTTT#YT9922222112204398100000000 -T12023011111152229322000404841120413111034118830000000007710240000000000000000000000000000000000222222000000002229012 -T2202301111115222931219820414WTTW#B@##2222222222225012213120441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522293120070212WTTBTBZWP22222212204308100000000 -T320230111111522293120180409WT@P9PZP#22212222204398100000000120090127WT@PTBTYB22222212204306100000000 -T12023011111152236724700409321120213110611114720000052805280280000000000000000000000000000000000222222000000002229012 -T2202301111115223671219940421WT@PYBY9@2221222222221012212110283221011737000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111522367120200412WTTZPZBYW22212212204398100000000 -T12023011111152241422700401571110433110740300000000071105280080000000000000000000000000000000000222222000000002229021 -T2202301111115224142219860707WT@ZTW#TW1222222222225012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522414120070123WTTPWPTPP12222222204309100000130 -T320230111111522414420160512WTTZP0YBP12222112104398109140000120090204WT@T9@YTY12222212204307100000130 -T12023011111152247322000406191120433110598300000000000005280160000000000000000000000000000000000222222000000002229022 -T2202301111115224732219890305WT@YYBT9P2222222222222012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115224732219820518WT@@WT@992222221222222022298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522473120220911WT@9B9YY#22212212204398100000000120210714WT@Y9ZZ9022212222204398100000000 -T12023011111152250924500405941120213110611300000000000005010380000000000000000000000000000000000222222002600012219012 -T2202301111115225091219950707WTT90BW9#2222212222221012216110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522509120120913WTT0T99WT22222122204304100000000 -T12023011111152252220800410751120413111034300000000000005890740000000000000000000000000000000000222222000001822219072 -T2202301111115225221219840107WTT09T0ZW2222212222221012212110750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000181 -T320230111111522522120060514WT@Z#0ZZP22222112204309100000000 -T320230111111522522120110212WT@T9#YBB12222112204303100000000120070218WTTZZWPT912222222204308100000000 -T12023011111152256022000410051120313110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111115225601219610722WT@BWT9TZ2222121222222012212990322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115225601219730307WT@YW0WP#2222122222222022212990322823099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522560120130109WT@BPZ0ZW22221212204303100000000 -T12023011111152262621400408021120233110524300000000000004170670000000000000000000000000000000000222222000000002229022 -T2202301111115226262219910927WTT#ZPW#Y2222212122215012210110006013109900000000000000000000000000000000000000000000000000000000000000000000000066086800000000 -T320230111111522626120090918WT@@@YZP022222122204307100000000 -T12023011111152268922000406271110412110951300000000000303280490000000000000000000000000000000355122222000002052219072 -T2202301111115226891219830426WTTY0ZTZ91222222222222012211110620023011200000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111522689120110413WT@P09ZZ#12212212204304100000000 -T320230111111522689120150323WT@@T9@T912212222204398100000000120120918WTT@0@TW912212212204303100000000 -T12023011111152269823500411471120623111395300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111115226981219890704WTT#09ZBZ2222211222222011215290114923011800000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T2202301111115226981219870111WT@9T9BT02222212222222021213290114923011800000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111522698120100502WT@99B@W@22222122204305200000000120080713WT@PYZ09W22222112204306200000000 -T320230111111522698120130127WT@PB#BB#22222122204301200000000120110111WTTBBPPTY22222112204303200000000 -T12023011111152270824200402501120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111115227081219780307WT@9YZ#TT2222212222221012212121650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522708120130407WTTBTZ#PT22222122204302100000000 -T12023011111152274923700414331120233110376300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111115227492219850924WT@YYBT9P1222212222223012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522749120190518WTTP9#9@P12222112204398100000000 -T12023011111152278922700413181120333120000300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111115227893219660123WT@Y9WW9B2222212222222012212110352513069900000000000000000000000000000000000000000000000000000000000000133300000000000000000000 -T320230111111522789120140718WT@00WPY022222122206301100000000120100923WT@0WPW@B22222122206305100000000 -T12023011111152283422000406271120612111269300000000000007560350000000000000000000000000000000252222122000000012219072 -T2202301111115228341219860223WT@YPYB0B2221222222221012212121490023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111522834120060505WT@Z0PB0922212212204310100000000 -T320230111111522834120090918WT@0YP9ZP22212222204307100000000120080712WTTPYWZZ022212222204307100000000 -T320230111111522834120210901WTTZP#PW922212212204398100000000120100926WT@Z9W#@#22212212204306100000000 -T12023011111152299822000409971120313110740300000000000000010030000000000000000000000000000000000222222000000002229012 -T2202301111115229981219810326WTTTWZPZY2222121222225012215110035711011800220000000000000000000000000000000000000000000000000000060000160900000000000000000000 -T320230111111522998120120327WT@ZTTP9022221212204304100000000120100113WTTPP0ZP#22221222204306100000000 -T12023011111152303123500407611120233120000300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111115230313219600723WT@PB0BYY2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523031120080926WT@9999PZ22222112206308100000000 -T12023011111152303625100407671120333110611300000000180005280080000000000000000000000000000000000222222000000002229022 -T2202301111115230362219710209WT@YYBT9P1222221222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523036120110121WTTY##YWZ12222212204305100000000120080726WT@WW#YP#12222212204307100000000 -T12023011111152306820400408771120313120000300000000227206540320000000000000000000000000000000000222222000000002229012 -T2202301111115230681219920707WTT@@W@WP2222212222223012212110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523068120180109WTTPW@#WT22222112204398100000000120170113WT@#Y90@Y22222122204312100000000 -T12023011111152320122000408892110623211339300000000000008780010000000000035001000000000000000000222222000000002229032 -T2202301111115232011219870512WT@@TTTYY2221221222222011298290025822011900000000000000350000000000000000000000000000000000000000050000000000000000000000000000 -T2202301111115232011219880912WT@TPW0P92222222222222021298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523201120150208WT@9B@@B#22222222204398200000000120120123WT@WTZBZB22222222204398200000000 -T320230111111523201120180307WT@P0PZBY22222212204398200000000120170423WTTY0B#WP22222222204398200000000 -T12023011111152323024700401281120212110598300000000060005280050000000000000000000000000000000000222222000000002229012 -T2202301111115232301219910207WT@T9P9W02222212222221012216110441623011800000000000000000000000000250000000000000000000000000000000000000000000000000000000000 -T320230111111523230120160309WTT9P#99022222112204398100000000 -T12023011111152326024700409321120523110789300000000000008880110000000000000000000000000000000000222222000000002229012 -T2202301111115232601219970923WT@9TPY9W2222211222222011212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115232601219990405WT@9TPY9W2222212222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523260120170712WT@9TPY9W22222112204398200000000 -T320230111111523260120210501WT@9TPY9W22222112204398200000000120180312WT@9TPY9W22222112204398200000000 -T12023011111152326620300410341120213110598300000000083605280090000000000000000000000000000000000222222000000002229012 -T2202301111115232661219860418WT@TYZZY#2222211222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523266120160924WTT#WZ09T21222112204398100000000 -T12023011111152327624200407271120212110376300000000000002500310000000000000000000000000000000166122222000000012219072 -T2202301111115232761219780307WTTT9B#W#2122222222221012216111180023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523276520090112WT@0BP0PB21222212204307100000000 -T12023011111152331222000403351120432110939300000000000006540320000000000000000000000000000000000222222000000002229022 -T2202301111115233122219700923WTTBY9B@02222222222213012209110790013089900000000000000000000000000000000000000000000000000000000000000000000000000073300000000 -T320230111111523312120060211WTT0#@P@T22222212204309100000000 -T320230111111523312120130118WT@WZ90PW22222222204301100000000120090713WT@Z#09B#12222212204304100000000 -T12023011111152345825900406651120213110493300000000000005280040000000000035006000000000000000000222222000000002229072 -T2202301111115234581219770107WTTYPTZY91222222222225012211120690023011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111523458120060412WTTZ9#P@012222222204309100000000 -T12023011111152347524200404891120423110835300000000000004620360000000000000000000000000000000308122222000000012219072 -T2202301111115234751219840711WTT@BTW@Z2221222222221011210111110023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115234751219830227WT@Y##WTW2221221222221011211190105023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523475120210913WT@ZPP@YZ22222212204398100000000120200427WTTW999P#22222212204398100000000 -T12023011111152350022000407791120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115235003219700318WT@P0@Y@B2221222222221012213110015911069901000000000000000000000000000000000000000000000000000000000000599700000000000000000000 -T320230111111523500120080223WTT99@9@Y22212222207308100000000 -T12023011111152361123900400641120313110740300000000000005280770000000000000000000000000000000000222222000000002229072 -T2202301111115236111219820918WT@@#0B#B2222212222221012212120780023010600000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T320230111111523611120180927WT@9BZ9T@22222122204398100000000420090412WTT0WZ0W@22222122104307109140000 -T12023011111152372521700406141120232110516300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111115237253219630427WTT@#PY9@2222212122211012210110640013069900000000000000000000000000000000000000000000000000000000000000000000000865006900000000 -T320230111111523725120140218WTT@TTY@922222122206301100000000 -T12023011111152374322000410221120523111116300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111115237431219700213WTTT#ZPZ02222211222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115237431219730104WTTTZP@002222212222222021213290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523743120100102WT@ZZ0@BP22222112204308200000000 -T320230111111523743120170726WTTWTT@#022222112204398200000000120130426WT@0ZYY0T22222112204303200000000 -T12023011111152381722000413731120613111395127710000182210090100000000000000000000000000000000000222222000000002229012 -T2202301111115238171219860405WT@TYTT#B2222122222224012214210105023010100000000000000000000000000000000180002000000000000000000010000000000000000000000000000 -T320230111111523817120120723WTT##Y#Y#22221212204303200000000 -T320230111111523817120160723WTT0@@TZP22122212204398200000000120130713WTT9BYZ@@22221212204303200000000 -T320230111111523817120220318WTT9PZZZ022222112204398100000000120190427WT@BTZW0W22221222204398200000000 -T12023011111152382223900408291120323110835300000000110005100210000000000000000000000000000000000222222000001442219042 -T2202301111115238221219820402WTTYT#0@Z2122222222222011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000143 -T2202301111115238221219660923WT@#Y0#@@2122221222222021212190095121011941000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T320230111111523822120200423WTTZ99W@W21222222204398100000000 -T12023011111152384422700408351120333110412300000000000005280260000000000000000000000000000000000222222000000002229022 -T2202301111115238442219870414WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523844120190904WT@#9Z@B#12222212204398100000000120140923WTTY##90012222212204302100000000 -T12023011111152384724200403511120233110537300000000000704170640000000000000000000000000000000000222222000000002229022 -T2202301111115238472219770304WTTTYB#991222222222211012211112200013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111523847120100712WTT@@@W0Y12222212204305100000000 -T12023011111152389824200414851120333110704300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111115238983219570714WT@ZWWZ0#2222212222225012212110085211069973000000000000000000000000000000000000000000000000000000000000261300000000000000000000 -T320230111111523898120080918WTTTTP9ZT11222212206309100000000120060501WT@WT9P@911222212206310100000000 -T12023011111152393822000407241120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111115239381219990927WTT0#Y#P@2222212222222011216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115239381219940421WTTZBTZ@02222211222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111523938120210912WTT#ZY#9Y22222112204398200000000 -T12023011111152400525900402721120413110826300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111115240051219990523WT@WT#PPP1222212222221012212290035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115240052219980321WT@YYBT9P1222211222221102209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524005120220312WT@9TPY9W12222222204398100000000120180926WT@@WPWPB12222222204398100000000 -T12023011111152418420200410361120522111116300000000000008880330000000000000000000000000000000000222222000000002229012 -T2202301111115241841219880712WTT#YBZY02222212222221011211110154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115241841219870312WTT@T@9B02222211222223011212190481223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524184120200521WTT9ZB##W22222122204398100000000 -T320230111111524184120210102WTT@9#Y9T22222112204398100000000120210102WT@YTY9ZW22222112204398100000000 -T12023011111152420720800414651120313110740116750000000004750060000000000000000000000000000000000222222005200012219012 -T2202301111115242071219910107WT@ZB9@T#2222212222223012212120312921011739000000000000000000000000000000000000000000000000000000080000264700000000000000000000 -T320230111111524207120180313WT@W#BZZP22222122204398100000000420170426WT@##@0BW22222112104398109140000 -T12023011111152430821000403201120313110740300000000000000010310000000000000000000000000000000000222222000000002229012 -T2202301111115243081219840404WTT0BP99Y2212222222221012212110421811011803210000000000000000000000000000000000000000000000000000170000148200000000000000000000 -T320230111111524308120100111WTTZ@Y#9Y12122222204307100000000120060514WT@#B@Y0#12222212204311100000000 -T12023011111152439225000406021120212110611300000000008005010140000000000000000000000000000000000222222002600012219012 -T2202301111115243921219840424WTTP@9##Z1222222222221012212210154521011817000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524392120080912WT@#WWY#912222222204309100000000 -T12023011111152449922000412691120433110939300000000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111115244992219730421WTTY9TB#W1222221222215012210110850013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111524499420080926WT@0@PPW911222212104307109140000 -T320230111111524499120170401WTT90P#Z@21222212204398100000000120110407WT@#T@T#T11222222204304100000000 -T12023011111152454023500410671120523111116300000000005008880110000000000000000000000000000000000222222000000002229012 -T2202301111115245401219840712WTTPWTTY92222212222222011212210114922011900000000000000350000000000000000070001000000000000000000120000000000000000000000000000 -T2202301111115245401219770307WT@9TPY9W2222221222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524540120060118WT@W#9@ZT22222122204310200000000 -T320230111111524540120120418WT@#ZBY#T22222112204304200000000120070707WT@9TPY9W22222112204308200000000 -T12023011111152455822000405321110212110611300000000000001020010000000000000000000000000000000000222222000000002229012 -T2202301111115245581219930323WT@90T#@W2221222222223012214110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524558120190108WTTT9W9##22212212204398100000000 -T12023011111152460623500411471120213110611300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111115246061219890301WT@BBYZWT2222212222223012212110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524606120090902WT@TB9@#@22222122204307100000000 -T12023011111152460922000405321120232110493300000000070004170990000000000000000000000000000000000222222000000002229022 -T2202301111115246092219650102WTTYTPTTP2222212222215012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111524609120040404WT@B@PTB922222122204311100000000 -T12023011111152463721000405411120422110939300000000052800350590000000000000000000000000000000000222222000007362219072 -T2202301111115246371219840502WTTWYZPY92222222222222011216110690021011800210000000000000000000000000000000000000000000000000000190000130900000000000000000075 -T2202301111115246371219790312WT@WP##B92222221222222021216190600023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524637120110121WTT#0PWYT22222222204304100000000120050305WTT0@##ZZ22222212204310100000000 -T12023011111152471324200403941120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111115247131219860312WTT#PBBY02222212222221012214210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524713120170104WT@ZT90#@22222122204398200000000 -T12023011111152481522000406951120322110778300000000228306540160000000000000000000000000000000000222222000000002229012 -T2202301111115248151219930318WTT0PZWWY2222212222221011212190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115248151219820712WTT#00PZ#2222211222225011216190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524815120200526WTT0@T@#922222122204398100000000 -T12023011111152483122000411281110312110772300000000190102040680000000000000000000000000000000000222222000003242219072 -T2202301111115248311219910426WTTZ@Z9WB2221222222221012212110840023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524831120140326WTTWWY0@922212212204301100000000420120427WTT9PZTWP12212222104304109140000 -T12023011111152483522000414461120233120000120730000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111115248353219780101WTT#T0WZY2221222222222012211110510911069919000000000000000000000000000000000000000000000000000000000000154700000000000000000000 -T320230111111524835120170727WT@@W909T22212222206398100000000 -T12023011111152498424200414851120233120000300000000000004170770000000000000000000000000000000000222222000000002229022 -T2202301111115249843219750113WT@@Z@ZYW2222122222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524984120060313WT@WTWY@Y22221222207309100000000 -T12023011111152499722700408351120212110598300000000025005280530000000000000000000000000000000000222222000000002229072 -T2202301111115249971219820518WT@W9WT#T2222211222221012212110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111524997120060423WTTW909T922222122204311100000000 -T12023011111152511322000403531120212110611117430000006405010130000000000070003000000000000000000222222002600012219012 -T2202301111115251131219950407WTTZWY#P@1221222222221012212110144621011816000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525113120180918WT@@9#YZP12212212204398100000000 -T12023011111152512624700413761120233110376300000000000001030350000000000000000000000000000000000222222000003142219022 -T2202301111115251262219820226WT@YYBT9P1222222222223012206910006011079911000000000000000000000000000000000000000000000000000000000000084800000000000000000000 -T320230111111525126120120427WT@PP0Z@912222112204304100000000 -T12023011111152514224200403942110323210740300000000000002740010000000000000000000000000000000000222222000000002229032 -T2202301111115251421219930313WT@PP9TPT2222212222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115251421219850408WTTB@#@@Y2222211222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525142120210923WT@P9T#WW22222122204398200000000 -T12023011111152521124700413891120313110835113490000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115252111219880327WT@0P09@92222212222221012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525211120210313WTT@YBP@022222112204398100000000120190501WT@##P9YT22222122204398100000000 -T12023011111152522122000406271120313110835300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111115252211219780105WT@BW@BZB1222222222221012298210124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525221120120412WT@YBZTB@12222222204304200000000120090104WTTTTYW@912222222204306200000000 -T12023011111152534524700402991120333110670300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111115253453219840123WTTTW9TT@2222212222221012213110055511069940000000000000000000000000000000000000000000000000000000000000251500000000000000000000 -T320230111111525345120100923WTTPZ0ZWY22222112207306100000000120080127WT@#ZP@PZ22222122207308100000000 -T12023011111152538425900402631120633111116300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111115253842219780713WT@YYBT9P1222222222223012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525384120040921WT@99TY9Y12222222204310100000000 -T320230111111525384120130412WT@WY@Y@#12222212204301100000000120110913WTTPYTT#P12222212204304100000000 -T320230111111525384420090304WTT9BTT#P22222112104304109140000120060705WT@P0TB0#12222222204307100000000 -T12023011111152539621000414221120213110516300000000000501590470000000000000000000000000000000000222222000002582219012 -T2202301111115253961219840118WTTT9ZYW@2222212222221012213110481221011807000000000000000000000000000000000000000000000000000000000000051600000000000000000000 -T320230111111525396520170224WT@Y900B@22222112104398109140006 -T12023011111152546422000405321120313110761130880000000006210180000000000035001000000000000000000222222003200012219012 -T2202301111115254641219950313WTTP@0PZB2222212222221012212110510923011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111525464120200323WTTPB0Y0W22222112204398100000000120170326WT@ZB9Y0P22222122204398100000000 -T12023011111152554025800404101120213110598300000000000005280160000000000000000000000000000000000222222000000002229042 -T2202301111115255401219910204WT@W0@9Y@1122222222223012212110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000192 -T320230111111525540120200322WT@W#0W9P11222222204398100000000 -T12023011111152556824500405781120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115255682219820113WT@TBTZ#P2222212222211012212110243613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111525568120090223WTT@#ZW0P22222112204305100000000 -T12023011111152558923500407161120313110835300000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111115255891219900112WTTPBWWTW2222212222225012211120134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525589120210201WT@TP0YZB21222212204398100000000120190908WT@@@B#WY22222112204398100000000 -T12023011111152565223700414331120233120000300000000000004170840000000000000000000000000000000000222222000000002229022 -T2202301111115256523219840914WTTZ0P0PT2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525652120130904WTTZBYY#W22222122207304100000000 -T12023011111152567221700409521120213110493300000000185005280040000000000000000000000000000000000222222000000002229012 -T2202301111115256721219800301WT@PT@ZT@2222212222223012212110213923011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111525672120070412WT@9WBYTB22212112204309100000000 -T12023011111152583224200414351120513111116122750000009508880560000000000000000000000000000000000222222000000002229012 -T2202301111115258321219890401WTTB#ZW9B2221222222223012212110510921011727000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525832120140426WT@9B0Y@B22212222204302100000000120100905WT@0BW@TT22212212204306100000000 -T320230111111525832120210709WT@T99B0W22212222204398100000000120150205WTTZ@PYTP22212212204301100000000 -T12023011111152583724200414721120212110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111115258371219870921WT@0W#BYZ2122222222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525837120160927WT@#9ZWPW22212212204398100000000 -T12023011111152588722000409411120513111116118330000000008880290000000000000000000000000000000000222222000000002229072 -T2202301111115258871219930712WT@9@9#W#2221212222221012212110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525887120160412WTTYB9Y9Y22212212204398100000100120120523WT@0W9WW922212212204304100000000 -T320230111111525887120180927WT@#9YB9922212222204398100000000120170408WTTBPB9BZ12212212204398100000000 -T12023011111152591422000408891110413111034300000000000007710260000000000000000000000000000000000222222000000002229012 -T2202301111115259141219930512WTT@BWPYT1221222222221012210110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525914120120701WTTPBPWY#21212112204302100000000 -T320230111111525914120180926WT@0Z0@@Z12212212204398100000000120140304WT@Y00BBP22222222204301100000000 -T12023011111152599022000408891120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115259901219950712WTTBYZB9Y2121211222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111525990120140326WT@TZZZ#W22212122204301100000000 -T12023011111152606322000411981120213110611300000000045005280030000000000070002000000000000000000222222000000002229012 -T2202301111115260631219850211WT@@BW9YZ2222212222221012212110035721011722000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111526063120170418WT@WT9T9022222112204398100000000 -T12023011111152620223500410672120323210835300000000070003040070000000000000000000000000000000000222222000003502219032 -T2202301111115262021219940918WTTYB@ZPW2222211222222011213290085223011800000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T2202301111115262021219940707WT@9TPY9W2222212222222021212290085223011800000000000000000000000000000000000000000000000000000000150000000000000000000000000350 -T320230111111526202120190427WT@9TPY9W22222122204398200000000 -T12023011111152645224200406011120333120000300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111115264523219790708WT@ZZ@9B92222212222221012213110194111069942000000000000000000000000000000000000000000000000000000000000373200000000000000000000 -T320230111111526452120110418WT@T#9ZZW22222122208306100000000120070913WTTPPZP#922222112208310100000000 -T12023011111152648625200414061120113110376300000000000002500050000000000000000000000000000000166122222000000012219012 -T2202301111115264861219940412WTT0P0WB@2222212222221013211190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111152650124200414851120422110910300000000093504620150000000000000000000000000000000308122222000000012219042 -T2202301111115265011219710112WTTZ#ZZTT2222211222222011213290184223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115265011219720908WT@90#BTP2222212222222021214190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111526501120090118WT@ZT#BPB12222112204306100000000120050104WTTB0BZ9012222112204310100000000 -T12023011111152662125600413441120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111115266211219960918WT@YZT9002222122222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111526621120170121WT@P@W9BT12221212204398100000000 -T12023011111152668125900406841120313110820300000000020003560030000000000000000000000000000000000222222000002982219042 -T2202301111115266811219900923WTTZT@ZTB1222222222225012211110015921011809000000000000000000000000000000000000000000000000000000000000059500000000000000000000 -T320230111111526681120130712WTT#T#Y#Y12222212204303100000000120080426WT@Z@YPYT12222212204308100000000 -T12023011111152673222900405641120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115267323219590301WTT@YT@T@2222212222225012212110006011069940000000000000000000000000000000000000000000000000000000000000293500000000000000000000 -T320230111111526732120050226WTTBWPYZB22222112206310100000000 -T12023011111152680324200410001120413110939300000000001107710990000000000000000000000000000000000222222000000002229072 -T2202301111115268031219870422WTTZ9#TB#2222222222221012212111020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111526803120130923WT@YBW9BP22222212204301100000000 -T320230111111526803120170708WTTWW##T022222222204398100000000120160123WTTP#0@9Y22222222204398100000000 -T12023011111152686325600411521120113110376300000000000004170300000000000000000000000000000000000222222000000002229012 -T2202301111115268631219930405WT@T@ZB#Z2222212222225013216110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111152686524100402401120213110576300000000000505280200000000000000000000000000000000000222222000000002229012 -T2202301111115268651219990123WT@WY0B@W2222212222221012209110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111526865120220426WTTYTWY0Z22222122204398100000000 -T12023011111152689424200405922120423210939300000000000007710060000000000000000000000000000000000222222000000002229032 -T2202301111115268941219810112WT@#@YY@W2222221222222011212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115268941219860104WT@Y@9W002222212222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111526894120180311WT@0T#P#Z22222112204398200000000120140211WT@P@ZW#Y22222122204301200000000 -T12023011111152699223500407611120213110611108360000002005280380000000000000000000000000000000000222222000000002229012 -T2202301111115269921219940513WTTBYBP0T2221212222221012212110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111526992120200427WT@WWWZBT22222112204398100000000 -T12023011111152711625100407671120213110598300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111115271161219910221WTTWWW#BW2222211222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527116120140427WTTWW9#WY22222112204301100000000 -T12023011111152714323500402711120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115271433219610308WTTTPP#992222212222222012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527143120090313WTT@BWT@@22222112206305100000000 -T12023011111152720020600414161120212110611300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111115272001219880205WTT0BZB0Y2222211222225012212120580223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111527200120100321WTTW#@WZZ22222112204306100000000 -T12023011111152722725900402631120333120000300000000000005280780000000000000000000000000000000000222222000000002229022 -T2202301111115272273219680726WTTBY#YYT1222212222221012216110105011069937000000000000000000000000000000000000000000000000000000000000321100000000000000000000 -T320230111111527227120190414WT@@9T9#W12222112206398100000025120170502WT@#0@W9@12222112206398100000025 -T12023011111152722924200410371120413110959300000000000007710810000000000000000000000000000000000222222000000002229012 -T2202301111115272291219870427WTT#W9@P92222212222225012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527229120070308WTT@W#W0@22222122204308100000000 -T320230111111527229120200324WTTZ@@90@22222122204398100000000120110102WT@WY#9Z#22222122204304100000000 -T12023011111152727922000411551120233120000300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111115272793219840724WT@T9@Z@92222211222221012212110006013069900000000000000000000000000000000000000000000000000000000000000396000000000000000000000 -T320230111111527279120140718WTT#ZP#@@22222112208303100000000 -T12023011111152731120200409311120233110396300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111115273112219890912WT@YYBT9P1222222222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527311120220122WT@#WW#ZW12222112204398100000000 -T12023011111152745723500410671120413110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111115274571219910707WT@W@@ZWP1222212222221012203110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527457120140307WT@T00YB922222122204301100000000 -T320230111111527457120180502WTTPWB90W22222122204398100000000120160726WT@#W0ZPY22222122204398100000000 -T12023011111152746421000411361120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115274641219900905WTT9Z9#Y92222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527464120060902WT@00Y@@922222112204308100000000 -T12023011111152749322000400591120233110376300000000000004170630000000000000000000000000000000000222222000000002229022 -T2202301111115274932219980426WT@YYBT9P1222222222221012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527493120160418WT@T@@0PZ12222112204301100000000 -T12023011111152756622000405841120323110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115275661219690118WTTB9W09@2222211222221011212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115275661219920104WT@BBPPBP2222212222221011212190055523011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111527566120200323WTTB#Z9B#22222122204398100000000 -T12023011111152764324100402401120233110493300000000000004170770000000000000000000000000000000000222222000000002229022 -T2202301111115276433219690113WT@P@B9YY1222212222222012212110015913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527643120050512WTTBPY#9012222122206311100000050 -T12023011111152767924200402981120513111199300000000080008880060000000000000000000000000000000000222222000000002229012 -T2202301111115276791219830701WT@TPY##@2222212222223012213110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000574 -T320230111111527679120100322WTTYPWWW#22222112204306100000000120050418WT@WBPWP922222112204312100000000 -T320230111111527679120170212WT@ZTWPZW22222122204398100000000120150701WTTZB9@0@22222112204398100000000 -T12023011111152769623500405271120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111115276961219870727WT@9YYZY#1222212222222011213190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115276961219850904WT@#PTT9T2222211222222011212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527696120160913WT@#9YPP022222122204398100000000120060423WT@W@ZZTT12222122204310100000000 -T12023011111152771624200408571120413110968300000000017407710300000000000000000000000000000000000222222000000002229012 -T2202301111115277161219790418WT@0B@BW92222212222225012212110312921011800060000000000000000000000000000000000000000000000000000010000032900000000000000000775 -T320230111111527716120110704WT@##9@#T22222112204304100000000 -T320230111111527716120150102WT@YPYPZ#22222112204398100000000120150102WTTBPPTY922222112204398100000000 -T12023011111152786920600402131120213110598300000000000005280830000000000000000000000000000000000222222000000002229072 -T2202301111115278691219850201WT@B#P9Z#2221222222225012212110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527869120180223WTTZP000W12212222204398100000000 -T12023011111152787522000408561120313110796300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111115278751219980902WTTYY#B0Y1221222222221012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111527875120210714WT@W@YBWW12212222204398100000000120150726WT@YPZ@P912212212204302100000000 -T12023011111152791825900403711120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115279182219720213WTT0ZPBWP2222212222214012212110293113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111527918120060714WT@0WYW0T22222122204309100000000 -T12023011111152793323900406231120333120000300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111115279335219660923WTTZZBYT02222211122222012212110006013109900000000000000000000000000000000000000000000000000000000000000000000002314000000000000 -T320230111111527933120130301WT@YBWBPY12222112208301100000000120080107WTT#Z9Y@#12222122208306100000000 -T12023011111152799824200404701120312110835300000000005506540020000000000070001000000000000000000222222000000002229012 -T2202301111115279981219920223WTT09TZPT2221222222225012212110293123011800000000000000000003000000000000000000000000000000000000180000000000000000000000000000 -T320230111111527998120170223WTTY0P#T022212222204398100000000120110927WTTTBY@W022212222204305100000000 -T12023011111152806425000413201120233110611300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111115280643219690123WTT9P@WYY1222222222225012207110095113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528064120160107WTTTPZP#W12222212206398100000000 -T12023011111152811724200409591120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115281171219910208WTTZYY9Z92222212222221012209110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528117120150127WTT@YY@YP22222112204398100000000 -T12023011111152818124200408391110423110939300000000000003230010000000000000000000000000000000000222222000000002229012 -T2202301111115281811219930907WT@9TPY9W2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115281811219960726WT@9TPY9W2222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528181120200704WT@9TPY9W22221112204398200000000120170713WT@9TPY9W22222112204398200000000 -T12023011111152822524500405781120333110760300000000000005280900000000000000000000000000000000000222222000000002229022 -T2202301111115282253219620411WT@@BY0#92222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001613000000000000 -T320230111111528225120110923WTTBB@#B@12222122206305100000000120080101WT@PBWTT912222112206307100000000 -T12023011111152828025600411521120213110618300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111115282801219930708WTT0P9T9W2222112222221012212110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528280120180304WT@#T90@Z22222122204398100000000 -T12023011111152828123500411471120213110516300000000000300080250000000000000000000000000000000211122222000003092219012 -T2202301111115282811219880412WTTZ0P0TZ2222212222221012213110402023010200000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111528281120080905WT@@0TY9B22222122204308100000000 -T12023011111152830222000400591120323110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111115283021219990107WT@9TPY9W1222222222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115283021219890727WT@9TPY9W1222221222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528302120200718WT@9TPY9W12222122204398200000000 -T12023011111152832020400408271120423110858300000000080004620160000000000000000000000000000000308122222000000012219012 -T2202301111115283201219750723WTTPZZ#002222211222222011214190055523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115283201219910405WT@9@#Y9@2222212222222021213190085223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528320120210718WT@0B##Z022222212204398100000000120200201WT@T##P0W22222112204398100000000 -T12023011111152839022000411551120313110704300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111115283901220010113WTTZPTBTZ2222222222221012211110204023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528390120220509WT@9Z0#WB12212222204398100000000120200712WTTTYP0Y@12222212204398100000000 -T12023011111152839624500405781120233110278300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111115283963219590223WT@@99WZ#2222222122222012212110085213069900000000000000000000000000000000000000000000000000000000000000000000001182000000000079 -T320230111111528396120080404WT@BYW#YZ12222122206308100000000 -T12023011111152841424700408301120533111057300000000000007710770000000000000000000000000000000000222222000000002229022 -T2202301111115284143219900712WTTP09P0Y2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528414120100523WT@B099#@12222112207305100000025120060321WTT#P@TPW12222122207308100000025 -T320230111111528414120130712WT@@@P9WP22212212207301100000025120120326WTTT9@@@@22222112207302100000025 -T12023011111152853125900402831120213120000300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111115285311219840701WTTT00ZY02222212222221012212110134723011400000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111528531120210326WTTBZ9YTB22222122204398100000000 -T12023011111152853220600414871120212110611300000000010005280090000000000000000000000000000000000222222000000002229072 -T2202301111115285321219810404WTTY0B0B02222212222225012212110690023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528532120070307WTTYZPZYP22222112204307100000000 -T12023011111152853420600402141120233110516300000000015004170410000000000000000000000000000000000222222000000002229022 -T2202301111115285343219450402WTT9PBZY#2222212122224012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001595000000000000 -T320230111111528534120040308WTTPWPYZY21222222206312100000040 -T12023011111152858622000410221120232110611300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111115285863219620312WTTZB#Z0Y2221222222221012212110910013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000003 -T320230111111528586120100407WTTTZBY0P22212212206305100000000 -T12023011111152863923500411471120323110670300000000030004430100000000000000000000000000000000000222222000002112219012 -T2202301111115286391219590713WT@Y#WBZ02222211222222011212290114923011800000000000000000000000000000000000000000000000000000000220000000000000000000000000210 -T2202301111115286391219620212WT@YZT00P2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111528639120050911WT@#9TP@W22222112204309200000000 -T12023011111152867723700414331120433110611300000000000005280580000000000000000000000000000000000222222000000002229022 -T2202301111115286772219960104WT@YYBT9P1222212222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528677420160712WT@YYBT9P12222112204398900000000 -T320230111111528677120210911WTT0Y0W9912222112204398100000000120180423WT@YW9PTY12222122204398100000000 -T12023011111152888523500408281120323110835300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115288851219990711WT@9TPY9W2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115288851219970912WT@9TPY9W2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528885120210727WT@9TPY9W22222112204398200000000 -T12023011111152892022000403531120212110611300000000061905280890000000000000000000000000000000000222222000000002229072 -T2202301111115289201219910512WT@90P90P2222222222221012207110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111528920120100423WTT@W@YW#22222212204305200000000 -T12023011111152897225600414971120333110740110150000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111115289723219650418WTT@Y#W#W2222212222225012212110006011069933000000000000000000000000000000000000000000000000000000000000242700000000000000000000 -T320230111111528972120150212WTTB0T0P#12222122206301100000000120130107WT@9BYP0@12222122206301100000000 -T12023011111152909723500407162120423211034300000000000007710080000000000000000000000000000000000222222000000002229032 -T2202301111115290971219790421WTT#B99#P2222212222222011212290095123011800000000000000180000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111115290971219740102WT@W090#T2222211222222021212290095121011806000000000000180000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111529097120100705WT@Z0Z9YB22222112204307200000000120040311WT@ZZYYB#22222122204311200000000 -T12023011111152910924200410212120113210376300000000000004170050000000000000000000000000000000000222222000000002229032 -T2202301111115291091219990704WT@B@YY0Z2221222222221013205990065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111152914624200406251120113110396300000000000104170020000000000000000000000000000000000222222000000002229012 -T2202301111115291461220010322WT@W#TZY92222122222223013213190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111152918825200400791120233120000300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111115291883219650413WTT0BZ@0B2222212222222012210110006011069936000000000000000000000000000000000000000000000000000000000000234100000000000000000000 -T320230111111529188120090109WT@000YPT12222122206306100000000 -T12023011111152935824900404261120212110595300000000122405280770000000000000000000000000000000000222222000000002229072 -T2202301111115293581219790327WT@@9#0B91222222222225012213110780023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111529358120090726WTTP9WZP#22222222204307100000050 -T12023011111152943824200407431120213110516300000000010005280020000000000000000000000000000000000222222000000002229012 -T2202301111115294381219760323WT@Y#0PTT2212222222225012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529438120080711WTTYPT99Y22122212204308100000469 -T12023011111152946224200404701120213110598300000000004505280030000000000000000000000000000000000222222000000002229012 -T2202301111115294621219900107WT@WT9@YB2221222222221012213110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529462120190323WT@PP0BZ@12212222204398100000000 -T12023011111152949120800410751110213110611300000000000004930240000000000000000000000000000000000222222000000352219012 -T2202301111115294911219960202WTT##PTW92222212222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529491120180313WT@#YP0P#12222112204398100000000 -T12023011111152950920800404431120233110518300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115295092219860918WTTTT@@YW2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000935 -T320230111111529509120080313WT@#TZ0Z@22222112204308100000000 -T12023011111152954520600400801120213110532300000000010102810280000000000000000000000000000000000222222000002472219012 -T2202301111115295451219660312WTT@ZTZ9#2222211222225012216110431721011816000000000000000000000000000000000000000000000000000000000000098600000000000000000000 -T320230111111529545120070713WTTT#PWY#22222112204308100000000 -T12023011111152958523900408801120312110835110560000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111115295851219810224WT@0T@YWY2222212222223012216110055521011735000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529585120210202WT@##YWBT22222122204398100000000120130704WT@P090YZ22222112204303100000000 -T12023011111152963325000413201120312110785300000000000006540760000000000000000000000000000000000222222000000002229072 -T2202301111115296331219820404WTTW09BWZ1222222222223012212110780023011800000000000000000000000000000000130000000000000000000000000000000000000000000000000000 -T320230111111529633120170113WT@0#YT0B12222112204398100000000120160423WT@9T0ZYB12222222204398100000000 -T12023011111152970425900402631110633111034300000000041707710380000000000000000000000000000000000222222000000002229021 -T2202301111115297042219860918WT@YYBT9P1222212222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115297042219840127WT@YYBT9P1222221222222022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529704120170912WTT@BWYZY12222222204398100000000120090223WT@W00PP012222212204308100000000 -T320230111111529704120220212WT@0TTPZ@12222212204398100000000120200313WT@Y@9PTZ12222222204398100000000 -T12023011111152972524200403941120213110611300000000000005280670000000000000000000000000000000000222222000000002229012 -T2202301111115297251219920222WT@Z#9WB02221222222221012216110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529725120150112WTTPWPZBT22212222204302100000000 -T12023011111152978325900402721120633111199300000000000008880290000000000000000000000000000000000222222000000002229022 -T2202301111115297832219890723WT@YYBT9P1222222222224012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529783120050727WT@PP@TP912222212204310100000000 -T320230111111529783120120107WTTP@YZW012222212204303100000000120080701WT@W@@T0Z12222222204308100000000 -T320230111111529783120220427WTTZYWZ9012222112204398100000000120140913WTT##BZ0@12222222204302100000000 -T12023011111152985421000411361120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115298542219830212WTT0Y@TBY2222212222211012213120870013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111529854120040704WT@B#BY9#22222122204311100000000 -T12023011111152997622000401712120323210766300000000000006540040000000000000000000000000000000000222222000000002229032 -T2202301111115299761219940124WT@9TPY9W1222221222222011210290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115299761219850908WT@9TPY9W1222222222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529976120170901WT@9TPY9W12222222204398200000000 -T12023011111152997920900411721120313110611300000000000003920140000000000000000000000000000000261122222000000012219012 -T2202301111115299791219920202WT@Z0#TZB1222222222221012212110154523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529979120150724WTT@YBWTT12222222204301100000000120110914WT@Z#@#WT12222212204306100000000 -T12023011111152999020200409311120413110985300000000000507710330000000000000000000000000000000000222222000000002229012 -T2202301111115299901219840307WTTY99@9P2222212222225012212110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111529990120100412WTTBTBTT922222112204307100000000 -T320230111111529990120130726WT@BTW0BT22222122204304100000000120110424WTTP#T09Z22222112204306100000000 -T12023011111153013520600402131120213110618300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115301351219960108WTT9#TW@P2222211222225012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111530135120170708WT@WYYW9012222212204398100000000 -T12023011111153019822000408891120213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111115301981219990705WT@0#BPY@2212222222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111530198120200304WTT##0Y@922122212204398100000000 -T12023011111153022125900402721120433110776300000000000006540080000000000000000000000000000000000222222000000002229022 -T2202301111115302212219730512WTTB@#W0W1222222222222012207910680013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111530221120060927WTT@B9#W012222212204311100000000 -T320230111111530221120140401WTT@@0W#P12222212204302100000000120090307WT@Y0#Z9P22222212204305100000000 -T12023011111153022724200405921120233110516300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111115302272219860308WT@9TWPWT2222212222215012212110006011089922000000000000000000000000000000000000000000000000000000000000180900000000056000000000 -T320230111111530227120090911WTTW0#T9B22222122204307100000000 -T12023011111153031320600406751120313110740300000000000205280260000000000000000000000000000000000222222000000002229012 -T2202301111115303131220000318WT@0TWWPZ2222212222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115303132220000123WTTYPT@Z91222221222211102212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111530313120210423WTTZTP9B012222122204398100000000 -T12023011111153033321000411361120233120000300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111115303333219610122WTTWZPT0@2122222222225012212110006011069940000000000000000000000000000000000000000000000000000000000000326200000000000000000000 -T320230111111530333120040312WTT0P9B#021222222206310100000000 -T12023011111153044324700406701120212110558300000000000503780100000000000000000000000000000000000222222000001502219012 -T2202301111115304431219900118WT@BPBW902222212222225012216110421821011810000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111530443120140312WT@TPYPBY22222122204302100000000 -T12023011111153050525200407301120333110704300000000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111115305053219540421WT@Z0ZT0Z2122222122222012216110174313069900000000000000000000000000000000000000000000000000000000000000000000000786000000000330 -T320230111111530505120180207WTT0Z@P0W21222212208398100000000120160127WT@@#Z@W@21222212208398100000000 -T12023011111153054125900406841120233120000300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111115305413219750518WT@0TBZ@Z1122222222222012212110006011069929000000000000000000000000000000000000000000000000000000000000241400000000000000000149 -T320230111111530541120180212WTTYP0B#Z11222222208398100000000 -T12023011111153054925900402631120212110470109310000001500010020000000000000000000000000000000000222222000000002229012 -T2202301111115305491219910713WT@BTTWT92222212222221012216110570311011700210000000000000000000000000000000000000000000000000000040000125600000000000000000000 -T320230111111530549120180908WT@0T0WTZ22222122204312100000000 -T12023011111153063023500410671120523111116300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111115306301219910327WTT@Z#W0P2222211222222011214290114923011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111115306301219970509WTTB#Z0P02222212222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111530630120170401WT@9TPY9W22222122204398200000000 -T320230111111530630120200313WT@9TPY9W22222112204398200000000120190101WT@9TPY9W22222112204398200000000 -T12023011111153084522700408491120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111115308451219660114WT@Y#0W9@2222212222221012213110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111530845120050127WTTP##ZBY22221122204311100000000 -T12023011111153085422700403021120433110893300000000000006540050000000000000000000000000000000000222222000000002229022 -T2202301111115308543219750321WTTB@WBPT2222212222221012212110660013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001816 -T320230111111530854120160114WT@ZBYWP@22212212206398100000000 -T320230111111530854120220107WT@@ZYWZ922212212206398100000000120170111WT@TT@@Z@22212212206398100000000 -T12023011111153085921700409521120313110776300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111115308591219880923WTTWZ@T0P2222222222221012216110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111530859120180927WTTZT#WYZ22212222204398100000000120110318WTT99WTWB22222222204304100000000 -T12023011111153091222000411551120213110611300000000000005280210000000000000000000000000000000000222222000000002229012 -T2202301111115309121219780121WT@0P9#@@2222212222221012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111530912120160721WT@TYTP#Y22122212204398100000050 -T12023011111153109024700409381120213120000300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111115310901219970912WT@99@Y@@1222211222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111531090120180927WTT#WPPZY22222112204398100000000 -T12023011111153120623500406851120313110835114720000000006540430000000000000000000000000000000000222222000000002229012 -T2202301111115312061219990118WT@Y#9P@Y2222212222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111531206120220207WT@P@Y9#922212222204398100000000120180318WT@Y0W0BY22222122204398100000000 -T12023011111153163722000413731120413110717300000000000003460320000000000000000000000000000000423222122000000022219072 -T2202301111115316371219780413WTTPB##W91222212222223012212121090023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111531637120060727WTTTPZ#BT12222112204310100000000 -T320230111111531637120100704WT@BWYY9@12222122204305100000000120090409WT@@#99@912222112204307100000000 -T12023011111153183522000408891120333110740300000000000005280330000000000000000000000000000000000222222000000002229022 -T2202301111115318352219890907WTTPW000T2221221222211012208110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111531835120060423WT@@B@#0W21212212204310100000000120050401WT@900PY@21212222204310100000000 -T12023011111153189821000411361120213110493300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111115318981219720421WTT@PZZPZ2222222222222012212210105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111531898120110707WT@TBTY9922222222204304200000000 -T12023011111153191620600404491120333110740300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111115319162219900113WT@P#W0YP2222212122211012212110402013109900000000000000000000000000000000000000000000000000000000000000000000000795013900000000 -T320230111111531916120100127WT@Y@0Z@Y12222122204305100000000120070312WT@YP@00Z12222112204309100000000 -T12023011111153217920900411721120213110470300000000000005110100000000000000000000000000000000000222222000000172219012 -T2202301111115321791219710227WTTZTBBW@2222211222223012214110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000016 -T320230111111532179120080402WT@BB9WTZ22222112204308100000271 -T12023011111153223921000414221120313110822300000000000005660110000000000000000000000000000000000222222000000882219012 -T2202301111115322391219870418WT@WP@WY#2222211222221012212110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111532239120190724WTTT0B00Z12222122204398100000000120120404WT@PPY#PY22222112204301100000000 -T12023011111153225425600414551120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115322542219840927WT@Y#@TYZ2222212122211012205110144613109900000000000000000000000000000000000000000000000000000000000000037300000611032300000000 -T320230111111532254120100701WT@WB@ZP@12222122204306100000000120080901WT@B#TZYW22222112204308100000000 -T12023011111153237325900402631120613111365115950000000010090200000000000000000000000000000000000222222000000002229012 -T2202301111115323731219870901WTTP99PY91222222222221012210110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111532373120090218WTTWB@ZZT12222122204307100000025 -T320230111111532373120130227WTTP@T0#Y12222112204302100000050120120227WT@@0TP9@12222112204304100000025 -T320230111111532373120210922WTTT@TTWY12222112204398100000000120180124WTTWB#0@T12222112204398100000000 -T12023011111153240024200405921120432110939128120000000006540700000000000000000000000000000000000222222000000002229022 -T2202301111115324002219970723WTTTT@ZWY2221222122211012211110342613109900000000000000000000000000000000000000000000000000000000000000000000000322061200000000 -T320230111111532400120140314WT@P@W9PB22212222204398100000000 -T320230111111532400120220502WT@@0Y###22212222204398100000000120180527WT@P#0#ZZ22212222204398100000000 -T12023011111153252225600412851120613111359136810000000510090420000000000000000000000000000000000222222000000002229012 -T2202301111115325221219930323WT@BPZWT@1221222222221012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000002581 -T320230111111532522120100313WTT9WPPYB12212212204306100000020 -T320230111111532522120180112WTT#W0BYP22222112204398100000020120120126WTTZW@9ZT12212212204304100000020 -T320230111111532522120190726WT@B##@Z012222112204398100000020120180112WTT@9BWZ912222112204398100000020 -T12023011111153254023500404531120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111115325401219890323WT@9TPY9W2222221222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115325401219970304WT@9TPY9W2222222222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111532540120190212WT@9TPY9W22222212204398200000000120190212WT@9TPY9W22222222204398200000000 -T12023011111153262924200403511120432110939300000000012006540690000000000000000000000000000000000222222000000002229022 -T2202301111115326292219690424WT@0@9Z9@2222212122211012213110243613109900000000000000000000000000000000000000000000000000000000000000000000000694024000000000 -T320230111111532629120060312WTTB99P0W22222122204308100000000 -T320230111111532629120120127WTTWYBPTT22222112204302100000000120100102WTT00WPWP22222122204304100000000 -T12023011111153274924200404891120313110835300000000000006540270000000000000000000000000000000000222222000000002229012 -T2202301111115327491219920704WTT#ZTBYT2222222222221012216110540621011759000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111532749120180114WT@Z90YTZ22222212204398100000000120100413WTT@@PPZP22222212204306100000000 -T12023011111153275820600401981120233110516300000000000004170950000000000000000000000000000000000222222000000002229022 -T2202301111115327583219330218WTTZBB#ZB1222212122224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001973000000000000 -T320230111111532758120050907WTT0PBZ@@22222122206309100000000 -T12023011111153275922000404691120423111008300000000206007710080000000000000000000000000000000000222222000000002229012 -T2202301111115327591219600721WTT#PWYYT2222221222222011206190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115327591219870124WTTYB#0W@2222222222222021298290095123011800000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T320230111111532759120140727WT@9P@#BT22222222204398200000000120120307WT@B9ZTZ#22222212204398200000000 -T12023011111153276123500410671120313110835300000000000006210290000000000000000000000000000000000222222003200012219012 -T2202301111115327611219990204WTT@TWYB01222222222221012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111532761120210727WT@0PZ@Z@12222212204398100000000120200309WT@#9BYY912222212204398100000000 -T12023011111153276422000400461120232110516300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111115327642219780218WTTWP0T0Y2221222222211012210111630013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111532764120060218WT@0ZTY#@22212212204309100000000 -T12023011111153279523500410671120233110516300000000000003960450000000000000000000000000000000000222222002000012219022 -T2202301111115327952219730911WT@PYP#P#2222212222215012213121140013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111532795120060404WT@BBZ9#T12222122204310100000000 -T12023011111153285120600403591120233110517300000000000011670400000000000000000000000000000000000222222000000002229022 -T2202301111115328513219880413WT@#0@9YZ2222212222223012212110342613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000014 -T320230111111532851120050709WTT0@PP@Y22222122207312100000000 -T12023011111153292924200402501120233110536300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115329293219520107WT@P0TYWB2222212122214012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000652028200000000 -T320230111111532929120130327WTTYP#YPY12222122206302100000050 -T12023011111153295422700407491120213110611300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111115329541219970102WT@@@Y#TP1222222222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111532954120200708WT@Y9ZTW912222222204398100000000 -T12023011111153297025900402631120813111691300000000000012890030000000000000000000000000000000000222222000000002229072 -T2202301111115329701219900207WTTYBWZ9B1222222222221012207110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111532970120060123WTTPZZP9@12222212204309100000000 -T320230111111532970120120724WT@@YYZ@W12222212204303100000000120100701WT@#0PYY@12222212204305100000000 -T320230111111532970120170507WT@TTWY0T12222122204398100000050120140118WT@ZPP@@012222212204302100000000 -T320230111111532970120190701WTTZW#WT912222222204398100000000120180418WTTW@P0P912222222204398100000000 -T12023011111153297524200407271120232120000300000000000004170700000000000000000000000000000000000222222000000002229022 -T2202301111115329752219840313WTTY0W#P#2122222122213012212110402013109900000000000000000000000000000000000000000000000000000000000000000000000535030700000000 -T320230111111532975120180407WTTPYTTYB21222212204398100000000 -T12023011111153299122100414041110213110518300000000000002670010000000000000000000000000000000000222222000000002229012 -T2202301111115329911219820121WTTP@TW#Z2222212222225012212110580221011824000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111532991120080721WT@PW0BYW22222112204309100000000 -T12023011111153302924200404051120213110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111115330291219970427WT@P0TPZ@2221222222221012211110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533029120160507WT@P09Y0T22212222204398100000000 -T12023011111153309325900402831120413111034300000000000005780060000000000000000000000000000000192222122000000012219012 -T2202301111115330931219950423WTT000YP@2222212222221012216120263423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000930 -T320230111111533093120130423WT@TWTWZB22122122204303100000000 -T320230111111533093120220902WT@9TPY9W22122212204398100000000120150412WTTWT#BP012222122204398100000000 -T12023011111153316225000403231120313110835300000000002006540040000000000000000000000000000000000222222000000002229012 -T2202301111115331621220000723WT@#PBBBY2222212222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533162120210714WT@#T##W012222122204398100000000120200302WTTZ0P99P22222122204398100000000 -T12023011111153317820200403961110233110587300000000000001210010000000000000000000000000000000000222222000000002229021 -T2202301111115331783219750202WT@#0ZPT91122222222225012210110105011069924000000000000000000000000000000000000000000000000000000000000216700000000000000000000 -T320230111111533178120180326WT@BTPW@012222122206398100000000 -T12023011111153327722100409491120213110375300000000000002900300000000000000000000000000000000211122222002600012219072 -T2202301111115332771219840918WT@WY@B#@2222212222225012216120840023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533277120130402WT@9BW90#22222122204303100000000 -T12023011111153335520600400801120213110611300000000034705280050000000000070002000000000000000000222222000000002229012 -T2202301111115333551219880313WTTP#TY#Y2222212222225012213110065421011936000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533355120140923WT@0WP9#922222122204303100000000 -T12023011111153348725900402121120513111143300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111115334871219870413WT@#T0@T01222222222225012207210055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533487120070427WT@9P@0ZW12222212204309100000000120060401WTT#TWWTT12222212204310100000000 -T320230111111533487120220226WTTZ00BTY12222212204398100000000120140427WT@9P#Z#012222212204302100000200 -T12023011111153349122000407241120233120000104960000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111115334913219700123WT@TZPZB92221222222221012212110006011069938000000000000000000000000000000000000000000000000000000000000785200000000000000000000 -T320230111111533491120170512WTTBYTBZ@22212212206398100000000 -T12023011111153351720600402131110413110939300000000050004970720000000000000000000000000000000000222222000003532219072 -T2202301111115335171219800218WTTPBP9BP2222212222223012216110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533517120060402WT@0#WTZZ22222112204309100000000 -T320230111111533517120080724WT@YBZBZT22222112204306100000000120080402WTT9P9#YP22222112204307100000000 -T12023011111153354325900402832120423211034300000000000007710050000000000000000000000000000000000222222000000002229032 -T2202301111115335431219960714WT@9TPY9W1222211222222011298990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115335431219940318WT@9TPY9W1222212222222021298290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533543120200111WT@9TPY9W12222112204398200000000120160112WT@9TPY9W12222122204398200000000 -T12023011111153355224700409321120313110766300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111115335521219920308WT@PTBYP@2222222222221012212110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533552120200713WT@WWTY0@22222222204398100000000120190911WTTW@#P9Z22222212204398100000000 -T12023011111153363925600400661120413111002300000000006507710140000000000000000000000000000000000222122000000002229012 -T2202301111115336391219870313WTT@@#B0Y2222212222221012216110253523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111533639120100421WTT#TP@BZ22222122204307100000000 -T320230111111533639120190109WT@W9T0WZ22122212204398100000000120130123WTTT90B@B22222112204304100000000 -T12023011111153370320900411721110423111034300000000000003480220000000000000000000000000000000000222222000004232219012 -T2202301111115337031219700121WTTB@PZBY2222211222224011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115337031219830107WT@@ZZBY@2222212222221011212110233723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533703120190412WTTB9@##Y22222122204398100000000120130112WT@P0Y9ZT22222122204302100000000 -T12023011111153375522000405841120423111034300000000015307710040000000000000000000000000000000000222222000000002229012 -T2202301111115337551219820724WTTBZW@@B2222211222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115337551219890212WTTZ#W#0@2222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533755120200422WT@00@YBP22222112204398200000000120160114WT@0#PPP022222122204398200000000 -T12023011111153379820600406751120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111115337983219510123WT@BW99@@2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001190000000000000 -T320230111111533798120110122WT@T#@WP@21222212206303100000000 -T320230111111533798120140326WTT900#T921212112206398100000000120130413WTTPZ@PPY21222212206301100000000 -T12023011111153387024700405831120212110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115338701220000112WT@9P9P0#2222212222221012209120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533870120210121WT@Z#@99B22222112204398100000000 -T12023011111153393722700413181120233120000111990000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111115339373219870426WTTYP90P92222212222222012216110006011069921000000000000000000000000000000000000000000000000000000000000185600000000000000000000 -T320230111111533937120200427WTT##ZWBY22222112207398100000000 -T12023011111153396023800411831120213110611300000000000305280340000000000000000000000000000000000222222000000002229012 -T2202301111115339601219990112WTT909@PT2222212222221012216110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111533960120200407WT@#W@Z9Y22222122204398100000000 -T12023011111153406524200402501120233110560300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115340653219800126WT@PZTZT92222122222221012212910144613079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111534065120160913WT@PW#@YW22221222207398100000000 -T12023011111153412824700408701110523111116300000000000000570010000000000000000000000000000000000222222000000002229012 -T2202301111115341281219670412WT@9TPY9W2222212222222011298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115341281219670714WT@9TPY9W2222211222222021298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111534128120060702WT@9TPY9W22222112204308200000000 -T320230111111534128120120914WT@9TPY9W22222122204303200000000120100927WT@9TPY9W22222112204303200000000 -T12023011111153429822000408891120113110376300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111115342981219940326WTTTZWWZ#2221222222221013212190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111153431820600400801120213110560300000000000005010460000000000000000000000000000000000222222002600012219072 -T2202301111115343181219650423WTT9ZB@BW1222221222221012210110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111534318120080212WTT@##@9B12222112204307100000000 -T12023011111153442925000414191120213110611300000000500305280060000000000000000000000000000000000222222000000002229012 -T2202301111115344291219980923WT@TBWWBT1222222222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111534429120170321WTT#YPPY#12222212204398100000050 -T12023011111153446624200414351120333110306300000000000000540350000000000000000000000000000000000222222000003632219022 -T2202301111115344662219760926WT@YYBT9P1222222222222012206910006011079910000000000000000000000000000000000000000000000000000000000000120000000000000000000000 -T2202301111115344662219730523WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111534466120040101WT@WP9BPB12222222204312100000000 -T12023011111153457122000409871120213110611300000000000105010140000000000000000000000000000000000222222002600012219012 -T2202301111115345711219940724WTT@Y##0Z2222212222221012213110154523011400000000000000000000000000000000000000000000000000000000480000000000000000000000000000 -T320230111111534571120160912WTTBYYYZZ22222122204398100000000 -T12023011111153459020800405141120313110835300000000013506540120000000000000000000000000000000000222222000000002229012 -T2202301111115345901219930314WT@P#TZ#B1222222222223012212210134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000001000 -T320230111111534590120220427WT@@@T09T12222222204398100000000120160914WT@09@#0912222222204398100000000 -T12023011111153474424700406702120523211116300000000000008880100000000000000000000000000000000000222222000000002229032 -T2202301111115347441219850712WT@9TPY9W2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115347441219900921WT@9TPY9W2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111534744120110227WT@9TPY9W22222122204305200000000 -T320230111111534744120140423WT@9TPY9W22222122204302200000000120120304WT@9TPY9W22222112204303200000000 -T12023011111153475921000414221120213110611300000000371705280240000000000070008000000000000000000222222000000002229012 -T2202301111115347591219690108WTTW9ZPBW2222211222221012213110253523011900000000000000300000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111534759120070102WT@9W#TY922222112204309100000000 -T12023011111153482920800404431120233110516300000000000004170630000000000000000000000000000000000222222000000002229022 -T2202301111115348293219540312WTT9YZBPZ2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001272000000000000 -T320230111111534829120120111WT@@W9@##22222112206304100000000 -T12023011111153488622000408891120212110599121220000000003160100000000000000000000000000000000211122222000000012219012 -T2202301111115348861219890212WT@ZY#0Y@2222212222221012212110411923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111534886120200323WTT@B9TWW22222122204398100000000 -T12023011111153490622000411971120312110835300000000000006540720000000000000000000000000000000000222222000000002229072 -T2202301111115349061219990123WTT@TBYYY1222212222221012213110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111534906120170704WT@#Y#Z0@12222222204398100000000120140114WT@@9ZT0W12222122204301100000000 -T12023011111153498621000412411120312110787111640000000006540500000000000035008000000000000000000222222000000002229012 -T2202301111115349861219890112WTTW9TW9T1222222222225012216120570323011400000000000000000000000000000000000000000000000000000000130000000000000000000000000000 -T320230111111534986120160512WTTTT#TW#12222222204398100000000120120407WT@BTY@@Z22222222204303100000000 -T12023011111153520822000407412120323210835300000000000006540120000000000000000000000000000000000222222000000002229032 -T2202301111115352081219970923WT@9TPY9W2222212222222011213290134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115352081219970911WT@9TPY9W2222211222222021216290134723011800000019000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111535208120200927WT@9TPY9W22222112204398200000000 -T12023011111153524220600402141120213110598111470000004005280470000000000000000000000000000000000222222000000002229012 -T2202301111115352421219890922WT@PBTTZW2222212222223012216110570323011800000000000000000000000000170000000000000000000000000000100000000000000000000000000000 -T320230111111535242120190401WT@0TWP0W22222122204398100000000 -T12023011111153528222000406191120723111490300000000500011650050000000000000000000000000000000000222222000000002229012 -T2202301111115352821219800912WTT##TZ092222212222222011216290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115352821219730101WTT0P0WP#2222211222222021216290065423011800000000000000000002000000000000000000000000000000000000180000000000000000000000000000 -T320230111111535282120050413WT@0B0@B#22222112204312200000000 -T320230111111535282120090204WT@9TPY9W22222112204307200000000120070909WT@9TPY9W22222122204310200000000 -T320230111111535282120200326WT@9TPY9W22222112204398200000000120100709WT@9TPY9W22222122204305200000000 -T12023011111153528723500411471120212110516300000000000000010350000000000000000000000000000000000222222000000002229012 -T2202301111115352871219900102WTTB9##WT2222222222221012216110510911011900210000000000100000000000000000000000000000000000000000030000131000000000000000000000 -T320230111111535287120160104WT@B###BT22222112204398100000000 -T12023011111153546724100410041120332110740300000000002005280990000000000000000000000000000000000222222000000002229022 -T2202301111115354672219760412WT@0TZY#W2222212222211012216110610013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000030 -T320230111111535467120090907WTT@#ZPZT22222112204307100000230120060704WT@PY@#TB22222112204309100000000 -T12023011111153547525900402631120512111116300000000000006540530000000000000000000000000000000000222222000000002229012 -T2202301111115354752219900427WTTBPW#WZ2222211222212012209110194113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111115354751219880413WT@WZZPBW2222212222222022209190303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111535475120060704WT@YBPW9Z22222122204310100000050 -T320230111111535475120220207WTTB00TPP22222112204398100000000420180127WTTW0Z9@#22222112104398109140000 -T12023011111153553124200414351120333110611104430000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115355313219600405WTTW##99Z2221222222221012215110431711069941000000000000000000000000000000000000000000000000000000000000389800000000000000000000 -T320230111111535531120220321WT@###B9Z22212212206398100000000120050102WT@TWPTZ022212122206309100000000 -T12023011111153553922100409491120313110835300000000000003920360000000000000000000000000000000261122222000000012219012 -T2202301111115355391219800712WTTY0ZYTW2222212222225012212110402023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111535539120180913WT@WT#Z#922222112204398100000000120170924WT@WWTTYZ22222112204398100000000 -T12023011111153557922000400591120312110740300000000000003160570000000000000000000000000000000211122222000000012219072 -T2202301111115355791219830122WT@Y9Y0YW2221222222221012216110850023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111535579420200523WTT@0##@P22212222104398109140000120100211WT@BTP##T22212212204305100000000 -T12023011111153560320200409311120323110704300000000000006540030000000000000000000000000000000000222222000000002229072 -T2202301111115356031219700513WTTBZBPPY2222212222225011210190650023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115356031219750402WT@T#P#WT2222211222221011207190650023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111535603120120923WTT009YTP22222122204303100000000 -T12023011111153561421600403751120612111339300000000054210090210000000000000000000000000000000000222222000000002229072 -T2202301111115356141219910127WT@BWTBWT2222212222222012211110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111535614120120108WTTB0BP9022222122204303100000000 -T320230111111535614120150413WTTBT@00@22222122204301100000000120130727WTT@WZ#0#22222122204302100000000 -T320230111111535614120190723WTTTPYT9P22222122204398100000000120170423WTT00TB@B22222112204398100000000 -T12023011111153562024900406031120233110516300000000000003960990000000000000000000000000000000000222222002000012219022 -T2202301111115356202219810527WTTWBYT0@2222212222213012212110760013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111535620120070921WTTYT9WZ922222122204307100000000 -T12023011111153565125000406021120333120000300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111115356513219830902WTTBWBT@T2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000441600000000000000000000 -T320230111111535651120200421WT@TTT#@922222112207398100000000120180713WTTYWZB#922222112207398100000000 -T12023011111153565725600413441120313110766300000000220006540020000000000000000000000000000000000222222000000002229012 -T2202301111115356571219800113WTT@#9#BT2222212222222012212210035721011932000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111535657120160311WT@ZWTWZP22222122204398200000000120060127WTT#TYTT022222122204310200000000 -T12023011111153580724200414021120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115358071219710912WT@PY##BT1222222222223012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111535807120130311WT@TT@B0W12222212204303100000000 -T12023011111153597622000407831120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111115359761219890927WT@TZ@#WY2221222222221012212120065421011934000000000000000000000000000000000000000000000000000000000000266800000000000000000000 -T320230111111535976120150427WTTP#WZYP22212212204301100000000 -T12023011111153598425200407301120313120000300000000001004750100000000000000000000000000000000000222222005200012219012 -T2202301111115359841219870323WTTY@PY0#2222212222221012212110441623010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111535984420220307WTT9B0#@W22222112204398100000000120180504WTT0B0YTY22222112204398100000000 -T12023011111153609323500412161120313110835300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111115360931219810911WT@09PZ0B2212222222223012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111536093120170723WT@P#WB#Z22222122204398100000000120120427WTTBBB#PP22122212204304100000000 -T12023011111153619524600411871120233120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111115361953219870218WT@Z###WP2222212222223012214110263411069948000000000000000000000000000000000000000000000000000000000000364200000000000000000251 -T320230111111536195120070927WTT@P0YZZ22222122207309100000000 -T12023011111153624721700406141120313110740300000000020006540060000000000000000000000000000000000222222000000002229012 -T2202301111115362471219910711WTTWB#9#Y1222222222221012213120491121011800190000000000000000000000000000000000030000000000000000000000119300000000000000001190 -T320230111111536247120150704WTTPBBP@T12222212204398100000000120110904WT@9WB#@B12222212204305100000000 -T12023011111153631025800401871120213110557300000000000003160540000000000000000000000000000000211122222000000012219012 -T2202301111115363101220000413WTTZTWWBZ2222212222221012212110471323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111536310120180112WT@@0B9BT12222112204398100000000 -T12023011111153634025900403711110213110661106020000000105280050000000000000000000000000000000000222222000000002229012 -T2202301111115363401219990718WT@WYB#WT1222212222221012212110065421011700210000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111536340120210718WT@9#BTW#12222212204398100000000 -T12023011111153638324700409381120333120000300000000160005280990000000000000000000000000000000000222222000000002229022 -T2202301111115363833219760714WT@YYBT9P1222222222222012212920006011079935000000000000000000000000000000000000000000000000000000000000433300000000000000000000 -T320230111111536383120050712WTTB#@Y9P12222222207310100000000120040305WT@WP@@YP12222222207311100000000 -T12023011111153643925100407671120413111034300000000000007710610000000000000000000000000000000000222222000000002229072 -T2202301111115364391219940122WTT0@Z9@02221222222221012210110620023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111536439120140526WTT@@T#P022222122204302100000000 -T320230111111536439120220327WT@TT09TP22212212204398100000000120140526WT@TYBPBZ22212212204302100000000 -T12023011111153655222000413731120212110516101740000000004170980000000000000000000000000000000000222222000000002229072 -T2202301111115365521219790401WTTBY9#0T2221222222221012216110640023011400000000000000000000000000000000000000000000000000000000210000000000000000000000002266 -T320230111111536552520200423WT@P#T@9#22212212104398109140000 -T12023011111153673023500414281120333110835300000000012105280480000000000000000000000000000000000222222000001262219022 -T2202301111115367303219640407WT9TTZTWB2222212222223012212110520811069932000000000000000000000000000000000000000000000000000000000000318000000000000000000000 -T320230111111536730120090923WT@WPBTWW12222122206307100000041120070709WTTB@#TTZ22222112206308100000000 -T12023011111153674425200410141120233110516300000000000003670990000000000000000000000000000000000222222000000502219022 -T2202301111115367443219540727WTT9B0@YW2222211122225012213210006013069900000000000000000000000000000000000000000000000000000000000000000000001406000000000000 -T320230111111536744120120411WTTTTWPBZ22222122206304100000050 -T12023011111153679720200409311120212110576300000000000005280060000000000035007000000000000000000222222000000002229012 -T2202301111115367971219750209WT@P@BTZB2222212222221012216110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111536797120050107WT@Y@T9YB22222122204311100000050 -T12023011111153688722900405641120313110528300000000000004170180000000000000000000000000000000000222222000000002229012 -T2202301111115368871219730911WTTY0T#TB1222221222221012212290194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115368872219700313WT@YYBT9P2222222222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111536887520100426WT@WB9PWZ12222222104305106340000 -T12023011111153691522100410901120313110835300000000000003920250000000000000000000000000000000261122222000000012219012 -T2202301111115369151219830105WTT0WBWYP1222211222221012212110253523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111536915120180127WT@#ZTZP022222112204398100000000120160304WTTZW0#T922222122204398100000000 -T12023011111153694625900402831120332110835300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115369463219720909WT@Z9P#991222222222223012211110372313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111536946120110909WTTWTZ@PW12222212207305100000000120070224WT@PZ9@TP12222212207309100000000 -T12023011111153697223300410111120332110740300000000005205280390000000000000000000000000000000000222222000000002229022 -T2202301111115369721219840201WT@ZPWB0#2222212222225012211111050023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111536972420180412WT@#0W#B#22222112104398108000200120100427WTTT9T@#Y22222112204307100000000 -T12023011111153711024200414721120332110611300000000000005280330000000000000000000000000000000000222222000000002229022 -T2202301111115371102219820327WT@YYBT9P1222222222222012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537110120130702WT@Z900#@12222122204302100000000120100427WT@0T090@12222122204305100000000 -T12023011111153713624700409381120333120000300000000000005280530000000000000000000000000000000000222222000000002229022 -T2202301111115371363219670326WTTWTW9B02222212222222012216110006011069926000000000000000000000000000000000000000000000000000000000000211100000000000000000000 -T320230111111537136120090223WTT@ZB9Z022222112206306100000000120060123WTTB#P0@022222112206308100000053 -T12023011111153722820600406751120323110786300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111115372281219910327WT@9TPY9W2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115372281219920501WT@9TPY9W2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537228120160718WT@9TPY9W22222122204398200000000 -T12023011111153725224200404422120423211034300000000000007710090000000000000000000000000000000000222222000000002229032 -T2202301111115372521219900704WT@0PBP@Z2222221222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115372521219910512WT@9B09PZ2222222222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537252120200327WT@9TPY9W22222222204398200000000120170126WT@9TPY9W22222212204398200000000 -T12023011111153727824600406681120213110384300000000000003160120000000000000000000000000000000211122222000000012219012 -T2202301111115372781219830105WTT@B#P#@2222211222223012211110134723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537278120100118WT@WTWW0Y22222112204306100000000 -T12023011111153729321700403821120313110740300000000000005280160000000000000000000000000000000000222222000000002229072 -T2202301111115372931219890427WTT@90@TY2222211222225012211121120023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537293420110213WTT##YZYZ22222112104304109140000120080301WT@@@ZP@Z22222122204304100000000 -T12023011111153740622000410331120233110611300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111115374062219780123WT@YYBT9P2222212222223012215920015913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537406120160312WTT9ZB@0#22222112204398100000000 -T12023011111153744120600400801120212110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111115374411220000304WT@P0PTB#2222212222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537441120200721WT@ZPB0W#22222112204398100000000 -T12023011111153752425900402631120213110611300000000000005280530000000000035009000000000000000000222222000000002229012 -T2202301111115375241219970418WTTW0BTY@2222212222221012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537524120160923WT@PY##P922222112204398100000000 -T12023011111153754822700407491120633111339300000000000008880500000000000000000000000000000000000222222000000002229022 -T2202301111115375482219910424WT@WZTPBP1222212122211012212110045613109900000000000000000000000000000000000000000000000000000000000000000000000103083100000000 -T320230111111537548120100324WT@Y0Y#W022222122204304100000000 -T320230111111537548120190105WT9TT9@BP22222122204398100000000120110723WT@WP@#@Y22222112204302100000000 -T320230111111537548120220911WT@0@BZBW22222122204398100000000120200326WTT#BT@ZB22222112204398100000000 -T12023011111153773522000407241120323110766300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111115377351219680713WT@YWBTY92222222222222011216290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000333 -T2202301111115377351219630421WT@WP@0Z02222211222222021216290095123011800000000000000000000000000040000000000000000000000000000000000000000000000000000000000 -T320230111111537735120110505WTTW0Z@Z#22222112204304200000000 -T12023011111153774720600402141120332110740300000000000005280550000000000000000000000000000000000222222000000002229022 -T2202301111115377473219580904WTT0B#09W2222122122225012207210055513069900000000000000000000000000000000000000000000000000000000000000000000000348000000000000 -T320230111111537747120150301WT@TZ#WPB22221222206301100000000120050923WT@ZW@0PZ22221222206311100000000 -T12023011111153775522000409971120332110740300000000000005280520000000000000000000000000000000000222222000000002229022 -T2202301111115377552219960423WT@@99YWZ2122222222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111537755120220421WT@TWP9@922212222204398100000000120170913WTTW@@B@#22212222204398100000000 -T12023011111153782222000410051120823111691300000000000012890510000000000000000000000000000000000222222000000002229012 -T2202301111115378221219900507WT@WB9@9#1222222222221011212990322823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115378221219900927WTTW#BYTW1222121222221011212990303021011930000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537822120120914WT@BW9PZ#22221222204305100000000120100908WT@PP9YPY12222222204307100000000 -T320230111111537822120160123WT@TB9YP922221212204398100000000120140421WT@WB@##Y22221222204303100000000 -T320230111111537822120210412WTTBBWBZY22221212204398100000000120180701WTTPB#@TT22221212204398100000000 -T12023011111153791124700401011120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115379111219840114WT@@WPBBY2222212222221012212110174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537911120220527WT@9TPY9W22222122204398100000000 -T12023011111153797221700406141110213110598300000000003005280010000000000000000000000000000000000222222000000002229012 -T2202301111115379721220000914WTTP9YBTY2222122222223012212910065421010116000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111537972120220207WTTBY0TZ922222212204398100000000 -T12023011111153799425900406081120433120000300000000000002060200000000000000000000000000000000000222222000004482219022 -T2202301111115379943219630923WTTZT9#B91222212222225012214110006011069993000000000000000000000000000000000000000000000000000000000000602600000000000000000000 -T320230111111537994120120223WTT9BZZBB12222112206304100000000 -T320230111111537994120160923WT@Y#ZB0P12212222206398100000224120120907WTTP##WYY12212212206304100000224 -T12023011111153803622000405181120213110598300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111115380361220000407WTTYPB##92221222222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538036120200507WT@W9B9Y922212212204398100000000 -T12023011111153804725900400311120312110835108820000000006540190000000000000000000000000000000000222222000000002229072 -T2202301111115380471219850423WT@BWY0901222222222223012210110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538047120130327WT@Z9ZZTZ12222212204303100000000120120921WT@#0YYYT12222212204304100000000 -T12023011111153805320800410751120213110598106600000000005030220000000000000000000000000000000000222222000000252219012 -T2202301111115380531219960918WTTZ0#YYZ2222122222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T320230111111538053120170704WTTW#ZYB922122222204398100000000 -T12023011111153806024600406681120233110557300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111115380602219850718WTTZBYB#W2222211222215012209110006013089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111538060120130126WTTBWYTZW21222222204303100000000 -T12023011111153810720600402131120213110557300000000004305280030000000000000000000000000000000000222222000000002229012 -T2202301111115381071219830718WTTYW0TY02222212222225012212210520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538107120160113WT@0T09Y#22222122204398100000000 -T12023011111153812424700408301120213110598300000000000003060230000000000000000000000000000000000222222000002222219012 -T2202301111115381241220000423WT@Z9TWZ92222212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538124120190912WT@YWYPWZ22222122204398100000222 -T12023011111153819324200414721120233110516300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111115381933219620404WT@#Z#Y#W2222211122225012210110015913069900000000000000000000000000000000000000000000000000000000000000000000000863000000000000 -T320230111111538193120060118WT@TY9#0#21222212206310100000000 -T12023011111153822223900406231120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115382222219590107WT@P9TP#W2222212122213012216110233713109900000000000000000000000000000000000000000000000000000000000000000000000886004800000000 -T320230111111538222120050409WTTYP9WBZ22222212204309100000500 -T12023011111153824120600414771120213110557300000000000005280290000000000035016000000000000000000222222000000002229012 -T2202301111115382411219810427WT@Y@9P9Y2222212222225012209110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538241120130409WT@ZP#PPY22222112204303100000050 -T12023011111153825225900402831120513111199112250000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111115382521219860423WTTT#9TZ92222212222221012212110550523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538252120070213WTT0#9#9T12222222204308100000000120050209WT@#TP@@T12222222204311100000000 -T320230111111538252120220101WT@9TPY9W12222212204398100000000120150511WTTBZZWZY12222212204398100000005 -T12023011111153826422700408491120413110939300000000000007710230000000000000000000000000000000000222222000000002229012 -T2202301111115382641219970727WTTYPZ0TT2221222222221012214110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538264120190427WT@9#W9ZW12212212204398100000000 -T320230111111538264120220911WT@PY0@WT22222222204398100000000120200907WTTPYPYPT12212212204398100000000 -T12023011111153832921000411361120233110611300000000000004170460000000000000000000000000000000000222222000000002229022 -T2202301111115383293219700307WTT9Y0BYW2122222222223012212110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538329120170907WT@BWWWWP21222222206398100000000 -T12023011111153835123700414331120513110939300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111115383511219850322WT@WW0TYY1222212222225012205210035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000685 -T2202301111115383512219850212WT@YYBT9P1222211222221102203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538351120060121WT@BB#YW#12222122204309100000000 -T320230111111538351120220724WTTTP9T#W12222122204398100000000120110912WT@#09P#Y12222122204305200000000 -T12023011111153840224700409321120232120000107590000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111115384025219800208WTT09WTP02222212222223012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538402120140924WT@BYWB0@22222122209398100000000 -T12023011111153841120800414651120413110939119380000000007710940000000000000000000000000000000000222222000000002229072 -T2202301111115384111219930418WTTPYWY0Z2221222222221012212110950023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111538411120120413WTTBBZ#P922222212204304100000000 -T320230111111538411120200723WTT0W@99W22222212204398100000000120140104WTTY0P##022222222204302100000000 -T12023011111153842824900404261110113110301300000000000000940010000000000000000000000000000000000222222000003232219012 -T2202301111115384281219980323WTT9#PW0#1222222222221013213190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111153842924700406631120313110835117500000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111115384291219870727WT@PWBY0#1221222222221012213110213921011752000000000000000000000000000000000000000000000000000000000000745900000000000000000000 -T320230111111538429120180514WTT0W09WP12212222204398100000000120130518WTT9@Y9W912212212204302100000000 -T12023011111153847920200409311120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115384793219590107WTT9@BW0P2222212122221012213110085213069900000000000000000000000000000000000000000000000000000000000000000000000983000000000000 -T320230111111538479120080927WTT@9T9T#22222212206308100000000 -T12023011111153856920600414871110213110542300000000000002380010000000000000000000000000000000000222222000000002229012 -T2202301111115385691220030923WT@T@PPW02222222222221012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538569120200512WT@9Z#0#T22212222204398100000000 -T12023011111153861625900402721110313110835300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111115386161219870924WT@Y0#Z9B1222222222225012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538616120130301WTTBP0#@012222212204302100000000120050904WT@B@ZBYZ12222222204311100000000 -T12023011111153862225900402721120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115386223219770409WTT0PWZ#B1222222222221012211110045611069901000000000000000000000000000000000000000000000000000000000000200000000000000000000000 -T320230111111538622120090323WT@#T0@WZ12222222207306100000000 -T12023011111153863920800414651120233110516300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111115386392219670327WT@99PTYT2222222222214012215110065413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111538639120090914WT@PPW9B922221222204307100000000 -T12023011111153865222000408811120412110939119160000000007710290000000000000000000000000000000000222222000000002229072 -T2202301111115386521219850112WTTZ9##ZT2221222222223012216110700023011700000000000000000000000000260002000000000000000000000000050000000000000000000000000000 -T320230111111538652120040304WTT#BPZP#22212212204311100000100 -T320230111111538652120200411WTTWYZ@YZ22212212204398100000000120160704WTT0@@0PB22212212204398100000000 -T12023011111153874922000408891120212110611300000000000305280170000000000035010000000000000000000222222000000002229012 -T2202301111115387491219880701WT@0BB#YZ2221222222221012216110213923011900000000000000300000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111538749120070118WTTYPBZ@022212212204309100000050 -T12023011111153876622000404841120512111116300000000000006540960000000000000000000000000000000000222222000000002229072 -T2202301111115387662219740526WT@WB9YT92222211222212012206190085213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111115387661219850502WTTWZZZ#92222212222222022206190970023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538766420060712WTTW@90ZY22222122104307109140000 -T320230111111538766120100227WTTZ9TY9Y22222122204304100000000120090401WTTPP0PTB22222112204304100000000 -T12023011111153890020200409311120213110611300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111115389001219890914WTTY@B@Z@2222212222225012212110312923011400000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111538900120170926WT@YWBWY#22222122204398100000000 -T12023011111153891120600414871120333110835300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115389113219760718WT@0YBWZ92222212222224012212110243613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111538911120130402WT@9B#Y9Y22222112206303100000000120080514WTTT0#WW022222112206308100000000 -T12023011111153894422000402321120212110531300000000000002200470000000000000000000000000000000000222222000003082219012 -T2202301111115389441220000704WT@ZW@@992221222222221012212110451521011808000000000000000000000000000000000000000000000000000000000000061400000000000000000000 -T320230111111538944120180326WT@TZB9W#22212212204398100000000 -T12023011111153894524500405941120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115389453219550207WT@99@#Y02222212122225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000001732000000000026 -T320230111111538945120040924WT@Z0Z@9W22222122206310100000000 -T12023011111153904020600414161120412111034300000000300007710040000000000000000000000000000000000222222000000002229012 -T2202301111115390401219870905WTTBPWTWY2221222222223012213110085223010900000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T320230111111539040120090201WT@@T0BY@22212222204306100000000 -T320230111111539040120100413WT@Y@PZY@22212222204305100000000120100413WT@#PB9PT22212222204305100000000 -T12023011111153905424100410041120413110939300000000000007710490000000000000000000000000000000000222222000000002229012 -T2202301111115390541219910901WTT90ZY#Y1221222222221012213120491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539054120080304WT@T9W0WP12112222204307100000000 -T320230111111539054120220912WTTB9P#@W12212222204398100000000120110426WTT#9Y#YT12112222204305100000000 -T12023011111153905920600414831120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115390593219560523WT@BZB#YT2222211222212012298110006011069936000000000000000000000000000000000000000000000000000000000000510000000000248400000000 -T320230111111539059120050512WTT@BTZ9Y22222122206310100000000 -T12023011111153907824200414721120212110611113820000005005280150000000000000000000000000000000000222222000000002229012 -T2202301111115390781219940426WT@TZTTWZ2221212222221012216110164423010900000000000000000000000000000000310000000000000000000000030000000000000000000000000000 -T320230111111539078120210501WT@WWTBB#22222112204398100000000 -T12023011111153911923700414331120313110786300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111115391191219860523WT@@ZBT0#1222211222223012209110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539119120140513WT@0ZZ@P#12222212204302100000000120090907WTTWT0@TZ12222222204307100000000 -T12023011111153915124200403461120213110611300000000000004990200000000000000000000000000000000000222222000000292219012 -T2202301111115391511219790313WTTPTTBT@2222212222221012211110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000028 -T320230111111539151120110313WT@P9W#YZ22222122204304100000000 -T12023011111153925323700400481110313110835300000000000105480060000000000000000000000000000000000222222000001062219012 -T2202301111115392531219990209WT@9W09BB1222222222221012216210303023010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539253120180327WT@B#BPBT12222212204398100000000120170718WT@Z@B#9Y12222212204398100000000 -T12023011111153929222000411551120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115392925219740409WTTPY#0Z@2221222222215012212111330013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111539292120050212WT@ZPTYTW12212222209311100000000 -T12023011111153934722000403891120213110598100840000016005280050000000000000000000000000000000000222222000000002229012 -T2202301111115393471219870701WTT#@B@PB2221222222221012216110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539347120220324WTTPB#ZZ922212222204398100000000 -T12023011111153937122700408351120233120000300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111115393713219730411WT@YZY9TZ2222211122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001184000000000000 -T320230111111539371120200918WT@T0#Y9@22222112208398100000000 -T12023011111153940322000408891120212110611300000000000505280520000000000000000000000000000000000222222000000002229072 -T2202301111115394031219690901WT@BBT@@T2222212222221012212110910023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539403120100523WT@T0B0WW22222112204306100000000 -T12023011111153954520900411721120212110547300000000003405280330000000000000000000000000000000000222222000000002229012 -T2202301111115395451219890318WT@PWBW@92222211222221012212110352521011828000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539545120130112WT@Y0#B0#22222122204303100000114 -T12023011111153957520800405391120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115395752219790123WT@@@YT9B2222212222211012216120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111539575120190726WT@09@B#T22222112204398100000000 -T12023011111153962320800410781120213110611300000000000005280500000000000000000000000000000000000222222000000002229012 -T2202301111115396231219900922WT@T@0@TB2222212222221012212110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539623120070926WT@PWYZWY22222112204308100000000 -T12023011111153964524500405781120333110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115396452219810412WTTZ#09992221221222211012210110223813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111539645120090401WTTW@T0ZT22222112204305100000000120050704WTT@WTWYY22212222204309100000000 -T12023011111153970522000405841120423111034300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111115397051219910904WT@9TPY9W2222212222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115397051219870113WT@9TPY9W2222211222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539705120170113WTT#BWW0922222112204398200000000120140318WT@W@TBTB22222112204301200000000 -T12023011111153977120600404121120312110760300000000000005870390000000000000000000000000000000000222222000000672219012 -T2202301111115397711219950918WTTWTYYZB2221222222221012212110402023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000066 -T320230111111539771120220326WT@#B9@Z#22222112204398100000000120190312WT@Z##0PB22222112204398100000050 -T12023011111153978023500402712120313210766300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111115397801219730313WTT@#YPZT2222212222224012212210114923011800000000000000000000000000000000180002000000000000000000300000000000000000000000000000 -T320230111111539780120070408WT@99@TWW22222122204308200000000120050904WTT9W0WPP22222112204309200000000 -T12023011111153981824700405831120212110516300000000066303960670000000000000000000000000000000000222222002000012219072 -T2202301111115398181219890427WT@#TW@#Z2222212222225012216110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539818520110109WT@YB#Z#P22222112104304109140000 -T12023011111153983122000413731120623111434300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111115398311219910307WTT@@#9@#2222212222222011213290075323011800000000000000000000000000000000100001000000000000000000000000000000000000000000000000 -T2202301111115398311219870709WT@T0Y#BT2222211222222021212290075323011800000020000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111539831120170112WT@Z09B9T22222112204398200000000120120727WTTZ@00PT22222122204304200000000 -T320230111111539831120210923WT@9TPY9W22222112204398200000000120190927WTTZBYZ9P22222122204398200000000 -T12023011111153987021700409521120333110611300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111115398702219800118WT@YYBT9P1222222222221012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539870120110908WTT9P@PZY12222212204305100000000120080327WTT9T#9##12222222204307100000000 -T12023011111153996722000412231120212110611300000000000005280980000000000000000000000000000000000222222000000002229072 -T2202301111115399671219760527WT@TWTY@92221222222221012214120990023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111539967120040426WT@#@PBBY22222112204310100000000 -T12023011111154007122000411971120213110611300000000021305280250000000000000000000000000000000000222222000000002229012 -T2202301111115400711219840201WTT@0@P#T2221222222225012216110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000001221 -T320230111111540071120200905WT@ZZ#YBB22212222204398100000000 -T12023011111154008620600407031120423110835300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111115400861219900908WT@9PBPBP2222212222222011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000001165 -T2202301111115400861219770712WTTT#ZP9@2222211222222021212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111540086120120108WTTZTZ#WB22222112204303100000050120100909WTTBPT9Z022222122204306100000050 -T12023011111154019722000414461120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115401973219560724WT@P00BW@2222212222215012207111200013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111540197120070912WTT#BZP#912222112206308100000000 -T12023011111154025824700406701120412110962300000000000006540620000000000000000000000000000000000222222000000002229072 -T2202301111115402581219840112WTTTTT@ZB2222212222221012212110810023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111540258420070121WT@99WYWP22222112104309105760000 -T320230111111540258120220412WTT0PW@9W22222122204398100000000120110412WT@9PZ###22222112204304100000000 -T12023011111154031525600414551120233110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115403153219540301WT@0WY@Z@2221222222211012212110322813069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111540315120080307WTTWPZZPT22212212206308100000050 -T12023011111154039623500407161120212110611300000000062305280990000000000000000000000000000000000222222000000002229072 -T2202301111115403961219780324WT@@#BPPY2221222222221012216112180023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111540396120140114WT@@9BWPY22212212204301100000000 -T12023011111154052824700406701120723111480300000000000011650040000000000000000000000000000000000222222000000002229012 -T2202301111115405281219880427WT@YYZZWP2222212222222011211290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115405281219880907WT@BTT@9P2222211222222021208290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111540528120110527WTTB9TB#P22222122204305200000000 -T320230111111540528120150212WTTWWB9B022222122204301200000000120120213WT@BBTB0P22222122204304200000000 -T320230111111540528120210527WT@TYBB@@22222122204398200000000120170918WTTP0PP9Z22222122204398200000000 -T12023011111154053624200403942120723211480300000000161405850100000000000000000000000000000000000222222000005802219032 -T2202301111115405361219880404WT@@#TPTP2222212222222011216290085221011802000000000000000000000000000000000000000000000000000000340000008300000000000000000000 -T2202301111115405361219860523WT@B#@99P2222211222222021216290085221011935000000000000000000000000000000000000000000000000000000000000215000000000000000000000 -T320230111111540536120080923WTTBB#0W@22222122204308900000000 -T320230111111540536120110414WT@WBBZ9T22222112204305200000000120090701WTTWY0@PY22222112204307200000000 -T320230111111540536120140501WT@09Z#Y022222122204302200000000120120412WTTWPW0WP22222122204304200000000 -T12023011111154055222000408891120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115405522219840412WTT09YYBY2221222122211012213110105013109900000000000000000000000000000000000000000000000000000000000000000000000572036200000000 -T320230111111540552120090304WT@P0#P#W22212212204305100000000120060327WTT9YWWPY12212222204308100000100 -T12023011111154063023700414331120233110376300000000040004170330000000000000000000000000000000000222222000000002229022 -T2202301111115406302219880226WT@YYBT9P1222222222221012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111540630120160421WT@TTT@@@12222212204398100000000 -T12023011111154077522000403891120212110606300000000090005280990000000000000000000000000000000000222222000000002229072 -T2202301111115407751219700104WTT@90PZ01221222222224012212111000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111540775120060412WTT#09#@T12212222204309100000000 -T12023011111154084322000413731120413111286109310000005005780990000000000000000000000000000000192222122000000012219072 -T2202301111115408431219820412WTT#@BWY02221222222221012212121620023010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111540843120070118WT@#PWWPY12212222204308100000000 -T320230111111540843120200905WTTT#Y0BT22212222204398100000000120170422WT@BT0@Y012212222204398100000000 -T12023011111154087921700406141120233110493300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111115408795219750518WT@B9WBP#2222212222221012212110006011069942000000000000000000000000000000000000000000000000000000000000258100000000000000001100 -T320230111111540879120100112WT@Z9YTWY22222122209303100000000 -T12023011111154094722000400592120213210611300000000005004170020000000000000000000000000000000000222222000000002229032 -T2202301111115409471220010711WT@9TPY9W2222212222222013213290035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115409475219990223WT@YYBT9P2222221222222023213290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111154104022000405841120513111116300000000000008880120000000000070003000000000000000000222222000000002229012 -T2202301111115410401219890502WTTTT0##T2221222222221012212110134723011400000000000000000000000000000000000000000000000000000000170000000000000000000000000000 -T320230111111541040120090704WT@YWZZTB22212212204305100000000120080914WTTP@B#PZ22212212204307100000000 -T320230111111541040120180408WTTTTTYYT12212222204398100000000120140212WT@W##TT#22212222204302100000000 -T12023011111154109520600404121120513111199108350000030608880040000000000000000000000000000000000222222000000002229012 -T2202301111115410951219900701WTT@Y9BZ92222212222223012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541095120100307WT@@WZPYW22222112204305100000000120070323WTT0PT99@22222112204308100000000 -T320230111111541095120180305WTTPWPB0922222112204398100000000120130323WTTZZYP@@22222122204302100000000 -T12023011111154123823500404531120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115412381219930904WT@PWW99B2222212222221012212110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541238120170204WTTB#9@PW22222122204398100000000 -T12023011111154132624200414851120413111017111370000000007710720000000000000000000000000000000000222222000000002229092 -T2202301111115413261219840307WTTBZ##TZ2222212222223012216110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541326120060501WTT90BWTB22222112204309100000000 -T320230111111541326120180714WTTY0Y#@022222112204398100000100120110102WT@ZZ@9WB22222122204304100000000 -T12023011111154133825900402631110213110611300000000000001280010000000000000000000000000000000000222222000004002219012 -T2202301111115413381219940314WTTYYP#W#2212222222223012212110015923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000400 -T320230111111541338120170912WT@BWZ@YB12122222204398100000200 -T12023011111154140720600414161120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115414071219930924WTT@9YZZT2222211222221012211110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541407120190721WTT9WWWYW22222122204398100000000120180721WTT#90WBY22222112204398100000000 -T12023011111154144220800410781120313110835300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115414421219820412WT@@@PTWP2212222222221012216110055523010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541442120140323WTTPTYYWT22122212204301100000000120100218WT@TZWTTW22122212204306100000000 -T12023011111154144422700408491110213110611300000000000004420170000000000070013000000000000000000222222000000002229012 -T2202301111115414441219970102WTTP@0BWP1222222222221012212110392123011800000000000000000002000000000000000000000000000000000000290000000000000000000000000000 -T320230111111541444120150426WT@WY#T0P12222112204301100000000 -T12023011111154150620600404121120312110781118080000000006540340000000000000000000000000000000000222222000000002229012 -T2202301111115415061219980304WT@WB99#@2222212222221012210110332723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541506120190923WTTW#Y#WY22222122204398100000000120160414WT@@#0YWZ22222112204398100000000 -T12023011111154151924200413331120423111032300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111115415191219870401WTTPYT##P2222211222222011213290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115415191219870321WT@T9#B0P2222212222222021213290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541519120150905WTTY#0W0922222112204302200000000120130123WTTYZZZPB22222112204304200000000 -T12023011111154155121000411361120233120000300000000000004170840000000000000000000000000000000000222222000000002229022 -T2202301111115415513219490924WTTBTT#@@2222212122223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001316000000000000 -T320230111111541551120090513WTT@Z0@P022222122206306100000000 -T12023011111154160222000402321120212110611300000000000005280140000000000000000000000000000000000222222000000002229072 -T2202301111115416021219820324WTT@TP90T2222212222221012216110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541602120130418WTTY#WZ0T22222122204303100000000 -T12023011111154160320300400971110413110893300000000000102990620000000000000000000000000000000000222222000000862219072 -T2202301111115416031219840913WTTTYWW@Y2222212222221012212110630021011803000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541603120050401WTTWZ#9Z022222112204311100000000 -T320230111111541603120210112WTT0ZPYTB22222122204398100000000120180921WTT0Y@Z0B22222122204398100000000 -T12023011111154163520600402131120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111115416351219960426WTTWWBB#@2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541635120220912WT@9TPY9W12222122204398100000000 -T12023011111154167620300401381120213110563300000000068705280080000000000000000000000000000000000222222000000002229012 -T2202301111115416761219970712WT@9BTP#@2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541676120220307WT@WP#B@W22222122204398100000000 -T12023011111154183222000413732120323210835300000000000005730040000000000000000000000000000000000222222000000812219032 -T2202301111115418321219940401WT@9TPY9W2222222222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115418321219870923WT@9TPY9W2222211222222021212290055521011806000000000000000000000000000000000000000000000000000000000000032200000000000000000000 -T320230111111541832120170321WT@9TPY9W22222112204398200000000 -T12023011111154191120600400871110323110396300000000000002210010000000000000000000000000000000000222222000000002229012 -T2202301111115419111219920408WTTBZZYPB2222211222222011214290025823011800000000000000000000000000000000030002000000000000000000180000000000000000000000000417 -T2202301111115419111219910409WTTB#@09W2222212222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111541911120200727WTTBTWPWP22222122204398200000000 -T12023011111154192420600414251120533111116300000000000007710900000000000000000000000000000000000222222000000002229022 -T2202301111115419243219620901WTTB0PYWY2222212122215012216110411913069900000000000000000000000000000000000000000000000000000000000000000000000625030900000000 -T320230111111541924120080507WT@PZTZ@Y22221112209308100000000120050507WTTP9@T#912222122206312100000000 -T320230111111541924120200213WT@BWZ9#T22222122206398100000000120190421WTTY#P@TB22221112206398100000000 -T12023011111154203720300401721120233110516300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111115420373219490923WTTTW9#9P2222211112225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001008000000000673 -T320230111111542037120180402WT@P9PWWZ22222112206398100000000 -T12023011111154205324200402981120213110611300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111115420531219890913WT@#Y9ZWB2222212222225012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542053120210409WTT@YB@WB22222122204398100000000 -T12023011111154209420600414871120213110611300000000000005280520000000000000000000000000000000000222222000000002229012 -T2202301111115420941219860407WT@@W#Z9Y2222222222221012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542094120160712WTTY@9PTP22222112204398100000000 -T12023011111154209921700409231120113110376300000000000704170040000000000000000000000000000000000222222000000002229012 -T2202301111115420991220020123WTTT9WY002222212222221013213190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111154210420600407031120333110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115421043219570213WT@PTZ@WZ1222222122225012209110154513069900000000000000000000000000000000000000000000000000000000000000000000001116000008690425 -T320230111111542104120150723WTTBP#YTT12212212206398100000000120060221WT@WPY#TT12222222206311100000000 -T12023011111154217420600400871120213110596300000000000003960290000000000000000000000000000000132222122000000002229072 -T2202301111115421741219820326WT@@W9W9W2122222222224012212121070023010600000000000000000000000000000000000000000000000000000000000000000000000000000000000187 -T320230111111542174120200912WT@@PW0YW21222212204398100000050 -T12023011111154228625600406521120213110611300000000004004490050000000000000000000000000000000000222222000000792219012 -T2202301111115422861219960711WTT0@ZP9B2222212222221012212110065421010106000000000000000000000000000000000000000000000000000000000000031500000000000000000000 -T320230111111542286120220126WT@Y0TT9Z22222112204398100000000 -T12023011111154231924900404261120312110797300000000002606540040000000000000000000000000000000000222222000000002229012 -T2202301111115423191219930423WT@@@@W@02222212222223012216110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542319120180708WT@WZTTBP22222122204398100000000120160307WTT0TYW#W22222122204398100000000 -T12023011111154235220600404121120233110416300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111115423523219880718WTTP@B@ZZ2222121222221012212910006011079963000000000000000000000000000000000000000000000000000000000000581700000000000000000000 -T320230111111542352120110727WTTYPZBWB22221212207304100000000 -T12023011111154244122000407961120212110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111115424411220010918WT@0#ZTP02222212222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542441120220404WT@YT@TT@22221212204398100000000 -T12023011111154254822000409971120432110893300000000000006540810000000000000000000000000000000000222222000000002229022 -T2202301111115425483219610208WTTWWY9TY1222222222225012206210006011069925000000000000000000000000000000000000000000000000000000000000155100000000000000000000 -T320230111111542548120040713WTT@#TWPB12222222206311100000000 -T320230111111542548120130913WTTTTTZT#12222222206304100000000120120202WTTPZZ9##12222212206305100000000 -T12023011111154257425900402831110213110611300000000000004590060000000000000000000000000000000000222222000000692219012 -T2202301111115425741219840307WT@BY#Y0W2221222222223012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542574120070502WT@ZWB9#W22212212204309100000000 -T12023011111154260025900403551120213110611300000000200005280020000000000000000000000000000000000222222000000002229012 -T2202301111115426001219980401WTTWW@@#91222222222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542600120190123WT@PWPY#P12222222204398100000000 -T12023011111154275224500405781120313110740300000000005005280040000000000000000000000000000000000222222000000002229012 -T2202301111115427521219850509WT@WZTZ9Z2222212222223012211110055523010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542752120150112WT@Z90PY@22222122204398100000000420100323WT@TB@T0#22222112104305108220000 -T12023011111154279124700406742120132210258300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115427915219770402WTTYPW0ZP2222212222221013212112310023069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111154282024200409731120313110766300000000093106540500000000000000000000000000000000000222222000000002229012 -T2202301111115428201219810722WT@@Y00BB2222211222225012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542820120150223WTTW@9Z#W22222112204398100000000120130901WTTBW@0#922222122204302100000000 -T12023011111154288022700408351120313110835300000000475006210560000000000000000000000000000000000222222003200012219072 -T2202301111115428801219740507WT@P0P0002222212222225012216110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542880120080411WTT#P@TZZ22212222204308100000000120070113WT@@B0W0T12212212204309100000000 -T12023011111154299123700414331120233120000300000000000004170680000000000000000000000000000000000222222000000002229022 -T2202301111115429913219870512WT@ZY@BBB2222211222222012213120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111542991120160212WT9TT99@Z22222112207398100000000 -T12023011111154302825600413441120212110348300000000000003160580000000000000000000000000000000211122222000000012219012 -T2202301111115430281219950118WTT@Z#YB02221222222221012212120590123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543028120150323WT@YYTY#B22212222204398100000000 -T12023011111154305322000413731120232110446300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111115430533219750307WTTP9ZTPW2221222122221012216110431713069900000000000000000000000000000000000000000000000000000000000000000000001511000000000000 -T320230111111543053120190126WT@0@P00Z22222122207398100000000 -T12023011111154308720800405141120233110516300000000000003840090000000000000000000000000000000000222222000000332219022 -T2202301111115430872219730326WT@B0TPZY2221221122215012213110006013109900000000000000000000000000000000000000000000000000000000000000000000000920001400000000 -T320230111111543087120050527WT@WT#B@922212212204312100000033 -T12023011111154321522000403351120212110611300000000000003160140000000000000000000000000000000211122222000000012219012 -T2202301111115432151219850904WTTY#PPW92222212222221012212110154523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543215120190927WT@YBYW#022222122204398100000000 -T12023011111154327124200404891120312110761118460000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111115432711219800718WTTYZYZ#@1222222222221012216110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543271120200307WT@W090W012222222204398100000000120140318WTTT#YWTB12222222204301100000000 -T12023011111154329924700405901110513111211300000000000006300040000000000000000000000000000000000222222000000002229012 -T2202301111115432991219860227WT@#ZWB#Z2222212222225012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543299120070324WT@#BT@PP22222122204309100000000120070324WTTP@ZZT#22222112204309100000000 -T320230111111543299120140926WT@@PY@Y912222212204303100000000120110512WTTZT#P0Z12222212204305100000000 -T12023011111154333023500408281120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115433302219740404WTTBZW9B02222212122215012216110680013109900000000000000000000000000000000000000000000000000000000000000000000000659027500000000 -T320230111111543330120090301WTT@ZT90B22222122204306100000000420080901WTT@@#WPB22222112104308109140000 -T12023011111154335320600402141120523111199300000000000008880080000000000000000000000000000000000222222000000002229012 -T2202301111115433531219890323WT@0ZT#9Z2222211222221011212190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115433531219910127WTT#0T9@W2222212222221011212190283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543353120090727WT@@0Z@0Y22222122204306100000000 -T320230111111543353120180913WT@ZBTY0T22222112204398100000000120140322WT@9W0@0022222112204301100000000 -T12023011111154344722000407091120523111116300000000000008430140000000000000000000000000000000000222222004400012219012 -T2202301111115434471219870522WT@0YPP@T2222121222221011212990114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115434471219820323WT@@B@B9Z2222122222221011205910144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543447120180321WT@ZWZZZW22221222204398100000000 -T320230111111543447120210307WT@Y#Z0YT22222222204398100000000120200101WTTBZZTBW22221212204398100000000 -T12023011111154351921600403391110233120000300000000000001420500000000000000000000000000000000000222222000001902219021 -T2202301111115435193219570205WT@#9P0TP2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000964000000000146 -T320230111111543519120090704WTTYPWPY922222112206307100000050 -T12023011111154353323500410671120213110598300000000003005280060000000000000000000000000000000000222222000000002229012 -T2202301111115435331219870501WT@@Z9@@T2222212222223012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543533120200913WT@ZW@###22222112204398100000000 -T12023011111154361823500411471120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115436181219880907WT@W@ZBT02222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543618120190927WT@@#@Z9T22222112204398100000000 -T12023011111154369620600414161120313110776300000000000506540040000000000000000000000000000000000222222000000002229012 -T2202301111115436961219860407WT@PYT@0#2122222222223012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000208 -T320230111111543696120110427WT@BWZZ#Y21222222204305100000000120100913WT@BP#0T021222222204306100000000 -T12023011111154371922000405841120423111034300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111115437191219800914WT@PB@ZZ02222211222222011213290085223011800000000000000000000000000000000060000000000000000000000000000000000000000000000000900 -T2202301111115437191219840513WTTZ0Y0YB2222212222222021213290085223011800000000000000000000000000000000060000000000000000000000000000000000000000000000000000 -T320230111111543719120150201WTT#BPBYT22222112204301200000000120120313WTT9T#BPP22222112204303200000000 -T12023011111154372220600404121120433110939300000000000005280810000000000000000000000000000000000222222000000002229022 -T2202301111115437222219740323WT@BZTP0Y2222211222212012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000061600000000 -T2202301111115437222219920304WT@00ZWW92222212222212022212190045613089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111543722120170127WTTB#WW0Z22222112205398100000000120130907WT@ZB#B#922222112204301100000000 -T12023011111154380825600414971120313110740300000000349006540040000000000000000000000000000000000222222000000002229012 -T2202301111115438081219830308WTTTWZ0ZY2222212222225012212110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543808120220421WTT0W@@ZP22222112204398100000000120130205WT@B0ZB#@22222122204303100000000 -T12023011111154392124900405371120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115439213219650426WT@BB09BT2122222222225012211110431713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543921120070201WT@WWT@TP21222222206307100000000 -T12023011111154393820800405141120213110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111115439381219730923WT@#9BPW@2222212222221012212111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111543938120050309WT@Y@PTTY22222112204311100000000 -T12023011111154408422000412691120712111480300000000000011650440000000000000000000000000000000000222222000000002229012 -T2202301111115440841219890427WTT0PZPB#2221222222221012211120451523011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111544084120070107WTTYZ#9BB22212222204308100000000120070107WTTPBZWZZ22212212204308100000000 -T320230111111544084120100713WT@TTW#BP22212212204305100000000120080121WT@0WT#ZY22212212204307100000000 -T320230111111544084120180727WTTT@@ZYY22212212204398100000000120160726WTTW9Y0PW22212212204398100000000 -T12023011111154427624700406701120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115442762219890523WT@0BB@092222212222211012210110006011089913000000000000000000000000000000000000000000000000000000000000090600000000091400000000 -T320230111111544276120130123WT@P#0YY922222122204303100000050120110913WTTTT9TYW22222112204306100000050 -T12023011111154431122000408891120213110611300000000002505280190000000000000000000000000000000000222222000000002229012 -T2202301111115443111219970723WTTZTWTT#2222122222221012211110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544311120210727WTTZ0PTZ012221212204398100000000 -T12023011111154431821000414221120213110611300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111115443181220000702WT@@0#ZT#2222212222221012208110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544318120210107WT@@BPTT@21222212204398100000000 -T12023011111154435325900402721120413110740300000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111115443531220000223WTTBBZ0Y01222212222221012210190134723011400000000000000000000000000000000000000000000000000000000000000212800000000000000000000 -T2202301111115443532219930704WT@00TTWP1222211222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544353120210913WT@#B@TWW12222112204398100000000120190721WTTZYBTB912222122204398100000000 -T12023011111154441525900402121120333120000111360000000005280660000000000000000000000000000000000222222000000002229022 -T2202301111115444153219530402WTT0WT9##2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000057900001631000000000000 -T320230111111544415120160923WTTY0BT@W22222122206398100000000120120224WT@BWZT@W22222112206302100000000 -T12023011111154444222000410051120323110786300000000007006540020000000000000000000000000000000000222222000000002229012 -T2202301111115444421219950421WT@#9B@ZB2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115444421219900412WT@TPT0B#2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544442120190721WTTP#PTB022222112204398200000000 -T12023011111154446124100413561120613111434300000000000008880660000000000000000000000000000000157222221000000002229072 -T2202301111115444611219850921WT@0BW#PB1222222222223012211120620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544461120090704WTT#9W0W912222112204306100000000 -T320230111111544461120140709WT@YB99YB12222222205303100000000420110202WT@#ZBTZY12222212104305109140000 -T320230111111544461120180201WT@WP9#9@12222212204398100000000120170213WT@9PWZYT12222222204398100000000 -T12023011111154448322000412971120232110516300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111115444833219610207WT@T9YBPP1222222122224012209110006013069900000000000000000000000000000000000000000000000000000000000000000000001189000000000103 -T320230111111544483120050323WT@00YYZ#11222222206309100000000 -T12023011111154462124200402501120512111199300000000121508880070000000000000000000000000000000000222222000000002229072 -T2202301111115446211219830305WT@#BT9Y92122222222225012212120630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544621120070123WT@BP0@WT21222212204309100000000120060421WTTZ0PWW#21222212204311100000000 -T320230111111544621120180921WT@0YB@YW21222222204398100000000120160712WTT990BBT21222222204301100000000 -T12023011111154471124200413921120333110598300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111115447112219810713WT@YYBT9P2222211222225012212910025813079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544711120070723WT@9TPY9W22222112204304200000000120050426WT@9TPY9W22222122204311200000000 -T12023011111154475622000409872120213210611300000000080005280020000000000000000000000000000000000222222000000002229032 -T2202301111115447561219810305WT@Z9P@WY2212222222224012216210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544756120170427WTTZP9YBZ22122222204398200000000 -T12023011111154476823500414281120233120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111115447685219630213WT@T#W@W92222212222221012210110006013069900000000000000000000000000000000000000000000000000000000000000107500000000000000000000 -T320230111111544768120070121WTTBP90W922222122208310100000000 -T12023011111154485025900402831120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115448502219770223WT@0YP@Z92222212222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111544850120040527WT@TZW@BW22222112204311100000000 -T12023011111154491825900402631120433110835300000000000006540330000000000000000000000000000000000222222000000002229022 -T2202301111115449182219890721WTTYW0B0#1222212222223012212910065413079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544918120080212WTT@@B#WP12122222204309100000000 -T320230111111544918120180714WT@W@WW#Y12222112204398100000000120120701WT@BB9Z@B12222112204304100000000 -T12023011111154497525900402721120533110376300000000050004170110000000000000000000000000000000000222222000000002229022 -T2202301111115449752219940901WT@YYBT9P1222222222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111544975120220504WTT0W90@Z12222112204398100000000420160326WT@YYBT9P12222212204398900000000 -T320230111111544975420120912WT@YYBT9P12222212204303900000000420110201WT@YYBT9P12222212204305900000000 -T12023011111154509924700405901120233120000300000000002504170160000000000000000000000000000000000222222000000002229022 -T2202301111115450993219830123WTT0T@TT02222212212225012212110006013069900000000000000000000000000000000000000000000000000000000000000625300000000000000002015 -T320230111111545099120050318WTTT009YB22222122209310100000000 -T12023011111154510322000400281120212110516300000000000004170520000000000070006000000000000000000222222000000002229012 -T2202301111115451031219890308WT@BZ#W9Z2122222222221012210110530723011400000000000000000000000000000000000000000000000000000000130000000000000000000000000000 -T320230111111545103520130408WTT0T@Y0T21222212104302109140000 -T12023011111154525225000406022120233210376300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111115452523219890708WT@YYBT9P1122221222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111545252120050923WTT0Y#@#911222212207309200000000 -T12023011111154529724200414351120433110704300000000070006540210000000000000000000000000000000000222222000000002229022 -T2202301111115452972219720708WT@YYBT9P1222222222224012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111545297120060312WTTP@Z9#B12222212204308100000000 -T320230111111545297120110412WTT0WP99Z12222212204304100000000120080318WTTBW#ZT012222212204306100000000 -T12023011111154532820600402141120233120000300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111115453283219760126WTT9@09992222212222225012213110303013069900000000000000000000000000000000000000000000000000000000000000374100000000000000000000 -T320230111111545328120120201WT@PWP@WY22222112206303100000000 -T12023011111154539622000406271120312110752300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111115453961219840304WT@Z##PYP2122222222221012209110950023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111545396120170409WT@0BWWYW11222222204398100000000120100908WT@BZ#YWT11222222204305100000000 -T12023011111154540022700408351120823111691300000000000012890130000000000000000000000000000000000222222000000002229012 -T2202301111115454001219890927WTT@9#@9@2222221222222011212290144621011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115454001219940423WTTYTB0@@2222222222222021207290144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111545400120110713WTTTW9TBZ22222222204304200000000120070112WTTB@BWY922222212204307200000000 -T320230111111545400120160301WTTB#@WYB22222212204398200000000120130318WTTPTZ9@Y22222222204302200000000 -T320230111111545400120190102WT@YBZ@9P22222222204398200000000120170312WTT0@Z@Z@22222222204398200000000 -T12023011111154553822000411551120613111339300000000000010090730000000000000000000000000000000000222222000000002229072 -T2202301111115455381219920702WTTT##0ZP1122222222221012211110740023010900000000000000000000000000000000000000000000000000000000070000000000000000000000000156 -T320230111111545538120080727WT@BTTYB@12222212204309100000000 -T320230111111545538120100222WTTW@PZ0W11222222204307100000000120080727WTTP#Y0ZZ12222212204309100000000 -T320230111111545538120160726WTTY0Z00#11222222204398100000100120120313WTT#ZZW##12222212204304100000000 -T12023011111154565123500410671120423110959300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111115456511219870421WT@ZPTB9Z2222211222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115456511219930926WT@PP90PP2222212222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111545651120170423WTTBP@PB922222112204398200000000120150709WTT0W#TB022222112204301200000000 -T12023011111154569722000408891120212110517300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111115456971219790712WTT90Y#@B2222212222221012208111610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111545697120110921WT@W9PT@022222112204304100000050 -T12023011111154579422700407441120533110835300000000000006540060000000000000000000000000000000000222222000000002229022 -T2202301111115457942219900527WT@YYBT9P1222212222221012210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115457942219870905WT@YYBT9P1222211222221102210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111545794120090104WTT09BY@@12222112204305100000000 -T320230111111545794120140923WT@ZWBPYT12222122204302100000000120120402WT@P@@0#@12222122204304100000000 -T12023011111154585020800414151120423110939300000000002007710060000000000000000000000000000000000222222000000002229012 -T2202301111115458501219880218WTTB9P##91222212222221011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115458501219890401WT@#90W#92222211222221011213190045621011800150000000000000000000000000000000000000000000000000000360000094100000000000000001113 -T320230111111545850120210104WT@P@Z#B012222122204398100000000120180326WTT#0P@@T12222122204398100000000 -T12023011111154589920600414871120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115458993219860912WTTZZ9YPW1222211222222012216110006013069900000000000000000000000000000000000000000000000000000000000000750300000000000000000000 -T320230111111545899120070426WT@@TBPZW22222112206308100000000 -T12023011111154595624200403941120212110549106790000050000010270000000000000000000000000000000000222222000000002229012 -T2202301111115459561219860923WT@B00@YZ1222212222221012211120273311011800200000000000000000000000000000040000000000000000000000110000124600000000000000000000 -T320230111111545956120150414WT@#WWZ0T12222122204301100000000 -T12023011111154604522000413731120723111480300000000000011650040000000000000000000000000000000000222222000000002229012 -T2202301111115460451219480423WT@9TPY9W2221221222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115460451219750423WT@9TPY9W2221222222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111546045120050723WT@9TPY9W22212212204310200000000 -T320230111111546045120100713WT@9TPY9W22212212204305200000000120080101WT@9TPY9W22212212204308200000000 -T320230111111546045120180423WT@9TPY9W22212212204398200000000120120912WT@9TPY9W22212212204303200000000 -T12023011111154607022000406191120532111057300000000000007710890000000000000000000000000000000000222222000000002229022 -T2202301111115460703219820901WT@@00#BY2221222222221012211120790011069935000000000000000000000000000000000000000000000000000000000000312800000000000000000000 -T320230111111546070120180427WT@B#00ZB22212222207398100000000120130304WTTZWZ#B@22212212207302100000000 -T320230111111546070120210911WT@9TPY9W22212222207398100000000120190722WT@BZ@0BZ22212222207398100000000 -T12023011111154609422000403481120232110376300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111115460942219880501WTT##Y0Y02222122222223012216910124813079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111546094120190912WT@WZY@T@22221212204398100000000 -T12023011111154614721400408021120233110548300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115461472219830312WTT@9TZWY2222211222211012209120174313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111546147120090311WTTTT9B9P22222112204303100000000 -T12023011111154624020600409821120213110611103600000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111115462401219820118WTTZ9T#9W2222212222225012214110114923011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111546240120200714WTT@@YZYT22222112204398100000000 -T12023011111154634122000408561120213110598300000000004005280090000000000000000000000000000000000222222000000002229012 -T2202301111115463411219790707WTTYTWZ#P2222212222225012214120105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111546341120110714WTTBZPPWW22222122204306100000000 -T12023011111154639325900402631120313110835300000000010006540690000000000000000000000000000000000222222000000002229012 -T2202301111115463931219920105WT@@WWP@P2222212222225012211110441621011720000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111546393120210309WT@P0#B@Y22222122204398100000000120170726WT@W@9#9022222112204398100000000 -T12023011111154642621000411362120423210932300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111115464261219820507WT@9TPY9W1222221222222011203290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115464261219810311WT@9TPY9W1222222222222021202290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111546426120110724WT@9TPY9W12222212204305200000000120080312WT@9TPY9W12222212204308200000000 -T12023011111154644425600400661120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115464442219690913WTT0ZP#YP2222212222211012210110461413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111546444120110413WT@ZZ#ZBT22222122204305100000000 -T12023011111154647822000405821120233120000300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111115464783219470727WT@WBYPWT2222212122225012215110006013069900000000000000000000000000000000000000000000000000000000000000000000001022000000003000 -T320230111111546478120170123WT@0BP#PB22222122206398100000050 -T12023011111154654625000401171120213110611300000000010005280380000000000000000000000000000000000222222000000002229012 -T2202301111115465461219960312WT@#T090@2222212222223012212110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111546546120170727WTTBW#0WZ22222112204398100000000 -T12023011111154665525000400401120233120000108400000067704170170000000000000000000000000000000000222222000000002229022 -T2202301111115466553219580418WT@BZ9TZY2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000591300000000000000000000 -T320230111111546655120160113WT@W9#WYP22212222209398100000050 -T12023011111154668620600404491120533111583300000000000007710030000000000000000000000000000000000222222000000002229022 -T2202301111115466863219890312WTTW#P0W@2222212222212012214120312913069900000000000000000000000000000000000000000000000000000000000000000000000000091300000000 -T320230111111546686120200527WTT#B#Z#B22222122207398100000000120130901WTT9Z#P@P22222112207303100000000 -T320230111111546686120220112WT@YTBT#022222122207398100000000120210412WT@0WZ9WP22222112207398100000000 -T12023011111154669222000411281120232110516300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111115466922219850418WT@Y9TPPT2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111546692120180418WT@#BZTB#22222122204398100000000 -T12023011111154673222000409991120323110678300000000000004790200000000000000000000000000000000000222222000001752219012 -T2202301111115467321219900927WT@TPW#YY2122222222221011212110164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115467321219870318WT@T#9ZZB2222211222221011212190075321011812000000000000000000000000000000000000000000000000000000000000070000000000000000000000 -T320230111111546732120210305WTT0P0YTW21222222204398100000000 -T12023011111154701320600414871120313110776300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115470131220010512WTTBBY@@02222212222225012212110025821011732000000000000000000000000000000000000000000000000000000000000227000000000000000000000 -T320230111111547013120220721WT@P#BB9Y22222112204398100000000120190412WT@T0BB9P22222112204398100000000 -T12023011111154702623500411471110233110516300000000000002010010000000000000000000000000000000000222222000000002229021 -T2202301111115470263220000212WTTW9WT@T2222212222221012216110006011069907000000000000000000000000000000000000000000000000000000000000043000000000000000000000 -T320230111111547026120080226WT@YPYP#922222122207308100000000 -T12023011111154706824200404421120313110766125650000000006540060000000000000000000000000000000000222222000000002229042 -T2202301111115470681219950412WT@9WB#BP2222212222221012209110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547068120200201WTTPWYB0#22222122204398100000000120170109WT@0W#WYT22222122204398100000000 -T12023011111154711222000408811110413111034300000000000006960010000000000000000000000000000000000222222000000002229012 -T2202301111115471121219830313WTT99T##P2221222222221012212110065422011700000000000000200004000000000000000000000000000000000000010000000000000000000000000000 -T320230111111547112120100423WTTY9YYYW22212212204307100000000 -T320230111111547112120220512WT@BW0YY022212222204398100000000120110727WT@W#PY@W22212222204306100000000 -T12023011111154714121000414221120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111115471411219980313WTT0#PTZP1222222222221012216110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547141120220718WTT#ZZPZ#12222122204398100000000 -T12023011111154714825900406081120232110291300000000000001660990000000000000000000000000000000000222222000002512219022 -T2202301111115471483219520421WTTZWY@0Z2122222122224012212110006011069939000000000000000000000000000000000000000000000000000000000000315200001549000000000299 -T320230111111547148120040327WTT@P99T921222212206311100000299 -T12023011111154722324200410001120313110766126000000000006540580000000000000000000000000000000000222222000000002229012 -T2202301111115472231219960702WT@T#00@Z2221222222221012212110461421011741000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547223120200127WTT@YBBBW22222112204398100000000120180523WTTYPWYZ@22212222204398100000000 -T12023011111154727420600412561120323110766300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111115472741219910204WT@WZZBB#2222212222221011211110233723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115472741219890908WTTW099@02222211222221011212190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547274120090302WT@ZTZTWW22222122204307100000000 -T12023011111154738524700405901120313110740300000000000003920480000000000000000000000000000000261122222000000012219012 -T2202301111115473851219910401WT@BBY#PY1222222222221012212110481223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547385120100304WT@P9ZP9912222212204304100000100120080127WT@9YWWWW12222212204307100000000 -T12023011111154738625600414551120312110740300000000003806540100000000000000000000000000000000000222222000000002229012 -T2202301111115473861219910927WT@9#0ZY01222212222221012216110322823011700000000000000000000000000310000000000000000000000000000000000000000000000000000000000 -T320230111111547386120170304WTTYB@TTP21222222204398100000000120120318WT@BW@00@12222122204303100000318 -T12023011111154741925000414191120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111115474191219760113WTT#PB0#Z2222211222222011212290055521011956000000000000000000000000000000000000000000000000000000000000539900000000000000000000 -T2202301111115474191219840713WTT@@@TYY2222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547419120080421WTT0PT@9Y22222122204307200000000120060213WT@W#WYP922222112204310200000000 -T12023011111154748125900406081120313110835300000000000006540230000000000000000000000000000000000222222000000002229042 -T2202301111115474811220020411WTTZW0@ZZ1222222222221012209110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547481120220413WTTZYPPB912222222204398100000000120200108WTT00TZ9012222222204398100000000 -T12023011111154760825900406841120233110376300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115476082219830501WT@YYBT9P1222222222225012206910006011079901000000000000000000000000000000000000000000000000000000000000002600000000000000000000 -T320230111111547608120050924WT@0W@P@912222212204311100000050 -T12023011111154765524200404891120522111195300000000000008880620000000000000000000000000000000000222222000000002229072 -T2202301111115476551219840704WTT0TZBT#2122222222221011212110650023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115476551219790704WTTY0BZ991222221222221011212190650023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547655120040322WT9TT@WTP11222222204309100000000 -T320230111111547655120100412WT@Z9#Z@911222222204305100000000120080514WTT#BYBTZ21222222204307100000000 -T12023011111154778324700413762120213210557300000000000505280060000000000000000000000000000000000222222000000002229032 -T2202301111115477831219690707WT@9TPY9W1222211222224012213210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547783120050918WT@9TPY9W22222112204311200000000 -T12023011111154782920600414771120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111115478291219930423WTT0PWZBY2221222222225012207210085223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111547829120140321WT@YBZYW922212212204301200000000 -T12023011111154788020200409311120513111116300000000005007710160000000000000000000000000000000000222222000000002229012 -T2202301111115478801219730926WTT@#BYTY2222211222222012212110481221011936000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T2202301111115478802219750722WT@#ZWPTP2222212222212022212190471313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111547880120050302WT@@WY#BZ22222122204310100000000 -T320230111111547880120110727WT@P##0Z922222112204305100000000120090711WTTBTT@ZB22222112204306100000000 -T12023011111154796624200403511120213110611300000000100204420020000000000000000000000000000000000222222000000862219012 -T2202301111115479661219820522WTT@YPBW92222211222225012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547966120120708WT@@@ZZ0922222122204305100000000 -T12023011111154798225900402631120733120000300000000000006540060000000000000000000000000000000000222222000000002229022 -T2202301111115479823219860224WTTW0@#W92222212222222012212110610011069940000000000000000000000000000000000000000000000000000000000000479600000000000000000000 -T320230111111547982120090411WTT#90W9P22222122209306100000000420060105WTTBZZYPT22222112204309100000000 -T320230111111547982120120314WTTWB0ZZW12222212209302100000000420120426WTTBZT0Y922222112204303100000000 -T320230111111547982420190708WT@P@@9T@22222112204398100000000120140207WTTB9@BYT12222212209302100000000 -T12023011111154798922000412691120523110737300000000000005140460000000000000000000000000000000343122222000000312219012 -T2202301111115479891219860505WTTBZZP0P2222212222221011216110471323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000029 -T2202301111115479891219810705WT@Y##Y@P1222211222221011212190342623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111547989120070522WT@PY9BYP22222112204308100000050 -T320230111111547989120150513WTTWWWWYZ12222112204398100000000120110404WT@#B#YB#12222112204304100000000 -T12023011111154809020600401641120213120000300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111115480901220030927WT@W00W@P2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111548090120220927WT@W0B#0W22212112204398100000000 -T12023011111154810525200410591110233120000300000000000001610010000000000000000000000000000000000222222000000002229021 -T2202301111115481053219820421WT@ZZP@BZ2222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000501200000000000000000000 -T320230111111548105120110324WTTZ9Y0WZ22222122207301100000000 -T12023011111154814321700407751120233120000300000000027404170990000000000000000000000000000000000222222000000002229022 -T2202301111115481433219530102WTT999WZ@2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000885000000000000 -T320230111111548143120070107WTT#W@@Y922222112206308100000000 -T12023011111154842824200409731120213110611300000000010005280080000000000000000000000000000000000222222000000002229012 -T2202301111115484281219670408WTT9@#TY01222212222223012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111548428120050401WTTWTTTYP12222122204312100000000 -T12023011111154846825900402631120313110835118650000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111115484681220000327WTT@9YW@@2222212222221012212110124823010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111548468120210201WT@@W00PY22222112204398100000000120200109WT@9YYPZB22222112204398100000000 -T12023011111154848925600413441120313110835300000000000006540300000000000000000000000000000000000222222000000002229012 -T2202301111115484891219910426WTTWYTZP#2112222222221012212120402023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111548489120190913WTT@TYB0B22122212204398100000000120160307WT@@T@Z##22222122204398100000000 -T12023011111154857023500408281120313110835300000000000001230070000000000000000000000000000000000222222000005312219012 -T2202301111115485701219830301WT@BBYZ@P2222211212225012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000531 -T320230111111548570120070713WT@ZZ0YZT22222122204308100000000120050518WT@B0009022222122204311100000000 -T12023011111154859625000400451120213110516300000000015003850150000000000000000000000000000000000222222000000322219042 -T2202301111115485961219890112WTTZ#WY0Z2122221222221012216110006023011800000000000000000000000000000000030001000000000000000000000000000000000000000000000032 -T320230111111548596520170411WTT@YT#9P21222212104398106090000 -T12023011111154861021700407751110433110347300000000000003400010000000000000000000000000000000000222222000000002229021 -T2202301111115486103219680522WTTW#0ZYZ2222212222215012212110322813069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111548610120100712WT@B@BBZT22222222206306100000000 -T320230111111548610520170302WT@Z9ZB9921222222106398109140000120130426WTT##9TYW22222222206304100000000 -T12023011111154863024200404891120313110777300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111115486301219730123WTTZZZBBP1222222222221012212910065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111548630120080723WT@PZ@WZY22222222204308100000177120060924WT@Y9T0TT12222212204311100000177 -T12023011111154868822000408891120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111115486881219900507WTT9PB9#92222221222222011212290045623011800000000000000000002000000000000000000000000000000000000390000000000000000000000000000 -T2202301111115486881219970708WT@T#0@0Y2222222222222021212290045623011800000000000000000000000000000000120002000000000000000000020000000000000000000000000000 -T320230111111548688120200712WT@BP@T9922222222204398200000000120180904WTTYBPPP@22222212204398200000000 -T12023011111154873524100402401120212110611109570000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111115487351219970126WTTWWTZ9W2222212222221012210110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111548735120200326WTT#9@9T012222222204398100000000 -T12023011111154888122700408351120312110740300000000001005280330000000000000000000000000000000000222222000000002229012 -T2202301111115488811219910327WTTZY#9W92222212222221012201110342621011700210000000000000000000000000000300001000000000000000000000000136400000000000000001703 -T320230111111548881420190421WT@BWZTPZ22222122104398109140000120140401WTT9ZB9@#22222112204302100000000 -T12023011111154894722000411971110113110376300000000000001880010000000000000000000000000000000000222222000000002229012 -T2202301111115489471219980713WT@Y#PW@P2222212222221013212190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111154895022700413181120212110560113020000000005280330000000000070003000000000000000000222222000000002229012 -T2202301111115489501219990401WT@P#0TY@2222212222221012212110342621011720000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111548950120200326WTTP0BZTW22222122204398100000000 -T12023011111154900522000402321120323110611300000000052603920270000000000000000000000000000000261122222000000012219012 -T2202301111115490051219600123WT@0@099Y2212221222222011212190283223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115490051219720704WTT#9P@0B2222122222222021212190392123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111549005120090214WT@YBTW@W22221212204307100000000 -T12023011111154904223500410671120312110766300000000000106540470000000000000000000000000000000000222222000000002229012 -T2202301111115490421219800723WT@T@W9#P1222212222221012212120550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111549042120110401WT@0909T912222112204306100000000120080408WT@9B#Y#912222122204309100000000 -T12023011111154909522700413181120923111902300000000350014160110000000000000000000000000000000000222222000000002229012 -T2202301111115490951219850726WTT9@ZB9Z2222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115490951219840411WT@W#0T9@2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111549095120050713WTTZTTBZZ22222122204310200000000 -T320230111111549095120090105WT@B9#ZWP22222122204307200000000120070422WT@ZB9Y0W22222122204309200000000 -T320230111111549095120150212WT@TBWZW922222122204301200000000120120401WT@W#9#YP22222112204305200000000 -T320230111111549095120210923WTTTZYB@#22222112204398200000000120180923WTT9B#@YY22222112204398200000000 -T12023011111154925720700402051120413110972300000000000507710040000000000000000000000000000000000222222000000002229012 -T2202301111115492571219920312WTTZ9T@902222212222225012216110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111549257120120714WTT@#@W9T12222122204302100000000 -T320230111111549257120160312WTTZTY9@012222112204398100000000120140921WTT09ZYPB12222122204398100000000 -T12023011111154927225600414552110213210516300000000000002950010000000000000000000000000000000000222222000000002229032 -T2202301111115492725219910327WT@YYBT9P2222211222222013212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115492721219860218WT@9TPY9W2222212222222023212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111154928720800411931120313110740300000000001406540060000000000000000000000000000000000222222000000002229012 -T2202301111115492871219850518WT@ZW0PY@1222212222223012214110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111549287120190304WTTB#@9@P12222122204398100000050120150104WTTTT#Z#022222112204398100000050 -T12023011111154940124100402401120233120000300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111115494013219770223WTTBBZ0@02222212222222012212110035713069900000000000000000000000000000000000000000000000000000000000000096700000000000000000000 -T320230111111549401120080726WTT#T#ZZB22222122207307100000005 -T12023011111154940922000409871120432110893300000000000006540520000000000000000000000000000000000222222000000002229022 -T2202301111115494092219850727WT@@0TWZY2221222122211012210110065413109900000000000000000000000000000000000000000000000000000000000000000000000796013800000000 -T320230111111549409120110105WTT#TWYWZ22212222204305100000000 -T320230111111549409120150305WT@PZ#@WW22212212204398100000000120130127WT@BB#@Z922212222204303100000000 -T12023011111154945322700408351120213110611116450000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115494531219880721WTTP#P#0W2221221222221012216110045623011900000000000000000000000000490003000000000000000000000000050000000000000000000000000000 -T320230111111549453120160905WTTW9#@PY22212212204301100000000 -T12023011111154948622700413181120313110740300000000000005280790000000000000000000000000000000000222222000000002229012 -T2202301111115494862219640712WT@BTT0BW1222222222225012212110006013051400000000000000000000000000000000000000000000000000000000000000000000000000000000000700 -T320230111111549486120200912WTTY@YZTY22222122208398100000000120190722WTTZT0PY#22222122209398100000000 -T12023011111154950125900402831120432110939300000000000005280730000000000000000000000000000000000222222000000002229022 -T2202301111115495012219870707WT@9T0PWP1222222222215012212110065413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111549501120120427WT@PZPPZT12222122204304100000000 -T320230111111549501420160124WTTB0ZWYP12222222104398109140000120130905WT@@#Z9BP12222112204303100000000 -T12023011111154955023500404821120233110516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115495502219860514WTTZP9BBW2222212222211012211110750013089900000000000000000000000000000000000000000000000000000000000000000000000000091600000000 -T320230111111549550120080113WTT9PWP9022222122204308100000000 -T12023011111154960423500402711120323110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111115496041219870121WT@9TPY9W2222211222222011215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115496041219890312WT@9TPY9W2222212222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111549604120200412WT@9TPY9W22222112204398200000000 -T12023011111154963520800410751120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115496353219600427WTT@ZZB0Y2222211222222012212190105013069900000000000000000000000000000000000000000000000000000000000000619200000000000000000000 -T320230111111549635120040722WT@@#B9WZ22222112206312100000000120040722WTTPB0B0W22222122206312100000000 -T12023011111154978322000411981120113110348300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111115497831219860314WT@0YZ9YY2212212222225013213110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111154989820800410751120233120000101870000020004170680000000000000000000000000000000000222222000000002229022 -T2202301111115498983219650114WTTP0WP##2222212222222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111549898120150901WTTP@PT#922222112206301100000000 -T12023011111155002225000400451120113110240300000000002004170020000000000070002000000000000000000222222000000002229042 -T2202301111115500221220020518WTTZ#@W9Z2122222222221013212190006023011400000000000000000000000000000000000000000000000000000000220000000000000000000000000000 -T12023011111155009322000409411120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115500931219970721WTT0@TT#Z2221222222223012213210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000996 -T320230111111550093120200407WT@@BW@#022212212204398100000000 -T12023011111155018723700414331120423110959300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111115501871219910313WT@9TPY9W2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115501871219920312WT@9TPY9W2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550187120150511WT@9TPY9W22222122204302200000000120120418WT@9TPY9W22222122204305200000000 -T12023011111155020422000411981120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111115502041219980501WTTWTY0WY2221222222221012209110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550204120220718WT@9TPY9W22222212204398100000000 -T12023011111155021124100402401120523111199300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111115502111219740922WT@@T#B9P2222211222222011213290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115502111219740313WTT9B9WPP2222212222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550211120050708WTTP0WZT@22222112204310200000000 -T320230111111550211120110105WTTPW9T0T22222112204305200000000120070407WTT9@@BBP22222122204309200000000 -T12023011111155026124700406701120323110766300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111115502611219860921WT@TZBBT02222212222222011215210095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115502611219720118WTTZ0P@YY2222211222222021215290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550261120210201WT@B#9BTB22222122204398200000000 -T12023011111155034320600402132120233210557300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111115503433219680326WTTWZTBZW2222122222222012211910501011079907000000000000000000000000000000000000000000000000000000000000037500000000000000000000 -T320230111111550343120170911WT@TP0WZ922221222206398900000000 -T12023011111155034423500404341120233120000300000000000003150990000000000000000000000000000000000222222000001022219022 -T2202301111115503443219720912WTTY@P0#W2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550344120070527WT@W9P90022222122207309100000111 -T12023011111155038324200404051120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115503831219880426WTT#ZZ9#T2222212222225012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550383120120924WT@YPP#P@22222122204304200000000 -T12023011111155042223500414911120213110611300000000000005280880000000000000000000000000000000000222222000000002229072 -T2202301111115504221219940912WTTZWB9BT2222212222221012211110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550422120150704WT@ZZ0T@W22222112204398100000050 -T12023011111155050925200409361120433110704300000000010006190090000000000000000000000000000000000222222000000352219022 -T2202301111115505092219840402WT@YYBT9P1222222222221012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000034 -T320230111111550509120170522WT@WBPP@W12222122204398100000284 -T320230111111550509120220211WTT@PZT9B12222122204398100000000120210912WT@0T90#Y12222122204398100000000 -T12023011111155052522000400461120212110516300000000000000010100000000000000000000000000000000000222222000000002229072 -T2202301111115505251219900326WT@9Z0YZ02221222222221012212110700011011800210000000000000000000000000000000000000000000000000000130000149700000000000000000195 -T320230111111550525520140114WT@9PT#T#22212212104301109140000 -T12023011111155056222000410051120213110618300000000004005280020000000000000000000000000000000000222222000000002229012 -T2202301111115505621219950911WTTWBT0@91222222222223012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550562120180323WT@WWT9WY12222212204398100000000 -T12023011111155060725900403711120213110611300000000000003820530000000000000000000000000000000000222222000001462219012 -T2202301111115506071219800112WTTYB#@PZ2222212222221012216110530721011810000000000000000000000000000000000000000000000000000000000000058000000000000000001265 -T320230111111550607120080211WT@YWT@@T22222122204306100000000 -T12023011111155072325800409911120312110835108620000000006540130000000000035012000000000000000000222222000000002229012 -T2202301111115507231219850727WT@ZWWY092122222222221012213110263421011937000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111550723120140127WT@0#Z99022222212204301100000000120120907WT@##TWY922222222204304100000000 -T12023011111155089524200410001120613111339300000000000006050300000000000000000000000000000000403122222000000012219072 -T2202301111115508951219920723WT@PZ#0TW2221222222223012216110910023011300000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111550895120110705WTT@WB0YP22222212204305100000000 -T320230111111550895120130901WT@@9B00Y22222222204304100000000120130107WTTPTT09@22212212209304100000000 -T320230111111550895120160301WT@#T9ZT#12222212204398100000000120150918WTTPZ@YZ922212212204302100000000 -T12023011111155103020800414651120613111339127420000000303010440000000000000000000000000000000000222222000001772219012 -T2202301111115510301219890713WTTB@PBWP2222212222223012212110441623011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111551030120080713WT@Z0ZZP012222112204305100000385 -T320230111111551030120170318WT@YBPB#922222112204398100000000120120304WTTZTY0P922222112204398100000323 -T320230111111551030120220912WT@9TPY9W22212212204398100000000120190426WT@BTZ@#Y22222122204398100000000 -T12023011111155103622900405641120212110568104360000000000780210000000000000000000000000000000000222222000004502219012 -T2202301111115510361219630923WT@Z0Z9BY2222211222223012212110233721011812000000000000000000000000000000000000000000000000000000000000090000000000000000000000 -T320230111111551036120180101WT@P9ZYB#22222112204398100000000 -T12023011111155111824700408301120233120000300000000002704170050000000000000000000000000000000000222222000000002229022 -T2202301111115511183219680126WTTBBB9B@2222212212223012213110006013069900000000000000000000000000000000000000000000000000000000000000570100000000000000001987 -T320230111111551118120150904WT@YBTZ#912222122206398100000000 -T12023011111155120025900405231120333120000300000000006505280320000000000000000000000000000000000222222000000002229022 -T2202301111115512003219660701WT@P@W#PT2222212222222012216910006013079900000000000000000000000000000000000000000000000000000000000000711600000000000000000000 -T320230111111551200120090112WTTYP0##@22222112206306100000000120070727WTT@90B##22222112206308100000000 -T12023011111155124224200403941120413110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111115512421219890212WTTB0#TWT2222122222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551242120110109WT@Y#BTZZ22221212204305100000000 -T320230111111551242120220427WTTZ0T##P22221212204398100000000120190921WT@PBTPTB22221212204398100000000 -T12023011111155131425100407671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115513143219830513WTTZT@WZW2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000279500000000000000000000 -T320230111111551314120060412WTT00P0#W22222112207309100000050 -T12023011111155133320800411931120213110611300000000000005280230000000000070002000000000000000000222222000000002229012 -T2202301111115513331219920723WTTTYTZ9P2222212222223012216120243622011700000000000000200002000000000000000000000000000000000000060000000000000000000000002057 -T320230111111551333120180121WT9TT9@#Y22222122204398100000000 -T12023011111155135825100407351120233110493300000000000004170980000000000000000000000000000000000222222000000002229022 -T2202301111115513582219850426WTT#TB9WY2222212222215012212110055513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111551358120060301WTTB0#@W@22222112204308100000000 -T12023011111155137520200409311120212110611300000000000005280440000000000000000000000000000000000222222000000002229012 -T2202301111115513751219680427WTTBWWW#W2222211222225012216110481223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111551375120050108WTTP9B@P#22222112204310100000000 -T12023011111155138524200411401120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111115513851219980104WTTTBW@9@2222212222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111155139520600404491120312110804300000000000006540650000000000000000000000000000000000222222000000002229072 -T2202301111115513951219920901WTTY0PPP02222212222221012216110940023010900000000000000000002000000000000000000000000000000000000220000000000000000000000004252 -T320230111111551395120150304WT@YP0#YB22222122204398100000050120150304WTTBBPTBB22222122204398100000050 -T12023011111155145120800414152120132210247300000000005005280990000000000000000000000000000000000222222000000002229022 -T2202301111115514515219670902WT@ZT#@TT2222212222225013215111720023069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111155147721700406141120423110939300000000020007710270000000000000000000000000000000000222222000000002229012 -T2202301111115514771219910402WT@0@YTPP2122222222222011216190411921011800200000000000000000000000000000000000000000000000000000000000119300000000000000001905 -T2202301111115514771219950918WT@T@0ZY@2222211222222021216190342621011900200000000000000000000000000000120001000000000000000000000000122500000000000000000000 -T320230111111551477120180227WT@#W9B0#22222112204398100000000120140723WTTBBP9WT22222112204302100000000 -T12023011111155155022000406261120213110599300000000000003160050000000000000000000000000000000211122222000000012219012 -T2202301111115515501219890424WTT9#@Y#@2222212222223012212110124823010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551550120200108WT@9TPY9W22222122204398100000000 -T12023011111155158720500410641120523111116300000000335705920040000000000000000000000000000000000222222000002962219012 -T2202301111115515871219810704WT@P9B@WY1222212222222011214190055521011814000000000000000000000000000000000000000000000000000000000000083300000000000000000000 -T2202301111115515871219870101WT@WYZ@902222211222222021213190055521011806000000000000000000000000000000000000000000000000000000000000035000000000000000000000 -T320230111111551587120150412WTTW@TZTZ12222112204301100000000 -T320230111111551587120190311WT@YZP9#W12222122204398100000000120170912WT@B9TT9Z12222112204398100000000 -T12023011111155162823500407611120423111034300000000002707710020000000000000000000000000000000000222222000000002229012 -T2202301111115516281219820218WT@TYY0T#2222211222222011215290035722011800000000000000180000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115516281219800207WTTZ0#0BW2222212222222021215290035722011800000000000000170001000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551628120180726WT@PZZ9@Y22222112204398200000000120110907WT@WTT#T922222112204305200000000 -T12023011111155165122000405821110612111434300000000000003260270000000000000000000000000000000000222222000005622219072 -T2202301111115516511219930127WTTZ99YPP2221212222221012211111070023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551651120130101WTTBZPWZ022212112204303100000106 -T320230111111551651120180908WTTP9W0Y@22212112204398100000000120170902WT@TWYY#B22212112204398100000000 -T320230111111551651420150718WT@WW9YBP22212112104398109140000120140104WTT#Z90Y@22212122204302100000106 -T12023011111155165322000411551120213110611300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111115516531219990511WT@T#PZ002221222222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551653120210111WT@B9Z9Y9222122 2204398100000000 -T12023011111155171025900414481120733111479300000000000010090990000000000000000000000000000000000222222000000002229022 -T2202301111115517103219730404WT@P@99BB2222212222222012212110006011069907000000000000000000000000000000000000000000000000000000000000050000000000000000000000 -T320230111111551710120070723WT@0T#P@921222222209309100000000120060211WTTZPW#@T21222222209310100000000 -T320230111111551710120120527WT@@@@#9021222222209303100000000120090121WTTPTTPPW21222222209307100000000 -T320230111111551710120130927WTTB#9@9@21222222209302100000000120120727WT@0B0WTT21222212209303100000000 -T12023011111155172824200403511120313110766300000000261506540310000000000000000000000000000000000222222000000002229072 -T2202301111115517281219760321WTT0YW@@Y2221222222223012212110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551728120080212WTTYPZP9@22212222204308100000000120060407WTTZBWZ@922212222204310100000000 -T12023011111155180320800411991120213120000300000000040005280240000000000000000000000000000000000222222000000002229012 -T2202301111115518031220010713WTTBPY#TY2222212222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551803120200712WT@##WTWT22222112204398100000000 -T12023011111155184022000414461120333110740300000000010505280990000000000000000000000000000000000222222000000002229022 -T2202301111115518401219940527WTTBZ0WPZ2222222222221012213111080023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551840120190527WTT9@T#0Z22211222204398100000000420140418WT@T9YYTZ12222222104302105460388 -T12023011111155187425000409641120333110740300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111115518743219690727WTTPWPW#92222212222213012210110045613069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111551874120200713WTTW0PBYY22222122206398100000000120190927WT@W00ZT#22212212206398100000000 -T12023011111155194720600400871120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115519473219660401WTTTBBPTZ2222212222215012212120273313069900000000000000000000000000000000000000000000000000000000000000000000000000091400000050 -T320230111111551947120100202WT@Z@Y9TW22222122206306100000000 -T12023011111155197620600414252120323210835300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111115519761219840904WTT@YZZYW2222121222221011210990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115519761219920712WT9TT@Z0#2222122222221011210990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111551976120190723WT@Y0#90#22221212204398900000000 -T12023011111155203220500412201120213120000300000000000005240070000000000000000000000000000000000222222000400002229012 -T2202301111115520321220020713WT@P909Z02222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111552032120220923WT@BP0WZB22222122204398100000000 -T12023011111155205720800410751120213111350300000000000005280040000000000000000000000000000000000222222000000002229072 -T2202301111115520571219890227WT@@P@Z#@2222212222223012213110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111552057120220318WT@9TPY9W22212112204398100000000 -T12023011111155211822000410051120512111116105770000000000940270000000000000000000000000000000000222222000007942219072 -T2202301111115521181219900318WT@WTZB0P2221222222225012212110990023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000008 -T320230111111552118120110923WT@TT0#ZZ22212222204305100000050120090927WTTB@YYTP22212222204307100000000 -T320230111111552118120210401WT@@PPBT922212212204398100000785120140907WT@PBW9@W22212222204302100000050 -T12023011111155227320600400871120432110959300000000000005490990000000000000000000000000000000000222222000001052219022 -T2202301111115522732219820126WTTB9YWZZ2222212122211012216110760013109900000000000000000000000000000000000000000000000000000000000000000000000707022700000000 -T320230111111552273120070304WTT90TPY@22222122204308100000105 -T320230111111552273120150704WT@ZW@B9W22222122209301100000000120140107WTT@9ZPBP22222112209302100000000 -T12023011111155232425600406521120713111480102950000000010090550000000000000000000000000000000000222222000000002229072 -T2202301111115523241219870909WTTWB90WZ2221222222221012212110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111552324120150413WT@B#TPT912212222204301100000000120090921WTT#W@0YY22212222204307100000000 -T320230111111552324120220127WT@9TPY9W22212222204398100000000120160118WTTBB@W0B12212222204398100000000 -T320230111111552324420080207WT@BWWZP#22212222104308109140000120070405WT@BTW#@022212212204309100000000 -T12023011111155233324200404891120413110939300000000002004900840000000000000000000000000000000163222122000000012219072 -T2202301111115523331219900923WT@WZW0P@2221222222221012211120840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111552333120080424WT@Z9P@9W22212212204309100000000 -T320230111111552333420140104WT@Z#ZTBW22212222104302109140000120100418WTT@ZT9@W22221222204307100000000 -T12023011111155233524200407311120233120000300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111115523353219510913WT@#9Z0PB2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002813000000002759 -T320230111111552335120090102WTTY#0#ZB22222122206306100000000 -T12023011111155239920600406751120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111115523991219980404WTTY9###B2222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111552399120210118WT@YP9@@B22222122204398100000000 -T12023011111155243323500407161120433110835300000000000006540120000000000000000000000000000000000222222000000002229022 -T2202301111115524332219830511WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111552433120050727WTTPBZP@W12222212204311100000000 -T320230111111552433120130308WT@#T999P12222222204303100000000120090408WT@Z9TP9Z12222222204308100000000 -T12023011111155246020800414651120232110494300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111115524602219690321WT@WYZ@9Z2221222222213012215110144613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111552460120050711WTT9P#@#W22212212204311100000000 -T12023011111155248020600409771120233110485300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111115524803219900426WTT9T09PZ2222212222221012213110006011069925000000000000000000000000000000000000000000000000000000000000149500000000000000000000 -T320230111111552480120200227WTTBTZ@WZ22222122209398100000000 -T12023011111155254324200409731120313110740124730000000006160030000000000000000000000000000000000222222003200062219072 -T2202301111115525431219970722WT@Z@9PYY1222212222221012211110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000004 -T320230111111552543120190326WT@ZZB#BY12222212204398100000000120170111WT@#PYTZP12222122204398100000239 -T12023011111155256525600413441120233110281300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111115525653219560104WTTTBZB992222212122225012212910006011079919000000000000000000000000000000000000000000000000000000000000135100001144000000000000 -T320230111111552565120050405WTTZ@9#ZB12222212206311100000000 -T12023011111155281622000407241120212120000300000000000005280180000000000000000000000000000000000222222000000002229072 -T2202301111115528161219750313WTTBTYTP92221222222221012209111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111552816120050307WTTBT0#0#22212222204311100000000 -T12023011111155291424200409091120333110704300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111115529143219780902WT@90YTZW2221221222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111552914120160926WTTPZZ#Z#22222122206398100000000120150413WTT0P9@@Z22222122206301100000000 -T12023011111155309424200403941120213110611300000000000005280450000000000000000000000000000000000222222000000002229012 -T2202301111115530941219870504WTTYW#W092222212222221012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111553094120190224WTT0W9PZT12222112204398100000000 -T12023011111155323322000407411110512111116139630000041502670310000000000000000000000000000000000222222000005042219072 -T2202301111115532331219820405WTTYWZZ002221222222221012211111080021011808000000000000000000000000000000000000000000000000000000000000061100000000000000000089 -T320230111111553233120140201WT@YWT#WZ22212212204303100000000420120304WTTZ90PYP22212212104304109140000 -T320230111111553233120200918WTT0TB#B022212212204398100000000120170907WTTP09Z@Z22212212204301100000000 -T12023011111155323622000408891120433110939300000000000005280680000000000000000000000000000000000222222000000002229022 -T2202301111115532362219910905WTT9ZB#0W2222212122211012210120006013109900000000000000000000000000000000000000000000000000000000000000000000000789014500000000 -T320230111111553236120120712WT@0@ZTTT22222112204303100000100 -T320230111111553236120170912WTTPZT@PZ22222122204398100000000420170912WTT#TPT##22222112104398108220000 -T12023011111155323824200404701120213110611300000000110005280040000000000000000000000000000000000222222000000002229012 -T2202301111115532381219870711WTTB0WW#T2222212222221012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111553238120070212WT@WZ09WT22222112204309100000000 -T12023011111155328222000408891120213110611300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111115532821219880427WTT#B@@@P2222212222225012216110105023010900000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111553282120120218WTT@#PTPP22222112204304100000200 -T12023011111155333323500405981120233110516300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111115533335219650126WT@P0##9Y1222222222221012212110006011069967000000000000000000000000000000000000000000000000000000000000415400000000000000000000 -T320230111111553333120210114WT@@T0##W12222122209398100000000 -T12023011111155335924200408391120433110893300000000000006540960000000000000000000000000000000000222222000000002229022 -T2202301111115533593219750122WT@#9BTYY2222212222225012212110134711069924000000000000000000000000000000000000000000000000000000000000211500000000000000000000 -T320230111111553359120060912WT@YY#YP#22222122207310100000000 -T320230111111553359120090412WT@ZB99@@22222122207307100000000120080411WT@YZ###Z22222122207308100000000 -T12023011111155337122000403891120213110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111115533711219990121WT@Z#PTZ92221212222221012211110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111553371120210904WTT09PZBP22212212204398100000000 -T12023011111155347422700413181120213110611300000000000005280310000000000000000000000000000000000222222000000002229012 -T2202301111115534741219910427WTTWBZPBP1222212222221012213110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111553474120120301WTT@@BPZ922222122204304100000000 -T12023011111155357724200409091120413110939300000000002007710090000000000000000000000000000000000222222000000002229012 -T2202301111115535771219890127WTTY09@ZZ2221221222221012211110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111553577120080301WTT099BZY22212222204308100000000 -T320230111111553577120160313WTTWPYY0922212222204398100000000120090309WTTPT90W#22212222204306100000000 -T12023011111155360221000411361120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115536023219900407WTTYTT@TY1221222222222012216110451513069900000000000000000000000000000000000000000000000000000000000000371600000000000000000000 -T320230111111553602120150901WTTZB0W#Y22222112207398100000000120130126WT@B9TTYP22222122207398100000000 -T12023011111155364224100402401120512111116300000000000008880120000000000000000000000000000000000222222000000002229012 -T2202301111115536421219940708WTTB@W9002222212222221012212120124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111553642120160923WT@BW0YT@22222112204398100000000120150723WTT@T0TP#22222112204398100000000 -T320230111111553642120180318WTTW0W0Z922222122204398100000000120170727WTTWTWY9Y22222112204398100000000 -T12023011111155365420800410781120233120000300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111115536543219560324WTT@BY@B02222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000460000000000000000000000 -T320230111111553654120080724WT@WTW0W922222112206307100000000 -T12023011111155369225000403231120233120000300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111115536923219740711WT@TWWYZ02222211222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111553692120170713WTTB##P#Z21222222209398100000000 -T12023011111155381620600402141120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111115538161220020309WTTP9Z@9T2222212222221012206110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111553816120210926WT@9099ZP22222212204398100000000 -T12023011111155394422000411282120313210835300000000000006540080000000000000000000000000000000000222222000000002229032 -T2202301111115539441219800204WTTYWZ9#02222212222223012212210095123011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111553944120130423WT@YPP0@Y22222112204304200000000120050323WTTZWBPPY22222112204311200000000 -T12023011111155401122000409871120723111595300000000000011650130000000000000000000000000000000000222222000000002229012 -T2202301111115540111219700926WT@0Z0#TY2222221222222011298290144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115540111219780127WTT#T#@#P2222222222222021298290144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111554011120040709WTTT@@90W22222212204311200000000 -T320230111111554011120080709WT@T@B9WT22222212204306200000000120060707WT@W99W@022222222204308200000000 -T320230111111554011120140707WTTYWZY##22222212204301200000000120100707WT@90T#PP22222212204304200000000 -T12023011111155401223500402711120213110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111115540121219880312WT@9BZTBY1222222222221012216110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000001079 -T320230111111554012120190324WT@ZYZ90022222112204398100000000 -T12023011111155426625000406021120233110516300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111115542663219760318WT@BBW0Y92222212222221012212110006011069931000000000000000000000000000000000000000000000000000000000000229900000000000000000000 -T320230111111554266120100918WTTWT9@9922222112209306100000050 -T12023011111155442025900402121120233120000300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111115544205219740412WT@#T#YZ@2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000331700000000000000000000 -T320230111111554420120080311WTTTYBW@922222122209306100000000 -T12023011111155460820800410781120233120000300000000025004170990000000000000000000000000000000000222222000000002229022 -T2202301111115546083219680923WT@W#Z9#W2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000930000000000000000000000 -T320230111111554608120100322WTTY0#0PZ12222112206305100000000 -T12023011111155482024200403941120323110835300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115548201219800412WTT@@0@WZ2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115548201219840413WTTYY@BW02222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111554820120110102WT@T9ZZ@@22222112204305200000000 -T12023011111155483625900402831110233110376300000000000001210930000000000000000000000000000000000222222000007672219021 -T2202301111115548362219810123WT@YYBT9P1222222222221012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111554836120050118WT@@9#WBZ12222112204311100000000 -T12023011111155496624200401241120233110446300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111115549663219950324WT@Z0T#PB2222212222222012210110006011069916000000000000000000000000000000000000000000000000000000000000148100000000000000000808 -T320230111111554966120200112WTTBT9@ZB22222112207398100000000 -T12023011111155498225600413441110113110357300000000021503900080000000000000000000000000000000168222221000000002229012 -T2202301111115549821219860212WTT#P@9P@2222212222221013216110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111155498622000407961120312110749300000000000006210760000000000070018000000000000000000222222003200012219072 -T2202301111115549861219940723WTTYPT0#B2222212222221012213110770023011400000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111554986120190712WTT#0#0TZ22222112204398100000000120140218WTT9#PZZW22222112204302100000100 -T12023011111155500420300400971120233110516300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111115550043219590301WT@#YZ9#B2222212122214012210110700011069912000000000000000000000000000000000000000000000000000000000000072800000977091400000000 -T320230111111555004120120212WT@#WPW@Z22222122209304100000000 -T12023011111155504220600402141120233110536300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115550422219870908WTT00#@9P1222122222215012212110560413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111555042120090721WTTB9P9ZP12221222204308100000000 -T12023011111155507322000412231120313110611300000000000002880110000000000000000000000000000000352222122000000142219072 -T2202301111115550731219840409WT@P9B9T#2222212222221012212120720023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000013 -T320230111111555073120080411WTT9WTZ#Y22222112204307100000000120060204WTTZ@#ZY#22222122204309100000000 -T12023011111155510022000409971120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111115551003219660926WT@TP0Y@@2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111555100120060418WT@Y909P022121122206310100000000 -T12023011111155535025000414191120633111269300000000000010090990000000000000000000000000000000000222222000000002229022 -T2202301111115553503219640408WTTB9B#WT1222212222225012216110382211069920000000000000000000000000000000000000000000000000000000000000393100000000000000000000 -T320230111111555350120040909WT@WZ#B0911222222206312100000000 -T320230111111555350120060707WT@9#0WB#11222222206310100000000120050318WTT@#TZ0Y11222222206310100000000 -T320230111111555350120120402WTTB#@9T@11222212206304100000000120100311WT@PY#Y9#11222212206305100000000 -T12023011111155541325900402631120433110939300000000000006540090000000000000000000000000000000000222222000000002229022 -T2202301111115554132219880726WT@@BYT9T1212222222215012207110680013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000117 -T320230111111555413120090726WT@#W0TZB12222112204308100000000 -T320230111111555413120130109WT@@PWTTB12222122204302100000000120110421WTT@@#PTP12222122204304100000000 -T12023011111155562225100407671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115556223219910721WT@Z@0@0Z2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111555622120050907WT@W0B0ZP22222112207311100000000 -T12023011111155567924200414021120423110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111115556791219940304WTTPWZZTZ2222211222222011212210055523011800000000000000000000000000130000000000000000000000000000000000000000000000000000000000 -T2202301111115556791219860204WT@0B#BTB2222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111555679120200123WT@9TPY9W22222122204398200000000120050207WT@TZ@YPB22222112204312200000000 -T12023011111155568322000400461120112110376300000000000004170110000000000000000000000000000000000222222000000002229012 -T2202301111115556831219770422WT@BT#ZB02221212222225013213110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111155568924200403941120412110939111860000000003680180000000000000000000000000000000000222222000004032219012 -T2202301111115556891219850123WTT#T0P0Z1222212222221012211110560421011812000000000000000000000000000000000000000000000000000000000000080600000000000000000000 -T320230111111555689120100926WTTYWB##012222222204307100000000 -T320230111111555689120210123WT@0W0Z@#12222222204398100000000120200514WTTTPTWZ@12222212204398100000000 -T12023011111155570422000411551120412110893121820000060002610160000000000000000000000000000000000222222000005102219072 -T2202301111115557041219820423WT@@9WB9Y2221222222223012212210650021011813000000000000000000000000000000020000000000000000000000000000101800000000000000000000 -T320230111111555704120060423WT@PPTTWW22212212204309200000000 -T320230111111555704120190304WT@Y9YWYW22212212204398100000000120120127WTTT9Y#W#22212212204303200000000 -T12023011111155575424100414321120233120000300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111115557543219600102WT@ZZ@@T01222212122224012208120006013069900000000000000000000000000000000000000000000000000000000000000000000001251000000000000 -T320230111111555754120160105WT@BZ00#Z12222122206398100000000 -T12023011111155578522000409991120213110607113250000000001190050000000000000000000000000000000000222222000004092219012 -T2202301111115557851219970304WT@#WZ0B@2221222222221012216110065421011720000000000000000000000000000000000000000000000000000000000000081700000000000000000000 -T320230111111555785120210212WTTWW09W@22212222204398100000000 -T12023011111155581922000413691120333110376300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111115558192219850408WT@YYBT9P1222212222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115558192219950114WT@YYBT9P1222211222221102212990006011079910000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111555819120200327WTTYBYPZ912222122204398100000000 -T12023011111155583725900402231120232120000300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111115558373219660127WT@@@PZY@2222222222223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111555837120180212WTT#BZ0#Z12222122209398100000000 -T12023011111155585524700408361120413110939300000000082504620110000000000000000000000000000000308122222000000012219012 -T2202301111115558551219870724WTTPTZ99P2222211222221012212110124823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111555855120150408WT@#WT@#W22222112204301100000000 -T320230111111555855120180908WTT9TTB@P22222122204398100000000120160912WT@W9T@ZW22222112204398100000000 -T12023011111155597023900400641120413110972300000000000007710360000000000000000000000000000000000222222000000002229072 -T2202301111115559701219910702WT@0WPPZ02222212222221012212110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111555970120100304WT@YYT9Z#22222122204306100000000 -T320230111111555970120150712WTT#@TYBY22222122204302100000000120120105WT@9@9#P922222122204304100000000 -T12023011111155598722000400811120512111116131290000005007710740000000000000000000000000000000000222222000000002229072 -T2202301111115559871219910901WT@Z9W#ZY1222122222221012212120750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111555987120160401WTTWT0@ZW12122222204398100000000420090713WT@TB0PYT22212222104306109140000 -T320230111111555987120180124WT@Y#Y0WB22222122204398100000000120180124WTTZZZTW#11222222204398100000000 -T12023011111155601620600414251120212110594300000000050005280260000000000000000000000000000000000222222000000002229012 -T2202301111115560161219790721WT@@00TBW2212222222225012208110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556016120040312WTTYB#TT922122212204310100000050 -T12023011111155602024700406701120313110786300000000000003920350000000000000000000000000000000261122222000000012219012 -T2202301111115560201219910904WT@Z0@0#B2222211222221012211110362423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556020120170514WTTZZPTB922222122204398100000000120150526WTT99Z9YP22222122204398100000000 -T12023011111155603224200414851110233110245300000000000004760010000000000000000000000000000000000222222000000002229042 -T2202301111115560321219890126WTTBYBPB@2222122122222012212920006023109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111111556032120140301WT9TT@0YB22221222204398100000000 -T12023011111155612920800411991120323110766300000000020006540050000000000000000000000000000000000222222000000002229012 -T2202301111115561291219830207WT@TYWBWB2222211222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115561291219900504WT@BBYWP92222212222222021204290065423011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111556129120160322WTT9PPZ@@22222112204398200000000 -T12023011111155614524200414721120333110611300000000000001540340000000000000000000000000000000000222222000003742219022 -T2202301111115561452219830727WT@YYBT9P1222222222221012206910006011079907000000000000000000000000000000000000000000000000000000000000100000000000000000000000 -T320230111111556145120080307WTTY#@0Z022222122204307100000000120070701WTTZ0WY0922222222204310100000000 -T12023011111155621424200414021120312110766300000000000006540260000000000000000000000000000000000222222000000002229012 -T2202301111115562141219940721WT@@@##Z@2122222222221012212110273323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556214120220313WT@PP@0BB22212212204398100000000120180913WTTZ#PT0Y22222122204398100000000 -T12023011111155643025600414551120212110611300000000002505280230000000000000000000000000000000000222222000000002229012 -T2202301111115564301219760123WT@Y#P@PP2222212222223012216110362423010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111556430120120405WT@YB9W0Z22222112204304100000000 -T12023011111155645822000411981120233110598300000000010005280240000000000000000000000000000000000222222000000002229022 -T2202301111115564581219970323WTTB90YBP1222222222221012212110253523099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556458120120921WT@##@#WP12221212204303100000000 -T12023011111155649222700413181120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115564923219730426WTTBWPTP#2222212222225012213110144613069900000000000000000000000000000000000000000000000000000000000000300600000000000000000000 -T320230111111556492120080407WTT@9B#YB22222112207308100000000 -T12023011111155651622000409411120412110893300000000069807710690000000000070017000000000000000000222222000000002229072 -T2202301111115565161219830108WT@PBB9YW1222222222223012213110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556516120050921WTTWWYBT#12222222204311100000000 -T320230111111556516120200301WTTB#YW#012222222204398100000000120140221WTT9#W#PB12222122204302100000000 -T12023011111155652522000414501120213110598101070000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115565251219990212WT@9Z0B9Z2222212222221012216110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556525120200907WTTW#Y@#W22222112204398100000000 -T12023011111155666020600400871120623111359300000000000010090020000000000000000000000000000000000222222000000002229012 -T2202301111115566601219830101WT@9TPY9W2222211222222011216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115566601219800301WT@9TPY9W2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556660120110711WT@9TPY9W22222122204304200000000120100923WT@9TPY9W22222122204306200000000 -T320230111111556660120180411WT@9TPY9W22222112204398200000000120130512WT@9TPY9W22222122204303200000000 -T12023011111155670620600412562110233210611300000000000004170010000000000000000000000000000000000222222000000002229021 -T2202301111115567063219930423WT@Y9W09T2222221222225012208110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556706120090212WTTP9PP#Z22221212207307200000000 -T12023011111155676622000413731120213110598120300000000905280050000000000000000000000000000000000222222000000002229012 -T2202301111115567661219950708WTTT#BTPW2221222222223012212120065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000278 -T320230111111556766120210326WT@WPP#YT22212222204398100000000 -T12023011111155676822600405051120233110611300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111115567682219880724WTT9W#9092222212222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111556768120160308WTT@PY#TB22222122204398100000000 -T12023011111155678520600414091120232110281300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111115567852219850309WT@0BPBZ92222212222211012212110194113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111556785120080113WT@TW@TYY22222112204307100000000 -T12023011111155682124200407311120213110611300000000000002530150000000000000000000000000000000000222222000002752219012 -T2202301111115568211219970321WTT@#@Z#92222212222221012211110164421011819000000000000000000000000000000000000000000000000000000000000055000000000000000000000 -T320230111111556821120210326WT@PTPB@#22222122204398100000000 -T12023011111155689922000413732120423211034300000000030007710050000000000000000000000000000000000222222000000002229032 -T2202301111115568991219910926WTTPZ0@#P2222121222222011212290006021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115568991220020121WT@#@BT9B2222122222222021298290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111556899120220701WT@9TPY9W22221212204398200000000120210101WT@0WW#ZW22221212204398200000000 -T12023011111155712023500404341120313110835124360000000006540200000000000000000000000000000000000222222000000002229072 -T2202301111115571201219840324WTT#P00YW2222212222223012212111020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111557120120100307WTT9#P@B@22222112204304100000000120060312WT@TWY#B#21222122204308100000000 -T12023011111155717222700413181120113110376300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111115571721219850101WT@PYW@PZ2222212222221013214190075323011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T12023011111155719721000403201120613111395300000000000010090340000000000000000000000000000000000222222000000002229072 -T2202301111115571971219880401WT@TBWT092222212222223012212110930023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111557197120140112WT@PZYZB012222122204301100000000 -T320230111111557197120160322WT@@T#B#B22222122204398100000000120150427WTTYY@9@Y12222112204398100000000 -T320230111111557197120200307WT@@Z9#0#22222112204398100000000120190211WT@@00BWB22222112204398100000000 -T12023011111155720620600404121120333110740300000000000002690990000000000000000000000000000000000222222000001482219022 -T2202301111115572062219650421WT@W090T02122212122213012208110006013109900000000000000000000000000000000000000000000000000000000000000000000000891004300000000 -T2202301111115572065220040327WT@WZZZW01121212122211043210190006013109900000000000000000000000000000000000000000000000000000000000000000000000068086600000000 -T320230111111557206120060418WTTY##PT011212122204309100000148 -T12023011111155727022000412971110433110598300000000000005280010000000000000000000000000000000000222222000000002229021 -T2202301111115572702219930301WT@YYBT9P1222222222221012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111557270420130201WT@YYBT9P12222222204304900000000 -T320230111111557270120200123WTTY@#Z@W12222212204398100000000120170127WT@90T09W12222222204398100000000 -T12023011111155747922500410151120213110598300000000000203760050000000000000000000000000000000000222222000001522219012 -T2202301111115574791219770727WTT#ZZTP#2222211212225012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000152 -T320230111111557479120070327WTTZT9ZYW22222112204309100000000 -T12023011111155749322000411981120433110598300000000589705280330000000000000000000000000000000000222222000000002229022 -T2202301111115574932219680513WT@YYBT9P1222211222221012211990006011079958000000000000000000000000000000000000000000000000000000000000358400000000000000000000 -T2202301111115574932219660121WT@YYBT9P1222212222221022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111557493120060913WT@ZB0PTY22222112204309100000000120040713WTT#ZB#W#22222112204310100000000 -T12023011111155758820400409801120233110557300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111115575883219780107WT@#YZ#9T2222212222225012213110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111557588120130407WT@BZ@PZ022222122207303100000000 -T12023011111155763322000400921120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115576331219930327WT@9TPY9W1222212222223012211210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111557633120140927WT@9TPY9W22222112204302200000000 -T12023011111155775825900402631120333110516300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111115577583219710308WT@YYBT9P1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111557758120090926WTTTP@B0P12222212206307100000025520080901WTT@90#TY12222212106307108670025 -T12023011111155777422000413691110312110549300000000000003920180000000000000000000000000000000261122222000000012219072 -T2202301111115577741219860101WTTTZZ#W#2221212222221012212110950023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111557774120120507WT@#@WPB922222212204304100000000120100713WT@@W09T922212222204306100000000 -T12023011111155777925900402831120212110598300000000000505280150000000000000000000000000000000000222222000000002229012 -T2202301111115577791219910311WT@ZP0WTY2122222222221012216110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111557779120210311WT@WPYB@#21222222204398100000000 -T12023011111155789323500408281120623111395300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111115578931219840523WTT990ZT92222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115578931219890507WTT0ZT@W02222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111557893120120404WTT0##@9P22222112204302200000000120100212WTTYW9@0P22222122204306200000000 -T320230111111557893120210124WT@##Y0P022222112204398200000000120150101WTTY#WWYY22222122204301200000000 -T12023011111155804022700407441120513111057300000000000008880380000000000000000000000000000000000222222000000002229012 -T2202301111115580401220010212WTT9@PYTP1222212222221012216110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111558040120190121WT@TYYT9Z22222112204398100000000120180123WTT#BT#TZ12222122204398100000049 -T320230111111558040120220327WTTPYTW9Y12222212204398100000000120200104WTT#@Y9ZB12222212204398100000000 -T12023011111155804222000411131120433120000300000000000006540210000000000000000000000000000000000222222000000002229022 -T2202301111115580423219650307WTT9PW#T@2222212222225012212110006011069937000000000000000000000000000000000000000000000000000000000000394100000000000000000000 -T320230111111558042120090726WT@B0PTZY22222112206306100000000 -T320230111111558042120160512WTT09@Z@#12222122206398100000000120120126WTTBBBBPP12222112206302100000000 -T12023011111155805424700406741120412110893300000000000007710290000000000000000000000000000000000222222000000002229012 -T2202301111115580541219780704WTTTBYZ#W2222222222225012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111558054120060413WTTPP0P0B22222222204310100000000 -T320230111111558054120170718WTTYPPWB@22222212204398100000100120070705WT@#TWYZY22222212204307100000000 -T12023011111155806224900404261120212110516300000000441405280650000000000000000000000000000000000222222000000002229072 -T2202301111115580621219930312WT@#9ZB@92222212222221012202110660021011800190000000000000000000000000000000000000000000000000000010000132300000000000000000000 -T320230111111558062120130126WT@PP@B@922222122204303100000050 -T12023011111155809222000411971120513111136300000000000008880150000000000000000000000000000000000222222000000002229012 -T2202301111115580921219800308WT@0WW#002222222222223012205210164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111558092120090418WT@@WB9BZ22222212204306200000000120070913WT@0TYBBB22222212204308200000000 -T320230111111558092120160107WT@@@TBT@22222212204398200000000120120307WTT#@#0YY22222212204302200000000 -T12023011111155820921700406141120333120000300000000000005280350000000000000000000000000000000000222222000000002229022 -T2202301111115582093219650921WTTZZZW0T1222211222222012214110006013069900000000000000000000000000000000000000000000000000000000000000683300000000000000000000 -T320230111111558209120110701WTTY0B@#B22222112206306100000000120070123WT@@@#BT022222122206310100000000 -T12023011111155846723500410672120213210611300000000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111115584671219800123WTTP9WY0B2222212222221012214210055523011800000000000000000002000000000000000000000000000000000000380000000000000000000000000000 -T320230111111558467120080418WTT0YBZ0922222122204308200000000 -T12023011111155847923900400641120233110516300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111115584793219450324WT@#@@@Z#2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001750000000000000 -T320230111111558479120050112WTTZZ@PZZ22222122206310100000000 -T12023011111155856824500405781120723111480300000000000006050120000000000035002000000000000000403122222000000012219012 -T2202301111115585681219900713WT@@90#@Y2222212222222011211110273323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115585681219860518WT@@@9#@P2122221222222021212190095123011800000000000000000001000000000000000000000000000000000000040000000000000000000000000000 -T320230111111558568120090922WT@T@#0@B22222112204307100000000 -T320230111111558568120120321WT@Y@9BBZ21222222204303100000000120110312WT@9YWYZT22222122204304100000000 -T320230111111558568120160422WTTY@@PZB21222212204398100000000420140927WT@##@T@Z21222222104302109140000 -T12023011111155858222000400581120233110611300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111115585823219690924WTTZ0TPW#2221222222225012216110045611069912000000000000000000000000000000000000000000000000000000000000069400000000000000000000 -T320230111111558582120100412WT@W9B@W#12212222206306100000000 -T12023011111155862224700407521120212110516300000000000004170540000000000000000000000000000000000222222000000002229012 -T2202301111115586221219870127WTTT@#Y902222212222221012212120550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111558622520170405WTTPYWBBY22222112104398109140000 -T12023011111155873823500412161120233120000300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111115587383219670909WTT0##@T#2222211222224012215110006013069900000000000000000000000000000000000000000000000000000000000000500000000000000000000000 -T320230111111558738120100709WTT9YW##922222112206306100000050 -T12023011111155877424100414321120433110611300000000000005280570000000000000000000000000000000000222222000000002229022 -T2202301111115587742219820907WT@YYBT9P1222212222221012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111558774120070702WTTY@WZT#12222112204307100000000 -T320230111111558774420110514WT@YYBT9P12222112204305900000000120090527WT@0Y9TPP12222122204306100000000 -T12023011111155884523500411471120333110835300000000000006540480000000000000000000000000000000000222222000000002229022 -T2202301111115588451219950701WT@P00PT#2222212222221012212110760023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111558845120200927WTT#WW9ZW22222122204398100000000120120227WTT@BWBBW22222112204304100000000 -T12023011111155889225800405061120533110740300000000000006540900000000000000000000000000000000000222222000000002229022 -T2202301111115588922219810211WT@YYBT9P1222222222221012203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115588922219530211WT@YYBT9P1222221222224102201990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111558892120050427WT@0TTZW912222212204311100000000 -T320230111111558892120130123WTT0#0B0912222222204303100000000120070513WTTPTY0@Z12222212204308100000000 -T12023011111155895221700406141120433120000300000000000005280350000000000000000000000000000000000222222000000002229022 -T2202301111115589523219520413WTTBT000@2222212122225012216110233713069900000000000000000000000000000000000000000000000000000000000000000000002277000000000000 -T320230111111558952120070923WT@YZ0T#W22222112206309100000050 -T320230111111558952120170527WTTT9Z#ZT12222122206398100000050520140127WTTWWP##Y22222112106301109140000 -T12023011111155901724200404422120523211005300000000550008490020000000000070002000000000000000000222222000000392219032 -T2202301111115590171219860708WT@PYT#Y#2222211222222011216190006022011900000000000000330004000000000000000000000000000000000000090000000000000000000000000000 -T2202301111115590171219880904WTTBPWYWP2222212222222021212190006021011803000000000000000000000000000000000000000000000000000000000000015500000000000000000000 -T320230111111559017120130423WTT@PWZ9P22222122204303100000000 -T320230111111559017120220524WTTZ09W#@22222112204398100000000120180318WT@@P0YBW22222122204398100000000 -T12023011111155911222000407831120313110670300000000000003050250000000000000000000000000000000000222222000003492219012 -T2202301111115591121220010326WTTZ@#0##2222222222221012211110253521011809000000000000000000000000000000000000000000000000000000000000069700000000000000000000 -T320230111111559112120210727WT@ZWTY9W12122222204398100000000120190323WTT90@BPY12122212204398100000000 -T12023011111155913122700413181120213110376300000000000002140100000000000000000000000000000000142122222000001722219012 -T2202301111115591311219770904WT@Z@@@TB2222211222221012212110114923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000170 -T320230111111559131120070207WT@P#T9YT22222112204309100000050 -T12023011111155914425900402721120313110376300000000000403920210000000000000000000000000000000211122222000000002229012 -T2202301111115591441219920307WTTPWW90B1222212222221012211120253523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111559144120220727WTTB@PY0B12222112204398100000000120160712WTT0TBP0Z12222212204398100000000 -T12023011111155938324700405901120323110835300000000018706540150000000000105006000000000000000000222222000000002229012 -T2202301111115593831219820727WTT09PT@T2222212222222011212110392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115593831219760301WTT##P9B@2222211222222021216190164423011800000000000000000001000000000000000000000000000000000000050000000000000000000000000000 -T320230111111559383120110726WTTW9YZPZ22222112204305100000000 -T12023011111155940323500411471120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115594031219910112WT@Y@W#B92222212222221012213120491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111559403120180421WT@000YBZ22222122204398100000000 -T12023011111155948725200410591120233120000300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111115594873219730721WTTB@0PY#2222212222223012210110451511069941000000000000000000000000000000000000000000000000000000000000364000000000000000000000 -T320230111111559487120150726WTTBZY9P012222112206398100000000 -T12023011111155957922700408351110112110291300000000000002940010000000000000000000000000000000000222222000000002229012 -T2202301111115595791219980721WTT#TWWTW1222222222221013212190025821011801000000000000000000000000000000000000000000000000000000000000000800000000000000000000 -T12023011111155978224100402401120313110763300000000003006540070000000000000000000000000000000000222222000000002229012 -T2202301111115597821219750305WTTZZ#PYZ1222212222221012213110085223011800000000000000000002000000000000000000000000000000000000160000000000000000000000000000 -T320230111111559782120140221WTTW0ZBWW12222122204302100000000120120726WTT#P0TWZ12222112204304100000000 -T12023011111155980521700407751120232110516300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111115598052219680307WTT0@WPYY2222212222215012212110880013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111559805120040318WT@Y#Z@0#22222122204311100000000 -T12023011111155980624200414021120233110516300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111115598063219580407WTTTB##9@2222222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001044000000000000 -T320230111111559806120050512WTTWW0#T022212212206310100000000 -T12023011111155993020600407031120233110516300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111115599303219700421WTT@TZWZ#2222212122215012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000880005400000000 -T320230111111559930120080723WT@W0BPBZ11222212206306100000000 -T12023011111155996122900405641120213110598300000000001805280140000000000000000000000000000000000222222000000002229012 -T2202301111115599611219970702WT@P@W@BY2222212222221012212110154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111559961120220401WTTPBYYY922222122204398100000000 -T12023011111156002022000405322120323210766300000000000006540170000000000000000000000000000000000222222000000002229032 -T2202301111115600201219900707WT@TTZB#B2222222222222011214290184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115600201219910402WT@9TPY9W1222221222222021214290184223011800000000000000000000000000000000080001000000000000000000000000000000000000000000000000 -T320230111111560020120170201WT@9TPY9W22222222204398200000000 -T12023011111156011222000413731120413110939300000000002007710220000000000035002000000000000000000222222000000002229012 -T2202301111115601121219900114WTT@@#BWY2222222222223012216110481221011801000000000000000001000000000000000000000000000000000000080000000000000000000000001670 -T320230111111560112120090511WT@ZYT#0W22112122204306100000100 -T320230111111560112120200314WT9TTZYTT22212122204398100000000120160218WTT##@T9#22212122204398100000000 -T12023011111156019024200403511110213110599300000000000003160010000000000000000000000000000000211122222000000012219012 -T2202301111115601901219890913WTTBTZWY02222212222225012216110342623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560190120050705WTT9TW9Y#22222112204310100000000 -T12023011111156025625800405801120233110516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115602562219700318WT@Y0P@W@2222211222213012212110025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111560256120060427WTT@@@Y0Z22222112204310100000000 -T12023011111156026324200414351110313110740300000000000001480010000000000000000000000000000000000122222000000002229012 -T2202301111115602631219870411WTTZ@YY9B2212222222225012216110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560263120110922WTTTWP@0#22122122204304100000000120100501WTTTYWP#022122122204306100000000 -T12023011111156032020600407031120213110446300000000002005280080000000000000000000000000000000000222222000000002229012 -T2202301111115603201220010709WT@P#@9BB2222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560320120210421WTTY@T@ZT12222122204398100000000 -T12023011111156044724200407271120213110598102620000001505280020000000000000000000000000000000000222222000000002229012 -T2202301111115604471219880422WTTTYTT@Y2222211222221012212110025823011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111560447120190404WT@T9#0PP12222112204398100000000 -T12023011111156050323500407161120333110634300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115605032219780221WTTTP0W0@2222212222212012213190095113089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T2202301111115605031219720314WT@B@B00Y2222211222222022216191620023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560503120050304WT@#9B0WB22222122204310100000000 -T12023011111156058321400408021120533110835300000000000006540170000000000000000000000000000000000222222000000002229022 -T2202301111115605832219820221WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115605832219820923WT@YYBT9P1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560583120060918WT@Z@W#@T12222222204308100000000 -T320230111111560583120210514WTT0PTB#W12222122204398100000000120110122WT@@B#B0P12222222204302100000000 -T12023011111156062322000413681120213110598109830000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115606231219930312WT@9TPY9W1222222222221012211210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560623120180214WT@9TPY9W12222212204398200000000 -T12023011111156077422000409871120213110618102920000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111115607741219930412WTT09TW902122222222221012212120075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000208 -T320230111111560774120220422WTTZ9P9@#21222212204398100000000 -T12023011111156086922000409411120423110835300000000000004620070000000000000000000000000000000308122222000000012219012 -T2202301111115608691219960107WT@00#W0@2222212222221011211190085223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115608691219810507WTTPY9W#Y1222211222221011210110085223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560869120200301WT@0@9PT@11222212204398100000000120160902WT@TZT9PP11222212204301100000000 -T12023011111156088423500407161110213110611300000000000004760050000000000000000000000000000000000222222000000002229012 -T2202301111115608841219750226WT@#B0WZW1222222222221012213110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560884120150527WT@YTY90Z12222212204301100000000 -T12023011111156093020600414161120423110959300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111115609301219980423WT@0Y0B#W2222211222222011214290015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115609301220010427WTTW@YY#W2222212222222021216290015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111560930120210721WT@PB#WT022222112204398200000000120200713WTT0@W0Y@22222112204398200000000 -T12023011111156097824700409322110213210516300000000000000670010000000000000000000000000000000000222222000000002229032 -T2202301111115609781219930713WT@9TPY9W2222212222222013212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115609785219920218WT@YYBT9P2222211222222023212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111156099222000408891120232110516300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111115609922219870111WT@99ZWBY2221222222211012212120134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111560992120120707WT@BYT9PT22212212204303100000000 -T12023011111156105224700402991120523111116300000000000005880080000000000000000000000000000000000222222000003002219012 -T2202301111115610521219870527WTTYYB@@P1222222222222011216290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115610521219860722WT@TTBY0#1222221222222021212290085223011800000000000000000000000000000000000000000000000000000000000000120000000000000000000000 -T320230111111561052120080702WTTTWTWZP12222222204308200000000 -T320230111111561052120150921WT@ZZ#9YY12222222204398200000000120140121WT@PTW#ZT12222212204302200000000 -T12023011111156106124700408361110213110611300000000006805280010000000000000000000000000000000000222222000000002229012 -T2202301111115610611219830327WTT#T99W02222211222221012213110025823011400000000000000000000000000000000000000000000000000000000070000000000000000000000002270 -T320230111111561061120170926WT@@Y9YBT22222122204398100000000 -T12023011111156107624900404261120512111116300000000070106540120000000000000000000000000000000000222222000000002229012 -T2202301111115610761219950712WTT00#9001222222222223012212210134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561076120210512WTT9WY0B012222212204398100000000420190113WT@WBPW9P12222112104398109140000 -T320230111111561076420160401WT@WWPZ0012222212104398108340000120150523WTTBBB9Y#12222222204301100000000 -T12023011111156108424200410371120433110563300000000000104170130000000000000000000000000000000000222222000000002229022 -T2202301111115610842219770907WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115610842219790926WTTZZY#YY1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561084120090512WT@@00@@Y22222122204307100000000420070704WT@Y#@W0912222212104309108220000 -T12023011111156111021000405411120212110598300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111115611101219910926WT@TZ0#TY2222212222221012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561110120210907WTTY99W9#22222112204398100000000 -T12023011111156112622000414461120412110939300000000000007710110000000000000000000000000000000000222222000000002229012 -T2202301111115611261219850902WTT@TP@@#2222212222225012212110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561126120080527WT@0YZ#Y022222112204308100000000 -T320230111111561126120150927WTTBT#T0022222122204301100000000120100922WT@@ZPZ#P22222112204306100000000 -T12023011111156113923500410671120313110835300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111115611391219980411WTTTPZYWB2222122222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561139120210726WTT@TBTPY22221222204398100000000120170713WTT0ZB9WT22221222204398100000000 -T12023011111156116425900402631120412110942300000000069207710160000000000000000000000000000000000222222000000002229072 -T2202301111115611641219780318WTT#PT@Y@1222222222221012211111020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561164120060222WTT#0T9T#12222122204310100000000 -T320230111111561164120150718WT@TYYBBT12222112204398100000000120140701WT@90WTYY12222112204302100000000 -T12023011111156118624200407271120333120000300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111115611863219660322WTT#T@@WY2222212222222012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561186120170426WTTT@#BYW12222122206398100000000120140504WTTZWTYB022222112206302100000000 -T12023011111156121425000403231120333120000110350000075005280520000000000000000000000000000000000222222000000002229022 -T2202301111115612143219850912WTTBB09W@1222221222222012212110006013069900000000000000000000000000000000000000000000000000000000000000471400000000000000000000 -T320230111111561214120180327WT@Y#ZTZ@12222122207398100000000120080313WTTZPW0#012222122207308100000000 -T12023011111156127525900402121120613111365118530000036010090180000000000000000000000000000000000222222000000002229012 -T2202301111115612751219980107WTT9#TZW92222212222223012211110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561275120170127WTTZY#@BW22222122204398100000000 -T320230111111561275120190312WTT#WP90#22222112204398100000000120180727WTTWZ9TBT22222112204398100000000 -T320230111111561275120210309WTT@99#B922222112204398100000100120190312WTT@#@#P922222122204398100000000 -T12023011111156136621700406141120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115613662219660726WT@YTWWTB1222212222215012213110540613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111561366120090526WT@90YY9912222112204307100000000 -T12023011111156142125600404161120333120000300000000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111115614213219630111WTT0ZYTTB2221211222223012212110006011069938000000000000000000000000000000000000000000000000000000000000311500000000000000000847 -T320230111111561421120080402WTTYTWPBY22212122206308100000050120060326WT@WY@W0#22212112206309100000050 -T12023011111156145524700413761120213110516300000000254805250040000000000000000000000000000000000222222000000032219012 -T2202301111115614551219790123WTTZ9Y09#1222222222223012209110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000002 -T320230111111561455120120104WTTYZ9TZ912222222204302100000491 -T12023011111156145921700406141120233120000300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111115614593219600114WTTBBTY@Y2222212222224012216210560411069938000000000000000000000000000000000000000000000000000000000000411100000000000000000000 -T320230111111561459120160404WT@YWP0T022222112206398100000000 -T12023011111156153320600406751120313110835114880000000906540040000000000000000000000000000000000222222000000002229012 -T2202301111115615331219900704WT@@TYBZZ2222211222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561533120180702WTTWZT0B922222122204398100000000120160111WTTZ#09@T22222112204398100000000 -T12023011111156171920600400871120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115617193219680704WTTW@09991222222222224012213110372313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561719120060212WTTW@TBBB12222122206309100000000 -T12023011111156178424700404541120233120000300000000100004170990000000000000000000000000000000000222222000000002229022 -T2202301111115617843219800723WT@ZB00PW2222212222222012215110006011069940000000000000000000000000000000000000000000000000000000000000636600000000000000000000 -T320230111111561784120080407WT@TBPY9Z22222122207308100000000 -T12023011111156180222000411281120313110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111115618021219760404WT@TZ#WP92222212222223012212210114923011800000019000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111561802120140427WTTBW@TWZ22222112204301200000000120040701WT@@WZ@9@22222112204309200000000 -T12023011111156185424200405921120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111115618541219910901WT@W##YYP2222122222223012211110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561854120130908WT@ZWP@BT22221212204302100000000 -T12023011111156188524200403461120233110493300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111115618853219710201WTT0Y@BPP2222211222222012212110194113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561885120100107WT@0WPB@Y22222122206305100000050 -T12023011111156191520600400801120433110776300000000000006540120000000000000000000000000000000000222222000000002229022 -T2202301111115619153219660126WTTZYW#@W2222212222225012212110204013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561915120120909WTT9@0PZW22222122206304100000000 -T320230111111561915120190107WTTY#P9@T22222112206398100000000120170918WTT#P9WW#22222122206398100000000 -T12023011111156192024500405941120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111115619201219930512WTTB9#9BZ2222212222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561920120210904WTTZ9TT0P12222122204398100000000 -T12023011111156196323500411471120212110611300000000005005280720000000000000000000000000000000000222222000000002229072 -T2202301111115619631219670502WT@Y0Z@YB2222212222225012211111300023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561963120050324WTTYZ0BT922222122204311100000000 -T12023011111156196521000411361120433120000300000000000006540250000000000000000000000000000000000222222000000002229022 -T2202301111115619653219750205WT@Y#@0B#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111561965120140513WT@T9Z#Z@22222122209301100000000 -T320230111111561965120200323WTTTT9T9Y12222112206398100000000120140513WT@T9TYP@22222122209301100000000 -T12023011111156209020800414651120212110598300000000000005280450000000000000000000000000000000000222222000000002229012 -T2202301111115620901219690426WTTY90Z091122222222221012213110451523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111562090120080524WTTPBPZTY11222222204307100000000 -T12023011111156210822000408892120323210766300000000000006540130000000000000000000000000000000000222222000000002229032 -T2202301111115621081219970409WT@T9WW#Z2222211222222011216290144623011800000000000000000004000000000000000000000000000000000000350000000000000000000000000000 -T2202301111115621081220000713WTT@#9Y9W2222212222222021216290144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562108120200112WT@BYZY@Y22222122204398200000000 -T12023011111156223820800405141120233110581300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111115622383219590227WTTWW9ZBP2222212222224012212110055511069910000000000000000000000000000000000000000000000000000000000000077200000000000000000000 -T320230111111562238120160709WT@9PWT0#22222112206398100000000 -T12023011111156227824700406701120313110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111115622781219860923WT@9TPY9W2222212222223012214210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562278120150427WT@9TPY9W22222112204302200000000120080324WT@9TPY9W22222122204308200000000 -T12023011111156235324200403941120213110611300000000020305280230000000000000000000000000000000000222222000000002229012 -T2202301111115623531219860413WT@0T090#2222122222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562353120110423WTTBB9W#Y22221222204305100000000 -T12023011111156243325900402721120233110470300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111115624333219780708WT@WBP9WP1222222222225012206210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000065 -T320230111111562433120150318WT@P9@9@012222222206398100000000 -T12023011111156248925900402631120213110376300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111115624891219960321WT@B99#@92222212222221012211110134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562489120220105WTT0ZYPP#22222112204398100000000 -T12023011111156250821700407751120332110704300000000000005280470000000000000000000000000000000000222222000000002229022 -T2202301111115625082219850926WT@#ZBB##1222222222211012212110820013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111562508120170907WTTTB#BZW12222212204398100000000120150113WT@YYT9YP12222222204398100000000 -T12023011111156252122000408451120333120000300000000160005280990000000000000000000000000000000000222222000000002229022 -T2202301111115625213219760108WT@TP#0BT2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562521120060501WT@YP@BTW22222112207310100000000120050124WT@@9YB9Y22222122207311100000000 -T12023011111156259924200409731120213110516300000000020004170110000000000000000000000000000000000222222000000002229012 -T2202301111115625991219910908WTTW#Z#9P1222222222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562599520080901WT@PPPZWP12212222104307109140000 -T12023011111156265824200414851120413110939300000000000005780610000000000000000000000000000000192222122000000012219012 -T2202301111115626581219940312WT@0#@#BB2221222222221012212120580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562658120180311WT@99Z09#22212122204398100000000 -T320230111111562658120210922WTTP#ZTT@22212212204398100000000120190322WT@@09@W022212212204398100000000 -T12023011111156269322000401051120333110376300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111115626932219860711WT@YYBT9P1222212222221012212990006011079911000000000000000000000000000000000000000000000000000000000000064500000000000000000000 -T2202301111115626932219850407WT@YYBT9P1222211222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562693120160709WTT0ZTWW#12222112204398100000000 -T12023011111156276620900411721120532110939300000000000005280270000000000000000000000000000000000222222000000002229022 -T2202301111115627662219830113WT@YTTB0T2222212222212012212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111115627662219740701WT@YYBT9P1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562766420110923WT@PWTWWB12222122104306109140000 -T320230111111562766120190423WT@PTWYBY12222212204398100000000120120102WTT0ZW#WW12222112204305100000000 -T12023011111156291623500414281120213110516300000000000000010020000000000000000000000000000000000222222000000002229012 -T2202301111115629161219910122WTTY0@0PP2222212222221012216110283211011800210000000000000000000000000000000000000000000000000000040000131000000000000000000000 -T320230111111562916120120718WT@90W0YZ22222122204305100000000 -T12023011111156292222500410151120313110786300000000000006540880000000000000000000000000000000000222222000000002229072 -T2202301111115629221219850107WT@@WTYY@2222212222221012212110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111562922120180513WT@W@PBWT22222112204398100000000120160907WTTZ9WWZ#22222112204398100000000 -T12023011111156293522000407831120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115629353219610102WT@YY0W#P2221222222211012212111050013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111562935120110408WTTTB0ZWY22212212206305100000000 -T12023011111156300425600412851120233110516300000000000004170460000000000000000000000000000000000222222000000002229022 -T2202301111115630042219910727WT@#WY@@P2221211222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111563004120120518WTT9Y99P@22112112204304100000000 -T12023011111156307720600400871120613111395104650000010010090160000000000000000000000000000000000222222000000002229072 -T2202301111115630771219880201WT@T9ZT@92222212222223012212110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563077120120427WT@@BWPY#22122222204304100000000 -T320230111111563077120160421WTTW#W@B#12122212204398100000000120140721WT@Y#Y#W@12222112204301100000000 -T320230111111563077120220504WTT0Y0@WY11222222204398100000000120170901WT@Z0ZYYB12222112204398100000000 -T12023011111156320722000406271120523111116300000000000008880320000000000000000000000000000000000222222000000002229012 -T2202301111115632071219900213WTT0BW#9Z2222212222221011212190392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115632071219840726WTT#0WYYW2222211222221011211190273323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563207120080704WTTWZPZ#@22222122204307100000000 -T320230111111563207120150412WTTZPBYB@22222122204301100000000120130407WTT009WBY22222112204304100000000 -T12023011111156320920600400871120323110987300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111115632091219970923WTT@T9#@B2222212222221011212110332723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115632091219960426WTTP#BPW#2222211222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563209120210718WTTYZT9##22222122204398100000000 -T12023011111156322622000407241120213110611300000000025005280190000000000000000000000000000000000222222000000002229012 -T2202301111115632261220010712WT@PPBB@02222212222221012212110204023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563226120220413WT@#Z0WBP22222112204398100000000 -T12023011111156334322500405581120212110611300000000000003160200000000000000000000000000000000211122222000000012219012 -T2202301111115633431219960904WTT@P@0TY2222212222221012212110253523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563343120180707WTT@0T@YZ22222122204398100000000 -T12023011111156343224100413881120433120000300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111115634323219670501WT@PY0YY#2222212222225012213110006013069900000000000000000000000000000000000000000000000000000000000000704500000000000000000000 -T320230111111563432120070726WTTB9Y#TZ22222112206308100000000 -T320230111111563432120090304WT@#T#0ZT12222112206305100000000120080112WT@W99ZBW22222122206307100000000 -T12023011111156354424200403941120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111115635441219900921WT@YWZY@B2222212222222012212210114921011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563544120150404WT@9@T9B022222112204302200000000 -T12023011111156367322000405841120323110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111115636731219870201WT@T00YY#2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115636731219920918WTT0WTY#Y2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563673120140426WT@B90Z9W22222112204301200000000 -T12023011111156376524200404891120212110611300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111115637651219870222WT@#W#0P@1222212222223012216110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563765120210304WTTTB@YPB22222122204398100000000 -T12023011111156380023900403801110213110493300000000000003560010000000000000000000000000000000000222122000000002229012 -T2202301111115638001219840723WT@P#@TZZ2222212222221012212120025821011804000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563800120080407WT@09WW#P22222122204306100000000 -T12023011111156398023700400481120533111034300000000000007710980000000000000000000000000000000000222222000000002229022 -T2202301111115639802219870907WT@YYBT9P1222212222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111563980120100101WTT9@T0#T12222112204305100000000120060527WTTBP@@PZ12222112204310100000000 -T320230111111563980120200107WTT9W@PBZ12222122204398100000000120110701WT@Z@ZB#@12222112204303100000000 -T12023011111156402225900402121110213110516300000000000602010590000000000000000000000000000000168222221000000512219012 -T2202301111115640221219910326WTT##ZZWZ2222222222221012212110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111564022120110911WT@WTP0YT22212222204306100000080 -T12023011111156406321000405411120432110939300000000000006540580000000000000000000000000000000000222222000000002229022 -T2202301111115640632219760112WTT99YW#Y2222212222211012209110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111564063120050224WTT0YPW9@22212222204312100000000 -T320230111111564063120200105WT@ZB9PTT12212212206398100000000120090723WT@BWZ0#922212222204308100000000 -T12023011111156416324200408391120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115641633219680427WTTBBBBTZ1222212222225012212110134713069900000000000000000000000000000000000000000000000000000000000000543800000000000000000000 -T320230111111564163120070913WT@9@0Z#012222112206308100000000 -T12023011111156420621000411361120333110740300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111115642062219890712WT@@9@WYY2222212222214012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111564206120190913WT@#PP@P922222122204398100000000120180418WTTZ9B0B022222122204398100000000 -T12023011111156428620600400871120533111116300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111115642862219870411WTTPPW@002221222222211012209110920013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111564286120090226WT9TTTTBW22212122204308100000000120070324WT@B9B@Z@22212112204309100000000 -T320230111111564286120110718WTT0WZ@PY22212122204305100000000120100121WT@Y9##TP22212112204307100000000 -T12023011111156429424900404261120212110611300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111115642941219800113WTTTY9YW02122222222225012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111564294120210112WT@9#TPTP22222122204398100000000 -T12023011111156445824700406741120213110598300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111115644581219860218WT@0P@PWT2222212222225012216120590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111564458120180727WT@BBP9PP22222122204398100000000 -T12023011111156450022000402371120312110835140390000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111115645001219920408WTTWY@90#1222222222221012212120293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111564500120210724WT@990P#Y12222222204398100000000120180227WTT@0#B#912222122204398100000000 -T12023011111156470724200414021120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115647071219990304WTT0TB#@Z2222212222221012211110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111564707120180318WT@@0#PPB22212112204398100000000 -T12023011111156477424200414851120312110792114320000000006540140000000000000000000000000000000000222222000000002229042 -T2202301111115647741219950107WTTYB9TY92221222222221012216120006023011700000000000000000000000000370000000000000000000000000000000000000000000000000000001667 -T320230111111564774120200321WT@0TW#0P22212222204398100000000120180301WTTPW@@@@22222212204398100000000 -T12023011111156479722100401271120312110407300000000000006540250000000000000000000000000000000000222222000000002229012 -T2202301111115647971219860302WT@TZ@#9W2222212222223012208110451523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111564797120220721WT@9TPY9W22222112204398100000000120200702WTTZ@Z0PP22212222204398100000000 -T12023011111156484522700408351120113110376300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111115648451220040405WTT0T0T@@1222222222221013209190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111156491924200414851120233120000300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111115649193219820912WTT9P9@092221222222222012215110006013069900000000000000000000000000000000000000000000000000000000000000488500000000000000000000 -T320230111111564919120200313WT@ZB@BZ#12222112207398100000000 -T12023011111156499224500405941120313110766300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111115649921219900712WT@Y@@TW92222212222221012212110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111564992120210301WT@ZTTTZZ22222122204398100000000120200401WT@TY0ZBW22222112204398100000000 -T12023011111156505923100408861120233110516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115650593219620218WT@0BP9BY2222212122214012212110352513069900000000000000000000000000000000000000000000000000000000000000000000000926000800000000 -T320230111111565059120220913WT@9TPY9W22212122206398100000000 -T12023011111156508123500404531120333110822300000000000005280770000000000000000000000000000000000222222000000002229022 -T2202301111115650813219720305WT@YZ9P0#2222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001380 -T320230111111565081120150512WT@Z0TTWZ22222112206398100000000120120305WTT@P#0Y922222112206302100000000 -T12023011111156522022000413731120613111339300000000000010090760000000000000000000000000000000000222222000000002229072 -T2202301111115652201219880726WT@#@TZT92221222222221012216120820023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111565220120070414WTTYT@PZB22212222204308100000000 -T320230111111565220120120108WTTZ0#P@#22212222204303100000000120080913WT@B9PZ#W22212222204307100000000 -T320230111111565220120200301WT@PYWZZB22212212204398100000000120150704WTT0WPYP022212212204398100000000 -T12023011111156523224700402991120413110939300000000000000920080000000000000000000000000000000000222222000006792219012 -T2202301111115652321219790126WTTZWWYBT2222212222223012211110362421011724000000000000000000000000000000000000000000000000000000000000163500000000000000000000 -T320230111111565232120050304WT@WB0Z0B22222122204309100000000 -T320230111111565232120210213WT@PTY0#T22222112204398100000000120060327WT@PZZBYT22222112204308100000000 -T12023011111156528920600414871120233110611300000000000005280300000000000000000000000000000000000222222000000002229022 -T2202301111115652891220000427WTT9@0@YP2222212222221012212120312923099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565289120200901WTTT#BPBY22222122204398100000000 -T12023011111156533022000412812120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111115653301219910413WT@9TPY9W2222222222221011211210035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115653301219860227WT@9TPY9W1222221222222021298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565330120170722WT@9TPY9W12222222204398200000000120110523WT@9TPY9W12222212204306200000000 -T12023011111156533325900402831120233110557300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111115653333219720726WTT#T@9P91222212222221012206210075313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565333120050318WT@@Z#BPP12222222207310100000000 -T12023011111156540824700409322120522211199300000000012208880110000000000000000000000000000000000222222000000002229032 -T2202301111115654081219890113WT@9TPY9W2222211222222011214290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115654081219900711WT@9TPY9W2222212222222021214290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565408120110723WT@9TPY9W22222112204398200000000 -T320230111111565408120170413WT@9TPY9W22222112204398200000000120150422WT@9TPY9W22222122204398200000000 -T12023011111156542825200400391120333110835300000000000005280230000000000000000000000000000000000222222000000002229022 -T2202301111115654283219940412WT@9W@#BB2212212222221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001619 -T320230111111565428120200418WT@@9@@BW22222122207398100000000120180721WT@@BB#WT22222122207398100000000 -T12023011111156543922700408351120513111211300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111115654391219960413WT@#P0B001222212222223012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565439120170321WTTTYYB9W12222212204398100000000120160401WT@#P0P#012222122204398100000000 -T320230111111565439120210121WTTYZ9ZTY12222112204398100000000120190421WTT#P#0#@12222112204398100000000 -T12023011111156547825900402121120213110516300000000000003880330000000000000000000000000000000000222222000000292219072 -T2202301111115654781219880305WTTBW#@BB2222212222225012213110640021011802000000000000000000000000000000000000000000000000000000000000004300000000000000000017 -T320230111111565478520170726WT@9BPB@T22222112104398109140400 -T12023011111156548520600407031110533110817300000000000006960010000000000000000000000000000000000222222000000002229021 -T2202301111115654853219870107WT@9BB#WZ2222212122222012216110006011069907000000000000000000000000000000000000000000000000000000000000055400001199000000000000 -T320230111111565485120140727WT@#0@09Y22221212209301900000000120120322WTT9W@#BW22221212207304900000000 -T320230111111565485120220323WT@9TPY9W22222112207398100000000120180911WT@9T@@#922221222207398900000000 -T12023011111156551322000405181120232110611300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111115655133219780705WT@@BTBWZ2221222222221012213110700013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565513120160901WT@WPZTP922212212206398100000000 -T12023011111156556220800410751120333110740300000000000004170480000000000000000000000000000000000222222000000002229022 -T2202301111115655622219780912WT@TWW#TB2222211222212012215110283213089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111115655622219840305WTTTYZBB@2222212222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111565562120190118WTT9#BTT022222122204398100000000 -T12023011111156563322000407411120213110598300000000002005280230000000000000000000000000000000000222222000000002229012 -T2202301111115656331219940313WT@WT0@B@2221222222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565633120150704WT@TBYZ#922212222204398100000000 -T12023011111156567622000401712110213210611300000000000000850010000000000000000000000000000000000222222000000002229032 -T2202301111115656761219980701WT@9TPY9W2221222222221012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565676120190112WT@9TPY9W22222222204398200000000 -T12023011111156575221700407751120413110969300000000002506540370000000000000000000000000000000000222222000000002229072 -T2202301111115657521219880301WT@TTY#902222212222221012216110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565752120080909WT@B00P@B22222112204307100000000 -T320230111111565752420220407WTTTTZ##P22222122204398100000000120180911WT@9YTZZY22222112204398100000000 -T12023011111156578120600402131120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115657813219590714WTTPW#Y9#2222212222225012213110006011069937000000000000000000000000000000000000000000000000000000000000362900000000000000000000 -T320230111111565781120090709WT@ZP0BZ021222222209307100000000 -T12023011111156596324200407431120313110835300000000003603920150000000000000000000000000000000261122222000000012219012 -T2202301111115659631219910701WT@YZ#W@Y1222222222221012213110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565963120150512WT@Y9PBTP12222212204301100000000120120323WT@0@YTT@12222212204303100000000 -T12023011111156597924200402501120513111116300000000000005320030000000000000000000000000000000355122222000000012219012 -T2202301111115659791219900702WT@0WWWBY2222212222223012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111565979120070712WTTTYTPW#22222112204309100000000120060327WT@9BPT0B22222122204310100000000 -T320230111111565979120120102WTT0WPZT022222112204305100000000120090324WTTTZ0#TY22222122204307100000000 -T12023011111156609822000406191120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111115660981219810205WTTTWZY@W2222211222222011212290065423011800000000000000000004000000000000000000000000000000000000340000000000000000000000000000 -T2202301111115660981219690909WTTZW9W0#2222212222222021212290065423011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T320230111111566098120090702WTTBYY#BT22222112204308200000000 -T12023011111156613522000400811120212110611300000000001805280120000000000000000000000000000000000222222000000002229012 -T2202301111115661351219710405WT@T#B0#Y1222222222223012216110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111566135120050721WT@#Y#T9P12222222204310100000000 -T12023011111156614425200407301120413111003300000000000607710170000000000000000000000000000000000222222000000002229012 -T2202301111115661441219850123WT@@0YZ#@2122222222221012216110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111566144120130127WTTYBWTZW11222222204302100000000 -T320230111111566144120220509WT@0B@Z@P21222212204398100000050120150107WT@PPBPYW21222212204398100000050 -T12023011111156618923700414791120412110939300000000010007710330000000000000000000000000000000000222222000000002229012 -T2202301111115661891219990427WT@PB@WW#2222212222221012211110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111566189120150727WTT#Y9WYY12222122204398100000000 -T320230111111566189120210718WT@ZTBWZZ12222112204398100000000120200213WTTW0YP@T22222112204398100000000 -T12023011111156630824200414851120633111339300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111115663082219820512WT@9WY@9P2221222222211012211120006013089900000000000000000000000000000000000000000000000000000000000000000000000000054200000237 -T320230111111566308420060418WT@0PTTYZ22212222104308105510497 -T320230111111566308120160214WTT9TTBYY22212222204398100000000120140912WT@0PB9@@22212222204301100000000 -T320230111111566308120220421WTT@W@TBY22212222204398100000000120180722WTTZ0P00W22212212204398100000000 -T12023011111156637423500410671120313110776300000000000006540540000000000000000000000000000000000222222000000002229072 -T2202301111115663741219790413WT@Y@WB#B2222212222223012213110670023011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111111566374120070427WTT0000ZB22222112204308100000000120060411WT@#@BTTY22222122204311100000000 -T12023011111156642122000413731120313110776300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111115664211220010923WTT0YYWB02221222222221012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111566421120210412WTTTBB@@T22212222204398100000000120190226WTTT@Y##P22212222204398100000000 -T12023011111156652222000414461120333120000138630000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111115665223219640305WTT#@0Z#92212222222221012216110025813069900000000000000000000000000000000000000000000000000000000000000644800000000000000000000 -T320230111111566522120210127WTTBP#Z#T22222222206398100000000120180704WT@@YZ00Y22212222206398100000000 -T12023011111156652922000411281120533120000300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111115665293219900924WT@W0#0ZY2221222222222012216110006013069900000000000000000000000000000000000000000000000000000000000000162400000000000000000000 -T320230111111566529420110211WT@Z#9#9B22212212204304100000000120070207WTTB9PWPW22212212209308100000000 -T320230111111566529420210227WTTP@Z#ZW22212222204398900000000420150301WT@PP9PB922212212204398100000000 -T12023011111156665225900406841120213110631300000000000005280020000000000000000000000000000000000222222000000002229042 -T2202301111115666521220020704WTTBTW9Y@2122222222221012210110015923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000145 -T320230111111566652120220413WT@TP0TBT22222222204398100000000 -T12023011111156678425200407301120333110740300000000000005280400000000000000000000000000000000000222222000000002229022 -T2202301111115667842219630326WT@BT00PZ2222212222215012212120233713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111566784120070913WT@B#@0BT22222122204309100000000120040302WTTW0Z@P@22222112204311100000000 -T12023011111156691422000410051120213110376300000000000003160640000000000000000000000000000000211122222000000012219072 -T2202301111115669141219830104WT@9@BW#P2122222222221012211110670023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111566914120050404WT@090B#P21222222204312100000000 -T12023011111156691823700414331120333110598300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111115669182219890701WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111566918120150311WT@00W0YB12222222204398100000000120130713WTTZZT@@B12222122204303100000000 -T12023011111156699220800405141120233120000300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111115669923219770412WT@ZZTWZT2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000412800000000000000000000 -T320230111111566992120160107WT@BTZY9Z22222112207398100000000 -T12023011111156710725900414481120513111169300000000000008880580000000000000000000000000000000000222222000000002229072 -T2202301111115671071219960418WTT9P@W@T2222212222221012216110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567107120160918WT@Z9PZ#B12222122204398100000049120140312WTT9BTPZY22222112204398100000049 -T320230111111567107120220113WTTY@B9W#12222112204398100000000120200423WTTW0ZWZP22222112204398100000001 -T12023011111156725122000403351120733111169300000000000008880910000000000000000000000000000000000222222000000002229022 -T2202301111115672512219870212WT@YYBT9P1222212222225012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567251120060918WT@#Z@BW@12222112204311100000000120050222WT@TW9WWP12222122204312100000000 -T320230111111567251120130207WT@YBYY##12222112204303100000000120070313WT@TTB##Y12222112204309100000000 -T320230111111567251120230412WTT#YY99Z12222112204398100000000120150101WT@TZ@W9012222112204302100000100 -T12023011111156739122000412011120232110493300000000000004170920000000000000000000000000000000000222222000000002229022 -T2202301111115673915219830307WTT@@YY#P2221222222223012216110690013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567391120100718WTT9WYYWY22212212208306100000000 -T12023011111156741623500407161120433110611300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111115674162219870522WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115674162219890402WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567416120140312WT@0000ZZ12222212204303100000000120120109WT@ZPY9B012222222204306100000000 -T12023011111156753324700404541120213110598300000000045205280070000000000000000000000000000000000222222000000002229012 -T2202301111115675331219830421WTT#B@9TY2222212222222012212210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567533120050718WT@9TPY9W22222112204311200000000 -T12023011111156755923700414332120213210611300000000000005280070000000000000000000000000000000000222222000000002229032 -T2202301111115675591219730713WT@#WWTP#2222212222225012212210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567559120110118WT@#PBY#W22222122204304200000000 -T12023011111156765024700407521120213110611300000000300001400270000000000000000000000000000000111122222000002772219012 -T2202301111115676501219880701WT@TZB99Z2222212222221012212110332721010218000000000000000000000000000000000000000000000000000000000000110500000000000000000000 -T320230111111567650120190702WT@ZTP0ZZ22222112204398100000000 -T12023011111156769725200410591120233110516300000000015004170150000000000000000000000000000000000222222000000002229022 -T2202301111115676973220030312WTT##@@@#1222212222221012216110006011069924000000000000000000000000000000000000000000000000000000000000162600000000000000001665 -T320230111111567697120050313WTT0#YPZW12222112207311100000000 -T12023011111156770122900401031120232110563300000000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111115677012219810424WT@WW@PTZ2222212222215012216110015911089910000000000000000000000000000000000000000000000000000000000000068800010000000100000000 -T320230111111567701120130123WT@@PY9TW22222122204301100000050 -T12023011111156782221700406141120212110611300000000001005280100000000000000000000000000000000000222222000000002229012 -T2202301111115678221219830404WTT@#WWB@2222212222222012216110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567822120190912WT@P#BYTW22222122206398100000000 -T12023011111156784424200410211110232110508300000000000003090990000000000000000000000000000000000222222000001082219021 -T2202301111115678442219820718WT@999P#02221222122215012212110600011109906000000000000000000000000000000000000000000000000000000000000040400000789014500000105 -T320230111111567844120040308WTT0B@B##22212212204311100000000 -T12023011111156787024200413921120233120000300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111115678705219770914WT@@009TW2222212222221012212110184213069900000000000000000000000000000000000000000000000000000000000000095400000000000000000000 -T320230111111567870120210923WT@9TPY9W22222122209398100000000 -T12023011111156789224100402401120213110598100500000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111115678921219860212WT@TPZWZY2222211222225012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567892120190323WTTBZ009@22222112204398100000000 -T12023011111156789625100407171120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115678963219690124WTTY#T9YZ2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111567896120090112WTTBY9##922222112206306100000000 -T12023011111156793722700413181120433110893111340000000006540090000000000000000000000000000000000222222000000002229022 -T2202301111115679373220010523WTTTWYBPY2222212222221012212110006011069932000000000000000000000000000000000000000000000000000000000000227000000000000000000000 -T320230111111567937120060702WTT9T@WW022222112207309100000000 -T320230111111567937120160923WT@T#0BTP22222122207398100000000120150109WTTPBBB0P22222122207301100000000 -T12023011111156794822000410381120232110516300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111115679482219780709WTT90WPYY2222212222211012216110580213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111567948120150123WTT9PTPW#22222212204302100000000 -T12023011111156806425600414971120533111116300000000071207710290000000000000000000000000000000000222222000000002229022 -T2202301111115680641219790423WTTZZTWPB2222212222221012212110303023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111568064120050123WTTTYPYWB22222122204308100000000120050123WTTT@TP#P22222122204308100000000 -T320230111111568064420100722WT@WT#YW022222112104301107730000120080704WTT@@@#TB22222112204305100000000 -T12023011111156808325200410591120233110516300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111115680832219820207WTT@9PZ#@2222212222215012212110322813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111568083120110918WTT@@#0@P22222122204305100000000 -T12023011111156812322000408561120522111116300000000003006540070000000000000000000000000000000000222222000000002229012 -T2202301111115681231219600313WT@TW#T9@2222221222222011214190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115681231219850326WT@ZZPP9T2222122222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111568123420110905WTTTZ9#T022222212104306109140000 -T320230111111568123120170318WTT@@T9W022222222204398100000000420130218WTTYT9B0#22221222104303109140000 -T12023011111156812620600404121120413111034111070000000007710410000000000000000000000000000000000222222000000002229012 -T2202301111115681261219980708WTTW#9YT02222212222221012211120421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111568126120170924WT@YBPWZY22222112204398100000000 -T320230111111568126120200118WT@9TPY9W22212222204398100000000120190104WT@@Y#B0Y22212212204398100000000 -T12023011111156827125600400661120233120000300000000000004170780000000000000000000000000000000000222222000000002229022 -T2202301111115682713219520726WT@@0@@YT2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000722000000002700 -T320230111111568271120070727WTTTZ0T0022222122206308100000050 -T12023011111156828421000404881120533111057300000000000007710260000000000000000000000000000000000222222000000002229022 -T2202301111115682843219700126WTTTBBW9T2222122222222012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000008 -T320230111111568284120120322WTTWZ0@Y012222212206304100000000120110923WTTZ0@ZPZ12222222206304100000000 -T320230111111568284120150924WTT@@BW@#21222222206301100000000120130721WT@TP9@BB11222222206302100000000 -T12023011111156851221000412411120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111115685121219980112WTTY0TY#P1122122222221012209110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111568512120220318WT@PZ@9T@11221112204398100000000 -T12023011111156886825000400401120333110760300000000000005280570000000000000000000000000000000000222222000000002229022 -T2202301111115688682219830927WT@ZY@T002222212222215012212110243613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111568868120090407WT@WW90PW22222122204307100000000120040301WTTYPZPZB22222122204311100000000 -T12023011111156888425000414191120313110766300000000000005230180000000000000000000000000000000000222222000001312219072 -T2202301111115688841219870504WTT#TT#ZZ2122222222221012212110650023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000149 -T320230111111568884120190111WTT@W#Z@Y21222222204398100000000120170321WTTPBP9T021222222204398100000000 -T12023011111156897824200407271120233120000300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111115689783219850423WT@9#W9W@2221221222222012212110035711069940000000000000000000000000000000000000000000000000000000000000687300000000000000000000 -T320230111111568978120110323WTTTYBZ0W22212222207303100000000 -T12023011111156900323300410111120233110516300000000000004170980000000000000000000000000000000000222222000000002229022 -T2202301111115690031219820308WT@PZ#@Z#2222212222225012211110990023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569003520160301WTT9T0@#W21222222104398105850000 -T12023011111156904922000406191120213110598300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111115690491219930311WT@WTBTP@1222222222223012210110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569049120210527WT@0T0@0T12222222204398100000000 -T12023011111156907522000411551120212110611300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111115690751219960407WT@TTTZYW2221222222221012212110342621011725000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569075120200314WTTTZ##T#12212222204398100000000 -T12023011111156921620600402131120433120000300000000000006540040000000000000000000000000000000000222222000000002229022 -T2202301111115692165219770908WT@WWZ9#W2222212222222012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569216120110513WTTZTPZYT22222122208306100000000 -T320230111111569216120190307WTTBZBWPT22222122208398100000000120130712WTTP0Y@BT22222112208301100000000 -T12023011111156926224700405831120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111115692622219730327WT@T#W00#2222212122225012213110114913109900000000000000000000000000000000000000000000000000000000000000000000002801000000000000 -T320230111111569262120050407WT@#09P@022222112204311100000000 -T12023011111156932125600411521120233120000300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111115693213219690908WT@WZT0TZ2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569321120060212WT@#@P#B#22212112206310100000000 -T12023011111156940824700408701120213110493300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111115694081219730101WTTWT@Y#W2222212222225012213210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569408120090105WT@TYT0Y022222122204307200000000 -T12023011111156946321700406141120233120000300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111115694633219730421WT@0ZWBY01222212222222012207120223813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569463120120111WT@#W9#PW12222222206303100000000 -T12023011111156947522000407412120423211034300000000000007710070000000000000000000000000000000000222222000000002229032 -T2202301111115694751219790111WT@ZY99PP2222211222222011212290085223011800000000000000000000000000000000120001000000000000000000180000000000000000000000000000 -T2202301111115694751219850911WTTPBW0B02222212222222021214290085223011800000000000000000000000000000000120001000000000000000000000000000000000000000000000000 -T320230111111569475120110512WT@9TPY9W22222112204307200000000120090404WT@9TPY9W22222112204308200000000 -T12023011111156950720600414771120312110793300000000000003920340000000000000000000000000000000261122222000000012219012 -T2202301111115695071219880912WT@@W9#YZ2222212222221012213110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569507120170308WT@B9@Y@922222122204398100000000120130327WTTP0YTWB12222122204301100000000 -T12023011111156959224100410041120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115695922219880413WT@PTT#P@1222212122211012212120421813109900000000000000000000000000000000000000000000000000000000000000000000000672026200000000 -T320230111111569592120100321WT@P#9TZ@12222122204305100000000 -T12023011111156960325900402831120233120000300000000000004170780000000000000000000000000000000000222222000000002229022 -T2202301111115696033219610314WTT99Y09@2221222222222012210110006011069939000000000000000000000000000000000000000000000000000000000000435900000000000000000000 -T320230111111569603120070308WT@@P0PWB22212222207308100000000 -T12023011111156971522000414461120213110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111115697151219930502WT@099PYY2221222222222013213190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115697155219880324WT@YYBT9P2221221222222023216990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111156979622000405841120313110781300000000398503590360000000000000000000000000000000261122222003200022219012 -T2202301111115697961219980527WTT99ZP9B2222222222221012216110372323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569796120220109WT@9TPY9W22212112204398100000000120180302WT@TT@PW922222112204398100000000 -T12023011111156987920600402141120233110516300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111115698792219850912WT@0YTYTW2222212222213012212110035713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111569879120180223WTT99TWTP22222122204398100000000 -T12023011111156990022000411281120313110626300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111115699001219810121WT@Y#@#YZ2222212222222012211210105023011800000007000100000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111569900120100321WT@##TY#P22222122204305200000000120050326WT@9TPY9W22222122207310200000000 -T12023011111156998320800414651120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115699832219640412WT@YYBW0W2222212222215012208110730013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111569983120070526WTTPZY0ZY22222112204308100000050 -T12023011111156998825100402211120333110704300000000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111115699883219560121WTT0@0Y992222212122224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000860000000000000 -T320230111111569988120070708WTT9ZYYZZ22222112206307100000000120050307WTTTT#W##22222112206309100000000 -T12023011111157001022000400922120133210316300000000000005280240000000000000000000000000000000000222222000000002229022 -T2202301111115700105219720318WT@##Y#Z92222212222223013212110730023069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111157006222000410051120312110740300000000000100260130000000000000000000000000000000000222222000006282219072 -T2202301111115700621219740923WTTZY@0WB2221222222221012212111040021011800200000000000000000000000000000000000000000000000000000000000136400000000000000000000 -T320230111111570062120100427WTTWP@WWY22212212204306100000000120100427WT@Z9ZYWP22212212204306100000000 -T12023011111157006922000412231120413110939300000000000005780320000000000000000000000000000000192222122000000012219012 -T2202301111115700691219970107WT@W9BP@W2221222222221012212120253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570069120150108WT@@PY@YT22212222204301100000000 -T320230111111570069120210202WT@WBY@P#22212222204398100000000120190927WT@ZBB#ZT22212212204398100000000 -T12023011111157015925900412511120333110740300000000000005280240000000000000000000000000000000000222222000000002229022 -T2202301111115701593219670912WT@9@YW0#1222222222221012212210006011069930000000000000000000000000000000000000000000000000000000000000239600000000000000000000 -T320230111111570159120110212WT@9P00Y#12222222206305100000000120090923WTTP#Z9@T12222212206307100000000 -T12023011111157019820600402141120512111116123970000000008880110000000000000000000000000000000000222222000000002229012 -T2202301111115701981219940407WT@B9TP992221212222221012211110312921010104000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570198120190121WT@#0@@9022212122204398100000000120160721WT@YZZYPT22212122204398100000000 -T320230111111570198120220318WTTZP#Z#@22222212204398100000000120200118WTT0W#0@Z22212122204398100000000 -T12023011111157036022700407491120333110598300000000000005280140000000000000000000000000000000000222222000000002229022 -T2202301111115703602219790527WT@YYBT9P1222222222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570360120090208WT@W@@99P12222222204308100000000120070513WTTW9#@9T12222222204310100000000 -T12023011111157038423500402711110423110939300000000000000490010000000000000000000000000000000000222222000000002229012 -T2202301111115703841219880704WT@@TZBPP2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115703841219880926WTTBBB@PT2222212222222021216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570384120190404WT@PTPZ@@22222112204398200000000120140918WTT9@#@YY22222122204303200000000 -T12023011111157039822000405321120213110565300000000023000920020000000000000000000000000000000000222222000003252219072 -T2202301111115703981219770427WTT#@#PY91222222222221012216110770021011804000000000000000000000000000000000000000000000000000000000000065000000000000000000000 -T320230111111570398520060112WTTPTPBY#22212212104311102760657 -T12023011111157048920800405391120312110329300000000000006540560000000000000000000000000000000000222222000000002229012 -T2202301111115704891219830205WT@P@T@0T2222212222221012211110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570489120210109WT@#W9TP022222122204398100000000120130113WT@@ZB#BB22222122204304100000000 -T12023011111157057220800410751120313120000300000000000006540470000000000000000000000000000000000222222000000002229012 -T2202301111115705721219940913WTT0BP@ZW2222212222221012211120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570572120140412WTT@BTB#Y22222122204302100000000120120107WTT#YP9@Z22222122204303100000000 -T12023011111157075120600414771120313110835300000000000006540530000000000000000000000000000000000222222000000002229072 -T2202301111115707511219850901WT@P0PW0B2222212222225012212110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570751120160726WT@WP@WYW22222112204398100000000120150912WTTW9YWYT22222112204302100000000 -T12023011111157083624700406701120213110363300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115708361219930712WTT@WZZWP2222212222221012214110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570836120220109WTTBBTZB@22222122204398100000000 -T12023011111157085721700407751120333110704300000000010506540710000000000000000000000000000000000222222000000002229022 -T2202301111115708571219750323WT@#B@#@@2222212222225012213110910023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111570857120140108WTTBZBWTW22212112204398100000000120130927WTT0YPPB#22212122204303100000000 -T12023011111157108524200404421120213110598115000000000005280290000000000000000000000000000000000222222000000002229042 -T2202301111115710851219940504WTTBZYWBZ2222212222221012212110283221011816000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111571085120210322WT@@0WYTZ22222122204398100000000 -T12023011111157119322000411281120433110939300000000000005280840000000000000000000000000000000000222222000000002229022 -T2202301111115711932219680418WT@0Y9PZ92222211222212012212190283213089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111115711932219680423WT@BWY@WP2222212222212022207290342613089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111571193120090923WTT9Z900@22222122204306100000000120070427WTT0TYWP@22222112204308100000000 -T12023011111157123020600414771120213110598300000000003205280070000000000000000000000000000000000222222000000002229012 -T2202301111115712301219870309WTTPB#PTW2221222222221012212120085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111571230120220312WT@@9#WB022212222204398100000000 -T12023011111157132322000406211120213110539300000000000005280750000000000000000000000000000000000222222000000002229072 -T2202301111115713231219850123WT@W9@PB92221222222221012213110800021011800110000000000000000000000000000000000000000000000000000430000066000000000000000000000 -T320230111111571323120050526WTTWW#ZTB22212212204311100000000 -T12023011111157139824200405921120433120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115713982219820914WTTTZ@B0@2222211222212012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000008800000000 -T2202301111115713982219790713WTTZY@9@T2222212222212022209190095113089900000000000000000000000000000000000000000000000000000000000000286000000000008800000000 -T320230111111571398120070322WTTBWZBZ922222122204307100000050120050421WTTZW#B0B22222112204310100000050 -T12023011111157150824900404261120413111032300000000000005780340000000000000000000000000000000192222122000000012219012 -T2202301111115715081219970709WTTYB#9#B1222212222221012216120352523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000400 -T320230111111571508120130923WTT0@ZTZ922222112204301100000000 -T320230111111571508120220121WT@P0@YYB22222222204398100000000120160309WT@@Z@WYP22212122209398100000000 -T12023011111157158222000412231120312110740300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111115715821219880226WT@99PZB@2221222222221012212110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111571582120220522WTT099WTY22212222204398100000000420130901WT@BZW9YB22212212104303109140000 -T12023011111157161225900406841120213110598300000000000005280050000000000000000000000000000000000222222000000002229042 -T2202301111115716121220030714WT@#00BTP1222212222221012212110015923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111571612120220212WTT09PYWT12222112204398100000000 -T12023011111157163122000407411120313110760300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115716311219670708WTTYP##0Y2222211222222012210210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115716313219710504WT@P#B#B#2222212222222022298290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111571631120100124WT@P#T9#P22222122209306200000000 -T12023011111157163222000405701120213110517300000000000005010280000000000000000000000000000000000222222002600012219072 -T2202301111115716321219860412WT@W9PT9P2222212222223012214110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111571632120080412WT@BTTT9P22222112204308100000000 -T12023011111157163725900403551120313110835300000000000005800110000000000000000000000000000000000222222000000002229012 -T2202301111115716371219930427WT@PB9Z001222222222221012212210213923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111571637120220313WT@9TPY9W12222112204398100000000120190123WTTB009##12222212204398100000000 -T12023011111157165225900408111120233110611300000000000004170840000000000000000000000000000000000222222000000002229022 -T2202301111115716523219810524WTT0YTPZP2122222222225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111571652120150312WTT@BYYBP21222212207398100000000 -T12023011111157171021700406141120313110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111115717101219890107WTT0TPBTZ1222212222221012216110520823011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111571710120160223WT@9WB0T#22222122204398100000000120140912WT@Z@W@P922222122204398100000000 -T12023011111157186225900406651120113110376300000000000004170990000000000000000000000000000000000222222000000002229072 -T2202301111115718621219810401WTTBWY0PZ2222212222223013212111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111157205325900402831120633111034300000000029007710130000000000000000000000000000000000222222000000002229022 -T2202301111115720532219870227WT@YYBT9P1222212222222012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115720532219920908WT@YYBT9P1222221222221022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111572053120090718WTT09Z#0P12222222204307100000000120050723WTTY@PPTB12222222204311100000000 -T320230111111572053120160414WT@YYBB#W12222212204398100000000120140104WT@Y#9WZW12222212204302100000000 -T12023011111157211520600414161120412110939300000000000007710470000000000000000000000000000000000222222000000002229012 -T2202301111115721151219830305WTT#WPTB#2222212222225012216110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111572115120110209WTTWY@0ZZ22222112204304100000000 -T320230111111572115120180412WT@TPYT@T22222112204398100000000120120126WTT000TYB22221212204302100000000 -T12023011111157215822000406191120233120000300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111115721583219560422WT@TTBBPZ2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002680000000003189 -T320230111111572158120170504WT@9@ZB#922122222209398100000000 -T12023011111157225722700408352120323210835300000000000006540080000000000000000000000000000000000222222000000002229032 -T2202301111115722571219950422WT@9TPY9W1222211222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115722571219990901WT@9TPY9W1222212222222021211290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111572257120180304WT@9TPY9W12222122204398200000000 -T12023011111157245024200404421120213111159300000000000105280090000000000000000000000000000000000222222000000002229042 -T2202301111115724501220000108WT@T@B0B#2221222222221012212110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111572450120220423WTT9Z@BB@22222112204398100000000 -T12023011111157251224200403941120233120000300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111115725123219540112WTTW9@0@T2222212122223012212110006011069929000000000000000000000000000000000000000000000000000000000000285800002025000000000000 -T320230111111572512120060914WT@PTT0#B12212122206309100000000 -T12023011111157257722000408562110213210516300000000000002210010000000000000000000000000000000000222222000000002229032 -T2202301111115725771219940704WT@9TPY9W1222222222221012208210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111572577120180301WT@9TPY9W12222212204398200000000 -T12023011111157280022600404461120433111368300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111115728002219830721WTT#9YBTW1222222222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111572800120070313WTTZWWZ9P12222212204309100000000 -T320230111111572800120170223WTT09#WPP12222222204398100000000120110322WT@Y@Y9YP22222212204304100000000 -T12023011111157288120600400801120233110516300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111115728812219740309WTTTWPW9P2222211222211012212110035713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111572881120130704WTTTW0@0P22222112204301100000032 -T12023011111157301724200414851120313110760300000000000106540220000000000000000000000000000000000222222000000002229012 -T2202301111115730171219850909WT@P0ZZB@2222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573017120100124WTT@T00#Y22212222209305100000050120090302WTT#W9#P022222122209306100000050 -T12023011111157310524200404421120213110493300000000006804560350000000000000000000000000000000000222222000000722219072 -T2202301111115731051219690711WT@P@B9YZ2122222222225012216110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000071 -T320230111111573105120080718WT@9#9P9Z21222212204306100000050 -T12023011111157323021700407751110312110650300000000000001460010000000000000000000000000000000000222222000000002229012 -T2202301111115732301219910321WT@T@@ZPW1222212222225012212110451521011810000000000000000000000000000000000000000000000000000000000000068300000000000000000000 -T320230111111573230120180402WT@YT9W@922222112204398100000002120120322WT@@YYTPY12221112204302100000002 -T12023011111157333922700407441120332110611300000000192505280480000000000000000000000000000000000222222000000002229022 -T2202301111115733392219900908WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573339120180726WT@TYZ9TT12222122204398100000000120100309WT@ZYZP#Y12222122204305100000000 -T12023011111157335224700405831120213110598300000000090005280130000000000000000000000000000000000222222000000002229012 -T2202301111115733521219900924WTT9P0W@@2221222222221012216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573352120200923WT@@BYYW#22212222204398100000000 -T12023011111157345121000404551120523111116300000000476608880020000000000070001000000000000000000222222000000002229012 -T2202301111115734511219780326WTT00T##W2222211222222011214190035722011900000000000000350001000000000000000000000000000000000000030000000000000000000000000000 -T2202301111115734511219810221WT@PWP0BY2222212222222021216190035721011828000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573451120060126WT@BY##ZW22222112204311100000000 -T320230111111573451120080218WTTZ#T9@P22222122204309100000000120060126WTT#PYW##22222122204311100000000 -T12023011111157352823500405271120232110516300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111115735282219770524WT@Y#B90W2222212122211012212110253513109900000000000000000000000000000000000000000000000000000000000000000000000892004200000000 -T320230111111573528120100426WTT@WB0PW22212222204307100000000 -T12023011111157356022900405641120313110835300000000000004210040000000000000000000000000000000000222222000000002229012 -T2202301111115735601219850727WTT@@PB9Y2122221222221012209110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573560120130308WTT9P9BYB21222212204302100000000120080926WT@T0PB9#21222222204308100000000 -T12023011111157361422700407491120213110611300000000000005280470000000000000000000000000000000000222222000000002229012 -T2202301111115736141219920718WT@B09T9P2222212222221012211110481223010600000000000000000000000000000000000000100001000000000000000000000000000000000000000000 -T320230111111573614120180411WT@W9ZTW#22222122204398100000000 -T12023011111157365322000408891120212110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111115736531219910227WTT0WT0ZY2221222222225012212110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573653120120923WTTPBTZ0022212212204303100000000 -T12023011111157368824700405831110423110939300000000000001740010000000000000000000000000000000000222222000000002229012 -T2202301111115736881219910327WTT0#W9@P2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115736881219920504WT@Y#ZPPW2222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573688120210713WT@TWZP#022222112204398200000000120190318WTTBZY9P#22222112204398200000000 -T12023011111157371324200413971120213110611300000000000005010240000000000000000000000000000000000222222002600012219042 -T2202301111115737131219840423WTTB#PB#B2222212222222012212120312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573713120160918WT@0TPBW922222112204398100000000 -T12023011111157373924700406701120423111034300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111115737391219930323WTT#T0@PP2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115737391219990926WTTT@9#9Y2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573739120200108WTTP#00BB22222122204398200000000120170102WT@0Z#Y#922222122204398200000000 -T12023011111157387624500409151120412111018300000000000004620350000000000000000000000000000000308122222000000012219012 -T2202301111115738761219910312WT@@P9BBY2222212222221012216110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573876120120426WTT990Y@T22222112204304100000050 -T320230111111573876120160926WT@9PB0TW22222112204398100000025120140313WTTBP0#Y922221122204301100000025 -T12023011111157389025900406841120433110835106260000000106540240000000000000000000000000000000000222222000000002229022 -T2202301111115738902219870704WT@YYBT9P1222212222225012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111573890120070118WTT99TT0T12222212204308200000000 -T320230111111573890120160127WTTTT9#Z#12222222204398100000000120100926WTTZ09WW@12222212204306100000000 -T12023011111157412822000409411120312110778300000000000006540610000000000000000000000000000000000222222000000002229072 -T2202301111115741281219860126WT@B#@@BB2221221222221012212110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574128120170427WT@W90TYT12212212204398100000000120130112WTTTTTP0922212212204302100000000 -T12023011111157421420300401721120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111115742141219950923WT@W99#TW2222212222225012212110075323011700000000000000000000000000230002000000000000000000000000030000000000000000000000001033 -T320230111111574214120180121WT@0T9Y#@22222112204398100000000 -T12023011111157427422000407411120312110781300000000000003920290000000000000000000000000000000261122222000000012219072 -T2202301111115742741219940122WT@BY#WP02221222222221012216110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574274120170227WTTP#0W0922212222204398100000000120090314WT@PZ@YBP22212212204306100000000 -T12023011111157429022700408351120513111116300000000007007710080000000000000000000000000000000000222222000000002229012 -T2202301111115742901219930421WT@Y0YT0Z1222222222221012211110322821011942000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574290120110921WTTW09PWY12222222204304100000000120100718WTTWBZ0B@22222222204306100000000 -T320230111111574290120150423WTT##ZY@Y12222122204398100000000420130313WT@0ZWBZ@22222112104302108220000 -T12023011111157434720600400871120233110187300000000000004170830000000000000000000000000000000000222222000000002229022 -T2202301111115743473219660305WT@ZTBB@02222221222222012208910600011079932000000000000000000000000000000000000000000000000000000000000233400000000000000000000 -T320230111111574347120090723WTT0BBP@B22222222207308100000000 -T12023011111157435424200404891120212110611300000000000005280420000000000000000000000000000000000222222000000002229072 -T2202301111115743541219900112WT@T0@0YW1221222222221012211110800023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574354120070727WT@0PB#WW12212212204308100000000 -T12023011111157439525900402631120233120000121560000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111115743953219940126WTTBP9PPY1122222222225012216110114913069900000000000000000000000000000000000000000000000000000000000000353600000000000000000000 -T320230111111574395120180327WTTBWBWWZ11222212207398100000000 -T12023011111157443323500407611120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111115744331219880214WT@WPW#TB2222211222222011214290065423011800000000000000000000000000000000000000000000000000000000190000000000000000000000000000 -T2202301111115744331219880218WT@0BT9TB2222212222222021211290065423011800000000000000000000000000000000000000000000000000000000190000000000000000000000000000 -T320230111111574433120190418WT@Z@BP0Y22222112204398200000000120120421WTTZ@#W#022222122204305200000000 -T12023011111157448820800411991120213110611300000000020005280050000000000000000000000000000000000222222000000002229012 -T2202301111115744881219980918WT@P#BP9P2222212222221012211110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574488120190421WTT#TW9Y922222222204398100000000 -T12023011111157449525200414061120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115744953219630227WT@90Z0PT2222212222215012212110510913069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111574495120110912WT@BT@#@W22222122206305100000000120040701WT@#Z9B#B22222122206311100000050 -T12023011111157451522000402321120233110376300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111115745152219840701WT@YYBT9P1222222222221012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574515120220922WT@TWWT0#22222222204398100000000 -T12023011111157452620800405391120212110598300000000000005280420000000000000000000000000000000000222222000000002229072 -T2202301111115745261219940407WT@B990@02222212222223012212110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574526120210426WTT0TY0#B22222112204398100000000 -T12023011111157454222000405841120233120000300000000000003830990000000000000000000000000000000000222222000000342219022 -T2202301111115745423219560918WT@0PPZ@Z2122222122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001198000000001673 -T320230111111574542120100102WT@WB9WYT21222222206307100000033 -T12023011111157457324200403941120332110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115745732219810909WTT09Z99#2222212222211012212111700013089900000000000000000000000000000000000000000000000000000000000000000000000000084100000000 -T320230111111574573120130907WTTY0B0TZ22212212204301100000050120060904WTT9YZ#9B12222112204311100000050 -T12023011111157462622000407792110322210720300000000000003160010000000000000000000000000000000000222222000000002229032 -T2202301111115746261219660501WT@YBWT9B1222221222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115746261219740324WTTZZPP0T1222222222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574626120060921WT@T@ZPP@12222212204309200000000 -T12023011111157463324200409091120213110493300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111115746331219780112WT@#Y#WW02222212222223012216110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574633120100904WT@90PZT#22212222204305100000000 -T12023011111157476023500410671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115747603219560426WTT9@9@Z92222212122222012212110630013069900000000000000000000000000000000000000000000000000000000000000000000000543000000000000 -T320230111111574760120120327WTT9P9ZB#22222122206303100000050 -T12023011111157486822000410051120212110576300000000000003160690000000000000000000000000000000211122222000000012219072 -T2202301111115748681219940408WT@0Y##P@1222212222221012212110700023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111574868120160713WTTB9@YWW12212212204398100000000 -T12023011111157494120800403781120213110611300000000000004900450000000000000000000000000000000000222222000000382219012 -T2202301111115749411219840521WT@0B@@Z#1222222222221012216110461421011803000000000000000000000000000000000000000000000000000000000000007500000000000000000000 -T320230111111574941120180222WT@9TB9Y912222112204398100000000 -T12023011111157494521700409521120523111013300000000000005320170000000000000000000000000000000355122222000000012219012 -T2202301111115749451219870701WTT@W9PB#2222212222222011216110164421011931000000000000000000000000000000000000000000000000000000000000260000000000000000000000 -T2202301111115749451219870213WT@ZP9PY#2222211222222011212190124823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111574945120080911WT@@YZWPW22222112204308100000000 -T320230111111574945120150527WTT9BY#0Z22222112204301100000000120110309WTT#0Z9@@22222122204305100000000 -T12023011111157498925600411521120233120000300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111115749893219600905WT@BW@ZWT2222212222221012212110006011069938000000000000000000000000000000000000000000000000000000000000290800000000000000000000 -T320230111111574989120050105WT@WPTTZZ22222112206310100000000 -T12023011111157502222000402111110213110516300000000000002040010000000000000000000000000000000000222222000000002229012 -T2202301111115750221219750112WT@#@T#Z#2222222222225012214110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111575022120070909WTT00TTZW12222122204310100000683 -T12023011111157502724900404261120233110516300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111115750272219800902WTTP0W#YP2222212222211012212110124813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111575027120100512WT@YZZZZZ22222112204305100000000 -T12023011111157506025800405061120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115750603219610212WTTWYTY#P2122222222225012212110263411069974000000000000000000000000000000000000000000000000000000000000330300000000000000000000 -T320230111111575060120040323WT@BPB@P021222222206311100000000 -T12023011111157508822000413691120433110763300000000000004460340000000000000000000000000000000000222222000002082219022 -T2202301111115750882219850121WT@YYBT9P1222212222221012208910006011079903000000000000000000000000000000000000000000000000000000000000065000000000000000000000 -T320230111111575088120060127WTT0B000012222122204309100000000 -T320230111111575088120120421WT@Y00TW012222122204303100000000120070704WTTPWP@P912222112204307100000000 -T12023011111157513722700408351120523111116300000000000001930070000000000000000000000000000000000222222000006952219012 -T2202301111115751371219720407WTTBBT@@Y2222221222222011212290075321011822000000000000000000000000000000000000000000000000000000000000138800000000000000000000 -T2202301111115751371219810101WT@9#9YPZ2222222222222021208290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111575137120060404WT@@#YY0W22222222204310200000000 -T320230111111575137120100423WTTZ9W0WT22222222204307200000000120070409WT@BZ090922222212204308200000000 -T12023011111157517222000400651120233120000300000000005004170670000000000000000000000000000000000222222000000002229022 -T2202301111115751723219620421WTTZZTW@#2222212222222012216110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111575172120120309WT@PPTY0T22222122206303100000000 -T12023011111157518222000409971120332110740300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111115751822219760318WT@YW90Z02221222222211012212111550013089900000000000000000000000000000000000000000000000000000000000000000000000000078800000000 -T320230111111575182120100302WT@9BZTZP22212212204305100000023120060907WTT90B9Y022212222204310100000023 -T12023011111157524422000405821120233120000300000000000004170790000000000000000000000000000000000222222000000002229022 -T2202301111115752443219850923WT@PPP0BT1222212222221012213110015913069900000000000000000000000000000000000000000000000000000000000000026600000000000000000000 -T320230111111575244120110212WT@WTPZT012222122207305100000000 -T12023011111157524620600402131120532111116300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115752462219830108WTTB#PPPP1222212122211012212120006013109900000000000000000000000000000000000000000000000000000000000000000000000607032700000000 -T320230111111575246120190405WT@Y9ZZ#T12212222204398100000000420090422WTTYPTPB@12222112104306109140000 -T320230111111575246420070304WT@9WZZPY12222112104307109140000120050127WT@#9YWYB12222122204311100000000 -T12023011111157525220800411931120332110634300000000000004750120000000000000000000000000000000000222222005200012219022 -T2202301111115752523219930514WTT#@9ZYW2222122222223012211110164413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111575252120090527WTTTY99B@22221222207306100000000120070113WTTPTTT#922221212207308100000000 -T12023011111157529022000403351120333110516300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115752903219640212WT@YYBT9P1222222222223012205910006011079936000000000000000000000000000000000000000000000000000000000000236000000000000000000000 -T320230111111575290120070307WT@@Y9P0912222222206309100000000120060401WTTY900P#12222212206310100000000 -T12023011111157532825200407301120523111116300000000012701260380000000000000000000000000000000000222222000007622219012 -T2202301111115753281219900127WT@PTBT#Y2222212222222011216110520823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115753281219890512WTTYTTPPT2222211222222021212190025821011823000000000000000000000000000000000000000000000000000000000000152200000000000000000000 -T320230111111575328120080907WT@W#Z9W022222122204308100000000 -T320230111111575328120210314WTTWPZT0B22222112204398100000000120190312WT@9PYB9@22222112204398100000000 -T12023011111157538424700405901120113120000300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111115753841220030904WT@W90TZZ2222212222221013210190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111157541522000402371120512111136300000000000005320270000000000000000000000000000000355122222000000012219072 -T2202301111115754151219810923WTT#ZP##P2222212222223012208110880023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111575415120140327WTT9WY@P@22222122204301100000000120110211WT@9WTP0922222112204306100000000 -T320230111111575415120180302WT@Z@T@@Y22222122204398100000000120170312WTTWT#WY922222122204398100000000 -T12023011111157545925600413441120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111115754592219880727WT@TYBBT#2221222222211012212110540613089900000000000000000000000000000000000000000000000000000000000000000000000000082200000688 -T320230111111575459120080923WTTY9#@B#22212222204307100000000 -T320230111111575459120170422WT@WY09@022212222204398100000000120100124WTT0B9Z9Z22212212204305100000000 -T12023011111157547321700406141120313110709300000000001006540090000000000000000000000000000000000222222000000002229072 -T2202301111115754731219870105WT@#BP9#02222212222221012216110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111575473120150427WTTWZ9BWZ22222122204301100000000120080423WTTTT#B9922222112204308100000043 -T12023011111157555422000412971120333120000300000000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111115755543219640111WT@ZZ09#B2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111575554120170327WT@W@W#@W22222122206398100000000120140423WTTBTPW9T22221222206302100000000 -T12023011111157555620600404491120923111902300000000014610560100000000000000000000000000000000000222222000003602219012 -T2202301111115755561219820323WTT0@P@TY2222212222222011216290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115755561219770712WTTY#TPT02222211222222021213290105021011955000000000000000000000000000000000000000000000000000000000000170000000000000000000000 -T320230111111575556120040921WTT#@90ZW22222122204311200000000 -T320230111111575556120080518WT@9@@ZW#22222112204308200000000120050118WT@0ZB0@Z22222122204311200000000 -T320230111111575556120150213WTTP#W90Z22222112204301200000000120090312WT@0WPZ9B22222112204306200000000 -T320230111111575556120190714WTTT0Y9@P22222122204398200000000120160312WTT@@@##W22222122204398200000000 -T12023011111157558224200403511120233120000106290000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111115755823219620404WTTYY#@@@2222211222225012213110075311069940000000000000000000000000000000000000000000000000000000000000498800000000000000000000 -T320230111111575582120160709WT@@B090#12222112206398100000050 -T12023011111157572322000410052120313210835300000000000006540020000000000000000000000000000000000222222000000002229032 -T2202301111115757231219880424WT@9TPY9W1222222222221012214210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111575723120110227WT@9TPY9W12222222204305200000000120050112WT@9TPY9W12222212204310200000000 -T12023011111157601120800405391120212110588300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111115760111219770326WTTB9##T92221222222221012213111030023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111576011120170502WTTP#WY#W22212222204398100000050 -T12023011111157601722000413731120623111395300000000000004400040000000000035002000000000000000000222222000005692219012 -T2202301111115760171219960308WTTP990@T1212222222221011213110055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115760171219970904WTTZTZWB02221221222221011212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576017120190413WT@@PTTTT12212212204398100000000120180207WTTTZ@9YT12212222204398100000568 -T320230111111576017120200209WTTP9YTT#12212222204398100000000120200209WTT@00P0T12212212204398100000000 -T12023011111157606722000402371120312110740300000000000005280480000000000000000000000000000000000222222000000002229012 -T2202301111115760671219790113WTTPPZY#P2221221222221012212110491123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111576067120130423WT@90BTT#22212222204303100000000420070923WT@WWPB0W22212212104309109140000 -T12023011111157608522000412971120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115760852219820107WTTPZPT#@2222212222211012206112160013089900000000000000000000000000000000000000000000000000000000000000000000000000080300000000 -T320230111111576085120130113WTTZ909PZ12222122204304100000000 -T12023011111157627320800414651120233110493300000000000002590280000000000000000000000000000000000222222000001582219022 -T2202301111115762733219790324WTT9@ZBTB2221222122221012211120114913069900000000000000000000000000000000000000000000000000000000000000000000001234000000000000 -T320230111111576273120050402WTTWZ@PYW22212222207312100000158 -T12023011111157629024700406701120323110766300000000080206540090000000000000000000000000000000000222222000000002229012 -T2202301111115762901219780412WTT0YZYTW2222211222225011213190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115762901219850723WT@T@9BY#2222212222225011216190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000003523 -T320230111111576290120180724WT@TBYT#022222122204398100000000 -T12023011111157640623500410671120313110835300000000000006540220000000000000000000000000000000000222222000000002229072 -T2202301111115764061219870727WTT0#WWPB2222212222221012212110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576406120060718WTTB@WZZB22222112204308100000050120060718WT@9ZP09W22222122204308100000050 -T12023011111157640720900411721120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111115764071219940104WTT#@P9#@2222211222223012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576407120110708WTT9ZWP0@22222122204305100000000 -T12023011111157650122700408351120512111116300000000000007710760000000000000000000000000000000000222222000000002229072 -T2202301111115765011219840402WTTBB99YY2222212222221012212110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576501120060113WTTWPBYZB22212112204309100000000120060113WT@BPYYZP22212122204309100000000 -T320230111111576501120160313WT@ZWW@Z022212212204398100000000420150708WT@@99PZ922212212104398109140000 -T12023011111157658122000409971120313110611300000000000000690520000000000000000000000000000000000222222000004592219012 -T2202301111115765811219910901WTTP#0WBB2122222222221012211110520821011805000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576581120120313WT@WZBPWB21212212204303100000000120090326WT@##TWZ@21212212204307100000000 -T12023011111157667020600414771120313110751300000000000006540880000000000000000000000000000000000222222000000002229072 -T2202301111115766701219930927WTT900TTB2222212222222012212110990023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576670120180904WTTZ#PZ0#22222112204398100000000120120102WT@#WBZW922222122204305100000100 -T12023011111157669225100407671120313110835300000000000006540450000000000000000000000000000000000222222000000002229012 -T2202301111115766921219930709WT@Y0Z@@B2222212222221012211120461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576692120220404WTTYP@#0P22222122204398100000000120190327WT@PTZ#@Z22222212204398100000000 -T12023011111157682824200410531120212110611300000000000005280810000000000000000000000000000000000222222000000002229072 -T2202301111115768281219860412WTTWY@B@92222212222221012213110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576828120140518WTT#00BW#22222122204302100000000 -T12023011111157684025900403711110233110223300000000000002820010000000000000000000000000000000000222222000000002229021 -T2202301111115768405219770514WT@YYBT9P1222212222222012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576840120100307WT@WP@0W912222122209304100000000 -T12023011111157687621700407751120213110611111150000424304660020000000000000000000000000000000000222222000000002229012 -T2202301111115768761219980708WT@TT@YTT2222212222221012213120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111576876120210713WTTPW90PT12222112204398100000000 -T12023011111157708822000407241120212110603300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111115770881220020123WTT9BTY@B2221222222221012212110134721011731000000000000000000000000000000000000000000000000000000000000231000000000000000000000 -T320230111111577088120220523WTTP@PTWP21212212204398100000000 -T12023011111157714824200407271120213110384300000000000003160590000000000000000000000000000000211122222000000012219012 -T2202301111115771481219890423WT@TYPTWT2222212222221012216110600023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111577148120100212WTT0BBB9Y22222122204306100000000 -T12023011111157720123500404821120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115772013219810326WT@@TY90W2222212222224012214110233711069941000000000000000000000000000000000000000000000000000000000000367000000000000000000000 -T320230111111577201120110524WTTWYZWTT22222112207305100000000 -T12023011111157720524200402501120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111115772051219990526WT@WZ@0T92222212222221012211110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111577205120220921WT@@B@PZT22222222204398100000000 -T12023011111157728522000405841120323110740300000000000003160170000000000000000000000000000000211122222000000012219012 -T2202301111115772851220000713WTT@0Z@WY1222212222222011211190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115772851219910401WTT9PZ@Y01222211222221021212190065423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111577285520210724WT@ZBWB0#12222122104398106090000 -T12023011111157740524200411401110233120000300000000000003760010000000000000000000000000000000000222222000000002229021 -T2202301111115774053219820714WTTZP0WZZ2222212222222012213110006011069913000000000000000000000000000000000000000000000000000000000000081000000000000000000000 -T320230111111577405120220718WTT#TBWB#22222122207398100000000 -T12023011111157769923700400481120433110893300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115776992219600511WTT9@@Y0@1222211122212012206290750013109900000000000000000000000000000000000000000000000000000000000000000000001109014100000000 -T2202301111115776992219650702WTTTYYBY01222212222212022210190006013089900000000000000000000000000000000000000000000000000000000000000000000000000014100000000 -T320230111111577699120080907WT@ZZYT9B12222112204307100000000420050327WT@999#TY12222112104310108100124 -T12023011111157786922000403351120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115778692219740701WTT9WTTTW2221222222211012212110630013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111577869120090112WTTBB#B9W22212222204306100000000 -T12023011111157804920600414871120623111395300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111115780491219860912WTT0Y0@ZY2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115780491219890223WT@BYBTZY2222212222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111578049120110408WT@#@#BBT22222112204305200000000120080118WTT9W#0BP22222122204307200000000 -T320230111111578049120200923WT@WPBWT922222122204398200000000120120711WT@9TPY9W22222112204303200000000 -T12023011111157812324700402991120233120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111115781233219810413WTTT#B0Y02222212222222012213110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111578123120200711WTT9TZ#Y922222112209398100000000 -T12023011111157813321700407751120213110611105420000000005280450000000000000000000000000000000000222222000000002229072 -T2202301111115781331219860312WTT0Y#BTY2222212222221012213110780021011700210000000000000000000000000000000000000000000000000000020000136400000000000000000000 -T320230111111578133120170924WTT00YW0922222112204301100000000 -T12023011111157832920600402131120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111115783291219920211WT@WWB0002222212222221012213110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111578329120180527WT@9Y9ZBW22222112204398100000000 -T12023011111157834222700401571120333120000300000000000005280640000000000000000000000000000000000222222000000002229022 -T2202301111115783423219830724WTTP0B@Y@2122222222222012216110006011069919000000000000000000000000000000000000000000000000000000000000330000000000000000000000 -T320230111111578342120130304WTTWPTTB921222222206302100000000120130304WT@##9PTY21222212206302100000000 -T12023011111157836422700408351120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115783642219810107WT@B9WTYY2222212222211012206110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111578364120150907WT@Z#WW#W22212122204301100000000120130327WT@0#@@B022212112204302100000000 -T12023011111157844122000403352120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111115784411219890321WT@9TPY9W1222221222222011205210035723011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111115784411219870721WT@9TPY9W1222222222222021212290035723011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111578441120190922WT@9TPY9W12222212204398200000000120090326WT@9TPY9W12222212204307200000000 -T12023011111157851024200406012120623211339300000000000010090030000000000000000000000000000000000222222000000002229032 -T2202301111115785101219920223WT@BPB@P@2222211222222011204290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115785101219930401WTTBWBT9B2222212222222021216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111578510120150727WT@YWP0TW22222212204302200000000120140523WT@@YP@WW22222212204302200000000 -T320230111111578510120200123WT@9T@YBZ22222222204398200000000120180223WTT@YP#P@22222212204398200000000 -T12023011111157856822000403891120233110516300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111115785682219450405WTT9ZBPTY2222122122214012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000775015900000300 -T320230111111578568120050726WT@0@BP#P22221222204310100000000 -T12023011111157867323500405981120233120000104920000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111115786733219930704WTT#@@YZB1222222222223012214110006011069944000000000000000000000000000000000000000000000000000000000000492600000000000000000000 -T320230111111578673120090408WTT9P#PTP22222122207307100000000 -T12023011111157882621700406141120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115788262219840708WTTTYP0Z02222211222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111578826120080424WTTT0##9W22222112204308100000000 -T12023011111157885324100402401120233110611300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111115788533219680704WT@0@PW9T2222212222225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111578853120130923WT@0PPZ0Y22222122209302100000000 -T12023011111157891723500410671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115789173219830104WT@@Z0T9T2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111578917120090926WTTPTZY0B22222122207306100000050 -T12023011111157897025900402831120213110516109310000065500010020000000000000000000000000000000000222222000000002229012 -T2202301111115789701219900107WTTWB9T9@1222221222221012208110025811011700210000000000000000000000000000000000000000000000000000040000125600000000000000000000 -T320230111111578970120180104WT@PY909Z12222212204398100000000 -T12023011111157897723900408801120333120000300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111115789773219600901WT@TPTTWW2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000698000000000000 -T320230111111578977120130418WTTPBBZTW22222112206304100000000120050121WTTYYTBBW22222122206311100000000 -T12023011111157902124200404891120213110598300000000000005280110000000000000000000000000000000000222222000000002229072 -T2202301111115790211219780202WT@PWWZ##1222222222221012212110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579021120070127WT@P@@BWP12222222204310100000000 -T12023011111157921424200404281120233110516300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111115792142219860127WT@PPW9TZ2221222222214012212110710013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111579214120050326WT@TW@W9022212212204309100000000 -T12023011111157927325600414551120213110598300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111115792731219790123WTTYB9PTW2222212222223012209110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579273120090222WT@#Y@P9922222122204307100000000 -T12023011111157927422000408891120313110835300000000000006210020000000000000000000000000000000000222222003200012219072 -T2202301111115792741219870123WT@9#BBB02221222222221012212110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579274120210504WTTWWP0@B12212212204398100000000120090713WT@TTZWPB22212212204308100000000 -T12023011111157929422700408351120213110598300000000000505280020000000000000000000000000000000000222222000000002229012 -T2202301111115792941220030405WTTY@@#TY1222212222221012208110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579294120220912WTT9@0W#T12222222204398100000000 -T12023011111157932420600406751120232120000300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111115793243219850411WTTPT9W992212212222225012216110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000005160 -T320230111111579324120170405WTT@ZPYZP12222112207398100000000 -T12023011111157936024700406632120423211006300000000196006540040000000000000000000000000000000000222222000000002229032 -T2202301111115793601219930704WT@99@BB02222212222222011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115793601219930112WTTZ@@WP@2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579360120200222WT@Z#YP##22222122204398200000000420170108WT@PPYBPY22222122204398200000000 -T12023011111157940022000412691120432110704300000000026105280170000000000000000000000000000000000222222000000002229022 -T2202301111115794002219690926WT@YYBT9P1222222222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579400120050404WT@#PP9#W12222222204311100000000 -T320230111111579400120150912WTTB0BZWT12222212204302100000000420150912WT@Z@Z9T912222212104398109140000 -T12023011111157948624900404261110213110484300000000000003230010000000000000000000000000000000000222222000000002229012 -T2202301111115794861220040426WTTYW@ZPW1222222222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579486120220701WT@#P@0#Z12222222204398100000000 -T12023011111157951122000411971120412110922300000000000008950150000000000000000000000000000000000222222000000002229072 -T2202301111115795111219820913WT@09W#TB1222222222221012212110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579511120100412WT@W0YPTB22212212204307100000000 -T320230111111579511120220304WTT#ZBZZB12222212204398100000000120210424WT@W#9@P@12222222204398100000000 -T12023011111157979624100402401120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111115797961219960324WT@Z###T02222212222223013211190421823011800000000000000000001000000000000000000000000000000000000010000000000000000000000000000 -T12023011111157992320800405391120213110598300000000002505280160000000000000000000000000000000000222222000000002229012 -T2202301111115799231219720107WTT90Z#9P2222212222225012208110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579923120090221WTTTZ#Y#T22222122204305100000000 -T12023011111157992922000407241120433110939300000000000005280430000000000000000000000000000000000222222000000002229022 -T2202301111115799292219740426WTTBYY#Y#2221222122213012211120770013109900000000000000000000000000000000000000000000000000000000000000000000000753008900000000 -T320230111111579929120090304WT@#PBBBB22212222204305100000000 -T320230111111579929120140909WTTYTY9WY22212222204301100000000420110401WTTPYBZTB22212222104304109140000 -T12023011111157996024200409841120423110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111115799601219890312WT@B9Y99T2222212222222011212210045623011800000000000000000000000000000000060001000000000000000000000000000000000000000000000000 -T2202301111115799601219790407WT@TTTZTT2222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111579960120170126WT@9TTTT922222112204398200000000120110918WTTYPZBZZ22222122204398200000000 -T12023011111158006224900404261120212110598300000000029603460060000000000000000000000000000000000222222000001822219072 -T2202301111115800621219680921WTTY#B@B02222212222221012216110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580062120040712WTT#99PPZ21222212204311100000000 -T12023011111158009125900402631120633110939300000000133306130340000000000000000000000000000000000222222000001582219022 -T2202301111115800912219820312WT@YYBT9P1222212222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115800912219870912WT@YYBT9P1222221222222022212990006011079926000000000000000000000000000000000000000000000000000000000000079100000000000000000000 -T320230111111580091120130712WTTWYZ@#Y12222222204302100000000120050712WTTW9Y99912222212204310100000000 -T320230111111580091120210701WT@@0@Z@B12222212204398100000000120200123WTTPYPP@012222212204398100000000 -T12023011111158013525900406651120212110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111115801351219920118WT@00TP#@1122211222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580135120160727WTTZ@PPTT12222112204398100000000 -T12023011111158022224200407271120512111116300000000000004620560000000000000000000000000000000308122222000000012219072 -T2202301111115802221219870114WT@0@PWTB2221222222221012209120820023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580222120150223WTTPWY#BB22212212204301100000000120050723WTTB9#0#P22212212204311100000000 -T320230111111580222120170702WT@Y0Y@0W22212222204398100000000420160122WTT##0TPP22212222104398109140000 -T12023011111158029125800402241120313110740300000000000003920160000000000000000000000000000000261122222000000012219042 -T2202301111115802911219910413WT@@P#ZT02212212222223012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580291120140321WT@B#PT0#12222122204398100000153120090412WTT9TYZ0Z12122212204306100000000 -T12023011111158031024200400491120212110599300000000000003160240000000000000000000000000000000211122222000000012219072 -T2202301111115803101219820423WTTZW@WPB2222212222221012212111370023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580310120140422WTT9YBPB022222122204302100000000 -T12023011111158033524700406702120313210826300000000200006540130000000000000000000000000000000000222222000000002229032 -T2202301111115803351219880902WTTB@YBZ@2212222222223012212210144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580335120190704WT@#BZZZ022122222204398200000000120160207WTTBTB#YT22122212204398200000000 -T12023011111158039724700405831120623111269300000000021605090340000000000000000000000000000000000222222000005002219012 -T2202301111115803971219770905WT@Y#0#BB2222121222222011215190352521011932000000000000000000000000000000000000000000000000000000000000200000000000000000002750 -T2202301111115803971219770312WT@9P@P0W2222122222222021214190352523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580397120100213WTTZWT0WB22221222204305100000000120070513WTT#Z#0P922221222204308100000000 -T320230111111580397120160904WT@0BYBZ022122212204398100000000120100213WT@99W#@P22221222204305100000000 -T12023011111158041524200404891120712111480133470000000011650400000000000000000000000000000000000222222000000002229072 -T2202301111115804151219890912WTTWT0TT#2221222222221012216121030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000566 -T320230111111580415120140712WTT9@P@9@22212212204303100000033120120327WT@#@00BZ22212222204304100000033 -T320230111111580415120170927WT@ZPTBTB22212222204398100000000120160401WT@0@PPY#22212212204301100000033 -T320230111111580415120190901WTTT#ZWPP22212222204398100000000120180912WTTWYZ99W22212222204398100000000 -T12023011111158042524200403941120333110740104470000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111115804253219560721WTT0PT#992221222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001312000000000000 -T320230111111580425120200514WTT99ZYBW22212222206398100000000120170507WTT0T0@@922212222206398100000000 -T12023011111158074121700407751120313110786300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111115807411219860127WT@YZ99Y#2221221222225012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580741120110107WT@PT##WP22212222204305100000000120090709WT@PY0Y@#22212222204306100000000 -T12023011111158082824200414351120333110776111100000000005280550000000000000000000000000000000000222222000000002229022 -T2202301111115808283219940113WTTB#09BP2222122222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580828120180427WTTWWZ99922122222207398100000000120080704WTT9B#WW@22221222207308100000000 -T12023011111158093925600414551120233110446300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111115809395219830222WTT@P#0ZB2222212222222012213110006011069933000000000000000000000000000000000000000000000000000000000000262500000000000000000000 -T320230111111580939120080213WTTY90P0922222112209306100000000 -T12023011111158095422000410052120423210942300000000000007710100000000000000000000000000000000000222222000000002229032 -T2202301111115809541219890913WT@9WW0ZP2222211222222011214290065422011800000000000000190003000000000000000000000000000000000000050000000000000000000000000000 -T2202301111115809541219940412WTTZ#9@@B2222212222222021214290065422011800000000000000190003000000000000000000000000000000000000050000000000000000000000000000 -T320230111111580954120210704WT@YB9Z9W22222122204398200000000120190911WT@BWTPBB22222122204398200000000 -T12023011111158096924700413761120423110939300000000000007710110000000000000000000000000000000000222222000000002229012 -T2202301111115809691219860723WTTBPPTYT2222211222222011216290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115809691219960707WT@#BZYW92222212222222021212290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111580969120190704WTT90PP9#22222122204398200000000120180222WTT0YBTB@22222122204398200000000 -T12023011111158101025600411521120313110766300000000025006540070000000000000000000000000000000000222222000000002229012 -T2202301111115810101219860509WT@ZTZ@TT2221221222225012216110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111581010120100323WTTW09WBZ22212222204307100000000120080702WT@#P#TT922212212204308100000000 -T12023011111158103522000407411120212110376300000000000003160190000000000000000000000000000000211122222000000012219012 -T2202301111115810351219920411WTTY9W9@Y2221222222221012212110451521011211000000000000000000000000000000000000000000000000000000000000078800000000000000000000 -T320230111111581035120110204WTTTP0WYZ22212222204305100000000 -T12023011111158105123500402291120213110611300000000000005280510000000000000000000000000000000000222222000000002229012 -T2202301111115810511219900727WT@YT@P9Y2222222222221012211110520823011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111581051120210401WT@BTTBWB12222222204398100000000 -T12023011111158105222700413181110213110516300000000000003160280000000000000000000000000000000000122222000000002229012 -T2202301111115810521219960427WT@0B0TYT1222221222221012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111581052120150201WTTW#0BT912222122204301100000000 -T12023011111158108222100401271120313110766110860000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115810821219970121WTT0Z9TPP1222222222223012212120055523011700000000000000200000000000000000000000000000000000000000130000000000000000000000000000 -T320230111111581082120200526WT@PTZ9#P12222222204398100000000120170121WTTPW#W0B12222222204398100000000 -T12023011111158113825900406081120533120000300000000000007710630000000000000000000000000000000000222222000000002229022 -T2202301111115811383219600308WT@0B9YZB1222222122222012205220283211069915000000000000000000000000000000000000000000000000000000000000090000000699000013090000 -T320230111111581138120130207WTT0PB@T#12222112206303100000000120110718WTT9BPW0W12222212206304100000000 -T320230111111581138120150307WT@TP#ZP#12222122206398100000000120140501WTTYZ9BWT12222122206302100000000 -T12023011111158123225100407671120233120000300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111115812323219580504WT@YWWZ9Z2222211122222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001952000000000000 -T320230111111581232120180302WT@9PZWYW22222112206398100000000 -T12023011111158130825600412851120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115813082219840512WT@PTTZPP2222212122211012211110006013109900000000000000000000000000000000000000000000000000000000000000000000000319023700000000 -T320230111111581308120130104WT@0T09#B22122222204302100000449120130912WTT0@#BY022222112204303100000000 -T12023011111158137122700408491120213110631300000000000004340210000000000035013000000000000000000222222000000942219072 -T2202301111115813711219790302WTTPWWYWT2122222222223012211111170023011800000000000000000002000000000000000000000000000000000000300000000000000000000000000093 -T320230111111581371120080723WT@W0@#9#22222122204307100000000 -T12023011111158152820600404121120423110893300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111115815281219760126WT@W0BTW#2222211222222011213290114921011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115815281219710304WT@T9@B#02222212222222021213290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111581528120130312WT@B@ZZ@W22222122204304200000000120060313WTTWYT0@Z22222112204309200000000 -T12023011111158156024200408391120733111480300000000000010090220000000000000000000000000000000000222222000000002229022 -T2202301111115815601219880723WT@WZ@YYB2221222222222012207110233723099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115815602219650912WT@WT#PPT2221222122212022212190006013109900000000000000000000000000000000000000000000000000000000000000000000000616022600000000 -T320230111111581560120060205WT@TTWP#022212222204309100000000 -T320230111111581560120090723WTT#@Z00@22212222204306100000000120080713WT@Z9Z9@P22212222204306100000000 -T320230111111581560120200905WTT@TZ99B22212212204398100000000120110412WT@W@B9ZY22212212204305100000000 -T12023011111158171624700402991120823111691300000000240711510060000000000000000000000000000000000222222000001382219012 -T2202301111115817161219870723WTTPTZWWZ2222211222222011213290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115817161219860722WTTP#ZP0B2222212222222021214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000137 -T320230111111581716120100713WT@PT99TP22222112204305200000000120090923WT@ZYW0@T22222122204307200000000 -T320230111111581716120160407WT@9TWBBT22222112204398200000000120130312WTT#ZZYB#22222122204303200000000 -T320230111111581716120210212WTTYBB9B022222122204398200000000120170713WT@T@P0TP22222112204398200000000 -T12023011111158172222000406191120413110939300000000257307710240000000000000000000000000000000000222222000000002229012 -T2202301111115817221219700509WT@0@0@YB2222211222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111581722120110708WT@YB##@922222112204304100000000 -T320230111111581722120140704WT@@YBYTY22222112204301100000000120130712WT@P#WWB022222112204302100000000 -T12023011111158193624200414851120233120000300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111115819365219530909WTT@Z90Y92221222122222012213110006013109900000000000000000000000000000000000000000000000000000000000000000000001577000000000000 -T320230111111581936120060426WT@BB9PB012212212209309100000000 -T12023011111158206022900405641120213110598300000000010005280200000000000000000000000000000000000222222000000002229072 -T2202301111115820601219800224WTTWZBBTT2222212222225012214110780023011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111582060120090509WT@BYYY0P22222122204306100000000 -T12023011111158215824700409321120533111034300000000000006210200000000000000000000000000000000000222222000000332219022 -T2202301111115821582219850712WT@YYBT9P1222222222221012209920006011079910000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111582158120080514WT@YBBT0@12222222204308100000000120060326WTTY0WPT@12222212204309100000000 -T320230111111582158120150423WT@0Z9T#012222212204301100000000420100409WTTTBB0YB12222222204306100000000 -T12023011111158223424700408301120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115822343219910923WT@@@@90P2222212222221012212120006011069940000000000000000000000000000000000000000000000000000000000000439200000000000000000000 -T320230111111582234120090113WT@0#0@0012222112207305100000000 -T12023011111158229724200404281120312110766300000000000006540270000000000000000000000000000000000222222000000002229072 -T2202301111115822971219880322WTTBZ##ZB2222212222223012212111010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582297120130307WT@@B@B#022222112204301100000000120120323WT@ZP@TYP22222122204302100000000 -T12023011111158233120600404121120523111136300000000000008880020000000000000000000000000000000000222222000000002229012 -T2202301111115823311219800214WT@WB9YB02222211222222011216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115823311219840326WTTTPWYBZ2222212222222021216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582331120050701WT@990YYB22222122204311200000000 -T320230111111582331120110714WT@@BWBB022222112204306200000000120070413WT@9TYPPZ22222112204310200000000 -T12023011111158239825000400451120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115823983219690226WT@PW#@W@2122222222225012214120006013069900000000000000000000000000000000000000000000000000000000000000559000000000000000000000 -T320230111111582398120060907WT@BT0W#@21222222207309100000000 -T12023011111158244922000404841120113110376300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111115824491219930304WT@9PBTBY2222122222221013212190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111158248222000407241120323110704300000000001406540180000000000035001000000000000000000222222000000002229012 -T2202301111115824821219700312WTT0TTWPZ2221222222222011213110164421011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115824821219730112WT@ZWY00B2221221222222011216190164421011940000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111582482120150726WT@9#PZB922212212204301100000450 -T12023011111158248324500405781120313110766300000000000006540880000000000000000000000000000000000222222000000002229072 -T2202301111115824831219820923WT@YPT@0@2222212222221012213110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582483120090118WT@WYYWWP22222112204306100000000120040313WT@9YZWB@22222112204311100000000 -T12023011111158249324200408571120612111343300000000000007990180000000000000000000000000000000000222222008800012219072 -T2202301111115824931219870911WT@@@0#9W2221222222221012212110850023011800000000000000000000000000000000290000000000000000000000000000000000000000000000000000 -T320230111111582493120080713WTT9@TT#Z22212212204309100000000 -T320230111111582493120200923WT@B#PW0B21222222204398100000000120150412WT@W@Z9YT22212222204302100000000 -T320230111111582493420150412WTTZT90Z@22212222104302109140000120100404WT@##T9Y922222122204306100000000 -T12023011111158262322000406951120533110598300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111115826232219910407WT@YYBT9P1222221222221012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115826232219970412WT@YYBT9P1222222222221022298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582623420150927WT@YYBT9P12222212204301900000000 -T320230111111582623120220923WT@9TPY9W12222222204398100000000120190304WTTYW090@12222222204398100000000 -T12023011111158264620800410751120213110631300000000000004280020000000000000000000000000000000000222222000001002219012 -T2202301111115826461219920927WTTW@ZWWZ2222211222221012212110124821011805000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111582646120130304WTT9@TYZZ22222112204302100000000 -T12023011111158264820800411601110313110835300000000000000420190000000000000000000000000000000000222222000006122219012 -T2202301111115826481219900318WT@BZBBWY2222212222221012213110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582648120210326WTT9TBT#B22222222204398100000000120190701WT@99P9WP22222122204398100000000 -T12023011111158268424200414721120213110496300000000005003130040000000000000000000000000000000000222222000002152219012 -T2202301111115826841219970907WT@#PBW9Z2221222222221012212110055521010114000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582684120220201WTT0@B@9@22212222204398100000000 -T12023011111158269020600404122120213210548300000000000005280090000000000000000000000000000000000222222000000002229032 -T2202301111115826901219930218WT@Z0BBWZ2222222222221012211910105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582690120190304WTT0#9WT#22221212204398900000000 -T12023011111158269325900402831120323110786300000000023106540020000000000000000000000000000000000222222000000002229012 -T2202301111115826931220020123WT@Z@W@ZP2222212222222011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115826931220010118WT@@9P#T#2222211222221021212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582693120210101WTT#ZT0WY22222112204398100000000 -T12023011111158277724200414021120313110766300000000118106310190000000000000000000000000000000000222222000000232219012 -T2202301111115827771219950401WTTW9@B9@2221222222221012216110283223011400000000000000000000000000000000000000000000000000000000030000000000000000000000000022 -T320230111111582777120160908WT@0P9YBW22212222204398100000000120120722WTT@99PY#12222122204303100000000 -T12023011111158280725900402631120613111199125200000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111115828071219890423WTT#W9YBW1222212222221012212210174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115828072219920501WTTB0YB9@1222211222221102204990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582807120110102WT@@T#ZWB12222122204304200000000120100121WT@BT9YBP12222122204305200000000 -T320230111111582807120220107WT@WY@WPY12222112204398100000000120150305WTT##TBBT12222222204398100000000 -T12023011111158292824200403511120212110599300000000000003160440000000000000000000000000000000211122222000000012219012 -T2202301111115829281219880909WTTP9PW9Y2122222222221012212110402023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111582928120190413WT@Z@TPPP21222222204398100000000 -T12023011111158296622700403021120213110611300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111115829661219900522WTTP@0@#B2222212222222013212290045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115829665219900404WT@YYBT9P2222211222222023212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111158302322000411552120213210598300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111115830231219870423WT@9TPY9W1222222222221012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583023120070412WT@9TPY9W12222212204307200000000 -T12023011111158307524200402501120513111116300000000000008880250000000000000000000000000000000000222222000000002229072 -T2202301111115830751219920526WT@Z0WB#T2122222222221012216110700023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000057 -T320230111111583075120170227WT@900ZB@22212222204398100000000120120711WT@0TZTBW22222112204304100000100 -T320230111111583075120220309WTT@#WWZW22222222204398100000000120210701WTTP0TP@B22212222204398100000000 -T12023011111158308222000407961120313110730300000000000003920450000000000000000000000000000000261122222000000012219012 -T2202301111115830821219880407WTTBW09Y@2212222222223012212210451523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583082120190304WT@90@@P922122222204398100000000120160114WTTWP#W@B22122212204398200000000 -T12023011111158311024200408391120313110835300000000000706540050000000000000000000000000000000000222222000000002229012 -T2202301111115831101219960309WTTY9TPBW1222211222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583110120210405WTTZWYP@#12222112204398100000000120190522WT@BBBW#@12222112204398100000000 -T12023011111158312122000410332120233210516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115831213220010423WT@Y00BB92222121222221012212210095111069940000000000000000000000000000000000000000000000000000000000000251100000000000000000000 -T320230111111583121120040523WT@PWYY9T22221222207311200000000 -T12023011111158317022000405321120113120000300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111115831701219880726WT@Y@0B9P2222212222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111158321325800413571120213110598300000000000105280090000000000000000000000000000000000222222000000002229012 -T2202301111115832131220010718WTT9YBB001222212222221012212110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583213120220327WT@9TPY9W22222122204398100000000 -T12023011111158326823900405971110512111211300000000000006300010000000000035001000000000000000000222222000000002229012 -T2202301111115832681219870123WT@PZYYW@2222211222221012216110114923011400000000000000000000000000000000000000000000000000000000290000000000000000000000000000 -T320230111111583268120100104WTTZP#@#Z12222122204306100000000120090208WTT#WZP0912222122204307100000000 -T320230111111583268120160507WT@@9WZYW12222112204398100000000120120401WTTZBTY@Z12222112204303100000000 -T12023011111158342420600412561120213110611300000000215105280120000000000000000000000000000000000222222000000002229012 -T2202301111115834241219910914WT@##T@0Y2222211222221012213110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583424120180721WT@B#9BZ022222122204398100000000 -T12023011111158352622000413731120313110575300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115835261220010222WT@9TPY9W1222212222221012203210055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583526120220718WT@9TPY9W22222222204398100000000120180413WT@9TPY9W12222112204398200000000 -T12023011111158353020600414871110233110611112180000043504170010000000000000000000000000000000000222222000000002229021 -T2202301111115835303220030523WT@T@Y#T02222212222221012212110006011069948000000000000000000000000000000000000000000000000000000000000311600000000000000000000 -T320230111111583530120050913WTT@0WWPW22222122207312100000000 -T12023011111158362325600413441120213110599300000000000003160240000000000000000000000000000000211122222000000012219012 -T2202301111115836231220000323WT@#P009@2222212222221012211110253523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583623120180711WT@YB@00922212122204398100000000 -T12023011111158374821700406141120213110611300000000000004550080000000000000000000000000000000000222222000000002229012 -T2202301111115837481219880202WT@PZ9@WB2222212222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583748120220218WTT9YPWZW22222122204398100000000 -T12023011111158382122000402111120232120000300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111115838213219690104WT@WBY@TP2221222122225012209110025813069900000000000000000000000000000000000000000000000000000000000000000000001518000020420122 -T320230111111583821120190704WT@PTW@9022212222206398100000000 -T12023011111158386322000411551110513111211300000000000000570280000000000000000000000000000000000222222000003282219012 -T2202301111115838631219900501WT@B0#9#T2222212222221012212110520823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583863120140705WT@YYY###22212222204302100000000120090901WT@B@P9ZT22222222204307100000000 -T320230111111583863120210323WTTBY#B0022222122204398100000000120200913WT@YW9WT#22222122204398100000000 -T12023011111158390524200400491120213110611300000000010905280050000000000000000000000000000000000222222000000002229012 -T2202301111115839051220000401WTTZBBW0W2212222222221012298110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583905120190123WTTPP#Y##22122122204398100000000 -T12023011111158398124700401281120113110376300000000011204170050000000000000000000000000000000000222222000000002229012 -T2202301111115839811219980426WT@#9PYZW1222212222221013210190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111158399024700409321110523111116300000000000001430010000000000000000000000000000000000222222000000002229012 -T2202301111115839901219880701WTTWTPTZT2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115839901219940107WTT#WBW0#2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111583990120160507WT@T@YYYZ22222122204398200000000 -T320230111111583990120190323WT@9PZT9#22222122204398200000000120170214WT@Z00YPB22222112204398200000000 -T12023011111158401424200402501120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115840143219730112WT@9@TBTY2222211222222012213110006011069942000000000000000000000000000000000000000000000000000000000000476500000000000000000000 -T320230111111584014120070207WTT0@BZ@Z22222122206307100000000 -T12023011111158401525200400391120333120000300000000000005280840000000000000000000000000000000000222222000000002229022 -T2202301111115840153219780927WT@#BZP0P2222212222222012212110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584015120140912WTTWPPZY022222122207398100000000120130926WT@99TZ0B22222122207302100000000 -T12023011111158401824200403941120432110939300000000000006540650000000000000000000000000000000000222222000000002229022 -T2202301111115840182219910704WT@@Y@9#T2221222222211012212110015913089900000000000000000000000000000000000000000000000000000000000000000000000000075600000000 -T320230111111584018120100722WT@#W9Y@Y22212212204306100000000 -T320230111111584018120140112WT@0TPWTP12212122204302100000000120120321WTT0#BTY#12212112204303100000000 -T12023011111158406925100411761120213110618104400000244705280030000000000000000000000000000000000222222000000002229012 -T2202301111115840691219920922WT@09@0P#2222212222223012213120045623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584069120190401WTTPWZZ#P12122122204398100000000 -T12023011111158408023700414331120633111034300000000180007710040000000000000000000000000000000000222222000000002229022 -T2202301111115840802219880421WT@YYBT9P1222212222222012209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115840802219870423WT@YYBT9P1222211222222022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584080120080127WTTT9P#P#12222122204308100000000120060914WT@9Y@#YT12222122204310100000000 -T320230111111584080120150101WT@@T#Z0@12222112204302100000000120100127WT@90@TZZ12222122204306100000000 -T12023011111158411424200414851120233120000300000000000001990530000000000000000000000000000000000222222000002182219022 -T2202301111115841143219830418WTT09W##Y2222122222222012212110006013069900000000000000000000000000000000000000000000000000000000000000360900000000000000000000 -T320230111111584114120110918WT@00Z#PY12222222209305100000287 -T12023011111158411520600414251120313110766300000000050106540080000000000000000000000000000000000222222000000002229012 -T2202301111115841151219920226WTTTW909B2122222222223012216110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584115120200709WT@ZTZYYZ11222222204398100000000120180312WTT##T#@#11222222204398100000000 -T12023011111158420925600411521120233120000300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111115842093219640305WT@Y#B#W02222211212222012212110006013069900000000000000000000000000000000000000000000000000000000000000459300000000000000000467 -T320230111111584209120120713WTT9TB9BB22222112206301100000000 -T12023011111158438524200414851120332110740300000000002506100150000000000000000000000000000000000222222000000442219042 -T2202301111115843851219830118WT@WWY#BZ2221222122221012212110600023109900000000000000000000000000000000000000000000000000000000000000000000010001000000000043 -T320230111111584385120220427WTT#0W0TB22212222204398100000000120070721WT@#@TZPZ22212222204310100000130 -T12023011111158451422700408491120113110376300000000020504170030000000000000000000000000000000000222222000000002229012 -T2202301111115845141219950927WT@BW#0BZ2222212222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111158455822000405841120312110773300000000000004900480000000000000000000000000000000163222122000000012219012 -T2202301111115845581219990114WT@0ZPT0W1221222222221012210120471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584558120200726WTTPT0B@Y22212212204398100000000120160126WTTZ#Z#PB22212222204398100000000 -T12023011111158455922000407961120232110516300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111115845592219970207WT@WY9@9@2222212222211012211120006013089900000000000000000000000000000000000000160001000000000000000000000000000000091400000000 -T320230111111584559120200712WT@Z@W#9B22212122204398100000000 -T12023011111158458022500410151120333120000300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111115845803219560426WT@0Y@TBW2222212122221012298910006011079934000000000000000000000000000000000000000000000000000000000000286500001759000000000000 -T320230111111584580120220127WT@YZZ99B22222122206398100000000120210422WTTTP@Y@Y22222122206398100000000 -T12023011111158459420800411931120213110591300000000000003160400000000000000000000000000000000211122222000000012219072 -T2202301111115845941219890513WT@99@0WT2222212222223012216110780023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584594120150723WT@0P@0BY22222122204398100000050 -T12023011111158471523500404531120323110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111115847151219920223WT@YZTZ@Z2222212222222011215290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115847151219920727WTTW#0T9Z2222211222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584715120180524WT@WB0@0@22222112204398200000000 -T12023011111158473920600402141120213110598300000000002305280270000000000000000000000000000000000222222000000002229012 -T2202301111115847391219880924WT@Y@9@@@2222212222221012212110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584739120140705WT@WPYW@Y22222112204398100000000 -T12023011111158479623500411471120313110835300000000005006540100000000000000000000000000000000000222222000000002229012 -T2202301111115847961220000423WT@ZWT0T@2222122222221012211910114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584796120210311WT@Y@T@#Y22221212204398100000000120180901WT@T9@T@022221222204398100000000 -T12023011111158483222000407241120312110823300000000045006540420000000000000000000000000000000000222222000000002229012 -T2202301111115848321219850723WT@0W@B9@2221222222225012212120421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584832120120111WTTY#@0YT22212212204304100000000120050523WT@W@#@TZ12222122204311100000000 -T12023011111158496425900410241120333110376300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111115849642219940208WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115849642219720412WT@YYBT9P1222211222223102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584964120220312WT@9TPY9W12222212204398100000000 -T12023011111158498424200404891120213110598300000000000005280160000000000000000000000000000000000222222000000002229072 -T2202301111115849841219890114WTTBYTYT#1222222222225012213110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111584984120140924WTT9Z009T12222112204303100000000 -T12023011111158501622000407241120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115850162219720227WTTZ#BY9#2221222222211012212111090013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111585016120070922WTTPZ#9Z922212212204309100000000120040918WTTBBYZ9@22212212204311100000000 -T12023011111158528225000414191120232110516300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111115852823219620112WT@BZB#PW2222212122224012214110075313069900000000000000000000000000000000000000000000000000000000000000000000001310000000000000 -T320230111111585282120140527WTT0YWTT@22222112206301100000050 -T12023011111158531424200410371120213110611300000000012005280540000000000000000000000000000000000222222000000002229012 -T2202301111115853141219900218WT@WZPT9P2222211222221012212110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111585314120130901WT@BBY@@W22222112204303100000050 -T12023011111158536023500404531120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115853603219610502WTTZBY99@2222212222215012216110640013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111585360120100921WTTBPWT@T22222112206303100000050120050421WT@B#9@W922222112206309100000050 -T12023011111158549124200409841120233110516300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111115854912219890323WTT0BTZ9#2222211222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111585491120100918WT@Z@@#0922222122204305100000000 -T12023011111158554522000414461120312110704300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111115855451219720423WTT990@0W2222212222221012213111740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111585545120050221WT@#T0B#Z22222122204312100000000420050221WT@B0PZWT22222122104312109140000 -T12023011111158575622000403352120213210598300000000000005280020000000000000000000000000000000000222222000000002229032 -T2202301111115857561219800104WT@9TPY9W2221221222221012214210035723011800000008000100000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111585756120130501WT@9TPY9W22212212204303200000000 -T12023011111158576924100405611120213110598300000000015005280040000000000000000000000000000000000222222000000002229012 -T2202301111115857691219760404WT@@9##Y02222222222221012214210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111585769120130226WT@TTZ#P#22222212204398200000000 -T12023011111158577521700409521120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111115857753219670907WTTZTZ@ZT2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000240800000000000000000000 -T320230111111585775120210718WTT@Y@BZY22222112206398100000000 -T12023011111158578722000402371120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111115857871219830927WT@Y90#0W2222221222222011298290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115857871219870512WT@TYZ9BW2222222222222021298290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111585787120210504WTT@9009Y22222212204398200000000120170721WT@W@BT#922222222204398200000000 -T12023011111158599025200410591120423111034300000000000007710140000000000000000000000000000000000222222000000002229012 -T2202301111115859901219820407WTT##P@BB2222212222222011212190114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115859901219810127WTTWB0P9@2222211222222021212190154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111585990120200708WT@#9@Y@022222112204398100000000120090322WT@9P0ZBT22222112204306100000000 -T12023011111158609822000412231120312110740300000000007005280330000000000000000000000000000000000222222000000002229012 -T2202301111115860981219760424WT@P9@@Z02222212222225012214110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000002141 -T320230111111586098120140926WT@W9Y@@P22222112204302100000000420050112WT@9W@B@@22222112104310106420300 -T12023011111158613525000403231120213110611300000000000105280140000000000000000000000000000000000222222000000002229012 -T2202301111115861351219880422WT@ZB#@T92222212222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586135120210523WTT#9B9W922222122204398100000000 -T12023011111158616622000400461120232110611300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111115861663219770305WTT@#P9#Y2221222222225012216110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586166120100514WT@TWPT#021212222207305100000000 -T12023011111158619224200413921120433120000300000000000006200900000000000000000000000000000000000222222000000342219022 -T2202301111115861923219930327WT@TW0BP02122222222222012214110006011069940000000000000000000000000000000000000000000000000000000000000464400000000000000000811 -T320230111111586192120130126WTT0YW#@921222222209301100000033 -T320230111111586192120210918WTT@ZWP##21222222209398100000000120200212WTT#0WWPB21222212208398100000000 -T12023011111158621225800405801120312110792300000000000006540180000000000070003000000000000000000222222000000002229012 -T2202301111115862121219990427WTTTTBP@Z2122222222221012211110124823011400000000000000000000000000000000000000000000000000000000110000000000000000000000000208 -T320230111111586212120190301WTTTTPBZ@21222222204398100000000120160424WTT0TB0Y022222122204398100000000 -T12023011111158625524600402361120333120000300000000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111115862553219620404WT@#TWTYT2222222222222012212210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586255120210121WT@90W9TW12222122206398100000000120200313WTT@Z@BZ912222112206398100000000 -T12023011111158626724200410001120523111199300000000000007580420000000000000000000000000000000000222222000001302219072 -T2202301111115862671219900101WTT9YW0WY2222212222221011213110710021011801000000000000000000000000000000000000000000000000000000000000141000000000000000000130 -T2202301111115862671219890107WT@B99#WY2221221222222021212190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586267120070414WTTYYYZ9P22212222204309100000000 -T320230111111586267120210121WT@T0W0Z022222112204398100000000120120311WTTWY0P9Z12222122204303100000000 -T12023011111158634423500410672120323210835300000000000006540020000000000000000000000000000000000222222000000002229032 -T2202301111115863441219840426WTTPBT0902222211222222011215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115863441219910523WT@WTBZ#Y2222212222222021215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586344120210513WT@@9Y@TB22222122204398200000000 -T12023011111158651123100409261120323110766300000000290006540050000000000090003000000000000000000222222000000002229012 -T2202301111115865111219910904WT@BZ#PTT2222211222222011212190035721011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115865111219840702WTTZZ9#T#2222222222222021216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586511120210311WT@9B@B#Y22222112204398100000000 -T12023011111158660024500405781120333120000300000000000005280590000000000000000000000000000000000222222000000002229022 -T2202301111115866003219720901WT@B9T#YZ2222212222225012212110006011069937000000000000000000000000000000000000000000000000000000000000315600000000000000000000 -T320230111111586600120140114WT@YTBW0921222212206301100000000120120723WT@#@YT#921222222206303100000000 -T12023011111158678124700402991120423110939300000000024007710060000000000000000000000000000000000222222000000002229012 -T2202301111115867811219920523WTTYYZPWT2222211222222011212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115867811219940727WT@WT#T#Z2222212222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586781120210404WT@T@PZW#22222112204398200000000120160726WT@P0TW9#22222122204398200000000 -T12023011111158684822000411282120213210611300000000030004170020000000000000000000000000000000000222222000000002229032 -T2202301111115868485219970727WT@YYBT9P1222221222222013214290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115868481220030207WT@9TPY9W2222212222222023212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111158685023500410671110213110516300000000000001190010000000000000000000000000000000000222222000000002229012 -T2202301111115868501220020318WTTYZY0T92222122222221012212910025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586850120220918WT@##0BT@22221212204398100000000 -T12023011111158686720600402141120313110611300000000000103870210000000000000000000000000000000258122222000000092219012 -T2202301111115868671219830227WT@ZYBTTP2222212222221012216110501021011215000000000000000000000000000000000000000000000000000000000000000000000000000000000008 -T320230111111586867120080724WT@T0#P0922222112204308100000168120070426WT@T9@Y#022222112204310100000168 -T12023011111158696620600414251120212110611300000000080605280330000000000000000000000000000000000222222000000002229072 -T2202301111115869661219850918WT@#9@TWT2222212222221012209110880023011800000000000000000000000000000000000000000000120001000000000000000000000000000000000000 -T320230111111586966120130708WTTTPPYYP12222212204302100000000 -T12023011111158697822700408351120312110740300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111115869781219730713WT@@0#WPW1222222222221012206210303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111586978120150912WT@T9PBTB12222222204301100000000120080913WT@@TZY9T22222212204307100000000 -T12023011111158699425600414551120213110611300000000300005280030000000000000000000000000000000000222222000000002229012 -T2202301111115869941219680524WTTYTZZY@2221222222223012212110481223011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111586994120080912WTTY0Y9TP22212222206309100000000 -T12023011111158701222000413731120313110766300000000000006170110000000000000000000000000000000000222222000000372219072 -T2202301111115870121219720313WT@W0PTB92222212222221012212111190023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000036 -T320230111111587012120090704WT@ZBB#T@22222122204308100000000120070312WTT@#9W#Y22222122204309100000000 -T12023011111158705124200403511120313110835138630000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111115870511220000421WT@0##@0B2222212222221012216120303021011743000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587051120200724WTTZB9YBT22222122204398100000000120170304WT@BZ0YZP22212122204398100000000 -T12023011111158707523500405271120323110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111115870751219940301WTTYWT@@92222212222222011212290105023011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111115870751219950113WT@9BB9##2222211222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587075120190712WTT@Z0#T@22222112204398200000000 -T12023011111158713621000404881120313110801300000000006406540020000000000000000000000000000000000222222000000002229012 -T2202301111115871361219850424WT@P00#YZ2222212222225012216110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587136120170226WT@9TZZP922222112204398100000000120110123WT@BT#@0022222112204304100000276 -T12023011111158713922700408351120413110939122730000000106540370000000000000000000000000000000000222222000000002229012 -T2202301111115871391219980107WTTY@Z9@Y1222222222221012210110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587139420170304WT@ZB@0T#12222212104398109140000 -T320230111111587139120210509WTTTPBTT912222212204398100000000120180322WTT0Y#9BB12222222204398100000000 -T12023011111158721220800409831120313110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111115872121219980426WTT0P#T#B2222212222221012212110075321011809000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587212120190907WTT@9#BBT22222112204398100000000120160724WTTPZ@Z@W22222122204398100000000 -T12023011111158727322700408351120313110766300000000070006540060000000000000000000000000000000000222222000000002229012 -T2202301111115872731219980424WT@PY0@Y91222222222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587273120220124WT@W9Y0B#12222222204398100000000120210401WT@T9BT#W12222222204398100000000 -T12023011111158728820800405391110323110740300000000000001470010000000000000000000000000000000000222222000000002229012 -T2202301111115872881220000923WTTP#PY@91212112222222011212190025823011800000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T2202301111115872881219980924WT@B#ZBPB2222211222222021212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587288120200101WTTTPP@9912121122204398100000000 -T12023011111158735123500407161120423110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111115873511219700707WT@BBB@B@2222211222222011214290055522011900000000000000310000000000000000000000000000000000000000070000000000000000000000000000 -T2202301111115873511219730127WT@WT@PY@2222212222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587351120090107WT@ZT#PWZ22222122204308200000000120070913WT@@Y9BB@22222122204310200000000 -T12023011111158740722600405051120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115874072219840904WTT#0T0T@2222212222215012212110332713089900000000000000000000000000000000000000000000000000000000000000000000000000080000000000 -T320230111111587407120100704WTT#WYW@922222122204304100000050120060322WT@W9WTZW22222112204308100000050 -T12023011111158749822000411281110232110899300000000000004170990000000000000000000000000000000000222222000000002229021 -T2202301111115874983219660423WT@BPYYBT2222212222213012212110402013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111587498120160302WT@Z@@ZPY22222222206398100000000 -T12023011111158756123700414331120333110740300000000000005280520000000000000000000000000000000000222222000000002229022 -T2202301111115875612219810327WT@9#ZP#Y2222212222213012211110910013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111587561120090312WTTP@9#Z@22212122204306100000000120070914WTT#WZYBZ22212112204309100000000 -T12023011111158756322000400811120233110376300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115875632219890304WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587563120090118WTTZT09@012222122204307100000000 -T12023011111158758320600408181120313110779300000000000002010490000000000000000000000000000000000222222000004532219072 -T2202301111115875831219860708WT@YW9Z@92222212222221012216110870021011829000000000000000000000000000000000000000000000000000000000000181000000000000000000000 -T320230111111587583120140318WTTTPTTZB22222122204301100000016120120702WT@0Y#PZP22222122204303100000016 -T12023011111158758724600411871110213110611300000000000001360040000000000000000000000000000000000222222000003922219012 -T2202301111115875871219660707WTTY@00TZ1222212222225012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587587120060713WT@ZBBT9022222112204309100000000 -T12023011111158761122000407411120233110478300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115876113219590923WTT@T#TYZ2221222122221012212110134713069900000000000000000000000000000000000000000000000000000000000000000000001330000000000000 -T320230111111587611120060426WT@9TP@T@22212212206310100000000 -T12023011111158762325200410141120233110516300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111115876233219680309WT@B0B#TW2222212222223012216110006011069913000000000000000000000000000000000000000000000000000000000000099900000000000000000000 -T320230111111587623120110121WT@#B00PY12222222206305100000000 -T12023011111158763425900402721120413111034300000000192307710040000000000000000000000000000000000222222000000002229012 -T2202301111115876341219750127WTTT00BPY1222212222222012212110055523010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111587634120060127WT@BY@@9B12222122204311100000000 -T320230111111587634120130302WT@#9P9WZ12222122204303100000000120070118WT@PBTW#B12222122204309100000000 -T12023011111158765424200414721120233120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111115876543219590913WTTW@PTY#2222222122222012298110006013079900000000000000000000000000000000000000000000000000000000000000000000000259000000000000 -T320230111111587654120220402WT@YBYPWY22122122206398100000000 -T12023011111158775624200404891120233110516300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111115877563219560404WTTB0@Z@B2222212122223012209110006013069900000000000000000000000000000000000000000000000000000000000000000000001229000000000544 -T320230111111587756120060105WT@TZPZ#P22222112206309100000050 -T12023011111158779520600406751120323110766300000000200006540060000000000000000000000000000000000222222000000002229012 -T2202301111115877951219940512WTT@ZY#992222211222222011214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115877951219950321WT@9TPY9W2222212222222021214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587795120200724WT@9TPY9W22222122204398200000000 -T12023011111158788520600402141120213110611300000000000005280570000000000000000000000000000000000222222000000002229072 -T2202301111115878851219890123WT@YY@PPW2222212222221012212110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587885120070912WT@T9TZ@#22222122204309100000000 -T12023011111158790424200409731120233110516300000000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111115879043219440124WT@9YWBT91122222122225012213110471313069900000000000000000000000000000000000000000000000000000000000000000000001507000000000000 -T320230111111587904120190504WT@YTB@PB11222112206398100000000 -T12023011111158794724700411201120312110835123880000100006540070000000000000000000000000000000000222222000000002229012 -T2202301111115879471219950113WT@0#P0@B2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111587947120220423WT@PYPYW@22222112204398100000000120180907WTTPBT@BB22222122204398100000000 -T12023011111158801425900402721120413111034300000000000907040150000000000000000000000000000000000222222000000672219012 -T2202301111115880141219990413WT@#PWPWZ1222212222223012216110342623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588014120160313WT@@@ZYTZ12222212204398100000066 -T320230111111588014120220922WT@09BPPP12222112204398100000000120200721WT@BY@#YZ12222122204398100000000 -T12023011111158806124700406701120413110762300000000000007710600000000000070001000000000000000000222222000000002229072 -T2202301111115880611219900912WTTY0BT0B2221212222221012213110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588061120100226WTTT9@Z##12222122204305100000000 -T320230111111588061120140313WTTPBWZB022212112204398100000000120120926WTTZ#WB@P22212222204303100000000 -T12023011111158806724200403511120513111116300000000005605840350000000000000000000000000000000000222222000003042219012 -T2202301111115880671219850514WT@0#0T992222122222221012211110362421011825000000000000000000000000000000000000000000000000000000000000159300000000000000000000 -T320230111111588067120060126WTT@YWZ@Y22221112204309100000025120050523WT@9WBTZP22221112204311100000025 -T320230111111588067120120521WTTY9W0TZ22222212204304100000025120080113WT@00PP@022222222204307100000025 -T12023011111158806822000411551120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115880682219800723WTTZYB#PT2222212222211012216120990013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111588068120110712WTTB999ZY22222122204304100000000 -T12023011111158811925000413201120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115881192219820704WT@#P#0001222222222211012210120025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111588119120070123WTTYP0Y0T22222222204309100000050 -T12023011111158815320600402131120313110611300000000000003920550000000000000000000000000000000261122222000000012219012 -T2202301111115881531219870923WTTYP9@@B2222212222221012210110560423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588153120110713WTTBW#Y@Y22222112204304100000000120070707WTTPT9@9022222112204309100000000 -T12023011111158853125900402631120433110739300000000000006540190000000000000000000000000000000000222222000000002229022 -T2202301111115885312219910921WT@YYBT9P1222222222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588531120120305WT@W#@B0B12222122204304100000000 -T320230111111588531120160418WTTPW0TBW12222122204301100000000120130114WT@#T0TY012222122204303100000000 -T12023011111158855524200407431120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115885552219890401WTT0ZZ#9#2222212122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000492044200000000 -T320230111111588555420090309WT@B@##W#22222112104305109140000120080912WTTBYWYY922222112204308100000000 -T12023011111158860425900403711120523111199300000000085008880050000000000000000000000000000000000222222000000002229012 -T2202301111115886041219910109WT@T@00WW2222212222222011211110293123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T2202301111115886041219890205WTT9YPP9@1222211222222021212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588604120090318WT@ZPT9B022222122204306100000000 -T320230111111588604120160407WTT@9Y@0T12222122204398100000000120130102WT9TTZ#W#12222122204302100000000 -T12023011111158860922000410051120523111199300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111115886091219860226WT@TW#PP92222122222221011212990174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115886091219890522WT@@9T@@W2222121222221011212190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588609120120901WT@BPZ@ZT22221222204304100000000 -T320230111111588609120180407WTTW0B#B@22221222204398100000000120140408WTTZY9#ZY22221222204302100000000 -T12023011111158885724100402401120433110835300000000000006540240000000000000000000000000000000000222222000000002229022 -T2202301111115888572219870713WT@YYBT9P1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588857120080312WTT@0Z#T912222112204306100000000 -T320230111111588857120130114WTTB0@@Y912222112204301100000000120100723WT@0YY##Y12222112204304100000000 -T12023011111158887122000413731120213110611300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111115888711219960127WTTY@W9901221222222221012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588871120160927WT@PZWWP912222112204398100000000 -T12023011111158893121700407751120522111116300000000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111115889311219860407WT@T9#9#02122222222222011212190204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115889311219820124WTTWT#@YT2122221222222011212190204021011944000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111588931120090213WT@P9#YY@21222222204308100000000 -T320230111111588931420180307WTTPB#Y9B21222212104398109140000120130218WTTPZP0@021222222204304100000000 -T12023011111158915921600410341120213110598300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111115891591220000204WTT#09ZZW2222212222223012212120144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111589159120220913WTT0ZW#@@22222112204398100000000 -T12023011111158918124200403511120313110835300000000000003040210000000000000000000000000000000000222222000003502219012 -T2202301111115891811219880107WT@W@#T@#2222212222221012212120540621011738000000000000000000000000000000000000000000000000000000000000070000000000000000000000 -T320230111111589181120210405WT@Z9W#TP22222122204398100000000120110509WTTZY#9W022222112204305100000000 -T12023011111158918224200402981120323110786300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111115891821219820901WT@9TPY9W2222221222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115891821219830723WT@9TPY9W2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111589182120050427WT@9TPY9W22222212204311200000000 -T12023011111158921024200407271120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111115892103219760108WTT#T9Z0W2222122222224012212110006013069900000000000000000000000000000000000000000000000000000000000000579400000000000000000000 -T320230111111589210120200101WT@YB#WB@22221212207398100000000 -T12023011111158921524700406701120212110560300000000000004440200000000000000000000000000000000000222222000000842219012 -T2202301111115892151219760726WT@Z#YW@92222212222225012213110352521011806000000000000000000000000000000000000000000000000000000000000033500000000000000000000 -T320230111111589215120150413WTT0P9@PP22222122204301100000000 -T12023011111158930222700408351120412110953300000000003007710400000000000000000000000000000000000222222000000002229012 -T2202301111115893021219970418WTT#Z@Z#Y1222222222225012209210520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111589302120140313WT@0W#09#12222222204301100000000 -T320230111111589302120200721WTTYY0W#912222222204398100000000120160414WT@Y@ZB#T12222212204301100000000 -T12023011111158930325600413441120213110576300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111115893031219960223WTTWP#@@Z1222212222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111589303120200313WT@Z@Z#YP12222112204398100000000 -T12023011111158941224100402401120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115894123219490318WT@TP@Z#92222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001207000000000238 -T320230111111589412120080908WTTZYZ@@B12222122206309100000050 -T12023011111158948724700409382120212210611300000000020005280570000000000000000000000000000000000222222000000002229062 -T2202301111115894871219620721WTT#T##ZB2222122222224012298910700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111589487120110123WTTT@YWW922221222206303900000000 -T12023011111158961825600411521120213110385300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111115896181219880305WT@9Z#9ZW2222212222225012216110451523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111589618120090224WT@#P0Y0Z22222122204307100000000 -T12023011111158990422000400591120412110939300000000165007710040000000000000000000000000000000000222222000000002229012 -T2202301111115899041219990502WT@Z9#WYY2222212222225012211110273323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111589904120160521WTT9TT@ZP22222122204301100000000 -T320230111111589904120220923WTTY#ZT9022222112204398100000000120170212WTT#09PZ@22222112204398100000000 -T12023011111159000624100412771120333110516300000000024105280070000000000000000000000000000000000222222000000002229022 -T2202301111115900062219930518WT@YYBT9P1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590006120170918WTTBTB0B#12222122204398100000000120140204WT@09Y##W12222222204302100000000 -T12023011111159000720600414251120213110611300000000025305280060000000000000000000000000000000000222222000000002229012 -T2202301111115900071219910323WTTBZT9T#2221212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590007120190723WT@BBTW0Z22212112204398100000000 -T12023011111159001323500409141120213110611300000000000905280230000000000000000000000000000000000222222000000002229012 -T2202301111115900131219850323WT@PBBWWW2222212222221012213110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000003386 -T320230111111590013120210212WT@TW#YT012222122204398100000050 -T12023011111159013820600407031120233110611300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111115901383219930921WT@#TT90T2222211222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590138120060112WT@0WBPBW22222112207310100000000 -T12023011111159015224200403941120313110776300000000500205690150000000000000000000000000000000000222222000000852219012 -T2202301111115901521219750912WT@#PYTBP2222212222223012213110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590152120110927WT@0#9TP@22222122204301100000000120090927WT@ZPZBZZ22222122206305100000000 -T12023011111159018024700408302120423210939300000000046007710030000000000000000000000000000000000222222000000002229032 -T2202301111115901801219800309WT@PBWZ##2222211222222011215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115901801219890904WTTWYZBYB2222212222222021215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590180120210726WT@WWB0PY22222122204398200000000120160121WT@TP#P9W22222122204301200000000 -T12023011111159018725000414191120213110598114720000000005280330000000000000000000000000000000000222222000000002229072 -T2202301111115901871219880127WT@0ZZ0WB2122222222221012212110910023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111590187120200114WTT9Y0PZZ11222112204398100000000 -T12023011111159020024200414851120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115902002219830711WT@Y@B9992222222222213012216110690013089900000000000000000000000000000000000000000000000000000000000000000000000000088900000000 -T320230111111590200120070307WT@W@9YPB22212222204307100000000120050512WTTWPY09#22212212204310100000000 -T12023011111159022324700405831120233110376300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111115902232219990523WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590223120220223WTT0#@0T012222212204398100000000 -T12023011111159023124700413761120212110611300000000100005280180000000000000000000000000000000000222222000000002229012 -T2202301111115902311219820127WT@TZZB902222221222225012214110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590231120110313WTTWBPTWW22222112204305100000000 -T12023011111159029623700414331120633111193300000000000008880140000000000000000000000000000000000222222000000002229022 -T2202301111115902962219780327WT@YYBT9P1222222222221012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000175 -T320230111111590296120050118WTTWTWTY#12222212204312100000000 -T320230111111590296120080118WTTB@W90@12222212204309100000000120060301WT@ZTZ@TW12222222204311100000000 -T320230111111590296120110111WTT#Z##T912222212204305100000000120090111WT@9ZYTT@12222212204307100000000 -T12023011111159031524100402401120613111116300000000000008880310000000000000000000000000000000000222222000000002229012 -T2202301111115903151219940707WTTY0TYTT1222212222222012212110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115903152219850907WTT@PTW901222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590315120160727WTT99#TZY12222112204398100000000120130324WTT0YBY9Z12222112204302100000000 -T320230111111590315120220921WT@@#BPTB12222222204398100000000120210923WT@@YY0YP12222112204398100000000 -T12023011111159033221000401191120333110740300000000000005280140000000000000000000000000000000000222222000000002229022 -T2202301111115903322219800312WTTB@@9T@2122212222211012213110085211089910000000000000000000000000000000000000000000000000000000000000075000000000050600000000 -T320230111111590332120070514WT@#B@#B#22222122204309100000000120050412WT@TZTBW022222112204311100000000 -T12023011111159035621400408021110333110470300000000000004760010000000000000000000000000000000000222222000000002229021 -T2202301111115903562219920323WT@YYBT9P1222222222224012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590356120190101WT@90Z0WY12222212204398100000000120120411WT@WP00BP12222212204302100000000 -T12023011111159039925200407301120213110611300000000000005280430000000000000000000000000000000000222222000000002229072 -T2202301111115903991219850422WTT#BTP992222212222221012211120710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590399120200522WT@Z@Z99@22222112204398100000000 -T12023011111159057225100407671120233120000300000000000004170460000000000000000000000000000000000222222000000002229022 -T2202301111115905723219570923WTT9PT0TW2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000870000000000000 -T320230111111590572120130918WTT0#0#B@22222122207302100000000 -T12023011111159058921700403821120513110740300000000055506270220000000000000000000000000000000000222222000000002229012 -T2202301111115905891219950323WT@9#BB#W2222211222222012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115905892219980308WT@0WW@WB2222212222212022212190243613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111590589120200502WTT#0#09022222122204398100000000 -T320230111111590589120220323WT@P#@T#W22222112204398100000000120220323WT@@#PTZT22222122204398100000000 -T12023011111159061324600411871120312110785106940000000006540330000000000000000000000000000000000222222000000002229012 -T2202301111115906131219930308WT@Z@99TW2222212222221012216110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590613120200927WT@@Y0BTT22222112204398100000000120170911WTT#BZBZ922222122204398100000000 -T12023011111159073221000405411120313110756300000000000005280300000000000035002000000000000000000222222000000002229012 -T2202301111115907321220010911WT@9Z#@B#1222222222221012211110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115907322220010427WTT#Z0ZZB1222221222211102212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111590732120200311WT@YYW#0912222212204398100000000 -T12023011111159078625100411761110213110611300000000000003310110000000000000000000000000000000154222221000000002229012 -T2202301111115907861219880909WT@PPBP9W2222212222221012216110124821011801000000000000000000000000000000000000000000000000000000000000001200000000000000000000 -T320230111111590786120080518WTTBYWPT022222112204308100000074 -T12023011111159084425900402831120533110830300000000020006540570000000000000000000000000000000000222222000000002229022 -T2202301111115908442219950713WT@YYBT9P1222212222225012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115908442219940712WT@YYBT9P1222221222221102206990006011079907000000000000000000000000000000000000000000000000000000000000038700000000000000000000 -T320230111111590844120130913WTT@WY09Z12222212204304100000050 -T320230111111590844120200204WTTTT@BWY12222212204398100000000120150301WTTB@#ZT012222212204301100000050 -T12023011111159086124200401241120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115908613219580701WT@YZTY9T2222212222225012214110283211069939000000000000000000000000000000000000000000000000000000000000338300000000000000000000 -T320230111111590861120100227WT@W##T#Z22222112206307100000000 -T12023011111159092322000408341120512111116138630000000508880300000000000000000000000000000000000222222000000002229012 -T2202301111115909231219820904WTTP9#9WP2222212222223012211110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590923120120724WT@9WTTWW22222122204302100000000120110904WT@TYPB0922222122204304100000000 -T320230111111590923120210407WT@9W09BT22222122204398100000000120170307WT@00WZZ@22222122204398100000000 -T12023011111159093324500405941120232110516300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111115909335219780708WTT@0@@@T2222211222211012212110006011069910000000000000000000000000000000000000000000000000000000000000020000000000091400000000 -T320230111111590933120210718WTTTP@PWW22222122209398100000000 -T12023011111159096720200409311120313110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111115909671219920526WTT#@ZYTT2222212222221012216110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111590967120180204WT@#BWT@922222112204398100000000120160202WT@#ZY#P922222122204398100000000 -T12023011111159097820800414651120532111116300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111115909782219890105WT@#P00TY2221222222213012216110015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111590978120170712WT@#PTZP#22212212204398100000000120150421WT@9ZTTBP22212222204398100000000 -T320230111111590978420140901WTT9@WZT@22212222104301109140000420130905WTTTZZW@W22212212104302109140000 -T12023011111159110120600403441120323110811300000000060304890330000000000000000000000000000000000222222000001652219012 -T2202301111115911011219660701WTTP0ZYZY2222212222222011216190600023011800000000000000000000000000000000000000000000000000000000170000000000000000000000000000 -T2202301111115911011219640301WTTB009B@2222211222222021216190342621011811000000000000000000000000000000000000000000000000000000000000065900000000000000000000 -T320230111111591101120060112WTTT@09@Z22222122204311100000000 -T12023011111159110322000409971120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111115911031219870104WT@9TPY9W1222222222221012205210055523010100000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111591103120220108WT@9TPY9W12222112204398100000000120200318WT@9TPY9W12222222204398200000000 -T12023011111159120424900404261120332110694300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111115912043219560214WT@Y9BWWB1222222122212012208110006013069900000000000000000000000000000000000000000000000000000000000000000000000326023100000000 -T320230111111591204520140923WTT#TP9Z912222222106301109140000120060308WTT#0#BZT12222212206308100000000 -T12023011111159121524700413761120113110306300000000000002640060000000000000000000000000000000000222222000001532219012 -T2202301111115912151220020912WTTBWT#@B2222212222222013216290075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000153 -T12023011111159122624200414721120313110835300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111115912261219890308WT@@YW9BZ2222212222223012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111591226120140908WT@YBY0YY22222112204302100000000120080208WTTB0ZWYW22222122204308100000000 -T12023011111159148324200402501120313110766300000000000906540030000000000000000000000000000000000222222000000002229012 -T2202301111115914831219990326WTT00TPWY2222212222223012210110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111591483120200321WT@B0T@BP22222122204398100000000120190704WTTB#W#@Y22222112204398100000000 -T12023011111159154422700408351120413110959300000000004907710020000000000000000000000000000000000222222000000002229012 -T2202301111115915441219820911WTTWY9BPZ1222222222223012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111591544120120418WT@9@PPWT12222222204304100000000 -T320230111111591544120210504WT@YZT##012222222204398100000000120130409WTTZTYPB@12222212204303100000000 -T12023011111159168925600414551110213110247300000000000002580010000000000000000000000000000000000222222000000002229012 -T2202301111115916891220040912WTTYZ9Y#B2222212122221012212110025821010105000000000000000000000000000000000000000000000000000000000000032600000582000000000000 -T320230111111591689120220412WTT#TZ#WW12222112204398100000000 -T12023011111159169922000408892120423210939300000000000007710040000000000000000000000000000000000222222000000002229032 -T2202301111115916991219800309WT@9TPY9W2221222222222011212290055522011900000000000000310002000000000000000000000000000000000000060000000000000000000000000000 -T2202301111115916991219750101WT@9TPY9W2221221222222021213290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111591699120100426WT@9TPY9W22212212204306200000000120080113WT@9TPY9W22212212204308200000000 -T12023011111159175023500410671120323110799300000000011605280270000000000000000000000000000000000222222000000002229012 -T2202301111115917501219740522WTTB#@TYY2222212222222011213190283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115917501219770701WT@PWP0@P2222211222222021212190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111591750520120426WTTWTPYP@22222112104303109140000 -T12023011111159195025900402831120312110784300000000000006540790000000000000000000000000000000000222222000000002229072 -T2202301111115919501219850512WTT009P9B2222122222221012212110680023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111591950120130122WTT#W0#P922222112204302100000050120060223WT@T9WY@922221222204309100000050 -T12023011111159198722100410901120513111116300000000014100980060000000000000000000000000000000000222222000007902219012 -T2202301111115919871219900411WTT9TT99T2222212222222012213190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115919871219600427WT@P@T0YY2222211122222022212190075323109900000000000000000000000000000000000000000000000000000000000000000000010790000000000000 -T320230111111591987120130913WTTZBTPBP22222122204304100000000 -T320230111111591987120190718WT9TT@Y0Y22222112204398100000000120160207WTTTBBYYP22222112204301100000000 -T12023011111159211422000409411110413110761142000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111115921141219970327WTTTYW0ZT2221222222221012216110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592114120190402WT@TBT9W#22222222204398100000000 -T320230111111592114120220114WTTYB#0PT22222212204398100000000120210407WT@Y#Y0BP22212222204398100000000 -T12023011111159215722000414461120313110835300000000000006540600000000000000000000000000000000000222222000000002229012 -T2202301111115921571219920408WT@@Y#Y@Y1222212222221012212110510923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592157120220107WTT00@T@012222112204398100000000120080707WT@PWYT@B12222122204308100000000 -T12023011111159216620900411721120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115921661219920523WTTB0WY992222211222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592166120180407WTTYTYTB912222112204398100000000 -T12023011111159220622000412811120332110516300000000010004170240000000000000000000000000000000000222222000000002229022 -T2202301111115922062219880418WT@YYBT9P1222222222221012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592206120130204WTTY@99#012222212204303100000000420080327WTT@PBBPW12222212104307109140000 -T12023011111159221824500404321120233120000300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111115922183219620526WT@P#WBWB2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002500 -T320230111111592218120140304WT@PT@TZZ22222112206301100000000 -T12023011111159230023700414331120423111052300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111115923001219920702WTTB@TTTT2222221222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115923001219950412WT@W9B90Y2222222222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592300120200401WT@@#YP#W22222212204398200000000120150126WT@#WBT#Y22222222204301200000000 -T12023011111159237120800410751120312110798300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111115923711219910127WTT00YBW@2222212222221012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592371120170927WT@#T#WBB22222112204398100000000120130513WTT@0@9ZY22222122204303100000000 -T12023011111159237923700414331120333110376300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111115923792220000421WT@YYBT9P1222212222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115923792219910909WT@YYBT9P1222211222221102209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592379120200524WTTT#BT#@12222112204398100000000 -T12023011111159238520600403591120213110611300000000000003160440000000000000000000000000000000211122222000000012219012 -T2202301111115923851220000407WTTY@@W#02222212222221012211110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592385120180913WTTB9BYWT22222112204398100000000 -T12023011111159263820800414151120213110611300000000125005280060000000000000000000000000000000000222222000000002229012 -T2202301111115926381219730427WTTT9Z#ZY2222212222225012216120075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000001800 -T320230111111592638120100404WT@@ZYZY#22222112204307100000000 -T12023011111159266622000402891120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115926662219690113WTT0P9BPY2221222222211012211121570011089915000000000000000000000000000000000000000000000000000000000000118100000000061600000000 -T320230111111592666120080326WT@P#WBW922212222204306100000000 -T12023011111159269720200410361120422110962300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111115926971219770924WT@@Y@WYT2222212222222011216190940023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115926971219720323WTT9YYTYY2222211222222021212190750023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592697120160726WT@BB@BPB22222122204398100000000120150523WT@BW9B0W22222122204398100000000 -T12023011111159275424700409381120313110786300000000000004900110000000000000000000000000000000163222122000000012219012 -T2202301111115927541219830714WTTZPYP0@2122222222221012216120402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592754120180923WT@YTY@@#22222112204398100000000120140911WT@TTT9ZT21222112204398100000000 -T12023011111159279723500410671120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111115927971219750501WT@0ZB#902222221222222012212210114923011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111592797120050323WTTZYZW@022222222204311200000000 -T12023011111159281121700407751120213110611113520000230005280040000000000000000000000000000000000222222000000002229012 -T2202301111115928111220000912WT@90BYBW2122222222221012216110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592811120210918WTTTW#0YZ21222112204398100000000 -T12023011111159291220800410781120312110740300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111115929121219820314WT@PZWW0T2222111222222012212190134723099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115929121219870423WT@B@BBYY2222122222222022212190134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592912520210427WTTWT9WB@22122212104398109140000 -T12023011111159292725900402831120433110835300000000000006540100000000000000000000000000000000000222222000000002229022 -T2202301111115929272219810908WT@YYBT9P1222221222221012204910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592927120090418WT@W9WTZZ12222212204306100000000 -T320230111111592927120130102WT@WZW@BZ22222112204301100000000120100302WT@#T0YTT12222212204304100000000 -T12023011111159293720800405391120233110611300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111115929375219890724WT@#0ZTT02221222222221012213120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592937120150904WT@W009W022212212209398100000000 -T12023011111159299220800410751120213110611111340000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111115929921219980123WTTPYPYTZ2222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592992120180724WT@Y0B9ZT22222112204398100000000 -T12023011111159299822000414462120323210376300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111115929981219750222WTTTZPZ9B2222212222222011213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115929981219700702WT@BTBZZ#2222211222222021216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111592998120050327WTT@0Z99#22222122204311200000000 -T12023011111159311724200411401120213110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111115931171220000514WT@YBT0BY1221222222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111593117120210107WTT9P9YZY22222122204398100000000 -T12023011111159322223500410671110213110516300000000000003570170000000000000000000000000000000000222222000000062219012 -T2202301111115932221219920918WTTZTBZ@Z2222212222221012211120352523011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111593222120200702WTTB@@TP022222112204398100000000 -T12023011111159329624200414351120613111359300000000000410090170000000000000000000000000000000000222222000000002229012 -T2202301111115932961219900502WTT00TZ9T1221222222225012212110540621011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111593296120080527WT@ZYYZTY12212222204309100000347 -T320230111111593296120100514WT@YPBPYW22212212204307100000347120100514WT@9#PTTB22212222204307100000347 -T320230111111593296120180101WT@9ZZ@@P12212222204398100000245120170223WT@@PP@#P12212222204398100000245 -T12023011111159341624700408361120213110376300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111115934161219920301WTT0YZ0#T2222211222221012212110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111593416120130407WTTWP##WY22222112204302100000000 -T12023011111159354624200414851120233110557300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111115935463219790411WT@@9ZBT02212222222223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111593546120200423WT@@@YZ0Y22122112206398100000000 -T12023011111159361122000402371120232110516300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111115936113219630907WTTBY@#ZB2221222122225012212110124813069900000000000000000000000000000000000000000000000000000000000000000000001723000000000000 -T320230111111593611120070408WT@#PBPTW22212212207309100000000 -T12023011111159361824900404261120233120000300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111115936183219490412WT@WWZ@Z@2222211112224012214190006013069900000000000000000000000000000000000000000000000000000000000000000000002122000000001593 -T320230111111593618120050227WT@#TZZ#@22222122209311100000000 -T12023011111159368720800411601120313110740123990000000006540540000000000000000000000000000000000222222000000002229012 -T2202301111115936871219990901WTTZP@9#T2222211222221012210110243623011800000000000000000000000000000000000000180002000000000000040000000000000000000000000100 -T320230111111593687120200107WT@YZBBYY22222112204398100000000120190413WT@#0#WY912222112204398100000000 -T12023011111159385522000406271110313110835300000000000001890010000000000000000000000000000000000222222000000002229012 -T2202301111115938551219890404WT@99PP0Z2221222222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111593855120090704WT@9#0TYB22212212204307100000000120080213WTT99WB#922212212204308100000000 -T12023011111159403024100402401120333110704300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115940302219840724WTTWZT@@P2222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111594030420080123WTTBY@P9#22222122104307109140000120060422WT@9B#9#Y22222122204308100000000 -T12023011111159405025900402721120513111089300000000067008880070000000000000000000000000000000000222222000000002229012 -T2202301111115940501219860104WTTPZYTZ#1222222222221012209110332723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111594050120070427WT@TZPBPB12222222204310100000000120050427WT@#WTWTY12222222204311100000000 -T320230111111594050120170326WTT0YY99P12222212204398100000000120120913WT@P0B@P@22222122204305100000000 -T12023011111159423722700408351120232110516300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111115942372219720423WTTW@ZW9T2222222222214012202210114913089900000000000000000000000000000000000000000000000000000000000000000000000000080300000000 -T320230111111594237120050423WT@WZWZZ#22222222204309200000000 -T12023011111159426424500410692120233210536300000000000504170640000000000000000000000000000000000222222000000002229022 -T2202301111115942645219740423WTTZ@@Z9#2222212222221013213110650023069900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111115942645220030311WT@@YTTWT2222212222211043211190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T12023011111159430321000403201120313110766300000000000006540270000000000000000000000000000000000222222000000002229012 -T2202301111115943031219990301WTTB#Y@9W2222212222221012210120283223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111594303120220518WTTB@PPPY22222112204398100000000120170714WT@WPZYYY22222112204398100000000 -T12023011111159430524200407271120233120000300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111115943053219630907WT@YZPZ0Z2212212222222012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111594305120070107WTT9#TWYW22212212206307100000000 -T12023011111159438522000400461120312110776300000000000006540520000000000000000000000000000000000222222000000002229012 -T2202301111115943851219930404WT@WB#9T91222222222221012216110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111594385120210413WT@PWBZT@11112212204398100000000120100901WTT#BT90012222212204306100000000 -T12023011111159448423700414331120723111480300000000040011650040000000000000000000000000000000000222222000000002229012 -T2202301111115944841219860422WT@0W0@WB2222212222222011216290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115944841219850901WT@PYW0#Y2222211222221021213290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111594484120080718WTT9@9@P#22222112204308200000000 -T320230111111594484120120126WT@@W#9@P22222112204305200000000120100412WTT#0#00Z22222112204307200000000 -T320230111111594484120200702WT@@#Y#BY22222112204398200000000120140227WT@ZTTBYB22222112204303200000000 -T12023011111159465122600405051120233110278300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111115946513220030104WTT9PPT#02222212222221012212110006011069907000000000000000000000000000000000000000000000000000000000000047800000000000000000000 -T320230111111594651120180214WTTT###@W22222122207398100000000 -T12023011111159475123500404821120213110598114720000000005280080000000000000000000000000000000000222222000000002229072 -T2202301111115947511219900726WTTTZP9#P2222212222221012211110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111594751120180901WT@@Z#9TY22222122204398100000000 -T12023011111159491224200403511120213110599300000000000603160080000000000000000000000000000000211122222000000012219012 -T2202301111115949121219800123WT@9T#PYZ2222212222221012216110530723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111594912120040313WT@Y9BT9Z22222122204311100000000 -T12023011111159491822000410051120512111169300000000159808880110000000000000000000000000000000000222222000000002229072 -T2202301111115949181219820926WT@PYTTW92221222222221012212110670023010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111594918120120327WTT@9YPWZ22212222204304100000000120080505WT@YPWTTP22212222204309100000000 -T320230111111594918120170112WT@9ZTT0922212212204398100000000120140411WTTW@YWYT22212222204303100000000 -T12023011111159501124200414021120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115950112219750722WTT#9#ZP@2221222222215012212110790013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111595011120130914WTTY0TPB022212212204301100000000 -T12023011111159502324100414391110413110893300000000000006960170000000000000000000000000000000000222222000001922219012 -T2202301111115950231219830724WTTWT90ZT1222222222225012212210184223011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111595023120060907WTTZ#0YPT12222112204308100000000 -T320230111111595023120130501WT@WP0TTZ12222112204302100000000120090108WTT#WYYTP12222122204305100000000 -T12023011111159504124200409091110313110740300000000000003540310000000000000000000000000000000000222222000000002229012 -T2202301111115950411219890227WTTYTY9PB2221222222225012216110322823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111595041120230427WT@9TPY9W22212122204398100000000120150302WT@9BWW@P22212222204398100000130 -T12023011111159516320800411991120333110376300000000010001080280000000000000000000000000000000000222222000003092219022 -T2202301111115951632219970507WT@YYBT9P1222222222221012211920006011079906000000000000000000000000000000000000000000000000000000000000159800000000000000000000 -T320230111111595163120160214WT@P9TYBT12222112204398100000000420140104WT@YYBT9P12222112204301900000000 -T12023011111159519120600401641120313110835300000000002706540110000000000000000000000000000000000222222000000002229012 -T2202301111115951911219990513WT@WZ0@Y#2222212222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111595191120210323WTT#@P0T022222122204398100000000120170324WT@YBWBTB22222122204398100000000 -T12023011111159523523900408801110423111034300000000000000240010000000000000000000000000000000000222222000000002229042 -T2202301111115952351219840226WT@0@BT9@2222211222222011216190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115952351219940102WT@P@YZBZ2122222222222021212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111595235120170126WTTZ9BWW021222222204398100000000120150127WT@@0@T@921222222204301100000000 -T12023011111159524321000405412120322210760300000000000003690140000000000000000000000000000000000222222000002852219032 -T2202301111115952431219900126WT@#T9@#B2222212222225011216110065421011800110000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T2202301111115952431219880327WTTTY9#TP2222211222221011212190006023011800000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111595243120220421WT@T00@WP22222112204398100000000 -T12023011111159531220600414771120113110396300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111115953121220020111WT@ZPYZ@Z2222212222221013210190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111159532321700403821120333110740300000000000005280460000000000000000000000000000000000222222000000002229022 -T2202301111115953233219680326WT@9TBBT#2222212222225012212110520811069920000000000000000000000000000000000000000000000000000000000000163400000000000000000000 -T320230111111595323120140923WT@#Z@PTB22222222206301100000000120100921WT@TB@#W#22212212206305100000000 -T12023011111159541624200414851120512111116300000000000005280990000000000000000000000000000000000222222000000002229042 -T2202301111115954161219790721WTTW9@W@#2222212222222012208190481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115954162219630927WT@PT#T0@2221221222212022210190025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111595416420100412WT@0@9@0Z22212122104306109140000 -T320230111111595416120150204WTT99B9Z022212112204301100000000420110421WTT0T0PTY22212122104305109140000 -T12023011111159542022000410051120213110599300000000000003160680000000000000000000000000000000211122222000000012219072 -T2202301111115954201219820518WTTP99T0@2212222222221012212111450023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111595420120170313WTT00W#Z#22122222204398100000000 -T12023011111159546322000405841120333120000300000000000005280370000000000000000000000000000000000222222000000002229022 -T2202301111115954633219420507WT@TBWZ9@2222211122222012298190006013069900000000000000000000000000000000000000000000000000000000000000000000002097000000000000 -T320230111111595463120150423WT@BTT9WZ22222122206398100000000120150423WT@P@Z##P22222122206398100000000 -T12023011111159550322000407412120523211116300000000000008880110000000000000000000000000000000000222222000000002229032 -T2202301111115955031219860313WTTPBBZPY2222211222222011216290006023011800000022000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115955031219970112WTTW@P9@02222212222222021211290006023011800000006000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111595503120160908WTTYW9Z#T22222112204301200000000 -T320230111111595503120220209WTTW@P##Z22222112204398100000000120190713WTTZPZ99Z22222112204398200000000 -T12023011111159580320600414771120213110363112180000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111115958031220040713WT@BBPY9Z2222222222221012210110025823011500000000000000000000000000000000000000000000060000000000000000000000000000000000000000 -T320230111111595803120200327WTTWYZZPT22222122204398100000000 -T12023011111159582522700407441120312110766300000000425206540320000000000070007000000000000000000222222000000002229012 -T2202301111115958251219960913WTTPPW@@Z2222212222221012213110352523011400000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111595825120160918WT@#Y0W#@22222112204398100000000120140426WT@B#9ZY922222112204301100000000 -T12023011111159594622000403891120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111115959461219780922WTTP0Z0#P1222212222223012213110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000235 -T320230111111595946120050123WTTWYTWPZ12222112204311100000000 -T12023011111159594720600401561120523111116300000000003908880300000000000000000000000000000000000222222000000002229012 -T2202301111115959471219840707WT@@###Z@2122211222222011213190184223011800000000000000000000000000000000000000000000000000000000410000000000000000000000000000 -T2202301111115959471219910121WTTTPBWZT2222222222221021212190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111595947120160924WT@TBYBT#22222122204398100000000 -T320230111111595947120200907WT@P@YZ0Z22222112204398100000000120190908WT@TWP#WW12222112204398100000000 -T12023011111159595424700413761120312110766300000000000106540260000000000000000000000000000000000222222000000002229012 -T2202301111115959541219790518WTT0BW0ZW2222211222225012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111595954120140404WT@PWBZ#922222112204301100000000120070104WT@W#Z@T#22222112204309100000000 -T12023011111159597224700406741120313110855300000000173206540270000000000000000000000000000000000222222000000002229012 -T2202301111115959721219930221WTT0YW#YP2222212222221012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111595972120180926WTTBY09@022222122204398100000000120120711WT@TY@0#912222122204304100000000 -T12023011111159612724200414851120333110740300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111115961272219840927WTTYWTZWW2221222122211012298110006013109900000000000000000000000000000000000000000000000000000000000000000000000613032100000000 -T320230111111596127120070512WTTP#9#BZ22212212204309100000000120060513WT@YY0WTP22212212204310100000000 -T12023011111159617723500407162120233220000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111115961773219920927WT@YZ0YB02222212222222012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111596177120100407WT@WZ@#9P22222122207306200000000 -T12023011111159621523700414331120213110611300000000047205280270000000000000000000000000000000000222222000000002229012 -T2202301111115962151219940304WT@0#ZZYW2222212222223012209110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111596215120200307WTTBWZYTW22222122204398100000000 -T12023011111159633725900402631110533110939300000000000000140010000000000000000000000000000000000222222000000002229021 -T2202301111115963372219850912WT@TBBP901222222222221012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111596337120090313WTT@BT9ZT12222222204306100000280120040724WTT9BW0@T12222212204310100000000 -T320230111111596337120130314WTT@B#T@T12222122204302100000439120110501WTTBYTB0@12222212204305100000000 -T12023011111159639322000407792120323210766300000000300006540050000000000000000000000000000000000222222000000002229032 -T2202301111115963931219800707WTTT@ZYZB2222211222222011215290065423011800000000000000000000000000000000120001000000000000000000000000000000000000000000000000 -T2202301111115963931219860127WTT0ZPB@02222212222222021214290065423011800000000000000000000000000000000120001000000000000000000000000000000000000000000000000 -T320230111111596393120170913WT@ZYW9@022222122204398200000000 -T12023011111159640324200403941120413111022104160000000007710140000000000000000000000000000000000222222000000002229012 -T2202301111115964031219950927WTTWP0BBW2221222222225012216110253523010100000000000000000000000000000000000000000000000000000000310000000000000000000000000000 -T320230111111596403120140327WT@WTB99Z22212212204302100000000 -T320230111111596403120220308WTT@9PP#P22222222204398100000000120210101WT@W##09#21222212204398100000175 -T12023011111159644224200402501120333120000300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111115964423219570301WT@W@0W#Y2222222222221012298910006011079940000000000000000000000000000000000000000000000000000000000000455800000000000000000000 -T320230111111596442520090501WTTYT99TZ22222112106306109140000120080126WT@#0Z9TT22222122206307100000000 -T12023011111159644624200414021120233120000300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111115964463219960405WTTW99B9T2221222222221012212110035711069939000000000000000000000000000000000000000000000000000000000000382400000000000000000000 -T320230111111596446120050114WT@9B#09B21222212207311100000050 -T12023011111159645721700406141120213110598300000000036205280050000000000000000000000000000000000222222000000002229072 -T2202301111115964571219770901WTTYWT9TT2222212222223012216110680023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111596457120070301WT@T0WTY922222122204308100000000 -T12023011111159646420800411931120232110516300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111115964642219790321WTTBP@PW@2222212222211012211110930011089921000000000000000000000000000000000000000000000000000000000000130100000000035100000000 -T320230111111596464120150226WT@@PZ9Y922222122204398100000000 -T12023011111159658824200407311120433111034300000000102006540140000000000000000000000000000000000222222000000002229022 -T2202301111115965881219740927WTT09#9BT2222212222225012212110411923099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111596588420070722WTT99YT0Z22222122104307104570000 -T320230111111596588120110909WTTYT#TT@22222122204305100000000120090722WT@#9YT@P22222112204306100000000 -T12023011111159666020600400871120412110939300000000000000360720000000000000000000000000000000423222122000003122219072 -T2202301111115966601219940207WTT9YP@W#2222212222221012211120700023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111596660120130102WT@@@Z#BY22222112204303100000125 -T320230111111596660120170927WT@ZBB9T#22222112204398100000125120150907WTTWYWZPW22222122204301100000125 -T12023011111159678621700406141120233120000300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111115967865219770926WT@YPWPBB2222212222225012213110780011069937000000000000000000000000000000000000000000000000000000000000298100000000000000000000 -T320230111111596786120050312WTTBB0@#@22222112209311100000000 -T12023011111159686721700407751120313110855300000000012006540130000000000000000000000000000000000222222000000002229012 -T2202301111115968671219830326WT@WZ@Z9B2222212222221012213110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111596867120090704WT@Z###BB22222112204307100000100120050705WTT@@@#WP22222222204310100000000 -T12023011111159689922000413731120412110956300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111115968991219800504WT@YWZW@92221222222223012216111370023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111596899120060322WT@TZYYP022222212204310100000000 -T320230111111596899120180402WTTBZ@YZP22212212204398100000000120150723WT@@@B##922212212204398100000000 -T12023011111159693623500410671120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115969363219650312WTTB@#B0T2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000520900000000000000000000 -T320230111111596936120070726WTT@B9BBZ22222112207307100000000 -T12023011111159712820600409771120412110939300000000000005270030000000000000000000000000000000000222222000002442219072 -T2202301111115971281219760109WT@B@WBTB2222212222221012216110820023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111597128120060323WTT0B@BTW22212222204309100000000 -T320230111111597128120140426WTT@TBY9@22212222204302100000176120110913WTTBTTZ0@22212222204305100000176 -T12023011111159713224700407521120513111116300000000000008880300000000000000000000000000000000000222222000000002229072 -T2202301111115971321219880712WTTY#Z9PP2222212222221012212110800023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597132120110326WT@@B9BY#22222112204304100000100120080427WT@P#0#T@22222122204308100000000 -T320230111111597132120220421WTTBY0Y9Z22222112204398100000000120190407WTT#P0WWY22222112204398100000000 -T12023011111159728222700408351120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111115972822219720327WTTY9WWZZ2222212122215012214110431713109900000000000000000000000000000000000000000000000000000000000000000000000353058100000000 -T320230111111597282120050701WTT0TT0WP22222112204310100000050 -T12023011111159737023500414281120213110631300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111115973701219840201WT@T@WTYB2222212222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597370120140923WTTW@#WZY22222112204302100000000 -T12023011111159747825900406841120433110846300000000000006540350000000000000000000000000000000000222222000000002229022 -T2202301111115974783219910104WT@WPW0@W2122222222222012211110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111597478120190301WTTYZBBBW11222222207398100000000 -T320230111111597478120200727WTTP0BWP011222212207398100000000120190301WT@@ZB@TT11222222207398100000000 -T12023011111159753124200410001120313110835104470000025506540120000000000000000000000000000000000222222000000002229012 -T2202301111115975311219840327WT@PWWP0Z2222212222221012216110253523011400000000000000000000000000000000000000000000000000000000430000000000000000000000001866 -T320230111111597531120130423WTTBPZY9W22212212204303100000000120100121WTTZZW0Z022222112204306100000000 -T12023011111159754724200409731120423110959300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111115975471219840704WT@9TPY9W2222211222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115975471219880207WT@9TPY9W2222212222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597547120200721WT@9TPY9W22222112204398200000000120100726WT@9TPY9W22222112204305200000000 -T12023011111159755422000408811120412110893300000000184501210060000000000000000000000000000000000222222000006502219012 -T2202301111115975541219760904WTTZ#9PY02212222222222012209190273321099921000000000000000000000000000000000000000000000000000000000000130000000000000000000000 -T2202301111115975541219630407WT@Z@@TZ@2212221222222022214190273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597554120130301WTTB0P#ZZ22122212204301100000000120080714WT@Y#09Z922122222204307100000000 -T12023011111159759620300400971120413110788300000000000007710340000000000000000000000000000000000222222000000002229072 -T2202301111115975961219890413WTT#Z@#P02222212222225012212110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597596120080108WTT9WYW#922222122204308100000000 -T320230111111597596120140404WT@YW0ZPP22222112204301100000000120120423WT@BZBWB022222112204303100000000 -T12023011111159765421000404881120233110376300000000002004170080000000000000000000000000000000000222222000000002229022 -T2202301111115976542219980321WT@YYBT9P1222222222221012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597654120160104WT@0TB#0@12222222204398100000000 -T12023011111159772020600407031120213110611300000000000005280080000000000000000000000000000000000222222000000002229072 -T2202301111115977201219810513WTT@B9#@@2221221222225012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597720120080523WTT#9Y0@B22212212204308100000000 -T12023011111159772125900403551120213110364300000000000003160060000000000000000000000000000000211122222000000012219012 -T2202301111115977211219770918WT@ZTBZ0T2222211222223012212110065423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597721120110504WT@9Z90@B22222112204305100000000 -T12023011111159772225800414121120213110598300000000000005280610000000000000000000000000000000000222222000000002229072 -T2202301111115977221219930202WT@0TWZB@2222212222221012211110620023011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111597722120130527WTT##Y9BT22222112204398100000000 -T12023011111159777925600414551120213110618300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111115977791219960713WT@@YT@9@2222212222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597779120210323WT@TW#9PB22222112204398100000000 -T12023011111159788225900402121120313110835300000000000406540160000000000000000000000000000000000222222000000002229072 -T2202301111115978821219830327WTT90PBZ#2222212222221012212110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111597882120210304WTTPY00YZ22222122204398100000000120120114WT@WB0@B#22222122204304100000000 -T12023011111159814120600401981120313110766300000000000006540470000000000000000000000000000000000222222000000002229012 -T2202301111115981411219940422WTT0B0B@92222212222221012213110273323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111598141120220405WTT@BTT@P22222222204398100000000120160213WTTBP09T022222122204398100000000 -T12023011111159821723900408801120213110516300000000034004170080000000000000000000000000000000000222222000000002229012 -T2202301111115982171219740214WTTY@YW9T1222211222221013212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115982175220040911WTTB#0P0@2222212222211043211190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T12023011111159821922700407491120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111115982195219790926WTTWYTBBB2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000400000000000000000000000 -T320230111111598219120110709WTTT9ZZWZ22212212209305100000000 -T12023011111159833324500405451120213110493300000000000305280150000000000000000000000000000000000222222000000002229012 -T2202301111115983331219800524WT@Z0B#9Y2222212222225012213110421823010900000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111598333120140509WTTZ#@99#22222112204302100000000 -T12023011111159834224200407431110423110939300000000000005220010000000000000000000000000000000000222222000000002229012 -T2202301111115983421219930909WT@9TPY9W2222212222222011216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115983421219920205WT@9TPY9W2222211222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111598342120190302WT@9TPY9W22222112204398200000000120180411WT@9TPY9W22222122204398200000000 -T12023011111159848524700409321120312110817300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111115984851219860112WT@9WZ9Y#2222212222223012212111050023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111598485120210507WT@@WY9@912212212204398100000000120160226WT@#T#PY@12222112204398100000000 -T12023011111159862420600414871120213110446300000000000003160380000000000000000000000000000000211122222000000012219012 -T2202301111115986241219870126WT@W9WYY#2222212222224012216110590123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111598624120190407WT@@0WW9#22222112204398100000000 -T12023011111159865822000402371110212110516300000000000000850650000000000000000000000000000000000222222000000002229072 -T2202301111115986581219910921WTTTYB99P1221222222221012213110650023011400000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111598658120120923WT@9B@T#@12212222204303100000000 -T12023011111159875022000410052120233210611300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111115987503219540311WT@@TTP002222121222224012212910006011079908000000000000000000000000000000000000000000000000000000000000074300000000000000000000 -T320230111111598750120050101WT@BWYWWP22221222206310900000000 -T12023011111159887324700401281120233110516114720000000003960470000000000000000000000000000000000222222002000012219022 -T2202301111115988732219820726WT@ZBY@Y@2222212122211012216120075313109900000000000000000000000000000000000000000000000000000000000000000000000762017200000000 -T320230111111598873120180326WTTB0TY9P22222122204398100000000 -T12023011111159892924200407431120213110598300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111115989291219930212WT@PZY#TT2222212222221012216110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111598929120160223WTTZZ@@9T22222112204398100000000 -T12023011111159898925000414191120523111211300000000023508880160000000000000000000000000000000000222222000000002229012 -T2202301111115989891219950305WT@Y990YY1222221222221011210190194121011945000000000000000000000000000000000000000000000000000000000000438800000000000000000000 -T2202301111115989891219970109WTT0#ZP0T1222222222221011216190293123011800000000000000000000000000000000000000000000000000000000000000000000000000000000001183 -T320230111111598989120160912WTTBYWW9#12222212204398100000000 -T320230111111598989120200326WTTB#TT9#12222222204398100000000120190405WT@@Z#W9T12222222204398100000000 -T12023011111159903825900414481120113110376300000000210004170090000000000000000000000000000000000222222000000002229012 -T2202301111115990381219970509WT@Z#TB0P2222212222221013216190105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000002311 -T12023011111159906122100409491120212110516300000000000100010250000000000000000000000000000000000222222000000002229072 -T2202301111115990611219750305WT@@Y9YP#2222212222223012208120820011011800210000000000000000000000000000000000000000000000000000160000125600000000000000000000 -T320230111111599061120060923WTTP0@PZW22222112204309100000000 -T12023011111159917123700400481120433110557300000000021405280180000000000000000000000000000000000222222000000002229022 -T2202301111115991712219820412WT@YYBT9P1222212222222012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115991712219790107WT@YYBT9P1222221222222022204990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111599171120160705WTTYW9TP#12222112204398100000000120090214WT@BPBPBZ12222212204307100000000 -T12023011111159923922000411282110323210740300000000000005480010000000000000000000000000000000000222222000000002229032 -T2202301111115992391219920104WTT9WP@YT2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111115992391219960424WTT#00B@Y2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111599239120170311WT@0Y@Y#022222112204398200000000 -T12023011111159927525900406841120213110611300000000001803970070000000000000000000000000000000000222222000001312219042 -T2202301111115992751220000927WT@#W##@02122222222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000131 -T320230111111599275120220902WT@ZP9WP911222222204398100000000 -T12023011111159930724100402401120313110761300000000000004700020000000000000000000000000000000000222222000001842219072 -T2202301111115993071219860127WT@TW@P0T1222211222221012216110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000183 -T320230111111599307120100323WT@B0#BT#12222112204305100000050120090426WT@PZP9@T12222112204307100000050 -T12023011111159941520900411721120333111424300000000000005280430000000000000000000000000000000000222222000000002229022 -T2202301111115994153219560327WT@P#Z#@P2222211122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000002294000000000000 -T320230111111599415120180311WT@#P@00Z22222122206398100000000120170313WTT9PB@BP22222112206398100000000 -T12023011111159944320600411031120213110611300000000010005250150000000000000000000000000000000000222222000000002229012 -T2202301111115994431219910712WT@9B0#@#2222212222221012216110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000002 -T320230111111599443120120501WT@YBPB#B22222122204304100000050 -T12023011111159947622000405321120213110611300000000075105280080000000000000000000000000000000000222222000000002229012 -T2202301111115994761219850413WT@Y@PP0@2221222222221012212210095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111599476120220422WTT@#@09P22212222204398100000000 -T12023011111159965221000405411120413111054300000000000000940380000000000000000000000000000000000222222000006772219012 -T2202301111115996521219840227WTTYYT#PZ2222212222223012216120392121011900200000000000000000000000000000140001000000000000000000010000135300000000000000000300 -T320230111111599652120090426WT@ZZ00YT22222122204307100000000 -T320230111111599652120160927WTT@#TZ@T22222122204398100000000120120227WTT9ZP09Y22222122204304100000000 -T12023011111159976222000404841120313110835300000000000006540380000000000000000000000000000000000222222000000002229012 -T2202301111115997621219930713WT@@9B#@#2212222222221012211110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111599762120130913WTT#WY#BZ22122212204303100000000120120523WTTB@WBBB22122212204304100000000 -T12023011111159980024700409321120332110740300000000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111115998002219840727WTT9YT@YP2222212122221012214110105013109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111111599800120180705WT@P@9YZ922222122204398100000413120080402WT@0WTTT022222122204308100000000 -T12023011111159986223500411471120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111115998621219900107WTT9#TT0#2222212222222011212290045623011800000000000000000001000000000000000000000000000000000000180000000000000000000000000000 -T2202301111115998621219840713WT@WT9PYT2222211222222021212290045623011800000000000000000001000000000000000000000000000000000000160000000000000000000000000000 -T320230111111599862120110113WT@#0Z90B22222112204305200000000120080426WTTZ0Z@@B22222122204308200000000 -T12023011111159986823300410111120313110835300000000000006210220000000000000000000000000000000000222222003200012219072 -T2202301111115998681219800718WTTZPPTWP2222212222221012210110750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111599868120100405WTT0T0TBP22222112204305100000000120040127WT@@#P9##22222122204311100000000 -T12023011111159989224600411871120213110598300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111115998921219900226WTTTTT99@2222211222221012216110303021011736000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111599892120170905WTT@BT@0T22212122204398100000000 -T12023011111159996622700403021120332110611300000000030005280280000000000000000000000000000000000222222000000002229022 -T2202301111115999662219790512WT@YYBT9P1222222222225012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111599966120220126WT@B@B@0#12222222204398100000000120110123WT@P#ZBYZ12222212204306100000000 -T12023011111160005225600412851120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116000522219790412WT@ZT@B@Z2221222222215012211111330013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000461 -T320230111111600052120100901WTTZ#P0Z022212222204305100000050 -T12023011111160015320600403591120213110611300000000118805280060000000000000000000000000000000000222222000000002229012 -T2202301111116001531219860323WT@YB#WPW2122212222225012213110065421011941000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600153120160507WTT#PPWT@21222112204398100000000 -T12023011111160025424700409321120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111116002541219950326WTT9TYPZT2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116002541219970412WT@P9ZB0Z2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600254120210407WTT9#Y#PY22222112204398200000000120170421WTT@@WT9022222112204398200000000 -T12023011111160025622000411551120412110957132510000000007710650000000000000000000000000000000000222222000000002229072 -T2202301111116002561219890923WT@@00P0Y2221222222221012216110650023010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111600256120130108WTTY@BT0Z22212212204303100000000 -T320230111111600256120210426WTT0T09#Z22212222204398100000000120190324WT@ZT9#0922212212204398100000000 -T12023011111160026725800413571110423111034300000000004503230070000000000000000000000000000000000222222000004482219012 -T2202301111116002671219860227WTT#PZT@Z2222212222222011216110085223011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T2202301111116002671219800904WT@P@@0902222211222222021216190085221011812000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111600267120180101WT@9P#Y0Z22222112204398100000000120090101WTT@0#9W022222112205306100000000 -T12023011111160029824200404281120212110611300000000000305280190000000000000000000000000000000000222222000000002229012 -T2202301111116002981219930422WT@09WP@92221212222221012212110204023011800000000000000000000000000170000000000000000000000000000000000000000000000000000000998 -T320230111111600298120210104WTTTBP0PB12212212204398100000000 -T12023011111160031921000412411120723111490300000000000011650100000000000000000000000000000000000222222000000002229012 -T2202301111116003191219900227WT@W0#PZ@2222211222222011216290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116003191219910904WT@0#P00T2222212222222021216290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600319120140118WTTPZ90B922222112204398200000000 -T320230111111600319120170204WT@YYB#9#22222122204398200000000120150314WT@#0PTYW22222122204398200000000 -T320230111111600319120210914WT@BZPW@B22222112204398200000000120190513WTTW@W@#Y22222122204398200000000 -T12023011111160044825900406842110313210835300000000000006110010000000000000000000000000000000000222222000000002229032 -T2202301111116004481219990412WT@9TPY9W1222222222222012205210006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600448120210311WT@9TPY9W12222222204398200000000120180726WT@9TPY9W12222212204398200000000 -T12023011111160050723700414331120512111186300000000000008880260000000000000000000000000000000000222222000000002229012 -T2202301111116005071219880712WT@W#YZY01222222222225012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600507120140727WT@TPZY#T12222212204301100000000120130124WTTW#YW0Z12222222204302100000000 -T320230111111600507120190326WTT0Y@ZZB12222122204398100000000120180309WT@T9@YY912222122204398100000000 -T12023011111160050924200403941120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116005092219880318WT@#0#@P92221222222211012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111600509120120926WTT@P0#PW22212212204303100000000 -T12023011111160058822100414041120213110493300000000000003780120000000000035012000000000000000000222222000001502219072 -T2202301111116005881219800723WT@#@BY@Y2222212222223012212110640021011805000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111600588120090405WT@0B@P0022222122204307100000000 -T12023011111160065724700406701120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111116006571219910727WTTPY0Y@92222212222221012212210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600657120170123WTTZ@#W0P22222122204398200000000 -T12023011111160067325800413571120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111116006731219940505WT@Y9#P##1222212222221012212110114923010100000000000000000004000000000000000000000000000000000000050000000000000000000000000000 -T320230111111600673120220923WTT900YTY11222122204398100000000 -T12023011111160078025600411701120213110364300000000000003160390000000000000000000000000000000211122222000000012219012 -T2202301111116007801219910427WTT@YWWBT2222211222221012212110392123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600780120130221WT@9T#TT@12222122204301100000000 -T12023011111160078724200403511120423111034300000000000306540070000000000000000000000000000000000222222000000002229012 -T2202301111116007871219920304WT@WBW#BT2221221222222011216190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116007871219900111WTT0Z#W0Y2221222222222021212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600787120200113WTT@Z@T9B22212222204398100000000420170301WT@Y@0TB922212212104398104920000 -T12023011111160079124200402981120213110598300000000000005280350000000000000000000000000000000000222222000000002229012 -T2202301111116007911219790512WTTTBB@0W1222212222221012211110362423010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600791120200726WT@9B9ZY912222122204398100000000 -T12023011111160080722000414501120213110611300000000000005280420000000000000000000000000000000000222222000000002229012 -T2202301111116008071219890305WT@TWZW#P2222212222221012212110431723011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111600807120180109WTT0YTZ0B12222222204398100000000 -T12023011111160082725200400391110333110756300000000000000340010000000000000000000000000000000000222222000000002229021 -T2202301111116008273219700422WTT0ZPWYY2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111600827120120108WTTB#0T@B22222112206303100000000120110524WTTZTWZWT22222112206305100000000 -T12023011111160087823700414331120432110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116008782219890923WT@@WZW@W2222212222211012212110253513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111600878120090311WT@@9ZYT022222112204306100000330 -T320230111111600878120150504WTTYZ0WYW22222112204301100000000120120726WT@P@P#P922222112204303100000148 -T12023011111160090125600406521120333120000300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111116009013219670323WT@WY#9P@2222212222222012215110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002000 -T320230111111600901120200509WTTBWW99P22222112206398100000000120060307WTTYTYB9922222112206309100000374 -T12023011111160102624700409321120233110560300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111116010265220010222WT@#Y9YZ92221222222221012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111601026120060308WT@0TWWZ#12212122209309100000000 -T12023011111160115724200405921120313110611300000000125805280170000000000000000000000000000000000222222000000002229012 -T2202301111116011571219950707WTTTTWW@92222212222222012216110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116011572219910212WT@YYBT9P2222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111601157120210923WT@TZP@@922222122204398100000000 -T12023011111160118322000400811120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111116011831219810118WT@99PWB@2222212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111160131422700413181120313110835300000000000005250060000000000000000000000000000000000222222000001292219012 -T2202301111116013141219900205WT@#B0YY02222211222221012208110095123011400000000000000000000000000000000000000000000000000000000000000051600000000000000000000 -T320230111111601314120210526WT@PYY9Z022222112204398100000000120190327WTT0T9ZWY22222122204398100000000 -T12023011111160135425900402721120333110740300000000000005280510000000000000000000000000000000000222222000000002229022 -T2202301111116013543219590213WT@0B99P01222222122223012209110164413069900000000000000000000000000000000000000000000000000000000000000000000001249000000000000 -T320230111111601354120160723WTT@WP00T12222212206398100000000120150226WTTYT9T##12222222206301100000000 -T12023011111160156024200414721120413111034115960000000005120150000000000000000000000000000000000222222000002592219012 -T2202301111116015601219860301WTTZT9#@B2222212222221012211110481223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111601560120090907WTT9BTYZT22212112204306100000259 -T320230111111601560120220422WT@Z@0YYY22212212204398100000000120110418WTT#WZWYW22212112204304100000000 -T12023011111160167424700413761120313110835300000000000005010370000000000000000000000000000000000222222000000272219012 -T2202301111116016741219890308WTT9#Z0902222212222221012213110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000026 -T320230111111601674120100112WT@YW0PZY22222112204306100000140420060104WTTTYPWY#22222112204309100000000 -T12023011111160173721000414221110212110557300000000000103400100000000000000000000000000000000000222222000000002229072 -T2202301111116017371219780321WT@9B0@902222212222221012216120790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111601737120130722WT@TBB@9@22212222204302100000000 -T12023011111160175825100407671120513111116128930000000704540080000000000000000000000000000000000222222000003172219012 -T2202301111116017581219840112WT@@BW@ZT2222212222223012213110095121011810000000000000000000000000000000000000000000000000000000000000063200000000000000000000 -T320230111111601758120150121WTT#BYZB922222122204398100000000420130409WT@0P@ZYZ12222122104303109140000 -T320230111111601758120210908WT@P9BY#Z22222112204398100000000120180912WTTYT9P@T12222112204398100000000 -T12023011111160183322000408891110213110258300000000000002550100000000000000000000000000000000000222222000002732219012 -T2202301111116018331219950308WT@BWWB#P2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111601833120220911WT@T99TT922222212204398100000000 -T12023011111160193422000400461120233110611300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111116019343219700118WTT9@9PB92221222222221012216120930013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111601934120120702WT@ZYBT0Y22212222206304100000050 -T12023011111160193521000408061120412110965300000000125904620630000000000000000000000000000000308122222000000012219012 -T2202301111116019351219850721WT@@W0#WP2122222222221012212110481223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000011 -T320230111111601935120080407WT@909P0@21222212204307100000000 -T320230111111601935120190212WTTZPZBT911222212204398100000000120130123WTT0@Z09W21222222204302100000000 -T12023011111160201424200403941120312111134300000000000003920700000000000000000000000000000000261122222000000012219072 -T2202301111116020141219990411WT@#PP90#2221222222221012212110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602014120200227WT@BW0Y9T22212212204398100000000120170723WTT909#Y@21222222204398100000000 -T12023011111160203122000407831110212110557300000000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111116020311219850421WT@99T9##2221222222221012214120144623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602031120140124WT@BBW@BB22212222204302100000000 -T12023011111160216022900405641120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116021603219870905WTTPT00YT2222212222222012212120006011069942000000000000000000000000000000000000000000000000000000000000218400000000000000000000 -T320230111111602160120220202WT@9TPY9W22222222209398100000000 -T12023011111160217425100407671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116021743219690923WT@T#WBWB2222211222225012212110006011069940000000000000000000000000000000000000000000000000000000000000316000000000000000000000 -T320230111111602174120110118WTT@0@TP022222112206304100000050 -T12023011111160232024500405781120313110835300000000000006540510000000000000000000000000000000000222222000000002229072 -T2202301111116023201219850427WTT@ZTW##2222211222225012216110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602320120130321WT@PT099W22222112204301100000000120090726WTTPY#PYY22222122204306100000000 -T12023011111160234823500411471120323110786300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111116023481219890326WT@W#0P@B2222212222222011214290025823011800000000000000000000000000000000000000000000000000000000170000000000000000000000000000 -T2202301111116023481219880412WTTY0@YZY2222211222222021216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602348120210723WT@9TPY9W22222112204398200000000 -T12023011111160245923700414331120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111116024591219980507WTT#@YPZB2212222222221012212210174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602459120210113WTTYZ9BTW22122222204398100000000 -T12023011111160251123300411451120622111339300000000000010090690000000000000000000000000000000000222222000000002229012 -T2202301111116025111219870918WTTBYBYTZ2222211222221011212190303023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116025111219940412WTTBBZTP#2222212222221011212190362423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602511120170524WTT#ZW9#B22222112204398100000000120160107WTTWP9T#W22222122204398100000000 -T320230111111602511120200304WTTP099#922222122204398100000000120200304WT@W0@TY#22222122204398100000000 -T12023011111160258522100413361120323110376300000000004803920360000000000000000000000000000000261122222000000012219012 -T2202301111116025851219940413WT@BTPBZP2222211222222011212190362423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116025851219940205WT@90W#@Z2222212222222021212190362423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602585120160912WT@BZTBB022222122204398100000000 -T12023011111160265222000411971120213110618300000000240005280020000000000000000000000000000000000222222000000002229012 -T2202301111116026521219880322WT@BP@@PB2222212222223012215210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602652120140124WT@TP0P#@22222112204302200000000 -T12023011111160282924700402991120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116028292219800927WTT#@PB#Y2222212222215012216110382213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111116028292219770312WT@#P9TWY2221221122211102212190382213109900000000000000000000000000000000000000000000000000000000000000000000000475045900000000 -T320230111111602829120170304WTTPB#WWW22222112204398100000000 -T12023011111160298424200414721120313110835107800000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116029841219900108WTTPB0PWT2221222222221012212110293121011812000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111602984120140701WTT#9WZTB22212212204302100000000120060702WT@90T9#W22212222207309100000000 -T12023011111160306325100407671120433110893300000000000006540630000000000000000000000000000000000222222000000002229022 -T2202301111116030633219660327WTTZ9TPBW2222222122222012210110332713069900000000000000000000000000000000000000000000000000000000000000000000000619000000000000 -T320230111111603063120100226WTTB0WW0W22212212206307100000000 -T320230111111603063120130323WT@9@B0YW22212222206303100000000120110709WT@0BY@ZT22212212206306100000000 -T12023011111160318522000408341120233120000300000000000004170900000000000000000000000000000000000222222000000002229022 -T2202301111116031853219490214WTTT@0BW@1222211122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001160000000000000 -T320230111111603185120110209WT@T@WW##22222122206305100000000 -T12023011111160319722000401711120312110855300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116031971219890323WTT#WYWZY2222212222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603197120180721WTTPY09#Y22212222204398100000000120170112WTTPBYZTW22212212204398100000000 -T12023011111160321922000408621120313110766300000000150006540040000000000000000000000000000000000222222000000002229012 -T2202301111116032191219810911WT@@@WB9P2222212222225012215210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603219120090326WT@9TPY9W22222112204306200000000120050707WT@9TPY9W22222112204310200000000 -T12023011111160326722700401571120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116032673219620923WTTT#9@Y#2222212122225012213110283213069900000000000000000000000000000000000000000000000000000000000000000000000963000000000000 -T320230111111603267120060912WTT9#PYPZ22222112206309100000050 -T12023011111160341621000404881120213110611300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111116034161219810904WT@0@P#TT1122222222225012212120194123010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111603416120040709WTTYTT0@@12222122204311100000000 -T12023011111160342822000400591120313110835300000000010006540160000000000000000000000000000000000222222000000002229012 -T2202301111116034281219960724WTTZYZB9P1222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603428120170712WT@PW#BPZ12222212204398100000000120160522WT@09W@PP12222122204301100000000 -T12023011111160345422700403021120433120000300000000000006540290000000000000000000000000000000000222222000000002229022 -T2202301111116034543219930724WTT#9PT@@2222211222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603454120100413WT@#00WPZ22122122207304100000000 -T320230111111603454120200721WT@Z990P922222112207398100000000120130201WT@WT#0YP22222122207398100000000 -T12023011111160347322000410222120423211034300000000120007710050000000000000000000000000000000000222222000000002229032 -T2202301111116034731219720724WT@Y##YP02212221222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116034731219810518WTTWW#0BT2222222222222021214290065423011800000000000000000000000000000000140001000000000000000000000000000000000000000000000000 -T320230111111603473120120313WTTZ@@Y0Y22222212204304200000000120110724WT@B0P90022222222204306200000000 -T12023011111160349524700403421120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116034953219600122WT@Y9@WT02222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603495120120927WTTP9990@22222122209304100000000 -T12023011111160354321400408021120533110835300000000500006540020000000000000000000000000000000000222222000000002229022 -T2202301111116035432219900109WT@YYBT9P1222212222222012209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116035432219790105WT@YYBT9P1222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603543120100224WT@0TW9WY12222122204307100000000 -T320230111111603543120190113WTTP@WB0Y12222222204398100000000120150901WTTW#ZY0T12222212204302100000000 -T12023011111160362020800410751120233120000106540000100004170470000000000000000000000000000000000222222000000002229022 -T2202301111116036205219890512WTT#ZWYBW2222212222222012212110035713069900000000000000000000000000000000000000000000000000000000000000171100000000000000000000 -T320230111111603620120180318WT@Y99B0W22222122209398100000000 -T12023011111160372920600402141120213110611300000000001805280070000000000070004000000000000000000222222000000002229012 -T2202301111116037291219880712WT@YZWP#B2222211222221012210110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603729120140713WT@@9ZPZP12222112204301100000000 -T12023011111160373822900405641120213110611300000000000005280830000000000000000000000000000000000222222000000002229072 -T2202301111116037381219850405WT@9Z#9#Y1222212222221012212110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603738120160313WTTWPBT9T22222112204398100000000 -T12023011111160387722000407411120513110835300000000000007440020000000000000000000000000000000000222222000000002229012 -T2202301111116038771219890908WTTZW0ZWP2221222222224012216110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603877120200323WTT0P@PY@22212222204398100000000120190702WTTBY#W@B22212222204398100000000 -T320230111111603877120220702WT@9TPY9W22222222204398100000000120220702WT@9TPY9W22222222204398100000000 -T12023011111160398623500407611120633111359300000000000008880020000000000000000000000000000000000222222000000002229022 -T2202301111116039863219670308WT@T0B90#2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111603986120070413WTT0Y9W0Z22212112206309100000000 -T320230111111603986120150323WTTYTTB0922222122206398100000000120090413WTT9ZW9BY22212112206307100000000 -T320230111111603986120180327WT@09YZ@B22222122206398100000000120170923WTT9000WT22222112206398100000000 -T12023011111160400120600402141120433110423111470000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111116040013219700412WT@B@P00B2222212222225012216110510911069940000000000000000000000000000000000000000000000000000000000000335400000000000000000000 -T320230111111604001120110101WT@@ZY0YT22222112206304100000000 -T320230111111604001120200512WT@PZ0@Y#22222122206398100000000120130307WTT9PT09P22222112206302100000000 -T12023011111160410524700405901120212110611300000000000705280230000000000000000000000000000000000222222000000002229012 -T2202301111116041051219750104WT@@0@T0B2222212222221012216110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604105120140527WT@T9ZW#922222112204301100000000 -T12023011111160424324700408301120412110939300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111116042431219940111WTTW0WBTY1222222222221012216110035723010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604243120160112WT@#0#@B912222212204398100000000 -T320230111111604243120200423WT@#9TWPB12222222204398100000000120190904WT@Y@B#T012222222204398100000000 -T12023011111160428320600414871120323110835300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111116042831219810226WT@ZPB@0Z2222212222221011212110263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116042831219670226WTT#0W#YB2221221222225011213190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604283120210426WT@TP09WT22212222204398100000000 -T12023011111160437520800410781120433120000300000000000006540060000000000000000000000000000000000222222000000002229022 -T2202301111116043753219730323WTTWY0ZZ92221222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000140000000000000000000000 -T320230111111604375120180921WTTBZBY9@12212212206398100000000 -T320230111111604375120210307WT@9TPY9W12212212206398100000000120200923WTT#W0T#B12212212206398100000000 -T12023011111160440723500404531120313110835300000000000206540020000000000000000000000000000000000222222000000002229012 -T2202301111116044071219910512WT@YT000Z1222222222223012212110035721011936000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604407120160501WT@9#0Y@@12222222204398100000000120130112WT@Y#ZBBB12222212204302100000000 -T12023011111160444922700413181120433110724300000000000006540480000000000000000000000000000000000222222000000002229022 -T2202301111116044492219780121WT@YYBT9P1222222222223012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604449120060407WT@@#T0TB12222122204307100000000 -T320230111111604449120180907WT@B0W0PY12222222204398100000000120170113WT@P9PBZZ12222112204398100000000 -T12023011111160445522000411281120413111002300000000000007710650000000000000000000000000000000000222222000000002229072 -T2202301111116044551219930423WT@BYPBP92221222222221012212210660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604455120140923WT@900Y0T22212222204303100000000 -T320230111111604455120210727WTTY0P0TB22212222204398100000000120160913WTTP0W#TT22212222204301100000000 -T12023011111160450325600414551120212110598300000000000005280580000000000000000000000000000000000222222000000002229072 -T2202301111116045031219770711WTT9P@B092222212222221012212110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604503120170108WT@ZPT#YW22212222204398100000000 -T12023011111160460420900411721120413111034300000000000007310040000000000000000000000000000000000222222000000402219012 -T2202301111116046041219840301WT@ZYTP@Y2222212222223012216110055521011816000000000000000000000000000000000000000000000000000000000000007900000000000000000000 -T320230111111604604120060307WTT9@YYYW22222122204310100000000 -T320230111111604604120120205WTT9T@@WT22222122204305100000000120090101WTT90ZYYZ22222112204307100000000 -T12023011111160464622000411551120712111480300000000000010090990000000000000000000000000000000000222222000000002229072 -T2202301111116046462219790427WTTZ#W#@W2212221222212012206190342613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111116046461219870923WT@90#Y@T2212222222222022298290820023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604646120060718WT@WZ0Y#@22122212204310200000000 -T320230111111604646120100423WTTPBZP9Y22122212204306200000000120070905WT@#WYBZY22122222204309200000000 -T320230111111604646120200301WTTZTBW#@22122212204398100000000120160712WTTZ0TZTT22122212204398100000000 -T12023011111160467920600400871120313110835300000000000006540520000000000000000000000000000000000222222000000002229012 -T2202301111116046791219860926WTT@9W@@W2222212222223012212110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604679120090111WT@0B#BZ022222112204307100000000120050327WT@B9#9PW22222122204311100000000 -T12023011111160469323300410111120412111034300000000000007710050000000000000000000000000000000000222222000000002229072 -T2202301111116046931219920526WTT#Y0Y0Y2222212222221012211121150023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604693120090721WT@YPZ@@912222122204307100000000 -T320230111111604693120150301WTT#WPB@#22222112204398100000000120140205WT@WWT9T@22222122204302100000000 -T12023011111160469523500411471120213110631107220000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111116046951219780314WTTYPB#Z92122222222224012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604695120210126WTT9W0B#T21222222204398100000000 -T12023011111160471125600413441110313110835300000000000000270220000000000000000000000000000000130222221000003642219012 -T2202301111116047111219790501WT@YPWBW92222212222221012212120560421011801000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111604711120150414WT@BZ#@PZ22222112204398100000000120120405WT@PW#T#T22222122204303100000000 -T12023011111160474725900402831120533110973113710000018604200820000000000000000000000000000000000222222000003512219022 -T2202301111116047472219880426WT@YYBT9P1222212222221012211910006011079916000000000000000000000000000000000000000000000000000000000000093400000000000000000000 -T320230111111604747120090211WTTT9ZZW@12222112204307100000000120060713WT@0Y9@9912222112204309100000000 -T320230111111604747120200423WT@@B@WP#12222122204398100000000120140314WTTW@0B9B12222112204301100000000 -T12023011111160487024500405781120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116048703219650412WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000275200000000000000000000 -T320230111111604870120050412WT@W##ZB@12222212206310100000000 -T12023011111160489924200403941120233120000300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111116048995219590304WTT99#@002221222222225012212110006011069956000000000000000000000000000000000000000000000000000000000000458300000000000000000000 -T320230111111604899120110908WT@@BP0BT22212112208303100000000 -T12023011111160502724900406031120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116050272219790126WTTB#BBZP2222212222213012212110870013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111605027120090426WTTZPPT#012222122204307100000000120070418WT@Y@WWPP12222112204308100000000 -T12023011111160503521700409521120232110426300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111116050353219770318WT@TBZYPB2222212222222012216110960013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605035120200127WTT@0#B#B12222122206398100000000 -T12023011111160503725800404101120232110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116050373219660312WTTZZ@BZ#2122222222221012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000175 -T320230111111605037120070108WT@@9TY@Z21222222206308100000000 -T12023011111160505024200414721120323110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111116050501219930123WT@0#TZ#02222211222222011214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116050501219940104WT@Y9BZ9P2222212222222021214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605050120170213WT@W0YZPW22222122204398200000000 -T12023011111160516925900406841120533110835300000000002906540030000000000000000000000000000000000222222000000002229022 -T2202301111116051692219790923WT@YYBT9P1222212222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116051692219760113WT@YYBT9P1222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605169120090413WT@0ZPP0B12222122204307100000000 -T320230111111605169120140222WT@@P@Z@@12222112204302100000000120140222WTTTPZ#Z@12222122204302100000000 -T12023011111160518025600414951120313110766300000000000003920970000000000000000000000000000000261122222000000012219072 -T2202301111116051801219900112WT@YTBBTB1222222222221012211110930023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605180120190407WTTWTY0TT12221212204398100000000120130913WT@TYZZB#12222222204301100000000 -T12023011111160521623500405981120412111034300000000000307710370000000000000000000000000000000000222222000000002229072 -T2202301111116052161219890721WT@P@0Z0P1222222222221012212121530023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605216120080927WT@YZ0PPZ12222212204307100000000 -T320230111111605216120160207WT@T90BB@12222222204398100000000120160207WTTW9BPPP12222122204398100000000 -T12023011111160529325000414191120233110516300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111116052933219780122WTT90WB@@1222222222213012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111605293120180424WT@9@W0BP12222122207398100000000 -T12023011111160529722000407241120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116052973219600101WT@0BWYPZ2221222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001303000000000000 -T320230111111605297120120214WTTZZ#Y9B22212222206305100000000 -T12023011111160532324200405921120213110611300000000000705280030000000000000000000000000000000000222222000000002229012 -T2202301111116053231219780314WTTYZYY#92221222222221012214110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605323120110721WTT#B#0B922212222204305100000050 -T12023011111160534120800414651120412110939300000000000005280200000000000000000000000000000000000222222000000002229042 -T2202301111116053411219930704WT@TYYTWY2222212222223012210120204023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111605341420140407WTTBPW9T#22222122104302109140000 -T320230111111605341420180408WT@#9TT0W22222122104398109140000120160226WT@Z#09B022222122204398100000000 -T12023011111160535522000403351120313110835300000000000003920160000000000000000000000000000000261122222000000012219012 -T2202301111116053551219830223WT@Y99TZ01222222222223012207110174323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605355120060905WTTZYPBP@12222222204309100000000120040308WTT#0#ZTW12222212204310100000000 -T12023011111160537223500409141120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116053723219570721WTTYZP#PZ2222212122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001356000000000980 -T320230111111605372120050407WT@TZZWY922212122206311100000000 -T12023011111160538320600407031120413110939300000000000007710120000000000000000000000000000000000222222000000002229012 -T2202301111116053831219990927WT@@B9PT#2222122222221012210910283223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605383120190926WT@B9TW9P22221212204398100000000 -T320230111111605383120220104WT@@9@W9Y22221212204398100000000120200723WT@##TT#Z22221212204398100000000 -T12023011111160540024200408571120423111034300000000447107710030000000000000000000000000000000000222222000000002229012 -T2202301111116054001219820307WTT#PPTYY2222211222222011214190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116054001219810423WT@#W0TPW2222212222222021213190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605400120090104WTTTZ0B0@22222112204306100000000120090104WT@00Y#WB22222112204306100000000 -T12023011111160542520600414771120113110611300000000005004170070000000000000000000000000000000000222222000000002229012 -T2202301111116054251219930423WTT#Z9T002222212222221013216190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111160548725100402211120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116054873219580427WT@Y0YB@92222212122215012212110520813069900000000000000000000000000000000000000000000000000000000000000000000000356045900000000 -T320230111111605487120110404WT@PY0@PT22222112206305100000000 -T12023011111160550625900402721120333110165300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111116055062219750309WT@YYBT9P1222222222222012202990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116055062219730101WT@YYBT9P1222221222222102201990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605506120050323WTTPZBYPB12222222204311100000000 -T12023011111160569321400408021120213110560300000000000005280160000000000000000000000000000000000222222000000002229072 -T2202301111116056931219800112WT@PTZWPZ1222222222221012212110830023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111605693120100109WTT0@B9YW12222222204304100000000 -T12023011111160574820600412681120213110576300000000010005280260000000000000000000000000000000000222222000000002229012 -T2202301111116057481219880212WTTB#W0#T2222212222221012216110273321011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605748120110401WT@WWY#ZZ22222122204305100000050 -T12023011111160587824700408301120312110776300000000002006540150000000000000000000000000000000000222222000000002229072 -T2202301111116058781219750927WTT@YY#0T1222212222221012209110610023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111605878120080104WTT0Y@BW@12212212204307100000050120050721WT@PP0@ZZ12212222204310100000050 -T12023011111160593622000404691120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111116059363219900718WTT#Y@T#02222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000415900000000000000000000 -T320230111111605936120060223WT@P9WY9#22222112208309100000000 -T12023011111160595625200400791120213110576300000000000003160190000000000000000000000000000000211122222000000012219012 -T2202301111116059561219720408WT@PTWZ902222211222221012211110253523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605956120110211WT@T#0Z9Y22222112204305100000050 -T12023011111160597624200410211120313110766300000000000106540480000000000000000000000000000000000222222000000002229012 -T2202301111116059761219910927WTTP0#WPB2221222222221012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605976120210721WT@9W9TB022212212204398100000000120200322WTTZ#0TPT22212212204398100000000 -T12023011111160598423500404821120212110598300000000000005280390000000000000000000000000000000000222222000000002229012 -T2202301111116059841219880423WTTB@Y#WT1222212222223012212110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111605984120190926WTTB9Y#WP12222112204398100000000 -T12023011111160599025900402831120233110557300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111116059903219680123WT@TWBW9#2222212222225012211110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000001521 -T320230111111605990120160401WTT#B0Z@021222222209398100000000 -T12023011111160609721000411361120412110945127080000000007710880000000000000000000000000000000000222222000000002229072 -T2202301111116060971219940121WTTW099ZW2222212222223012211110890023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111606097120140505WT@9PTWPB22222122204302100000000 -T320230111111606097120210109WT@#0@YTZ22222112204398100000000120190427WTTWZBW#@22222112204398100000000 -T12023011111160618722000401711120322110766300000000000006540280000000000000000000000000000000000222222000000002229072 -T2202301111116061871219740326WTTZ@BB#02222122222222011211190880023011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111116061871219610908WT@#Z#0PP2222121222222021212190870023011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111606187120060307WTTT@#Z##22221222204308100000000 -T12023011111160626422000413691120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116062643219620326WT@B#WBZP1122222222222012212110006011069919000000000000000000000000000000000000000000000000000000000000173300000000000000001593 -T320230111111606264120070724WT@@9ZB#011222212207308100000000 -T12023011111160628024200402501120213110516300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111116062801220000726WTT00PY0T2222222222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111606280120220104WT@TPPY#Z22222212204398100000000 -T12023011111160630524200414721120233110516300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111116063052219940412WT@PBW@Z02122222222211012212110006011089920000000000000000000000000000000000000000000000000000000000000166800000000050400000000 -T320230111111606305120160927WTTTY9WZP22222122204398100000050 -T12023011111160631222000406191110213110542300000000000004590010000000000035001000000000000000000222222000000002229012 -T2202301111116063121219920426WT@Y0B#WY2222212222223012213110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111606312120190109WTTTP09ZZ22222112204398100000000 -T12023011111160634220400409801120233120000300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111116063423219560721WTTT099W02222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111606342120100418WT@Y9PB9B22222112206306100000000 -T12023011111160639824900404261120333110740300000000000002970990000000000000000000000000000000000222222000001202219022 -T2202301111116063982219750113WTTY@@TW@2222211222212012213110481213089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111116063982219700704WTTYTYB9T2222212222212022212191150013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111606398120040712WTTB@B@@#12222222205312100000120 -T12023011111160644220800410781120312111561300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116064421219790908WT@@W#PTT2221221222225012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111606442120210527WTTWTW0@922212222204398100000000120200401WT@90TPTZ22212212204398100000000 -T12023011111160644320600414251120513111195300000000000007380580000000000000000000000000000000000222222000002712219012 -T2202301111116064431219850326WTT9#PPT#2222212222221012212110590121011806000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111606443120110923WT@#@WZP@22222122204305100000000120100111WTT0PYZZY22222122204306100000000 -T320230111111606443120160918WTTB0@ZWZ22222112204398100000000120150426WTTPTT#0Y22222112204301100000000 -T12023011111160656924200403941110213110592128510000000000170010000000000000000000000000000000000222222000000002229012 -T2202301111116065691219990314WT@ZBTZB92222212222223012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111606569120200423WTT0ZWYY@22222112204398100000000 -T12023011111160658723500410671120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116065873219410921WTT@Z##Z01222222222214012201110025813069900000000000000000000000000000000000000000000000000000000000000000000000000060900000000 -T320230111111606587120050507WTT0#WT9Y12222212206311100000050 -T12023011111160666922000407241120313110835300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111116066691219840323WT@BBTPB@2222212222223012216210095123011900000000000000300000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111606669120150427WTTZW@B0W22222112204302200000000120090223WTT9T9#0T22222112204307200000000 -T12023011111160676122000410051110523111116300000000000001710010000000000000000000000000000000000222222000000002229012 -T2202301111116067611219850718WT@Y#ZT092222211222222011211290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116067611219870901WT@@TZPB@2222212222222021211290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111606761120080904WT@PP#Y0W22222122204308200000000 -T320230111111606761120180926WT@@9BTB@22222122204398200000000120120126WTTB@#9TB22222112204304200000000 -T12023011111160677624200403511120533120000118720000000007710410000000000000000000000000000000000222222000000002229022 -T2202301111116067763219660223WT@#BB0Y@2222122222225012212120006013069900000000000000000000000000000000000000000000000000000000000000456100000000000000000000 -T320230111111606776120120114WTT@0PPB#22221212206302100000000120080307WTTB@9@@W22221222206306100000000 -T320230111111606776120160323WT@W@W9#922221212206398100000000120140323WT@YPB#YY22221222206398100000000 -T12023011111160680822000407241120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116068082219830726WT@#9Z@992222212222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111606808120090121WTT@ZPB0#22222122204308100000000 -T320230111111606808120130423WTTW@P0@Z22222122204304100000000120100727WT@@#B#W922222112204307100000000 -T12023011111160694425200407301120532111009300000000000007550070000000000000000000000000000000000222222000000162219022 -T2202301111116069442219940926WT@YYBT9P1222222222223012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000016 -T320230111111606944120120413WT@YB@@@T12222212204304100000000120100305WT@0ZPWPT12222212204305100000000 -T320230111111606944120210527WT@#9@BBP12222212204398100000100120160327WTTP0TTPZ12222212204398100000000 -T12023011111160694724200407431120213110599300000000000003160340000000000000000000000000000000211122222000000012219072 -T2202301111116069471219820905WT@ZWT0992222212222221012212111400023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111606947120060405WT@ZTZT#Y22212222204309100000000 -T12023011111160716124700408301120212110611300000000000005280090000000000000000000000000000000000222222000000002229072 -T2202301111116071611219880713WTT#9@@9@2222212222225012216110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111607161120150127WT@YBWTT#22222122204398100000000 -T12023011111160720124500405941120412110960300000000005007710410000000000000000000000000000000000222222000000002229012 -T2202301111116072011219910101WT@WZ9@PT2222212222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111607201120130726WT@@Y@#@W21222212204302100000000 -T320230111111607201120200127WT@Y@Y9TT22222122204398100000000120190923WT@9ZY9ZB22222112204398100000000 -T12023011111160742022000411131120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116074202219800227WT@BWBZ902221222122211012216111330013109900000000000000000000000000000000000000000000000000000000000000000000000566036800000000 -T320230111111607420120080208WTTBP99ZW22212122204308100000050 -T12023011111160753524200405921120713111480300000000000010090040000000000000000000000000000000000222222000000002229012 -T2202301111116075351219910327WTTBZBB9@2122222222221012212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000075 -T2202301111116075352219890709WT@ZP0YBW2122221222211102211190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000075 -T320230111111607535120090307WT@B099Y022221212204307100000075 -T320230111111607535120120426WTTTBBZ9Y21222222204305100000075120100313WTT0TPZZ922221212204306100000075 -T320230111111607535120170923WT@WYPP@@22221222204398100000075120140727WTT@YTPB@21222222204302100000075 -T12023011111160762720800410781120212110605300000000000005280560000000000000000000000000000000000222222000000002229072 -T2202301111116076271219750407WT@W9WPBP2222212222225012211110960023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111607627120140304WTTW#9@B@22222112204302100000000 -T12023011111160763724700402991120522111126300000000002908880660000000000000000000000000000000000222222000000002229012 -T2202301111116076371219860118WTT09PT092222211222222011212290590123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116076371219910201WTT@9@Z#Z2222212222222021298290590123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111607637120100302WTTB0P0ZB22222122204307200000000 -T320230111111607637120170904WTT#90Z9922222212204398100000000120140504WT@WPZYBW22222112204398200000000 -T12023011111160772224200404891120233110516300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111116077222219970923WTT90#YY@2222212222213012212110114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111607722120150414WTTZ9W@#P22222122204302100000000 -T12023011111160778723900403801120213110598300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111116077871219830921WT@0W#T@@2222212222221012213110471321011935000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111607787120150721WTTPZ0W0W22222112204398100000000 -T12023011111160780622900405641120213110611300000000000003160220000000000000000000000000000000211122222000000012219012 -T2202301111116078061219770526WT@PPZ@YZ2222212222225012213110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111607806120080312WTT#@P0PW22222122204307100000294 -T12023011111160788920800405391120213110618300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111116078891220000718WTTYZBWPB2222212222221012212110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111607889120220123WTTTPBPW922212112204398100000000 -T12023011111160796923700414331120213110611300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111116079691219970704WT@@YWZ0@1222222222221012212110352523010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111607969120200312WTTB9TBYW12222122204398100000000 -T12023011111160802924700409321120312110740114720000070005280210000000000000000000000000000000000222222000000002229072 -T2202301111116080291219850421WT@W9@Z@B2221222222225012216110740021011724000000000000000000000000000000270002000000000000000000060000000000000000000000000971 -T320230111111608029120170114WTTP9WT#W22222112204398100000000420080126WT@@PBT#T22212112104307102760375 -T12023011111160804525800413571120233110478300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116080453219840727WT@WP0@9P2222212222221012211120690013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608045120150307WTTT#P0@912222122209398100000000 -T12023011111160805122000408341120333110740300000000000005280310000000000000000000000000000000000222222000000002229022 -T2202301111116080512219860913WTT@T@0@P2221222222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111608051120080307WTT#Z@@@T22212222204306100000000120070312WT@ZT@B#Z22212222204307100000000 -T12023011111160809424200414851120232110536300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116080942219870926WTTWZPBYW2222212222211012205110402013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111608094120210423WTT0#WP9P12222122204398100000000 -T12023011111160809523500410671120233120000300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111116080953219710223WT@ZZP0WP2222211222222012213110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111608095120200313WT@WZ0@Y922222122206398100000000 -T12023011111160811722000411282120523211116300000000000008880050000000000000000000000000000000000222222000000002229032 -T2202301111116081171219850311WTTPBPZT@2222211222222011213290065423011800000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T2202301111116081171219860408WTTPPB@T02222212222222021213290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608117120080218WTTYB0B#@22222112204308200000000 -T320230111111608117120180402WT@9YZY0022222122204398200000000120140102WTTT#YZ9922222122204302200000000 -T12023011111160814022000408811120232120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116081403219820321WTTW0B#ZB2221222222222012216110293111069914000000000000000000000000000000000000000000000000000000000000274500000000000000002108 -T320230111111608140120120404WT@#TZ@P922212222207303100000000 -T12023011111160828422000411191120413110939126430000035507710080000000000000000000000000000000000222222000000002229012 -T2202301111116082841219890513WTTZW09W02212212222221012216120085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111608284120140723WT@990BZB22121112204301100000000 -T320230111111608284120200727WTTW0B0#B22122122204398100000000120160108WT@PW0P#T22121122204398100000000 -T12023011111160830422000411551120232120000300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111116083043219720122WT@0Y9#@#2221222222221012214120253511069944000000000000000000000000000000000000000000000000000000000000374600000000000000000000 -T320230111111608304120170409WTT9@BBTW22212212207398100000000 -T12023011111160832522000407791120212110598300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111116083251219960908WTTZ0YTY@2221222222221012216110382223011800000000000000000000000000000000290001000000000000000000000000000000000000000000000622 -T320230111111608325120150727WT@#WP#ZB22212212204301100000000 -T12023011111160832622700413181120312110766300000000000003920200000000000000000000000000000000261122222000000012219012 -T2202301111116083261219900721WT@PZW#YW2222212222223012209110243623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608326120130226WTTTBTZZ#22222112204303100000000120060227WTT0#T0WT12222112204309100000000 -T12023011111160833724700409381120233120000300000000000004170790000000000000000000000000000000000222222000000002229022 -T2202301111116083373219770724WTT@YY#P92222212222225012216110303011069939000000000000000000000000000000000000000000000000000000000000523000000000000000000000 -T320230111111608337120130326WTTWY@9#@22212212207303100000000 -T12023011111160834325100407671120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111116083431220030913WT@9@P9TZ2222222222221013211190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111160835722000411281120212110598118830000000205280090000000000000000000000000000000000222222000000002229012 -T2202301111116083571219950423WTTT#9#9T2221222222221012213120095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608357120180918WT@BZ###T22212222204398100000000 -T12023011111160838520800404431120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116083853219740118WTT##909@1222222222222012212110134711069941000000000000000000000000000000000000000000000000000000000000317000000000000000000000 -T320230111111608385120050418WT@YP9ZB922222112207311100000000 -T12023011111160839321700406141120233120000119520000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111116083933219630118WTTBBWWYP2222211222225012215110006013069900000000000000000000000000000000000000000000000000000000000000794500000000000000000000 -T320230111111608393120210918WTTYZY@@@11222222206398100000004 -T12023011111160843924500405781120213110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111116084391219890323WTTTB##9Z2222212222221012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608439120220423WT@ZY@0#Z22222112204398100000000 -T12023011111160846024200414721120333110611300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111116084602219800927WT@YYBT9P1222222222222012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608460120100102WT@WY#9P012222212204307100000000120060214WT@B#Z0BT12222212204310100000000 -T12023011111160853623500412161120212110639300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111116085361219770724WT@@#00WW1222212222225012212210342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608536120080904WT@BPP9#Z12222122204308100000000 -T12023011111160854023700414331120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116085402219820222WT@@0##0B1222212222211012212110740011089915000000000000000000000000000000000000000000000000000000000000096000000000024400000000 -T320230111111608540120050327WTT@ZP9TP12222122204309100000000 -T12023011111160856025900402831120412110740300000000000003920600000000000000000000000000000000261122222000000012219072 -T2202301111116085602219830101WTTW@0T#B2222212222212012209190461413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111116085601219680401WT@W@ZW@92222211222222022212190610023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608560120160408WT@#9@@ZB22222212204301100000000120130327WT@BT#9Y922222112204302100000000 -T12023011111160868222000405181110312110835300000000000004850370000000000000000000000000000000000222222000001692219012 -T2202301111116086821219980323WT@TYYPP92221222222221012211110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608682120210113WTTBW#0W022212212204398100000000120200423WT@9YT9Y@22212222204398100000000 -T12023011111160875923500410671120523111199300000000002008880100000000000000000000000000000000000222222000000002229012 -T2202301111116087591219850418WT@@WZ#YP2222212222222011213290114923011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111116087591219820918WTTYW#Y@@2222211222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608759120080904WTT9#0#@#22222212204308200000000 -T320230111111608759120180727WTTYPTB0#22222122204398200000000120110501WT@Y#ZWY922222222204305200000000 -T12023011111160881122000411971120413110786300000000250006540020000000000000000000000000000000000222222000000002229012 -T2202301111116088111219790102WT@Y9#@WB2221221222222012214190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116088112219900407WT@YYBT9P2221222222222022210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608811120160722WTTB0BPBZ22212222204301100000000120150126WTT0ZZ@@Z22212212204302100000000 -T12023011111160887522000403352120213210598300000000000005280340000000000000000000000000000000000222222000000002229032 -T2202301111116088751219750714WT@##YBTT2221222222221012298210352523011900000000000000000000000000390002000000000000000000000000040000000000000000000000000000 -T320230111111608875120150404WT@T@ZYB#22212212204301200000000 -T12023011111160892525200414061120233110611300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111116089253219600721WTTZ009Y92222212222223012210110184213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111608925120190702WT@WPBYP@22222112206398100000000 -T12023011111160909024200410531120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111116090903220000727WTT0B@@YP2222212222221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609090120210907WTTZ90TP011222212207398100000000 -T12023011111160910322000403351120233110376300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111116091033219660121WTTBPZ9001222222222224012212110710013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609103120140713WT@@Y9@YW12222112206302100000000 -T12023011111160912622700403021120213110548300000000050005280100000000000000000000000000000000000222222000000002229012 -T2202301111116091261219940705WT@P#TZTY1222212222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609126120210209WT@Z09PBP12222222204398100000000 -T12023011111160919422700413181120233120000300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111116091943219770518WT@990@B@2222212122225012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001274000000000000 -T320230111111609194120090204WTTTWWBP#22222122207305100000000 -T12023011111160926125000414191120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116092611220040711WT@#P9YW@2222212222221012212210065421011820000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609261120070301WTT90WZ#W22222112207308200000000 -T12023011111160926222700408491120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111116092621219980118WT@99@@002222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609262120210304WTTW0ZZW022222122204398100000000 -T12023011111160930824200403941120332110670113090000000005280630000000000000000000000000000000000222222000000002229022 -T2202301111116093083219700721WTTP#@YP02222212222225012213110035711069933000000000000000000000000000000000000000000000000000000000000360300000000000000000079 -T320230111111609308120170527WT@B0W@WB12222122206398100000000120150307WTTZ@@YP#12222112206398100000000 -T12023011111160931621700406141120212110598300000000000005280640000000000000000000000000000000000222222000000002229072 -T2202301111116093161219830926WTTB#0PZ#2221222222221012212120970023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609316120100218WTTY#W#0#22212212204306100000000 -T12023011111160948925600413441120213110611112270000119405280080000000000000000000000000000000000222222000000002229012 -T2202301111116094891219950113WTT0W0@#T2212222222221012212120095121011720000000000000000000000000000000000000000000000000000000000000000000000000000000001183 -T320230111111609489120180727WT@ZBB0@022122212204398100000000 -T12023011111160957222700408491120313110835111990000000006540390000000000000000000000000000000000222222000000002229012 -T2202301111116095721219940208WT@9T0#P92222212222221012212110402023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111609572120180412WTTWY9#P012222112204398100000000120100327WT@#W@@#W12222112204305100000000 -T12023011111160960720600414771120213110376300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111116096071219950123WT@9#9Z9W2222212222221012209110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609607120210708WT@9TPY9W22222122204398100000000 -T12023011111160964223900403801120313110766300000000000003920150000000000000000000000000000000261122222000000012219012 -T2202301111116096421219970118WTTPZ00#P2222122222221012216110184223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609642120200713WT@#TW#PW22222212204398100000000120160923WTT0PY0Y922221222204398100000000 -T12023011111160988720600414251120512111136111470000001008880990000000000000000000000000000000000222222000000002229072 -T2202301111116098871219860901WT@WZ99#02222212222221012210111060023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111609887120130304WT@W#900Y22222112204302100000000120120702WT@9Y9WZ@22222122204304100000000 -T320230111111609887120170309WT@0990@P22222122204398100000000120160314WTTYBY00@22222122204398100000000 -T12023011111160994223700414331120233110493300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116099423219790227WTTW9Y@##2222212222222012213110461411069907000000000000000000000000000000000000000000000000000000000000049900000000000000000000 -T320230111111609942120190227WT@YPBZT922222112209398100000000 -T12023011111161004624200407271120233120000300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116100463219590411WT@00ZPY91122221222222012216120006013069900000000000000000000000000000000000000000000000000000000000000286300000000000000000109 -T320230111111610046120110107WTTZZTYY@22222122206305100000000 -T12023011111161014624700408301120312110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111116101461219900401WTTBZ9TWZ2221222222225012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610146120150112WTTZ@ZBZT22212112204302100000000120100301WTTTP0##Z22212112204306100000000 -T12023011111161029022000409411120213110598121020000466105280040000000000000000000000000000000000222222000000002229012 -T2202301111116102901219870318WT@0Z@@TW2221222222221012212210055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610290120220901WTTZWWYZW22212212204398100000000 -T12023011111161033220800411931120312110740300000000000004900990000000000000000000000000000000163222122000000012219012 -T2202301111116103321219800213WT@PB#TW91222222222221012204220352523010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610332120060323WT@WPPZ#@22222222204309100000000120040312WT@B#9W#T12222222204310100000000 -T12023011111161035120600401642110323210740300000000000001470010000000000000000000000000000000000222222000000002229032 -T2202301111116103511219930311WT@9TPY9W1222221222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116103511219860426WT@9TPY9W1222222222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610351120140302WT@9TPY9W12222212204302200000000 -T12023011111161036425900402831120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111116103641219980712WT@Z@09Y@2212222222221013210190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111161045324700413761120213110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111116104531220020927WT@Z00BPY2222212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610453120210424WTTZZB@TZ22222112204398100000000 -T12023011111161046724200403511120213110599300000000152203160220000000000000000000000000000000211122222000000012219012 -T2202301111116104671220020305WTT@B9Y9B2222211222221012212110223823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610467120190723WT@PW90WT22222112204398100000000 -T12023011111161050122000407412120523211116300000000000008880060000000000000000000000000000000000222222000000002229032 -T2202301111116105011219920926WTTZ@T##T2222212222222011214290075323011800000019000200000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111116105011219880413WTTTTW@0@2222211222222021209290075323011800000019000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111610501120120909WTTY9@WBZ22222112204303200000000 -T320230111111610501120170921WTTY9Z@BW22222112204398200000000120140704WT@BBBZ0Z22222122204301200000000 -T12023011111161050524200414721120212110611300000000000003160540000000000000000000000000000000211122222000000012219012 -T2202301111116105051219830721WT@#9BZTB2222212222221012211110550523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610505120090102WTT@#Z@@W22222122204305100000000 -T12023011111161058525900402631120233110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116105853219600423WT@#ZPYPB2222212122225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000748000000000000 -T320230111111610585120060526WTTYW900912222122206310100000000 -T12023011111161064022700408351110313110376300000000000001470430000000000000000000000000000000000222222000003812219012 -T2202301111116106401219950227WT@ZTW90W2222212222221012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610640120210426WT@YP90PZ22222112204398100000000120190418WTT#Y9TYB22222112204398100000000 -T12023011111161076520200409311120313110835300000000000004900040000000000000000000000000000000163222122000000012219012 -T2202301111116107651219960704WTTBW9P0#2122212222221012212120065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610765120180221WTTZ@Y9P@12222112204398100000000120160713WT@#WTB#B12222122204398100000000 -T12023011111161083324700405901120413110965300000000050007710020000000000000000000000000000000000222222000000002229012 -T2202301111116108331219750913WT@00WT9B2222212222223012214110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610833120080213WTT#YYWP@22222122204309100000000 -T320230111111610833120120326WTTYWT9YP22222122204304100000000120100713WT@Z9#YYP22222112204306100000000 -T12023011111161090024200414851110612111434300000000000009110090000000000000000000000000000000000222222000000982219042 -T2202301111116109001219850407WT@9#ZW9B2222122222221012212120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610900120070908WT@BY#@T022221212204309100000000 -T320230111111610900120100305WTT0PBWPB22221222204306100000000120090901WT@BZ#BYB22221212204308100000000 -T320230111111610900120180722WT@WBB#W@22221222204398100000000120110712WT@#TP9ZY22221222204305100000000 -T12023011111161091324200409091110313110785110040000000005480450000000000000000000000000000000000222222000001062219012 -T2202301111116109131219850913WTTP@YZWZ1221222222221012216110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111610913120200212WTTY@@0PT22212222204398100000000120090918WT@#0WBP912212222204308100000000 -T12023011111161098121700407751110623111339300000000000004700010000000000000000000000000000000000222222000000002229012 -T2202301111116109811219770401WT@@YTWYY2222211222222011212110105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116109811219890304WTTZ#0YPB2222212222222021211190600021011815000000000000000000000000000000000000000000000000000000000000093800000000000000000000 -T320230111111610981120110318WTTZT@ZY021222122205305100000000120110927WTT09@B9T22222122204305100000000 -T320230111111610981120180907WT@9WWB0#22222122204398100000000120150926WTTPYY@@022222112204301100000000 -T12023011111161101422900405641120313110835300000000001006540060000000000000000000000000000000000222222000000002229012 -T2202301111116110141219910907WT@0@ZBTZ1222212222221012216110134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611014120220913WTT@T#PYY22222212204398100000000120200304WT@P##T9#12222122204398100000000 -T12023011111161110125600400661120113110376300000000000004170080000000000000000000000000000000000222222000000002229012 -T2202301111116111011219870123WTTPPT9P92222212222221013213190095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111161113724700401011120812111691300000000000012890560000000000000000000000000000000000222222000000002229012 -T2202301111116111371219850427WT@90@WWB2222212222225012216110570323011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111611137120060911WT@#PYB0922222112204310100000000 -T320230111111611137120110902WT@0B#YP912222112204305100000000120090313WTTB09B#012222222204306100000000 -T320230111111611137120150109WTTBW0BP912222112204302100000000120130501WTTW9ZBWT22222122204304100000000 -T320230111111611137120170313WT@BP9BPT12222112204398100000000120160411WTT#0BBZW12222112204301100000000 -T12023011111161117825900406081120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116111783219530401WTTP#0PPB1222212122225012212110006011069942000000000000000000000000000000000000000000000000000000000000169000001466000000000000 -T320230111111611178120090924WTT##ZPWT11222222206305100000000 -T12023011111161122121700406141120323110740300000000000004170410000000000000000000000000000000000222222000000002229012 -T2202301111116112211219790411WTT#BP#0T2222211222221011212190095121011809000000000000000000000000000000000000000000000000000000000000098600000000000000000000 -T2202301111116112211219920427WT@@WBZ##2222212222223011212110392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611221120220701WTTBWZWWT22222122204398100000000 -T12023011111161131922000413681120523111116300000000035001180450000000000000000000000000000000000222222000007702219012 -T2202301111116113191219850408WTTT09T0W2222212222222011216190461421011911190000000000000000000000000000100001000000000000000000000000323200000000000000000000 -T2202301111116113191219780912WT@Y9T#9P2222211222222021216190461423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611319120100212WT@0PW90W22222122204307100000000 -T320230111111611319120170411WTTZ0#YP022222112204398100000000120120414WTT9BTBY@22222112204305100000000 -T12023011111161132622000401711120323110542300000000000003920230000000000000000000000000000000261122222000000012219012 -T2202301111116113261219900313WT@PZP00B2222212222222011216190243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116113261219870327WT@@W00PP2222211222222021210190243623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611326120150313WTT#P0WT@22222122204398100000000 -T12023011111161146123500411471120213110598300000000003105280120000000000000000000000000000000000222222000000002229012 -T2202301111116114611219930118WTTW009BW1222212222225012212120134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611461120220126WT@@PTPZP12222122204398100000000 -T12023011111161153024700402991110213110516300000000000000850010000000000000000000000000000000000222222000000002229012 -T2202301111116115301219860712WT@ZY#ZTW1122222222223012216110025823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611530120180208WTTPPZ9WY11222222204398100000000 -T12023011111161156222000407241120213110560300000000001005280040000000000000000000000000000000000222222000000002229012 -T2202301111116115621219770713WT@WB9P9#2221222222221012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000001909 -T320230111111611562120090712WT@#Z0#Y922222212204307100000000 -T12023011111161157424200401241120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116115741219950426WT@@9#WZW2221222222221012210110065423011400000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111611574120180412WT@PY#WBB22212222204398100000000 -T12023011111161166321000414221120333120000300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111116116633219750918WTTYZW0TZ2222212222222012213110114913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611663120120126WT@TBP@P022222112208302100000000420060102WTTBB9WPW12222122204308100000000 -T12023011111161173522000409412120423211034300000000189507710050000000000000000000000000000000000222222000000002229032 -T2202301111116117351219910126WTT0TWWPP2222221222222011212290075321011825000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116117351219960412WT@9YBW@P2222222222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611735120180323WT@Z0#Y@#22222212204398200000000120170904WT@T9Z@WP22222222204301200000000 -T12023011111161179220800403781120233120000105830000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111116117925219690123WT@T99ZY91222222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000657500000000000000000000 -T320230111111611792120120414WT@PP9WZT22222112209305100000000 -T12023011111161181925900403551120233110516300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111116118193219770401WTTW0Y0#T2222212222225012216110124811069930000000000000000000000000000000000000000000000000000000000000227900000000000000000000 -T320230111111611819120200421WTTW0TBYZ22222122206398100000050 -T12023011111161191925900407561120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116119193219660407WTTWYY9PZ2222212222222012214110006011069973000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111611919120080205WT@YYT0YY22222122206308100000000 -T12023011111161203620800411931120213110611300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111116120361219910526WT@TYBT9Z2222212222223012213110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111612036120140907WT@##Z9BY22222112204302100000000 -T12023011111161209421700403821120233120000300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111116120943219440126WT@9PYPBB2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000070000002125000000000000 -T320230111111612094120090902WTTY9YBYY12222212206306100000050 -T12023011111161239524900403221110213110611103550000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111116123951219840207WTTYYY0ZY1222211222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111612395120200322WTTZ0P###22222122209398100000000 -T12023011111161251823500410681120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111116125181220020408WT@BT09TT2222212222221012212110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111612518120220522WT@BWT#WW22222112204398100000000 -T12023011111161262325600414971120333120000300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111116126233219840101WTTBWB0Z#2222212222222012213120006011069937000000000000000000000000000000000000000000000000000000000000458300000000000000000000 -T320230111111612623120130926WTTYBW0T022222112208398100000000120060422WTT#WWY#W22222122209310100000000 -T12023011111161263825800401871120233110516300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111116126383219550309WTT@ZY0YB2222211122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001761000000000027 -T320230111111612638120090204WT@9Z0T9022222112206306100000024 -T12023011111161268322500411101120233120000300000000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111116126833219620504WT@9TT@ZY2222212122222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000946000000000000 -T320230111111612683120110412WTTYB9@YT22222122206303100000000 -T12023011111161278622000413731120323110766300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111116127861219790111WT@BBPTT@2222212222222011212210095122011800000000000000180000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111116127861219830412WTT@090@02222211222222021298290035722011900000000000000310000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111612786120190427WTTB@ZBB922222122204398200000000 -T12023011111161281525200409361110233110238300000000000002010010000000000000000000000000000000000222222000000002229021 -T2202301111116128153219550123WTTZYZWB92222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001524000000001452 -T320230111111612815120130904WT@P#Y9W922222112206303100000000 -T12023011111161290325800413571120413111054300000000000007710110000000000000000000000000000000000222222000000002229012 -T2202301111116129031219880127WTT@09BBP2222211222221012211110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111612903120140112WT@WB#9TT22222122204302100000000 -T320230111111612903120170707WT@TW@WTZ22222112204398100000000120150412WTT0#9@Y922222112204301100000000 -T12023011111161299022000411551120332110704300000000000005280950000000000000000000000000000000000222222000000002229022 -T2202301111116129903219640408WTTWZZ9Y#2221222222221012212110322811069933000000000000000000000000000000000000000000000000000000000000324000000000000000000000 -T320230111111612990120080512WTT0#Z0TT22212212206308100000000120080512WTT#9WWY922212212206309100000000 -T12023011111161304522700408351120513111013300000000000005320070000000000000000000000000000000355122222000000012219012 -T2202301111116130451219910118WTT0WYT@B2222212222223012212110303023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111613045120130101WT@YWYP9@22222122204303100000000120100322WTTY#WP0@22222112204304100000000 -T320230111111613045120160901WT@##TTY#22222112204398100000000120150223WTT@##ZT922222122204301100000000 -T12023011111161310825900414481120233110516300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111116131085219800507WTTY0000@2222212222221012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001000 -T320230111111613108120170112WT@@0B@P@12222112209398100000000 -T12023011111161340624700406701120512111057300000000000205280990000000000000000000000000000000000222222000000002229072 -T2202301111116134062219650109WTTY9#PBZ2222211122212012208110750013109900000000000000000000000000000000000000000000000000000000000000000000000709022500000000 -T2202301111116134061219770924WTT9YY9#B2222212222222022205192450023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111613406120050202WTTPY9T#Y22222122204311100000000 -T320230111111613406420100426WT@B9B99922222112104305109140000420080923WT@#9TB0@22222112104307109140000 -T12023011111161343520600402141120422110939300000000000001430210000000000000000000000000000000000222222000006282219012 -T2202301111116134351219920918WT@BBP0PY2122222222221011212190164421011800210000000000000000000000000000000000000000000000000000110000125500000000000000000156 -T2202301111116134351219900226WT@@#PW9B2222211222221011213190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111613435120190327WT@9#@B9P21222222204398100000140120150926WTT0TZPP#21222212204398100000140 -T12023011111161349423800413801120432110939300000000000006540540000000000000000000000000000000000222222000000002229022 -T2202301111116134942219880204WTT9ZBY9T2122222222215012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111613494120120712WT@TWPW#B22222112204304100000000 -T320230111111613494120150412WTTWW9PTT22222122204301100000100120140112WTTYZ@0@022222122204302100000000 -T12023011111161352523300410111120413110939300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111116135251219960304WT@9TP9ZT2222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111613525120130904WT@Y#Y9#T22222112204304100000000 -T320230111111613525120160901WT@0ZBZZ922222122204398100000000120150427WT@0BZ90022222112204301100000000 -T12023011111161365023900403801120233120000300000000041704170350000000000000000000000000000000000222222000000002229022 -T2202301111116136503219660423WT@WB@TTW2222212222223012212110006011069940000000000000000000000000000000000000000000000000000000000000270900000000000000000000 -T320230111111613650120090307WT@ZTYP@#22222122206307100000000 -T12023011111161368023700414331120313110611300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111116136801219930922WT@#PB#BP1222212222221012212110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111613680120220718WTTP@#0#W12222222204398100000000120210721WTTB@###@12222122204398100000000 -T12023011111161377920400413031120233110533300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111116137793219650422WT@@@TZY#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111613779120210305WTTZP09Y@22222112206398100000000 -T12023011111161382325600411521120313110835300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111116138231219920305WT@@##P0P1222222222221012209210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111613823120150718WT@Y@P#0B12222212204301100000000120140112WT@T9PW0B12222222204301100000000 -T12023011111161388025100407671120113110376300000000000002500060000000000000000000000000000000166122222000000012219012 -T2202301111116138801219930212WTTP@00TW2222212222221013212190075323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111161389324200414851120113110376300000000000004170660000000000000000000000000000000000222222000000002229072 -T2202301111116138931219820907WT@W#@W9B2222222222223013216111110023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111161403024100405611120212110599300000000000003160860000000000000000000000000000000211122222000000012219072 -T2202301111116140301219870524WT@T#B0WZ2222212222221012211110870023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111614030120170913WT@B#BPYZ22222122204398100000000 -T12023011111161408724200409731120313110835300000000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111116140871219830214WT@TWZTB#2222212222221012216110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111614087120170126WT@YZT90B22222112204398100000000120140504WTTWY@Y9Y22222112204302100000000 -T12023011111161411821600402511120233110516300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111116141182219860718WTTP9YBZB2122222222211012209110105013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000248 -T320230111111614118120090113WTTZ9ZZZB21222222204306100000000 -T12023011111161414623500411471120323110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111116141461219920421WTTBTYTZP2222212222222011216290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116141461219940721WT@Z##WWY2222211222222021214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111614146120190904WT@9TPY9W22222122204398200000000 -T12023011111161433622000404841120413110939300000000000006460150000000000000000000000000000000000222222000000002229012 -T2202301111116143361219810127WT@@WT0B92221222222225012211120164423011800000000000000000000000000000000010000000000000000000000080000000000000000000000000000 -T320230111111614336120070926WT@WP#Z0#22212222204310100000000 -T320230111111614336120150105WTTB09WZY22212222204301100000000120090504WTTY@@#ZT22212222204307100000000 -T12023011111161448525900406651120733111480300000000000010090990000000000000000000000000000000000222222000000002229022 -T2202301111116144852219880113WTTBWWPWW1222212222211012208120630013089900000000000000000000000000000000000000000000000000000000000000000000000000084100000000 -T320230111111614485120100221WT9TT@W9012222222204306100000000120070518WT@T@P90B12222212204308100000000 -T320230111111614485120140721WT@Y@####12222222204301100000000120110321WTTPP#PP012222122204303100000000 -T320230111111614485120200918WT@9WYZ@W12222212204398100000000120150324WTT#T09PW12222112204398100000000 -T12023011111161451722000410051120313110806118330000000002240120000000000000000000000000000000000222222000004302219012 -T2202301111116145171219890924WT@#P#YTY2222212222221012212110134721011810000000000000000000000000000000000000000000000000000000000000086000000000000000000000 -T320230111111614517120170723WT@0PT#BT22222112204398100000000120140904WTTZY9B@022222112204303100000000 -T12023011111161462324700405831120332110740300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111116146232219860904WTTB09Y0B2222212222211012207110491113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111614623420120712WTTYBZPTB22222112104303107350168120080712WTTZZBYTB22222122204307100000000 -T12023011111161463625200410591120433110971300000000000006540750000000000000000000000000000000000222222000000002229022 -T2202301111116146362219910112WTT9#@0BW2122222222211012208110045613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111614636120070101WT@@BT0#P12222112204308100000000 -T320230111111614636120220227WTT9P0Y0921222212204398100000100120160123WT@9ZZY@@22222112204398100000000 -T12023011111161463922000403482110323210459300000000000002740010000000000000000000000000000000000222222000000002229032 -T2202301111116146391219880108WT@9TPY9W2222212222222011214990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116146391219840113WT@9TPY9W2222211222222021214990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111614639120150324WT@9TPY9W22222112204398900000000 -T12023011111161470925900406651110633111034300000000653101440250000000000000000000000000000000000222222000000002229021 -T2202301111116147092219830214WT@YYBT9P1222222222222012212990213911079922000000000000000000000000000000000000000000000000000000000000162900000000000000000000 -T2202301111116147092219770904WT@YYBT9P1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111614709120060326WTT9Z@#YP12222222204310100000000120040718WT@WT@@0T12222222204311100000000 -T320230111111614709120220112WT@9ZP#Z012222212204398100000000120160421WT@BWT@T012222112204301100000000 -T12023011111161475424200408571120313110835300000000000006540340000000000000000000000000000000000222222000000002229072 -T2202301111116147541219910408WTT0BYP0#2222212222221012216110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111614754120130223WTT0TZY#T22222112204302100000000120100712WTT@@TZ#T22222112204306100000000 -T12023011111161475624700408301120212110576300000000000005280410000000000000000000000000000000000222222000000002229012 -T2202301111116147561219950212WT@ZZBTZT2222211222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000001346 -T320230111111614756120170909WT@P0#P0T22222122204398100000050 -T12023011111161479224700406701120333110598300000000000005280250000000000000000000000000000000000222222000000002229022 -T2202301111116147922219920923WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111614792120210902WTTPWZ9@B12222222204398100000000120080327WT@BB#BP012222222204306100000000 -T12023011111161479922000407791120233110376300000000000001190200000000000000000000000000000000000222222000002982219022 -T2202301111116147992219830707WT@YYBT9P1222222222221012209910006011079901000000000000000000000000000000000000000000000000000000000000081700000000000000000000 -T320230111111614799120170918WTTY@#@@B12222122204398100000000 -T12023011111161485020800411991120113110306300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111116148501220020705WT@Z@PB9P2221222222221013211190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111161504520800414651120212110598300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111116150451219760112WT@B@0WPP2222222222221012212120035723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615045120210523WT@9TPY9W22222222204398100000000 -T12023011111161505524700409381120213110611300000000059405280020000000000000000000000000000000000222222000000002229012 -T2202301111116150551219770107WT@P@@@BW2221222222221012212210035723011800000000000000000000000000070000000000000000000000000000000000000000000000000000000000 -T320230111111615055120200721WTTPB#TPY22212222204398100000000 -T12023011111161525020300400971120213110618300000000000205280020000000000000000000000000000000000222222000000002229012 -T2202301111116152501219970512WTT@ZZ99B2222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615250120160323WT@ZTTTBZ22222122204398100000000 -T12023011111161530020600402141120213110376300000000000003160060000000000000000000000000000000211122222000000012219012 -T2202301111116153001219910927WTT@Y9Z@02222211222221012212110134723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615300120110411WT@@B00B@22222112204304100000000 -T12023011111161542325900402631120433110835300000000062506540020000000000000000000000000000000000222222000000002229022 -T2202301111116154232219930926WTTYWWYWB1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615423120100723WTT0ZB#Z012222212204305100000000 -T320230111111615423120200712WTT0@@Y#912222122204398100000000120150112WT@@T#ZBT12222112204301100000000 -T12023011111161542525900403711120423110959300000000010006220990000000000000000000000000000000000222222000002662219072 -T2202301111116154251219780321WTTY9##@T2122222222222011210110630023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000039 -T2202301111116154251219720913WTTW#TY9T2222211222222021212190530723010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615425120160905WTT@WPTW@21222212204398100000000120100312WTTT9B9T022222122204303100000000 -T12023011111161550021000408061120212110611300000000000005280400000000000000000000000000000000000222222000000002229012 -T2202301111116155001219850124WTT00YPT92222212222225012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615500120180722WT@@PZZ0922222122204398100000000 -T12023011111161551920600414771120432110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116155192219900412WTTT9T#0Y2222212222211012212110960013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111615519120110913WTT0WZ#9Z12222122204305100000000 -T320230111111615519120180923WTTBZ0#@W12222122204398100000000120150504WTTPWBY9T12222112204301100000000 -T12023011111161555225200412081120333110258300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111116155523219690701WTTZ#B0YT2222212222222012212110006011069911000000000000000000000000000000000000000000000000000000000000373300000000000000000000 -T320230111111615552120160718WT@B@YW9@12212122207398100000000120130204WTT0W@#YZ22222122207303100000000 -T12023011111161555422000409871120213110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111116155541219830901WTTPB90Z@2221222222221012213110293123011700000000000000000000000000330003000000000000000000000000000000000000000000000000000000 -T320230111111615554120170413WTTPPBYZW22212212204398100000000 -T12023011111161560022000414461120213110376300000000000003160990000000000000000000000000000000211122222000000012219012 -T2202301111116156001219920312WTT#0TTY02221222222221012212110164423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615600120100313WT@PZP@Y922212222204305100000000 -T12023011111161563322000407241120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116156332219820308WTTPTYB#Y2222212122211012212111060013109900000000000000000000000000000000000000000000000000000000000000000000000716021800000000 -T320230111111615633120100707WT@TWYTWB21222122204303100000000 -T12023011111161563420800405391120333110727300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111116156343219900527WTT###ZBY2222222222225012212110283213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615634120170721WT@9TTTP022212222208398100000000120160214WTT@B#BY@22212222208301100000000 -T12023011111161580821000405411120213110611300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111116158081219880307WT@P#W9@Z2222212222222012211120471323010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615808120200918WT@0#0W9Y22222122204398100000000 -T12023011111161581820600414771120323111506300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116158181219660423WTTB#BY#@2222221222222011213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116158181219730201WT@@##YB#2222222222222021298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615818120050704WTTY9B09Y22222212204311200000000 -T12023011111161582823900408801120232110516300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111116158282219860512WT@Y@Y9@Z2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111615828120170222WTTTYTT9T22222112204398100000050 -T12023011111161582924200403461120523111175300000000000007540080000000000000000000000000000000000222222000001342219012 -T2202301111116158291219840927WTTT9Y9PT2222212222221011209110283221011806000000000000000000000000000000000000000000000000000000000000026700000000000000000000 -T2202301111116158291219790313WT@WTZ#T91222211222221021211190194123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111615829120050421WT@Z9YZ#P22222112204311100000000 -T320230111111615829120120714WTTZPTZ0W22222122204304100000000120100207WTTB@WTPP22222112204306100000000 -T12023011111161584322700408491120333120000300000000000005280740000000000000000000000000000000000222222000000002229022 -T2202301111116158433219590712WTT90##TZ2222212122224012213110006011069912000000000000000000000000000000000000000000000000000000000000069800001403000000000399 -T320230111111615843120100913WT@PBBYW022222112206306100000050120080114WTTZY9TZ#22222112206307100000050 -T12023011111161591121100402261120312110740300000000000000010450000000000000000000000000000000000222222000000002229012 -T2202301111116159111219990714WTT#BZ@#Y2222212222221012212110352511011700200000000000000000000000000000000000000000000000000000040000130000000000000000000000 -T320230111111615911120200401WTT99YBZ#22222112204398100000000120190524WT@WY@P@Y22222112204312100000000 -T12023011111161620322000413731120412110893300000000000000340230000000000000000000000000000000128222122000007262219072 -T2202301111116162031219770405WT@Y0Y@9W2221222222221012212120620021011722000000000000000000000000000000000000000000000000000000000000144900000000000000000000 -T320230111111616203120080514WT@W@90W@22212212204306100000603 -T320230111111616203120170722WT@ZZBTBB22212212204398100000000120130123WT@W9@TW@22212222204304100000000 -T12023011111161621922000414461110213110576300000000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111116162191219680523WT@9TPY9W2222222222222012212910025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111616219120090927WT@9TPY9W22222122204307200000000 -T12023011111161622225900406841120433110939300000000000001520990000000000000000000000000000000000222222000005022219022 -T2202301111116162223219580104WTTYBBZBW2122222122214012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000434050000000006 -T320230111111616222120090323WT@YBZT@921222222207302100000299 -T320230111111616222120120923WT@YTBBPW21222212206398100000000120120101WTT@0WB#Z11222212207398100000299 -T12023011111161622422000411981120233120000127620000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111116162243219730121WTTTYWYBW2222212222225012213110035713069900000000000000000000000000000000000000000000000000000000000000344000000000000000000000 -T320230111111616224120140212WTTTTWTTP22222112206398100000050 -T12023011111161623324200404701120213110611300000000010001540200000000000000000000000000000000000222222000003742219012 -T2202301111116162331219940114WT@BT#WBT2222212222225012216120213921011809000000000000000000000000000000000000000000000000000000000000074800000000000000000000 -T320230111111616233120170427WTT999PWW22222112204398100000000 -T12023011111161636623700414331110113110376300000000000003630130000000000000000000000000000000000222222000002912219012 -T2202301111116163661219970402WT@#ZY#W91222212222221013211110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111161637722000409411110423110893300000000000002950010000000000000000000000000000000000222222000000002229012 -T2202301111116163771219740423WT@@@BZ#B1221221222222011213290293123011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T2202301111116163771219790423WT@PWB9@92221222222222021209190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111616377120210218WT@#P#@TP22212222204398100000000420140407WTT9@W99T22212222104303109140000 -T12023011111161641422000405181120312110835300000000020006540050000000000000000000000000000000000222222000000002229012 -T2202301111116164141220000705WT@WZ#TZB2221222222221012211210065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111616414120220701WTT9@BZ@B22212222204398100000000120210722WTTPPZYZW22212212204398100000000 -T12023011111161652120600414771120113110376300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111116165211219820918WT@PPZ@9B2222212222221013216210154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111161656124200403511120313110835300000000052506540300000000000000000000000000000000000222222000000002229012 -T2202301111116165611219960214WT@TB#@WY2222212222221012216110312923011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111616561120190226WT@#T0Y#T22222112204398100000000120170724WT@BYBZP922222112204398100000000 -T12023011111161656823500411471120213120000300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111116165681219990101WT@Y0@T#@2222122222221012210910303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111616568120200918WTTYPPY#P22221212204398100000000 -T12023011111161657025900402631110423111034300000000000001980650000000000000000000000000000000000222222000002612219072 -T2202301111116165701219840918WT@@9TY@@2222212222225011216110620023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116165701219830904WTTTZ#PBB2222211222221011212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111616570120200904WTT0#ZB0Y22222112204398100000000120180308WT@WBT0WY22222122204398100000000 -T12023011111161659923500412161120333110740300000000001604780760000000000000000000000000000000000222222000000502219022 -T2202301111116165993219620405WT@B990BT2222212112224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001087000000000830 -T320230111111616599120080909WT@BBYT0021222212206307100000050120070426WTTZTYZB021222212206308100000050 -T12023011111161661522000414462110213210516300000000000002950010000000000000000000000000000000000222222000000002229032 -T2202301111116166151219940427WTTY@W9@#1222222222221013214290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116166155219950113WTT#TWYZ#1222221222221103206290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111161663322000402321120212110611300000000015005280680000000000000000000000000000000000222222000000002229072 -T2202301111116166331219770122WTTBTZTBP2222212222221012212110690023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111616633120060927WTTPZ@#W@22222122204307100000000 -T12023011111161664622000407411120532111125300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111116166462219810718WT@P9#T9T2221222222211012212110900013089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111616646120090312WTTBZP#Z022212222204305100000000120040712WTTTYZ00022212222204312100000100 -T320230111111616646120120701WT@#YP#ZW22212212207303100000000120100411WTTT@P99922212222207306100000000 -T12023011111161668822000400811120333110740300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111116166883219670926WTTZ@0YY#2222212122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001167000000000000 -T320230111111616688120140326WT@#W09@922222122206301100000000120120113WT@@0TTYW22222122206304100000000 -T12023011111161670822000407241120213110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111116167081219990926WT@@YTB002221222222221012212120174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111616708120210412WT@Z#Z0##22212212204398100000000 -T12023011111161672424200414721120232120000300000000000004170960000000000000000000000000000000000222222000000002229022 -T2202301111116167245219860114WT@#B#9#Y2222212222222012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111616724120110313WTT#9#T@922222112209303100000000 -T12023011111161679820600412681120233110516300000000000004170950000000000000000000000000000000000222222000000002229022 -T2202301111116167983219510308WT@B0@YY02222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000734000000000000 -T320230111111616798120120912WTT0TTT##22222112206304100000050 -T12023011111161691021700407751120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116169102219870507WTTTBB#902222212222213012216110610013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111616910420110318WTTW#Y9PB22222112104302109140000120080412WTTW#YPP#22222122204308100000025 -T12023011111161692220300408521120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116169223219470112WT@YTZB0@2222212122215012212110105013069900000000000000000000000000000000000000000000000000000000000000000000000577035700000050 -T320230111111616922120080121WT@#0W90922222112206307100000000 -T12023011111161694821000411361120233120000101770000000004170750000000000000000000000000000000000222222000000002229022 -T2202301111116169483219900907WT@ZPP#9#2222212222221012216120035711069916000000000000000000000000000000000000000000000000000000000000107100000000000000001255 -T320230111111616948120140723WTTP0@Y@022222122207303100000000 -T12023011111161698721600412781120313110740300000000010506540090000000000000000000000000000000000222222000000002229012 -T2202301111116169871219910423WT@0ZP0T92222212222222012216110085221011727000000000000000000000000000000000000000000000000000000000000185900000000000000000000 -T320230111111616987120190318WTT@9PP@P22222122204398100000150120170523WT@B#90#W22222112204398100000150 -T12023011111161699325600411701120213110576300000000005005280150000000000000000000000000000000000222222000000002229012 -T2202301111116169931219700112WTTP@Y@Y92222212222225012213110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111616993120070501WTTYWZT@P22222122204308100000050 -T12023011111161715525900402721110822111691300000000000002490230000000000000000000000000000000000222222000000002229012 -T2202301111116171551219890408WTTY#P#T91222222222225011211110491123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116171551219870724WTT0#TPPT1222221222221011209190263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111617155120090122WT@B99@T@12222212204307100000000120070112WTTW9Y@9W12222212204309100000000 -T320230111111617155120130918WTT@#9Y0@12222212204304100000000120100712WTT9B0B0T12222212204306100000000 -T320230111111617155120190526WTT9T@Z@012222222204398100000000120150907WTT#YP@BT12222122204302100000000 -T12023011111161719520500412181120213110598300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111116171951220000721WTTZ0@@@T2222212222223012213110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111617195120210918WT@PBB9PP22222112204398100000000 -T12023011111161723420600400801120333120000132330000000005280250000000000000000000000000000000000222222000000002229022 -T2202301111116172343219760922WT@BBZT#Z2222212222225012212120362411069937000000000000000000000000000000000000000000000000000000000000401300000000000000000000 -T320230111111617234120190108WTT@WPPZZ22222122206398100000000120170324WTTTPZ0Z922222112206398100000000 -T12023011111161726922700408351120232110516300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111116172692219770204WT@ZBBT#92222222222215012212111490013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000001 -T320230111111617269120050923WTT9WB@#T12222112204311100000000 -T12023011111161750524200414721120313110704300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111116175051219830907WTTZ@9YBY1222222222221012213110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111617505120220724WT@@YB0YZ12222222204398100000000120150901WT@W90@PZ12222222204302100000000 -T12023011111161752825900406081120212110611300000000000003970080000000000035006000000000000000000222222000001312219042 -T2202301111116175281219730405WT@PBTZZ@2122221222221012212110045623011400000000000000000000000000000000000000000000000000000000020000000000000000000000000179 -T320230111111617528120040118WTTT90P9W21222212204312100000208 -T12023011111161754125600414951120212110598300000000000005280060000000000000000000000000000000000222222000000002229072 -T2202301111116175411219770126WT@ZYP9PP2222212222221012212110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111617541120050327WT@9Z@#ZY22222112204310100000000 -T12023011111161762325900402721120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116176233219680727WTTZBY#WY1222222122222012205220055513069900000000000000000000000000000000000000000000000000000000000000000000001033000000000000 -T320230111111617623120180423WT@BP0TZT12222222207398100000000 -T12023011111161768322000400921120412110939300000000000207710920000000000000000000000000000000000222222000000002229072 -T2202301111116176831219830312WT@PZT@0Z2221222222221012212211080023010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111617683120090214WTTP00W0912212212204305100000000 -T320230111111617683120150727WT@TB@#9Z12212222204398100000000120140724WTT##T0Z#12212212204398100000000 -T12023011111161777120600404121120312110835300000000020006540330000000000000000000000000000000000222222000000002229012 -T2202301111116177711219890224WTTBY#@0P2222212222221012210110411923011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111617771120130709WT@TZ#BBZ22222122204304100000000120120907WTT#TTBBZ22222122204305100000000 -T12023011111161783422000409871120213110376300000000000002370300000000000000000000000000000000290222122000000012219072 -T2202301111116178341219820913WTT0#Y@YW2221222222221012212121010023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111617834120060927WT@BT#@9#22212122204310100000000 -T12023011111161785422000402322120523211199300000000335008880090000000000000000000000000000000000222222000000002229032 -T2202301111116178541219800212WTTZBWYWB2222212222222011212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116178541219770523WT@9@@T002222211222222021212290105023011900000000000000000000000000340004000000000000000000000000120000000000000000000000000000 -T320230111111617854120040102WT@9PY9ZT22222112204311200000000 -T320230111111617854120110323WT@YY0Z@B22222122204304200000000120080227WTTYTZY0#22222112204306200000000 -T12023011111161789122000408891120213110611300000000000805280430000000000000000000000000000000000222222000000002229012 -T2202301111116178911219760313WT@TBBZ#T2222222222221012212110421823011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111617891120060309WTTZP@Y9B22212222204310100000000 -T12023011111161806723500409141120212110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111116180671219680421WTTB#WYB@2222212222223012212110105023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618067120060912WTTW0Z@YP22222112204309100000000 -T12023011111161807124700401011120313110835300000000000003920200000000000000000000000000000000261122222000000012219012 -T2202301111116180711219910701WTT9Y#W0@2222212222221012212110273323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618071120190702WTT@0#YPZ22222112204398100000000120160512WTTWZ0Z0P22222112204398100000000 -T12023011111161808522000407831120233110536300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111116180852219560227WTT0#99PT2222211222215012214110134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111618085120090423WTTZYTYB#22222112204308100000000 -T12023011111161818825900402831120613111339300000000000004620940000000000000000000000000000000308122222000000012219072 -T2202301111116181881219890113WTTY0Y@B@2222212222221012216110950023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116181882219940923WTTZB09P02222211122211102209190006013109900000000000000000000000000000000000000000000000000000000000000000000000845008900000000 -T320230111111618188120190705WT@T99WBW22222112204398100000000120170112WTTW9W0YZ22222122204398100000000 -T320230111111618188420150322WTTZP0#9Y22222112104301109140000120140501WT@@P@@9P22222112204302100000000 -T12023011111161822324200403511120213110611300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111116182231219840201WT@YY0YBY2221222222221012211110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618223120120512WT@0BPBBT22212222204302100000000 -T12023011111161836724500405781120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116183672219800102WT@WT0#WB2222212222211012212110770013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111618367120050502WT@BY###022212122204312100000000 -T12023011111161842420600400871120212110598106900000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111116184241219900924WTT90Y@BY2222212222225012216110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618424120220709WTT#0@@T#22222122204398100000000 -T12023011111161848223500404821110213110338300000000000001270360000000000000000000000000000000111122222000002902219012 -T2202301111116184821219900318WT@@9P#0#2222212222223012212110372323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618482120160922WT@P99@P@22222112204301100000000 -T12023011111161848925200410141120313110740300000000000003320680000000000000000000000000000000221122222000001012219072 -T2202301111116184891219860912WTT0@@Z9Z2222212222221012212110690021011213000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111618489120200123WT@@YPZZ922222122209398100000000120090913WTTZW@TWY22222112204307100000000 -T12023011111161855924200403511120213110598300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111116185591219960523WTTZPZYZY2222212222221012212110312923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618559120220418WTT0WZ09#22222122204398100000000 -T12023011111161860424200414351120433110894300000000000006540720000000000000000000000000000000000222222000000002229022 -T2202301111116186043219790211WTTYY#9Z@2222212222225012216111000013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618604120120523WTT#BYYPZ12222222206303100000000 -T320230111111618604120160427WT@#Z@9#T12222212206398100000000120160427WT@0@9#T#12222212206398100000000 -T12023011111161880122000402371120212110611300000000023005280230000000000000000000000000000000000222222000000002229012 -T2202301111116188011219840412WT@BY#ZZ01222222222225012212210392123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111618801120090912WTTW99PT#12222222204306200000000 -T12023011111161884320600401641120313110670300000000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111116188431219860924WT@PB0#ZP2222212222225012214110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618843120180904WT@9@W#T#22222112204398100000464120070227WTT@Y@#9922222122209309100000000 -T12023011111161885222000409871120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111116188521219990427WT@#YZ0TB2221222222221012212110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618852120220405WTTY0B0#022212222204398100000000 -T12023011111161891522000412691120412110939300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111116189151219920107WT@#WW9W92221222222221012216111150023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111618915120140502WT@@90B0T22212212204302100000000 -T320230111111618915120220107WT@9YZWYW21222212204398100000000120170918WT@WBZW@#22212212204398100000100 -T12023011111161894723700414331120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116189472219800424WTTPPY#ZT1222222222211012211110570313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111618947120070911WTT@Z9W@P22222212204308100000000 -T320230111111618947120130407WTT0PZWBW22222222204302100000000120080302WT@TBP9W912222222204306100000000 -T12023011111161897124700409321120233110611108380000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111116189712219960726WTT@Z0PP#2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000213200000000074300000000 -T320230111111618971120220911WT@YYB0P022222122204398100000000 -T12023011111161901624200408391120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111116190163219750412WT@0@#0Z#2222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619016120200301WTT90T9BW22222112206398100000000 -T12023011111161903024500405781120213110611300000000000003160280000000000000000000000000000000211122222000000012219012 -T2202301111116190301219770204WTTB@#B@@2222212222223012212110501023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619030120130112WTTT0BT#922222112204398100000000 -T12023011111161913024200414851120313110835300000000000006540090000000000000000000000000000000000222222000000002229042 -T2202301111116191301219960127WTTY909#92222212222221012212120065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619130120210912WT@P@#0ZY22212122204398100000000120180113WT@T#T#9022212112204398100000000 -T12023011111161919024900404261120213110611300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111116191901219880911WT@#@T09B2222212222221012211110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619190120210427WT@YB9Z@@22222112204398100000000 -T12023011111161924622000411981120232110539300000000000004170950000000000000000000000000000000000222222000000002229022 -T2202301111116192463219690105WT@Y#9TYB2222212222215012209120670013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111619246120070323WTT9BWZWT22222122206307100000000 -T12023011111161925323700408071120233110611300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111116192533219660226WTTYYBZPP2222212222225012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619253120080323WT@@#9@BZ21222222206307100000000 -T12023011111161925922700403021120313110590300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111116192591220010904WTTZ9ZTZ02222212222221012209110154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619259120220214WTTWZY0TW22222122204398100000000120170712WTTYBY0@B22222122204398100000000 -T12023011111161926022000403891120332110740119960000000005280320000000000000000000000000000000000222222000000002229022 -T2202301111116192602219910426WTT#Y#B0#2221222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111619260120190512WT@YZ0#T#12222212204398100000000120140921WTT9@W9YZ22212222204303100000000 -T12023011111161954921000408061120312110611300000000000005360310000000000000000000000000000000000222222000000002229012 -T2202301111116195491220010908WTT0B#WWZ2222212222221012212110322823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619549120230405WT@9TPY9W22222112204398100000000120200321WT@@9ZBPZ12222122204398100000000 -T12023011111161962924200414851120312110766300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111116196291219830702WTTWZ99YZ2221212222221012216111060023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619629120090718WTT@9#TYT22212212204308100000000120080918WT@TBZ9T@22212212204309100000000 -T12023011111161972025800405801120213120000300000000000005280630000000000000000000000000000000000222222000000002229012 -T2202301111116197201219800713WT@9TY@P92222212222221012216110600021011744000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619720120200407WT@YTT@ZZ12222122204398100000000 -T12023011111161986620600400871120212110611101610000100005010180000000000000000000000000000000000222222002600012219012 -T2202301111116198661219990418WTTTY#W092222212222221012213110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111619866120210323WT@PT0Y0Y22212212204398100000000 -T12023011111161991525900403711120313110811300000000000005540070000000000000000000000000000000000222222000001002219012 -T2202301111116199151219890101WT@WY9TTW1222212222221012207110600021011803000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111619915120100727WTT#B#9#@12222122204306100000000120090418WTTP0WP9@12222122204308100000000 -T12023011111162001523500410671110213110516300000000000002380090000000000000000000000000000000000222222000002902219012 -T2202301111116200151219700327WT@W#W9BP2222212222225012212210105023011400000000000000000000000000000000000000000000000000000000270000000000000000000000000000 -T320230111111620015120070427WT@PYT09Y22222122204309200000000 -T12023011111162015024200403511110213110598112270000020005280010000000000000000000000000000000000222222000000002229012 -T2202301111116201501219900704WT@T@ZW902222212222225012216110015923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620150120180912WT@PZWPBZ22222122204398100000000 -T12023011111162032824700405901120233110536300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111116203283219480302WTTPZ9T9W1222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001037000000000000 -T320230111111620328120100109WT@T0YP#B12222122206305100000000 -T12023011111162042121400408021120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116204213219680707WTTBP0Y9P1122212122215012211111630013069900000000000000000000000000000000000000000000000000000000000000000000000523041100000000 -T320230111111620421120150727WT@9T0@P#12222112206398100000000 -T12023011111162043625000401171120213110560114720000000003120090000000000000000000000000000000000222222000002162219012 -T2202301111116204361219970721WTT@T#B#@2221222222221012208110095121011805000000000000000000000000000000000000000000000000000000000000043100000000000000000000 -T320230111111620436120180913WT@YWBBY922222112204398100000000 -T12023011111162051524700408702120323210598300000000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111116205151219850727WT@9TPY9W1222221222222011205210055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116205151219950909WT@9TPY9W1222222222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620515120160723WT@9TPY9W12222212204398200000000 -T12023011111162052024200405921120233120000300000000000004170900000000000000000000000000000000000222222000000002229022 -T2202301111116205203219660304WTT#Z@YPY2221222222225012216121280013069900000000000000000000000000000000000000000000000000000000000000242400000000000000000496 -T320230111111620520120110701WT@WW0BZ022212212206305100000000 -T12023011111162052423900408801120533111116300000000011007710990000000000000000000000000000000000222222000000002229022 -T2202301111116205242219850526WT@PTTP#02222211122215012216120362413109900000000000000000000000000000000000000000000000000000000000000000000000721021300000000 -T320230111111620524120080122WT@PW#0WT22222112204306100000062120050312WT@TYY9B922222122204309100000062 -T320230111111620524120200427WTT@T@#Y@22222112204398100000000120170412WTTZZ0Y9Z22222112204398100000000 -T12023011111162057220600401641110213110551300000000000001360070000000000000000000000000000000000222222000000002229012 -T2202301111116205721219990427WT@ZP9#BZ2222212222223012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620572120190512WT@TZB@##22222112204398100000000 -T12023011111162060225000414191120213110611300000000000004930750000000000000000000000000000000000222222000000352219012 -T2202301111116206021219930307WTTBPP0WP1222222222221012213220342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620602120160122WT@#Y9@0T12222122204398100000000 -T12023011111162062425600413441120413111034300000000010007710260000000000000000000000000000000000222222000000002229012 -T2202301111116206241219930404WTTW0@9ZP1222222222221012298210273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620624120130226WT@WTY@B@12222222204303200000000 -T320230111111620624120210926WT@#B@B#912222222204398100000000120200208WTTPTP#PW12222222204398100000000 -T12023011111162073723800413801120533111116300000000000007710970000000000000000000000000000000000222222000000002229022 -T2202301111116207372219790921WT@#0TWTB2222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111620737120110221WT@PWBB#B22222122204305100000000120090422WT@YWYZ@B22222112204307100000000 -T320230111111620737120190523WTTWZ0TWP12222122204398100000100120140227WTT@ZZ9Z012222122204302100000000 -T12023011111162082024700405901120233120000300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111116208203219780205WTTW99W#92222212222222012212110055511069930000000000000000000000000000000000000000000000000000000000000960000000000000000000000 -T320230111111620820120160713WTTP9#TPB22212212206398100000000 -T12023011111162085724200414721120212110611111620000001505280050000000000000000000000000000000000222222000000002229012 -T2202301111116208571219980913WTTY9TBB02222222222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620857120170308WTTTZW#T@22222212204398100000000 -T12023011111162086020600401641120213110611300000000090405280790000000000000000000000000000000000222222000000002229072 -T2202301111116208601219920712WTTT#B0ZT2222212222221012211110800023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620860120120327WTTT@TP#Y22222222204302100000000 -T12023011111162091622000408451120932111480300000000008006540340000000000000000000000000000000000222222000000002229022 -T2202301111116209162219790923WT@YYBT9P1222212222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116209162219700421WT@YYBT9P1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620916420050904WT@0B#WYY12222112104304109140000 -T320230111111620916120090412WTTP9PPTZ12222112204305100000000120060722WTTT0#P@912222112204308100000000 -T320230111111620916120210727WTT#TB@YB12222122204398100000000420190512WT@PB@BW@12222112104398109140000 -T320230111111620916420170121WT@#0P@Y912222112104398109140000420140112WT@YW@WTY22222112104301109140000 -T12023011111162096824200403941120213110598300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111116209681219900107WTT#BYPP#2222122222221012208110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111620968120200512WTTT0YY#@22221222204398100000000 -T12023011111162100022000410051120413110939300000000000004620050000000000000000000000000000000308122222000000012219012 -T2202301111116210001219960727WTT0ZWPZT2222212222221012212110065423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621000120160201WT@W@ZY0922222112204301100001684 -T320230111111621000120220913WT@#ZW0@W22222122204398100001684120200111WTTZBPTBZ22222112204398100001684 -T12023011111162107722000413731120413111034300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111116210771219890922WTT@0YWT#2221222222221012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621077120070927WT@#T0Y@P22212222204309100000000 -T320230111111621077120130904WTT@YTZW@22212212204303100000000420130904WTT0P00YY22212222104303108990000 -T12023011111162114424100402401120332110740300000000000005280600000000000000000000000000000000000222222000000002229022 -T2202301111116211442219920112WTT09TYT#2222212122211012211110006013109900000000000000000000000000000000000000000000000000000000000000000000000558037600000000 -T320230111111621144120210202WTTZ@YP@P22222122204398100000100120170401WTTWZTP#@22222112204398100000000 -T12023011111162114924700409381120823111691300000000000012890100000000000000000000000000000000000222222000000002229012 -T2202301111116211491219810704WT@WBBZ9W2222211222222011216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116211491219850423WT@P09WT02222212222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621149120080707WT@ZWPTPZ22222122204308200000000120060922WT@T#Y#Y@22222112204310200000000 -T320230111111621149120110312WTTT@ZB#Y22222222204301200000000120100107WT@PZPT#@22222212204306200000000 -T320230111111621149120170713WTTB9B#BP22222112204398200000000120130207WT@ZT9B9Z22222212204303200000000 -T12023011111162128622000411551120213110516300000000001000010190000000000000000000000000000000000222222000000002229012 -T2202301111116212861219680418WTT0@0YT02212222222225012214110471311011900410000000000000000000000000000000000000000000000000000000000299300000000000000000000 -T320230111111621286120100301WT@WZ99PZ22122222204305100000000 -T12023011111162133221000408061120413110939117460000000003920050000000000070002000000000000000000222222000003792219012 -T2202301111116213321219880501WTT9@9@PT2122221222223012216110065421011711000000000000160000000000000000000000000000000000000000070000075600000000000000000000 -T320230111111621332120110427WT@BBZ00P21222212204306100000000 -T320230111111621332120210407WTTY0@Z#021222222204398100000000120130708WTT#0@0T921222212204303100000000 -T12023011111162133824200414721120413111032300000000000007710210000000000000000000000000000000000222122000000002229072 -T2202301111116213381219870104WT@YPZBZP2221222222221012212110800023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621338120070721WT@P9YTP022212222204308100000050 -T320230111111621338120130114WTTW9Z0BW22212212204302100000000120090308WTT@0W9BT22212212204306100000000 -T12023011111162144521700409521120513111199300000000009008880020000000000000000000000000000000000222222000000002229012 -T2202301111116214451219780104WT@TTY##@2222212222225012212110035723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621445120080309WT@B0#TBT22222122204308100000000120060712WTTPPTBZ@22222122204311100000000 -T320230111111621445120130704WTTZ9W@YZ22222122204303100000000120110427WT@Y#W#TW22222112204306100000000 -T12023011111162146224700409381120312110740300000000599904300460000000000000000000000000000000000222222000000982219072 -T2202301111116214621219760214WTTT9WPBW2222212222225012214120970023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000097 -T320230111111621462120140326WTT0@@TP912222122204301100000000420130312WT@ZTY9YY22222122104302109140000 -T12023011111162150225000414191120213110548300000000000005280540000000000000000000000000000000000222222000000002229072 -T2202301111116215021219810214WT@BBZZ0P1222211222221012209110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621502120050702WTT#@T@TY12222122204311100000000 -T12023011111162156121200414781120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111116215611220020127WTTTW0@BP2222212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111162159725900402831120333110611300000000000004760130000000000000000000000000000000000222222000000522219022 -T2202301111116215972219800408WT@YYBT9P2212222222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621597120140911WT@0YBP#Y22222112204301100000000120070313WT@BTYB@022122122204309100000000 -T12023011111162161120600414771120212110611300000000035005280360000000000000000000000000000000000222222000000002229012 -T2202301111116216111219850101WTTB9W0W02222212222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621611120200708WT@#@T0TY22222112204398100000000 -T12023011111162164622900410121120213110611300000000001002400180000000000000000000000000000000000222222000002882219012 -T2202301111116216461219990727WT@TZTBB02222212222225012212110194121011810000000000000000000000000000000000000000000000000000000000000057400000000000000000000 -T320230111111621646120210421WT@BT#YB022222112204398100000000 -T12023011111162168622000407231120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111116216861219960926WT@Y#9YTT1122222222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000075 -T12023011111162172025900402831120533111030300000000000005880730000000000000000000000000000000000222222000001832219022 -T2202301111116217202219850323WT@YYBT9P1222222222221012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000300 -T320230111111621720120080426WTTY0ZYYW12222212204309100000000120060118WTTZT909W12222212204311100000000 -T320230111111621720120150423WTTPWP0W912222122204302100000411120140511WTT0B@0B@12222222204303100000411 -T12023011111162178422000402321120113110376300000000000000170040000000000000000000000000000000000222222000004002219012 -T2202301111116217841220010308WTT#ZT@9P1222222222221013213190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000400 -T12023011111162179522000408891120723111480300000000000011650050000000000000000000000000000000000222222000000002229012 -T2202301111116217951219860709WT@9@T0092222211222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116217951219900313WTTYWYWYP2222212222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621795120090302WT@PPYY#B22222122204306200000000 -T320230111111621795120150918WTT0W#YB022222122204301200000000120120313WT@ZY@TZB22222112204303200000000 -T320230111111621795120200201WTT0ZT0@Y22222122204398200000000120180405WT@0@@PPY22222122204398200000000 -T12023011111162181522000410051120233120000300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111116218155219640227WT@#T00ZB2221222222225012213110790013069900000000000000000000000000000000000000000000000000000000000000516000000000000000000000 -T320230111111621815120170723WT@0ZPZ#P22212222209398100000000 -T12023011111162183322000412971120232120000300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116218332219830911WTTY0#TZ02222212122211012212110630013109900000000000000000000000000000000000000000000000000000000000000000000000696023800000000 -T320230111111621833120090418WT@TTY9Z@22212112204306100000000 -T12023011111162185524700405901120233120000300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111116218553219580912WTT#0PBY92222212222225012212110006011069942000000000000000000000000000000000000000000000000000000000000424200000000000000000300 -T320230111111621855120090921WTT#TBPWW22222122209307100000000 -T12023011111162186425900402121120233110446300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111116218643219870207WTTPPYWBZ2122222222221012212110105011069940000000000000000000000000000000000000000000000000000000000000411500000000000000000179 -T320230111111621864120110107WTTWTZW9011222222207304100000000 -T12023011111162186524700408981120433120000300000000000005280770000000000000000000000000000000000222222000000002229022 -T2202301111116218653219750907WT@TYBPT02122222222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621865120130409WT@WP9Z@Z21222222209303100000000 -T320230111111621865420150326WTTZB@#PT21222212208398100000562120130708WTTT@#P9021222212209302100000000 -T12023011111162192922700408491120333120000300000000210005280050000000000000000000000000000000000222222000000002229022 -T2202301111116219293219620307WTTW@WBT@2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621929120110504WTT@9ZBZ922222122206306100000000120090721WTTWPWW@922222122206307100000000 -T12023011111162193722700408351120313110826300000000096006540050000000000000000000000000000000000222222000000002229012 -T2202301111116219371220000123WTTTP0Y@92222212222221012213110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621937120220913WTT0BZPW@22222122204398100000000120220913WTT@#B0ZZ22222122204398100000000 -T12023011111162195720600400871120322110794300000000000106540350000000000000000000000000000000000222222000000002229012 -T2202301111116219571219960523WTTZ9T90Y2222212222222011212110223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116219571219960513WTTBYZZP92222211222222021211190243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621957120200724WTT0YP#ZY22222122204398100000000 -T12023011111162199922000413681120312110740300000000000003160570000000000000000000000000000000211122222000000012219072 -T2202301111116219991219610127WT@TPZB9B2221221222225012212120780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111621999420140407WT@W9B9T#21222212104398109140000120100909WT@BP90YB22222222204305100000000 -T12023011111162212923800413801120313110835300000000000706540160000000000070008000000000000000000222222000000002229012 -T2202301111116221291219750926WTTPBYB9B2222211222225012216110174321011925000000000000050000000000000000000000000000000000000000190000000000000000000000000000 -T320230111111622129120160326WT@T0TB9022222112204398100000000120150922WTT#ZT@0922222112204302100000000 -T12023011111162215222000414461120213120000300000000000003160310000000000000000000000000000000211122222000000012219072 -T2202301111116221521219880201WT@#WY@#02221222222221012211110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111622152120110104WTTZ09W0P22212222204303100000000 -T12023011111162215324700409321120212110611114070000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111116221531219920404WT@YB9Z#T2222212222221012209120303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111622153120190507WT@Z9T0T022222112204398100000000 -T12023011111162216622000406271110113110376300000000000000130010000000000000000000000000000000000222222000000002229012 -T2202301111116221661219740702WT@Y9#YT02122222222221013212190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111162218924200403511120233110470300000000000004170790000000000000000000000000000000000222222000000002229022 -T2202301111116221893219870304WTTTYZBT@1222212222221012216110006011069933000000000000000000000000000000000000000000000000000000000000267900000000000000000000 -T320230111111622189120110324WT@BT#W0B21222212209304100000000 -T12023011111162232924200414351110213110376300000000001005280240000000000000000000000000000000000222222000000002229012 -T2202301111116223291219940714WT@09Z@0T2221222222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111622329120130308WTT@9#BWY22212222204303100000000 -T12023011111162236224200405921120213110611300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111116223621219860712WT@W9#TPT2222212222221012212110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111622362120080321WT@Y@00BY22222122204307100000000 -T12023011111162242422000406191120233120000300000000000004170960000000000000000000000000000000000222222000000002229022 -T2202301111116224243219480205WT@9TTYTB2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002034000000002700 -T320230111111622424120170426WTTYYYPPP22212222206398100000000 -T12023011111162249022100409491120232110543300000000000004170970000000000000000000000000000000000222222000000002229022 -T2202301111116224903219640101WTTPTWBYY2222212222215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111622490120090909WT@Y0B9T022222122207306100000000 -T12023011111162257924200408571120433120000300000000000006540280000000000000000000000000000000000222222000000002229022 -T2202301111116225793219630424WT@ZYZTW92222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000350000000000000000000000 -T320230111111622579120150108WT@B99BP#12222112206398100000000 -T320230111111622579120200301WTTW0##WB11222222206398100000000120170204WTTZPTT0Y12222112206398100000000 -T12023011111162276325900406081120233110258300000000013004170350000000000000000000000000000000000222222000000002229022 -T2202301111116227632219880227WT@YYBT9P1222222222223012202920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111622763120190118WT@Y#0Y9W12222122204398100000000 -T12023011111162282021700410451120232110516300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111116228202219760104WTTY#PW@Y2222212222214012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111622820120150912WTTB@9YZ022222112204398100000000 -T12023011111162286022000406191120333110835109270000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111116228602219710723WT@B@@0WP2221221122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000712022200000000 -T320230111111622860120140326WTTPPP@9B22222122204398100000000120130709WTTWB0TB#22212212204301100000000 -T12023011111162292420800410781120233110557300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111116229245219810312WTT#09PWW2212222222223012213110243613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111622924120170401WTT9@ZZB922222122209398100000000 -T12023011111162293120600402141120533111116300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111116229312219880411WTT09B9P#1222222222211012212110372313089900000000000000000000000000000000000000000000000000000000000000000000000000086900000000 -T320230111111622931120100126WTTT0#TY@12212222204305100000050120080308WT@ZZ@#@B12212222204306100000050 -T320230111111622931120170126WTT00P@@P22212222204398100000000120140118WTT9Z90@W12212222204301100000000 -T12023011111162293625000403231120233110516300000000000004170780000000000000000000000000000000000222222000000002229022 -T2202301111116229363219580126WT@0Y#@WY2222212122215012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000771016300000000 -T320230111111622936120130324WT@WYY@@T22222122206303100000000 -T12023011111162294322000412231120212110598300000000010005280870000000000000000000000000000000000222222000000002229072 -T2202301111116229431219950712WTT09P@9B2222212222221012216110880023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111622943120160502WT@PZYT0W22222122204398100000000 -T12023011111162299924900403221120233110376300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111116229992220040504WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111622999120210313WTT@@BZ@Z12222112204398100000000 -T12023011111162305225100402212120623211395300000000003010090560000000000000000000000000000000000222222000000002229032 -T2202301111116230521219900318WT@W#PWWW2222211222222011212190501023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116230521219910313WT@WY99992222212222222021211190501023011900000000000000000000000000360000000000000000000000000000000000000000000000000000000000 -T320230111111623052120140224WTTBZBW0022222112204302100000000120090123WTTWPPYWB22222112204306100000000 -T320230111111623052120220327WT@9TPY9W22222112204398100000000120160907WTT9P9Z0Y22222122204398100000000 -T12023011111162316325600414551120213110598300000000005505280350000000000000000000000000000000000222222000000002229012 -T2202301111116231631219770212WT@0YW9WY2222212222225012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623163120130409WTTZYB#PB22222112204304100000000 -T12023011111162316522000408621120612111339300000000224410090990000000000000000000000000000000000222222000000002229072 -T2202301111116231651219860909WT@B@Y9TT2222212222221012216111100023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623165120050311WTT@T@ZY#22222122204308100000000 -T320230111111623165120120704WTTW0#TT922222112204301100000000120090123WTT0B0PP#22222122204304100000000 -T320230111111623165120220204WT@9TYZ9#22222112204398100000000120170309WTTPW00YP22222122204398100000000 -T12023011111162317623500407611120213110576300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111116231761219810426WTTW#0Z#92222212222225012213110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623176120140201WTTBYBTYT22222112204303100000050 -T12023011111162332522000407412120323210835300000000000006540080000000000000000000000000000000000222222000000002229032 -T2202301111116233251219870901WT@9TPY9W1221222222222011206290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116233251219840723WT@9TPY9W1221222222222021205290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623325120160123WT@9TPY9W12212222204398200000000 -T12023011111162333724700405901120213110611300000000185503160110000000000000000000000000000000211122222000000012219072 -T2202301111116233371219820126WTTYZ@W#B2222212222225012212110720023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623337120040705WT@#@@TYZ22222112204311100000000 -T12023011111162362422000414461120233120000300000000050004170990000000000000000000000000000000000222222000000002229022 -T2202301111116236243219710427WT@@Y@W9W2222212222225012214110134713069900000000000000000000000000000000000000000000000000000000000000780000000000000000000000 -T320230111111623624120080423WT@TYB9PZ22222112206306100000050 -T12023011111162363725900402831120433110704300000000007206540080000000000000000000000000000000000222222000000002229022 -T2202301111116236372219830402WT@YYBT9P1222211222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623637120060212WT@0@0T#P12222122204311100000000 -T320230111111623637120190124WT@BB0ZB912222122204398100000000120100707WT@T@#BW#12222122204307100000000 -T12023011111162365222000408891120212110599300000000001903160160000000000000000000000000000000211122222000000012219012 -T2202301111116236521220030311WTT9W@WBT2221222222221012211110164423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623652120210927WTTYYP0B@22212212204398100000000 -T12023011111162365524200403511120313110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111116236551219800522WT@9TPY9W2222212222222012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623655120180411WT@9TPY9W22222122204398200000000120130427WT@9TPY9W22222122204304200000000 -T12023011111162365620800410781120213110611300000000000005280350000000000000000000000000000000000222222000000002229072 -T2202301111116236561219790918WTTB@ZBZB2122221222221012211110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623656120040311WTTP@BB#@22222112204311100000000 -T12023011111162383723500409141120413111034300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111116238371219900308WT@@B9#WY2222212222223012212120154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623837120120321WT@YTW9WZ22222112204303100000000 -T320230111111623837120190212WTT0WWWW912222112204398100000000120170518WTTWP0@Y912222222204398100000000 -T12023011111162391224700408091120633110611300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111116239122219870527WTT#P#WY@1222212222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116239122219820901WT@YYBT9P1222211222222102210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111623912120210427WTT#Y#9ZY12222122204398100000000120170105WT@PTPP@P12222112204398100000000 -T320230111111623912420140909WT@YYBT9P12222112204302900000000420060927WT@YYBT9P12222122204309900000000 -T12023011111162394824200409732120323210835300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111116239481219610426WT@P@#YTZ2222211222222011214290114921011937000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116239481219840223WTT0YYBZZ2222212222222021214290114923011800000000000000000002000000000000000000000000000000000000220000000000000000000000000000 -T320230111111623948120140923WT@9YP0TY22222112204302200000000 -T12023011111162414821000411361120433110740300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116241483219470904WT@YYBT9P1222222222222012298910006011079940000000000000000000000000000000000000000000000000000000000000275200000000000000000000 -T320230111111624148120040707WT@@W@WTW12222222206309100000000 -T320230111111624148120070526WTTP@9ZYT12222222206308100000000120050727WT@YP@9YT22222222206309100000000 -T12023011111162416724200403461120213110611300000000000002280130000000000000000000000000000000000222222000003002219072 -T2202301111116241671219830127WT@YY#P0T2222212222221012212110760021011818000000000000000000000000000000000000000000000000000000000000065000000000000000000000 -T320230111111624167120080408WTT##W9Y@22222122204309100000000 -T12023011111162417020800414651120232110549300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116241702219870324WT@#TZ@W02212222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111624170120160511WT@YZWWPY22222222204398100000000 -T12023011111162431222700413181110213110376300000000000001190200000000000000000000000000000000000222222000003012219012 -T2202301111116243121219900308WTTBP#9TY2222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111624312120090918WT@W@@TYW12222122204307100000000 -T12023011111162431624500405781120113110301300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111116243161219960412WT@0PBT#T2222212222221013212190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111162433520300408321120333110704300000000000005280820000000000000000000000000000000000222222000000002229022 -T2202301111116243353219640422WTT09T0B@2222212122215012216120006013069900000000000000000000000000000000000000000000000000000000000000000000000477043300000000 -T320230111111624335120160127WTTB9ZY0Y12222122206398100000000120140327WTTWBBY@W12222122206301100000000 -T12023011111162442625600414951120412111003300000000000007710260000000000000000000000000000000000222222000000002229072 -T2202301111116244261219940418WT@9T#@ZW1222212222221012208110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111624426120110313WT@#YPWZ012122122204304100000000 -T320230111111624426120210523WTTY9B0@912222212204398100000000120170126WT@B#@PWB22212212204398100000000 -T12023011111162451722000413961120432110939300000000000006540920000000000000000000000000000000000222222000000002229022 -T2202301111116245172219790421WT@@YWZZP2222212222211012209110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111624517120060227WT@W9@@Z022222112204308100000000 -T320230111111624517120110727WT@9P@T@#22222122204303100000000120070702WTTT0TTYB22222112204307100000000 -T12023011111162461824200414852110323210740300000000000002950010000000000000000000000000000000000222222000000002229032 -T2202301111116246181219940121WT@WPWZYY2222211222222011214290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116246181219980523WTTWYWZ992222212222222021215290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111624618120210724WT@#T9BZW22222122204398200000000 -T12023011111162469322000408341120312110803300000000000006540340000000000000000000000000000000000222222000000002229072 -T2202301111116246931219730112WTTW0W##@2222211222225012216110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111624693120070321WT@ZPZ9P922122212204309100000025120050311WTTWYBYP022122212204312100000025 -T12023011111162470522700406181120332110704300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111116247052219670709WT@#Z#YYZ2222212222213012208110471313089900000000000000000000000000000000000000000000000000000000010000000000000000091400000000 -T320230111111624705120120905WTTWT00#P22222222204304100000000120080404WTT0#@B9Z22222122204308100000000 -T12023011111162483820300400971120213110611300000000000005280690000000000000000000000000000000000222222000000002229072 -T2202301111116248381219910326WTTW9B#W01122222222221012212120850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111624838120140313WT@#0W09911222222204398100000000 -T12023011111162489021000403201120532111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116248902219870705WT@09Z9ZZ2222212222213012211110233713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111116248902219740423WT@P#@P9P2222211222215102213190015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111624890120080927WTTYTPPP@22222112204307100000000 -T320230111111624890120220223WTT009TZT22222112204398100000000120190312WTTW#9@ZB22222122204398100000000 -T12023011111162491021000411361120333110740300000000000005280900000000000000000000000000000000000222222000000002229022 -T2202301111116249102219790314WT@TP0BT#2222212222215012216120293113089900000000000000000000000000000000000000000000000000000000000000000000000000057800000000 -T320230111111624910120150423WTT0TPBY#22222122204301100000050120060304WT@BYPTYW22222122204309100000050 -T12023011111162506525000414191120513111199300000000000008880320000000000000000000000000000000000222222000000002229072 -T2202301111116250651219870926WT@Y9PTWB1222222222221012210121020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625065120070712WTT@90B#012222222204307100000000120050913WT@T99#Y#22222222204309100000000 -T320230111111625065120190721WT@0#TPBY12222212204398100000000120140112WTTPYTP0Y12222212204301100000000 -T12023011111162518521000414221120323110625300000000000002120150000000000000000000000000000000141122222000003012219072 -T2202301111116251851219790308WT@@@ZYZT2222212222222011208110750023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116251851219790222WT@#9B9TW1222221222222011212190590121010219000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111625185120070418WT@0YYYZB12222222204310100000000 -T12023011111162519122000406191120313110811300000000000004900490000000000000000000000000000000163222122000000012219012 -T2202301111116251911219990311WTTY#Z@Y#2221222222221012211120451523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625191120220421WT@Y@TYBT22212222204398100000000120170127WTT9YY#YW22212212204398100000000 -T12023011111162524423500410671120113110376300000000000004170230000000000000000000000000000000000222222000000002229012 -T2202301111116252441219950321WTTBTTZ@P2122222222223013212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111162532724200410532120323210704300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111116253271219760909WT@ZTW@YT2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116253271219730707WT@B0PYBP2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625327120110327WT@PY@@##22222122204304200000000 -T12023011111162537524700413761120332110740120790000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111116253752219810423WTT9ZBZZ#2222212222211012212120332711089905000000000000000000000000000000000000000000000000000000000000030500000000091400000000 -T320230111111625375120180708WTTB#9#B#22222122204398100000000120140313WTTWZWWW@22222112204301100000000 -T12023011111162546024700413761120233110396300000000028004170020000000000000000000000000000000000222222000000002229022 -T2202301111116254602219970905WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625460120180227WTTY0@90T12222222204398100000000 -T12023011111162546620600409771120313110776300000000014006540990000000000000000000000000000000000222222000000002229072 -T2202301111116254661219740412WT@P#P#WB2222212222223012216111380023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625466120080904WTT9#ZT@Z22222112204308100000050120060923WTTW#YTPW22222212204311100000050 -T12023011111162553122000412971120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116255313219520504WTT0BBTW02222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000145000002022000000000000 -T320230111111625531120060412WT@0Y#BZW22222222206310100000000 -T12023011111162554724700405831120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116255473219600118WT@YPBP@B2222212122225012213120085213069900000000000000000000000000000000000000000000000000000000000000000000001287000008780000 -T320230111111625547120100427WTT0W#Z9W22222112206306100000000 -T12023011111162560025900414481120433110846300000000000006540110000000000000000000000000000000000222222000000002229022 -T2202301111116256003219890902WT@BZWYBZ2222211222221012216110006011069961000000000000000000000000000000000000000000000000000000000000379700000000000000000000 -T320230111111625600120070309WTTW0B@@T22222212207308100000050 -T320230111111625600120120923WT@@@#9PP12222212207305100000000120090121WTT@0ZZP922222212207308100000050 -T12023011111162561425900402121120213110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111116256141219730913WTT@ZPTZP1222222222223012211111590023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625614120080707WT@9#PY0T12222222204307100000050 -T12023011111162583322000407231120213110598300000000000005280490000000000000000000000000000000000222222000000002229012 -T2202301111116258331219930221WTTBY#BTP2222212222221012212110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625833120190711WT@ZB0Y0P22222122204398100000000 -T12023011111162585925900402121120233120000300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116258593219520501WTTP000Z#2222212122225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000002236000000000948 -T320230111111625859120070314WT@BW99P@12222112206307100000000 -T12023011111162588624200414851120412111018300000000000007710990000000000035037000000000000000000222222000000002229042 -T2202301111116258861219790126WT@B#WZ001221222222221012212110213923011400000000000000000000000000000000000000000000000000000000330000000000000000000000000000 -T320230111111625886120060411WTTY9WW@Z22212222204309100000000 -T320230111111625886120110318WT@ZB00BY22212222204305100000000120070912WT@#WY09T22212212204308100000000 -T12023011111162593523500404531120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111116259351219760123WT@90PW0Z2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111116259351219760221WTT#TY#ZT2222212222221021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625935120060304WTT#BWY0P22222122204308200000000 -T320230111111625935120160327WT@P@00Z#22222112204398200000000120090127WTTWBBWPT22222112204306200000000 -T12023011111162596523500406851120213110611300000000001005280160000000000000000000000000000000000222222000000002229012 -T2202301111116259651219870207WT@PT@0Z02222211222221012212120174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111625965120110123WTT0WZ9YB22222122204305100000000 -T12023011111162610222000408891120113110376300000000000002170100000000000000000000000000000000122222221000000002229012 -T2202301111116261021219930923WT@0B9###2222212222221013210190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000200 -T12023011111162621321000414221120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116262132219820414WT@0YZ@W@2222212122213012212120075313109900000000000000000000000000000000000000000000000000000000000000000000000025090900000050 -T320230111111626213120140121WT@###@Y922122222204301100000000 -T12023011111162622221700406141120233110611300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111116262223219610327WTTP9Z@TP2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626222120040122WTTY0#0BB22222122206310100000000 -T12023011111162627425900402831120313110740300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111116262741219790522WTTZZBWTW2222211222221012211190223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116262742219930304WTTWZ@Z@#1222222222211102209190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111626274120210927WT@Z#BBT922222112204398100000000 -T12023011111162627720600414771120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116262772219790507WT@9Y@@T@1122222122211012212110085213109900000000000000000000000000000000000000000000000000000000000000000000000493044100000000 -T320230111111626277120120202WT@PTTPBB11222222204305100000000120070324WT@Y@PB9@22222222204307100000000 -T12023011111162628723700414331120233110376300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111116262873219620402WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626287120100301WT@WYTB#P12222112206305100000000 -T12023011111162633622900405641120213110611300000000000005280060000000000035003000000000000000000222222000000002229012 -T2202301111116263361219790723WT@W@90#B2222211222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626336120060913WTTZWP#T922222112204309100000000 -T12023011111162650424200402501120723111480300000000227511650450000000000070007000000000000000000222222000000002229012 -T2202301111116265041219850423WTTY#9Z#Z2222212222222011212110431723011800000000000000000004000000000000000000000000000000000000250000000000000000000000000050 -T2202301111116265041219860924WT@T0WTT#1222211222222021212190144621011930000000000000000000000000000000000000000000000000000000000000318000000000000000000000 -T320230111111626504120060108WT@WYT#WY22222122204309100000000 -T320230111111626504120140312WT@@9TZ9W22222122204301100000000120090312WTTPT@T9W22222112204306100000050 -T320230111111626504120200704WTTPB@#9Y12222122204398100000000120180227WT@P@@@0W22222112204398100000000 -T12023011111162658024200414851120213110611300000000025004510460000000000000000000000000000000000222222000000772219012 -T2202301111116265801219900723WTTW@0#ZP2222122222221012216110164421011905000000000000000000000000370004000000000000000000000000120000027000000000000000000000 -T320230111111626580120150911WT@B@PB9Z22221212204301100000000 -T12023011111162660625900402831120412111034300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111116266061219920923WTTWPYZ9W2122222222223012210110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000161 -T320230111111626606120080102WT@WT@BYW21222222204308100000000 -T320230111111626606120170907WTTWPTZ0P11222212204398100000000120170413WT@T0YT#Z21222212208398100000000 -T12023011111162667724700406701110233110516300000000000001740010000000000000000000000000000000000222222000000002229021 -T2202301111116266772219990727WT@@@0ZYY2222212222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000113300000000 -T320230111111626677120200104WT@T@TTT012222122204398100000000 -T12023011111162667820600402141120213110611300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111116266781219850924WTTWPYTT92222212222225012212110184221011816000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626678120110302WTTP#BZ@@22222112204304100000000 -T12023011111162668422700407441120333110557300000000060005280810000000000000000000000000000000000222222000000002229022 -T2202301111116266842219850501WT@YYBT9P1222212222221012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626684120060904WT@PZ#WWZ12222122204309100000000120050114WTTTZP0@912222122204310100000000 -T12023011111162671224700409381120213110611300000000000003160680000000000000000000000000000000211122222000000012219072 -T2202301111116267121219770222WTTT@T#W#2222212222223012211110800023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626712120070912WT@W99BP922222112204307100000000 -T12023011111162672525900402831110633110939300000000000002190010000000000000000000000000000000000222222000000002229021 -T2202301111116267252219910404WT@YYBT9P1222212222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116267252219830307WT@YYBT9P1222211222222022213990006011079920000000000000000000000000000000000000000000000000000000000000154800000000000000000000 -T320230111111626725120090712WTT#WWYZY12222122204305100000000120080907WT9TTZBZ012222122204307100000000 -T320230111111626725120210912WT@ZZZYTW12222122204398100000000120130923WT@#BPTB012222112204302100000000 -T12023011111162682722000408891120323110835300000000002006540070000000000000000000000000000000000222222000000002229012 -T2202301111116268271220010113WT@9YPBBP2221222222222011216190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000002234 -T2202301111116268271220000113WTTW@ZYWY2221221222222021212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626827120210202WTTT0W@YZ22212222204398100000000 -T12023011111162686622000404691120213110611300000000080005280110000000000000000000000000000000000222222000000002229012 -T2202301111116268661219850118WT@TY9Z@T2221222222221012216110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626866120210111WTTBWTZT922212222204398100000000 -T12023011111162689123700414331120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116268913220020523WT@WZYY9Y1222222222221012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111626891120210311WT@PPBBYT12222112207398100000000 -T12023011111162706822000411281120233110291300000000000004170840000000000000000000000000000000000222222000000002229022 -T2202301111116270683219680727WTTB@Z0#Y1222212222225012213910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627068120140401WTTB@YT@B12212212206302100000500 -T12023011111162708020600414771120313110766300000000001206540760000000000000000000000000000000000222222000000002229072 -T2202301111116270801219900527WTT#ZYZ9Y2222212222225012216110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627080120140702WT@P0T0Z#12222112204301100000000120130727WTTYZ#Y9012222112204302100000000 -T12023011111162709824700401011120233110611300000000000004170700000000000000000000000000000000000222222000000002229022 -T2202301111116270983219730124WTTB09T992222212222225012216110204013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627098120130912WT@00YWYT22222122206304100000025 -T12023011111162714422000413732120822211691300000000340512890090000000000000000000000000000000000222222000000002229032 -T2202301111116271441219820311WTTTPPPT02221222222222011212110035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116271441219830312WT@WTBYP92221221222222011212190006023011800000000000000000000000000000000000000000000000000000000340000000000000000000000000000 -T320230111111627144120110418WTT@W90PB22212222204306100000000120090318WTTWY@TB#22212222204307100000000 -T320230111111627144120160705WTT0YT90022212222204398100000000120130412WT@0W9Y@@22212212204304100000000 -T320230111111627144120220426WTT@ZWBWY22212222204398100000000120180321WT@WZ@TZB22212222204398100000000 -T12023011111162721924200414021120213110598300000000000005280080000000000000000000000000000000000222222000000002229072 -T2202301111116272191219800908WT@9@#YYZ2222212222221012210110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627219120210126WTTT@W##022212112204398100000000 -T12023011111162722422000409871120233110516300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111116272242219830908WT@9B0YWW2221222222211012212110760013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111627224120160312WTTPP9WTW22212212204398100000050 -T12023011111162724624700409381110233110376300000000000001610010000000000000000000000000000000000222222000000002229021 -T2202301111116272463219560505WTTB#@Z#B2222212122222012212110006011069910000000000000000000000000000000000000000000000000000000000000195000000689000000000000 -T320230111111627246120180912WT@P9WW0922222112206398100000000 -T12023011111162743524700405831120313110719300000000009806540030000000000000000000000000000000000222222000000002229012 -T2202301111116274351219860418WTTTZB0BP2222212222222012215210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627435120210912WTTB99W#Z22222112204398200000000120180307WTTTP9#0B22222122204398200000000 -T12023011111162747925900402831120333120000300000000060004170020000000000000000000000000000000000222222000000002229022 -T2202301111116274792219790726WT@YYBT9P1222222222225012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627479120060314WT@YY#Z9@12222222204309100000000420050126WTTYB@WY#12222212104310107340000 -T12023011111162751225900402831120333110670300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116275123219650404WT@YWB9YZ2222212222222012212110700011069943000000000000000000000000000000000000000000000000000000000000285400000000000000000000 -T320230111111627512120120218WTT#0TZT012222112206303100000000120110401WT@#Z#WTB12222122206304100000000 -T12023011111162753524200411401110423110971300000000000005720010000000000000000000000000000000000222222000000002229012 -T2202301111116275351219920224WT@W#0Z9P2222211222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116275351219910318WTTT9W00T2222212222221021216190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627535120190222WT@09#PZ922222122204398100000000120160423WTTYB0YW022222112204398100000000 -T12023011111162757321700403821120333120000300000000004005280990000000000000000000000000000000000222222000000002229022 -T2202301111116275733219500507WTTY@P0P92222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002147000000000335 -T320230111111627573120120123WT@0PTTY022222112206304100000000120070724WTTZP@T0@22222122206308100000000 -T12023011111162768123500410671120233110446118230000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111116276813219780318WTTTY990P2222212222223012212110421811069943000000000000000000000000000000000000000000000000000000000000347800000000000000000000 -T320230111111627681120180301WT@TTZY#922222112206398100000050 -T12023011111162772422000405181120212110516300000000000002140130000000000000000000000000000000261122222000001792219012 -T2202301111116277241219820318WTTBY9YPY2122212222223012213110144623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627724120190922WTT9ZP#9Z21222222204398100000000 -T12023011111162773825900402121120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116277383219670424WT@P0TZ@#2222212222222012208110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627738120070127WT@@ZZ@@W22222122206309100000000 -T12023011111162777222000407831120232110516300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111116277722219620408WT@YTYYY@2222212222214012212110650011089907000000000000000000000000000000000000000000000000000000000000055500000000058700000000 -T320230111111627772120050913WTTYPT#0#22222122204312100000000 -T12023011111162778120600407031120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111116277811219970107WTTTW0WYT2222212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627781120200924WTTTTT#Y@22222112204398100000000 -T12023011111162787822000400811120213110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111116278781219950101WT@Z9#9PB2221222222221012212110174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627878120220904WT@9TPY9W22212212204398100000000 -T12023011111162788422000406191120313110704300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116278841219710101WTT9#YBPZ2222222222224012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627884120110326WTTPZ@YWW22222212204305100000000120070404WT@YBBWW922222222204310100000000 -T12023011111162788820600401131120233120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111116278883219720427WT@@0ZTTB2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000219600000000000000000000 -T320230111111627888120220727WT@09#PY@22212222206398100000000 -T12023011111162789422700401571120433110835300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116278942219930523WT@YYBT9P1222222222221012212920006013079900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111627894120090426WTT090T0W12222122204306100000000 -T320230111111627894120150713WTT90W09012222122204398100000000120140111WTT0BZZ@012222112204398100000000 -T12023011111162795022600405051120312110740300000000000000840570000000000000000000000000000000000222222000005702219012 -T2202301111116279501219960302WT@PT9B0Y1222212222221012216110570321011818000000000000000000000000000000000000000000000000000000010000113800000000000000000000 -T320230111111627950120210424WT@9PBY#@12222122204398100000000120130308WTT@9ZPB012222112204302100000000 -T12023011111162797324700405901120413110939300000000004007710020000000000000000000000000000000000222222000000002229012 -T2202301111116279731219900709WTTYPZW0Y2222212222221012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111627973120150727WT@0#T@@022222122204398100000000 -T320230111111627973120190914WTT@ZY#PY22222112204398100000000120180527WT@YWTZBB22222112204398100000000 -T12023011111162797624700405901120312110740300000000012506540110000000000000000000000000000000000222222000000002229012 -T2202301111116279761219840321WT@YTYZPP2222211222223012212110124821011800140000000000000000000000000000000000000000000000000000390000093300000000000000000000 -T320230111111627976120130921WTTTWT@B022222112204303100000000120100727WTTTZ9@PT22222112204306100000000 -T12023011111162800524200414021120213110611300000000005805280080000000000000000000000000000000000222222000000002229012 -T2202301111116280051219920123WT@W@#YYZ2222211222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628005120200712WTT90PB#T22222112204398100000000 -T12023011111162812422000408341120213110516300000000000005280060000000000035005000000000000000000222222000000002229012 -T2202301111116281241219910318WT@0WTBZ92221222222221012214110075323010100000000000000000000000000000000000000000000000000000000260000000000000000000000001639 -T320230111111628124120220412WT@#Z9Y#B22222222204398100000000 -T12023011111162816124200402531120233120000300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111116281613219900401WTTZ@PTZT1222222222222012212110164413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628161120220907WT@9TPY9W12222122209398100000000 -T12023011111162824222000403482120213210598300000000040005280060000000000000000000000000000000000222222000000002229032 -T2202301111116282421219890201WTT09P@PB2222212222225012214910065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628242120150118WT@YZT@B@22222112204398900000000 -T12023011111162828023500414281120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116282801219900126WTT9P09PZ2222121222221012212210055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628280120220724WTT09#PWZ12221112204398100000000 -T12023011111162840221200414781120512111117300000000121208880290000000000035019000000000000000000222222000000002229072 -T2202301111116284021219870127WT@BPBP0P2222212222221012214110900023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111628402120100526WTTTPY9Z022222112204307100000000120060712WT@PYP#YP22222112204309100000000 -T320230111111628402120160412WTTW0##Z#12222112204398100000000120140107WT@@BPYYZ22222112204301100000000 -T12023011111162855622000406191120313110760300000000218202210030000000000000000000000000000000000222222000004332219012 -T2202301111116285561219890113WTT##YZBW2222222222222012212110045621011815000000000000000000000000000000000000000000000000000000000000086400000000000000000000 -T320230111111628556120190507WT@9TPY9W22222222204398200000000120140123WT@9TPY9W22222212204398200000000 -T12023011111162858120600409771120413110939135120000216304790090000000000000000000000000000000000222222000002922219012 -T2202301111116285811219910126WTT9#YTBZ1222212222221012214110105021011807000000000000000000000000000000000000000000000000000000000000058300000000000000000000 -T320230111111628581120180223WT@BB#0YW12222122204398100000000 -T320230111111628581120210211WT@ZYT9Y012222112204398100000000120190718WT@BZYWZW12222122204398100000000 -T12023011111162868524100402401120413111034300000000000007710150000000000000000000000000000000000222222000000002229012 -T2202301111116286851219870401WT@T9T#0T2222212222223012216120382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628685120120427WTT@0T09022222112204304100000000 -T320230111111628685120210913WT@B#YBZ022222112204398100000000120130407WTT#T#PBB22222112204303100000000 -T12023011111162874724200408391120423110959300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111116287471219900412WTTY#9ZZY2222211222222011215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116287471219880318WT@@BPWP@2222212222222021215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628747120210527WTT9BTYZ#22222112204398200000000120160518WTTZW#90Y22222112204398200000000 -T12023011111162877324100402401120313110740300000000002806540120000000000000000000000000000000000222222000000002229012 -T2202301111116287731220020111WTTZYZTTY2222212222223012211110194123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628773120220921WTT0YTTPW12222222204398100000000120180102WT@#ZZP9922222122204398100000000 -T12023011111162878422000410051120423111034300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111116287841219740201WTT90ZWZT2222121222222011212990560423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116287841219800701WTT9ZTZTW2222122222222021211990411923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628784120150518WTTPYW@WB22221222204302100000000420110714WTT9#WTT922221212104305108220000 -T12023011111162884524200408391120413110873115590000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111116288451219920301WTTY#WT@@2222122222223012212110540621011700200000000000000000000000000000000000000000000000000000000000119300000000000000000000 -T320230111111628845120110322WTTT00PB921222212204304100000000 -T320230111111628845120210723WT@P9PT@Z11222212204398100000000120190726WTT@WZ00921222212204398100000000 -T12023011111162889324200400491110113110376300000000000002950010000000000000000000000000000000000222222000000002229012 -T2202301111116288931219940305WT@9P0YZW2222212222221013211190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111162897024200414351120313110776300000000000506540460000000000000000000000000000000000222222000000002229012 -T2202301111116289701219830222WT@Y#0TWP2222212222221012211110520823011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111628970120190723WTTYB@#YB12222122204398100000000120160118WTT0@T@9W22222122204301100000000 -T12023011111162898924200409731120512111116138430000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111116289891219870907WT@00@PPT2221222222221012216110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111628989120210211WT@@@909#22212222204398100000000420170724WTT0@WZY@22212212104398106440000 -T320230111111628989120220718WT@W0WT@Y22212222204398100000000120210211WTTWBPW0T22212212204398100000000 -T12023011111162901720600414771120212110598300000000002105280150000000000000000000000000000000000222222000000002229012 -T2202301111116290171219880122WTTWTBWZ02222212222221012212110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000964 -T320230111111629017120220113WTTT909Y021222222204398100000000 -T12023011111162905022000405821120312110781300000000000004900410000000000000000000000000000000163222122000000012219012 -T2202301111116290501219700105WTTWZY9YZ2221222222221012202220421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111629050120100404WT@WYP#0922212212204306200000000120040308WTTYZP#B#22212212204311200000000 -T12023011111162910720300412371120533111116300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111116291073219540214WTT99Y9#T2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000543000000000000 -T320230111111629107120070513WTT0#W9B#22222122206309100000025120070513WT@ZT09TW22222112206309100000025 -T320230111111629107120100101WT@T##ZW922222112206305100000025120100101WT@@9TW0922222112206305100000025 -T12023011111162913621000411361120213110594300000000018504210250000000000000000000000000000000000222222000001072219012 -T2202301111116291361219920918WTTPBZW0#2222212222221012212110263421011803000000000000000000000000000000000000000000000000000000150000021200000000000000000000 -T320230111111629136120180109WTTY0@T@922222112204398100000000 -T12023011111162916724700406741120333110611300000000000005280330000000000000000000000000000000000222222000000002229022 -T2202301111116291672219750208WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111629167120160524WT@0TBZBP12222112204398100000000120060513WT@WTWYYP12222222204310100000000 -T12023011111162925525600413441120233110536300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111116292552219880912WTTP@@@TW2222212222211012213110740013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111629255120100704WTT@0W99922222122204305100000000 -T12023011111162926922000410051120232110516300000000000004170600000000000000000000000000000000000222222000000002229022 -T2202301111116292693219720105WTTY@YT9W2222212222215012213110630013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111629269120120918WTT0YW09922222112206304100000050 -T12023011111162928822600405051120113110376300000000090004170030000000000000000000000000000000000222222000000002229012 -T2202301111116292881219880304WTT9Y00YT1222222222221013213190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111162932623500410671120313110826117460000000006540360000000000000000000000000000000000222222000000002229012 -T2202301111116293261219980411WT@9Y90P@2222212222221012208110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111629326120210302WTT0WY9BY22222122204398100000000120190921WTTBP9TB@22212222204398100000000 -T12023011111162938220600400871120213110611300000000250005280100000000000000000000000000000000000222222000000002229012 -T2202301111116293821219790423WT@WZPYPB2222212222224012214210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111629382120130411WTT0#@PBP22222122204303200000000 -T12023011111162939222000409411120323110776300000000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111116293921219970704WTT0B@WY92222212222221011216190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116293921219960108WTTY#Y#YT1221221222221011216190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111629392120190311WT@TBPTZY22212222204398100000000 -T12023011111162944225900406841120333120000300000000000005280910000000000000000000000000000000000222222000000002229022 -T2202301111116294423219580405WT@0BBYWY1122222222225012213110006011069940000000000000000000000000000000000000000000000000000000000000506000000000000000000000 -T320230111111629442120120926WTTP00BP021222222206304100000000120090327WT@TTPBYP21222212206306100000000 -T12023011111162950520600414871120233110516300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111116295052219790313WT@@PPZWB2222212122213012216110980013109900000000000000000000000000000000000000000000000000000000000000000000000582035200000000 -T320230111111629505120060327WT@B@YPPY22222122204308100000050 -T12023011111162957124100414322120133210223300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111116295715219620101WT@YTZ9@W1222222122225013216110204013109900000000000000000000000000000000000000000000000000000000000000000000001727000000000000 -T12023011111162961521700407751120513111116300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111116296151219910701WT@T#90992222212222224012210110322821011808000000000000000000000000000000000000000000000000000000000000049300000000000000000000 -T2202301111116296152219920113WT@0@9YB92222211222213102212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111629615120180911WTTW#TZY022222112209398100000000 -T320230111111629615120220301WTTB#P9@T22222122204398100000000120200104WTT9WTBYW22222112204398100000000 -T12023011111162973920600402131120313110835300000000000006540350000000000000000000000000000000000222222000000002229012 -T2202301111116297391219790302WT@@PB9ZW2222212222225012216110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111629739120090709WT@0YB09@22222112204308100000000120090709WTT#Z00WW22222122204308100000000 -T12023011111162985423500405981120333110740300000000000005280450000000000000000000000000000000000222222000000002229022 -T2202301111116298542219950401WTTW#PWW92222212222215012211110312913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111629854120170404WTT0W@@YB22222112204398100000000120140224WTTY9WZY#22222122204302100000000 -T12023011111162988721000411361120333120000300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111116298873219690423WT@P#BYZT2222212222222012214110006011069957000000000000000000000000000000000000000000000000000000000000817100000000000000000000 -T320230111111629887120120913WT@9TPY9W22222122207305200000000120080223WT@9TPY9W22222112207309200000000 -T12023011111162991724700406701120312110813124660000000006540430000000000000000000000000000000000222222000000002229012 -T2202301111116299171219950313WT@ZWWZ0P1222222222221012216120441623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111629917120220926WTTT9WBBP12212212204398100000000120150127WT@@W09WY12222122204302100000000 -T12023011111163008325900402631120533111116300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116300833219960507WT@P@PZW@2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630083420150526WT@PBPPZB12222122204301100000000420130712WTTY90##912222112204303100000000 -T320230111111630083420190213WTTYPT#B@12222122204398100000000120150311WTTYYYW#912222212209398100000000 -T12023011111163018622000408561110233110281300000000000001210010000000000000000000000000000000000222222000000002229021 -T2202301111116301862219980901WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630186120180123WT@Z@90@@12222212204398100000000 -T12023011111163019724200414851120232110516300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111116301972219780221WTTW#@09Y2222212222215012212110332713089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111630197120210921WT@YZT@Y@22212112204398100000000 -T12023011111163029925900402721120233110376300000000100004170640000000000000000000000000000000000222222000000002229022 -T2202301111116302992219680313WT@YYBT9P1222222222224012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630299120100107WTT@P#T0012222212204304100000000 -T12023011111163030223500402291120413111034300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111116303021219930309WTTT9T#Z02221222222223012211110085221011738000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630302120080323WT@T@WP9@22212212204306100000000 -T320230111111630302120170921WTTYWTWY#22212222204398100000000120140404WTTP99WB022212212204305100000000 -T12023011111163039325600412851120213110611300000000000003160300000000000000000000000000000000211122222000000012219072 -T2202301111116303931219830921WTT#PTZ9B2222212222221012212110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630393120060309WTTPPWZT#22212212204308100000025 -T12023011111163039523500407161120113110376300000000000204170040000000000000000000000000000000000222222000000002229012 -T2202301111116303951219920404WTTT#Z@@02222212222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111163046225600411701120213110611300000000020005280020000000000000000000000000000000000222222000000002229012 -T2202301111116304621219890426WT@PPPBW02221222222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630462120210721WTTZ0TBPY22212222204398100000000 -T12023011111163052525100407671120213110611300000000000003160050000000000000000000000000000000211122222000000012219012 -T2202301111116305251219870701WT@9WW@9P2222211222221012212110174323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630525120100404WT@9W0PW#22222112204307100000000 -T12023011111163054223500411471120213110555300000000002505280250000000000000000000000000000000000222222000000002229012 -T2202301111116305421219990714WT@0ZPBTP2222212222221012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630542120200421WT@9#0PBB22222122204398100000000 -T12023011111163055322000407241120212110560113300000000305280220000000000000000000000000000000000222222000000002229012 -T2202301111116305531219870414WTT@Z9WBZ2221222222221012211110312923011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111630553120200522WTTBB@BWT22212222204398100000000 -T12023011111163062420800405391120233110516300000000000004170680000000000000000000000000000000000222222000000002229022 -T2202301111116306242219830324WT@BW9#WZ2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111630624120160311WTT9PP@BW22222112204398100000000 -T12023011111163065522000401711120322110797300000000000006540270000000000000000000000000000000000222222000000002229072 -T2202301111116306551219720513WT@TWBT9T2222212222221011211191180023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116306551219600504WT@0Z0ZP#2221221222221011213190760023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630655120070922WT@9#B9WY22222122204309100000000 -T12023011111163072624200403941120233110611300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111116307263219660413WTT00@P#Z2222122222221012212210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630726120190212WT@0#Y9TY22221212206398100000000 -T12023011111163075824200403941120233110611300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111116307582219810124WT@#T9@BP2221221222213012211120124813089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111630758120080314WTT9##TWY12212212204307100000000 -T12023011111163077625900406841120433110893300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116307763219640714WT@ZW9PWB2122222222225012213110035711069940000000000000000000000000000000000000000000000000000000000000347400000000000000000299 -T320230111111630776120050701WT@0YT9BZ21222222207311100000000 -T320230111111630776120190922WT@PWWY##21222212207398100000000120070101WTTT@YB#Z21222212207309100000000 -T12023011111163083824900404261120233110516300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111116308382219810318WT@9BZW@Z2222212222215012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111630838120100113WT@BBZ0B022222112204305100000050 -T12023011111163087622000408891120213110611300000000000005280790000000000000000000000000000000000222222000000002229072 -T2202301111116308761219930407WT@BY@ZZ@2222212222221012216110800023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630876120090427WT@YZT9BB22212212204306100000000 -T12023011111163090424200404281110233110376300000000000001210010000000000000000000000000000000000222222000000002229021 -T2202301111116309042219770327WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630904120090318WTTTB#WTY12222212204307100000000 -T12023011111163090622500410151120213110611300000000000005280210000000000000000000000000000000000222222000000002229072 -T2202301111116309061219870223WTTWB9@0#2222212222224012214110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630906120070713WT@Z#0#BY22222112204307100000000 -T12023011111163092224200408391120313110740300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111116309221219980127WTT@#T9TZ2222122222221012212110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630922120180123WT@WT0@#Z22221212204398100000422120170226WTTZW9PWB22222222204398100000000 -T12023011111163092525200407301120513111116300000000000008880580000000000000000000000000000000000222222000000002229072 -T2202301111116309251219820123WT@9P@PZP2222212222223012212120880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630925120080223WT@TP@0T912222112204307100000000120070221WT@T#PBPB22222122204308100000000 -T320230111111630925120170721WT@@W#@9P22222122204398100000000120170721WTTY#@P0Z22222112204398100000000 -T12023011111163099723900403801120413111034300000000000007320260000000000000000000000000000000000222222003800012219012 -T2202301111116309971219930423WTT#P@W0Z2222212222221012216120600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111630997120150504WTT@PBZ@@22222112204398100000000 -T320230111111630997120210101WT@0#P#P#22222112204398100000000120180908WTTYZ9P@P22222112204398100000000 -T12023011111163108322000408891120333110611300000000001305280130000000000000000000000000000000000222222000000002229022 -T2202301111116310832219720504WT@YYBT9P1222222222225012212910610013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111631083120080412WT@ZB9WWP12222222204308100000000120050712WTTP9YYTP12222212204310100000000 -T12023011111163117122000406211120233110516300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111116311713219540704WT@BT9@9P2212222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001075000000000000 -T320230111111631171120180322WT@B@TPB@22122222206398100000000 -T12023011111163117624200414721120233110493300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111116311763219610227WT@BZP0##2222211222215012204110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111631176120050727WT@YZTWW#22222112206304100000000 -T12023011111163126620600414771120113110376300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111116312661219940727WTT#9T9Z02122222222221013211190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000140 -T12023011111163130524700401281120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116313052219890201WTTW#@9ZB2222212222211012216110243613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111631305120160123WT@ZT@T9P22221112204398100000000420070426WTTPBZZT022222122104308109140025 -T12023011111163138524700406702120213210598300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111116313851219910323WTT0WP#9P2222122222221012298910045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111631385120160927WT@Z9TZ9Z22222222204301900000000 -T12023011111163145323500404531120413111034134200000030007710600000000000000000000000000000000000222222000000002229012 -T2202301111116314531219880221WT@WP0#Z@2222212222221012212110461423010100000000000000000000000000060000000000000000000000000000210000000000000000000000002398 -T320230111111631453120080913WTTZWZYTP12222122204309100000000 -T320230111111631453120220405WT@TWYP#T22222122204398100000000120190322WT@BY##PZ22222112204398100000000 -T12023011111163147122500408191120233120000300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111116314713219460212WT@##@PT#2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001341000000002000 -T320230111111631471120070702WTTBY0#BP22222122206309100000050 -T12023011111163149724200404051110333120000300000000000002380010000000000000000000000000000000000222222000000002229021 -T2202301111116314973219810107WT@PWBPY#2222112112223012214110006013069900000000000000000000000000000000000000000000000000000000000000000000001334000000004143 -T320230111111631497120120701WTTT0WWW#22121122207303100000000120100408WT@0@#TYB22121112207306100000000 -T12023011111163151221000414221120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111116315121220020727WTTY@Y9YY2222212222221012211110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111631512120210926WT@T99@@Y12222122204398100000000 -T12023011111163157421000403201120232110428113180000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111116315743219910105WT@09#9WB1222222222221012216110312911069931000000000000000000000000000000000000000000000000000000000000214300000000000000000000 -T320230111111631574120060326WTT90YZWT12222222207306100000000 -T12023011111163159424200403511120613111339112270000000010090210000000000000000000000000000000000222222000000002229072 -T2202301111116315941219860204WT@@0W0PT2221222222221012210120840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111631594120050707WT@T99BP#22212212204309100000000 -T320230111111631594120080112WT@PYT#B#22222212204307100000000120070212WTTWZY90W22212212204308100000000 -T320230111111631594120180502WTT9@@9Z922212222204398100000000120120724WT@T#W0Z#22212222204303100000000 -T12023011111163160724100402401120212110611300000000000005280800000000000000000000000000000000000222222000000002229072 -T2202301111116316071219780408WT@0P0@9P2222212222221012212110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111631607120040202WT@#9BTP#22222122204311100000033 -T12023011111163166222000414461120233110611300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111116316623219570921WTT9TBTBW2222212222225012216110382213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111631662120080918WTT@YTB9P22222122206308100000000 -T12023011111163169922000405841120332110740300000000000005280580000000000000000000000000000000000222222000000002229022 -T2202301111116316992219850201WT@@@B09W2222212222211012211110600013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111631699120190118WTT#YW#TB22222122204398100000000120180126WT@0Z99WP21222222204398100000000 -T12023011111163174824100410041120613111211300000000000008880080000000000000000000000000000000000222222000000002229012 -T2202301111116317481219960205WT@9B09#@1222221222221012208290095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116317482220020321WTT9TWBYZ1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111631748120190501WT@@YB@#Y12222212204398100000000120170707WT@ZTB#T012222222204398100000000 -T320230111111631748120220927WT@@9B##W12222112204398100000000120200721WT@9BZ0B012222212204398100000000 -T12023011111163186224200414351110313110776120900000010006540160000000000000000000000000000000000222222000000002229012 -T2202301111116318621219910721WT@Y99@9Y2222212222221012211110322823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111631862120220907WTT9B#W0Y22212222204398100000000120140123WTT#WT@Z022222112204301100000000 -T12023011111163186724700409381120233120000300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111116318673219900107WTT000TY@2222212222221012212110105011069934000000000000000000000000000000000000000000000000000000000000631000000000000000000000 -T320230111111631867120170107WT@T@##YT12222112207398100000000 -T12023011111163188122000404841120233110570300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111116318812219980313WT@ZZ#B0#2221222222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111631881120210901WTT9#Z#PP22212212204398100000000 -T12023011111163200022000400461120213110611300000000000005280300000000000000000000000000000000000222222000000002229072 -T2202301111116320001219730524WTTP9YWTB2222212222225012213111210021011817000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111632000120140523WT@TBWBZZ22222122204303100000000 -T12023011111163202522000411281120333120000300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111116320253219630124WT@0Z990#2222212222224012213110006011069913000000000000000000000000000000000000000000000000000000000000076000000000000000000000 -T320230111111632025120200723WTT90ZP0#22222112206398100000000120120304WTT#PWY0T22212112206302100000000 -T12023011111163212421700406141120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116321242219850327WTTPP9#0B1222212222211012209110820013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111632124120070908WTTWTYZ9P12222122204310100000000 -T12023011111163226825000401171120212110598300000000000005280310000000000000000000000000000000000222222000000002229012 -T2202301111116322681219830423WTTWPB0TB2122222222221012212110322823011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111632268120080424WTTT9WY0P21222212204306100000050 -T12023011111163229121700409521120213120000300000000015005280150000000000000000000000000000000000222222000000002229012 -T2202301111116322911220010207WT@W#0BTZ2222212222221012212110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111632291120220923WT@BY#Z@W22222122204398100000000 -T12023011111163229924200409091120313110766300000000000006540530000000000000000000000000000000000222222000000002229072 -T2202301111116322991219910513WTTTY0@BW2222212222223012213110760023010100000000000000000000000000000000000000000000000000000000000000000000000000000000003430 -T320230111111632299120220212WT@B@900#22212222204398100000000120090713WTTW#PY0P22212122204307100000000 -T12023011111163234822900405641120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116323483219690323WT@TWT9#B2222122222222012213120154511069941000000000000000000000000000000000000000000000000000000000000238300000000000000000000 -T320230111111632348120100223WTTTBZYTW12222212206306100000000120070321WT@P#P9@912222222206308100000000 -T12023011111163244225900403711120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116324423219610707WTTTBZ0B#1222212122215012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000819011500000000 -T320230111111632442120120904WT@YTYY#T12222112206302100000000120100112WTTT#WZ0W12222112206303100000000 -T12023011111163255224700406741120213110599300000000000003160420000000000000000000000000000000211122222000000012219072 -T2202301111116325521219980505WT@0@TPW92221222222221012216110770023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111632552120170505WTTYYWB0#22212222204398100000000 -T12023011111163255920600400871120423111034300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111116325591219760423WT@@Y@WW@2222212222222011211290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116325591219770214WTT@0BTZP2222211222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111632559120130402WTTW@BT0022222112204302200000000120080723WTT9WB#@#22222122204307200000000 -T12023011111163257224700408301120233120000104170000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111116325723219720518WTT@PYPPZ2222212222221012213110065413069900000000000000000000000000000000000000000000000000000000000000000000000000000000001268 -T320230111111632572120170127WTTWW0TZT22222122206398100000000 -T12023011111163259025900402631110313110611300000000000000210010000000000000000000000000000000000222222000005072219012 -T2202301111116325901219930722WTTP90BZ91222212222221012212110293123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111632590120230412WT@ZY0YBW22222222204398100000000120110723WT@Y0P99012222222204305100000000 -T12023011111163269324500405781120433110611300000000029105280070000000000000000000000000000000000222222000000002229022 -T2202301111116326932219800904WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116326932219770404WT@YYBT9P1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111632693120160302WTTZW@P#W12222222204398100000000120120318WTTZZPTW912222212204303100000000 -T12023011111163278524200403461120313110855300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111116327851219850101WT@T@90W#2222212222221012216110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111632785120100522WT@0PZZZT22222112204306100000000120050114WT@P9W#Z#22222112204311100000000 -T12023011111163280024200409091120232110516300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111116328002219880204WTTPZ09@T2221222222211012211110620013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111632800120160305WT@PT#YTY22212212204398100000000 -T12023011111163282724700409321120212110493300000000035900010680000000000000000000000000000000000222222000000002229072 -T2202301111116328271219780127WT@0T0TBP2221222222224012212110670011011800210000000000000000000000000000000000000000000000000000000000125600000000000000000000 -T320230111111632827120160209WT@@T#PZT22212222204312100000050 -T12023011111163283623500407162120233210187300000000000004170600000000000000000000000000000000000222222000000002229022 -T2202301111116328365219790412WTTPTBP9Z2222122222223012211910184211079937000000000000000000000000000000000000000000000000000000000000329200000000000000000000 -T320230111111632836120050418WT@YWZY9T22221222209310900000000 -T12023011111163294924500405781120213110598300000000000005280820000000000000000000000000000000000222222000000002229072 -T2202301111116329491219920213WT@@WZWB@2222212222221012212110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111632949120180111WT@W9B@P#22222122204398100000000 -T12023011111163308023700414331120333120000300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111116330803219720412WT@0ZZBZ02222212122222012212110035713069900000000000000000000000000000000000000000000000000000000000000016000001316000000000000 -T320230111111633080120170414WTTPWPYZ022222112207398100000000120130405WT@0#YB0P22222122207303100000000 -T12023011111163308122000409991120413110939300000000000007710130000000000000000000000000000000000222222000000002229072 -T2202301111116330811219690314WTTY0B##Y2221222222223012216111030023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633081120050507WT@ZB@TY@22212212204311100000000 -T320230111111633081120150923WT@@9B0YP22212222204301100000000120120311WT@YY@90Y22212212204303100000000 -T12023011111163310620300410341120313110835300000000000105190040000000000000000000000000000000000222222000001352219012 -T2202301111116331061219740226WT@#B0BBY2222211222225012213110055521011809000000000000000000000000000000000000000000000000000000000000053700000000000000000000 -T320230111111633106120060326WTTW@Z0@022222112204308100000000120050907WTT0YZ9@Z22222112204309100000000 -T12023011111163320625900406841120423111034300000000015007710040000000000000000000000000000000000222222000000002229042 -T2202301111116332061219950707WT@BP#ZPT1222222222222011208190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116332061219900312WT@9WW9TW1222211222222021209290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633206120180222WTTZ9WZ9#12222122204398100000000120140412WTT#YPWYZ12222212204302100000000 -T12023011111163322424200414721110212110516300000000000007830330000000000000000000000000000000000222222000000002229012 -T2202301111116332241220000427WT@T#WZPY2221222222221012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633224120180126WT@PBPT9#22212112204398100000000 -T12023011111163323320900411721120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111116332331219810913WTT@090@P2222212222225012211110144623011800000000000000000000000000000000000000070001000000000000000000000000000000000000000000 -T320230111111633233120110704WTT#WTTTW22222112204304100000000 -T12023011111163324721000403201120213110516110650000000001800290000000000000000000000000000000000222222000003482219012 -T2202301111116332471219980701WT@W@P00P2222212222221012211110303021011809000000000000000000000000000000000000000000000000000000000000069500000000000000000000 -T320230111111633247120210423WTT0PT09P22222122204398100000000 -T12023011111163325222700413181120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116332523219680112WT@W0#Y#92222212222224012211110720013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633252120080724WTT@90ZTZ12222112206305100000050520070127WT@Y@@0W#12222112106306109140000 -T12023011111163337924700413931120233120000119380000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111116333793219880204WTTBPWP9P2222212222222012216110114911069921000000000000000000000000000000000000000000000000000000000000473100000000000000000000 -T320230111111633379120200304WT@BZWYZ922222122207398100000000 -T12023011111163347822000411131120212110557300000000000005280400000000000000000000000000000000000222222000000002229072 -T2202301111116334781219760322WT@TYZB9Z1122222222221012216110650023010900000000000000000000000000190002000000000000000000000000010000000000000000000000000000 -T320230111111633478120150323WTTT#9PB911222222204301100000000 -T12023011111163352122700408351120233110516300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116335212219630323WTTWW99#02221221222214012210110154513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111633521120080721WTTYBW@P@22222112204307100000000 -T12023011111163355121400408021120333110611300000000000005280230000000000000000000000000000000000222222000000002229022 -T2202301111116335512219840207WT@YYBT9P1222222222221012203920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633551120220923WTTZTTTBP12222212204398100000000120150407WTTT9ZW0T12222212204398100000000 -T12023011111163365224700406631120333120000300000000140405280990000000000000000000000000000000000222222000000002229022 -T2202301111116336525219640921WT@##P0WW2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633652120070227WT@99BYY#22222112209309100000050120060423WTTZBWBPY22222112209310100000050 -T12023011111163365524200403511120213110611300000000004805280220000000000000000000000000000000000222222000000002229012 -T2202301111116336551219950112WTTY0#WB#2222212222221012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633655120110909WTT#BWZPB22222112204305100000000 -T12023011111163370023500410671120212110516300000000000005280350000000000000000000000000000000000222222000000002229072 -T2202301111116337001219780113WTT@PTTP02222212222223012211111120023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633700120080126WT@T@@BYT22222112204307100000281 -T12023011111163378222000405181120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116337822219800423WT@#T0W@B2221221222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111633782120050318WTT#YW@T#22212212204309100000000120040113WTTWYWTW922212222204310100000000 -T12023011111163389924200403511120413110939300000000560007370410000000000000000000000000000000000222222000000342219012 -T2202301111116338991219840222WT@BT#9P@2221212222225012214120421821011700210000000000000000000000000000000000000000000000000000020000000000000000000000000033 -T320230111111633899120050213WT@WPP9BP22212112204311100000000 -T320230111111633899120170712WTT90Y0TZ22212112204398100000000120100312WT@@Y@0TB22212122204305100000218 -T12023011111163392624900404261120312110776300000000000006540350000000000000000000000000000000000222222000000002229012 -T2202301111116339261219860926WT@TB@T@Y2222212222223012212110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111633926120200909WT@0BW0YW12222122204398100000000120170301WTTW@W##T12222112204398100000000 -T12023011111163397922000406271120332110740300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111116339792219830307WT@#BPT0#2221222222211012212110263413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111633979420160927WT@Z9#W#Y22212222104398109140000120060111WTT0B#Z0922222122204310100000000 -T12023011111163400422000404841120213110611300000000000005280350000000000000000000000000000000000222222000000002229012 -T2202301111116340041219950304WT@YPWZTB1221212222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111634004120190223WTT@ZP0ZP12112122204398100000000 -T12023011111163412422000406191120333110752300000000000005280160000000000000000000000000000000000222222000000002229022 -T2202301111116341243219630318WT@TYYB9T2222212222222012211110065413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111634124120100314WT9TT9@W922222112206306100000000120090721WT@9Z#TT022222112206307100000000 -T12023011111163413322000410221120422110939300000000347107710200000000000000000000000000000000000222222000000002229012 -T2202301111116341331219710101WTTB0ZZW@2222211222222011212190213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116341331219790405WT@T0WPBT2222222222222021212190213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111634133120180227WTT##W9BZ22222112204398100000000120150723WT@#PT99P22222122204398100000000 -T12023011111163414424700409321120413111034300000000003507710190000000000000000000000000000000000222222000000002229012 -T2202301111116341441219900513WTT@YZ9B02222212222222012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111634144120090323WTT@ZP9PP22222112204303100000000 -T320230111111634144120150318WT@9#BTBP22222112204398100000000120120302WT@ZZZ@0W22222112204301100000000 -T12023011111163419322000400461110312110516300000000000006110120000000000000000000000000000000000222222000000002229012 -T2202301111116341931219830401WTTBT##Z#2221222222221012208210134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111634193120220713WTT0#Y@#Z22212222204398100000000120130221WTTBBT@B922212222204304200000000 -T12023011111163423222000412972120213210598300000000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111116342321219840112WT@9TPY9W1222222222225012204210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111634232120100207WT@9TPY9W12222212204306200000000 -T12023011111163423922000410051120213110516300000000000604710030000000000000000000000000000000000222222000000572219012 -T2202301111116342391219840322WT@BZ#T#B2222212222225012212110491121011802110000000000000000000000000000000000000000000000000000000000079200000000000000000000 -T320230111111634239120100118WTTTW@0YP22222112204306100000000 -T12023011111163424422600405051120213110618300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111116342441219950305WTTPP@0#01222212222221012209110421823011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111634244120180218WT@@YW#@B22222112204398100000000 -T12023011111163426524200414351120313110766300000000000006540360000000000000000000000000000000000222222000000002229072 -T2202301111116342651219880723WTT#0YPB#2221222222223012216110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111634265120130414WTTB@0TTB22212212204301100000000120060114WT@W@9PP022212212204310100000000 -T12023011111163451820600401641120213110611300000000500005280320000000000000000000000000000000000222222000000002229012 -T2202301111116345181219910907WTT0@T#B@2222212222221012213110342623011400000000000000000000000000000000000000000000000000000000030000000000000000000000001200 -T320230111111634518120140323WTT0B@9W#22222222204398100000000 -T12023011111163472225900406081120213110611300000000000002380150000000000000000000000000000000158122222000001322219012 -T2202301111116347221219970511WTT@#T9#W2122222222221012210110105023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111634722120180913WTTW@ZYY921222212204398100000000 -T12023011111163479124700401281120233120000300000000090004170070000000000000000000000000000000000222222000000002229022 -T2202301111116347913219610723WTT9ZBZWY2122212222223012210110006013069900000000000000000000000000000000000000000000000000000000000000539900000000000000000000 -T320230111111634791120040707WTT9@P#WY21212112206311100000000 -T12023011111163481624200404891120412110939300000000000007710520000000000000000000000000000000000222222000000002229072 -T2202301111116348161219810302WT@@ZW09T2121222222221012216120870023010100000000000000000000000000000000000000000000000000000000000000000000000000000000001395 -T320230111111634816120110513WTTWTT0P021212212204303100000000 -T320230111111634816120220526WT@Y#Z9YZ21212212204398100000000120140513WTTTPWT@#21212212204398100000015 -T12023011111163493623800408671120313110835300000000000005280480000000000000000000000000000000000222222000000002229012 -T2202301111116349361219720913WT@Y@#P0#2222212222225012216110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111634936120080112WT@WB#W#022222112204307100000000420060711WT@Z9@@PY22222122104308109140000 -T12023011111163500820600414871120233110584300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111116350082219810912WT@W@@ZZP2222212222211012212110154513089900000000000000000000000000000000000000000000000000000000000000000000000000060900000000 -T320230111111635008120180307WTTZ9PWP#21222222204398100000000 -T12023011111163501524500405781120213110493300000000080005280280000000000000000000000000000000000222222000000002229012 -T2202301111116350151219780912WTT@9@WTY1222221222224012211210065421011936000000000000000000000000000000000000000000000000000000000000278100000000000000000000 -T320230111111635015120080201WT@0YTW@912222222204309100000000 -T12023011111163509520600400871120213110611300000000000005280220000000000000000000000000000000000222222000000002229072 -T2202301111116350951219850113WTTP#Z@ZP2222212222221012214110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111635095120090907WT@T0#YZ#22222122204307100000000 -T12023011111163511124200403941120213110611300000000000003160150000000000000000000000000000000211122222000000012219012 -T2202301111116351111219930227WT@B9Y0Y@2122222222221012209110164423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111635111120190313WTTYY0#9#22222122204398100000000 -T12023011111163511220600409771120233110578300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116351122219800421WT@WBBZPW2222212222213012212111460013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111635112120060926WTTZZTYPW22222112204310100000000 -T12023011111163513624700413761120213110618300000000050005280020000000000000000000000000000000000222222000000002229012 -T2202301111116351361219880121WTT9ZP0ZZ2222212222221012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111635136120080707WTT@#WYYZ22222112204308200000000 -T12023011111163517525900402831120733111365300000000000010090030000000000000000000000000000000000222222000000002229022 -T2202301111116351752219840527WT@YYBT9P1222222222223012212910006011079908000000000000000000000000000000000000000000000000000000000000015000000000000000000000 -T320230111111635175120070101WT@9Y9T#Y12222222204308100000000120050923WTTBWBPWP12222222204311100000000 -T320230111111635175120140924WTTPB90T012222122204301100000000120110912WT@YT9YW@22222112204305100000000 -T320230111111635175120200423WTTT9Y#T@12222112204398100000000120160123WTT9@#T##12222222204398100000000 -T12023011111163519220200410361120512111116300000000000008880540000000000000000000000000000000000222222000000002229012 -T2202301111116351921219880713WT@9@PZYY2222212222223012211110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111635192120110221WT@TB90TB22222112204305100000000120090927WTT0PYZ9W22222112204307100000000 -T320230111111635192120200101WTTYTTWWZ22222122204398100000000120130205WTTBTTY0Y22222122204303100000000 -T12023011111163524920900411721120233110516300000000000004170870000000000000000000000000000000000222222000000002229022 -T2202301111116352493219610707WTT9T9Y@#2222212122225012210110006011069910000000000000000000000000000000000000000000000000000000000000030000001202000000000000 -T320230111111635249120150426WT@PPTY9W22222122206398100000000 -T12023011111163527222000406191120312110775300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111116352721219830327WT@ZB##PT2222212222221012212120322823011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111111635272120170321WT@ZZZ@WT22212122204398100000000120130307WTTTYP0YP22212122204303100000000 -T12023011111163528321700406141120233110516300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111116352832219760514WT@9@ZT992222212222213012212110184213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111635283120120404WTT09WTPY22222112204303100000000 -T12023011111163542022700408351120233110516300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111116354203219790123WTTB9WB9Z2222212122212012209110840013069900000000000000000000000000000000000000000000000000000000000000000000000718021600000000 -T320230111111635420120090126WTT09ZP9912222122207306100000000 -T12023011111163546624200405921120233120000300000000000004170930000000000000000000000000000000000222222000000002229022 -T2202301111116354663219650108WT@#09@#B2222212222221012216110105011069942000000000000000000000000000000000000000000000000000000000000687500000000000000000000 -T320230111111635466120080726WTTT9#@9#22212212206307100000000 -T12023011111163562920800411601120212110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116356291219840313WT@TZB90T2222212222221012212110382223010100000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111635629120220114WT@9TPY9W22222222204398100000000 -T12023011111163567722000407961120412110972148500000000107710110000000000000000000000000000000000222222000000002229012 -T2202301111116356771219730421WTTTBTTT02221221222222012216110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111635677120140308WT@BWPYZW22212222204301100000000 -T320230111111635677120220412WT@PYTBY922212222204398100000000120180927WTT@ZBZ@Z22212212204398100000000 -T12023011111163572222000411281120212110611110690000000005280500000000000035005000000000000000000222222000000002229012 -T2202301111116357221219920209WTTTT#0#P2221222222221012212110510921011828000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111635722120130723WT@TTW00#22212222204303100000545 -T12023011111163573221700403821120313110835300000000000005450050000000000000000000000000000000000222222000001092219012 -T2202301111116357321219870227WTTPZ@ZPW2222212222223012213110065421011807000000000000000000000000000000000000000000000000000000000000043200000000000000000000 -T320230111111635732120170323WTTBBB#0W22222112204398100000000120150313WT@W0T#0922222112204301100000000 -T12023011111163596220600414771110113110376300000000000000130010000000000000000000000000000000000222222000000002229012 -T2202301111116359621219940901WT@BP##0@2222212222221013211190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111163596922000411551120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111116359693219550926WT@Y00TW#2221222122221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001698000000000000 -T320230111111635969120100426WTTZZ#0WB22212212209307100000000 -T12023011111163601722000411551120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116360173219440705WTT#0TBT@2221222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002867000000003233 -T320230111111636017120060122WT@YY9P@W22212212206310100000000 -T12023011111163624923500410672110423211034300000000000007710010000000000000000000000000000000000222222000000002229032 -T2202301111116362491219910126WTT@B#@PT2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116362491219930721WTTYZYWZ92222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636249120200311WT@9#ZW@Y22222122204398200000000120180201WT@W9WW@#22222112204398200000000 -T12023011111163628724200414021120213110611300000000000003160160000000000000000000000000000000211122222000000012219012 -T2202301111116362871219960326WT@0PWP##2222212222223012212110194123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636287120180302WT@#Y90WT22222112204398100000000 -T12023011111163630522000408891120513111116300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111116363051219920318WT@9TPY9W2222222222221012203210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636305120120727WTT9WY#ZB22222212204398100000000120100418WT@9TPY9W22222222204398200000000 -T320230111111636305120200907WT@9TPY9W22221222204398200000000120170312WT@9TPY9W22222222204398200000000 -T12023011111163635024200404891120213110611300000000003005280100000000000000000000000000000000000222222000000002229012 -T2202301111116363501219950724WT@YWP@9T2222122222221012216110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636350120160712WT@9YWW9922221222204398100000000 -T12023011111163637322000410052120323210835300000000000006540120000000000000000000000000000000000222222000000002229032 -T2202301111116363731219990718WT@9TWWB#2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116363731219980123WT@TT@ZYB2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636373120210523WTTWYWT#P22222122204398200000000 -T12023011111163638223500404821120423111034300000000000007710380000000000000000000000000000000000222222000000002229012 -T2202301111116363821219870701WT9TTZ0Y02222212222221011211190352523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116363821219850912WT@99W00W2222211222221011211190322823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636382120190921WTTW@YTB#22222122204398100000000120170221WTT#0T0BP22222112204398100000000 -T12023011111163642520900411721120233110516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111116364253219700209WT@W#BP9W1222211122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000954000000000000 -T320230111111636425120150218WTTZ00P0T22222122206302100000000 -T12023011111163650122000412811120423110939300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111116365011219920107WT@9TPY9W1222211222222011206290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116365011220000912WT@9TPY9W1222212222222011206290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636501120190301WTTYB#WZ#12222212204398100000000120160908WT@9TPY9W12222222204398200000000 -T12023011111163651320600404121120533111116300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111116365132219900108WTTT@Y@#T2222212222213012213120750013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111636513120150526WT@YZ90YP22222122204301100000000120100109WT@ZB9ZYP22222112204306100000000 -T320230111111636513120200712WTTP@#ZBW22222112204398100000000120160723WT@#@T#Z@22222112204398100000000 -T12023011111163651825600411701120233120000300000000070004170630000000000000000000000000000000000222222000000002229022 -T2202301111116365185219840921WT@@ZZW#P2122222222225012212110006011069940000000000000000000000000000000000000000000000000000000000000430000000000000000000250 -T320230111111636518120170123WT@BBZ9WW21222212208398100000000 -T12023011111163661024200414851120233110516300000000010004170990000000000000000000000000000000000222222000000002229022 -T2202301111116366102219590726WTT9WW@@T2222212222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111636610120040712WTT#9@@9P22222112204312100000000 -T12023011111163671822000412692120423210939300000000600007710020000000000000000000000000000000000222222000000002229032 -T2202301111116367181219900923WT@9TPY9W2222212222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116367181219840327WT@9TPY9W2222211222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636718120170314WT@9TPY9W22222112204398200000000120130912WT@9TPY9W22222122204302200000000 -T12023011111163680024200410371120333110740300000000000005280430000000000000000000000000000000000222222000000002229022 -T2202301111116368001219860108WTTWP9T#B2222211222225012212110441623099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636800420160523WTT#0@#YZ22222122104398109140000120120504WTTZBZTPY22222112204303100000000 -T12023011111163682221000412411120333120000300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111116368223219690118WT@WBB@ZT1222222222222012212110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636822520160312WTTPBYT#Y12222122106398106090000120150107WT@ZB@#TT12222122206301100000000 -T12023011111163698525600414971120233110446300000000000004170860000000000000000000000000000000000222222000000002229022 -T2202301111116369853219860426WTTYP9B#92222212222223012213110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111636985120050321WTTY9YZP@12222112207311100000050 -T12023011111163703025200407301120313110835300000000000006540350000000000000000000000000000000000222222000000002229012 -T2202301111116370301219950518WT@#YBZ902222212222223012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111637030120150104WTT@Y09BZ22222122204398100000000120140927WTTTY@PZT22222112204398100000000 -T12023011111163705224700405901120412110939300000000081005280790000000000000000000000000000000000222222000000002229012 -T2202301111116370522219880721WTT@P@ZBZ2222112222212012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000086400000000 -T2202301111116370521219790111WTT#T@0#92222211222222022212190352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111637052420090712WT@TYT#B@21222212104305109140000120080412WT@#9T99921222222204309100000000 -T12023011111163709220600404121120213110557300000000025405280830000000000000000000000000000000000222222000000002229072 -T2202301111116370921219810707WTT0#WW9P2222212222221012212110830023010900000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111637092120070927WT@BZ0WTP22222112204310100000000 -T12023011111163711222700413181120412110939300000000001007710310000000000070009000000000000000000222222000000002229012 -T2202301111116371121219960927WTT0WPZTT2222212222221012216110352523011400000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111637112120140427WTTWTWTBP22222112204303100000000 -T320230111111637112120190427WTTY090WT22222122204398100000100120160426WT@@B9TP@22222122204301100000000 -T12023011111163713425100407671110213110516300000000000000340010000000000000000000000000000000000222222000000002229012 -T2202301111116371341219920213WT@T9#Y@@2222212222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111637134120190318WT@PZZB0922222112204398100000000 -T12023011111163715120600404121120232110516300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111116371512219740908WTTY#W@YP2222212222214012212210233713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111637151120060322WT@ZYPYWW22222122204308200000000 -T12023011111163721224200403511120313110704300000000000006540630000000000000000000000000000000000222222000000002229012 -T2202301111116372121219810712WT@9TB#TP2222211222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111637212120110918WTTWWY@9P22222112204303100000000120060113WT@ZP9P9Y22222112204310100000000 -T12023011111163726024200403941120233120000300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111116372603219650312WTTTT9B@T2222212222221012214110006013069900000000000000000000000000000000000000000000000000000000000000737700000000000000000000 -T320230111111637260120190704WTTBTYY9W22222112207398100000000 -T12023011111163750824200402501120422111034300000000052007320180000000000070010000000000000000000222222003800012219012 -T2202301111116375081219890522WT@T0T#T@2222212222222011211190402023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116375081219860104WTT@9WBZ91222221222222021211190332721011940000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111637508120150118WTT9T@@W@12222112204398100000000120100922WT@P#Y#P012222112204306100000000 -T12023011111163751125600414551120612111339300000000010002660020000000000000000000000000000000000222222000007432219072 -T2202301111116375111219810507WT@TPB9PY1122222222223012212120650021011948000000000000000000000000000000000000000000000000000000000000297000000000000000000000 -T320230111111637511120040123WTT9Y@W#011222222204311100000000 -T320230111111637511120110902WT@@@P##911222222204305100000000120060305WT@#YYYWZ11222212204310100000000 -T320230111111637511120160109WT@@WYY9@11222212204398100000000120130102WTTP#@@B@11222212204303100000000 -T12023011111163756925000414191120232110376300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111116375693219730426WT@YYBT9P1222212222225012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111637569120130312WTT0YYP0Z12222112206303100000000 -T12023011111163757823700414332120313210835300000000010006540050000000000000000000000000000000000222222000000002229032 -T2202301111116375781219780123WT@9TPY9W1222212222223012213220065423010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111637578120110727WT@9TPY9W12222112204304200000000120080314WT@9TPY9W12222112204307200000000 -T12023011111163773020600402141120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116377303219500307WT@#@999Y2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001499000000000000 -T320230111111637730120080121WT@00TWT022222112206306100000000 -T12023011111163778722000413731120412110814300000000001006540410000000000000000000000000000000000222222000000002229012 -T2202301111116377871220000107WT@09W@@W2221222222221012211110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116377872219900713WTTYWTT@92222221222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111637787120220709WTTYYYYYZ22212222204398100000000120190307WTTZZYWBB22212212204398100000000 -T12023011111163782224200403461120423110941300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111116378221219900404WT@TT#ZY@2222211222222011212110035721011940000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111116378221219900105WT@ZWY90@2222212222222021212190510923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111637822120140726WTT9B00TZ22222122205303100000000120100122WT@TTB90W22222122205305100000000 -T12023011111163791923500410671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116379193219560712WT@00#0Z02222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001770000000002531 -T320230111111637919120040312WT@WBY9@P22222112206311100000050 -T12023011111163797624200414351120413110951300000000000407710150000000000000000000000000000000000222222000000002229012 -T2202301111116379761219810709WTTB#0Z##2222212222221012213120421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111637976120120202WTT9WY0TY22222112204304100000000 -T320230111111637976120180323WT@T##PYY22222112204398100000000120130904WT@P#Y9W922222112204303100000000 -T12023011111163805224200409731120433111034300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116380523219660723WTTP@###Z2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001236000000000257 -T320230111111638052120130907WT@TYZ##@12222122206302100000103 -T320230111111638052120220208WTTBZTYT#12222112206398100000000120170912WT@0YWZTP12222122206398100000000 -T12023011111163827320800414651120312110826300000000000006540810000000000000000000000000000000000222222000000002229072 -T2202301111116382731219780426WTTTZP@ZT2222212222221012212110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111638273120110401WTTZZ0ZT922212222204305100000000120070327WTT9Z@B9022212212204308100000000 -T12023011111163837222000407831120323110704300000000120906540050000000000000000000000000000000000222222000000002229012 -T2202301111116383721219750123WTT#@WPYY2212222222222011213290065421011938000000000000000000000000000000000000000000000000000000000000311700000000000000000000 -T2202301111116383721219770701WT@#WP0W@2212221222222021216290065423011800000000000000000000000000000000000000000000000000000000000000294600000000000000000000 -T320230111111638372120110409WTTYZZ#@022122222204305200000000 -T12023011111163857124200414721110213110611300000000000004590070000000000035001000000000000000000222222000000002229012 -T2202301111116385711219830201WT@PB9Z0P2221221222223012212110105023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111638571120170404WTTZW9Y@P22212212204398100000000 -T12023011111163857725900402831120213110611112250000000005280160000000000070001000000000000000000222222000000002229012 -T2202301111116385771219880723WTT@0#W#02221222222225012212110273323010100000000000000000002000000000000000000000000000000000000280000000000000000000000000000 -T320230111111638577120220413WTTB0PPZY22212122204398100000000 -T12023011111163868924500405781110413110611300000000000005800060000000000000000000000000000000000222222000000002229012 -T2202301111116386891219830204WT@YW#0B@2222211222223012213110144621011801000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111638689120120222WTTT#9@YP22222122204304100000000 -T320230111111638689120180313WT@B9PT#@22222122204398100000000120140401WT@#WB9Z@22222112204398100000000 -T12023011111163870524100414322120312210835300000000005006540070000000000000000000000000000000000222222000000002229032 -T2202301111116387051219890727WT@9TPY9W1222212222225012206910006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111638705120090201WTTZ@9@WW12222112204306100000000120070401WT@BBPW#912222112204308100000000 -T12023011111163871223500410671120233120000105320000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111116387123219650201WT@TTW9PT2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000321600000000000000000000 -T320230111111638712120120714WT@YYW#WB12212222206303100000000 -T12023011111163872122000410221120212110611300000000000005280660000000000000000000000000000000000222222000000002229072 -T2202301111116387211219890921WT@9W#0Y02222212222221012213121030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111638721120180327WTTPWW9@B22222122204398100000000 -T12023011111163873324200404891120232110516300000000000004170920000000000000000000000000000000000222222000000002229022 -T2202301111116387332219620724WTTTWTZP92221221222211012212110223813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111638733120130104WTTWY9@BZ22212212204302100000000 -T12023011111163889522100406981120333110598300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111116388952219750308WT@#B9BYZ2222211222222012213910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111638895120190227WTT9T0ZPY22222112204398100000000120170513WT@999#YY22222112204398100000000 -T12023011111163897125900402721120423110662300000000028307700240000000000000000000000000000000308222221000000002229012 -T2202301111116389711219990312WT@9Y9P#W1222212222221011212190035723011800000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T2202301111116389711220020123WT@B@Z00Z1222211222221011211190035723011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111638971120210304WTTYYT99Z12222112204398100000000120190314WT@9TZ@#Y12222122204398100000000 -T12023011111163899423500407611120233110516300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111116389943219670121WTT#T@#BW2222212222213012211110144613069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111638994120100708WTT9BB0#@22222122206304100000000 -T12023011111163900824200411401120333110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116390083219520913WTT#B0ZPW2222211122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001180000000000000 -T320230111111639008120070723WT@Z0B@YY22222122206309100000000120060901WT@9P9Z9P22222122206310100000000 -T12023011111163908722000407241110323110740300000000000000200010000000000000000000000000000000000222222000000002229012 -T2202301111116390871219980923WTTY09#B02222122222221011212190025821011801000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116390871219990708WTT09YP@#2222121222221011211190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111639087120200502WT@WB#@0B22221222204398100000000 -T12023011111163910125900402721120733111116300000000035007710260000000000000000000000000000000000222222000000002229022 -T2202301111116391012219880927WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116391012219800108WT@YYBT9P1222221222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111639101120060411WTTYBP@PW12222222204311100000000 -T320230111111639101120090923WT@9WZW#W12222222204308100000000420070923WTT0Z0BWZ12222212104310107840000 -T320230111111639101120170418WTTPWWZ@P12222222204398100000000120130312WT@0#PT@W12222212204303100000000 -T12023011111163928124200414351120113110376300000000000304170070000000000000000000000000000000000222222000000002229012 -T2202301111116392811220030501WTT@PWTZP2222212222221013210110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111163936722000406211120413111034300000000000007320110000000000000000000000000000000000222222003800012219012 -T2202301111116393671219810401WT@9P0TTY1222212222221012216210124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000500 -T320230111111639367120060102WTT0@W@BP12222112204310100000000 -T320230111111639367120130327WT@ZY9PT#12222112204302100000000120080323WTTYYP9W912222122204307100000000 -T12023011111163945022000404842120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111116394501219940912WTT0T99PT2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116394501219990312WTT9@@YY92222212222222021298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111639450120210308WTT#WW#0Y22222122204398200000000 -T12023011111163946223500411471120313110740300000008000000010200000000000000000000000000000000000222222000000002229072 -T2202301111116394621219840308WTT9P#Z0P2222212222221012212110780011011900360000000000000000000000000000000000000000000000000000000000229200000000000000000000 -T320230111111639462120150211WTTTYPY@Z22222112204312100000000120120404WT@YYPBPT22222112204303100000008 -T12023011111163951923900406231120213110537300000000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111116395191220000427WT@@#9#@Z2222212222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111639519120210923WTTYBBP@Y22222122204398100000000 -T12023011111163961925900402831120212110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116396191219990527WTTYP#Y9Z1222212222221012210110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111639619120220313WT@9TPY9W12222122204398100000000 -T12023011111163973120500409121120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111116397311219870326WTTP@00WZ2122222222221013210190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111163976125600414551120533110835300000000000006540230000000000000000000000000000000000222222000000002229022 -T2202301111116397612219960123WT@YYBT9P1222222222221012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111639761120160723WTTTZ99YB12222222204398100000000420140304WT@YYBT9P12222212204398900000000 -T320230111111639761120210912WTTYZPWYT12222112204398100000000120210912WT@9@BBYY12222112204398100000000 -T12023011111163980624200404051120313111503300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111116398061220010718WTTTPBWW@2221222222221012212110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111639806120220314WT@PWBTWT22222122204398100000000120200912WT@PP0TY@22222222204398100000000 -T12023011111163987623700414331110233110446300000000000003630310000000000000000000000000000000000222222000000542219021 -T2202301111116398763219880321WT@@Y@BBB2221222222222012213110085211069940000000000000000000000000000000000000000000000000000000000000343600000000000000000049 -T320230111111639876120200309WT@9#YW@P22212222207398100000000 -T12023011111163994422700403021120213110598300000000000605280270000000000000000000000000000000000222222000000002229012 -T2202301111116399441219920226WTT#P@ZZP2222212222225012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111639944120160227WT@W#09@B22212212204301100000000 -T12023011111163994524200401241120213110536300000000000000010480000000000000000000000000000000000222222000000002229012 -T2202301111116399451219790327WTT#0BZYY2222212222221012216110501011011900210000000000120000000000000000000000000000000000000000050000136400000000000000000000 -T320230111111639945120100404WT@WWT@W022222122204305100000000 -T12023011111164016421700406141120323110746300000000060505810050000000000070003000000000000000000222222000000732219012 -T2202301111116401641219910918WT@B9##9@2222211222221011212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116401641219960326WT@0BW#BZ2222212222221011212110065421011805000000000000000001000000000000000000000000000000000000210000029100000000000000000000 -T320230111111640164120180105WT@@Y@9Z022222112204398100000000 -T12023011111164017224200412571120213110611300000000003705280530000000000035003000000000000000000222222000000002229072 -T2202301111116401721219940326WT@ZY9#Z#2221222222221012211110850023011800000000000000000004000000000000000000000000000000000000410000000000000000000000000000 -T320230111111640172120140411WT@YWB@#W22212212204302100000024 -T12023011111164022722000405841120213110599110430000000003160230000000000000000000000000000000211122222000000012219012 -T2202301111116402271219960727WT@WPZPBW2222212222221012211110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111640227120180712WT@TYWZY922222122204398100000000 -T12023011111164027220400409801120633111232119820000219908880740000000000000000000000000000000000222222000000002229022 -T2202301111116402723219580724WT@Y90PBP2222212222225012216110095111069923000000000000000000000000000000000000000000000000000000000000296000000000000000000000 -T320230111111640272120040324WTTT#TW0B22222122206311100000000 -T320230111111640272120090124WTTTWB#@P22222112206305100000000120060112WTTW9@TPW22222112206309100000100 -T320230111111640272120130223WT@YWZYTT22212222206303100000000120110302WT@T9WTBY22222112206304100000000 -T12023011111164027423500408281120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116402741219890423WT@9TPY9W1222222222223012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111640274120060105WT@9TPY9W12222222204310200000000 -T12023011111164036422000410051120233110493300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116403643219920924WTT9W#YB@2222212222221012209110283213069900000000000000000000000000000000000000000000000000000000000000000000000000000000002016 -T320230111111640364120060527WTTP9@B@P22222112207309100000000 -T12023011111164045524200401241120323110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111116404551219980924WTTB#9@##2222212222222011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116404551219940423WTT#9ZBBP2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111640455120200123WT@9TPY9W22222112204398200000000 -T12023011111164049825900402632120323210835300000000000006540080000000000000000000000000000000000222222000000002229032 -T2202301111116404981219850511WT@9TPY9W1222222222222011210990025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116404981219850226WT@9TPY9W1222221222222011210990025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111640498120200922WT@9TPY9W12222222204398900000000 -T12023011111164052720500409121120313110796300000000000206540710000000000000000000000000000000000222222000000002229072 -T2202301111116405271219940704WTTPPP#9Y2222212222223012212110970023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111640527120170904WTTZ#BTPY22222112204398100000000120120727WT@90@BTW22222112204303100000050 -T12023011111164056925200407301120413110972300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111116405691219960401WTT9Z@B9@2222212222221012212110065423011800000000000000000000000000000000300002000000000000000000010000000000000000000000000000 -T320230111111640569120160907WTTWB9B0Z22222122204398100000000 -T320230111111640569120210302WTTPB9WZ@22222112204398100000000120180127WTTWYP0W922222122204398100000000 -T12023011111164057320600404491120333120000300000000000005280350000000000000000000000000000000000222222000000002229022 -T2202301111116405733219850107WTTB0ZTWP2222212222222012211110006011069932000000000000000000000000000000000000000000000000000000000000091100000000000000000000 -T320230111111640573120200521WT@#ZWP0W22122212207398100000000120150718WTTZP#TY012222112207398100000000 -T12023011111164075924500410691120233110516300000000060004170990000000000000000000000000000000000222222000000002229022 -T2202301111116407593219490902WT@#9#90T2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000791000000000000 -T320230111111640759120060713WT@@9BPT@22222122206308100000050 -T12023011111164079322000414461120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116407933219590907WTTPYY0ZZ2222212222222012213110006011069919000000000000000000000000000000000000000000000000000000000000174700000000000000000000 -T320230111111640793120180326WTTWY#YZ@22222122206398100000000 -T12023011111164089524200403991110313110740300000000000003660150000000000000000000000000000000261122222000000272219072 -T2202301111116408951219740223WTTY0WZZY1222222222223012212110670022011900000000000000300000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111640895120100211WTTT9T0Z@22222112204307100000000120070701WT@B#90ZB22222112204309100000000 -T12023011111164091821700407751120233120000300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111116409183219780321WTT#P@9B92222212222222012213110184211069940000000000000000000000000000000000000000000000000000000000000412700000000000000000000 -T320230111111640918120140907WT@B##0TP22222122207302100000000 -T12023011111164092420800411991120423110939300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111116409241219810321WT@9#WZT02222211222222011211290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116409241219840904WT@9W@0TT2222212222222021211290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111640924120160918WTT0#9YP022222122204398200000000120080913WT@00P#9B22222122204309200000000 -T12023011111164095022000403891120212110598300000000146005280230000000000000000000000000000000000222222000000002229012 -T2202301111116409501219940713WT@0@WYWB2222212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111640950120210412WTTP@#@9Z12222112204398100000000 -T12023011111164099722000402891120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111116409971219900104WTTW#ZB@T1122222222221012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111640997120220411WTT99@#WT22222212204398100000000 -T12023011111164101824200404281120113110376300000000000004170080000000000000000000000000000000000222222000000002229012 -T2202301111116410181219830327WTTB9Y#YT2222212222221013210190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111164107725600404161120313110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111116410771219880318WT@#YYYTZ2222211222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641077120200914WT@BYB#PB22222122204398100000000120100711WT@9##WZ912222112204305100000000 -T12023011111164109920800404431120333120000300000000000005280380000000000000000000000000000000000222222000000002229022 -T2202301111116410993219650226WTTT9PZWT2222212222222012211110283213069900000000000000000000000000000000000000000000000000000000000000860000000000000000000000 -T320230111111641099120220407WT@Y9#9PY22222122206398100000000120200914WT@Y0ZWBP22222112206398100000000 -T12023011111164115123700414331110313110704300000000000001260370000000000000000000000000000000000222222000000002229012 -T2202301111116411511219840912WT@T@WTY91222222222221012212110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641151120070723WT@P#0PBP12222212204307100000000120070418WT@ZB9B9Z12222222204309100000000 -T12023011111164120624200411401120233120000300000000000504170410000000000000000000000000000000000222222000000002229022 -T2202301111116412063219640423WT@BB0#PT2222212222222012212120332713069900000000000000000000000000000000000000000000000000000000000000485700000000000000000000 -T320230111111641206120070912WTT#@WTBY22222112206309100000000 -T12023011111164127825900402831120233110599300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111116412783219660711WT@ZYBBW@2221222122224012216120830013069900000000000000000000000000000000000000000000000000000000000000000000000922000000000000 -T320230111111641278120140724WTT0BBB0B12212122206301100000050 -T12023011111164129624200409091120213110611300000000000005280340000000000000000000000000000000000222222000000002229072 -T2202301111116412961219750312WTT@#BWZY2221222222221012216111790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641296120090414WTTPB#@Y#22212222204306100000000 -T12023011111164130020600401641110213110611300000000000000170100000000000000000000000000000000000222222000000002229012 -T2202301111116413001220030101WT@Z9TT@P2222212222221012210110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641300120220427WT@T0#9TB22222122204398100000000 -T12023011111164134224700409321120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116413421219720911WT@9TPY9W2222212222222012213210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641342120050312WT@BY0WTP22222122204310200000000 -T12023011111164135324200403511120412111034107710000000407710190000000000035009000000000000000000222222000000002229012 -T2202301111116413531219780413WT@@00#TB2221222222225012216110204023011400000000000000000000000000000000000000000000000000000000160000000000000000000000000000 -T320230111111641353120060118WT@@0@BP@22212222204311100000000 -T320230111111641353120150123WT@ZZB@WZ22212212204302100000000120120318WT@#PBZ0T22212222204303100000000 -T12023011111164147822000407411120323110835300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111116414781219790907WT@9T@0#Z2222211222222011212290124823011800000019000200000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111116414781219840409WTTYZZZP@2222212222222021212290124823011800000019000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111641478120190121WTTYT0W#022222122204398200000000 -T12023011111164148523500408281120313110835134640000000006540300000000000000000000000000000000000222222000000002229012 -T2202301111116414851220020112WT@PBTW901221222222221012212110312923011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111641485120210413WTT9Y@99T12212212204398100000000120190114WT@@PY@9Y12212222204398100000000 -T12023011111164157820800410781120333120000300000000000005280610000000000000000000000000000000000222222000000002229022 -T2202301111116415783219640727WT@@0@ZTY2222212222222012212110006011069940000000000000000000000000000000000000000000000000000000000000392000000000000000000000 -T320230111111641578120110926WT@YWYY0B22221222206305100000000120070518WT@9PWPWB22221212206309100000000 -T12023011111164159322000413731120213110557300000000001205280060000000000000000000000000000000000222222000000002229012 -T2202301111116415931219800909WT@ZP9ZW#2222212222225012212110075323010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111641593120070224WTT@9Z@TB22222112204309100000000 -T12023011111164161323500411471120213110598117460000001105280110000000000000000000000000000000000222222000000002229012 -T2202301111116416131219940114WTT#0B9YT2222212222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641613120200711WT@#09@9Y22222122204398100000000 -T12023011111164170821400408021120433110740300000000050205280270000000000000000000000000000000000222222000000002229022 -T2202301111116417082219920413WT@YYBT9P1222222222223012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641708120090312WTT#W9PB012222222204306100000000 -T320230111111641708120130927WTTBWZ#ZW12222212204303100000000420120426WT@BWP@WP12222212104303109140000 -T12023011111164176323700414331120533110376300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111116417632219900423WT@YYBT9P1222212222222012203910075313079900000000000000000000000000000000000000000000000000000000000000080000000000000000000000 -T320230111111641763120210709WTTBTB0YT22222222204398100000000420180113WT@YYBT9P12222122204398900000000 -T320230111111641763420170401WT@YYBT9P12222112204398900000000420100526WT@YYBT9P12222122204302900000000 -T12023011111164177023500414281120413111034300000000045307710070000000000000000000000000000000000222222000000002229012 -T2202301111116417701219800118WTTYZWTY@2222222222225012215110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641770120070901WT@#Y9@ZP22222222204309100000000 -T320230111111641770120110404WTT@WZT#022222222204305100000000120080311WTTBY@W0922222222204307100000000 -T12023011111164180325900402831120213110446300000000000205280050000000000000000000000000000000000222222000000002229012 -T2202301111116418031219740322WTT9YZ9#P2122221222221012216110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111641803120070909WT@T@#Z@T21222222204309100000000 -T12023011111164180924700400741120213110611300000000000505280490000000000000000000000000000000000222122000000002229012 -T2202301111116418091219760518WTTW0B9992222212222223012214110510923011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111641809120060109WTTPY@@ZT22222122204310100000050 -T12023011111164185225000403231120233110516300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116418522219980423WTT9WTP#T2222211222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111641852120210527WTTPBWZT#22222112204398100000000 -T12023011111164188124700402992120213210611300000000000004170060000000000000000000000000000000000222222000000002229032 -T2202301111116418815219950104WT@BZPBB92222211222222013212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116418811220020327WTTTY9PW92222222222222023212290065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111164194120200409311120213110598300000000000005280770000000000000000000000000000000000222222000000002229072 -T2202301111116419411219850112WT@WYBYYW2222212222225012213110890023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111641941120150901WTTP0#0@Z22222112204302100000000 -T12023011111164195024700401011120233120000300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111116419503219770409WT@0B9#9@2222212222225012213120213911069935000000000000000000000000000000000000000000000000000000000000215900000000000000000000 -T320230111111641950120160126WT@0#P#Z@22222122206398100000000 -T12023011111164214124900404261120433110939300000000000006540040000000000000000000000000000000000222222000000002229022 -T2202301111116421413219920118WTTB@PZ9Y1222212222221012212110006011069940000000000000000000000000000000000000000000000000000000000000323600000000000000000000 -T320230111111642141120060709WTTPZ9#@@12222112207309100000000 -T320230111111642141120130911WT@0@ZB@P12222122207302100000000120080212WTTY0#P@@12222122207307100000000 -T12023011111164217423500408281110433110407300000000000000210010000000000000000000000000000000000222222000000002229021 -T2202301111116421743219890712WT@@B@@0#1222222222223012212110263411069942000000000000000000000000000000000000000000000000000000000000650600000000000000000436 -T320230111111642174120120904WTTT99@#B12222122207304100000000 -T320230111111642174120230413WT@9TPY9W12222122207398100000000120150218WTT9YW@@@12222112207301100000000 -T12023011111164217524700408301120623111226300000000039310090060000000000000000000000000000000000222222000000002229012 -T2202301111116421751219830223WT@BZTPYW2222122222221011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116421751219770901WT@ZP@PZP2222121222221011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111642175120070509WT@99WPTY22221212204308100000000120050111WTT9WYZBZ22221212204310100000000 -T320230111111642175120130726WT@@@0T9T22221212204303100000000120100904WTT0W#P9@22221222204306100000000 -T12023011111164221524200409732120323210835300000000045006540100000000000000000000000000000000000222222000000002229032 -T2202301111116422151219960921WTTB900T92222212222223011213210075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116422151220000504WT@ZZB0BW2222211222222021212290006021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111642215120220323WTT0@B9B022222122204398100000000 -T12023011111164225220300400971120213110611300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111116422521219770307WTT00Y0992222211222221012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111642252120060323WT@Z9ZY0T21222212204309100000000 -T12023011111164227622000408891120323110766300000000117106540080000000000000000000000000000000000222222000000002229012 -T2202301111116422761219880323WT@Z0TTT#2222212222222011214290095123011800000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T2202301111116422761219880912WTT9W0W0Y2222211222222021213290095123011800000000000000000002000000040002000000000000000000000000280000000000000000000000000000 -T320230111111642276120150701WTTWT@PTY22222122204398200000000 -T12023011111164228822000411131120312110802300000000000006540220000000000000000000000000000000000222222000000002229072 -T2202301111116422881219900423WT@YTB#TW2221222222221012216110830023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111642288120210411WT@BYZZ#B22212212204398100000000120070518WTTZZTBBW22212212204309100000000 -T12023011111164238122500410151120213110598300000000000305280240000000000000000000000000000000000222222000000002229012 -T2202301111116423811220020127WT@9YTY9@2222212222221012211110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111642381120210102WT@PT0WYY22222112204398100000000 -T12023011111164238420600400871120313110855300000000005006540020000000000000000000000000000000000222122000000002229012 -T2202301111116423841219890926WT@9P#YP02222212222223012216120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111642384120200418WT@T9PZ9Z22222122204398100000250120170107WTTBB#Z9@22222122204398100000250 -T12023011111164240024700413931120312110766114720000195903900080000000000000000000000000000000000222222000002642219072 -T2202301111116424001219860927WT@YT@T@92221212222225012212110860023011700000000000000000000000000310004000000000000000000000000060000000000000000000000000022 -T320230111111642400120190707WT@999ZBP22212222204398100000000120120126WT@9PZYWT22212212204303100000241 -T12023011111164248620800411601120313110835300000000021906010100000000000000000000000000000000000222222000000532219012 -T2202301111116424861219820222WTTZ@PB#@2222212222225012216110114921011802000000000000000000000000000000000000000000000000000000000000010500000000000000000000 -T320230111111642486120090308WT@P#W@YP22222122204307100000000120080412WT@ZZ9TP@22222112204309100000000 -T12023011111164250424700404541120232110516300000000000001000880000000000000000000000000000000000222222000003172219022 -T2202301111116425042219710914WTTT#BPBZ1222212222211012210110850013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111642504120050411WTT0T@0ZY12222112204311100000317 -T12023011111164269625900402121120213110611300000000000005280040000000000070003000000000000000000222222000000002229012 -T2202301111116426961220000513WT@#00@T@1222211222221012298110055523011800000000000000000002000000000000000000000000000000000000070000000000000000000000000000 -T320230111111642696120180212WTT0@W#9@12222122204398100000000 -T12023011111164269824700413761120312110611300000000000003920910000000000000000000000000000000261122222000000012219072 -T2202301111116426981219700411WT@@PB09B1222212222221012216110790023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111642698120100227WT@@W90W022222112204306100000000120040304WTTPZWWPT11222122204311100000000 -T12023011111164277324700406701120612111434300000000001808880560000000000000000000000000000000000222222000000002229072 -T2202301111116427731219740527WT@WBPPBZ2222211222222012212110930023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116427732219810518WTTTZY0PW2222212222212022206290710013089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111642773120080507WTTB90#TZ12222122204308100000000120070527WT@0W#Y#W22222122204309100000000 -T320230111111642773120140923WT@W#B0TW22222122204302100000000120090709WTTZPBT@922222112204307100000000 -T12023011111164279524700406491120213110598300000000000005280380000000000070004000000000000000000222222000000002229012 -T2202301111116427951219880102WTTW@Z9ZB2222212222221012211110392121011940000000000000000002000000000000000000000000000000000000310000000000000000000000000000 -T320230111111642795120140723WT@#0ZTB#12222122204302100000000 -T12023011111164285422000413731120313110835300000000000006540170000000000000000000000000000000000222222000000002229072 -T2202301111116428541219910711WTTBP0BZP2221222222221012216110730023011900000000000000000000000000360000000000000000000000000000000000000000000000000000000000 -T320230111111642854120150401WT@#09@Y022212212204398100000000120110324WT@0B#9Z922212212204303100000000 -T12023011111164289822000405181120232110493300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116428983219770224WTT@@W#Z@2122222222221012212111660011069919000000000000000000000000000000000000000000000000000000000000168100000000000000000000 -T320230111111642898120220227WT@ZZ@T@Z21222212207398100000000 -T12023011111164299024200414351120313110766117200000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111116429901219950921WT@BBB#9@2221221222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111642990120200426WTTPTWZY#22212222204398100000000120180304WT@ZBBTWT22212222204398100000000 -T12023011111164304121700406141120233120000300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111116430413219650527WTTWYZYT92222212222222012212110006011069943000000000000000000000000000000000000000000000000000000000000652300000000000000000000 -T320230111111643041120050923WTTT0PTW@22222112206311100000000 -T12023011111164304724200403511120213110611300000000000105280020000000000000000000000000000000000222222000000002229012 -T2202301111116430471220020113WT@@WP0BB2222212222221012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643047120200421WT@PYPZ0#12212222204398100000000 -T12023011111164314621700407751120313110835300000000000006540160000000000000000000000000000000000222222000000002229072 -T2202301111116431461219750314WTT9Y#9P02222211222225012213110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643146120160523WT@WT#90922222122204301100000000120110722WT@Z99ZZP22222122204305100000000 -T12023011111164322923500407611120313110766300000000580006540130000000000000000000000000000000000222222000000002229012 -T2202301111116432291219870112WT@9@#T9W2222222222224012208210144623011800000000000000000000000000000000100002000000000000000000060000000000000000000000000000 -T320230111111643229120170324WT@@PT9PY12222222204398200000000120140412WTT#TTPYY22222212204301200000000 -T12023011111164323222000413731120312120000300000000000004170990000000000000000000000000000000000222222000000002229072 -T2202301111116432321219670423WT@@Y@9#P2222211222222012206111300023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116432322219730104WT@W9@TPY2222212222212022206190105013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111643232520160309WTTZ0WYT022222112104398109140000 -T12023011111164324724200404051120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116432471219920113WTTB@WZ#P2222221222221012211110045621011732000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643247120190214WTTYPZWBZ12222212204398100000000 -T12023011111164333520600402141120233110516300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111116433352219880127WTT@YW#0W2221212222211012212110095113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111643335120210901WTT#TWT9Z22212112204398100000000 -T12023011111164340124700406631120523111116300000000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111116434011219800123WT@9TPY9W2222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116434011219760427WT@9TPY9W2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643401120070423WT@9TPY9W22222112204309200000000 -T320230111111643401120150902WT@9TPY9W22222112204301200000000120140422WT@9TPY9W22222112204302200000000 -T12023011111164341124700413931120213110576300000000000005280390000000000000000000000000000000000222222000000002229072 -T2202301111116434111219870112WT@P@WZBZ2222212222225012212110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643411120050711WT@9T0T9Y22222122204311100000050 -T12023011111164344622000414461120433110835300000000020006540240000000000000000000000000000000000222222000000002229022 -T2202301111116434462219850408WT@YYBT9P1222221222221012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643446120080318WT@0Z#TT#12222222204307100000000 -T320230111111643446120150318WT@90WTTW12222222204398100000000120150407WTTTP@PPZ12222222204301100000000 -T12023011111164349824700408091120212110611300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111116434981219750121WTT@YTY0#2221222222221012213110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643498120060927WTTPBP#@922212222204309100000000 -T12023011111164357524500405781120323110835300000000000006540320000000000000000000000000000000000222222000000002229012 -T2202301111116435751219770713WT@PB##0B1122222222222011211110362423011800000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T2202301111116435751219820721WT@0@#@Z@2122221222222021212190075323011800000000000000000004000000000000000000000000000000000000180000000000000000000000000000 -T320230111111643575120080323WT@@9BYZ022222122205308100000000 -T12023011111164359323500407161120412110827300000000000007710080000000000000000000000000000000000222222000000002229072 -T2202301111116435931219940401WT@#WT@992221222222221012210110700023011800000000000000000000000000000000000000000000190000000000000000000000000000000000000000 -T320230111111643593120110224WTTP@#@T#22212212204304100000000 -T320230111111643593120120108WTT#9T#PW22212212204302100000000120120108WTT@YPY0B22212222204304100000000 -T12023011111164369824200404421120213110611300000000000105010150000000000000000000000000000000000222222002600012219042 -T2202301111116436981219830524WTTT9PPYP2222212222221012214110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643698120090204WTT#ZT@ZZ22212222204307100000000 -T12023011111164374724600411871120313110587300000000000001280060000000000000000000000000000000126122222000004002219072 -T2202301111116437471219740912WTT0WPWP@2222212222221012216110950021010205000000000000000000000000000000000000000000000000000000000000080000000000000000000000 -T320230111111643747120070426WT@@Z#ZTW22222112204308100000000120060423WT@B9#9W#22222112204309100000000 -T12023011111164375222000411551120313110835300000000000003920220000000000000000000000000000000261122222000000012219012 -T2202301111116437521219960905WTT9@0WZB1122222222221012212110263423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643752120190927WTTPZY@T911222212204398100000000120150318WT@9@#Y0T11222222204398100000000 -T12023011111164379024200402501110213110611300000000000003230010000000000000000000000000000000000222222000000002229012 -T2202301111116437901219990312WT@Z@Y0PB2222122222221012212110025823010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643790120180723WTT#@T90922221212204398100000000 -T12023011111164380922000411551120313110740124430000000005280290000000000000000000000000000000000222222000000002229072 -T2202301111116438091219870402WTT9YBPTT2222212222221012209110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643809120220405WTT@#WPW#22212212204398100000000420070118WT@YPZYPZ22222112104306109140000 -T12023011111164397525900403551120533111034300000000000007710100000000000000000000000000000000000222222000000002229022 -T2202301111116439752219880713WT@YYBT9P1222212222222012211920312913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111643975120100707WTTZ09#YB12222122204305100000000120080924WT@TWWWZP12222122204308100000000 -T320230111111643975120150323WT@TB0T9@12222112204398100000000120120227WTTZ@Z0PY12222112204304100000000 -T12023011111164399620800410781120312110740117390000000000140430000000000000000000000000000000000222222000006402219012 -T2202301111116439961219810221WT@@W@0YB2222212222221012212110421821011817000000000000000000000000000000000000000000000000000000000000127900000000000000000000 -T320230111111643996120210112WTT@WZB0@22222112204398100000000120130914WT@TWT#Y#22222122204304100000000 -T12023011111164405525800405061120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116440553219670421WT@BWZBY02222212122222012215110006013069900000000000000000000000000000000000000000000000000000000000000000000001715000000004523 -T320230111111644055120050914WT@#YBW@T22222112206311100000050 -T12023011111164427121700406141120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116442711219950718WT@@#B@WZ1222212222221012211110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111644271120220711WTTTBTB@@11222222204398100000000 -T12023011111164435322000411981120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116443533219540727WTTPY0Z@Z2222211122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002058000000000000 -T320230111111644353120050112WT@WZW9P022222112206310100000050 -T12023011111164447724200406011120713111500300000000000011650030000000000000000000000000000000000222222000000002229012 -T2202301111116444771219760908WT@Y#@#YY1222222222225012212110045621011732000000000000000001000000000000000000000000000000000000090000000000000000000000000000 -T320230111111644477120100904WT@999WW912222212204305100000000120060426WT@P@@Z0#12222212204310100000000 -T320230111111644477120140418WT@0ZZ#BT12222222204302100000000120110712WTTZ@PYY912222222204305100000000 -T320230111111644477120200124WT@BPP0##12222222204398100000000120160927WTT099ZY@12222212204398100000000 -T12023011111164450325900404001110633111034300000000000001430990000000000000000000000000000000000222222000006282219021 -T2202301111116445032219790926WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000250 -T2202301111116445032219860526WT@YYBT9P1222221222221022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111644503120090909WT@Z@@Z9Y12222212204307100000000120070326WTT0#Z9#T12222212204308100000215 -T320230111111644503120120102WTT@W#9P012222222204303100000000120100907WTT99T#@Z12222212204304100000000 -T12023011111164454325600413441120232120000300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111116445433219700204WT@P9TP002221222122221012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001159000000000000 -T320230111111644543120090921WT@#Y@PBW22212212206307100000000 -T12023011111164460021000412411120233110598300000000000005280160000000000000000000000000000000000222222000000002229022 -T2202301111116446001219890708WTT0#ZP0Y2222211222221012216110174323099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111644600120170307WTT#BT#TT21222222204398100000000 -T12023011111164462125900414481120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111116446211219990901WTTW90YBB2222212222221012212110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111644621120220527WT@WYYBPB22222112204398100000000 -T12023011111164467222000403531120412110939300000000000005650380000000000000000000000000000000000222222000000892219012 -T2202301111116446721219800227WT@@0BZT@2122222222223012212110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000088 -T320230111111644672120130122WTTP9YZP#21222212204303100000000 -T320230111111644672120200202WT@ZYP0@#11222212204398100000000420170323WTTTBZB9P11222212104398109140000 -T12023011111164471920600400802120213210407300000000000005280070000000000000000000000000000000000222222000000002229032 -T2202301111116447191219900707WTTBTWP9B2222122222221012216910085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111644719120140909WT@9@W@9P22221222204302900000000 -T12023011111164478822000410221120233110446112970000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111116447883219860418WTTZ9WWBP2221212222221012213110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111644788120190311WT@B@#YYW12222112207398100000000 -T12023011111164485624500405781120233120000103330000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111116448565219850313WTTBZ#@ZZ2222212222222012211110045611069939000000000000000000000000000000000000000000000000000000000000275200000000000000000000 -T320230111111644856120110121WT@Z#BT@Z12222112209305100000000 -T12023011111164491123900403801120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116449112219630311WT@BWYZ#Y2222212222215012212120940013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111644911120060711WT@P0P@##22222122204308100000000 -T12023011111164498724500405781120312110769300000000000006540720000000000000000000000000000000000222222000000002229072 -T2202301111116449871219810311WT@@W#WB@2222212222221012212111340023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111644987120110927WTT#@#9@#22222222204305100000000120080413WTT@PWWWP22222212204308100000000 -T12023011111164502722000413731120333110611111050000035105280220000000000000000000000000000000000222222000000002229022 -T2202301111116450272219810901WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645027120220427WTTBW90T912222222204398100000000120160927WTT#Z9WBB12222212204398100000000 -T12023011111164511622000400281120213110599300000000000003160150000000000000000000000000000000211122222000000012219012 -T2202301111116451161219930711WTTWTP@TW2222212222221012211110154523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645116120220404WT@@YTW9Y22212212204398100000000 -T12023011111164512625900402631120313110542300000000000003920190000000000000000000000000000000261122222000000012219012 -T2202301111116451261219930723WTT@P#0BY2222222222223012212110174323011900000000000000000000000000350001000000000000000000000000000000000000000000000000000000 -T320230111111645126120160413WTT9#0@9922222222204398100000000120140401WT@@99#PZ22222222204302100000000 -T12023011111164514722500410151120413110939300000000580207710210000000000000000000000000000000000222222000000002229012 -T2202301111116451471219810113WT@#9B#YB1222212222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645147120070427WT@9WZ0BT12222122204309100000000 -T320230111111645147120170427WT@ZYYW@Y12222112204398100000000120080208WT@#YBWYB12222112204308100000000 -T12023011111164515320600400801120313110766104870000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111116451531219860307WTTW0Z@0#2221221222221012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645153120140423WTTPP@9PB22212212204398100000000120070114WT@9B0Z#Z22212222204309100000000 -T12023011111164531024700408301120213110554300000000000000010370000000000000000000000000000000000222222000000002229012 -T2202301111116453101219800301WTT0BY#WT2222212222221012212110471311011800200000000000000000000000000000000000000000000000000000060000125500000000000000000000 -T320230111111645310120080911WT@9Z@W#Y22222112204308100000000 -T12023011111164540022000403351120333110611300000000000005280210000000000000000000000000000000000222222000000002229022 -T2202301111116454002219980902WT@BZ@P@Z1222212222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000001000 -T320230111111645400120190321WT@0YB0@011222222204398100000000120180213WT@ZTWB0012222112204398100000000 -T12023011111164546823500412161120312110791300000000000006540640000000000000000000000000000000000222222000000002229072 -T2202301111116454681219950402WT@Y@@PP@2222212222221012212120650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645468120210718WTTBPBZBT22222112204398100000000120170912WTT@Y9BZT22222122204398100000000 -T12023011111164551923700414331110213110611104310000000002550260000000000035007000000000000000000222222000002732219012 -T2202301111116455191219930326WT@@YZYYT1222222222221012212110273321011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645519120170122WTT@BY9YT12222212204398100000000 -T12023011111164557922000405321120213110598115000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111116455791219990423WTTYWZW@#2221212222221012210110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645579120220905WTT9#9#YZ22222122204398100000000 -T12023011111164583524700408981120333110558300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116458352219800423WT@0YPZ0B2222212222211012211110134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111645835120060712WT@9BP#@W22212212204309100000000120060712WTT0YP#0022212222204309100000000 -T12023011111164586523500409141120333120000300000000050005280070000000000000000000000000000000000222222000000002229022 -T2202301111116458653219770523WT@P##T@Y2212222222222012298120006013069900000000000000000000000000000000000000000000000000000000000000600000000000000000000000 -T320230111111645865120090723WTTB#TT#922122222207308100000000120080223WT@#ZB@##22122212207308100000000 -T12023011111164588224200403511120213110611300000000018005280230000000000000000000000000000000000222222000000002229012 -T2202301111116458821219790308WTTZBW9ZW2222212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645882120060107WT@Y@BZ0P22222122204310100000000 -T12023011111164593524200407271120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116459353219750313WTT@YZP#Y2221222122223012211111460013069900000000000000000000000000000000000000000000000000000000000000000000001027000000000000 -T320230111111645935120130313WTTPB#Z0022222222207301100000000 -T12023011111164594924700404541120313110766300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111116459491219910105WT@9TPY9W2222222222221012298210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111645949120210307WT@9TPY9W22222212204398200000000120140404WT@9TPY9W22222212204398200000000 -T12023011111164600123500411471110313110778300000000000001670270000000000000000000000000000000000222222000000002229072 -T2202301111116460011219850121WTTPWPB0P1222222222221012213110880021011809000000000000000000000000000000000000000000000000000000000000061400000000000000000000 -T320230111111646001120160505WT@P@#0WP12122212204398100000000120110927WT@#@@@9T12122212204305100000000 -T12023011111164608721700407751120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116460871219940421WT@YYTT0T2122222222221012216110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111646087120220927WTTY00ZY@22222112204398100000000 -T12023011111164615325000414191120423110939300000000001407710170000000000000000000000000000000000222222000000002229012 -T2202301111116461531219820914WT@@T9@B#2222222222222011213190174321011936000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116461531219850423WT@Z00Y9W2222211222222021213190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111646153120140712WTT9YT9YT22222112204302100000000120070712WT@#WPTZ922222122204309100000000 -T12023011111164616524700406701120532111116300000000000006390990000000000000000000000000000000000222222000000152219022 -T2202301111116461652219770104WTT9Y#TZT2222212222212012216110560413089900000000000000000000000000000000000000000000000000000000000000000000000000026400000000 -T2202301111116461652219630423WTTBYPZZ@2222211122212022209190006013109900000000000000000000000000000000000000000000000000000000000000000000000868019200000000 -T320230111111646165120070423WT@YBB0PZ22222212204308100000005 -T320230111111646165120110124WT@W9ZZZZ22222212204304100000005120090912WT@PBBZ9922222122204306100000005 -T12023011111164641825600414551120312110740300000000000002980580000000000000000000000000000000000222222000003562219012 -T2202301111116464181219880702WTTYPT9992222212222223012212110590121011811000000000000000000000000000000000000000000000000000000000000071100000000000000000000 -T320230111111646418120210307WT@W0W0@B22222112204398100000000120170107WT@9YTYYZ22222112204398100000000 -T12023011111164642220600409771110423110939300000000000001490010000000000000000000000000000000000222222000000002229012 -T2202301111116464221219800209WT@#Y#0#92222211222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116464221219840312WT@TY#@@T2222212222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111646422120170126WTTYPW00022222112204398200000000120060507WTTTPYZ#@22222112204310200000000 -T12023011111164645020800409831120233120000300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111116464503219680727WTT9ZPBYZ2222212222223012212110105013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111646450120160121WT@@@TP@@22222112206398100000000 -T12023011111164648124200403941120113120000300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111116464811220030126WT@TTP#TZ2221222222221013212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111164653425000406021120412110966300000000000007710230000000000000000000000000000000000222222000000002229012 -T2202301111116465341219790327WTTPWTWTY2222212222221012212110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111646534120070118WT@ZYPZ9P22222122204308100000000 -T320230111111646534120180905WTTBBBTW922222112204398100000000120110101WT@9B00T#22212212204305100000000 -T12023011111164680625900402631120213110599300000000000002700310000000000000000000000000000000090222122000001682219072 -T2202301111116468061219880918WTTBP#@9T1222212222221012208120740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000166 -T320230111111646806120050907WT@WB0WWT12222112204310100000000 -T12023011111164686322000408811120213110598300000000014005280090000000000000000000000000000000000222222000000002229012 -T2202301111116468631219750207WTT9W#@@Y2222122222221012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111646863120120309WT@YZZ9Z#22221212204304100000000 -T12023011111164688625000409431120213110598300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111116468861219840509WT@YP@9#B2222212222223012208110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111646886120160927WTTY0000#22222122204398100000000 -T12023011111164689724100402401120233110516300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111116468972219860727WTT@90#TP2222211222211012206110006013089900000000000000000000000000000000000000000000000000000000000000000000000000080800000000 -T320230111111646897120090107WT@#YZZBW12222122204305100000000 -T12023011111164694823500410671120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116469481219930109WT@P0W0ZP2222212222223012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111646948120220509WTTPY0ZZW22121112204398100000000 -T12023011111164697720600414161120433110939300000000000005280350000000000000000000000000000000000222222000000002229022 -T2202301111116469773219890124WTTBB0@0#2222212222221012216110174311069932000000000000000000000000000000000000000000000000000000000000240800000000000000000029 -T320230111111646977420110123WT@#BTPW@22222122204304100000217 -T320230111111646977120150707WT@@#PPZZ22212122209398100000100120110123WTTZ9ZY#Z22212122209304100000000 -T12023011111164703522000405321120232110516300000000000004170930000000000000000000000000000000000222222000000002229022 -T2202301111116470352219780423WT@0BWY#Y2222222222215012208110630013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111647035120080321WTTT@PZ@#22212212204306100000000 -T12023011111164713120600401641120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111116471311220000926WT@PBT00@2222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111647131120210905WT@W9#TBB22222112204398100000000 -T12023011111164735022700408491120723111480300000000000011650030000000000000000000000000000000000222222000000002229012 -T2202301111116473501219860401WT@W0T##02222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116473501219840312WT@BY#P@W2222221222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111647350120070321WTTBTZZB022222222204309200000000 -T320230111111647350120100412WTTZ@WYPP22222212204307200000000120090407WTTYBT9#022222212204308200000000 -T320230111111647350120140322WT@WT0Z@B22222212204312200000000120130204WT@BYB##B22222222204304200000000 -T12023011111164738122000411321120213110376300000000043303160230000000000000000000000000000000211122222000000012219012 -T2202301111116473811219870705WT@#ZZT@@2222212222221012211110243623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111647381120130327WTT0Z@P9@22222112204302100000000 -T12023011111164738323700414331120233110376300000000012004170860000000000000000000000000000000000222222000000002229022 -T2202301111116473832219740922WT@YYBT9P2222212222221012208910006011079901000000000000000000000000000000000000000000000000000000000000006600000000000000000000 -T320230111111647383120060308WTT#T#TBB22222112204309100000000 -T12023011111164741321000411361120312110740300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111116474131219970122WT@ZYWZ9@2122222222221012216110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111647413120220111WTTB##0P011222222204398100000000120170327WT@P90@0Z21222212204398100000000 -T12023011111164744825900403711120333120000300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111116474483219660108WTT#@WZ0Z2222212122222012212110025813069900000000000000000000000000000000000000000000000000000000000000000000001400000000000000 -T320230111111647448520150713WT@P9ZBYW22222112106398109140000120140324WTTPY9YW@22222112206301100000000 -T12023011111164751624500404321120433120000300000000120006540450000000000000000000000000000000000222222000000002229022 -T2202301111116475163219640923WTTZ0WZY@2222211122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001888000000000000 -T320230111111647516120070104WT@PBYZ#B22222112206308100000000 -T320230111111647516120140527WTTYT0ZZY22222112206301100000000120100904WT@PZZWY@22222112206305100000000 -T12023011111164760021000408061110423110854300000000000007710170000000000000000000000000000000000222222000000002229012 -T2202301111116476001219960404WT@WW0PW92222212222221011211110223823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116476001219890326WT@#YY9TT2222211222221021212190015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111647600120190114WT@BB9B@@22222112204398100000000120170312WTT90TPPT22222112204398100000000 -T12023011111164760622700407441120233110536300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116476063219570401WTT#ZYB#Z1222222122223012206110124813069900000000000000000000000000000000000000000000000000000000000000000000001064000000000000 -T320230111111647606120110918WTT00B#9T12222222206304100000000 -T12023011111164764724700406742120623211339300000000000010090080000000000000000000000000000000000222222000000002229032 -T2202301111116476471219790118WTTB0YZ@T2222221222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116476471219920723WT@WT@BP@2222222222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111647647120100723WTTB@B09W22221212204305200000000120080126WTTB9YBP#22221212204307200000000 -T320230111111647647120200918WT@PZ00#Z22222222204398200000000120160322WT@B0#ZTT22222212204398200000000 -T12023011111164780624700411201120113110306300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111116478061219890726WTT@TZYZ02122222222225013212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111164786825900403711120213110611300000000002805280090000000000000000000000000000000000222222000000002229072 -T2202301111116478681219750313WTTWBPTW@2222212222221012212111040023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111647868120120907WTTB900#P22222122204304100000000 -T12023011111164796225600400661120233120000300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111116479623219610713WT@#W09WP2222211112225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002325000000003227 -T320230111111647962120070712WTT0P0@T922222122206307100000000 -T12023011111164799024500403051120233110557300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111116479903219750321WTT#BPY#@2222212222221012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111647990120130907WT@9T@0P#12222122206302100000000 -T12023011111164802720800411931120413111034300000000000007710120000000000000000000000000000000000222222000000002229012 -T2202301111116480271219900209WT@P99TZT2222212222221012212190144621099909000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116480271219790507WT@P#Z99T1222212222225012216190144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648027120160909WT@@TZPTZ12222112204398100000000120140326WT@YYZW#P12222112204301100000000 -T12023011111164803522000405181120413110993300000000054507710660000000000000000000000000000000000222222000000002229012 -T2202301111116480351219750218WT@B#P9Y01221221222225012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648035120080923WTTT0009012212212204308100000000 -T320230111111648035120150109WT@0#Y@W#12212212204302100000000120130207WTT#TBB9Y12212212204303100000000 -T12023011111164804823900408801120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116480483219640914WTTW0@0092222212222225012211110006011069950000000000000000000000000000000000000000000000000000000000000466300000000000000000000 -T320230111111648048120210212WT@#ZTZ0B22222122207398100000000 -T12023011111164808424700406491120323110835300000000000003920160000000000000000000000000000000261122222000000012219012 -T2202301111116480841219850524WTT#WYWW92222212222221011212110372323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116480841219880427WT@9TWBZ@2222211222221011210190174323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648084120080927WTTPWZT0T22222112204308100000000 -T12023011111164838824200403941120212110576300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111116483881220000121WTTZYYT0#2222212222221012209110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648388120220905WTTT9P9@W22222122204398100000050 -T12023011111164841020600402131110312110740300000000000000610320000000000000000000000000000000000222222000005932219012 -T2202301111116484101219980427WT@Y9WZTZ2222212222221012210110332721011807000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648410120210726WTT9WY9Y022222112204398100000300120190212WTTBT9YBP22222122204398100000000 -T12023011111164850525200407301120212110576300000000010305280800000000000000000000000000000000000222222000000002229072 -T2202301111116485051219830109WT@Z0Z0@92222212222223012214111200023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111648505120050924WTT9WP0@@22222112204312100000050 -T12023011111164853222000406211120323110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111116485321219910305WTTWTBT@P2222212222222011212210114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116485321219820407WT@9TPY9W2222211222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648532120110427WT@9TPY9W22222122204306200000000 -T12023011111164856922700407441120433110611300000000078805280060000000000000000000000000000000000222222000000002229022 -T2202301111116485692219770711WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116485692219690926WT@YYBT9P1222221222222022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648569120090104WTTYY@TPT12222222204306100000000120040118WT@9W9W@B12222212204312100000000 -T12023011111164863524700408301120623111269300000000000010090020000000000000000000000000000000000222222000000002229012 -T2202301111116486351219740121WT@9YTPYW2222211222222011203290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116486351219790126WT@WWBPT92222212222222021298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648635120090101WTTTYYWTZ22222112204308200000000120090101WTTWYY@#@22222112204307200000000 -T320230111111648635120150723WTTBWZPWT22222112204398200000000120120423WTTBZTW@922122222204304200000000 -T12023011111164872520600412561120233110493300000000000004170960000000000000000000000000000000000222222000000002229022 -T2202301111116487253219680302WT@PZZPB02222212222223012213110312911069931000000000000000000000000000000000000000000000000000000000000257200000000000000000000 -T320230111111648725120110901WTTZZZ9YZ22222112206305100000000 -T12023011111164872922600405051120232110516300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111116487293219790212WT@9YPWP@2222212222215012216110540613069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111648729120050501WT@ZTWZ0B22222122207311100000000 -T12023011111164877822000406191120723111480300000000050011650080000000000000000000000000000000000222222000000002229012 -T2202301111116487781219810322WT@WTP9BY2222212222222011212290095121011821000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116487781219760526WT@0Y#W#B2222211222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648778120060201WT@ZZTPPP22222222204310200000000 -T320230111111648778120120113WT@Z0#B@022222222204304200000000120080323WT@0YY0#@22222212204308200000000 -T320230111111648778120150212WTTTTWWYB22222112204301200000000120130911WT@B9#9WZ22222112204303200000000 -T12023011111164878125200410591120333120000300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111116487813219590223WT@Z0WP9@2222212122222012212110006011069901000000000000000000000000000000000000000000000000000000000000108300000788000000000000 -T320230111111648781120140412WTTB0Y@0T22222112209302100000000120130512WTTZPZB0922222122209302100000000 -T12023011111164881220600414161120612111269300000000153510090690000000000000000000000000000000000222222000000002229072 -T2202301111116488121219770427WT@#00##02222212222225012213110700023010900000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111648812120040326WTTWTYPZP22222112204311100000020 -T320230111111648812120100423WT@0PWBYP22222112204305100000020120070921WTT9#TZB#22222112204309100000020 -T320230111111648812120150402WTT@@9@9Y22222122204301100000020120120707WT@W#PTPY22222112204303100000020 -T12023011111164887921700406141120213110611300000000000505280090000000000000000000000000000000000222222000000002229012 -T2202301111116488791220030211WT@ZB@B#W2222212222221012211110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648879120220207WT@WBZ00#22222112204398100000000 -T12023011111164891623500402711120513111199300000000284808880030000000000000000000000000000000000222222000000002229012 -T2202301111116489161219860927WT@9WY@@B1222212222223012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111648916120110723WTT#0Y#B@12222112204305100000000120080705WTTTP9ZW912222112204306100000000 -T320230111111648916120160427WTT@Y90@@12222122204398100000000120140327WTTPP#9TP12222112204398100000000 -T12023011111164892720600400801120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116489273219630727WTTTBY9@W2222211222224012212110006011069947000000000000000000000000000000000000000000000000000000000000300100000000000000000000 -T320230111111648927120100112WTTPPY0WT21222212206304100000408 -T12023011111164902723500408281120213110611300000000000505280090000000000000000000000000000000000222222000000002229012 -T2202301111116490271220020411WTT#T@Y9Z1222212222221012212110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111649027120220104WT@9P9YB@12222122204398100000000 -T12023011111164911921700409231120423110959300000000000007710270000000000000000000000000000000000222222000000002229012 -T2202301111116491191219940723WT@@PB00Z2222212222222011208110352523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116491191219940718WTT#Y#9W#2222211222222011212190283223011800000000000000000000000000000000000000190001000000000000000000000000000000000000000000 -T320230111111649119120180707WTT9#T0PZ22222122204398100000000120120727WT@ZY#ZY022222112204302100000000 -T12023011111164916524200407431120433110939121440000000006540260000000000000000000000000000000000222222000000002229022 -T2202301111116491653219790923WTTT9@Z@#2221222222221012211110940011069930000000000000000000000000000000000000000000000000000000000000217600000000000000000138 -T320230111111649165120130101WT@YW9ZP922212212206302100000000 -T320230111111649165120190404WT@@WWTWT22212212206398100000000120160709WTTP0T0Z#22212212206398100000000 -T12023011111164921320600403591120313110835300000000008006540190000000000000000000000000000000000222222000000002229012 -T2202301111116492131219980526WT@WZPYP92222212222221012210120204023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111649213120220327WTT9TY@@T22222122204398100000000120210926WT@T@0BZ@22212212204398100000000 -T12023011111164924120300401921120213110611300000000122001110230000000000000000000000000000000000222222000000002229042 -T2202301111116492411219950708WTT#90YB#2122222222221012212110144621011806000000000000000000000000000000000000000000000000000000020000048000000000000000000066 -T320230111111649241120210213WT@YZB@TZ21222222204398100000000 -T12023011111164934021700406141120213110618300000000000005280040000000000000000000000000000000000222222000000002229072 -T2202301111116493401219700911WT@P#9#9@2222212222221012212110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111649340120060426WTT@ZZ#BY22222122204309100000000 -T12023011111164945122000404841120312110835300000000000004900100000000000000000000000000000000163222122000000012219012 -T2202301111116494511219960927WTTBPW0Z#2221222222221012216120580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111649451120210923WTT@##9ZZ22212222204398100000000120150101WT@PYYY#B22212222204398100000000 -T12023011111164954624100402401120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116495463219650908WTT00@9@Z1122222222223012212110154511069930000000000000000000000000000000000000000000000000000000000000193500000000000000000000 -T320230111111649546120080904WT@PPP#ZW22222122207308100000000 -T12023011111164965822000413731120333110611300000000000005280490000000000000000000000000000000000222222000000002229022 -T2202301111116496582219940418WT@YYBT9P1222212222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111649658120150202WTTTWB@T012222112204398100000000120120123WT@@Z99#Z12222112204303100000000 -T12023011111164966424200404281120332110740300000000000001360780000000000000000000000000000000000222222000003922219022 -T2202301111116496642219520921WTTWW9Y@02221221122215012216110620013109900000000000000000000000000000000000000000000000000000000000000000000000889004500000000 -T320230111111649664120060702WTTYYZB9P22212222204311100000196120060702WT@B#YY#B22212222204311100000196 -T12023011111164970823500411471120523111199300000000000008880060000000000000000000000000000000000222222000000002229012 -T2202301111116497081219850123WT@#Z0TP@2222211222222011216290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116497081219820327WTTB@Z9YY2222212222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111649708120080121WT@BT#ZBB22222122204308200000000 -T320230111111649708120150523WTTZ0@9TT22222122204301200000000120100923WTTWWWPWT22222122204306200000000 -T12023011111164983525900410241120433110835300000000040006540090000000000000000000000000000000000222222000000002229022 -T2202301111116498352219880402WT@YYBT9P1222222222225012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111649835120060413WTT@WW@Z@12222222204310100000000 -T320230111111649835120120505WTT#Y@#YZ12222212204304100000000120080313WT@#9#Z@P12222222204307100000000 -T12023011111164984524200403511120533120000300000000000004170760000000000000000000000000000000000222222000000002229022 -T2202301111116498453219710701WTT@B@0#W2222122222222012215110006013069900000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111649845120080221WTT#@P#TT12221222209305100000000420060412WTTZZTYP#22211212204305100000000 -T320230111111649845420160413WT@0BBW0Y22212222204398100000000420140326WTT0BY9@P22211222204398100000000 -T12023011111164990524200408231120213110598300000000007105280310000000000000000000000000000000000222222000000002229012 -T2202301111116499051219810104WT@@90#WT2222212222221012215110322823011900000000000000000000000000420000000000000000000000000000000000000000000000000000000000 -T320230111111649905120130207WT@P#00T922222112204302100000000 -T12023011111164997424200410211120413111034300000000000002840430000000000000000000000000000000189122222000002982219012 -T2202301111116499741219840324WTTWP@YZB2222212222221012212110441623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111649974120070512WT@YPZ0Y022222122204309100000297 -T320230111111649974120160704WT@PBYYBW22222122204398100000000120120901WTTT0WB@W22222122204304100000000 -T12023011111164998025900406841120233110446300000000000001660980000000000000000000000000000000000222222000002512219022 -T2202301111116499803219820923WT@9YYP902122222222222012210110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000330 -T320230111111649980120080513WT@PPYW@B11222212207308100000269 -T12023011111165003320200408501120233120000300000000003004170990000000000000000000000000000000000222222000000002229022 -T2202301111116500333219460712WT@#TT#BT2222212122222012215110006011069902000000000000000000000000000000000000000000000000000000000000018800001387000000000604 -T320230111111650033120050708WT@TPPZ@B22222122206310100000000 -T12023011111165023024200411401120333120000300000000374205280990000000000000000000000000000000000222222000000002229022 -T2202301111116502303219510907WT@BYTPYY2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002318000000000800 -T320230111111650230120080901WTT9@B#ZW22222122206308100000000120060723WTTZ#W0TY22222122206309100000000 -T12023011111165038724200403511120312110704300000000055106540220000000000000000000000000000000000222222000000002229012 -T2202301111116503871219840127WTTWTZ@0@2222212222221012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111650387120120222WT@B##T@B22222112204303100000050120100318WT@YZ@BZ022222122204304100000050 -T12023011111165043122000403351120332110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116504312219760423WT@99PZY@2221222222211012216110630013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000100 -T320230111111650431120120105WT@9@0@T922222212204304100000338120080501WT@B@9T0912212222204308100000423 -T12023011111165048422600402801120533111034300000000000007710570000000000000000000000000000000000222222000000002229022 -T2202301111116504842219890412WT@YYBT9P1222212222221012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111650484120110402WTTZ9TZ9#12222122204304100000000120060414WTTZPPB9W12222112204310100000000 -T320230111111650484120220905WTT@WBTY912222212204398100000000120130404WT@BBYT9P12222122204303100000000 -T12023011111165069225100407671120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116506921219690927WT@YP@#9P2222211222223012207110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111650692120190314WT@T@B0YP22222212204398100000000 -T12023011111165076225000403231120213110598300000000000002310040000000000000000000000000000000000222222000002972219012 -T2202301111116507621220030427WTTYT@YW#2222212222221012211110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111650762120220413WT@90PY@P22222112204398100000297 -T12023011111165077222000411551120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116507722219650923WT@Y9@@ZP2221222222211012210111260013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000030 -T320230111111650772120040111WT@#YWZTY22222222204312100000000 -T12023011111165079722000408891120213110611125490000000005010090000000000000000000000000000000000222222002600012219012 -T2202301111116507971219980308WTTPYB@#T2222222222221012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111650797120170109WTT0BP#PZ22222222204398100000000 -T12023011111165100224700402991120512111116112240000000008430650000000000000000000000000000000000222222004400012219072 -T2202301111116510021219960418WT@WWP9@P2221222222221012211110750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651002120130307WTT90BB9T22212222204398100000000120120523WTTY@WWWT22212222204302100000000 -T320230111111651002120200912WT@#YBY#W22212212204398100000000120170118WT@##P@BZ22212222204398100000000 -T12023011111165103724200404281120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116510373219760913WT@#PPYPT2222122222221012212110332711069922000000000000000000000000000000000000000000000000000000000000232400000000000000000000 -T320230111111651037120120308WTTYT#9@B22221212207302100000000 -T12023011111165104324100402401120433120000300000000000006540390000000000000000000000000000000000222222000000002229022 -T2202301111116510433219730402WTTWB#YTZ2222212222221012212110006011069940000000000000000000000000000000000000000000000000000000000000463400000000000000000000 -T320230111111651043120110324WT@@99#ZT12212212206303100000000 -T320230111111651043120170313WTTTPT0#P12212212206398100000000120130118WT@PTY9Y#12212222206302100000000 -T12023011111165108225200407301120332110670118640000000005280290000000000000000000000000000000000222222000000002229022 -T2202301111116510823219780313WTT#9Z0@Y2222212222221012216110223811069941000000000000000000000000000000000000000000000000000000000000323400000000000000000000 -T320230111111651082120210202WT@W9T@0W22222122207398100000000120170227WT@W9TY#T22222112207398100000000 -T12023011111165121524200402981120312110766300000000500006540030000000000000000000000000000000000222222000000002229012 -T2202301111116512151219840418WTTTZYT@W1222222222221012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651215120090207WTT9@9Y9@12222212204308100000000120060712WTTW9PBP#12222222204309100000000 -T12023011111165124220400409801120423110939300000000020507710270000000000000000000000000000000000222222000000002229012 -T2202301111116512421219890413WTTB0W#9P2222212222225011212190283223011800000000000000000000000000000000310000000000000000000000000000000000000000000000000000 -T2202301111116512421219820414WT@WYBWWZ2222211222225011212110283221011816000000000000000000000000000000000000000000000000000000000000100000000000000000000000 -T320230111111651242120180923WT@#TBYP#22222112204398100000000120160922WT@WZ9PWP22222112204398100000000 -T12023011111165124321000411362120523211116300000000000008880030000000000000000000000000000000000222222000000002229032 -T2202301111116512431219820526WT@#9Z9Z@1222222222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116512431219790122WTTB9YTT#1222221222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651243120050723WT@0BBTZ012222222204311200000000 -T320230111111651243120110301WTTZ#P#YP12222222204304200000000120080408WTT9BW#WB12222222204308200000000 -T12023011111165125320600400801120333110740300000000000005280140000000000000000000000000000000000222222000000002229022 -T2202301111116512533219830926WT@W0B@TT2222211222221012212110006011069937000000000000000000000000000000000000000000000000000000000000274000000000000000000000 -T320230111111651253120080404WTTWZTB9P22222122207308100000032120060123WT@@BB9W922222122209310100000038 -T12023011111165129620600414871120212110611300000000000005280460000000000000000000000000000000000222222000000002229012 -T2202301111116512961219790222WT@Z0YPYB2222212222221012213120471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651296120090227WTTP0TZT@22122222204305100000000 -T12023011111165134724700401012120523211116300000000150008880090000000000000000000000000000000000222222000000002229032 -T2202301111116513471219820523WT@YTYWB#2222211222222011214290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116513471219830127WT@@9PY@Z2222212222222021214290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651347120090207WTTBYTZ@022222112204305200000000 -T320230111111651347120160312WTTB90ZB@22222112204398200000000120120318WT@Z9W0#P22222122204302200000000 -T12023011111165136525900402831120533110940300000000000006540020000000000000000000000000000000000222222000000002229022 -T2202301111116513652219740423WT@999T@Y1222211122212012212110114913109900000000000000000000000000000000000000000000000000000000000000000000000786006800000000 -T2202301111116513652219790423WT@YYBT9P1222222222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651365120050209WTT#ZBYP912222112205311100000000 -T320230111111651365120190708WT@@0WZY@12222112204398100000000120130408WT@BB9@Z012222112204303100000000 -T12023011111165137722000403531120313110835300000000080006540170000000000000000000000000000000000222222000000002229012 -T2202301111116513771219740912WTTBZ@9TP2222211222223012214110392123011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111111651377120070101WTTBT0Z9@22222112204309100000000120050921WTTWB99PW22222122204311100000000 -T12023011111165141322000406191120233120000300000000000004170480000000000000000000000000000000000222222000000002229022 -T2202301111116514133219630914WT@YZYBWB2221222222224012212110006011069942000000000000000000000000000000000000000000000000000000000000306000000000000000001742 -T320230111111651413120190401WT@W9090921222222206398100000000 -T12023011111165142620200412801120233120000300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111116514263219550304WTT@P@WBB2222212122223012214110006013069900000000000000000000000000000000000000000000000000000000000000000000001355000000000000 -T320230111111651426120090227WTT#0TTP022222112206305100000000 -T12023011111165152624700409321120233110281114070000000201640030000000000000000000000000000000000222222000002532219022 -T2202301111116515262219900318WT@YYBT9P1222222222223012212910006011079924000000000000000000000000000000000000000000000000000000000000145400000000000000000000 -T320230111111651526120180304WT@#B@TB#12222222204398100000300 -T12023011111165156320600400871120632111339300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116515632219890507WT@BB##TZ2222212222215012212110650013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111651563120050712WTTYPZ@BW22222122204309100000083 -T320230111111651563120200908WT@#PBZ@#22212222204398100000000420110326WTTB0Y9WZ22212122104303109140025 -T320230111111651563420090405WT@BZBTWY22212112104306109140025120070924WTTY0B09T22212112204307100000016 -T12023011111165168023500404531120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116516803219840326WTT#YZPZZ2222212222221012211110501011069946000000000000000000000000000000000000000000000000000000000000447800000000000000000000 -T320230111111651680120170222WT@0Z#T0@22222112206398100000000 -T12023011111165169222000408891120432110740123580000000005280790000000000000000000000000000000000222222000000002229022 -T2202301111116516922219920714WT@WP09TW2222212122211012216110015913109900000000000000000000000000000000000000000000000000000000000000000000000508042600000000 -T320230111111651692120150411WT@0Y0P@P22212222204398100000000 -T320230111111651692120180307WT@0W9ZYW22222122204398100000000420170921WT@#TP#@P22222112104398109140000 -T12023011111165173720600404121120213110611300000000000005280110000000000000000000000000000000000222222000000002229072 -T2202301111116517371219800923WTT#PP@YB2222212222221012216110790023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651737120090321WT@TBP9@Y22222122204306100000000 -T12023011111165187621000408061120323110835300000000000003680290000000000000000000000000000000245122222000000412219012 -T2202301111116518761219880302WT@0W#0ZT2222212222221011212190451521011203000000000000000000000000000000000000000000000000000000000000016000000000000000000000 -T2202301111116518761219790302WTTW0P9WY2222211222221011216190293123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651876120190227WTTPPY@Z@22222112204398100000000 -T12023011111165189423900406231120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116518942219760313WT@@TZ##Z2122222222211012209111470013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111651894120090902WT@9PTB@W11222212204306100000000120050422WT@#PY@BY11222212204311100000000 -T12023011111165192224600411871120233110517300000000000004170750000000000000000000000000000000000222222000000002229022 -T2202301111116519223219810311WTT#P@9T#2222212222221012212110194111069906000000000000000000000000000000000000000000000000000000000000055000000000000000000000 -T320230111111651922120110323WTTP##0TT22222122207306100000000 -T12023011111165197224700408361120333120000300000000000005280260000000000000000000000000000000000222222000000002229022 -T2202301111116519723219700723WTT@W0PZZ2222212222225012212110025813069900000000000000000000000000000000000000000000000000000000000000643400000000000000000000 -T320230111111651972120070327WTTYZWBP#22222122209308100000000120060505WTTW0BYP#22222122209310100000000 -T12023011111165198320600414161120513111116300000000000208880570000000000000000000000000000000000222222000000002229072 -T2202301111116519831219900227WTTYWW99Y2222212222221012212110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111651983120130923WTT@Y#PY@22222122204302100000000120110918WTTW#YB@B22222112204305100000428 -T320230111111651983120170304WTT90@PZB22222112204398100000000120140101WTTWBYPTY22222122204301100000000 -T12023011111165208420800405391120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111116520841219880212WT@0TYBTZ2222212222225012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652084120180918WT@ZYPZP922222122204398100000000 -T12023011111165209022700408351120822111691300000000011012890090000000000000000000000000000000000222222000000002229012 -T2202301111116520901219810404WTTWPP0T@2222221222222011298290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116520901219860304WTTTBW@PB2222222222222021298290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652090120110324WTT##T00W22222222204398200000000120090118WTTY@9B0922222212204398200000000 -T320230111111652090120160905WTTTZZ#@@22222212204398200000000120130112WT@WTYWPB22222212204398200000000 -T320230111111652090120190324WTTPPWP@022222212204398200000000120180113WTTT9##P022222212204398200000000 -T12023011111165216524700405901120233120000300000000014504170990000000000000000000000000000000000222222000000002229022 -T2202301111116521653219810724WTTWY@YY02222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000419600000000000000000000 -T320230111111652165120050113WTT#0WTWY22222122207310100000050 -T12023011111165226123500408281120213110572100500000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111116522611219950912WTT#PY0TT2221222222221012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652261120200912WT@TY#@B@22212222204398100000000 -T12023011111165246122000411551120233120000300000000000003750990000000000000000000000000000000000222222004100012219022 -T2202301111116524613219480418WT@90#ZYY2222212122225012215110006013069900000000000000000000000000000000000000000000000000000000000000000000001286000000002642 -T320230111111652461120070413WT@0909YP22212222206309100000050 -T12023011111165249623700414331120333110611300000000000005280910000000000000000000000000000000000222222000000002229022 -T2202301111116524962219920413WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652496120160126WT@TZB@W#12222212204398100000000120150902WT@@WBZ9012222212204398100000000 -T12023011111165254922700408351120213110598300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111116525491219910505WTTTTZ99@2122222222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000005000 -T320230111111652549120210711WTTBT@9@921222222204398100000000 -T12023011111165275621400408021120423111034300000000080007710200000000000000000000000000000000000222222000000002229012 -T2202301111116527561219880409WTTZZYYZZ1222222222225011214110164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116527561219920107WTT0B#9#Y1222211222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652756120210718WTT0@@9WY12222222204398100000000120190923WT@#B#Y9P12222212204398100000000 -T12023011111165284124200407431120233110376300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111116528412219920913WT@YYBT9P1222212222223012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652841120140522WT@#YZT9W12222112204301100000000 -T12023011111165285322000410221120212110611300000000000005280180000000000000000000000000000000000222122000000002229012 -T2202301111116528531219960208WT@BZ#@9Y1221212222221012213120411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652853120190114WT@ZWWTY#12211112204398100000050 -T12023011111165286924700405901120323110835300000000015003920250000000000000000000000000000000261122222000000012219012 -T2202301111116528691219770309WTTP9@TB02222211222225011213190233723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116528691219880323WT@PW@P#@2222212222221011211110293123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652869120180509WTTY0WBBB22222122204398100000000 -T12023011111165288522100401271120232110493300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111116528852219810318WTT9BBT@@2222212222213012212110421813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111652885120070118WTT#0YWZY22222112204309100000000 -T12023011111165291422000412231120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111116529141219870904WT@0Z#BYW2222212222221012213110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652914120220422WT@#Y9YB#22222212204398100000000 -T12023011111165295222000405181120213110611300000000000005280350000000000000000000000000000000000222222000000002229012 -T2202301111116529521219920102WT@@#ZYZY2221222222221012212120362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111652952120190904WTTPBPB#T22212212204398100000000 -T12023011111165301124500410931120213110376300000000000001870190000000000000000000000000000000125122222000002162219012 -T2202301111116530111219850312WTT@B#TPT2222212222221012212110204021011208000000000000000000000000000000000000000000000000000000000000043000000000000000000000 -T320230111111653011120080112WTT@@W9#T22222112204308100000000 -T12023011111165305622000411981120232110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116530562219650911WTT@Z@P##1222222122215012216221320013109900000000000000000000000000000000000000000000000000000000000000000000000910002400000042 -T320230111111653056120080712WTT9@ZYBT12222122204306100000050 -T12023011111165343720600409771120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111116534371219760301WTTTBBPTY2222212222221012212110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111653437120060512WTTWZP@ZY22222112204308100000000 -T12023011111165351223500404821120813111786168380000000005450460000000000000000000000000000000000222222000007442219012 -T2202301111116535121219900223WTTY@BPTZ2222212222223012212110372323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111653512120090114WTT@@0YPZ22222112204306100000124 -T320230111111653512120150512WT@B@T#9W22222112204301100000124120100727WTTT00ZBB22222112204306100000124 -T320230111111653512120190307WT@BY9@Z#22222122204398100000124120170324WT@PB0@0@22222112204398100000124 -T320230111111653512120220109WT@YY9@P022222122204398100000000120200327WT@YTY#WW22222122204398100000124 -T12023011111165363522000409971120622111339300000000380403840060000000000000000000000000000000000222222000006252219012 -T2202301111116536351219860213WTTWBZ0Y02222221222222011208290124821011940000000000000000000000000000000000000000000000000000000000000250000000000000000000000 -T2202301111116536351219910226WT@0Z@#TY2222222222222021207290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111653635120120327WTTP#YPWY22222122204305200000000120090911WT@@PTZWY22222112204307200000000 -T320230111111653635120200108WTTWP090B22222222204398100000000120140307WTT00@Z0W22222122204301200000000 -T12023011111165365722000411551120333110278300000000040002910730000000000000000000000000000000000222222000001262219022 -T2202301111116536572219760401WT@YYBT9P1222222222223012209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116536572219680318WT@YYBT9P1222221222223022208990006011079924000000000000000000000000000000000000000000000000000000000000145000000000000000000000 -T320230111111653657120110323WT@9B#WZ#12222212204303100000000 -T12023011111165369324200403941120313110835300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111116536931219870501WTTZ00Z0@2222212222225012216110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111653693120210922WTTPZZB#Y22222112204398100000000120200421WT@TWP#P#22221222204398100000000 -T12023011111165374024500405781120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116537403219720221WTTTY##BB2222212222225012212110223811069937000000000000000000000000000000000000000000000000000000000000264300000000000000000000 -T320230111111653740120090907WT@@P00W022222112207308100000000 -T12023011111165392424700409322110423210906300000000000006460010000000000000000000000000000000000222222000000002229032 -T2202301111116539241219940404WT@9TPY9W2222212222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116539241219930112WT@9TPY9W2222211222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111653924120160318WT@9TPY9W22222112204398200000000120130718WT@9TPY9W22222112204398200000000 -T12023011111165397122700401571120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116539715219830907WTT#YWP9@2222212122211012212110124813109900000000000000000000000000000000000000000000000000000000000000000000000524041000000000 -T320230111111653971120120427WTTPBBBP@22222122209302100000000 -T12023011111165400521700406141120413111346300000000000007710140000000000000000000000000000000000222222000000002229012 -T2202301111116540051219750307WT@YT@@YP2222212222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111654005120080109WTT@00TWW12222122206307100000000 -T320230111111654005120140314WTTPPP9@922222112204302100000000120100712WT@BZ99ZP22222122204306100000000 -T12023011111165401222000411281120233110376300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111116540122219760223WT@YYBT9P2222222222221012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111654012120070927WTT#T9PPB12222212204309100000000 -T12023011111165416625900402631120313110740300000000000003160660000000000000000000000000000000211122222000000012219072 -T2202301111116541661219900311WT@#YBZPZ2122222222221012212110670023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000026 -T320230111111654166420160213WT@WWPP@Z21222212104398109140000120140102WTTBP@BY#11222212204302100000000 -T12023011111165420522000412971120213110598300000000009005280110000000000000000000000000000000000222222000000002229012 -T2202301111116542051219710723WTTT999Y02212221222223012298110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111654205120180127WT@BYB0T#22122212204398100000000 -T12023011111165424622000405841120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111116542461219880312WT@9TPY9W2221221222221011213990055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116542461219880723WT@WWP9ZP2221222222221011211290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111654246120210102WTTPZ0WWP22212212204398100000000120090904WT@9TPY9W22212222204305200000000 -T12023011111165435924700409321120512111211300000000000008880200000000000000000000000000000000000222222000000002229072 -T2202301111116543591219820926WT@9@T9Y92222212222225012212110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111654359120070527WT@ZP0@WW21222212204309100000000120050413WT@@B9P@Z21222222204312100000000 -T320230111111654359120080922WT@Y#PBZB21222222204308100000000120080922WT@PYZT@Y21222222204308100000000 -T12023011111165441323500411471120313110766300000000000006540430000000000000000000000000000000000222222000000002229012 -T2202301111116544131219860501WTTZTY9P#2222212222221012216110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111654413120220107WTT0TPB9B22222122204398100000000120150102WTT9W09TY22222112204398100000000 -T12023011111165461721900412441120333120000300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111116546173219600105WT@TBYYW@2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111654617120190905WTTB0#WZT22222112206398100000000120150402WTTZ#TY0Y12222112206302100000000 -T12023011111165463222700408491120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116546322219870326WTTP@PTBT1222212222215012216110134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111654632120130123WT@ZT@@YB12222122204302100000000420100401WTTWPW#PZ12222122104305109140000 -T12023011111165467525600413441120333110771300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116546752219790914WT@#PWB#@2222212222215012209120850013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111654675120070914WTTT@0PP@22222112204308100000000120060513WT@PP@###22222122204307100000000 -T12023011111165492325900402631120233110516300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111116549232219930123WT@#P9TZ#1222212222211012203120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111654923120210518WT@@YY#ZY12212212204398100000000 -T12023011111165498823500404531120413111034300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111116549881219770721WT@T9#WPT2222212222225012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111654988120070118WTT0YPWZ@22222112204309100000000 -T320230111111654988120100418WTTP@Y@WB22222122204306100000000120090523WT@#W9P@022222112204307100000000 -T12023011111165508024200414351120433110939300000000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111116550803219890412WTT9Y#PTY2222122222221012213110194111069934000000000000000000000000000000000000000000000000000000000000254300000000000000000000 -T320230111111655080120120418WTTPZB90Z22221222207303100000000 -T320230111111655080120150226WTT##ZZ0#22221212207301100000000120130907WTTPY@#@T22221222207303100000000 -T12023011111165508922900412051110313111561300000000003206540010000000000000000000000000000000000222222000000002229012 -T2202301111116550891219800323WT@9#PYT02222211222223012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111655089120080712WTTP00TBW22222112204307100000000120070107WT@##@TW922222122204307100000000 -T12023011111165515722000411281120513111199300000000000008880040000000000070002000000000000000000222222000000002229012 -T2202301111116551571219840701WTTTWTZB92222212222225012215110055523011800000000000000000002000000000000000000000000000000000000300000000000000000000000000000 -T320230111111655157120080901WT@T##@P022222112204308100000000120060918WTT#PB9@022222122204310100000000 -T320230111111655157120150308WT@00#PY022222122204398100000000120140101WT@9Z9Y@@22222122204301100000000 -T12023011111165516824200405021120333110740300000000000005280420000000000000000000000000000000000222222000000002229022 -T2202301111116551682219760727WT@BWYTYT2222211222215012210110342613089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111655168120070926WT@0Z9Y#W22222122204308100000000120050322WTTTW@W9Y22222112204311100000000 -T12023011111165520625600404041120423110987300000000000007710430000000000000000000000000000000000222222000000002229012 -T2202301111116552061219810712WT@P#B@B02222211222222011216190441621011944000000000000000000000000000000000000000000000000000000000000269900000000000000000000 -T2202301111116552061219720513WTT@PBZPP2222212222222021213190441623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111655206120080509WTTPBPB@922222122204307100000000120060224WT@W0BZZB22222112204308100000000 -T12023011111165528625600404041110233110376300000000000002950010000000000000000000000000000000000222222000000002229021 -T2202301111116552862219780423WT@YYBT9P1222222222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111655286120190923WT@YYB#BW12222222204398100000000 -T12023011111165532524500405941120213110399300000000249403160240000000000000000000000000000000211122222000000012219012 -T2202301111116553251219780126WT@TYY99B2222211222225012212110293123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111655325120070322WT@BTZYP#22222122204308100000000 -T12023011111165534025600400661120213110611300000000108104170130000000000000000000000000000000000222222000000002229012 -T2202301111116553401219850221WT@Y0@@P@2222212222225012216110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000002795 -T320230111111655340520160312WTT0PZBT@22222112104398109140000 -T12023011111165546223900406231120232110599300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111116554622219820314WTTZTWBB#2222212222211012213120006011089909000000000000000000000000000000000000000000000000000000000000055000000000091400000000 -T320230111111655462120180908WT@TYT#@#22222112204398100000000 -T12023011111165548722000402371120513111116118650000000408880100000000000000000000000000000000000222222000000002229012 -T2202301111116554871219850313WT@9#PZ@92221221222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111655487120130111WT@BPZ@YP11222222204301100000000120110918WTTT@W@9912212212204304100000000 -T320230111111655487120210718WT@TTY#WW22212212204398100000000120190927WT@9Y#ZW012212212204398100000000 -T12023011111165567324900405531110413110939300000000000006960010000000000000000000000000000000000222222000000752219012 -T2202301111116556731219920713WT@P9WZT92222212222221012216120560423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111655673120140226WTT99#TB@22222112204303100000000 -T320230111111655673120220427WTTTZPPWB22222122204398100000000120160921WT@YBW99W22222122204301100000050 -T12023011111165589924200414851120413110939300000000229401910460000000000000000000000000000000000222222000005802219012 -T2202301111116558991219770324WT@YBZYZT1222222222221012212120471321011800190000000000000000000000000000000000000000000000000000000000115900000000000000000000 -T320230111111655899120120121WTT9YYTTW12222222204302100000000 -T320230111111655899120200507WT@BP0ZYZ12221222204398100000000120160307WTTY#@00Y12222122204398100000000 -T12023011111165600322000413691120313110776300000000470003920140000000000000000000000000000000261122222000000012219012 -T2202301111116560031219990223WT@0@9BTB2222212222221012216110154523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656003120190302WTTPZT@TW22222212204398100000000120170123WTTP9BTB022222122204398100000000 -T12023011111165612624200414351120313110835127630000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111116561261219870912WT@TBZ0ZP2222212222223012210110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656126120210327WTTYB@#TT22222122204398100000000120200707WT@PB9TZT22222212204398100000000 -T12023011111165626620600402141110233120000300000000000004170010000000000000000000000000000000000222222000000002229021 -T2202301111116562663219770912WTT0W990@2122222222221012212110223813069900000000000000000000000000000000000000000000000000000000000000555800000000000000000000 -T320230111111656266120210318WT@PZ9@#@21222222208398100000000 -T12023011111165636920300408521120613111339300000000126108880740000000000000000000000000000000000222222000000002229012 -T2202301111116563692219870713WTT99W@B92222211222212012210120530713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111116563691219850412WTT9@0WBT2222212222222022212110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656369120110512WT@ZW0@PP22222112205304100000000120100204WTT#YBTZ@12222122204305100000000 -T320230111111656369120220923WTT@W@#P922222122204398100000000120160918WT@9Y0PYP22222112204398100000000 -T12023011111165639422000410051120432110939300000000000006540960000000000000000000000000000000000222222000000002229022 -T2202301111116563942219860411WTTYPWZPZ2222212222215012212111500013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111656394120060501WTT0@@9W@22222122204311100000033 -T320230111111656394120160112WTT0Z0B@P12222122204302100000033120120118WTT0@0#@Y22222112204305100000033 -T12023011111165639920600414871120413111034137120000000007710420000000000035004000000000000000000222222000000002229012 -T2202301111116563991220000913WTT@Z@0WT1222212222221012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656399120180326WTTPZTYZP22122212204398100000000 -T320230111111656399120220426WT@#BY90W22222222204398100000000120200112WTT@9P0##12222112204398100000000 -T12023011111165648424700405901110412110953300000000000004430010000000000000000000000000000000000222222000000002229012 -T2202301111116564841219840427WT@@9BYZ@2222212222223012210120025821011812000000000000000000000000000000000000000000000000000000000000069300000000000000000000 -T320230111111656484120090927WTTB9WWWB21222112204308100000000 -T320230111111656484120210301WT@ZPY9#W21222112204398100000000120160708WT@BZ#0BT21222122204398100000000 -T12023011111165666422000400461120313110835300000000005006540080000000000000000000000000000000000222222000000002229012 -T2202301111116566641219920102WT@PB@PTB2222212222221012211110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656664120210105WT@0W0BP@12222112204398100000000120170401WT@00ZT9B22222112204398100000000 -T12023011111165673822000404841120313110704300000000020006540390000000000000000000000000000000000222222000000002229012 -T2202301111116567381219860118WT@ZWZ#991222222222225012216110431721011800130000000000000000000000000000000000000000000000000000420000078600000000000000000000 -T320230111111656738120090924WTT0W@Y9@12222222204306100000000120060707WT@ZZW9PT12222212204309100000000 -T12023011111165675424200408391120333110740300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111116567543219810409WT@B0B#T@2222212222221012211120213911069926000000000000000000000000000000000000000000000000000000000000197300000000000000000018 -T320230111111656754120210524WT@@B@0TT22212222206398100000000120170901WTTBPBY#B22212222206398100000000 -T12023011111165682921700406141120213110611300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111116568291219780421WT@ZY@Y#W2222211222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656829120040424WT@0YWWZW22222112204312100000000 -T12023011111165687822000412231120212110606300000000000103160640000000000000000000000000000000211122222000000012219072 -T2202301111116568781219810411WT@ZBZ0Z#2222212222223012209110650023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656878120110701WTTZYWYY#22222112204305100000000 -T12023011111165689524100402401120333110611300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111116568953219610322WTTBYP#092222211222211012212110283213069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111656895120180409WT@09Z0BT22222112206398100000000120140313WTTW#B99W22222122206301100000000 -T12023011111165692522000402151120312110766300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111116569251219790101WTTZ#TZ#W2221222222221012212111930023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656925120130912WTT@PZTTW22222222204302100000000120080421WT@#00Y#Z22212212204307100000000 -T12023011111165696024200414721120313110760300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111116569601219910709WTT0909TZ1222222222221012210110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111656960120160912WT@T9ZPYP12212222204398100000127120090918WT@@0B9@912212222204306100000127 -T12023011111165705323500405982121022212113300000000050009100130000000000000000000000000000000000222222000006292219032 -T2202301111116570531219910218WTT0T009Z2222122222222011211990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116570531219910307WT@0TPB002222121222222021211990006021011934000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111657053120110126WTT0Y9PYB22221222204304100000000120090426WT@P0P9BB22221212204306100000000 -T320230111111657053120140723WTTWTPP9022221212204398100000000120120708WTTTTY#Z022221212204302100000000 -T320230111111657053120180404WT@B0WZ#Z22222222204398100000000120170407WT@@ZPY#Z22221212204398100000000 -T320230111111657053120220421WT@0WP#WZ22221212204398100000000120200209WT@WPTP0P22221222204398100000000 -T12023011111165716224500403051120233120000300000000000004170880000000000000000000000000000000000222222000000002229022 -T2202301111116571623219710904WTTPBBBB#2221212122222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000001373000000000000 -T320230111111657162120150918WT@9P@YYY22122112206301100000000 -T12023011111165725122600405051120523111136300000000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111116572511219790204WT@9TPY9W2222211222222011213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116572511219810304WT@9TPY9W2222212222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111657251120060122WT@9TPY9W22222122204310200000000 -T320230111111657251120160923WT@9TPY9W22222122204398200000000120090223WT@9TPY9W22222122204308200000000 -T12023011111165726020300411111120233110470300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111116572603219920109WTT#TY09@2222212222225012216110006011069933000000000000000000000000000000000000000000000000000000000000293900000000000000000000 -T320230111111657260120210121WTTT0Y#9T21222212207398100000000 -T12023011111165736822700408351120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111116573681219970204WT@Y9Y9T02222212222221012210110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111657368120210327WT@9TPY9W22222122204398100000000 -T12023011111165738724200414021120332110704300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116573872219830424WTTBBB0WP2221222122211012211110760013109900000000000000000000000000000000000000000000000000000000000000000000000542039200000000 -T320230111111657387120110307WT@0WT#Y#22212212204304100000000420080127WTTBWBWY@22212212204306100000005 -T12023011111165740324200414851110212110516300000000000002040350000000000000000000000000000000000222222000000002229012 -T2202301111116574031219840302WT@Y0P#YT2221222222225012214110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111657403120060927WTTYP99Y022212222204311100000000 -T12023011111165741720800411601120212110516112490000003005280360000000000000000000000000000000000222222000000002229012 -T2202301111116574171219930721WTTWTYWB02221222222225012213110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000140 -T320230111111657417120190302WT@#0@WWW22212212204398100000429 -T12023011111165752124200410001120313110835300000000000006540290000000000000000000000000000000000222222000000002229012 -T2202301111116575211219950111WT@T#PBWP2222122222221012212110184223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111657521120220905WT@9P@T9@22221222204398100000000120160227WTTBB@W9922221212204398100000000 -T12023011111165753422000413691120213110560109220000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111116575341219890727WTTBTWTTZ2221221222223012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111657534120200322WTT@Y@P#022212222204398100000000 -T12023011111165756822500409681120233110557300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111116575683219910922WTTY90WWZ2122222222221012212110015913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111657568120060104WT@9B90BW21222212207308100000000 -T12023011111165767820800411601120213120000300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111116576781219860126WT@0W0@W02222212222221012216110095123010100000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111657678120220708WTT9BZB9Z22222122204398100000000 -T12023011111165777124700408301120212110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116577711219890909WT@WTWW@@2221222222221012216120065423011800000000000000000000000000000000190000000000000000000000020000000000000000000000000000 -T320230111111657771120170918WT@BY00W921222222204398100000000 -T12023011111165782021700407751120113110376300000000000004170060000000000070002000000000000000000222222000000002229012 -T2202301111116578201219940423WTT0B0WP@2222212222225013216190154523011800000000000000000002000000000000000000000000000000000000290000000000000000000000000000 -T12023011111165788525900402831120213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116578851219890712WT@@#@W9#2222212222221012216110352523011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111657885120190924WT@0TYB#P22222122204398100000000 -T12023011111165792620300410341120213110611103450000000005280660000000000000000000000000000000000222222000000002229072 -T2202301111116579261219890412WTTT9YPYB2222212222221012213110670023011900000000000000000000000000300002000000000000000000000000000000000000000000000000000895 -T320230111111657926120130914WTT#PZ#@Z22222122204304100000000 -T12023011111165798824200408391120233110631300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116579885219950901WT@ZTT@#@2222122222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111657988120160312WTT@0T@WB22222212209398100000008 -T12023011111165804820600400801120332110740300000000000005280800000000000000000000000000000000000222222000000002229022 -T2202301111116580482219960308WTTZWY#BW2222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111658048120200301WT@0P##B922222112204398100000100120160907WTT#Z#WPT22222122204398100000000 -T12023011111165826022000402371120213110611300000000030005280100000000000000000000000000000000000222222000000002229012 -T2202301111116582601219960427WTTBWBTP@2222212222221012216110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658260120210223WTTZZ@#PP12212122204398100000000 -T12023011111165831224700408301120213110598300000000001205280540000000000000000000000000000000000222222000000002229012 -T2202301111116583121219760413WT@@ZW#@P2222212222225012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658312120040727WTT@#YWY@22222112204312100000000 -T12023011111165832724200403461120313110835300000000000006540130000000000035003000000000000000000222222000000002229012 -T2202301111116583271219910426WTT0YWB0@2122222222223012298110144623011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111658327120140724WT@P@9WW921222212204398100000000120110218WTT9W@0W@21222212204304100000000 -T12023011111165834920600414251120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116583493219680127WTTBP0@#02222212222221012212120025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658349120080927WT@@9#0##22222122206308100000050 -T12023011111165836822000413732120323210766300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111116583681219940707WTT0099T@2222211222222011214290055521011931000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116583681219950911WTT0YYW0B2222222222222021213290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658368120190113WTTPZ#ZY922222212204398200000000 -T12023011111165838023500405271120623111339300000000000003290100000000000000000000000000000000000222222000006802219012 -T2202301111116583801219740108WT@TYY0W#2222211222222011212290114921011944000000000000000000000000000000000000000000000000000000020000271800000000000000000000 -T2202301111116583801219810101WTTBTZ0@#2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111658380120110401WT@#PPB9T22222122204306200000000120060313WT@Y90ZPB22222122204310200000000 -T320230111111658380120160424WTTWPZZ0@22222112204301200000000120130111WTT#@W#0#22222122204304200000000 -T12023011111165841724200405921120433110679300000000000006540020000000000000000000000000000000000222222000000002229022 -T2202301111116584173219880727WT@#P0W#W2222212222221012216110105013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658417120080413WTTZWB#9#22221222207305100000000 -T320230111111658417120200923WTT9W@TPB12222112207398100000000120100721WTTBWYB#Y22222122207304100000000 -T12023011111165842024200404421120233110611300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111116584203219730922WTTWYWZZ92221222222225012211110600013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658420120120924WT@00WWWB22212112207305100000000 -T12023011111165849822900405641120213110611300000000001605280150000000000000000000000000000000000222222000000002229012 -T2202301111116584981219990426WTTTBWT9W1222212222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658498120210323WTTPWPY0Z12222222204398100000000 -T12023011111165871025900406081120733111199300000000402308880130000000000000000000000000000000000222222000000002229022 -T2202301111116587102219940327WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116587102219870311WT@YYBT9P1222221222222102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658710120150127WTTTTB0YP12222222204301100000000 -T320230111111658710120190923WT@WBZT@T12222222204398100000000120170114WTTT0Z0@B12222122204398100000000 -T320230111111658710120200923WT@PZWYT#12222112204398100000000120190923WTT90YP9#12222222204398100000000 -T12023011111165871724700406702120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111116587171219960926WT@9TPY9W2222212222222011215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116587171219940909WT@9TPY9W2222211222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658717120210421WT@9TPY9W22222112204398200000000 -T12023011111165875624200407271120213110611300000000040105280280000000000000000000000000000000000222222000000002229012 -T2202301111116587561219930127WT@YZY#P#2222212222221012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658756120150305WT@ZTZ##B22222112204398100000050 -T12023011111165879025900407101120432110557300000000175205280020000000000000000000000000000000000222222000000002229022 -T2202301111116587902219780523WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116587902219750921WT@YYBT9P2222221222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111658790120170912WTTB0#TBT12222112204398100000000120110421WTTT#Z0YP12222212204306100000000 -T12023011111165880720600407031120322110745300000000000706160330000000000000000000000000000000000222222000000382219012 -T2202301111116588071219980304WT@PT@T#Z2222212222222011212110283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116588071219990111WTTZPZPP02222211222222021212190045621011803000000000000000000000000000000000000000000000000000000000000015000000000000000000000 -T320230111111658807120160901WTTTT#W0W22222112204398100000050 -T12023011111165884324200403511120213110611300000000102105280180000000000000000000000000000000000222222000000002229012 -T2202301111116588431219800127WTT99WBTW2222212222225012213110382221011943000000000000000000000000000000000000000000000000000000000000520800000000000000001300 -T320230111111658843120150712WT@Y@B00P22221222204398100000000 -T12023011111165895120600414161120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116589512219850307WTT@0ZT9W1222212222215012216110810013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111658951120200902WT@BTZTB#12222112204398100000000 -T12023011111165899625900403711110313110835300000000000000180010000000000000000000000000000000000222222000000002229012 -T2202301111116589961219930902WTT@Y@PYY1222222222223012212110025821010906000000000000000000000000000000000000000000000000000000010000032500000000000000000000 -T320230111111658996120170223WT@WY@@TZ12222222204398100000000120150127WT@0ZZB9T12222212204301100000000 -T12023011111165902221700406141120233110516300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111116590222219910721WT@#YZ0Z#2222212222213012210110144613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111659022120220509WT@#ZYZP#22222112204398100000000 -T12023011111165902425900402831120513111199300000000000008880150000000000000000000000000000000000222222000000002229012 -T2202301111116590241219810312WTTY0@BTP1122222222223012212110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000300 -T320230111111659024120140921WTTTZ0ZZ#11222222204302100000300120120423WTTB0YYZ#11222222204304100000300 -T320230111111659024120170512WTTW0PT0911222222204398100000300120150727WT@P0P@@B11222212204301100000300 -T12023011111165907522000411281120313110704300000000031004170030000000000000000000000000000000000222222000000002229012 -T2202301111116590751219900913WTTP##PW#2222122222223012213110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659075520170123WTTTBWY0Z22221212104398109140000520140318WT@9@WW9B22221212104301109140000 -T12023011111165917325900400311120333110493104680000000105280930000000000000000000000000000000000222222000000002229022 -T2202301111116591732219860901WT@YYBT9P1222222222222012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659173120150105WT@T@T#YZ12222212204398100000000120070726WT@BZYP0#12222212204308100000000 -T12023011111165919723500410681120213120000300000000001602450110000000000000000000000000000000000222222000002832219012 -T2202301111116591971220010702WTT9@PBYP2222212222221012212110124821010110000000000000000000000000000000000000000000000000000000000000056400000000000000000000 -T320230111111659197120220407WTT0#BWZZ22222122204398100000000 -T12023011111165920120600407031120523111199300000000000008880250000000000000000000000000000000000222222000000002229012 -T2202301111116592011219850723WT@90B0902222212222221011216190283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116592011219850312WTTZWP9YY2222211222221011212190283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659201120110226WT@YP9WTP22222122204306100000000 -T320230111111659201120130304WT@P##0T@22222122204303100000000120120412WTT9#BWB922222112204305100000000 -T12023011111165922925100402211120233120000111450000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111116592293219790409WTT9#PZ9Z2222212222222012212110006011069903000000000000000000000000000000000000000000000000000000000000404200000000000000000000 -T320230111111659229120200427WTT9#P@ZZ22222122207398100000000 -T12023011111165923424200409731120323110835300000000068906540030000000000000000000000000000000000222222000000002229012 -T2202301111116592341220000727WTTZTW90@2222212222222011211290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116592341220010424WT@#ZTW@#2222211222221021202190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659234120210723WTT#0P#9T22222112204398100000000 -T12023011111165923524200414351120213110599300000000000704890180000000000000000000000000000000000222222000000392219012 -T2202301111116592351219830714WT@9W0TT#2222212222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000038 -T320230111111659235120050905WTT##9Z#P22212122204311100000000 -T12023011111165929223500410672110323210740300000000000002530010000000000000000000000000000000000222222000000002229032 -T2202301111116592921219980305WT@9TPY9W2222222222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116592921219910912WT@9TPY9W2222221222222021216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659292120150904WT@9TPY9W22222222204301200000000 -T12023011111165931321000414221120213110493300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116593131219800312WTT0@00Y02222212222225012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659313120100504WTT0T@BWY22222112204306100000000 -T12023011111165938124200414351120433110376300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111116593812219860911WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116593812219840522WT@YYBT9P1222221222222022212990006011079910000000000000000000000000000000000000000000000000000000000000065000000000000000000000 -T320230111111659381120220121WT@#09#BZ12222212204398100000000420130413WT@YYBT9P12222212204304900000000 -T12023011111165940224200403511120733111480300000000000010090600000000000000000000000000000000000222222000000002229022 -T2202301111116594022219920104WT@9W09@#2221222122211012212110610011109914000000000000000000000000000000000000000000000000000000000000083000000803013100000000 -T320230111111659402120110123WTTBT@T@Z22222112204305100000000120090301WT@ZYZW#Z12222122204306100000000 -T320230111111659402120140226WT@ZYTTW922212212204302100000100120130507WT@TZ@@9Z22222112204303100000000 -T320230111111659402120180922WTT@WZYZP22122222204398100000000120180922WTT0YW0WB22122222204398100000000 -T12023011111165950622000400591120333110376300000000009902010320000000000000000000000000000000000222222000002162219022 -T2202301111116595062219760904WTTYW9YT01222222222223012201910065411079901000000000000000000000000000000000000000000000000000000000000022400000000000000000000 -T320230111111659506120180907WTT##WP@@12222122204398100000000420120912WT@YYBT9P12222122204301900000000 -T12023011111165952023500410671120213110446300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111116595201220000726WTTP9#0Z#1222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659520120210402WT@P#9WBB12222112204398100000000 -T12023011111165955722700403021120233110376106190000113604170180000000000000000000000000000000000222222000000002229022 -T2202301111116595572219990122WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659557120190402WTTTYZZWT12222112204398100000000 -T12023011111165967222000406192120823211691300000000000012890050000000000000000000000000000000000222222000000002229032 -T2202301111116596721219790423WTTP@T@ZT2212221222222011209290006022011900000000000000340002000000000000000000000000000000000000060000000000000000000000000000 -T2202301111116596721219870423WT@9P@0BZ2212222222222021298290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659672120090423WT@@Y9WZB22122222204306200000000120070423WTTZTB@T#22122212204307200000000 -T320230111111659672120130423WTT@P9TP022122212204303200000000120110423WTTYTPYTW22122222204306200000000 -T320230111111659672120220927WTT#B@@YY22122212204398200000000120180423WTT9WY90B22122222204398200000000 -T12023011111165969523500405981120532111116300000000000007710560000000000000000000000000000000000222222000000002229022 -T2202301111116596952219830902WT@BWP@@B2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000072100000000 -T320230111111659695120070412WT@#@BWBW22222122204309100000000120060404WTTZYYTBP22222112204310100000000 -T320230111111659695120100923WT@W@@0PP22222122204306100000000120080308WTT0#ZW@P22222112204307100000000 -T12023011111165970123500411471120313110835300000000000004130030000000000000000000000000000000000222222000002412219012 -T2202301111116597011219930108WTTW#0PT02222212222221012212110045621011811000000000000000000000000000000000000000000000000000000000000061700000000000000000000 -T320230111111659701120150927WT@Y@Z###22222122204302100000000120130923WT@Y0ZZZB22222112204304100000000 -T12023011111165986122000405322120423210939300000000000007710040000000000000000000000000000000000222222000000002229032 -T2202301111116598611219870426WT@9TPY9W1222222222221011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116598611219800413WT@9TPY9W1222221222221021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111659861120150901WT@9TPY9W12222212204398200000000120070507WT@9TPY9W12222222204307200000000 -T12023011111165996724200407271110423111034300000000020001240130000000000000000000000000000000000222222000006472219012 -T2202301111116599671219870518WT@0P0Y0W2221222222222011209190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116599671219850908WT@B@P@Y92221221222222021216190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000001075 -T320230111111659967120110114WT@T0BTZT22212212204304100000000120050412WT@##0P9Y22212212204310100000000 -T12023011111166003625800405801120232110516300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111116600363219720124WTTY90Z#@2222212122223012212110283213069900000000000000000000000000000000000000000000000000000000000000000000000981000000000000 -T320230111111660036120160704WT@BTPYY@22222112206398100000000 -T12023011111166010024700405831120332110516300000000000004760240000000000000000000000000000000000222222000000002229022 -T2202301111116601002219840922WT@9B99B01222222222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111660100120220707WT@PYPY9#12212212204398100000000120200704WTTP@9#ZY12222222204398100000000 -T12023011111166019224200410531120233120000300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111116601923219710327WT@PBYBPZ2222212122223012216110501013069900000000000000000000000000000000000000000000000000000000000000000000001399000000000000 -T320230111111660192120210514WT@T##YZW22222112206398100000000 -T12023011111166023022000400921120233110481122590000000004170830000000000000000000000000000000000222222000000002229022 -T2202301111116602303219660908WTTZ#Z9Z92222212222221012212110006011069907000000000000000000000000000000000000000000000000000000000000221500000000000000000000 -T320230111111660230120080101WT@P9WYWZ22222122206309100000016 -T12023011111166037524200407271120213110611300000000000003160410000000000000000000000000000000211122222000000012219012 -T2202301111116603751219960427WT@@WT@WZ2222212222221012212110411923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111660375120170107WTT@0WT#922222122204398100000000 -T12023011111166044520600407032120413211034300000000000007710230000000000000000000000000000000000222222000000002229032 -T2202301111116604451219900424WTTY9WW9T2222122222221012209910322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111660445120090407WT@0@TZ0Z22222222204306900000000 -T320230111111660445120150118WT@Z00W@B22221212204398900000000120140927WT@B00TP922221212204302900000000 -T12023011111166048622000404841120613111314300000000000010090310000000000000000000000000000000000222222000000002229072 -T2202301111116604861219880504WTT#YZBZB2221222222221012212121380023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111660486120040122WT@YB#Y0W22212212204312100000000 -T320230111111660486120090101WTT0Y0Y@P22212222204308100000000120070423WTT#Z90@#22212212204310100000010 -T320230111111660486120220726WT@090#BT22212222204398100000000120140312WTTP#PPPT22212212204302100000000 -T12023011111166062525800413571120433120000300000000000006540050000000000000000000000000000000000222222000000002229022 -T2202301111116606253219730426WT@YBW#P#2222212222222012214110006011069931000000000000000000000000000000000000000000000000000000000000312200000000000000000000 -T320230111111660625120070907WTTWWTW#P12222112206309100000000 -T320230111111660625120200323WTTB@ZTTW22222122206398100000000120130704WT@@ZY9T912222122206303100000000 -T12023011111166065022000405701120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111116606501219870127WTT#@ZT@W2222212222225012216210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111660650120090408WT@9PBYPB22222122204307200000000 -T12023011111166083325600411521120413111034119670000000007710560000000000000000000000000000000000222222000000002229072 -T2202301111116608331219860122WT@PY0#TT2221222222221012216120660023011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111660833120130218WT@0P#9WY22212212204303100000000 -T320230111111660833120220902WT@@PBPBW22212212204398100000000120140123WTTTWW9#W22212212204301100000000 -T12023011111166097723500405271120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116609772219920912WTT99ZP0T2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111660977120110424WTTPTPPZY22222122204304100000000 -T12023011111166099722000410221120412111034130340000000007710120000000000000000000000000000000000222222000000002229012 -T2202301111116609971219900723WTT9TB0YZ1221222222223012213110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111660997120130927WTTPYY@WZ12212222204302100000000 -T320230111111660997120200111WT@#@BBP922212212204398100000000120160107WTT@0WPT012212222204398100000000 -T12023011111166115124200404891120212110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116611511219950926WT@YBPP#P2122222222221012211110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661151120130711WT@#Z#BPT21222222204302100000000 -T12023011111166121322000410331120212110611300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111116612131219680414WT@YT99B#2222212222225012216110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661213120070707WT@BBYZ##22222122204309100000006 -T12023011111166132522000400461120313110740300000000000003920270000000000000000000000000000000261122222000000012219072 -T2202301111116613251219850712WTT#PZWTB2222212222221012212110650023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661325120170709WTTY0#99#22212122204398100000050120150127WTT9P0WYW22212112204301100000050 -T12023011111166137923500400891120423110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111116613791219810914WTTZTBY@B2222211222222011212290055523011800000000000000000003000000000000000000000000000000000000290000000000000000000000000000 -T2202301111116613791219890512WT@P#0T902222212222222021215290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661379120200309WT@WWTY0Z22222122204398200000000120170323WT@TBPBTW22222122204398200000000 -T12023011111166146423500410671120413110760300000000000002670300000000000000000000000000000000308122222000001962219012 -T2202301111116614641219890722WTT@PBB@02222212222221012212110312921011821000000000000000000000000000000000000000000000000000000000000130200000000000000000000 -T320230111111661464120110204WTT@TYPP022222112204303100000000 -T320230111111661464120150412WT@BT@T@#22222112204398100000000120120304WTTB@T0P#22222112204302100000000 -T12023011111166146622000400921120633111193300000000000008880390000000000000000000000000000000000222222000000002229022 -T2202301111116614662219820308WT@YYBT9P1222222222221012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661466120050112WT@B@TY@P12222212204311100000000 -T320230111111661466120090726WTT90@B0Y12222212204307100000000120060302WT@BYZYBW12222212204310100000000 -T320230111111661466120140527WT@T@TB@Y12222222204302100000000120110908WT@0#ZZB912222222204305100000000 -T12023011111166151024200404421120213110611300000000000005280110000000000000000000000000000000000222222000000002229042 -T2202301111116615101219960126WT@0#WPYP1222222222223012212110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661510120210724WT@BWP#W#12222222204398100000000 -T12023011111166156121700406141110213110516300000000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111116615611219950109WTTB099ZT1222212222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661561120130712WTTBBBP##12222112204304100000000 -T12023011111166169122000408891120312110812100500000000006440340000000000000000000000000000000000222222000000102219072 -T2202301111116616911219860104WTTPT00WT2221222222221012208110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000009 -T320230111111661691120210514WT@#@@ZYB22212212204398100000000120140112WTTP9Y@Z012212212204301100000033 -T12023011111166171822000400591120213110407300000000332405280020000000000000000000000000000000000222222000000002229012 -T2202301111116617181219900404WT@9W@09Z2221222222225012212110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000003839 -T320230111111661718120220907WT@W#WYZ922212212204398100000000 -T12023011111166177124200403461120213110611112270000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111116617711219930927WT@9Z9P@P2222211222221012213110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661771120190702WT@Z@09@Y22222122204398100000000 -T12023011111166190624100410041120613111384300000000000010090140000000000000000000000000000000000222222000000002229012 -T2202301111116619061219920113WTTZYPPZ01222212222221012204210154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000650 -T320230111111661906120070923WT@9PBBB@12222122204308100000000 -T320230111111661906120120218WTT#WBB0912222112204303100000000120080323WTT@Z0#@P12222122204304100000000 -T320230111111661906120210727WTT090YY012222112204398100000000120160718WT@BPB00T12222122204398100000000 -T12023011111166191122000404841120313110835300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111116619111219740904WTT#90B#W2212212222222012213110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661911120180507WTTT9ZP@P22112112204398100000000120130227WT@B#YZPP22112112204304100000000 -T12023011111166196324700406701110213110611300000000015005280010000000000000000000000000000000000222222000000002229012 -T2202301111116619631219920101WT@9YZ@9@1222222222221012216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111661963120190727WT@WY0W#912222222204398100000000 -T12023011111166197524200414351120213110611300000000000003280060000000000000000000000000000000000222222000002002219012 -T2202301111116619751219860905WTTY#Y90@2221221222221012216110204021010110000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T320230111111661975120220402WT@WT0@0@22212222204398100000000 -T12023011111166201223900406231120233120000300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111116620123219780423WT@@BY##92222212222222012209110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662012120180307WTT0TTPPB22222122207398100000000 -T12023011111166208622000413731120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116620861219940404WT@9Y@#T01221222222221012211110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662086120190707WTT0#W#W@12212222204398100000000 -T12023011111166209222000407231120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116620923219600707WT@@W9##T2221222222213012210120006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111662092120120702WT@PY9@0P22212222206301100000023520090527WTTY@#T9B22222212106305105380000 -T12023011111166209624700408301120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116620962219680913WT@@000902222212222215012214120006013089900000000000000000000000000000000000000000000000000000000000000000000000000065400002250 -T320230111111662096120050721WTTP#0P#022222112204310100000000 -T12023011111166209925900402631120312110764300000000000006540020000000000000000000000000000000000222222000000002229072 -T2202301111116620991219920511WTT0#@ZZB1222222222225012209110750023011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111662099120090702WT@#9B@W#22222222204306100000150120080218WTT###00#12222222204307100000150 -T12023011111166224022000406191120213110376300000000001404170080000000000000000000000000000000000222222000000002229012 -T2202301111116622401219890124WT@9WB@PW1222222222223012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662240120220713WT@P@Y#9P22222222204398100000000 -T12023011111166224522000405321120213110516300000000000404170160000000000000000000000000000000000222222000000002229012 -T2202301111116622451219890504WT@P#BT9W2221222222221012216110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662245520190201WT@0Z00#922212222104398106090000 -T12023011111166229925900406081120433110939300000000000005280260000000000000000000000000000000000222222000000002229022 -T2202301111116622993219760718WTTZZP@0W2222212222223012209110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662299120120923WT@TBBWWT22222112207304100000000 -T320230111111662299120140913WTT99PWY022222112207302100000000520130404WT@WZW@YY22222112107303109140000 -T12023011111166236825900402721120212110611300000000000003160990000000000000000000000000000000211122222000000012219072 -T2202301111116623681219760904WT@BT@9YZ1222222222221012213111270023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662368120060926WTTYT9@BT12222212204311100000050 -T12023011111166242722000400811120213110611300000000000003160320000000000000000000000000000000211122222000000012219012 -T2202301111116624271219740501WT@9BTPY@2222211222225012212110481223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662427120120901WT@#9TZ9@12222212204305100000000 -T12023011111166247520600407032120523211116300000000000008880030000000000000000000000000000000000222222000000002229032 -T2202301111116624751219900712WT@T0Z#YZ2222122222222011212910045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116624751219900111WTT#90Z@#2222121222222021208990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662475120060104WTTWY#P0@22221212204309900000000 -T320230111111662475120140104WTTZYP#WP22221222207302900000000120060708WTTP0TW9922221222207308900000000 -T12023011111166249123500407161120113110376300000000000004170130000000000000000000000000000000000222222000000002229012 -T2202301111116624911219750726WTTYB9ZY@2222212222225013216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111166253722000411981120312110820300000000000006540270000000000000000000000000000000000222222000000002229012 -T2202301111116625371219860127WTTW9TYPT2221222222221012216110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662537120200327WTT0ZBPZP22212212204398100000000120120526WT@@90@@T22212222204304100000100 -T12023011111166267524200407271120213110598300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111116626751219830209WT@Y00WY92222212222221012216110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662675120060527WTTWYWWBY22222122204311100000000 -T12023011111166272220600402131120333120000111470000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116627223219570924WTT#ZBB0W2222212222225012213110015911069938000000000000000000000000000000000000000000000000000000000000452600000000000000000000 -T320230111111662722120200204WTTYZTPT022222122206398100000000120040309WTT9Z99@B22222122206311100000000 -T12023011111166277424200408391120213110599107100000000003160080000000000000000000000000000000211122222000000012219012 -T2202301111116627741219910104WT@@PBBZW1222212222221012211210144623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662774120150727WTTP#P90P12222122204398100000000 -T12023011111166284622000413731120212110611300000000000005280610000000000000000000000000000000000222222000000002229072 -T2202301111116628461219760927WT@TT#WB#2221221222223012216112040023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662846120060312WTT0WW0#Z22212212204309100000000 -T12023011111166294822000407241120213120000300000000000003160560000000000000000000000000000000211122222000000012219012 -T2202301111116629481219930501WT@YBB0BP2221222222221012211110560423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662948120120904WTTYB9#Z922212222204304100000000 -T12023011111166297424200414721120213110376300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111116629741219790405WT@0ZPWP@2222212222221012212111700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662974120060327WT@T@PTTT12222222204308100000000 -T12023011111166297620600401561120323110826300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111116629761219970923WT@B0YTZP2222211222222011298290085221011821000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116629761220000423WT@9W#9T#2222212222222021298290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111662976120210918WTTB0B0@922222112204398200000000 -T12023011111166299224200414721120112110376300000000000004170740000000000000000000000000000000000222222000000002229072 -T2202301111116629921219970314WT@@TZB9#2222212222221013211110750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111166302622000406271120622111434300000000020010090070000000000000000000000000000000000222222000000002229012 -T2202301111116630261219860722WTTY#T0902221221222222011214190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116630261219910418WTTYTTW#W2221222222222021203290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111663026120160305WTTZPYTY@22212212204398100000000120140227WTT@Z0Y9B22212212204302100000000 -T320230111111663026120200307WT@##WZZ@22212222204398100000000120190901WTT#PWP0P22212222204398100000000 -T12023011111166318724200414351121122111545300000000003013370110000000000000000000000000000000000222222000002022219012 -T2202301111116631871219860423WT@TWTZTT2221222222222011203190362421011813000000000000000000000000000000000000000000000000000000000000080600000000000000000000 -T2202301111116631871219780423WTTZPWWBW2221221222222021203190362423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111663187120060404WT@W99P9T22212222204310100000000 -T320230111111663187120080914WTTTPZZ##22212222204308100000000120070924WT@0ZBT9@22212212204309100000000 -T320230111111663187120120102WT@@9ZY9@22212212204304100000000120100918WTTZZT@PB22212222204306100000000 -T320230111111663187120160313WT@P@9TW@22212222204398100000000120140127WT@B99#@W22212212204301100000000 -T320230111111663187120200909WTTBYZ0WB22212222204398100000000120180421WT@0TPWTZ22212222204398100000000 -T12023011111166324523500408281120333120000300000000009804170040000000000000000000000000000000000222222000000002229022 -T2202301111116632453219650224WTTPTB9B#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111663245120100127WT@BZYB0#22222112206307100000000520060718WT@90Z9PW22222122106310109140000 -T12023011111166334324200407271120513111116300000000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111116633431219730412WT@PBYTW@2222212222221012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111663343120080218WTT0#Z9BP22222122204308200000000120040905WT@YWT#T022222112204311200000000 -T320230111111663343120150313WT@Z9W@0P22222122204301200000000120120113WTTTY0BWP22222112204304200000000 -T12023011111166338322000411551120313110822300000000000505280120000000000000000000000000000000000222222000000002229012 -T2202301111116633831219990907WT@PPTWPY1222222222221012216110134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111663383120220321WT@BTW9@912222212204398100000000120200127WTTZ@B@TT12222112204398100000000 -T12023011111166341324700411201120233120000300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111116634133219630407WTT@@@ZY02222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111663413120110927WTT@YYTBP22222112206305100000000 -T12023011111166342524200414721120513111034300000000004007710660000000000000000000000000000000000222222000000002229072 -T2202301111116634251219960313WT@T#YWT#2221212222223012212110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111663425120180426WTT@ZT@9P22212222204398100000000120160313WTTBTTTYY22212222204398100000000 -T320230111111663425120220321WT@W0YPBB22222122204398100000000120210401WTT@#00#@22212222204398100000000 -T12023011111166343024700405901120333110704300000000000005280380000000000000000000000000000000000222222000000002229022 -T2202301111116634302219870523WT@9ZBW9Z2222212122211012212110213913109900000000000000000000000000000000000000000000000000000000000000000000000758017600000000 -T320230111111663430120120321WTTPPB0TW22222122204302100000000120060912WTTWY0#ZZ22222112204309100000000 -T12023011111166352620600402141110313110740300000000000004850150000000000000000000000000000000000222222000000362219012 -T2202301111116635261219860105WTT#TB@Z02222212222221012211120352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111663526120140927WT@YTYBTW22222112204301100000000120120412WTTWYZ0B#22222122204304100000000 -T12023011111166363322000403891120512111193118330000000008880960000000000000000000000000000000000222222000000002229072 -T2202301111116636331219840307WT@999ZP@2221222222223012210111560023010900000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111663633120100312WTTW09#BY12212212204306100000000120080913WTT99ZW0#22212212204309100000000 -T320230111111663633120190704WTT0WT##Y22212212204398100000000120150701WTTP@@BP#12212212204302100000000 -T12023011111166387723500407161120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111116638771219940418WTT#BY@@92222211222222011212290045622011900000000000000330002000000000000030000000000000000000000000000000000000000000000000000 -T2202301111116638771219910112WT@P@Y#Z02222212222222021212290045623011800000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111663877120160724WTTB0#WT922222112204398200000000 -T12023011111166411822000406191120233110376300000000002004170050000000000000000000000000000000000222222000000002229022 -T2202301111116641182219960308WT@9P@T#Y2221222222221012216910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664118120170727WTTWZYZB022212212204398100000000 -T12023011111166424922000407091120332110740300000000000005280320000000000000000000000000000000000222222000000002229022 -T2202301111116642492219860726WT@W@99Z92221222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111664249120200412WTTPW#W0922212212204398100000000120200412WTTT#9@W@12222122204398100000000 -T12023011111166425622000411551120412110997300000000005207710300000000000000000000000000000000000222222000000002229012 -T2202301111116642561219900507WTTPTPTTB2221222222223012216110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664256120180711WT@T#Z0B022212212204398100000000 -T320230111111664256120220913WTT0#P@9B22212222204398100000000120200314WTTYYWY0022212212204398100000000 -T12023011111166427322000405841110313110740300000000000003160010000000000000000000000000000000000222222000002122219012 -T2202301111116642731219850504WT@P@#W@W2222211222223012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664273120150418WT@TW@@0W12222122204302100000000120080921WTT9##W#912222112204309100000000 -T12023011111166427721000408061120212110599300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111116642771219860923WTTP@ZTYT2222212222221012213111090023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664277120060523WT@PY@YYT22222112204310100000050 -T12023011111166433825900406841120332110557300000000118005280930000000000000000000000000000000000222222000000002229022 -T2202301111116643382219850427WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664338120180418WT@P#TWZ@12222212204398100000100120070911WT@#YT0ZT12222212204309100000000 -T12023011111166438925900402121120533111116300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111116643893219830414WT@P@PZ991222222222225012214110362411069943000000000000000000000000000000000000000000000000000000000000475700000000000000000000 -T320230111111664389120090418WTTP#WBZ#12222212209308100000000420080313WT@90#@@P12222222204308100000000 -T320230111111664389420190726WT@T@9#@W12222122204398100000000420130401WTTT@ZPBT22221222204304100000000 -T12023011111166439322000411551120232110611300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116643933219930709WTT@0W#YP1222122222221012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664393120150102WTT9Z@P0W22212122207398100000000 -T12023011111166442820800410751120233110446300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111116644283219910923WT@99TBT92222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000019450000 -T320230111111664428120200312WT@TBYTW@22222112207398100000000 -T12023011111166450922000407791120213110524300000000000000010060000000000000000000000000000000000222222000000002229012 -T2202301111116645091219890308WTTPTT9P91222222222225012211110194111011900210000000000000000000000000000130000000000000000000000000000136400000000000000000000 -T320230111111664509120080721WT@TZ@@0022222222204306100000000 -T12023011111166456524700408361120233120000300000000000004170920000000000000000000000000000000000222222000000002229022 -T2202301111116645653219570507WTT9W0P#B2222212122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001070000000000000 -T320230111111664565120080126WTT@TP@TP22222112209306100000000 -T12023011111166458122000403351120412110939300000000000004620990000000000000000000000000000000308122222000000012219072 -T2202301111116645811219800312WTTTY@PT#2222212222223012212111030023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664581120100702WT@@0@09T12222112204303100000000 -T320230111111664581120190127WTTY9Y#9B12222122204398100000000120160901WTTY@BY9B22222122204398100000000 -T12023011111166461120800411991120233120000300000000070004170990000000000000000000000000000000000222222000000002229022 -T2202301111116646113219660512WTT#9BW0T2222212222222012209110006011069940000000000000000000000000000000000000000000000000000000000000645000000000000000000000 -T320230111111664611120050504WT@0Y9T9W22222122206310100000000 -T12023011111166462822900405641120312110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111116646281220000123WT@B#TT#P2122222222221012209110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664628120200707WT@TZ0Y#P22222222204398100000000120190113WT@YYTB#Z21222222204398100000000 -T12023011111166463720800405391120333120000300000000000005280590000000000000000000000000000000000222222000000002229022 -T2202301111116646373219660412WTT@B09PT1222222222221012212120006011069941000000000000000000000000000000000000000000000000000000000000653000000000000000000000 -T320230111111664637120070211WT@0@Z0B#12212222206309100000000120050401WTT0BPPZ#12222222206311100000000 -T12023011111166472322000405841120823111691300000000000012890050000000000000000000000000000000000222222000000002229012 -T2202301111116647231219760112WTTB9@YTZ2222211222222011210210035723011800000000000000000004000000000000000000000000000000000000360000000000000000000000000000 -T2202301111116647231220000904WTT9YZ0BY2222212222222021207290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664723120080904WT@@Y#P#W22122222204308200000000120060905WT@@BZ0WY22122222204308200000000 -T320230111111664723120120904WTTTBWY#@22122212204304200000000120100904WTT0@TTZY22122212204306200000000 -T320230111111664723120210326WT@TP0PB022122212204398200000000120130905WT@TZY9T922122212204303200000000 -T12023011111166476125900408111120433110835300000000097306540180000000000000000000000000000000000222222000000002229022 -T2202301111116647612219800123WT@YYBT9P2222212222221012212910045613079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664761120060313WTTW#Z0YP12222122204309100000000 -T320230111111664761120180727WT@WZPTW#12222122204398100000000120080427WTT9#B0#B12222222204308100000000 -T12023011111166479522000407091120313110766300000000000006540370000000000000000000000000000000000222222000000002229012 -T2202301111116647951219930409WT@0990#02221222222221012298210352523011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111664795120210721WT@B0ZT9#22212212204398100000000120060118WTT09@0ZY22212222204309200000000 -T12023011111166483620300408521120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116648363219560704WTT#9W#Z92222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001014000000000192 -T320230111111664836120120127WT@@TY@0Z22222112209303100000050 -T12023011111166485520900411721120213110599300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111116648551219880112WT@00Y#TB2222212222225012210110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664855120140704WT@P#9B9P22222122204302100000000 -T12023011111166486722000413731120513111116114300000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111116648671219850705WTTWP0PW02221222222221012207210184221011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111664867120090727WT@9TPY9W22212212204306200000000120070223WTT@YP0WW22212222204309200000000 -T320230111111664867120210127WT@#PW#0#22212222204398100000200120150418WTT@P#TP#22212222204301200000000 -T12023011111166499524200414351120412110939300000000000403670450000000000000000000000000000000000222222000000502219072 -T2202301111116649951219770214WT@00Z09T2221212222225012216111210023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000050 -T320230111111664995520080223WTT@ZWW#P22212222104308109140050 -T320230111111664995520140504WT@Y@ZBPB22212222104302109140000520120104WT@Y0Z@9Z22212212104304109140000 -T12023011111166501422000408341120412110939300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111116650141219790109WT@B@9WZ@2222212222225012216110233723010900000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111665014120040127WTTW9Y0B@12222112204311100000000 -T320230111111665014120110927WTTYTP@YY22222112204304100000100120070712WTTYTY09B12222122204307100000000 -T12023011111166504825600403771120213110611300000000000005280580000000000000000000000000000000000222222000000002229012 -T2202301111116650481219900323WT@WPZ@WP2222212222221012216110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665048120130404WT@@YP@WT12222122204304100000000 -T12023011111166509625200407301120333110704300000000000005280300000000000000000000000000000000000222222000000002229022 -T2202301111116650962219820911WT@#99Z@W2222212222211012212120740013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111665096120110901WT@WZ@T#Z22222122204305100000000120060505WTT@#WT@022222112204310100000000 -T12023011111166513524700409381120213110598106960000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116651351219800127WT@99@WYW2222212222222012213110055523011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111665135120150423WT@TB#Z9B22222112204398100000000 -T12023011111166515124700401281120233110516300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111116651512219820414WTT0TTPB#1222211122211012210110006013109900000000000000000000000000000000000000000000000000000000000000000000000642029200000000 -T320230111111665151120060424WT@PB9B0912222112204310100000000 -T12023011111166518921700407751120213110598300000000000605280050000000000000000000000000000000000222222000000002229012 -T2202301111116651891219840123WT@@TBTY92222211222221012216110124821011939000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665189120120326WT@WZZBY@22222112204303100000000 -T12023011111166521322000411981120432110939300000000000006540960000000000000000000000000000000000222222000000002229022 -T2202301111116652132219650326WT@9@BY9Y2221221122212012211190411913109900000000000000000000000000000000000000000000000000000000000000000000000622031200000000 -T2202301111116652131219850423WT@T99PY02221222222222022212290960023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665213120160505WT@ZBYT9B22212212204301100000000120140911WTT9@B#ZZ22212222204303100000000 -T12023011111166521523700414331110633110761300000000001005900130000000000000000000000000000000000222222000004192219021 -T2202301111116652152219880118WT@YYBT9P1222212222225012205910451513079900000000000000000000000000000000000000000000000000000000000000000000000000000000000900 -T320230111111665215120050512WT@#0B0Y@12222112204311100000000 -T320230111111665215120080401WT@#9PYT012222112204308100000000120050712WTTWBTZBW12222112204310100000000 -T320230111111665215420130923WT@YYBT9P12222122204301900000000420090312WT@YYBT9P12222112204306900000000 -T12023011111166522620800410751120313110796300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111116652261219840112WT@9W@W0T2222211222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665226120160202WT@WZ0P##22222122209398100000000120140107WTTT0B#B022222112204302100000000 -T12023011111166524425600400661120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116652443219520914WTTZZ@WW92222212122224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000002171000000002000 -T320230111111665244120040727WTT@BB@ZT22222112206311100000000 -T12023011111166531522900409781120233110376300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116653152219980908WT@YYBT9P2221222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000030 -T320230111111665315120160923WT@@T@TY#22212212204301100000000 -T12023011111166534824700413762120323210835300000000000006540090000000000000000000000000000000000222222000000002229032 -T2202301111116653481219890708WT@9TPY9W2222211222222011212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116653481219900112WT@9TPY9W2222212222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665348120070123WT@9TPY9W22222122204307200000000 -T12023011111166535724200414351120622111339300000000115610090080000000000070002000000000000000000222222000000002229012 -T2202301111116653571219940223WT@Z@@@Z92222212222222011212110520823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116653571219940912WTT@9WBB02222211222222021212190045621011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665357120170718WT@PYWWTW22222112204398100000000120140212WTTWB9YWZ22222122204302100000000 -T320230111111665357120210405WTTBZ0BTY22222112204398100000000120200412WTTYPYB0Z22222112204398100000000 -T12023011111166536223500408281120313110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111116653621219990512WTTWPBWTT2222212222221012213110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665362120220127WTT9T@WW@22222112204398100000000120180918WTT90B9@P22222122204398100000000 -T12023011111166545923500402711120323110786300000000100006540020000000000000000000000000000000000222222000000002229012 -T2202301111116654591219880501WT@9TPY9W2222211222222011216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116654591219900108WT@9TPY9W2222212222222021216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665459120150126WT@9TPY9W22222112204301200000000 -T12023011111166548123500404821120213110611300000000110205280270000000000000000000000000000000000222222000000002229012 -T2202301111116654811219830405WTTTB9PZT2221221222223012213110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665481120150904WTTZ#TBP022212212204301100000000 -T12023011111166552324200410001120313110786300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116655231219930727WT@ZT@0PZ1221222222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665523120200924WTTP@@9P#12212222204398100000000120130102WTTTP@T0Z22212212204303100000000 -T12023011111166558522700413181120312110704300000000000006540430000000000000000000000000000000000222222000000002229072 -T2202301111116655851219810127WT@@@#T#Y2222212222225012213110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665585120130727WTTPP0##P22222122204302100000050120070418WT@@@TPY@21222222204310100000050 -T12023011111166560323500410671120323110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111116656031219960326WT@9TPY9W2222212222222011215290065422011900000000000000310000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116656031219940413WT@9TPY9W2222211222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665603120170108WT@9TPY9W22222122204398200000000 -T12023011111166569724200404051120412110972136810000000007710370000000000000000000000000000000000222222000000002229012 -T2202301111116656971219950412WTTTW#TWT2222212222221012212210382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665697120180104WT@0ZP09B22212122204398100000000 -T320230111111665697120190904WTTTZ#W9W22212112204398100000000120190904WT@0YB9TW22212112204398100000000 -T12023011111166578422700408351120433110835300000000000006540090000000000000000000000000000000000222222000000002229022 -T2202301111116657842219800707WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665784120070114WT@YY#9BW12222212204310100000000 -T320230111111665784120170502WT@@B@9W@12222222204398100000000120110112WTT0TY09T12222112204307100000000 -T12023011111166590625100407671120213110611111990000000000010050000000000000000000000000000000000222222000000002229012 -T2202301111116659061219820112WT@90Z#ZZ2222212222221012212110105011011700210000000000000000000000000000000000000000000000000000090000136400000000000000000000 -T320230111111665906120190314WTTBPPY9B22222112204398100000000 -T12023011111166594224700413761120312110766114720000030004900230000000000000000000000000000000163222122000000012219012 -T2202301111116659421219980311WT@BZWPWW1221212222221012211120243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111665942120190701WT@009W0B12222122204398100000000120160702WTT0Y#@BT12212122204398100000000 -T12023011111166600225900405231120333110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116660023219710327WT@00@@9P2222211222222012212110144613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666002120130123WT@09@@#W22222122206301100000000120080412WT@Y#W@BB22222112206306100000000 -T12023011111166610422000403352120413210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111116661041219920126WT@9TPY9W1222222222221012212210035723011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111666104120070422WT@9TPY9W12222212204309200000000 -T320230111111666104120130218WT@9TPY9W12222222204305200000000120130218WT@9TPY9W12222222204305200000000 -T12023011111166616920800405391120212110611300000000000005280840000000000000000000000000000000000222222000000002229072 -T2202301111116661691219920423WT@#PWBZP2222212222225012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666169120110105WT@BYW#YB22212122204305100000000 -T12023011111166630620600412681120523111116300000000000404790110000000000000000000000000000000000222222000001752219012 -T2202301111116663061219760701WT@@T@T@W2222212222222011214190114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000800 -T2202301111116663061219820902WTTWBYPYT2222211222222021216190114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666306420050326WT@P0T9Z922222112104311108220000 -T320230111111666306120130113WTTP#Z#Y@22222122204304100000000420080423WT@YPT9#T22222112104309108220000 -T12023011111166632523500404531120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116663253219680424WT@WZWPZT2222212222222012215110006013069900000000000000000000000000000000000000000000000000000000000000933300000000000000000000 -T320230111111666325120140204WTTPY9WW021222222206303100000000 -T12023011111166632824700413761120433110611300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111116663282219910708WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116663282219810512WT@YYBT9P1222221222222022210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666328120120927WTTP#W9ZZ12222212204304100000000120070924WTTY9P#0#12222222204309100000000 -T12023011111166649820300408211120322110704300000000000006540790000000000000000000000000000000000222222000000002229012 -T2202301111116664981219880327WT@TB0WB@2222211222225011212190411923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116664981219900713WT@ZZ#WYY2222212222221011213190491123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666498120190123WT@#Z0@TZ22222112204398100000000 -T12023011111166659725900406081120213110516300000000000000010060000000000000000000000000000000000222222000000002229012 -T2202301111116665971219990427WT@0W@BZ#1222211222221012210110006011011700200000000000000000000000000000000000000000090000000000000000135400000000000000000000 -T320230111111666597120170718WTT#PW0P#12222122204312100000000 -T12023011111166664525200414061120313110766300000000000006540420000000000000000000000000000000000222222000000002229072 -T2202301111116666451219870907WTT@TYY#B2222212222223012212111130023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666645120210727WT@ZBBZWP22222112204398100000000120070307WT@#BP9BB22222112204305100000000 -T12023011111166667522700408351120313110835110000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116666751219990421WT@@T0Z0T1222222222221012209110085221011738000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666675120170511WT@Y#WPTZ12222212204398100000000120160118WT@P99WYB12222222204398100000000 -T12023011111166671522000406271120312110740105740000000106540170000000000000000000000000000000000222222000000002229012 -T2202301111116667151219910705WT@PZ9@ZZ2221222222225012212120342621011800190000000000000000000000000000310002000000000000000000020000131400000000000000000942 -T320230111111666715120150502WT@#9BYY#22212212204301100000000120100409WT@PT@BTZ22212212204306100000000 -T12023011111166678124500405941120233110516300000000000004170710000000000000000000000000000000000222222000000002229022 -T2202301111116667813219660912WTTP#Z#Y92222212222211012209110174313069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111666781120070226WT@T0PBW912222122208307100000000 -T12023011111166682424200414851120413110939300000000000004620100000000000000000000000000000000308122222000000012219012 -T2202301111116668241219990922WTTZ9PPZ91222222222221012211110134723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666824120150207WT@T@Z@T#12222212204398100000000 -T320230111111666824120190322WTT09WZ9T12222112204398100000000120190404WTTWW#ZWB12222222204398100000000 -T12023011111166684120600400871120423110939300000000000007710710000000000000000000000000000000000222222000000002229072 -T2202301111116668411219860101WTTTTZP@#2222122222222011207910650023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116668411219890126WTT@9T#W92212221222222011211290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666841120200108WT@YZBYTY22221212204398100000000120140712WTTZ00#0Z22221212204301100000000 -T12023011111166691020800403781120313110835300000000073806540060000000000000000000000000000000000222222000000002229012 -T2202301111116669101219740423WTT#PWYZP2222211222223012209110105023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666910120100107WT@T0BY0W22222222204306100000000120080118WTT@0@B9W22222112204307100000000 -T12023011111166693120600400871120213110598104370000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116669311219890704WTT#@9PTP2222212222221012213210055521011819000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111666931120190502WT@ZZTTT#22222122204398200000000 -T12023011111166696822000407411120212110611107550000000005280380000000000000000000000000000000000222222000000002229072 -T2202301111116669681219900211WT@Z#W##Y2221222222221012212121010023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111666968120140326WTTZ#W0P#22212212204301100000000 -T12023011111166710124100412771120433110740300000000005006540240000000000000000000000000000000000222222000000002229022 -T2202301111116671012219920407WT@YYBT9P1222212222223012213910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667101120150527WT@B#Z09B12222112204301100000000 -T320230111111667101120220109WT@Z9W@B@12222222204398100000400120200407WTT#YPWZ#12222112204398100000000 -T12023011111166712623500404531110323110740300000000000001680060000000000000000000000000000000000222222000000002229012 -T2202301111116671261219850518WT@Y0ZZBW2222211222221011211190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116671261219790312WTTWT0T@T2222212222221011216110144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667126120150923WTTPWZBP022222112204301100000000 -T12023011111166722724200410371120213110611300000000025005280160000000000000000000000000000000000222222000000002229012 -T2202301111116672271219780913WT@PZTWW92222212222225012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667227120090907WTT#TYZ9@22222112204306100000000 -T12023011111166725520600403591120233120000300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111116672553219650301WTTZP9TTT2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000435700000000000000000000 -T320230111111667255120100424WT@YYTZ0@22222112206306100000000 -T12023011111166727222000409871120213110591300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116672721219870513WT@@Z0PBB2221222222221012211110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667272120170412WT@WT9T0922212212204398100000060 -T12023011111166732924600406061120313110542300000000050003920160000000000000000000000000000000261122222000000012219072 -T2202301111116673291219770705WTTP0B0#02222212222221012216110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667329120160912WTTB@#@YZ22222112204301100000000120120918WTT@#90Y922222112204305100000000 -T12023011111166735324100402401120423110939300000000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111116673531219970102WTTT9BZZW1222212222222011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116673531219970327WTTPW0#@Z1222211222222021212190075323011800000000000000000000000000000000000000000000000000000000200000000000000000000000001577 -T320230111111667353120210401WTT#PB#Z@12222122204398100000000120190307WTTZZBT9P12222122204398100000000 -T12023011111166756221700406141120213110516300000000000004170400000000000000000000000000000000000222222000000002229072 -T2202301111116675621219780418WTT90ZT@W2222212222221012212120930023010900000000000000000000000000000000000000000000000000000000020000000000000000000000009999 -T320230111111667562520110923WT@B9YBPW22222112104305109140000 -T12023011111166765221000408061120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116676522219770127WT@YT9P9T2222212222211012212111630013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111667652120080104WTT9WBPTT22222122204307100000000 -T12023011111166772424200408571120333110740300000000000005280340000000000000000000000000000000000222222000000002229022 -T2202301111116677242219860313WT@#B@#PY2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111667724120190726WT@BWY@BW22222122204398100000000120180702WTTW00ZZY22222112204398100000000 -T12023011111166773220600409001120233120000300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116677323219820418WTT0B@ZZT2222212222221012212110243611069930000000000000000000000000000000000000000000000000000000000000371900000000000000000000 -T320230111111667732120140212WTT09@PZZ22222122206302100000229 -T12023011111166775421400408021120513111100300000000000005320100000000000000000000000000000000355122222000000012219012 -T2202301111116677541219900327WT@@ZTTPZ1222212222221012211110263423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667754120130912WT@@P#@TZ12222112204303100000000120090913WT@TZ9W#Y12222112204307100000000 -T320230111111667754120190501WTTT@TBWY12222122204398100000000120150911WTTTWB9YP12222222204301100000000 -T12023011111166779224700406701120212110611300000000000003160190000000000000000000000000000000211122222000000012219072 -T2202301111116677921219860509WT@ZW9W@P2222212222221012212110800023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667792120160713WT@#9P9Z922222122204398100000000 -T12023011111166784324700409321120313110786300000000005306540020000000000000000000000000000000000222222000000002229012 -T2202301111116678431219990118WTTT#9#@P2221212222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667843120190712WTTBWZP@012212122204398100000000120180105WT@YYWZ0Y12212112204398100000000 -T12023011111166792222700403021120533110835300000000000012030060000000000000000000000000000000000222222000000002229022 -T2202301111116679222219880727WT@YYBT9P1222222222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116679222219810111WT@YYBT9P1222221222222022208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111667922120080113WTT@WY#T912222222204308100000000 -T320230111111667922120150511WT@ZYWZYW12222112204301100000000120110309WTT9ZB9TY12222112204304100000000 -T12023011111166793521700406141120233120000124330000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116679353219720426WTT#P99WZ2222212222225012212110025811069940000000000000000000000000000000000000000000000000000000000000332600000000000000000000 -T320230111111667935120180722WT@@Y@Y0T12222122206398100000050 -T12023011111166794922100409491110233110611300000000000003630080000000000000000000000000000000000222222000000542219021 -T2202301111116679493219670907WT@TBPT@W2222212222223012213110273311069912000000000000000000000000000000000000000000000000000000000000073900000000000000000000 -T320230111111667949120200212WT@9TPZ@#22222122206398100000000 -T12023011111166802022100406981120212110611113020000074605280220000000000000000000000000000000000222222000000002229012 -T2202301111116680201219980112WTTWZTYPP2122222222221012212110233723011800000000000000000000000000000000280001000000000000000000000000000000000000000000000208 -T320230111111668020120210902WTTW00YYP22222112204398100000000 -T12023011111166810422000411981120213110598300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111116681041219930401WTT0@#@091222212222221012208110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668104120210711WT@#YPY0B12222122204398100000000 -T12023011111166820224200403511120233120000105170000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116682023219540926WTTP0@9T@2212212122225012216110006011069940000000000000000000000000000000000000000000000000000000000000324500001666000000000000 -T320230111111668202120140413WT@T0T90W22222212206301100000000 -T12023011111166821620600412561120213110611300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111116682161220000212WTT@TYPY02222212222221012212110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668216120220914WTT#PP#W#22222112204398100000000 -T12023011111166828620600407031120333110670300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116682863219670423WTTY9ZYBB2222212122212012213110451513069900000000000000000000000000000000000000000000000000000000000000000000000652001800000000 -T320230111111668286120170721WT@PBTTZB22222122209398100000000120140326WT@#TY0YP22222122206301100000000 -T12023011111166839322000412971120613111339300000000000010090370000000000000000000000000000000000222222000000002229012 -T2202301111116683931219880418WTTW@TBBY2222222222221012212910451523010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668393120060421WT@WW@WYB22221222204311900000180 -T320230111111668393120140112WTT9P@YBZ22221212204302100000000120090908WTT#P#T@Y22222112204307100000180 -T320230111111668393120190922WT@YYPT#Y22222112204398100000000120180901WTT#B@ZT022222122204398100000000 -T12023011111166855021000414221120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116685502219700218WT@9BW@T@2222212222213012212110770013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111668550120040101WTTPZP#P@22222112204311100000000 -T12023011111166865624200404422120213210598300000000000005280370000000000000000000000000000000000222222000000002229032 -T2202301111116686561219760101WTTBW9WY02222122222224012208910144623011800000000000000000001000000000000060000000000000000000000030000000000000000000000000000 -T320230111111668656120120726WTTP0BB9T22221222204304900000000 -T12023011111166872222000411972120312210766300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111116687221219930908WTT99P#WY2222122222223012208910114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668722120160427WT@P@W0WB22221222204398900000000120130301WT@W9#0P922221222204398900000000 -T12023011111166876220800411601120513111116300000000000008880070000000000000000000000000000000000222222000000002229072 -T2202301111116687621219910409WT@#TWP0Y2222212222223012212120650023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668762120130227WTTB0T@WT12222112204303100000000120100101WT@0##BZ#22212112204305100000000 -T320230111111668762120220324WT@PP0ZY912222222204398100000000120150527WT@@BBWZ912222112204301100000000 -T12023011111166877920600402131120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111116687791220010421WT@@TT@Y@1222212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111166879124600406061120233110557300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116687913219610201WT@ZYBP091222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668791120080408WT@TW9#@Z22222112206308100000016 -T12023011111166886922000407412120213210598300000000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111116688691219740423WT@YTYZ#W2221222222225012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668869120140723WT@BPY99T22212212204301200000000 -T12023011111166892624900404261120212110516300000000000004170110000000000000000000000000000000000222222000000002229072 -T2202301111116689261219870204WTTPWT9B92222212222221012212110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668926520140727WT@Y0WBYY22222112104301109140000 -T12023011111166894622000407092110213210516300000000000002210010000000000000000000000000000000000222222000000002229032 -T2202301111116689461219930304WT@9TPY9W1222212222221012202210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111668946120140108WT@9TPY9W12222212204398200000000 -T12023011111166901520800414651120212110611300000000006605280230000000000000000000000000000000000222222000000002229012 -T2202301111116690151219750901WT@9@B@PB2222212222225012214110510923011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111669015120100301WTTW@@0WP22222212204304100000000 -T12023011111166901722000402321120212110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111116690171219740718WT@T9@W9Z2222211222225012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669017120090112WT@0YZT@T22222112204306100000000 -T12023011111166905424200400491110313110740300000000000004430060000000000000000000000000000000000222222000002112219012 -T2202301111116690541219970923WT@9PPT#Y1122221222221012210110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669054120190709WTT@ZYZPP11222222204398100000000120180724WTTYZB9TP11222222204398100000000 -T12023011111166906324200409731120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111116690631219960414WTTZYTTYT2222212222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000001500 -T2202301111116690631219940926WTTP##TY@2222211222222021298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669063120160218WTTBBBTZW22222122204398200000000 -T320230111111669063120210326WT@9YW0ZT22222122204398200000000120180523WT@PY@BZZ22222122204398200000000 -T12023011111166914222000404841120213110611300000000000003160280000000000000000000000000000000211122222000000012219012 -T2202301111116691421219840101WTT@W#TTB2222212222221012216110223823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669142120050112WTT9#YZ9912222122204310100000000 -T12023011111166916124700413891120422110969300000000017107710130000000000000000000000000000000000222222000000002229012 -T2202301111116691611219650421WTTWY@BY02222221222222011211190451523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116691611219820104WTTW9#WBT2222222222222021206190451523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669161120130904WT@T@@TY922222222204303100000000120080207WT@9@YW9Z22222222204308100000000 -T12023011111166917324700409321120213110600300000000000003160390000000000000000000000000000000211122222000000012219012 -T2202301111116691731219730127WT@PB9TB02222211222221012212110392123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669173120050411WTTTTBWY922222112204311100000000 -T12023011111166924922700408351120213110598300000000002005280050000000000000000000000000000000000222222000000002229012 -T2202301111116692491219880422WT@TP99ZW1222221222221012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669249120140726WTTZ@0YY022222212204302100000000 -T12023011111166930925200407301120313110766300000000000003920040000000000000000000000000000000261122222000000012219072 -T2202301111116693091219760111WTT@WWP9#2222212222221012212110940023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669309120120114WT@WYPTW#22222112204303100000000120090127WTT#0W9@#22222112204307100000000 -T12023011111166931722000411551120313110835132050000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111116693171219970402WT@TY@WZB2221222222221012204210164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669317120180322WT@9TPY9W22212222204398200000000120160423WT@9#Z@WT22212222204398200000000 -T12023011111166937323800409221120623111339300000000205210090180000000000000000000000000000000000222222000000002229012 -T2202301111116693731219860904WTTB0TB#@2122221222221011211190322823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116693731219830201WT@P0#YZB2222212222225011209110600023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669373120100502WTT@TP@#@22222222204306100000000120070101WTT#0#@@B22222122204308100000000 -T320230111111669373120170412WT@YBY9Y922222112204398100000000120110723WTTTPTYY#22222122204304100000000 -T12023011111166942924200404891120313110766300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111116694291219690502WTTYT9Z#W2221221222223012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669429120110723WT@#PPT#022212222204305100000000120090209WTTZPW#@W22212212204308100000000 -T12023011111166948524200408571120213110631300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111116694851219760323WTTTZYT0Y2222212222221012212111200023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669485120130922WTT#ZZ9TT12222122204303100000000 -T12023011111166984322000405841120333110516300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111116698432219730223WT@YYBT9P1222222222225012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669843120070912WT@BTWBB@12222222204309100000000120040322WT@@W##W#12222212204311100000000 -T12023011111166987525200407301120213110598300000000000005280070000000000000000000000000000000000222222000000002229072 -T2202301111116698751219880114WTT0#@@0Y1222212222221012209110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111669875120220704WTTWBPZTP12222122204398100000000 -T12023011111166991422000409411120412110969300000000000007710300000000000000000000000000000000000222222000000002229012 -T2202301111116699141219890901WT@P0Z0B92222212222225012213110570323011800000000000000000000000000260002000000000000000000000000040000000000000000000000000000 -T320230111111669914120080927WTTYB099@22222222204308100000000 -T320230111111669914120160501WT@T#ZWTY22222212204398100000000120140907WTTWZPW##22222212204302100000000 -T12023011111167009521000414221120213110611300000000000005280640000000000070007000000000000000000222222000000002229072 -T2202301111116700951219990127WTTPW@T0@2122222222221012211110650023011400000000000000000000000000000000000000000000000000000000220000000000000000000000000000 -T320230111111670095120180502WTTZ0P9B#11222212204398100000000 -T12023011111167011524200414021120232110446117380000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116701155219880707WT@WBPB#@2222212222221012212110362411069928000000000000000000000000000000000000000000000000000000000000253700000000000000000000 -T320230111111670115120080124WTT0YT9YT12222222209307100000000 -T12023011111167012420800411931120812111691300000000010011650180000000000000000000000000000000000222222000000002229072 -T2202301111116701241219960326WTT@9YPZB2222212222221012210110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111670124120120727WT@ZWT0Y922222122204305100000000 -T320230111111670124120140327WT@#9T#@#22222112204301100000000120130905WT@W@WW9Y22222112204304100000000 -T320230111111670124120160712WTTZT@TTT22222112204301100000000120140327WT@#WPPB@22222112204301100000000 -T320230111111670124120210227WT@#BWZ0022222122204398100000000420200423WTT9Z@BZP22222112104398109140000 -T12023011111167013625800405801110533110740300000000000004000010000000000000000000000000000000000222222000000002229021 -T2202301111116701362219870904WTT00@ZP91222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116701362219870227WT@YYBT9P1222221222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000014930000 -T320230111111670136120140718WTTZB@B9012222222204302100000000 -T320230111111670136120210407WTTY###W912222212204398100000000120190721WTTY@TP@012222222204398100000000 -T12023011111167030722000411971120412111034300000000002707710260000000000000000000000000000000000222222000000002229012 -T2202301111116703071219870926WT@WZT@0W2221222222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111670307120050513WT@0WW#PT22212222204311100000000 -T320230111111670307120210214WT@#T@WZ022212222204398100000000120090107WT@@#P@W@22212212204306100000000 -T12023011111167044225900410241120233120000300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111116704423219680414WT@ZPT0TZ1222222222222012203110006011069940000000000000000000000000000000000000000000000000000000000000376400000000000000000000 -T320230111111670442120050423WTTZYY#9Z12222212207310100000000 -T12023011111167063220600400871120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111116706321219910312WTTZTWWZ02222212222222011212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116706321219880313WT@#@BTWP2222211222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111670632120210213WT@#9@0PW22222112204398200000000120150721WT@WT0#0T22222112204301200000000 -T12023011111167082022000403351120212110516300000000000000690290000000000000000000000000000000000222122000000002229012 -T2202301111116708201220000326WT@WB@#9W2221222222221012210120322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111670820120160704WTT#ZZB#P22222222204398100000000 -T12023011111167085725000401171120213110598300000000000005280420000000000000000000000000000000000222222000000002229012 -T2202301111116708571219830312WT@BYBTP@2222212222225012212110421823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111670857120220922WT@BYBW0Z22222122204398100000000 -T12023011111167086624200414851120232110423300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111116708663219890207WT@@WYP0#2221222222222012210110352511069922000000000000000000000000000000000000000000000000000000000000185600000000000000000000 -T320230111111670866120090918WT@#Z#ZY#22212222207307100000000 -T12023011111167098222000407241120412110939300000000000005780330000000000000000000000000000000192222122000000012219072 -T2202301111116709821219930501WTTYBZZWW1222212222221012211120820021011734000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111670982120090708WTTW@@BBZ12221222204305100000000 -T320230111111670982120180912WTTZ0##PY12221222204398100000000120130914WT@#Z0W0Y12221222204303100000000 -T12023011111167099423500405981120233120000300000000000904170620000000000000000000000000000000000222222000000002229022 -T2202301111116709943219530405WT@@P0P@02222212222225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000005240 -T320230111111670994120160109WT@W#WT@Z22222122206398100000000 -T12023011111167105221000411361120313110747300000000072100880070000000000000000000000000000000000222222000005662219012 -T2202301111116710521219830904WTT0T@PZ92222212222223012216120085221011828000000000000000000000000000000000000000000000000000000000000199000000000000000000000 -T320230111111671052120140711WTTTY9T@012222122204302100000000120080723WT@Z#W#@T12222112204308100000000 -T12023011111167107420600407031120313110792300000000000706540290000000000000000000000000000000000222222000000002229012 -T2202301111116710741219950427WTTZWYTTW2222212222225012212120293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671074120170522WT@WW00YZ22222112204398100000000120150427WT@WT#0BY22222122204398100000000 -T12023011111167114424200404701120233110611300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111116711443219570923WTTYBPP9#2222211122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001188000000000000 -T320230111111671144120060422WT@B@Y@W021222222206310100000000 -T12023011111167115424200414721120213110598300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111116711541219920424WT@#9W09@2222222222221012211110441621011815000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671154120140414WT@ZB@0P922222212204302100000000 -T12023011111167126522000408341120312110793114530000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111116712651219870318WTTWZY0WP2222222222221012215120243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671265120170313WT@TBP#Z#22222212204398100000000120110124WT@WBTZ0Y22222212204304100000000 -T12023011111167127924200409091120333110740111100000000005280260000000000000000000000000000000000222222000000002229022 -T2202301111116712791219840401WT@PYW#9Z2222212222225012216110461423099900000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111671279420180705WT@9@TWYP22222122104398109140000120100113WTTWZ@00B22222112204304100000000 -T12023011111167130222000405321120323110740300000000300000010040000000000000000000000000000000000222222000000002229012 -T2202301111116713021219780722WTTYY9P0@2221222222222011214210015911011800170000000000000000000000000000070000000000000000000000000000106300000000000000000000 -T2202301111116713021219650313WTT###9ZZ2221221222222021216210015911011800190000000000000000000000000000000000000000000000000000100000135300000000000000000000 -T320230111111671302120210123WT@ZP@W9B22222212204398200000000 -T12023011111167134522700401571120413111034300000000050004620480000000000000000000000000000000308122222000000012219012 -T2202301111116713451219820301WT@@TYPPB2222212222223012212110491123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671345120090311WTT@W@P9T22222122204306100000000 -T320230111111671345120170922WT@Y9BTWZ22222112204398100000000120170922WTT#Z#YYY22222112204398100000000 -T12023011111167142321700406141120233110420300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116714233219850112WTT@P990@2222212222225012212110174311069939000000000000000000000000000000000000000000000000000000000000301800000000000000000000 -T320230111111671423120060112WT@ZW9TPB12222222207309100000000 -T12023011111167142824700406701120213110281300000000058302290920000000000000000000000000000000166122222002000022219072 -T2202301111116714281219830707WT@YZY##Y2222212222221012216110930023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671428520130523WTT0ZPYZP22222112104303108840000 -T12023011111167147825200407301120533110835300000000000006540750000000000000000000000000000000000222222000000002229022 -T2202301111116714782219810312WT@YYBT9P1222222222222012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116714782219880407WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671478120070918WTTBWY@PZ12222122204309100000000 -T320230111111671478120120304WTT#T#TBZ12222222204302100000000120100109WTTBBZW0P12222222204305100000000 -T12023011111167149224200404701120212110611300000000000002270050000000000000000000000000000000000222122000003012219012 -T2202301111116714921219860111WTTW#YWP#2222212212223012213110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000301 -T320230111111671492120220709WTT9#@B9Y22222122204398100000000 -T12023011111167164722000402461120513111034300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111116716471219810307WTTBB@0ZW1222211222222012212290114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116716472219850512WT@YYBT9P1222212222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671647120060318WT@9ZY0WW12222212204310100000000 -T320230111111671647120120501WT@09#PBZ12222122204305100000000120090426WT@B#PP9Z12222112204308100000000 -T12023011111167167522000410051110533110576300000000000004930010000000000000000000000000000000000222222000000002229021 -T2202301111116716752219870507WT@9#@YT01222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671675120200405WTTWPZ#0Y12222222204398100000000120180327WT@WBWPB#12222212204398100000000 -T320230111111671675420140407WT@@PW00T12222212204303900000000420060726WTTBZP@P912222222204308900000000 -T12023011111167172022000410051120113110376300000000000002500090000000000000000000000000000000166122222000000012219012 -T2202301111116717201219900408WTT#9@0Y@2222212222221013212190431723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111167172122700413181120413110959300000000000004490180000000000035001000000000000000000222222000003222219012 -T2202301111116717211219830301WTTZWW@992222212222221012212110530721011809000000000000000000000000000000000000000000000000000000000000064300000000000000000000 -T320230111111671721120050107WTTWPPZ@@22212122204310100000000 -T320230111111671721120180927WTTB9#BW#22212122204398100000000120070309WTT@PY99022212112204309100000100 -T12023011111167185622000412012120623211395300000000000010090030000000000000000000000000000000000222222000000002229032 -T2202301111116718561219910913WTT@T@9PB2222221222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116718561219910727WT@T@YY9Y2222222222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671856120150908WTT9PBY9P22222222204301200000000120130913WTTWYP0PB22222222204302200000000 -T320230111111671856120180901WT@Z#999P22222212204398200000000120170204WTTTYZ#Z022222222204398200000000 -T12023011111167190422000405181120322110835300000000329206540210000000000000000000000000000000000222222000000002229012 -T2202301111116719041219810423WT@#@WPZY2221222222221011212190204023011800000000000000000000000000000000180002000000000000000000250000000000000000000000000000 -T2202301111116719041219730423WT@YTT09P2221221222221011216290114923011800000000000000000002000000000000000000000000000000000000280000000000000000000000000000 -T320230111111671904120210112WT@#TYZPZ22212222204398100000000 -T12023011111167196224700406741120312110796300000000050006540260000000000000000000000000000000000222222000000002229072 -T2202301111116719621219770312WT@009B0#2222212222223012212110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671962120120923WTT#P@P@Y22222122204303100000000120120923WT@PZ@@@922222112204303100000000 -T12023011111167196522700408351110323110835300000000000004430030000000000000000000000000000000000222222000001262219012 -T2202301111116719651219980124WTTY##YBT2222121222221011212990025821011938000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116719651219960907WT@PP@#YZ2222122222221011212990025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111671965120180707WTTWZBWYP12221212204398100000000 -T12023011111167226321000411361120312110744300000000132506540990000000000000000000000000000000000222222000000002229072 -T2202301111116722631219680327WT@Y0B@W02222212222225012212112030023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672263120080701WT@9@ZBBW22212222204306100000050120060412WTTZTPZZ022222112204309100000050 -T12023011111167228922000408891120312110835300000000000906540200000000000000000000000000000000000222222000000002229012 -T2202301111116722891219990218WTT09B9PT1222212222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672289120170907WTTP##W@912222112204398100000000120160518WT@T@#0BP12222112204398100000000 -T12023011111167244624100410041120233110516105200000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111116724463219680901WT@YY@ZZB2222212222223012213110006011069947000000000000000000000000000000000000000000000000000000000000235000000000000000000000 -T320230111111672446120150913WT@Z9TZZ#22212122206301100000000 -T12023011111167250724700408301120213110598300000000000005280710000000000000000000000000000000000222222000000002229072 -T2202301111116725071219750708WT@B0BT0Y2222212222221012214120720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672507120120305WT@ZTBB9Y22222112204302100000000 -T12023011111167252422000402371120612111350300000000000007560020000000000000000000000000000000000222122000000002229012 -T2202301111116725241219780102WTTZT#T#W2221222222223012213120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672524120060512WT@ZZWW#Y22212222204309100000000 -T320230111111672524120090913WTTZ#P0@@22212222204306100000000120070121WTT#0#PZY22212212204307100000000 -T320230111111672524120140727WT@B#Z0#W22212212204301100000000120120912WTTW@B@WB22212222204303100000000 -T12023011111167258120600404121120633110969300000000000007710340000000000000000000000000000000000222222000000002229022 -T2202301111116725812219860423WT@YYBT9P1222221222222012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116725812219830327WT@YYBT9P1222222222222022208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672581120070321WT@YW#BPT12222112207307100000000120070105WTT#YZ99T12222212204308100000000 -T320230111111672581120170908WT@Y#@@Y912222212204398100000000120150527WTT@ZTZ@T12222212204398100000000 -T12023011111167260922000412231120212110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111116726091220000526WTTY99@@92222122222221012211110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672609120210123WTT@B0@@022221222204398100000000 -T12023011111167264425800405801110313110704300000000000006110010000000000000000000000000000000000222222000000002229012 -T2202301111116726441219900118WT@Z#9PZ92222212222223012212120114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672644120150204WT@P#Z9TY22222122204301100000230120090101WTT@PPWPY21222222204306100000000 -T12023011111167264923800413801120313110790300000000000206540540000000000000000000000000000000000222222000000002229012 -T2202301111116726491219940401WTT0TYYB#2222212222221012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672649120210313WTT@W0WT#22222122204398100000000120180204WTT@@T@W@22222122204398100000000 -T12023011111167283424100402401120213110611300000000000005200370000000000000000000000000000000000222222000000002229012 -T2202301111116728341219830123WTTB@PWWB2222212222221012212120382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672834120220707WT@900Z0922222122204398100000000 -T12023011111167285121700407751120312110835124990000050006540770000000000000000000000000000000000222222000000002229072 -T2202301111116728511219980127WT@B#W@PT2222212222221012212110770021011738000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672851120190302WTT@TZ#@022222122204398100000000120180101WTTPB0Z0W22222122204398100000000 -T12023011111167292922000414461120213120000300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111116729291220020304WTT0ZW9PZ1222222222221012212210085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111672929120220901WT@B@90YP12222212204398100000000 -T12023011111167299923800413801120313110740300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111116729992219820512WT@Z9BY#02222121222212012216190174313089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T2202301111116729991219920108WTTTZW@9#2222212222222022212190243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000001358 -T320230111111672999120210126WT@BY0WYB22221122204398100000000 -T12023011111167302224200409091120433110493300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111116730223219910523WT@W9Z99@2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111673022420180318WTTTTZ#YZ22222112204398100000000 -T320230111111673022120220127WT@PW09T#22222112209398100000485120210409WTTWW#BT022222112208398100000485 -T12023011111167310625800405241110533110740300000000000003400010000000000000000000000000000000000222222000000002229021 -T2202301111116731062219810112WT@YYBT9P1222212222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116731062219840727WT@YYBT9P1222211222221022201990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111673106420090704WTTT0W#0012222112104308109140000 -T320230111111673106120220718WTT#T#0WP12222112204398100000000120170712WT@#9ZYT012222112204398100000000 -T12023011111167311623500408281120533110939132680000000001170110000000000000000000000000000000000222222000006542219022 -T2202301111116731162219900726WTTTYZ@ZW1222212222221012212910006011079918000000000000000000000000000000000000000000000000000000000000116100000000000000000000 -T320230111111673116120170926WTT9Y@W0T12222122204398100000000120080727WT@@99WWY12222112204307100000000 -T320230111111673116120210127WT@#PBYZT12222112204398100000000120190122WTT@YWTBB12222122204398100000000 -T12023011111167315020600414251110423110939300000000000007210010000000000000000000000000000000000222222000000002229012 -T2202301111116731501219810402WT@9TPY9W2222212222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116731501219840327WT@9TPY9W2222211222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111673150120110127WT@9TPY9W22222112204305200000000120080727WT@9TPY9W22222122204307200000000 -T12023011111167316225100407671120623111339300000000040010090320000000000000000000000000000000000222222000000002229012 -T2202301111116731621219780701WTTPY@W@Y2222212222222011212110332723011800000000000000000000000000000000000000000000000000000000300000000000000000000000000000 -T2202301111116731621219770327WTT0PYBPY2221221222222021213190253523011800000000000000000000000000000000080001000000000000000000000000000000000000000000000000 -T320230111111673162120090723WTTWWYT#Z22212122205306100000000120050914WTTZYZYWB22212122205311100000000 -T320230111111673162120200211WTTZZ#9P922212112204398100000000120110323WT@#@BZPW22212122205304100000000 -T12023011111167326324200402541110313120000300000000000000210010000000000000000000000000000000000222222000000002229012 -T2202301111116732631219870518WTTT9@@PB2222212222225012212120025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111673263120210909WT@ZZ#P@#22222112204398100000000120200223WTT90B99B22222212204398100000000 -T12023011111167332524700405831120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111116733251219840322WT@W9#WTP2222221222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116733251219860726WT@0#@W0Z2222222222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111673325120140324WT@9TPY9W22222222204301200000000120110901WT@9TPY9W22222212204305200000000 -T12023011111167339222000407241120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116733923219640209WTTPPZ#YW2222211222222012298120006013069900000000000000000000000000000000000000000000000000000000000000612500000000000000000000 -T320230111111673392120160709WTT9BW0BW22122122206398100002373 -T12023011111167341720600402141120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116734172219820523WT@#WYZZZ2222222222211012211111710013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111673417120090423WT@ZYYPZB22222222204306100000000 -T12023011111167349524700408301120323110766300000000000806540040000000000000000000000000000000000222222000000002229012 -T2202301111116734951219900426WT@TW9@TZ2222121222222011212990065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116734951219850421WTTYT0PYY2222122222222021212990065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111673495120160518WTT0#TYWW22221222204398100000000 -T12023011111167350120600404491120213110611300000000000002460080000000000000000000000000000000000222222000002822219012 -T2202301111116735011219850905WT@PBW##T2222212222223012214110095121011809000000000000000000000000000000000000000000000000000000000000056200000000000000000000 -T320230111111673501120150921WTT@WB@BB12222122204302100000000 -T12023011111167375022700408351120533111116300000000000007710820000000000000000000000000000000000222222000000002229022 -T2202301111116737502219810423WTTZZ9Z9T2221222222211012210120312913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111673750120120414WT@#Z@B9022212212204304100000000120090427WT@009Z9@12212212204307100000000 -T320230111111673750120190214WTTPT#WTT22212222204398100000000120150723WTTYWTW9022212212204398100000000 -T12023011111167384922000407242120213210598300000000000005280080000000000000000000000000000000000222222000000002229032 -T2202301111116738491219850713WTTTP#@ZB2222212222225012215210095123011800000000000000000001000000000000000000000000000000000000230000000000000000000000000000 -T320230111111673849120120123WTTZTPZTY22222112204303200000000 -T12023011111167394124600403881120433110939300000000000006540720000000000000000000000000000000000222222000000002229022 -T2202301111116739413219550321WTTWY@@BP2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000968000000000000 -T320230111111673941120090207WT@9WYW@922222122206306100000000 -T320230111111673941120120701WT@0YPWY#22222112206302100000000120100201WT@TZ#@Y922222122206304100000000 -T12023011111167396424600402361120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116739642219790712WTT9#0TWZ2222211222212012211190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111116739642219770718WT@T#WT#Z2222212222212022209190421813089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111673964120060927WTTW@P#9B22222112204309100000000 -T12023011111167398222000403351120312110740300000000000300260470000000000000000000000000000000000222222000006282219012 -T2202301111116739821219750709WT@TPWPBW2222212222225012212110471321011900210000000000120000000000000000000000000000000000000000040000125500000000000000000000 -T320230111111673982120130312WTTPBWZT@22222112204303100000000120110326WT@9TW90W22222122204305100000000 -T12023011111167400123500407611120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116740013219610413WTT@B@0B92222212222211012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111674001120120913WT@@#BWWT22222122206305100000000120090918WTT#ZYB@T22222122206308100000000 -T12023011111167411725900414481120233120000300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111116741173219680709WTT@BP0Z@2222212222222012215110263411069906000000000000000000000000000000000000000000000000000000000000938100000000000000000000 -T320230111111674117120160727WTT0Y#Z0W12222112206398100000014 -T12023011111167414121700406141120312110740111990000107305280840000000000000000000000000000000000222222000000002229072 -T2202301111116741411219870326WT@Z9WTB#2122222222221012216110910021011700210000000000000000000000000000000000000000000000000000030000125500000000000000000000 -T320230111111674141120180727WT@TZPWBB22222122204398100000000420120905WTT0B99PB22222112104304109140000 -T12023011111167422320600409772120333210221300000000000005280690000000000000000000000000000000000222222000000002229022 -T2202301111116742233219850705WT@BP0#PP2222122122224012212910025813079900000000000000000000000000000000000000000000000000000000000000000000000943000000000000 -T320230111111674223120080311WT@T#00BW22221212207307900000000120070401WT@ZTWPPY22221212207308900000000 -T12023011111167423025100407671120233120000300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111116742303219510707WT@9@90Z91222221122222012216110006013069900000000000000000000000000000000000000000000000000000000000000754800001265000000001381 -T320230111111674230120150323WT@PW0Z0@12222212206398100000050 -T12023011111167431724700408091120212110611105820000000003340500000000000000000000000000000000000222222000001942219012 -T2202301111116743171219870402WT@P9P@0P2221222222221012214110510921011813000000000000000000000000000000000000000000000000000000000000077200000000000000003884 -T320230111111674317120110427WTTTPYY0@22212222204305100000000 -T12023011111167432322000402371120212110611300000000000005280350000000000000000000000000000000000222222000000002229072 -T2202301111116743231219900105WTTYBB0Y92221222222221012212110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111674323120070927WT@YBYZB012212212204309100000000 -T12023011111167448622000408341120213110598300000000000005280170000000000000000000000000000000000222122000000002229012 -T2202301111116744861219980123WTTPZ#@@@2222212222221012212120184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111674486120210421WTTZWW0@B12212112204398100000000 -T12023011111167454625900402831120313110835300000000015006450410000000000000000000000000000000000222222000000092219072 -T2202301111116745461219800907WTTZY0#9B1222222222225012216111000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000008 -T320230111111674546120080427WTT0@W9ZW12222212204308100000050120060118WTTZYW0WW12222212204309100000050 -T12023011111167457221400408021120733111156300000000025008880610000000000000000000000000000000000222222000000002229022 -T2202301111116745722219890905WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116745722219870705WT@YYBT9P1222221222222022202990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111674572120070411WTT9ZT00P12222212204307100000000 -T320230111111674572120130902WT@YTY9BB12222212204305100000000120090122WTTP9#YZY12222222204306100000000 -T320230111111674572120180718WTT@P0BB912222122204398100000000120170427WTTWYW9WP12222122204398100000000 -T12023011111167460020600400871120432110893300000000000006540420000000000000000000000000000000000222222000000002229022 -T2202301111116746003219590408WTTB@W#0Y2222212122221012213110730013069900000000000000000000000000000000000000000000000000000000000000000000000957000000000000 -T320230111111674600120090526WT@TPWZBB22212122206307100000000 -T320230111111674600120160909WT@9YB#0W22212122206398100000000120100723WTTWYB#T@22212122206305100000000 -T12023011111167460822000405181120213120000300000000002605280830000000000000000000000000000000000222222000000002229072 -T2202301111116746081219650111WTTPBWPP92212222222221012212110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111674608120040321WT@#BZWWZ22122222204310100000000 -T12023011111167461020600401641120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116746102219800712WT@WTZYWY2221222122215012212120006013109900000000000000000000000000000000000000000000000000000000000000000000000546038800000000 -T320230111111674610120110401WTT#P@Y#Y22212222204305100000000 -T320230111111674610420190323WT@9PT@Y022212212104398108070000120180207WT@PBYT0Z22212212204398100000000 -T12023011111167464223100408861120233120000300000000020004170590000000000000000000000000000000000222222000000002229022 -T2202301111116746423219500402WT@9Z09B91222211122224012214110006013069900000000000000000000000000000000000000000000000000000000000000000000001329000000006465 -T320230111111674642120050323WTTBBP9Y012222212206311100000050 -T12023011111167468025200410141120512111116300000000010007710650000000000000000000000000000000000222222000000002229072 -T2202301111116746801219770212WT@B#0#WT2222212222222012214110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116746802219640523WT@9Y9PYP2222211222212022216190481213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111674680120090207WTT9W#B@912222112204307100000000 -T320230111111674680120130727WTTPB@@BW12222122204303100000100120120302WT@@0B09022222112205303100000000 -T12023011111167476724200408391120233110493300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111116747673219510522WTT#@BTYB2222211122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001225000000000000 -T320230111111674767120170121WT@B9W#Z@22222112206398100000000 -T12023011111167483822000411131110313110740129000000000004850010000000000000000000000000000000000222222000000002229012 -T2202301111116748381220020411WTT@#PYTW1222222222221012211110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111674838120220926WT@TB#YZ#12222222204398100000000120210418WTTZTZ0PW12222122204398100000000 -T12023011111167486423300410111120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116748643219560726WTT0@90WB2222212222211012212110441613069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111674864120050118WT@Z0P#Y022222122206310100000000 -T12023011111167490522000411282120322210835300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111116749051219910112WTTYPZ9#92222211222222011205290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116749051219930727WT@#WP#YP2222212222222021203290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111674905120100518WT@W#@W#@22222112204304200000000 -T12023011111167495625600412851120313110835300000000000004900130000000000000000000000000000000163222122000000012219012 -T2202301111116749561219790207WT@W9Y#@T2222212222221012212120520823010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111674956120090127WT@@YZP#T22222112204307100000000120060313WT@##WYP022222122204309100000050 -T12023011111167503922100406981120332110560300000000000005280250000000000000000000000000000000000222222000000002229022 -T2202301111116750392219780722WT@YYBT9P1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111675039120140414WTT0@WZTB12222212204302100000000120060401WTT#Z9ZTB12222212204310100000000 -T12023011111167509121400410861120212110407300000000000003160200000000000000000000000000000000211122222000000012219072 -T2202301111116750911219820512WTTPZWTBT2222212222223012213110850023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111675091120060412WT@P9ZWPW22222122204309100000000 -T12023011111167510524700413761120312110704300000000000005570310000000000000000000000000000000000222222000000972219072 -T2202301111116751051219690104WTTT9ZBZZ2221222222221012213111010021011941000000000000000000000000000000000000000000000000000000000000096200000000000000000096 -T2202301111116751055220020921WT@WPYW902221221222211043210190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111675105120110321WTT@BZT0022222122204304100000335 -T12023011111167510825900402721120333110611300000000068005280150000000000000000000000000000000000222222000000002229022 -T2202301111116751082219760301WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111675108120120723WT@PPYYPW12222212204304100000000120090104WT@W@ZZ9@12222222204306100000000 -T12023011111167512825900406081120533110835300000000000006540020000000000000000000000000000000000222222000000002229022 -T2202301111116751282219800507WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116751282219850404WT@YYBT9P1222221222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111675128120050414WTTTZT@W912222222204311100000000 -T320230111111675128120140212WTTYT99@Y12222222204302100000000120070408WTT9T@YT912222222204309100000000 -T12023011111167515624200402531120213110598300000000000005280100000000000000000000000000000000000222222000000002229042 -T2202301111116751561219920126WT@T090PT2222212222221012212110006023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111675156120220326WT@@B99B@22222112204398100000000 -T12023011111167516424700410421120313110760300000000148506540030000000000000000000000000000000000222222000000002229012 -T2202301111116751641219870201WT@#TZP092222211222225012210110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111675164120130904WTTWTZY@W22222122204303100000050120090111WTTYBWW9T22222112204307100000050 -T12023011111167517722000409971120313110740300000000000502770080000000000000000000000000000000000222222000003772219012 -T2202301111116751771219740423WT@9TPY9W2222212222221012214210095123011800000000000000000000000000000000210001000000000000000000000000150500000000000000000000 -T320230111111675177120120908WT@#ZWBWT22222122204305200000000120080924WT@#PTTY922222122204308200000000 -T12023011111167524724700408092120213210598113000000360005280080000000000000000000000000000000000222222000000002229032 -T2202301111116752471219850227WT@TZ90YY2222212222223012215910095123011800000000000000000000000000000000080001000000000000000000000000000000000000000000000000 -T320230111111675247120200926WT@T@PP0Y22222112204398900000000 -T12023011111167529324200403461120213110631108800000055205280290000000000000000000000000000000000222222000000002229072 -T2202301111116752931219850707WT@@@@PBY2122222222221012210111120023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000006 -T320230111111675293120190718WTT00TW#911222222204398100000000 -T12023011111167536021700406141120312110699300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111116753601219850321WTTB0#Z0B2222212222223012216110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111675360120160912WTTY@B9YZ22222122204301100000000120100327WTT0PW#0B22222112204305100000000 -T12023011111167590921700407751120212110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111116759091219890213WT@@09W#P2222212222221012212120382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111675909120220411WT@#Z@0W@22222122204398100000000 -T12023011111167609024700408091120323110835300000000000006540290000000000000000000000000000000000222222000000002229012 -T2202301111116760901219830518WT@WBPPWP2222211222221011209110501023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116760901219830323WT@P0#Z0W2221222222221011212190392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676090120100127WT@09#WP#22212212204306100000000 -T12023011111167609824900404261120433110948300000000000006540610000000000000000000000000000000000222222000000002229022 -T2202301111116760982219920527WTT@#T#TZ2222211222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000090400000000 -T320230111111676098120120318WT@00B0@Y22222122204303100000000 -T320230111111676098120160921WT@B@W9WP22222112204398100000000120140312WT@WTYW0Y22222122204301100000000 -T12023011111167626624700408302120233210459300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111116762663219670127WT@@B@Y0Z2222122222222012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676266120100212WT@P0BYZ022221212206305900000000 -T12023011111167626924700406491120233110516300000000000002030550000000000000000000000000000000000222222000002142219022 -T2202301111116762693219550927WTT99WTPB2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001355000000000228 -T320230111111676269120110701WTT0ZZB0Y22222122206304100000283 -T12023011111167628925000403231110213110516300000000000000650350000000000000000000000000000000000222222000004632219012 -T2202301111116762891219820524WT@TZ0W9P2212111222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676289120150327WTTYYYT9Y22222222204301100000120 -T12023011111167631623800413801110313110835123000000000002730010000000000000000000000000000000000222222000000002229012 -T2202301111116763161219860426WTTWZ90T02222211222225012216110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111676316120200124WT@T0P90#22222222204398100000100120180421WTTBW9T#@22222212204398100000100 -T12023011111167632622000403351120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111116763263219630424WT@09YZY@2122222222223012211110006011069937000000000000000000000000000000000000000000000000000000000000385200000000000000000000 -T320230111111676326120070411WT@@9#P#Y22222112206308100000011 -T12023011111167643422000403531120332110704300000000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111116764343219690718WTTWBPY#02221222222215012207110263413069900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111676434120130107WTTB9YW#W22212212206302100000000120060112WT@ZZB#0922212222206309100000000 -T12023011111167645624200414021120212110611300000000000405280160000000000000000000000000000000000222222000000002229012 -T2202301111116764561219720401WT@PB00WP2221222222225012216110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676456120090204WTTBBWB@T22212222204308100000100 -T12023011111167645920600411031120513111116300000000010008880330000000000000000000000000000000000222222000000002229012 -T2202301111116764591219860926WTTPPPPP02222212222221012216110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676459120110121WTTZ@9#WP22222112204305100000000120060718WT@PBPP9022222112204309100000000 -T320230111111676459120210426WT@PZWZZ922222122204398100000000120120421WTTPYZ0TP22222122204303100000000 -T12023011111167649624200409091120313110740300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111116764961220000405WTT9ZBZWB2222212222222012208190124823011800000000000000000000000000000000100000000000000000000000000000000000000000000000000000 -T2202301111116764962219930407WT@P9@9WZ1122221222215022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000083100000000 -T320230111111676496120220911WT@9TPY9W21222212204398100000000 -T12023011111167649722700408491120233110493300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111116764973219750127WTT0Y#90Y2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676497120180905WT@TTB#@B22222122206398100000000 -T12023011111167650221700407751120233110556300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116765022219800922WTTB@Y0WW2222212222213012209110382211089946000000000000000000000000000000000000000000000000000000000000284600000000045600000000 -T320230111111676502120060912WT@TWP90T22222122204310100000000 -T12023011111167659524200404891120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111116765951219740507WT@BZ9YTP2222212222221012211111770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676595120040105WT@9Y90Z@12222112204311100000000 -T12023011111167662324200404891120213110611300000000002505280120000000000000000000000000000000000222222000000002229012 -T2202301111116766231219810207WT@0W9@BY2122222222221012211110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676623120080221WT@P0BPZ021222222204307100000000 -T12023011111167665120600404491120233110493300000000050004170990000000000000000000000000000000000222222000000002229022 -T2202301111116766513219590726WT@@WTPWT2222212122222012213110164413069900000000000000000000000000000000000000000000000000000000000000000000000675000000000000 -T320230111111676651120070322WTTYP#PPY22222112206308100000000 -T12023011111167667824900404261120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111116766783219720902WTTP@@9Y@1222222222222012213110006011069928000000000000000000000000000000000000000000000000000000000000247400000000000000000000 -T320230111111676678120100307WT@909BTY12222212207306100000000 -T12023011111167671422000400811120233110495300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111116767142219570424WT@BZWWYZ2212221222211012213110670013089900000000000000000000000000000000000000000000000000000000000000000000000000034500000000 -T320230111111676714120050707WT@Z90YYT22122222204313200000000 -T12023011111167680022000414501110423110939300000000000003480010000000000000000000000000000000000222222000000002229012 -T2202301111116768001219920422WTTPPP0WZ2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116768001219960721WTTB9#WYB2222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676800120210121WT@@B@@PZ22222122204398200000000120190218WTT9W#WW022222122204398200000000 -T12023011111167690924700406631120212110611300000000015005280160000000000000000000000000000000000222222000000002229012 -T2202301111116769091219640418WTT#Y0WY92212222222221012207110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111676909120050123WTT#W@BWP22122212204310100000000 -T12023011111167692322000407411120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111116769231219790302WTT9PBBWB2222211222222011212290045623011800000016000200000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111116769231219780723WT@Y#ZZP#2222212222222021212290045623011800000016000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111676923120080118WTTP0#B@#22222122204309200000000 -T12023011111167698225600414411120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116769822219610418WT@ZBYTTY2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111676982120050118WT@TZ#0WB22222122204311100000000 -T12023011111167702925600411521120333110740300000000000005280220000000000000000000000000000000000222222000000002229022 -T2202301111116770293219580327WT@9B0P9B2222122122221012209110342611069967000000000000000000000000000000000000000000000000000000000000145800000637000000000000 -T320230111111677029120200723WTTYTTWYW22221212206398100000000120130414WTTBT#9ZP22221222206301100000000 -T12023011111167718122000404841120423111034300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111116771811219920105WT@P0@Z@Y2222211222222011212290045622011900000000000000320004000000000000000000000000000000000000090000000000000000000000000000 -T2202301111116771811219960301WT@Y#WP0@2222212222222021205290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111677181120190722WT@##YPZ@22222112204398200000000120160427WT@09PY9W22222112204398200000000 -T12023011111167723124700406632120213210611300000000000005280110000000000000000000000000000000000222222000000002229032 -T2202301111116772311219950911WT@9TPY9W1221222222221012207210124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111677231120190907WT@9TPY9W12212212204398200000000 -T12023011111167724723500402711110323110835300000000000006540010000000000000000000000000000000000222222000000002229012 -T2202301111116772471219810723WTT9Z0WB02222212222222011212290025823011800000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T2202301111116772471219740118WT@Z9WTWT2222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111677247120100726WTTPBY@0#22222122204306200000000 -T12023011111167734222000410051110313120000300000000000005480010000000000000000000000000000000000222222000000002229012 -T2202301111116773421219930412WTT@PPPP91122222222221012212110025823010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111677342120180726WTT@#@@W#11222212204398100000000120140322WTTZW#Y0W11222222204302100000000 -T12023011111167737522700408351120113110348300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111116773751219940312WTT@##W9T1222212222221013210110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111167752724700401281120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111116775271220040904WTT90B99#2222212222221012211110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111677527120210423WT@ZPY0#921222112204398100000150 -T12023011111167777923800413801120213110611300000000000003160410000000000000000000000000000000211122222000000012219012 -T2202301111116777791219810412WTTW0WTZ@2222212222223012216110501023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111677779120130921WT@@BY@YT22222112204302100000000 -T12023011111167786423900408291120413110740300000000005005280350000000000000000000000000000000000222222000000002229092 -T2202301111116778641219780413WTT9B9B#Y2122222222225012216110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111677864120070409WT@#TTB@021222222204309100000000 -T320230111111677864420140127WTTZ@TZ#T21222222104301107720000120120327WTT90Z@0Y21222222204303100000000 -T12023011111167791624700408981110213110536300000000000303910050000000000000000000000000000000000222222000002632219012 -T2202301111116779161219960304WT@PB99Y01222222222221012209110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111677916120210702WT@0TT9#Y12222112204398100000000 -T12023011111167798825100402211120213110611300000000002503160110000000000000000000000000000000211122222000000012219012 -T2202301111116779881219920723WTTT@0#0Y2222212222221012209110540623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111677988120110701WTTW#TTPW22222112204306100000000 -T12023011111167805422000405841110523111116300000000000001710010000000000000000000000000000000000222222000000002229012 -T2202301111116780541219910412WT@9W99TB2222212222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116780541219890922WT@YWPBY92222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678054120120901WTTYWZ@#Z22222122204304200000000 -T320230111111678054120200723WTTBY0Z@T22222122204398200000000120140101WTT#ZZT@B22222122204302200000000 -T12023011111167809020600414871120213110611300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111116780901219890911WTT9TTW0#1222212222221012213110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678090120130922WTTPP@PBB12222112204303100000000 -T12023011111167819824700409321110313110835300000000000005690320000000000000000000000000000000000222222000000002229012 -T2202301111116781981219880927WTTYZP@#W2222212222221012213110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678198120200312WTT9T@YPT22222122204398100000000120100426WTTP9B@9922222112204306100000000 -T12023011111167825523500404531120523111163300000000025004120390000000000000000000000000000000275122222000002012219012 -T2202301111116782551219910309WTTZ9#@@Y2222212222221011210110520823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116782551219890423WTTZ#YTWW2222211222221011212190243621010204000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T320230111111678255120160126WT@#ZTB@Y22222122204398100000000 -T320230111111678255120200524WTTTP@P0P22222122204398100000000120180923WTT#B9YBY22222122204398100000000 -T12023011111167825922700401571120713111480300000000000010090280000000000000000000000000000000000222222000000002229072 -T2202301111116782591219920323WT@BTY90Y2222212222221012210110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678259120120927WT@0PTT0912222122204305100000050120080114WTT00YY9Z22222212204308100000050 -T320230111111678259120160323WTTBBWP#012222122204398100000000120150318WT@W90Y0012222122204301100000000 -T320230111111678259120200714WT@09ZZBZ22222112204398100000000420180412WTTYY9#YP12222122104398107580000 -T12023011111167828522000402371120313110776300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116782851219750326WTT0Z9Z@B2122222222223012211210025821011942000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678285120070122WT@@T@ZZT21222212204304100000000120060504WTTWWPP#B21222222204306100000000 -T12023011111167833522000400591120212110606300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111116783351219670527WTTW0ZZ#W2211221222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678335120130309WT@Y@#TTW22222212204302100000000 -T12023011111167835925900406081120333110557300000000303205280230000000000000000000000000000000000222222000000002229022 -T2202301111116783592219820104WT@YYBT9P1222212222223012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678359120120523WT@TT00W@22222112204305100000000120060909WT@WB90B@12222222204311100000000 -T12023011111167847422000403351120213120000300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116784741220040424WTT9B09P92222212222221012212110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678474120220723WTTPT#YZW22222122204398100000000 -T12023011111167848121000411361120313110704300000000003704170450000000000000000000000000000000000222222000000002229012 -T2202301111116784811219820404WTTYZYT0T2222212222225012213120461423010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678481520150326WTT#PWZB922222112104398109140000520110408WTT9#9W9T22222112104305109140000 -T12023011111167850321400408021120332110611300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116785032219740408WT@YYBT9P1222222222223012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678503120070421WT@PW#ZT@12222122204309100000000120040322WTT@WP##P12222212204310100000000 -T12023011111167858625100407671120213110606300000000000003730470000000000000000000000000000000124222122000000312219012 -T2202301111116785861219980901WTTZP@BY@2122212222221012212120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000029 -T320230111111678586120170426WTTT0B09P11222122204398100000050 -T12023011111167866423500410671120232120000300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116786643219750726WTT9TWWZT2222222122221012215110461411069910000000000000000000000000000000000000000000000000000000000000100000001336000000000005 -T320230111111678664120150107WT@WBB@Z922212222206398100000000 -T12023011111167873222700408491120633111339300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111116787322219800727WTTT9YT##2222221222212012208110194113089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111116787322219870112WT@Z#Z@#92222222222212022208190342613089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111678732120110218WT@#900#022222212204305100000000120070412WT@BBY#WT22222212204309100000000 -T320230111111678732120190924WTT99T@#P22222212204398100000000120150314WTT9PBZ9@22222112204301100000000 -T12023011111167875020600402141120213110611300000000000005280040000000000035004000000000000000000222222000000002229012 -T2202301111116787501219900523WT@#9T0ZZ2222211222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678750120220101WT@9TPY9W22222112204398100000000 -T12023011111167877520900411721120213110598300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111116787751219890422WT@W#TW0B2222212222223012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678775120090718WTTZ9ZPZW22222122204305100000000 -T12023011111167896624200414021120612111339300000000000010090550000000000000000000000000000000000222222000000002229072 -T2202301111116789661219950723WTT0@T0WP1221222222221012212110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678966120130413WT@WT0Y@Z22222122204303100000000 -T320230111111678966120190912WTTTYB#0P12212212204398100000000120180204WTT@9@@0Z12212212204398100000000 -T320230111111678966120220412WT@B9PT@T12212122204398100000000120200312WT@9PBTBW12222122204398100000000 -T12023011111167899622700408351120233120000300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111116789963219650523WT@9ZP99T2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111678996120140326WTTZTZWY#22222122206301100000000 -T12023011111167901022000413731120213110470300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111116790101220020421WTTB#P@PZ2222122222221012211110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679010120190927WTTT#Z9BB22221212204398100000000 -T12023011111167909123500404531120313110835300000000373506540140000000000000000000000000000000000222222000000002229012 -T2202301111116790911219820309WTTYP#@TB1222222222225012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679091120210708WTTPPYPPZ12222222204398100000000120050704WT@0Z9WYB22222212204310100000000 -T12023011111167911823500411471120512111194300000000000008630730000000000000000000000000000000000222222000000252219012 -T2202301111116791181219880208WTT#YZY@Y1222222222221012212210501023011400000000000000000000000000000000000000000000000000000000000000010000000000000000000000 -T320230111111679118120110909WT@9TPY9W12222212204398200000000120090918WT@9TPY9W12222222204303200000000 -T320230111111679118120180904WT@PWZ@#B12222222204398100000000120170218WT@@@YWYB12222222204398100000000 -T12023011111167917324200404891120312110740300000000000000010680000000000000000000000000000000000222222000000002229072 -T2202301111116791731219910402WT@Y0PB##2221222222221012209110680011011800200000000000000000000000000000020000000000000000000000080000135400000000000000000000 -T320230111111679173120160524WT@Y0BPTT22212212204312100000000420100923WTT#@W99922212212104306109140000 -T12023011111167920524700405901120333120000300000000000005280780000000000000000000000000000000000222222000000002229022 -T2202301111116792053219570914WT@BZZBYT2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679205120130408WTT#T#ZWY21222122206302100000000120090204WT@PBZ0BB22222122206306100000000 -T12023011111167921320800411931120312110740300000000020005280560000000000000000000000000000000000222222000000002229012 -T2202301111116792131219960307WTT@#9YZP2222212222221012212190570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116792132219930127WTTTTZT##2221221222211102216190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111679213120180901WTTP#0@BT22212212204398100000000 -T12023011111167922925900406841120313110835300000000000006540800000000000000000000000000000000000222222000000002229042 -T2202301111116792291219830302WT@BBT@#@2222212222223012213110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679229120110704WTTBY#Z@B22222112204303100000000120070712WTTZ#TBY@22222112204307100000000 -T12023011111167939324900403221120512111116117780000000008880810000000000000000000000000000000000222222000000002229072 -T2202301111116793931219890707WTTB@BY9T2222212222221012211110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679393120160426WT@W9TZ#B12222122204301100000000120130112WT@@0BW@#22222112204303100000000 -T320230111111679393120190512WT@09ZPWB22222122204398100000000120170414WTTPB9B0B22222112204398100000000 -T12023011111167941222700408491120613111339300000000000010090330000000000000000000000000000000000222222000000002229012 -T2202301111116794121219900927WTT@@B@ZB1222222222222012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679412120120501WT@Y0@W@912222212204304100000000 -T320230111111679412120170309WT@B0BZT012222112204398100000000120130507WT@@W@90Z12222222204303100000000 -T320230111111679412120220912WT@Y@#PYT22222122204398100000000120200427WT@W99YZB12222112204398100000000 -T12023011111167953920800410751120213110611300000000060401620020000000000000000000000000000000000222222000003662219012 -T2202301111116795391219950104WT@WP#T@91212222222221012212110035721010111000000000000000000000000000000000000000000000000000000000000073000000000000000000000 -T320230111111679539120220113WTTY@0#Y012122222204398100000000 -T12023011111167960220600404121120232110493300000000000004170460000000000000000000000000000000000222222000000002229022 -T2202301111116796023219560314WTT0P#WPY2222212122215012216110095113069900000000000000000000000000000000000000000000000000000000000000000000000686023800000000 -T320230111111679602120060908WT@##Y#@Y22222122206309100000000 -T12023011111167963424700406701120313110766300000000016006540050000000000000000000000000000000000222222000000002229012 -T2202301111116796341219720322WT@Z9TYTY2222211222225012215210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679634120110302WTT#0#BY922222112204305200000000120080104WT@0P#YYP22222112204309200000000 -T12023011111167964322700408491110233120000300000000000002550010000000000000000000000000000000000222222000000002229021 -T2202301111116796435219900914WT@PPZZZ@1122222222222012212110124811069924000000000000000000000000000000000000000000000000000000000000080500000000000000000000 -T320230111111679643120070105WTT0Z0#Y022222122209309100000000 -T12023011111167965422000405841120623111359300000000000010090020000000000000000000000000000000000222222000000002229012 -T2202301111116796541219690402WT@9TPY9W2222211222222011216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116796541219810124WT@9TPY9W2222212222222021216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679654120080107WT@9TPY9W22222112204309200000000120060126WT@9TPY9W22222112204311200000000 -T320230111111679654120140312WT@9TPY9W22222122204302200000000120110124WT@9TPY9W22222122204306200000000 -T12023011111167969220600407031120512111116300000000000501950430000000000000000000000000000000065222122000006282219072 -T2202301111116796921219840213WT@YY#BZ#2222212222221012216121030021011900210000000000090000000000000000000000000000000000000000030000125500000000000000000000 -T320230111111679692120080413WT@@Y0Z@Z12222112204307100000000120060312WT@0Y#Y0Z22222212204308100000000 -T320230111111679692120150118WTT9YP#WZ22222112204398100000000120130722WTT9PZ@B@22222112204301100000000 -T12023011111167970625100407671120313110766300000000000006540040000000000070002000000000000000000222222000000002229012 -T2202301111116797061220000901WTTY0#0W92122222222221012210110045623011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111679706120200727WTTYW9#Z922222112204398100000000120190407WT@TWYYTZ22222112204398100000000 -T12023011111167971223500411471120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116797123219620702WT@P#W0P#2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001047000000000000 -T320230111111679712120090912WT@99WW@P22222122206308100000000 -T320230111111679712120120126WT@#@P#WT22222122206305100000000520110518WTT@9ZZTZ22222122106306109140000 -T12023011111167973725900403711120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116797371219960101WTT@Z90T92221222222223012212120263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679737120180408WTT0BPT9W22212222204398100000000 -T12023011111167988720600414772121323212746300000000000001340140000000000000000000000000000000000222222000014052219032 -T2202301111116798871219730404WT@PY0Z9B2222221222222011203290045621011952000000000000000000000000000000000000000000000000000000000000280800000000000000000000 -T2202301111116798871219820723WT@YZPB#W2222222222222021298290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111679887120070405WTTBY9ZY@22222222204309200000000120070405WTT##Y0Z#22222222204309200000000 -T320230111111679887120120913WTTPYZ@T022222212204304200000000120100307WT@TPWYZB22222222204305200000000 -T320230111111679887120140907WT@#P0YY922222222204302200000000120130111WT@YYB0PT22222222204303200000000 -T320230111111679887120160713WTT@TTBP#22221222204398200000000120150921WT@#90@WW22222212204301200000000 -T320230111111679887120220427WT@0PPZ##22222212204398100000000120180113WTTZZ@YTP22222212204398200000000 -T12023011111167989920600402141120213110598109910000004305280050000000000070001000000000000000000222222000000002229012 -T2202301111116798991219980202WT@P#P#002222212222221012214110065423010100000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111679899120220427WTT##WZ#B22222122204398100000000 -T12023011111168007025600414551120423111137300000000000006540340000000000000000000000000000000000222222000000002229012 -T2202301111116800701219850921WTTPTWW0B2222211222221011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116800701219850707WT@##P@YT2222212222225011212210332723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680070120220127WTTWTTPZ@22222112204398100000000120070411WT@YW#@TB22222122204307100000000 -T12023011111168007223300401771120413111034300000000025007710150000000000000000000000000000000000222222000000002229012 -T2202301111116800721219910318WTTWTTYP#2222212222223012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680072120140523WT@BP#P0922222112204398100000033 -T320230111111680072120200714WT@WPY9@W22222122204398100000033120160407WT@WZ9@Y#22222112204398100000033 -T12023011111168009520600414771120413110981117920000010007710240000000000000000000000000000000000222222000000002229012 -T2202301111116800951219900912WTTWBBT@B2222212222225012208110342623011700000000000000000000000000280000000000000000000000000000000000000000000000000000000000 -T320230111111680095120150127WTTW90#WB22222112204398100000000 -T320230111111680095120200123WTTYT0P9Y22222122204398100000000120190321WT@P@B@W#22222122204398100000000 -T12023011111168014120600402141120313110835108930000080806540140000000000000000000000000000000000222222000000002229012 -T2202301111116801411219970326WTT#BTWTY2222212222221012216110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000008266 -T320230111111680141120170408WT@YW99WZ22222112204398100000000120170408WTTBB0B#@22222112204398100000000 -T12023011111168034823900408801120512111116124500000000007650040000000000000000000000000000000000222222000001232219012 -T2202301111116803481219970301WTTPP0WP#2222212222221012210110213923011800000000000000000000000000000000000000160000000000000000000000000000000000000000000122 -T320230111111680348120180927WT@#WYW0Z12222112204398100000000120170913WT@#9YPZY12212212204398100000000 -T320230111111680348120210104WTTZP99WB12212212204398100000000120190314WTTB9W@Z912222112204398100000000 -T12023011111168035723500404821120413111034129570000020007710020000000000035001000000000000000000222222000000002229012 -T2202301111116803571219830101WTT#W9ZPB2222212222223012213110035722011700000000000000200002000000000000000000000000000000000000090000000000000000000000000000 -T320230111111680357120160404WTT0990@B22222112204398100000000 -T320230111111680357120200127WTT#Y90PT22222122204398100000000120200127WT@Z@P9@Y22222112204398100000000 -T12023011111168040623700414332120213210611300000000000005280070000000000000000000000000000000000222222000000002229032 -T2202301111116804061219900322WT@9TPY9W1222212222225012298210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680406120090312WT@9TPY9W12222122204304200000000 -T12023011111168042524700402991120423110939300000000020007710030000000000000000000000000000000000222222000000002229012 -T2202301111116804251219890904WT@ZW##902222212222222011215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116804251219840418WT@WTWPBP2222211222222021216290045621011939000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680425120210123WTTW@@W@W22222122204398200000000120150927WT@@TP#ZW22222122204398200000000 -T12023011111168051623500409141120412111034300000000000006540060000000000000000000000000000000000222122000000002229072 -T2202301111116805161219850713WTTWYYB#B1221222222221012214110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680516420120726WTTYTY@ZW12212212104301109140000 -T320230111111680516120210309WT@Y0@ZP022212222204398100000000120150301WTT00#9PP22212212204398100000100 -T12023011111168055123700414331120233110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116805512219860908WT@W9#ZP91222212222211012210120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111680551120060312WTT09WY##12222112204308100000000 -T12023011111168075924200413921120232110516300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111116807593219560327WTT@ZYWZ@2221222122214012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000266066800000000 -T320230111111680759120080318WT@Y#00YW22212212206305100000000 -T12023011111168082824700406701120723111480300000000000011650100000000000000000000000000000000000222222000000002229012 -T2202301111116808281219690304WTTP0BWWZ2222211222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116808281219760711WTTB0P9PW2222212222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680828120040704WTT@YP#Y922222112204310200000000 -T320230111111680828120090118WT@P#T#9P22222122204305200000000120070311WT@WTTWWT22222122204307200000000 -T320230111111680828120130308WT@9@BW#Z22222122204301200000000120120504WTT@PBBZ922222112204303200000000 -T12023011111168086820600404121120523111211300000000000008880340000000000000000000000000000000000222222000000002229012 -T2202301111116808681219950304WT@B00ZTZ2222212222222011211110283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116808681219940426WTT9@#@YP2222211222222021212190233723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680868120170123WT@9ZWP0#22222112204398100000000 -T320230111111680868120190713WT@W00WWZ22222122204398100000000120190424WTTWZP@9022222112204398100000000 -T12023011111168096320600412681120323110835300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111116809631219990727WTTW9P#@Y2222212222221011212110065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000008625 -T2202301111116809631219990104WTT9P#9BT2222211222221011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680963120200704WT@Z9##@#22222122204398100000000 -T12023011111168096724700402991120213110598300000000010005280020000000000000000000000000000000000222222000000002229012 -T2202301111116809671219830908WTT9@@WZP2222212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111680967120130204WTT#90Y9B22212212209303100000000 -T12023011111168100222000408451120213110611300000000000104280300000000000000000000000000000000000222222000001002219012 -T2202301111116810021219870409WTT#Z@P092222212222221012212110530721011804000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111681002120050909WTTZ0TYT922222122204309100000050 -T12023011111168111025900402831120232110611300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111116811103219700527WT@9#YZ9T2122222222221012213110392113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T320230111111681110120120413WT@0B@T#T21222222206303100000000 -T12023011111168114322000409871120313110766300000000000006540470000000000000000000000000000000000222222000000002229012 -T2202301111116811431219950209WT@Z9W@B#2221222222221012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681143120210213WTT@0#0Z922212212204398100000000120130526WT@00@W@W22212222204302100000000 -T12023011111168139722000412971120213110598112740000000005280370000000000000000000000000000000000222122000000002229012 -T2202301111116813971219940723WTTTT#TYP2221222222221012216110372323010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681397120180321WTTPY@ZBW22212222204398100000000 -T12023011111168143820800411931120333110760300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111116814381219850504WT@WY@BZP2221222222221012212120790023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681438120100522WT@#@BWY021212122204306100000000420070418WT@YYPTZ921222212104308109140000 -T12023011111168144024200409092120323210766300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111116814401220000701WT@0Y#@T#2221222222222011212290065421011828000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116814401219880321WT@#TBZY92221221222222021216290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681440120190922WT@9YWWZW22212222204398200000000 -T12023011111168144122000400461120512111116300000000000006540180000000000000000000000000000000000222222000000002229072 -T2202301111116814412219730423WTT9T0W0Y2221221122213012212110035713109900000000000000000000000000000000000000000000000000000000000000000000000888004600000000 -T2202301111116814411219800507WT@@PPZ@T2222212222221012212190690023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111681441120070413WT@T9TY9P22212222204309100000000 -T320230111111681441420150308WTTB99@BB22212222104398109140000120150124WT@@@B@YW22222112204398100000000 -T12023011111168144925900402631120332110631300000000000005280580000000000000000000000000000000000222222000000002229022 -T2202301111116814492219910324WTTT00T#01222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681449120170511WTT0YY0@#12222122204398100000000120160509WTT#0#Y9B12222112204398100000000 -T12023011111168146622700406181110213110516300000000000000160110000000000000000000000000000000000222222000005122219012 -T2202301111116814661219950204WTT0@Z@0@2222212222221012212110233721011813000000000000000000000000000000000000000000000000000000000000084600000000000000000000 -T320230111111681466120190127WT@B0W0Z@22222122204398100000000 -T12023011111168146922000401051120313110766300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111116814691219950213WTT@@YT#P2222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681469120160304WT@TBBZB922221212204398100000000120160304WTTP90ZZW22212212204398100000000 -T12023011111168167724200414851120213110576300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111116816771219910323WT@WT@BZB2221222222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681677120090426WTTBW9#Z@22212222204307100000319 -T12023011111168167924100414391120813111691300000000000007730670000000000000000000000000000000515122222000000012219072 -T2202301111116816791219890112WTTPYZ0WW1222222222225012216110680023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681679120080211WT@0#T9TB12222222204308100000000 -T320230111111681679120120926WT@#P#0TT12222122204304100000100120090921WT@PW9PBB12222212204307100000000 -T320230111111681679120170326WT@@YZ#9W12222222204398100000000120160327WTT@0BB9912222212204398100000000 -T320230111111681679120220407WTTYWW@WP12222112204398100000000120190211WTTZ9P9W#12222222204398100000000 -T12023011111168176920600400872120623211339300000000000007560280000000000000000000000000000000252222122000000012219032 -T2202301111116817691219970713WT@#YWYTB2222122222221011212920322823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116817691219890505WTTZ#09WT2222121222221011212990006021011942000000000000000000000000000000000000000000000000000000000000340000000000000000000000 -T320230111111681769120180405WTT0W9Y#Y22221222204398100000000120160427WT@#ZBP9@22221212204301100000000 -T320230111111681769120220226WTTYY#TBY22221212204398100000000120200323WT@YWZB9Z22221212204398100000000 -T12023011111168190924200407271120212110548300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111116819091219770507WT@P0ZYPY2221222222221012211110392123011800000000000000000000000000000000240000000000000000000000000000000000000000000000000000 -T320230111111681909120090924WT@YWTZ#B22212212204308100000000 -T12023011111168194520600414161120213110611300000000000005280550000000000000000000000000000000000222222000000002229072 -T2202301111116819451219850118WTTW##@Z02222212222223012212120750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681945120180922WT@#0B@B922212122204398100000000 -T12023011111168197022000414462120213210598300000000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111116819701219900904WT@9TPY9W1222222222221012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111681970120100418WT@9TPY9W12222212204307200000000 -T12023011111168199220600403591120332110740300000000000005280390000000000000000000000000000000000222222000000002229022 -T2202301111116819922219820902WTTZWWWZT2222212222211012216110015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111681992120150701WT@W0#0WB22222122204398100000050120110127WTTW##W9P12222122204304100000000 -T12023011111168205320600414771120312110766300000000002406540540000000000000000000000000000000000222222000000002229012 -T2202301111116820531219980505WT@@ZBW0T2222212222221012211110540623010900000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111682053120210212WTT@#ZPZ#22212222204398100000000120190704WTTWBW0#922212222204398100000000 -T12023011111168205422000405181120412110939300000000000007710200000000000000000000000000000000000222222000000002229012 -T2202301111116820541219900418WTTT9YYTY2221222222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682054120170713WTTY9@T9Z22212212204398100000000 -T320230111111682054120210218WT@W0#0W#22212212204398100000000120200401WTT9WYZ9922212222204398100000000 -T12023011111168223424200414721120312110766300000000000006540200000000000000000000000000000000000222222000000002229072 -T2202301111116822341219760426WTT0ZBB#T2212222222221012211211450023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682234120140907WT@#0#09W22122222204302100000000120090726WTTPP0YYZ12122222204306100000000 -T12023011111168230922000410051120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116823091220030727WT@9TPY9W2222212222221012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682309120060908WT@9TPY9W22222112207311200000000 -T12023011111168232920300401381120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116823292219650414WT@9WT0@T2222211222211012212110362413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111682329120070112WTTWBW#YY22222122204309100000000120050121WT@Z0WZ0W22222112204311100000000 -T12023011111168233522000406271120213110611300000000002005280130000000000000000000000000000000000222222000000002229012 -T2202301111116823351219720504WTT#WPZ0P2222212222225012216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682335120150424WT@#0WT#P22222112204301100000050 -T12023011111168233822000407242120113210376300000000000004170020000000000000000000000000000000000222222000000002229032 -T2202301111116823381220010724WT@9TPY9W1222222222221013212290035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111168245320200403961120313110835300000000000006540250000000000000000000000000000000000222222000000002229012 -T2202301111116824531219900318WT@Y0WWZB2222211222221012211110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682453120160927WTT9#BBWT12222212204398100000000120130918WTT9PPBBZ22222112204302100000000 -T12023011111168260622000404011120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116826061219980126WT@BB9BTW2221222222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682606120200321WTTP0TY9B22212212204398100000000 -T12023011111168265624200407311120213110557300000000000000830150000000000000000000000000000000000222222000004452219012 -T2202301111116826561219790409WT@@TBWYW2222212222221012213110164421011821000000000000000000000000000000000000000000000000000000000000169900000000000000000000 -T320230111111682656120050323WTTZB0Y9021222222204309100000445 -T12023011111168266520600414771120313110781300000000000006210180000000000000000000000000000000000222222003200012219072 -T2202301111116826651219820921WT@0ZP0#B2222122222221012212910790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682665120150312WTTB#W0T@22221222204398100000000120070518WT@#Z90TZ22221222204308900000000 -T12023011111168267320600414771120213110611105190000000003160120000000000000000000000000000000211122222000000012219012 -T2202301111116826731219970414WTTY@P9TW2221221222221012211110134723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682673120200927WTTPP#BBZ22212222204398100000000 -T12023011111168288320800414651120312110820300000000000006540690000000000000000000000000000000000222222000000002229072 -T2202301111116828831219840418WTT9W#0YP2221222222225012213120690023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111682883120220714WT@9TPY9W22212122204398100000000120140918WTT0ZPBT#22222212204301100000000 -T12023011111168302723500404531120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116830273219780727WTT9BWZWY2222212222222012212110015913069900000000000000000000000000000000000000000000000000000000000000016100000000000000000000 -T320230111111683027120090118WT@00WPZB22222122207306100000000 -T12023011111168304022000408891120413110740300000000014904620530000000000000000000000000000000308122222000000012219012 -T2202301111116830401219940309WT@@P9W9T2221222222223012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683040120200504WTTBZ#Y#@22212222204398100000000 -T320230111111683040120220927WTT#TZBW922221222204398100000000120210513WT@W9BWTT22212222204398100000000 -T12023011111168309822000408891120212110611300000000000005280260000000000000000000000000000000000222222000000002229072 -T2202301111116830981219750924WT@9WBBT#2221221222221012213110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683098120060307WTTW9#T9B22212222204310100000000 -T12023011111168319720300412371120413110939300000000010007710230000000000000000000000000000000000222222000000002229012 -T2202301111116831971219810924WTT@Y0#002222212222221012210110312923011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111683197120060307WTT0PYZTT22222122204309100000033 -T320230111111683197120170426WTT#Y9@9Z22222122204398100000033120060307WTTWTYZW@22222122204309100000033 -T12023011111168321922000412011120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111116832191219990918WT@PZB@9T1222212222221012216110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683219120170408WT@Z##ZBZ12222122204398100000000 -T12023011111168348224200409091120313110835300000000000506540040000000000000000000000000000000000222222000000002229012 -T2202301111116834821219990426WT@WWTB#02222212222221012211110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683482120200208WT@#Y@B0P22222122204398100000000120170408WTTB0T9TB12222122204398100000000 -T12023011111168348525000401171120332120000300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111116834853219650504WTTT9@Z9P2222212222222012214120006011069924000000000000000000000000000000000000000000000000000000000000516000000000000000000000 -T320230111111683485120100323WT@BZ#0Y@22222112206306100000000120090908WT@TB9Z@Y22222112206307100000000 -T12023011111168350321000405411120212110611114720000000005280420000000000000000000000000000000000222222000000002229012 -T2202301111116835031220000312WTTWP9#TT2222212222221012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683503120190909WT@0YYW@022122212204398100000000 -T12023011111168353020800414651120233110516300000000004004030990000000000000000000000000000000000222222000000142219022 -T2202301111116835301219730311WTTZ0Y@ZY2222212222225012213111250023099900000000000000000000000000000000000000000000000000000000030000000000000000000000000013 -T320230111111683530520100526WTT@9@ZPW22222112104305108380130 -T12023011111168360025900402231120513111034300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111116836001219910718WT@9WZYT01222221222222012212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116836002219940309WT@YYBT9P1222222222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683600120150518WT@@PB@##12222222204301100000000 -T320230111111683600120200326WTTB09#B012222112204398100000000120170704WTTYPP0@T12222222204398100000000 -T12023011111168366122000403891120313110766129000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111116836611219810407WT@ZW00BY2221221222221012212110154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683661120220105WTTWP#BTW22222122204398100000000120200913WT@#BZWBY22212212204398100000000 -T12023011111168367323500405981120212110611300000000000005280530000000000000000000000000000000000222222000000002229072 -T2202301111116836731219760118WTTTTBZ#02222212222225012209110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683673120040321WT@##P99T22222122204311100000000 -T12023011111168370623700414332120323210835300000000030006540060000000000000000000000000000000000222222000000002229032 -T2202301111116837061219830122WT@9TPY9W1222212222222011214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116837061219800205WT@9TPY9W1222211222222021214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683706120100212WT@9TPY9W12222122204307200000000 -T12023011111168377322000404841120213110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111116837731219920914WT@BT#9#B2222212222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683773120150427WTTBZT@YB22222122204398100000000 -T12023011111168379525000414191120213110631300000000050001270280000000000000000000000000000000211122222000001902219012 -T2202301111116837951219820523WTTPPB@TW2222212222225012212110293123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683795120150307WT@TPTYBT12222122204398100000000 -T12023011111168382123500404531120232110516300000000010004170540000000000000000000000000000000000222222000000002229022 -T2202301111116838211219800504WT@BZZ99B2222212222221012212110720023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683821520120718WT@#9PY##21222212104302106840000 -T12023011111168383920600414871120313110766300000000002506540030000000000000000000000000000000000222222000000002229012 -T2202301111116838391220030427WT@P0TPZ#2222212222221012211110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683839120220727WTTW0T0YW22222122204398100000000120210207WT@TB@T#W22212212204398100000000 -T12023011111168388922000408811120812111691124460000000011650120000000000000000000000000000000000222222000000002229072 -T2202301111116838891219810424WTT9@P@902221222222222012298210900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116838892219510407WTT@T0ZT#2221221122212022212290006013109900000000000000000000000000000000000000000000000000000000000000000000000579026300000000 -T320230111111683889120070327WT@Z#WT#P22212222204307100000000120050911WTTPW0YT922212212204310100000000 -T320230111111683889120110222WT@Z@Z0PZ22212222204304100000000120080705WT@BTYPYP22212222204306100000000 -T320230111111683889120150326WT@90YWB022212222204398100000000120130926WTTBZ@BT922212212204302100000000 -T12023011111168393622000410051120413110959300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111116839361219980101WT@Y@B#TB2221222222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111683936120180201WT@0Z9P0P22212222204398100000000 -T320230111111683936120200127WTTBBBW0#22212222204398100000000120190701WT@#9T@YY22212222204398100000000 -T12023011111168394425900402831120413110962109310000000407710760000000000000000000000000000000000222222000000002229072 -T2202301111116839441219910226WTTB0W0YW1222222222221012213110770023011400000000000000000000000000000000000000000000000000000000130000000000000000000000000000 -T320230111111683944120100108WT@9#0B@T12222212204303100000000 -T320230111111683944120170726WT@Z90@#@12212212204398100000000120110112WT@W90@@W12222212204302100000000 -T12023011111168394925000414191120233110306300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111116839493219680327WTT@PW9T#2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000050000000000000000000000 -T320230111111683949120220909WT@#PPTZY12222112206398100000417 -T12023011111168401920600402131120313110307300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111116840191220000426WT@B0BY0@2222212222221012211110204023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111684019120220113WT@9TPY9W22222112204398100000000120220113WT@9TPY9W22222112204398100000000 -T12023011111168404020800414151120233120000111990000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111116840403219700518WT@WWPY@02222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000383200000000000000000000 -T320230111111684040120190712WTT#Y9#@B22222122209398100000000 -T12023011111168406224200410211120233110516300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111116840622219870907WT@P@0BZ92122221222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111684062120180322WTT9BZ#YP11222212204398100000000 -T12023011111168407825900406841120312110835300000000000004970670000000000000000000000000000000000222222000001572219042 -T2202301111116840781219820318WT@P#B@#T2122222222225012216110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111684078120180321WTTZBT@0#21222212204398100000000120050418WT@T#TYY@21222222204311100000269 -T12023011111168431224200414021120213110611300000000000005280610000000000000000000000000000000000222222000000002229072 -T2202301111116843121219710907WT@BZPT002221221222221012216110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111684312120170413WT@TY@WBY22222122204398100000000 -T12023011111168432522000412231120232110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116843252219840501WTTPBW@W92221222222211012212110134713089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111684325120080423WT@BYBBTT22212212204307100000050 -T12023011111168435924200411402120523211116300000000040008880100000000000000000000000000000000000222222000000002229032 -T2202301111116843591219930214WTT@9T0W92222221222222011212290105021011937000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116843591219940409WTTPT0@0T2222212222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111684359120140407WT@9TPY9W22222112204302200000000 -T320230111111684359120200404WT@9TPY9W22222112204398200000000120180113WTT#YTTWT22222122204398200000000 -T12023011111168436523700414331110723111575300000000000004500010000000000000000000000000000000000122222000000002229012 -T2202301111116843651219910113WT@09BTZB1222222222222011207190431723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116843651219900322WTTY9YPT01222221222222021210190392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111684365120080312WTTYYPYTZ12222212204306100000000 -T320230111111684365120110727WTTB0YWT@12222222204303100000000120100409WTT@W0ZZ012222212204305100000000 -T320230111111684365120180718WTTZWZT9W22222122204398100000000120130427WTT#ZT@W012222212204302100000000 -T12023011111168455121700407751120333120000300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111116845513219470404WTTY9W9YY2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000856000000000000 -T320230111111684551120210423WTT90TTTY22222112206398100000000120120413WTTW90W0Z22222112206303100000050 -T12023011111168467320600414161120232110516300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111116846732219870918WT@#BP#Z#2222212222211012214110134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111684673120120909WTTPYWY#922222112204304100000000 -T12023011111168471625000403231120433110740300000000000006540830000000000000000000000000000000000222222000000002229022 -T2202301111116847162219810913WT@YYBT9P1222222222221012203920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111684716120090124WTTZT9@T@12222212204304100000000 -T320230111111684716120220318WT@9TPY9W12222212204398100000000120130101WTTBWTTZ012222212204302100000000 -T12023011111168487824900412321120313110634300000000000006540320000000000000000000000000000000000222222000000002229012 -T2202301111116848781220020704WT@0@WB0T2222212222221012209110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111684878120210412WTTBZ0##022222112204398100000000120190227WT@#ZWZB021222212204398100000000 -T12023011111168495824700406701120212110598300000000000005280580000000000000000000000000000000000222222000000002229072 -T2202301111116849581219900209WT@W0T#TY2222212222221012210110810023011400000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111684958120170412WTTYZW#P012222112204398100000000 -T12023011111168498624700401281120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116849863219820313WT@@0@YPW2222212122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001974000000000000 -T320230111111684986120100113WTTWY#T9Z12222122207306100000000 -T12023011111168507724200409091120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116850772219850223WTTYBTTWY2222212222211012210110760013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111685077120050418WTT9#09@@22222122204311100000000 -T12023011111168508324700406631120233110470300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111116850833219730918WTTYTYPWY2222212222225012211111030013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685083120190526WTTTB#PZ022222122206398100000000 -T12023011111168521325900403711120233110611300000000005005280260000000000000000000000000000000000222222000000002229022 -T2202301111116852131219880412WTT@ZYBWZ2222212222221012201110520823099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685213120130126WTT0T##@#22222122204301100000000 -T12023011111168526622600405051120213110357300000000000002950260000000000000000000000000000000211122222000000222219012 -T2202301111116852661219930314WTTTZ999#2221212222221012213110332723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685266120150723WTTP0Y9Z922212112204301100000000 -T12023011111168534321000403201120213110586300000000000004660130000000000000000000000000000000000222222000000622219012 -T2202301111116853431219950404WTT@WW#TY1222221222221012210110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000061 -T320230111111685343120130308WTTTW#PWB12222122204302100000071 -T12023011111168540422000407411120212110611300000000000005280780000000000000000000000000000000000222222000000002229072 -T2202301111116854041219880714WTTT@0TBY2222212222223012212110790023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685404120070118WTT090BBP22222112204309100000000 -T12023011111168541623900406231120612111339300000000000007560280000000000000000000000000000000252222122000000012219012 -T2202301111116854161219880205WT@9##T#01222212222221012212120263423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685416120070918WT@9T0#0P22222112204309100000000 -T320230111111685416120170427WT@Y9TT#Y21222212204398100000000120110709WT@B0#Z#B21222212204304100000000 -T320230111111685416120220507WT@ZTZ@BT22222112204398100000000120200726WTTT0YTBZ22222112204398100000000 -T12023011111168546322000409411120213110611104040000000005280580000000000000000000000000000000000222222000000002229012 -T2202301111116854631219910126WT@#@T0T02221222222225012211110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685463120160412WT@PYTPBP22212222204398100000000 -T12023011111168547124700406631120312110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111116854711219950702WTTPTT#B#2221222222221012213110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685471120220918WT@9TPY9W22212212204398100000000120170113WTTZZ@0ZW22212212204398100000000 -T12023011111168548222000409411120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111116854821220020918WT@PW@W@P1222222222221012210110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685482120220221WT@0Z9Y9@12222212204398100000000 -T12023011111168554824700406701120323110835300000000010006540090000000000000000000000000000000000222222000000002229012 -T2202301111116855481219950214WT@9TPY9W2222212222222011212210105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116855481219880314WT@9TPY9W2222221222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685548120080721WT@9TPY9W22222222204307200000000 -T12023011111168557025000401171120213110611300000000000002370260000000000000000000000000000000290222122000000012219012 -T2202301111116855701219830404WT@ZYT#@Y2222212222225012216120283223010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685570120190305WTT0B0T0922222112204398100000000 -T12023011111168574523500408281120323110766300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111116857451219870302WT@@@9B##2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116857451219900912WT@@T#00W2222212222222021212290035723011800000000000000000004000000000000000000000000000000000000130000000000000000000000000000 -T320230111111685745120130402WT@#099BW22222112204303200000000 -T12023011111168582925900402831120413110939108210000000000880490000000000000000000000000000000000222222000006832219012 -T2202301111116858291219980514WTTYTPZ0W1222212222221012211110501021011700210000000000000000000000000000000000000000000000000000040000136400000000000000000000 -T320230111111685829120130501WT@Z9YW#W12222122204302100000000 -T320230111111685829120200312WT@T@Y0T@12222212204398100000000120180411WTTTZPB0012222122204398100000000 -T12023011111168585622000405181120212110611300000000000002370370000000000000000000000000000000290222122000000012219012 -T2202301111116858561219890502WTTW9ZBY92122222222221012211120510923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685856120200918WT@BP#T0T12212212204398100000000 -T12023011111168589222000411551120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116858922219850423WT@@PP##P2221222222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111685892120140523WT@00PYPZ22212212204302100000050120090927WT@TZB9Z922212222204307100000050 -T12023011111168590725200410591120313110835300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111116859071219880901WTT#9##@W2222212222225012216110342623011700000000000000000000000000300004000000000000000000000000070000000000000000000000000000 -T320230111111685907120170207WTT@90@YT12222112204398100000000120150407WTTW9@0Z022222122204301100000000 -T12023011111168593125900402631120313110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111116859311219840222WT@#9T9Z02222212222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111685931120110123WTTYWBZYW22222122204306100000000120070312WTTZYPW9Y22222112204308100000000 -T12023011111168612324200414851120312110810300000000000006540690000000000000000000000000000000000222222000000002229092 -T2202301111116861231219900112WT@ZZ9P002221222222221012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686123120210526WTTPTWBTB22212212204398100000000120100123WTTY@ZPBZ22212222204306100000000 -T12023011111168645122700408351120312110786300000000000006540440000000000000000000000000000000000222222000000002229072 -T2202301111116864511219890927WT@@PY@@Y1222222222221012210110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686451120200301WTT##PWWY12222112204398100000000120080101WT@9PZB9012222222204308100000000 -T12023011111168645422000411551110233110357300000000000003900010000000000000000000000000000000000222222000000002229021 -T2202301111116864542220000318WT@YYBT9P2222221222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686454120220318WT@ZW#WWY12222212204398100000000 -T12023011111168646522000414461120813110835300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111116864651219930418WTT9WB@#02222121222222012210190243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116864652219930314WT@YYBT9P2222122222222022213990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686465120210313WTT#YPYW@22221212204398100000000120200909WTT#TWT@B22221212204398100000000 -T320230111111686465420150904WT@YYBT9P22221222204398900000000420140923WT@YYBT9P22221222204301900000000 -T320230111111686465420180427WT@YYBT9P22221222204398900000000420170423WT@YYBT9P22221212204398900000000 -T12023011111168650723500408281120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116865071220000918WTT@BTPYW2221222222221012216110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686507120210201WT@TYZZ@@22222222204398100000000 -T12023011111168654525900402121120213110598300000000000205280030000000000000000000000000000000000222222000000002229012 -T2202301111116865451220010522WTTB9B@9Z2222212222221012212110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686545120220401WT@#0BY9T22222122204398100000000 -T12023011111168657025600412851120312110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111116865701219970523WT@#9#T@02212222222223012211110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686570120190124WT@@0TT9P22122222204398100000000120170704WTT#0WBY022222122204398100000000 -T12023011111168671620600414871120233120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111116867163219780323WTTZZY#ZP2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000385400000000000000000000 -T320230111111686716120100122WT@@Y0TTY22222122207305100000000 -T12023011111168679623500411471120312110835300000000012006540040000000000000000000000000000000000222222000000002229012 -T2202301111116867961219970712WT@T@Z@PY2222212222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686796120210918WTTWT9ZP@22222122204398100000000120190911WTT0@0@#@22222112204398100000000 -T12023011111168691625900403711120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116869163219570307WTTYBWBYW1222212122224012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001111000000000783 -T320230111111686916120090405WTT@Z0#9#11222122206307100000050120060107WTT9P0PB@12222122206310100000000 -T12023011111168691922000412691120312110835300000000000006540860000000000000000000000000000000000222222000000002229072 -T2202301111116869191219880723WTTZZ@#T02221222222225012213110860023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686919120160505WT@#BTBB922212212204398100000100120080711WT@W@##Z922212212204307100000000 -T12023011111168692525600406521120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116869251220010112WT@9YT@0#1221222222221012212120045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111686925120220701WT@BB#B@Z12212212204398100000000 -T12023011111168703124700413761120533120000300000000000007710610000000000000000000000000000000000222222000000002229022 -T2202301111116870313219780112WT@0YYYP92222212222222012212110124813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687031120140327WT@TPY0#Z12222112206398100000000120120927WTTZW@0WB12222112206303100000000 -T320230111111687031120180714WT@@@BT#@12222122206398100000000120170502WTTZP090@12222122206398100000000 -T12023011111168720624200410211120233110493300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111116872063219610123WTTPT#9TW2222212122211012212110124813069900000000000000000000000000000000000000000000000000000000000000000000000647028700000000 -T320230111111687206120070918WTT0###0921222222206309100000000 -T12023011111168732524200404421120412110954300000000000007710750000000000000000000000000000000000222222000000002229092 -T2202301111116873251219950711WT@##T#P01222222222221012211110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687325120140421WTT#YPPZY12212222204301100000004 -T320230111111687325120210912WTTT9ZT@P22212212204398100000000120190413WTTWWZPTP12212212204398100000000 -T12023011111168741924200403941120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111116874191220000504WTTY0##@@2222212222221012209110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687419120160113WTT#Y#Z9T22222222204398100000000 -T12023011111168746424700406701120523111009300000000006508880030000000000000000000000000000000000222222000000002229012 -T2202301111116874641219720312WT@#9PTB#2222121222222011212990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116874641219780721WTTY9TW@T2222122222222021212990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687464120050518WTTTYWTY022221222204310900000000 -T320230111111687464120100326WTT00W9BP22221212204305100000000120070711WT@WY9PB#22221222204307900000000 -T12023011111168758522000401711120313110766300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111116875851219910708WT@9TPY9W1222212222221012216210075323010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111687585120210322WTTTPWYZB12222112204398100000000120140327WT@9TPY9W12222122204398200000000 -T12023011111168762724700413761110213110611300000000000003910070000000000000000000000000000000000222222000001372219012 -T2202301111116876271219950405WT@B0TY#Y2222212222221012210110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687627120160901WTTYP00B922222122204398100000000 -T12023011111168772125600411701120213110611300000000026305280790000000000000000000000000000000000222222000000002229072 -T2202301111116877211219910718WT@Y9@P9P2222212222221012211110800023011800000000000000000000000000000000000000410000000000000000000000000000000000000000000000 -T320230111111687721120120326WTTZTTY@922222122204302100000050 -T12023011111168773825900402831120333110670300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111116877383219790914WT@TZWWB02222212122221012211110570313069900000000000000000000000000000000000000000000000000000000000000000000000709000000000000 -T320230111111687738120100313WT@B9Z@PY22222112207303100000000120090726WT@WZP0YY22222112207304100000000 -T12023011111168774524700413761120213110611119490000000002800280000000000000000000000000000000000222222000002482219012 -T2202301111116877451219910911WT@T9P90#2222212222221012212110411921010100080000000000000000000000000000000000000000000000000000030000049400000000000000000000 -T320230111111687745120220212WTTY00@0T22222122204398100000000 -T12023011111168777524200402501120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116877753219620107WT@@BW9P92222212212224012212110006013069900000000000000000000000000000000000000000000000000000000000000421800000000000000001943 -T320230111111687775120050126WTTTY0@@B22222122206310100000000 -T12023011111168777622000405841110633111269300000000000000850390000000000000000000000000000000000222222000005692219021 -T2202301111116877762219760227WTTT9BPB@2222212222212012210110223813079900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111687776120070918WTTBPBY#Y22222122204308200000000 -T320230111111687776420110109WT@9YZYW@22222112104305209140000120090323WT@PB9#@T22222112204306200000000 -T320230111111687776420140922WTT900PWY22222112104302209140000420120912WT@0@0ZPP22222112104302209140000 -T12023011111168778721700406141120313110740300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111116877871219930312WT@9W9TY@1222212222221012210110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687787120220724WTT#ZBWPP12222122204398100000000120170424WT@ZB@PWT12222122204398100000000 -T12023011111168781622000402181120413111034117680000000007710350000000000000000000000000000000000222222000000002229012 -T2202301111116878161219950411WT@9TPY9W1222222222223012298210352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687816120140721WT@9TPY9W12222222204398200000000 -T320230111111687816120200904WTTW09BWB12222222204398100000000120150723WT@9TPY9W12222212204398200000000 -T12023011111168781920600400871110213110611111070000015005280010000000000000000000000000000000000222222000000002229012 -T2202301111116878191219930412WTTWP@0@T2222212222221012213110025821011729000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687819120180221WT@ZT#PPP22222122204398100000000 -T12023011111168783522700408351120233120000300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111116878353219700402WTTTYZ#@92221222222221012212210530711069933000000000000000000000000000000000000000000000000000000000000257400000000000000000000 -T320230111111687835120140321WT@B0W9#Y22212212206301100000000 -T12023011111168784324700401281120113110376300000000000004170060000000000000000000000000000000000222222000000002229042 -T2202301111116878431219820722WTT0YT0TB2222212222225013212190006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111168789124100402401120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116878913219540321WTTT#Y0W92222212222221012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687891120220714WT@9TPY9W22222222206398100000000 -T12023011111168789724100400671110213110611300000000000001360160000000000000000000000000000000000222222000001442219012 -T2202301111116878971219800527WTTWB0Z@#2222212222221012216110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687897120180421WT@W#TZ#B22222112204398100000000 -T12023011111168793325200407301120213110598300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111116879331219830304WTTBPY0#W2222212222225012210120471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111687933120210126WTTYYP#@P12222112204398100000000 -T12023011111168798724200407271120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116879873219580904WTTY9P@ZW2221222122221012213110372313069900000000000000000000000000000000000000000000000000000000000000000000000986000000000000 -T320230111111687987120180926WTT#90@P#12222222206398100000000 -T12023011111168801322900405641120233120000104310000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116880135219730113WTTTP#PT@2222212222221012212110006011069961000000000000000000000000000000000000000000000000000000000000495300000000000000000000 -T320230111111688013120130227WTTWTBPB#22222112209302100000000 -T12023011111168808322000409871120413110819300000000000004620890000000000000000000000000000000308122222000000012219072 -T2202301111116880831219800309WT@#PT9ZZ2122221222225012211111970023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111688083120050118WT@TPTZ#Z21222212204309100000000 -T320230111111688083120090727WT@B0PP#021222212204306100000000120080426WT@0T0#BB21222212204306100000000 -T12023011111168811224200403941120212110611300000000020005280180000000000000000000000000000000000222222000000002229012 -T2202301111116881121219990724WT@Z@Z#Y92222212222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111688112120200305WTTWTWBBP22222212204398100000000 -T12023011111168819120800410781120213110599300000000000003160090000000000000000000000000000000211122222000000012219012 -T2202301111116881911219940318WTTWWW0092222212222221012211110095123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111688191120200127WT@BZTP#T22222112204398100000000 -T12023011111168846125200410141120333110740300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111116884613219530318WT@Y0Y@PT2221221122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000997000000000095 -T320230111111688461120060708WTTPBYW9012222112206310100000000120040708WTTTPW@@#12222122206310100000000 -T12023011111168859021400408021120533110835300000000111506540230000000000000000000000000000000000222222000000002229022 -T2202301111116885902219940923WT@YYBT9P1222212222221012203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116885902219940307WT@YYBT9P1222211222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111688590120150721WT@TWP#ZT12222122204398100000000 -T320230111111688590120200912WT@Z009P012222122204398100000000120180405WTT0@@Z@W12222112204398100000000 -T12023011111168863123500414281120112110376300000000000004170140000000000000000000000000000000000222222000000002229012 -T2202301111116886311219960927WTT@YZYWY2222212222225013211110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111168863923500406851120233110557300000000110004170750000000000000000000000000000000000222222000000002229022 -T2202301111116886392219740722WT@09Z@P#2222212222215012213110303013089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111688639120050214WT@@YP@0022222122204312100000000 -T12023011111168865524700408981120233110516300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111116886553219640721WT@00BZ9W2222212122223012212110095113069900000000000000000000000000000000000000000000000000000000000000000000001334000000000000 -T320230111111688655120050407WTT9T#BZW22222212206311100000050 -T12023011111168872725800401871120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116887273219750523WTT@PP@WP2222212222221012212110960011069926000000000000000000000000000000000000000000000000000000000000223000000000000000000000 -T320230111111688727120160412WT@Z0ZWYP22222112206398100000050120160412WT@ZPW0#@22222112206398100000050 -T12023011111168881221000411361120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116888122219900112WT@YZY#Y#2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111688812120130205WT@B9BZ@@22222212204303100000050 -T12023011111168881422000400591120212110611300000000089805280110000000000000000000000000000000000222222000000002229012 -T2202301111116888141219810327WTT#0YTT#2221222222223012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111688814120060226WT@BY@Y@P22212212204310100000000 -T12023011111168885024700413761120923111902300000000000014160070000000000000000000000000000000000222222000000002229012 -T2202301111116888501219740909WT@Y0TTWP2222211222222011208290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116888501219760118WT@WBBT@B2222212222222021211290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111688850120050426WT@#0TYWW22222122204311200000000 -T320230111111688850120090727WT@TTYZW#22222122204307200000000120080401WT@Z9ZYZ#22222122204308200000000 -T320230111111688850120120723WTTP0ZYPT22222112204303200000000120110426WTTYP0T0B22222112204305200000000 -T320230111111688850120160205WTTBW#9@T22222112204398200000000120140913WTTB@BZ#@22222112204302200000000 -T12023011111168885624200410211120313110740300000000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111116888561219890118WTTZ@0##02222212222221012216110253523011400000000000000000000000000000000000000000000000000000000580000000000000000000000002589 -T320230111111688856120150318WT@0TTP#W22222112204398100000000120130312WTT0#W0@Z22222112204302100000000 -T12023011111168891925900403551120333110545300000000000105280490000000000000000000000000000000000222222000000002229022 -T2202301111116889192219820727WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111688919120090924WT@BBWPZT12222222204307100000253120050714WTTPPYWYZ22222222204311100000252 -T12023011111168898224700413762120623211339300000000000006860040000000000000000000000000000000000222222000003232219032 -T2202301111116889821219780312WT@W0B0PZ2222211222222011212290055521011821000000000000000000000000000000000000000000000000000000000000129000000000000000000000 -T2202301111116889821219840111WTTW0BWW@2222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111688982120080923WTTT9#P##22222122204305200000000120060204WTTZ09B9P22222122204308200000000 -T320230111111688982120120901WT@T#T0YW12222112204301200000000120100926WTTZ0W#9Z22222112204303200000000 -T12023011111168908222000408341120513111116300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111116890821219920926WT@@W0WT#2222212222223012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689082120140502WT@09P9W@22222112204303100000000120100112WT@0ZZ0ZP22222122205306100000000 -T320230111111689082120160301WT@P@YZP#22222112204398100000000120150321WT@W00ZWY22222112204301100000000 -T12023011111168915821700410451120312110814300000000020506540210000000000000000000000000000000000222222000000002229012 -T2202301111116891581219960427WTTTY9Y992222212222221012212110421823011800000000000000000000000000050000000000000000000000000000000000000000000000000000000000 -T320230111111689158120200122WT@#ZZ@0Y22222112204398100000000120150307WTT0WB90922222122204398100000000 -T12023011111168917824200414721120212110493300000000001708490020000000000000000000000000000000000222222000000002229012 -T2202301111116891781219600121WT@ZW@@9W2221222222221012213110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689178120160407WT@9B@TBB22212222204398100000440 -T12023011111168920523500407611120233120000300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116892053219480518WT@#BYBZT2222212122222012215110006013069900000000000000000000000000000000000000000000000000000000000000000000001621000000000430 -T320230111111689205120100111WTT#Y@@ZP22222122206306100000000 -T12023011111168922122000413681120312110795105740000016006540270000000000000000000000000000000000222222000000002229012 -T2202301111116892211219850701WTTB9Y@@#2222222222225012205210283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689221120160927WTTZ@T#Z022222222204398200000000120050923WTT0YW#P@22222222204310200000000 -T12023011111168925723500410671120433110376300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116892572219930511WT@YYBT9P1222222222221012212910006011079909000000000000000000000000000000000000000000000000000000000000053700000000000000000000 -T320230111111689257420100912WT@YYBT9P12222212204305900000000 -T320230111111689257420170904WT@YYBT9P12222212204398900000000120140407WT@9YP9YY12222222204302100000000 -T12023011111168929025100407671120233120000300000000002504170490000000000000000000000000000000000222222000000002229022 -T2202301111116892905219570414WT@YY#TP#2222212222225012216110006013069900000000000000000000000000000000000000000000000000000000000000390700000000000000000000 -T320230111111689290120100412WTT#WW9W022222112209304100000000 -T12023011111168932024200414021120213110599300000000050003160370000000000000000000000000000000211122222000000012219072 -T2202301111116893201219750427WT@Y##T9W2222121222225012211110830023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689320120130712WT@@#B99Y22221212204302100000000 -T12023011111168934622900412731120233110493300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111116893463219620304WTTTYY#BZ1222211222222012298110006011069935000000000000000000000000000000000000000000000000000000000000248300000000000000000000 -T320230111111689346120200326WT@BTW#9T11222212207398100000000 -T12023011111168935524900404261120533111116300000000000007710120000000000000000000000000000000000222222000000002229022 -T2202301111116893553219660314WT@TWZ@YB2222212222224012212110015911069937000000000000000000000000000000000000000000000000000000000000274100000000000000000000 -T320230111111689355120150323WTT@T###B22222112207398100000000120140102WT@PY9BT022222122207301100000000 -T320230111111689355120200314WT@PT0BY922222112207398100000000120170523WT@PW990W22222122207398100000000 -T12023011111168952024200414351120233110516300000000000004170920000000000000000000000000000000000222222000000002229022 -T2202301111116895202219740302WT@W#9YZT2222122222213012212110491113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111689520120050112WT@@TWBY@22221212204311100000050 -T12023011111168955824700409321120213110576300000000000003160140000000000000000000000000000000211122222000000012219012 -T2202301111116895581219880712WT@9#Y@BY2222212222223012213110451523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689558120170927WTT##BZB@12222222204398100000050 -T12023011111168961324700405901120213110598300000000120005280330000000000035003000000000000000000222222000000002229012 -T2202301111116896131219870705WT@W@@B@W2222212222221012212110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689613120110721WT@#WTBWY22222112204305100000000 -T12023011111168968725000414191120313110598300000000023005280110000000000000000000000000000000000222222000000002229012 -T2202301111116896871219960723WT@ZT9W@Z1222222222222012212190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116896872219930723WT@YYBT9P1222221222222022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689687120210204WTTPWYZZP12222212204398100000000 -T12023011111168969222000411551120232120000300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111116896923219930718WT@#Y9PWT2222222222221012216110006011069928000000000000000000000000000000000000000000000000000000000000424600000000000000000000 -T320230111111689692120100127WT@ZWTWZ#22212222207306100000000 -T12023011111168984524200404421120323110786300000000000006540130000000000000000000000000000000000222222000000002229042 -T2202301111116898451219640301WTT@T#Y@@2222122222222011212190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116898451219640526WT@0P#BBP2222121222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689845120050421WT@WZTYZ#22221222204311100000000 -T12023011111168987922000405841120233110611300000000001205280300000000000000000000000000000000000222222000000002229022 -T2202301111116898791219840327WT@0BT@9T2222212222221012212110312923099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111689879120200713WTTY0T#YB22222122204398100000000 -T12023011111168994224700413891120333120000300000000000005280330000000000000000000000000000000000222222000000002229022 -T2202301111116899423219740707WT@#909P92222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000033070000 -T320230111111689942120140702WTTY#09##12222222206303100000000120110914WTT0WZTTY12222212206306100000000 -T12023011111169001124700405831120212110598300000000060005280100000000000000000000000000000000000222222000000002229012 -T2202301111116900111219880702WT@#ZBP0T2222212222222012214210114921011937000000000000000000000000000000000000000000000000000000000000256000000000000000000000 -T320230111111690011120100323WTTZ#@@T#22222222204305200000000 -T12023011111169005820600409771120213110611300000000020005280220000000000000000000000000000000000222222000000002229012 -T2202301111116900581219800126WTT@@@#TW2222211222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690058120070726WT@9TPY9W22222122204308100000000 -T12023011111169021024700409321120323110835300000000140006540030000000000000000000000000000000000222222000000002229012 -T2202301111116902101219800323WT@@PY@PP2222211222222011211190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116902101219830705WT@ZYWT@@2222222222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690210120210118WT@Z0TZTZ22222112204398100000000 -T12023011111169022524700409321120212120000300000000010005280250000000000000000000000000000000000222222000000002229012 -T2202301111116902251219790418WT@PYBZP@2222212222224012216210263423011400000000000000000000000000000000000000000000000000000000020000000000000000000000000348 -T320230111111690225120090421WT@B@Y99#22222122204306200000000 -T12023011111169031224700409381120523111116300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111116903121219880327WTT@ZWYWY2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116903121219830405WTTW00@002222212222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690312120130501WT@9TPY9W22222122204302200000000 -T320230111111690312120190127WT@9TPY9W22222122204398200000000120140727WT@9TPY9W22222122204302200000000 -T12023011111169033120800404431120233120000300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111116903313219910222WT@ZWTTP02222212222222012213110006011069912000000000000000000000000000000000000000000000000000000000000324800000000000000000000 -T320230111111690331120120407WTT#PZ0@W22222122207303100000000 -T12023011111169034122900405641120213110611300000000000305280110000000000000000000000000000000000222222000000002229012 -T2202301111116903411219960712WT@9B@T0Y1222212222225012213110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690341120220913WTT0W#9BW12222222204398100000000 -T12023011111169037224700409381120413110939300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111116903721219830904WT@BT@99Y2222212222225012216110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690372120070723WTTTZPWY#22222122204309100000000 -T320230111111690372120170712WT@9@0Y9T12222112204398100000250120080721WTTYTWT0B22222122204307100000250 -T12023011111169039523500407161120213110569300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116903951219790723WT@@ZY@PW1222222222225012213110134723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690395120070123WT@WP#0ZP12222212204310100000428 -T12023011111169044322000404841120212110598300000000000405280940000000000000000000000000000000000222222000000002229072 -T2202301111116904431219830507WTTZ9B9Z#2221221222221012216111060023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690443120080904WT@#YPP9022212222204307100000000 -T12023011111169048324600411871120232110516300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111116904833219540911WTTTY9@WT2222212122224012211110134713069900000000000000000000000000000000000000000000000000000000000000000000004259000000000000 -T320230111111690483120190722WT@PPYZP922222122206398100000000 -T12023011111169053821100402261120313110670300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111116905381220010323WT@@B#WZ#2222211222221012212190075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116905382220020413WT@9WT#9B2222212222211102211190006013089900000000000000000000000000000000000000000000000000000000010000000000000000091400000000 -T320230111111690538120220902WT@9TPY9W22222122204398100000000 -T12023011111169061624700413761120333120000300000000002005280290000000000000000000000000000000000222222000000002229022 -T2202301111116906163219540902WT@09ZY9W2222212122223012216110006011069946000000000000000000000000000000000000000000000000000000000000473300002787000000000000 -T320230111111690616120080111WTTP@WZYP22212222206307100000000120050526WT@9B@TWT22222112206310100000000 -T12023011111169065025900402632120213210598300000000000005280020000000000000000000000000000000000222222000000002229032 -T2202301111116906501219920322WT@9TPY9W1222222222223012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690650120200909WT@9TPY9W12222222204398200000000 -T12023011111169071424700406742120523211116300000000000008880120000000000000000000000000000000000222222000000002229032 -T2202301111116907141219840704WTTB0BPPT2222212222222011212290134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116907141219700912WT@PP#BT92222211222222021212290134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690714120050121WTTW99Z#Y22222112204311200000000 -T320230111111690714120110313WT@P@WPYT22222112204305200000000120080413WTT#TPYTT22222122204309200000000 -T12023011111169071822000408451120423110939300000000100007710040000000000000000000000000000000000222222000000002229012 -T2202301111116907181219860712WTT0#Y@@#2222211222221011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116907181219860726WT@PW9@PZ2222212222221011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690718120180212WT@PPPB9Z22222122204398200000000120140724WTT@TB9PW22222112204301200000000 -T12023011111169080224700406701120213110598300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111116908021219880426WT@YT@0@Y2222212222225012216120560423011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111690802120210918WT@PPTWTT22222122204398100000000 -T12023011111169083023500405981120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116908303219570413WT@#YW#Z92221222122214012212110312913069900000000000000000000000000000000000000000000000000000000000000000000000851007800000000 -T320230111111690830120060323WT@#TYZPY22222122206307100000000 -T12023011111169085920600401641120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111116908593219680323WTT0Y0#PB2222211222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690859120080107WT@#@#TWT21222212209308100000000120070913WT@P9PB#B21222222209309100000000 -T12023011111169089925900406081120233110376300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111116908992219670418WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111690899120080923WTT#W@PTY12222222204309100000000 -T12023011111169098825900402831120233110611300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111116909882219770323WTTB#W@Y#2222212222211012208110114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111690988120050304WT@9Z##Z922222122204310100000050 -T12023011111169107823500404821110213110516300000000184003400020000000000000000000000000000000000222222000001192219012 -T2202301111116910781219960121WTTZWBPW92221212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111691078120160921WTTT@W@YY22212122204398100000000 -T12023011111169128424200404051120313110740300000000000005280060000000000000000000000000000000000122222000000002229012 -T2202301111116912841219800113WTTZZ0TTZ2221221222225012216110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111691284120130901WTTZ##TBP22212222204303100000000420090707WT@B99ZYW22212212104307109140000 -T12023011111169132321000404881120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116913232219820214WT@Z#Z9Y92122222222211012210110293113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111691323120060713WTT#YBYWZ21222222204309100000000 -T12023011111169167725900406081120233110376300000000000002280420000000000000000000000000000000000222222000001892219022 -T2202301111116916772219760713WT@YYBT9P1222222222223012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000300 -T320230111111691677120050901WT@0TT00@12222222204310100000000 -T12023011111169175925900403711120213110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111116917591219960404WTTTB0Y#P2221222222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111691759120170121WTTP0#TT@22212212204398100000000 -T12023011111169180024200403461120213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116918001219640518WTTP#YPY02222211222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111691800120050312WT@B#@0ZW21222212204309100000000 -T12023011111169184024200409091120213110574106090000000300010190000000000000000000000000000000000222222000000002229012 -T2202301111116918401219870418WTTT#Z#Z@2222212222221012213110194111011900210000000000090000000000000000000000000000000000000000030000136400000000000000000000 -T320230111111691840120150707WTT@Y@09022222112204301100000000 -T12023011111169189724200407271110523111116300000000000002290010000000000000000000000000000000000222222000000002229012 -T2202301111116918971219760123WTTPYYW@B2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116918971219820112WT@0#PT@T2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111691897120090126WTT9BZTPZ22222112204306200000000 -T320230111111691897120150412WTTZZYTPZ22222112204398200000000120120412WT@T9Y0ZB22222112204303200000000 -T12023011111169201120600414871120413110939111470000000007710430000000000000000000000000000000000222222000000002229072 -T2202301111116920111219920718WT@@WP@Z92222212222221012216120690023010900000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111692011120110321WT@WBP@##22222112204304100000000 -T320230111111692011120190713WTTYYBW9022212212204398100000000120160518WTT0YYTZ#22212222204398100000000 -T12023011111169202622000412971120213110618300000000000005280360000000000000000000000000000000000222222000000002229012 -T2202301111116920261219860221WTT9@ZP0@1122222222221012212110372323011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111692026120200904WT@WYBP9P11221212204398100000000 -T12023011111169204820600407031120313110835300000000000006540650000000000000000000000000000000000222222000000002229072 -T2202301111116920481219580226WTTBZTYZT2122222222225012216110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000006 -T320230111111692048120060122WTTY9WZZP22222112206309100000000120050212WT@#TYT@T22222112206312100000000 -T12023011111169206221000411361120333110704300000000000005280760000000000000000000000000000000000222222000000002229022 -T2202301111116920622219850904WT@YBYPZZ2222212222215012212110382213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111692062120140121WT@Z909TT22222122204302100000000120040108WT@WY0B@P22222122204310100000000 -T12023011111169206622000414501120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116920662219800908WT@YZBTWW2222212122211012212110840013109900000000000000000000000000000000000000000000000000000000000000000000000634030000000000 -T320230111111692066120090118WTT##@Z9022222112204306100000000 -T12023011111169206924200403511120333120000300000000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111116920695219870305WT@P9#P#92222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000566600000000000000000000 -T320230111111692069120200327WT@B@90P921222222208398100000000120180727WTTB090Y#21222222208398100000000 -T12023011111169219421000412411120213110548300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111116921941219910923WT@TT0BTZ2222212222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692194120210304WTTPYW9#922222112204398100000000 -T12023011111169222225900406841120213110598300000000000001460820000000000070006000000000000000000222222000003822219012 -T2202301111116922221219850122WTT##YP#T2122222222221012212110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111692222120070309WTTTP@T@T21222222204307100000269 -T12023011111169226024700408301120213120000300000000000005010110000000000000000000000000000000000222222002600012219012 -T2202301111116922601219850204WTTYPT#P92222212222225012211110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692260120190718WT@0#0BPY12222122204398100000000 -T12023011111169226225900406081120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116922623219670407WT@BZ#P@T2222212222221012212110006011069938000000000000000000000000000000000000000000000000000000000000283200000000000000000000 -T320230111111692262120060301WT@YYTTBW22222122206309100000000 -T12023011111169235624700406701110212110611300000000164201440380000000000000000000000000000000166122222000001072219072 -T2202301111116923561219790707WTTPB0BWP2221222222225013216110810023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116923565220040705WT@#@TBT02221222222211043211190006013069900000000000000000000000000000000000000000000000000000000000000000000000000090400000000 -T12023011111169247822700401571120413110949300000000000007710200000000000000000000000000000000000222222000000002229012 -T2202301111116924781219960313WT@#0WTW01222222222221012211110322823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692478120130412WTT@WYZYZ12222112204304100000000 -T320230111111692478120220523WTTWT#B9Z12222212204398100000000120150913WTT9TYTT912222222204302100000000 -T12023011111169251124200408571120233120000300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111116925113219700527WT@PZ#T0@2222212222225012212110006011069927000000000000000000000000000000000000000000000000000000000000257300000000000000000000 -T320230111111692511120190213WT@PTYT@B22222112206398100000000 -T12023011111169254825900402721120312110835300000000000006540420000000000035023000000000000000000222222000000002229072 -T2202301111116925481219880912WTT9BYP0Y1222222222221012211110880023011400000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111692548120110407WTTW0ZZTW12222212204305100000000120060226WT@T#ZZ9W12222222204310100000000 -T12023011111169268923500412161120313110835300000000001706540200000000000000000000000000000000000222222000000002229012 -T2202301111116926891219730327WTTTYBT002222212222221012214110213923010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692689120110302WTT00#B0Z22221122204305100000000120110302WTTY@#9TZ22221122204305100000000 -T12023011111169273922000402371120432110766300000000000006540520000000000000000000000000000000000222222000000002229022 -T2202301111116927392219860105WT@YYBT9P1222211222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692739120070718WTT##T0#W22222112204306100000000 -T320230111111692739120140514WT@WZ00Z012222112204398100000000120110712WTTZ@YZTP11222212204303100000000 -T12023011111169283623500410672120423210939300000000000007710040000000000000000000000000000000000222222000000002229032 -T2202301111116928361219830927WTTBPBTBY2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T2202301111116928361219840223WT@YP9TPB2222211222222011212290055523011800000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T320230111111692836120160412WT@90Z99T22222112204398200000000120120901WT@#9@P9022222112204304200000000 -T12023011111169284622000408891120333110599300000000000005280340000000000000000000000000000000000222222000000002229022 -T2202301111116928462219950101WT@YYBT9P1221222222221012213910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692846120200921WT@9W#BZW12222122204398100000000120150712WT@BPTT0P22212222204398100000000 -T12023011111169286123900400641120313110835300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111116928611219960202WTTPPB@PT2222212222221012211110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692861120220512WT@@0#0Z@22222122204398100000000120190124WT@BY0#0@22222122204398100000000 -T12023011111169294924200403511120213110611300000000000003960140000000000000000000000000000000132222122000000002229072 -T2202301111116929491219890526WTTB@TBWT2222212222221012216120640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692949120070526WTTY0TW9022222112204309100000000 -T12023011111169296424200408571120313110740300000000003504170180000000000000000000000000000000000222222000000002229012 -T2202301111116929641219800323WTTPZZWPT2122222222222012213110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692964520190321WTTYZ0ZBY22222112104398104870000520170726WTTT@#ZBY22222112104398105260000 -T12023011111169298324200411401120213110611107510000002005280080000000000000000000000000000000000222222000000002229012 -T2202301111116929831220010118WTTW0@TW@2222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692983120210104WTTWY9BZ922222112204398100000000 -T12023011111169298822000403892120423210939300000000000007710150000000000000000000000000000000000222222000000002229032 -T2202301111116929881219800912WTTPPPBZ#2222122222222011208910164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116929881219740426WT@PPZ0TZ2222121222222021211990164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111692988120060107WT@TPTZ@W22221212205310900000000120040104WTT#BT@Y922221212205311900000000 -T12023011111169303621200414781120113110376300000000000604170090000000000000000000000000000000000222222000000002229012 -T2202301111116930361219980712WTTW099#Z2222212222221013212190105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111169306820600404351120212110611300000000000005280390000000000000000000000000000000000222222000000002229012 -T2202301111116930681219830118WTT09#TYY2222212222221012213110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111693068120070423WTTZ#0T9W22222122209309100000000 -T12023011111169307820600414831120313110835300000000001703170300000000000000000000000000000000211122222000001262219012 -T2202301111116930781219900501WTT00WBP02222211222221012212110332723011400000000000000000000000000000000000000000000000000000000000000025000000000000000000766 -T320230111111693078120170326WT@TWB00022222112204398100000000120160204WT@999PTW22222122204398100000000 -T12023011111169310624700406701120312110761300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111116931061219680927WT@WBPZZP2222212222225012216110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111693106120080523WTT900TYB12222112204309100000000120060426WT@TPT@BP12222122204310100000000 -T12023011111169318323500404821120213110611300000000001705280130000000000070003000000000000000000222222000000002229012 -T2202301111116931831219900902WT@0#9ZBB2222211222221012213110144623011400000000000000000000000000000000000000000000000000000000240000000000000000000000000968 -T320230111111693183120170126WTT09TB@P22222122204398100000000 -T12023011111169318820900411721120332110740300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111116931882219850408WTTW#ZZ@92222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111693188120130423WT@9TTPY022222112204304100000000120100114WTT99@9TP22222122204306100000000 -T12023011111169341323500411471120213110560300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111116934131219920407WT@#90#BB2222211222221012213110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111693413120110401WT@#B@@#T22222122204305100000000 -T12023011111169359722000412812120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111116935971219960327WT@9TPY9W1222222222222011210290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116935971219800318WT@9TPY9W1222221222222021205290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111693597120210309WT@9TPY9W12222222204398200000000 -T12023011111169365322000413691120213110306300000000328905280090000000000000000000000000000000000222222000000002229012 -T2202301111116936531219830302WT@#ZZB9T2221222222222012212210095121011807000000000000000000000000000000000000000000000000000000000000059000000000000000000000 -T320230111111693653120190927WTT9#0BTB22212212204398100000000 -T12023011111169377320800409831120413111034300000000003907710030000000000000000000000000000000000222222000000002229012 -T2202301111116937731219910923WTTW90#@Y2222212222223012212110045623010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111693773120150107WTT90W#@022222122204302100000558 -T320230111111693773120200501WTT90Y9ZB22222122204398100000558120180523WTT@0P9Z#22222122204398100000558 -T12023011111169379424700405831120313110766300000000130006540040000000000000000000000000000000000222222000000002229012 -T2202301111116937941219940724WT@0BY0BP2222212222225012214210055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111693794120220101WT@9TPY9W12222122204398200000000120170308WT@9TPY9W22222112204398200000000 -T12023011111169399220800411931120232110516300000000005002980780000000000000000000000000000000000222222000001192219022 -T2202301111116939921219680718WTT0P@PY#2221222222221012213110810023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000118 -T320230111111693992520050401WT@@@WP@#12212212104309106540215 -T12023011111169399722000403891120232110516300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111116939972219980412WTTBPZ0WP2222212222211012212110144613089900000000000000000000000000000000000000000000000000000000000000000000000000049800000000 -T320230111111693997120210309WTT@#0@BP22222112204398100000000 -T12023011111169408022000411131120313110598300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111116940801219910112WT@#TZTPZ1222212222222012213190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116940802219960711WTTTP#0#W1222211222222022216990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694080120210724WT@WTYBT912222112204398100000000 -T12023011111169409024700401281110113110281300000000000002010010000000000000000000000000000000000222222000000002229012 -T2202301111116940901219970202WT@90T99Y2222212222221013209190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111169418825200414061120213110599300000000001103160170000000000000000000000000000000211122222000000012219012 -T2202301111116941881219970104WT@@B9@@T2222212222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694188120190507WTTZPYWTZ22222112204398100000000 -T12023011111169419923500405271120333120000300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111116941993219950122WT@B9ZZT@2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694199120200907WTT@0@PWW22222122207398100000000120140426WTT9Z9Y@#22222112207398100000000 -T12023011111169421720600401021120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116942173219400307WT@0BTT@P2222212122224012214110006013069900000000000000000000000000000000000000000000000000000000000000000000001692000000000000 -T320230111111694217120060418WTT@YWP9Y22222122206308100000000 -T12023011111169436924200409731120323110704300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111116943691219820427WT@0Y@0TP2222212222222011216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116943691219810421WT@#PT@Z92222211222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694369120080726WTT9@Y90022222122204307200000000 -T12023011111169448520200403961120113110247300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111116944851220030108WT@9PTZ9B1222212222221013206110075323011800000000000000000001000000000000000000000000000000000000010000000000000000000000000000 -T12023011111169456924200414851120113110376300000000000002500090000000000000000000000000000000166122222000000012219012 -T2202301111116945691219810213WT@TBYY@P2222212222221013211190105023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111169459922000406191120313110835136220000000006210030000000000000000000000000000000000222222003200012219012 -T2202301111116945991219860324WTTT#BYWZ2221222222225012213110382223010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111694599120210412WTT009B9022212212204398100000000120170727WT@Y9#0##12212222204398100000000 -T12023011111169460824200413332120313210598300000000000005280050000000000000000000000000000000000222222000000002229032 -T2202301111116946082219870111WT@YYBT9P1222221222222012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116946081219920304WT@9TPY9W1222222222223022214210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694608120110127WT@9TPY9W12222222204307200000000 -T12023011111169481421000411361120313110740300000000000705280350000000000035001000000000000000000222222000000002229012 -T2202301111116948141219900924WTTY9WBZ92222212222222012216190362423011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111116948141219890204WTTBYZ9@Z2222211222222022213190362423099900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111694814520130414WTTPW9#P@22222112104304109140000 -T12023011111169484220300400971110312110832300000000105801210300000000000000000000000000000000000222222000000002229012 -T2202301111116948421219880313WTT009TWW2222212222225012213110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000004554 -T320230111111694842120120723WT@Z9TWZ#12122122204302100000385120110414WT@@WWBZB12222122204304100000000 -T12023011111169485724700402991120212110502300000000009505280440000000000000000000000000000000000222222000000002229012 -T2202301111116948571219770501WTTP#9PY02221222222221012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694857120060327WT@YP99WZ22212222204310100000000 -T12023011111169490824200400491110213110611300000000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111116949081220030407WTTY#TZWW2222212222221012210110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694908120210323WT@TPPT#922222122204398100000000 -T12023011111169494821700406141110313110611300000000000004850010000000000000000000000000000000000222222000000002229012 -T2202301111116949481220010904WTTZWPW@#1222222222221012211110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694948120220712WTTTW99#012222122204398100000000120180426WT@W9YY@B12222112204398100000000 -T12023011111169496623500408281110323110740300000000000000210010000000000000000000000000000000000222222000000002229012 -T2202301111116949661219690504WT@TBTY#Y2222212222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116949661219580523WTT9PP#WT2222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111694966120080502WTTWYPZ9T22222112204308200000000 -T12023011111169499125600411521120313110835118360000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111116949911219880401WT@#0Y9WZ2222212222221012213120501023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111694991120190109WTTTY@#Y022222112204398100000000120140718WT@T@#T#T22222122204301100000000 -T12023011111169499322000406191120423111362300000000040007710100000000000000000000000000000000000222222000000002229012 -T2202301111116949931219880209WTTT0ZPTT2222212222223011216210114922011900000000000000180000000000040000120001000000000000000000000000000000000000000000000000 -T2202301111116949931219790527WTT9B#YZW2222221222222021212290075322011800000000000000110000000000130000000000000000000000000000060000000000000000000000000000 -T320230111111694993120070127WTTW#B@0P22222122204307200000000120060727WTT9@T9ZY22222112204309200000000 -T12023011111169501924700402991120423110835300000000145407710160000000000000000000000000000000000222222000000002229012 -T2202301111116950191219900712WTT@T0P@P2222221222222011212190025821011941000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116950191219960918WT@Y@B99Y2222222222222021212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695019120210701WT@WYW99Y22222122204398100000000120190112WTTBTT@P022222222204398100000000 -T12023011111169505820800410781110313110835300000000000006110360000000000000000000000000000000000222222000000432219012 -T2202301111116950581219990709WT@9@WYWP2221222222221012211110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695058120200311WT@P9WWPB22212212204398100000000120180318WT@B9BTYW22212222204398100000000 -T12023011111169505924200404891120332110785123420000020006540100000000000000000000000000000000000222222000000002229022 -T2202301111116950591219930518WT@Z0BPW02221221222221012216110114923099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695059120190411WT@PTZPZT22212212204398100000000120170327WTT#WYZZY12212212204398100000000 -T12023011111169512821000408061120312110740300000000005000010750000000000000000000000000000000000222222000000002229072 -T2202301111116951281219770421WTT@0B#WP2222212222221012212110790011011800210000000000000000000000000000000000000000000000000000160000132000000000000000000000 -T320230111111695128120100113WT@@9@@0P22222112204305100000000120080323WT@P#0YYZ22222122204306100000000 -T12023011111169515625000401171120513111116143760000000008880210000000000000000000000000000000000222122000000002229012 -T2202301111116951561219910913WT@ZY@Y092222212222221012216110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000001122 -T320230111111695156120150904WTTBB@0@@22222122204301100000000120140404WTTZ#YY#022222122204302100000000 -T320230111111695156120210912WT@T0#ZBY22222122204398100000000120170926WTT0B0YTT22222122204398100000000 -T12023011111169518125200407301120213110557300000000000505280040000000000000000000000000000000000222222000000002229012 -T2202301111116951811219910704WT@WWZ@PP2222212222221012212120055523011800000000000000000004000000000000000000000000000000000000060000000000000000000000000000 -T320230111111695181120110712WT@@T@BW#22222122204305100000000 -T12023011111169519920600402131120333110740300000000000005280870000000000000000000000000000000000222222000000002229022 -T2202301111116951992219870421WT@BZTW#92222212222215012216110421813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111695199120120322WT@9YP0@#22222122204302100000000120080702WTT0BPT#Z22222112204307100000000 -T12023011111169520625000414191110313110835300000000000002740400000000000000000000000000000000000222222000000002229012 -T2202301111116952061219920512WT@###WPZ1222221222221012212110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695206120150907WT@Z0@9Z011222222204301100000000120130927WTTT#W#YT11222212204303100000000 -T12023011111169522922000411281120523111116300000000000008880090000000000000000000000000000000000222222000000002229012 -T2202301111116952291219840704WT@TTY9Y92222212222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116952291219790701WTTPB0#9Y2222211222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695229120110123WT@BPWTT@22222122204304200000000 -T320230111111695229120160311WTT09P#0B22222112204398200000000120130427WT@@WT9WT22222112204306200000000 -T12023011111169524521700409521120233110493300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111116952453219640127WT@0W@W9W2222212122224012216110105013069900000000000000000000000000000000000000000000000000000000000000000000000879000000000000 -T320230111111695245120110204WTT9TTPTP12222112206305100000000 -T12023011111169534825600411521120213110376300000000000003160070000000000000000000000000000000211122222000000012219012 -T2202301111116953481219950404WTT0Z#99T1221222222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695348120140924WT@P99YZW12212212204302100000000 -T12023011111169539224700406632120323210740300000000060002000080000000000000000000000000000000000222222000004542219032 -T2202301111116953921219730422WTT00WZP@2222222222222011214290095121011807000000000000000000000000000000000000000000000000000000000000066600000000000000000000 -T2202301111116953921219690905WTTP@WBTB2222221222222021214290095121011809000000000000000000000000000000000000000000000000000000000000048000000000000000000000 -T320230111111695392120160105WT@9TPY9W22222222204398200000000 -T12023011111169546020600400871120533111116300000000000007710880000000000000000000000000000000000222222000000002229022 -T2202301111116954602219870914WT@BZWT0@2222212222213012212110332713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111695460120140401WTTW#TPPW22212212204302100000000120100411WT@@P9TWP22212222204305100000000 -T320230111111695460120180909WTTY0PP9B21222222204398100000000120160923WT@Z#TPY#22222122204398100000000 -T12023011111169547924700401011110513111034300000000020001240010000000000000000000000000000000000222222000006472219012 -T2202301111116954791219870112WTT99WT@92222211222222012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116954792219790404WT@YYBT9P1222222222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695479120150409WTTT0ZW#@12222112204301100000000 -T320230111111695479120210312WTT0Z#YWP12222122204398100000000120180224WT@0P9ZYY12222122204398100000000 -T12023011111169548824200413921120213110611300000000000006160150000000000000000000000000000000211122222000000002229012 -T2202301111116954881219810223WTTW@#YTP2222212222225012212110441623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695488120180909WTTTZBPPZ22222122204398100000000 -T12023011111169551420600401131120213110611300000000000005280550000000000000000000000000000000000222222000000002229012 -T2202301111116955141219890126WTT@YPY0T2222212222221012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111695514120140422WTTTPWPWT22222112204303100000000 -T12023011111169572622000410051120213110611300000000000005280190000000000000000000000000000000000222222000000002229072 -T2202301111116957261219870701WTTZ0YTWB1222222222221012212110650023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111695726120060712WT@00YB#912222222204310100000000 -T12023011111169581321000411361120313110835300000000023004990470000000000000000000000000000000000222222000001552219092 -T2202301111116958131219780107WT@WZYBYT2221212222223012212110640021011900210000000000070200000000000000000000000000000000000000000000000000000000000000000154 -T320230111111695813120060904WTTTWYBW#22122212204310100000000120050122WTTBWZZZZ22122212204311100000000 -T12023011111169582521000404551120333110740300000000002104220950000000000000000000000000000000000222222000001062219022 -T2202301111116958253219500411WT@#Y#0B02222211122221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001014000000000000 -T320230111111695825120100222WT@W#WWW922222112206304100000100120070126WT@ZZWBZT22222122206307100000100 -T12023011111169592624200403512120133210300300000000000004070350000000000000000000000000000000000222222000001212219022 -T2202301111116959265219760327WTTPWZZYW2222212222221013212110770023069900000000000000000000000000000000000000000000000000000000000000000000000000000000000120 -T12023011111169606124200408391120233110493300000000000004170560000000000000000000000000000000000222222000000002229022 -T2202301111116960613219760723WTTBT0#B@2212222222221012216110114911069938000000000000000000000000000000000000000000000000000000000000165900000000000000000000 -T320230111111696061120070527WT@Y#P@YP22122222207309100000000 -T12023011111169612124200408571120233110611300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111116961212219840205WTT09TBY#2221221122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000655027300000000 -T320230111111696121120190408WT@@Y@Y0922212222204398100000000 -T12023011111169613620600414771120213110611300000000000005280390000000000000000000000000000000000222222000000002229012 -T2202301111116961361219780927WT@YYP@0W2222212222221012216110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111696136120070323WT@BT9BZ@22222112204307100000000 -T12023011111169639822000400461120332110601300000000020003540280000000000000000000000000000000000222222000001742219022 -T2202301111116963982219830908WTT0#ZTBW2212222222225012212910025813079900000000000000000000000000000000000000000000000000000000000000000000000000000000000300 -T320230111111696398120100108WTTYT@9T922122222204305100000000120060922WTT@WBW#922122212204310100000000 -T12023011111169641821700407751120212110516113020000000001910300000000000000000000000000000000000222222000003372219072 -T2202301111116964181219880704WTT0Y9B#Y2222212222225012211110670021011800110000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111696418120200118WT@Y0B@9Y22222112204398100000000 -T12023011111169644324100414321120213110470300000000050005280040000000000000000000000000000000000222222000000002229012 -T2202301111116964431220040418WT@WBBTZT1222212222221012212120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000003953 -T320230111111696443120210318WT@B0Y0WY12222112204398100000000 -T12023011111169663725900400311120523111177300000000065008880050000000000000000000000000000000000222222000000002229012 -T2202301111116966371219840214WTTPP9W@W1222222222222011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116966371219770322WT@YW999B1222221222222021208290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111696637120050427WTTBBP0Z912222222204312100000000 -T320230111111696637120190426WT@ZPZ09Z12222122204398100000000120100307WT@ZW@YP@12222222204306100000000 -T12023011111169667320600409041120233110493300000000000004170700000000000000000000000000000000000222222000000002229022 -T2202301111116966733219730422WT@PZY#@Z2222212222225012212110362413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000968 -T320230111111696673120150527WT@PT#B#Z22222112206301100000000 -T12023011111169668925900402831120433110835300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111116966892219810912WT@YYBT9P1222222222223012209920382213079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111696689120050113WT@#9TTYY12222212204311100000000 -T320230111111696689120170709WTTWYY@YB12222122204398100000100120090512WT@@WW#Y@12222222204306100000000 -T12023011111169669825900402631110423110939300000000005000890030000000000000000000000000000000000222222000000002229012 -T2202301111116966981219770127WT@@#PY9B1222222222222011209290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116966981219710727WT@P9@TZP1222221222222021201290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000551 -T320230111111696698120090908WT@#0#YWP12222212204307100000000420050404WTT09@PYW12222212104311108340000 -T12023011111169673024700406701120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116967303219730126WTTPY@Z@T2212222222223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111696730120190301WT@#9T#PB22122112206398100000000 -T12023011111169676822700408351120313110611300000000031505280110000000000000000000000000000000000222222000000002229012 -T2202301111116967681220010212WTT#WZ9Y@1222212222222012212190124821011739000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116967682219960327WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111696768120220413WT@PP90W912222212204398100000000 -T12023011111169682422000407791120212110589300000000150005280930000000000000000000000000000000000222222000000002229072 -T2202301111116968241219920412WTT90TTYB2222212222221012212110940023011400000000000000000000000000000000000000000000000000000000380000000000000000000000000000 -T320230111111696824120120421WT@9WTP#Y22222122204304100000050 -T12023011111169687925600413441120212110549300000000055905280300000000000035006000000000000000000222222000000002229072 -T2202301111116968791219660418WT@WPPZWY2222211222225012213110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111696879120060418WTTYYTWPB22222122204310100000000 -T12023011111169692324100402401120233110376300000000000004170870000000000000000000000000000000000222222000000002229022 -T2202301111116969232219660301WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111696923120050412WTT9#@TP012222122204310100000000 -T12023011111169703623500410672120423211034300000000503407710100000000000000000000000000000000000222222000000002229032 -T2202301111116970361219860921WT@PWZPPP2222212222222011214210114923011800000000000000000000000000000000000000000000000000000000190000000000000000000000000000 -T2202301111116970361219790112WTT@9YYTZ2222211222222021214290114923011800000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111697036120130723WTT0P@#9B22222122204302200000000120110523WTTTP0PWZ22222112204303200000000 -T12023011111169719622000412971120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111116971963219860408WT@BYB@BZ2212221222221012212110006011069919000000000000000000000000000000000000000000000000000000000000224700000000000000000000 -T320230111111697196120070413WT@0WBZT@22122222207308100000223 -T12023011111169721824200407531120213110516300000000000000010280000000000000000000000000000000000222222000000002229072 -T2202301111116972181219790512WT@BYBT@Z2222212222221012213110890011011800210000000000000000000000000000000000000000000000000000000000136400000000000000000000 -T320230111111697218120060323WT@Y@9#W#22222122204308100000000 -T12023011111169722122000408891120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111116972211219990211WTT@@@PY@1221212222221013211190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111169722923500406851120513110939300000000000007710040000000000070003000000000000000000222222000000002229012 -T2202301111116972291219800301WTT@YBZ0T2222212222221012212190055523011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T2202301111116972292219810226WT@YYBT9P1222221222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111697229120060114WTT0ZZZBP12222112204309100000000 -T320230111111697229120100701WT@YTWPZP22222122204305100000000120080124WT@B0BBTY12222112204308100000000 -T12023011111169723020800411931120213110516300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111116972301219920122WTT@@#T@B2222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111697230520200226WTT@@Z#0@22222112104398106090000 -T12023011111169728725200400391120313110835300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111116972871219910923WT@PB0@@#2222212222225012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111697287120190713WTT99Z9#P12222112204398100000000120180526WTTW90WBW22222112204398100000100 -T12023011111169731322000408341120233120000300000000000004170870000000000000000000000000000000000222222000000002229022 -T2202301111116973133219810422WTT0Y99#Y2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000333100000000000000000000 -T320230111111697313120100427WT@#0ZP0W22212222207304100000000 -T12023011111169744125100407671120213110611300000000400005280100000000000000000000000000000000000222222000000002229012 -T2202301111116974411219880501WT@B#9WY92222212222225012216110223823011800000000000000000000000000280000000000000000000000000000000000000000000000000000000000 -T320230111111697441120070307WTTB@#ZW022222112204307100000000 -T12023011111169749422000403891120333110516300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111116974942219880727WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111697494120140123WTT9T#Y@012222112204302100000000120110304WT@0#ZPY#12222222204304100000000 -T12023011111169751222600405051120233120000300000000000504170990000000000000000000000000000000000222222000000002229022 -T2202301111116975123219720926WT@T9BPY@2222212222224012213110144611069940000000000000000000000000000000000000000000000000000000000000580400000000000000000000 -T320230111111697512120100127WTT0W0ZBW22222112206305100000000 -T12023011111169753124200411401120213110557300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111116975311219800926WT@9WYZ902222212222225012298210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111697531120210501WT@ZBPWPW22222122204398200000000 -T12023011111169771320600402141120313110835110430000000005500310000000000000000000000000000000000222222000001042219072 -T2202301111116977131219870123WT@#90W@Y2221222222221012216110920021011800040000000000000000000000000000000000130000000000000000000000000000000000000000000000 -T320230111111697713120170308WT@ZBYP9P22222222204398100000000120070904WTT#Y9Y0#22212212204309100000000 -T12023011111169771724200413921120323110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111116977171219840304WTT@TPT@Y2222211222222011215290075321011942000000000000000000000000000000000000000000000000000000000000238800000000000000000000 -T2202301111116977171219860927WTT009##02222212222222021213290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111697717120150912WT@9TPY9W12222122204301200000000 -T12023011111169773624700409381110233120000101140000000004170010000000000000000000000000000000000222222000000002229021 -T2202301111116977363219810901WT@PYBTTW2222212222221012212110006011069934000000000000000000000000000000000000000000000000000000000000447200000000000000000000 -T320230111111697736120220512WTT0W0ZPY22222112207398100000000 -T12023011111169778720600409771120523111199300000000030008880100000000000000000000000000000000000222222000000002229012 -T2202301111116977871219770412WTTBBZPY@2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116977871219780723WTTB0ZZBW2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111697787120060322WTTTTYWP#22222112204309200000000 -T320230111111697787120100412WT@00ZT@P22222122204305200000000120080904WT@Z@BZP@22222122204307200000000 -T12023011111169798124700408091120212110611300000000002004690580000000000000000000000000000000000222222000000592219012 -T2202301111116979811219850313WT@@@Y0WB2221222222221012216110590121011802000000000000000000000000000000000000000000000000000000000000011600000000000000000000 -T320230111111697981120120122WT@Z9TBBP22212122204302100000000 -T12023011111169817025600412851120233120000300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111116981703219690101WT@WTBWZ#2222212222222012212110006011069939000000000000000000000000000000000000000000000000000000000000311900000000000000000000 -T320230111111698170120110426WTTWPZT@P11222222206301100000000 -T12023011111169833924700409321120213110611300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111116983391219850409WT@P999@@2222211222221012212110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698339120130101WTT0BPPPT22222112204303100000050 -T12023011111169834821700406141120213110611300000000050005280330000000000000000000000000000000000222222000000002229012 -T2202301111116983481219890918WTT@0YWPW2222212222221012216110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698348120060123WT@@WTBB@12222112204309100000000 -T12023011111169843320300408321120233120000300000000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111116984333219570721WT@@ZT@@92222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000253600000000000000000000 -T320230111111698433120180302WT@9B9BT#22222122206398100000000 -T12023011111169847123700414331120323110835300000000005006540170000000000000000000000000000000000222222000000002229012 -T2202301111116984711219740326WT@Y#PPZB1222222222222011203210184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116984711219710214WT@#TB9TP1222221222222021206290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698471120100101WT@TP@#BT12222222204304100000000 -T12023011111169851923500411471120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111116985191219990413WTTYPW0@@2222212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111169854024100402401120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111116985401219880102WT@09@BZ#1222211222223012212110035723010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698540120190504WT@#9#@YT12222122204398100000000 -T12023011111169858324200414721120212110611300000000000003160850000000000000000000000000000000211122222000000012219072 -T2202301111116985831219880302WT@Z0T9@Z1222222222221012212110810023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698583120170421WT@Z@0ZWY12222222204398100000000 -T12023011111169859324200402501120213110611300000000000505280020000000000000000000000000000000000222222000000002229012 -T2202301111116985931219790727WT@TYWTT02222212222221012213110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698593120070726WTTT@TBBZ22222122204308100000000 -T12023011111169859722000405181120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111116985973219680101WT@9TY9#B2222212222221012212110015913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698597120220227WT@9TPY9W22222122208398100000000 -T12023011111169864921700406141120213110516300000000014804170330000000000000000000000000000000000222222000000002229072 -T2202301111116986491219810305WTTY0B9Z@2222212222225012208111220023011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111698649520120324WTT#B@Z@Y22222112104304109140000 -T12023011111169867822700408491120213110611300000000035005280020000000000070002000000000000000000222222000000002229012 -T2202301111116986781220000418WT@B@9YB@1222212222221012213110035721011813000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698678120210321WTT@9099@12222212204398100000000 -T12023011111169871222000408891120212110516300000000000004170050000000000000000000000000000000000222222000000002229072 -T2202301111116987121219760927WTT9YP0T92221222222221012216110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698712520060423WTT9BBWYZ22212212104309109140000 -T12023011111169879024700402991120213110557300000000004605280110000000000000000000000000000000000222222000000002229012 -T2202301111116987901219800112WT@0W#TYW2222122222223012214110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698790120140702WT@##ZT@022221212204302100000000 -T12023011111169880322000400811120213110611300000000000004590130000000000000000000000000000000000222222000000692219012 -T2202301111116988031219960527WT@P#W0B@2221222222221012210110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698803120220104WT@BPYZP#22212212204398100000000 -T12023011111169896820600407032120323210634300000000000006540040000000000000000000000000000000000222222000000002229032 -T2202301111116989681220010901WTT9ZB#W#2222121222222011216990035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116989681220010426WT@9TPY9W2222122222222021213990035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111698968120210323WTTYT#@PB22221222204398900000000 -T12023011111169927822000408891120313110835135400000010006540210000000000000000000000000000000000222222000000002229012 -T2202301111116992781219910721WT@W#Z0#B1221222222221012212110223821011737000000000000000000000000000000000000000000000000000000000000283300000000000000000000 -T320230111111699278120220104WT@#9PP9Y12212212204398100000000120200308WTTZT9B9@12212212204398100000000 -T12023011111169930021700406141120523111199300000000072205320280000000000000000000000000000000355122222000000012219012 -T2202301111116993001219940527WTT#@Y#WP2222211222222011212190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116993001219940704WTTB9BWB@2222212222222021212190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111699300120150324WT@#ZPB##22222112204398100000000 -T320230111111699300120200309WTT#BPZ9922222122204398100000000120180102WTT090Y0T22222122204398100000000 -T12023011111169934225800405801120212110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111116993421220010213WTT#P#9@@2222212222221012212110134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111699342120220912WT@9TPY9W22222222204398100000000 -T12023011111169936924700406701120322110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111116993691219730423WTTZ9WW9Y2222221222222011215290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000600 -T2202301111116993691219730723WT@9PTWTY2222222222222021215290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111699369120100107WTTZ@Y99P22222212204306200000000 -T12023011111169942520300408321120233110516300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111116994252220000509WT9TT@9@T2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111699425120200923WT@@TBZZT22222112204398100000000 -T12023011111169942724100402401120233110516300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111116994273219630326WT@PTTTYT2222212222225012212110006011069925000000000000000000000000000000000000000000000000000000000000189400000000000000000000 -T320230111111699427120050107WTT0B#BZW22222112206309100000090 -T12023011111169948820600402131120213110493300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111116994881219750501WTTWPYYWT2222212222221012212111970023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111699488120080712WT@B0P#Z022222122204305100000000 -T12023011111169950824700413761120422110998300000000000000390230000000000000000000000000000000000222222000007322219012 -T2202301111116995081219900102WTTTZZ##02221222222221011212190570321011937000000000000000000000000000000000000000000000000000000000000146200000000000000000000 -T2202301111116995081219810307WTTYBYPBZ2221221222225011216110233723011800000000000000000000000000000000000000000000000000000000410000000000000000000000000829 -T320230111111699508120160924WTT#B0Z9B22212212204398100000000120090302WT@0T0YWB22212212209306100000158 -T12023011111169950922000402891120213110598300000000003505280730000000000000000000000000000000000222222000000002229072 -T2202301111116995091219830123WT@@Y@W902222212222221012212110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111699509120170218WT@Y@WWP922222122204398100000000 -T12023011111169952122000414461120213110611300000000050405280330000000000000000000000000000000000222222000000002229012 -T2202301111116995211219610909WTTPB#99W2212222222225012213110342623011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111111699521120040918WTT99#9ZW22122212204311100000000 -T12023011111169960822000400461120312110611300000000000003160300000000000000000000000000000000211122222000000012219072 -T2202301111116996081219810513WTTBB9P0P2221222222221012212110780023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111699608120150908WT@Y0BZPW22212212204301100000000420050912WT@YTBPW922212212204312100000000 -T12023011111169963724200411401120233120000300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111116996373219750309WT@PB@PY02222212222222012212110045613069900000000000000000000000000000000000000000000000000000000000000600000000000000000000000 -T320230111111699637120080418WT@900@@#22222122207308100000000 -T12023011111169964624200403511120333120000300000000000005280160000000000000000000000000000000000222222000000002229022 -T2202301111116996463219800513WTTPB@ZT01222222222222012210110006013069900000000000000000000000000000000000000000000000000000000000000511700000000000000000000 -T320230111111699646120150221WT@0@Z9TY12222112207302100000000120130708WT@PB#00Z12222112207303100000000 -T12023011111169968425900408111120433120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111116996843219750712WTT0BP@P@2122222222223012216110006011069928000000000000000000000000000000000000000000000000000000000000216600000000000000000179 -T320230111111699684420080527WT@0W@#B#21222222204307100000299 -T320230111111699684120200918WTTPZPZZ021222222208398100000000420090923WT@P@9T9Y21222222204306100000299 -T12023011111169979224700407521120533120000300000000000007710300000000000000000000000000000000000222222000000002229022 -T2202301111116997923219770727WT@T#YY@Z2222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000481200000000000000000000 -T320230111111699792120170522WT@ZY#YPY22222112207398100000000120160527WTT9T99@T22222122207398100000000 -T320230111111699792120180913WTTPBT9W022222122207398100000000120180913WTT#ZPZZ#22222112207398100000000 -T12023011111169987722000411551120412110939300000000015007710590000000000000000000000000000000000222222000000002229072 -T2202301111116998771219940122WTTBWT#0B2221222222221012216110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111699877120140109WT@TY#9WZ22212222204301100000000 -T320230111111699877120220218WTTPPBYT022212222204398100000000120200312WT@W#P9WB22212212204398100000000 -T12023011111169989420600414161120312120000300000000000006540530000000000000000000000000000000000222222000000002229012 -T2202301111116998941219900512WT@TYT@BW2222212222221012216110540621011829000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111699894120110113WTTTYBBB@22222122204304100000000120080214WTT9WY0B#22222122204308100000000 -T12023011111169995425100407671120433110611300000000000003530520000000000000000000000000000000000222222000001752219022 -T2202301111116999542219960104WT@YYBT9P1222212222221012205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111116999542219930413WT@YYBT9P1222221222221022206990006011079930000000000000000000000000000000000000000000000000000000000000083500000000000000000000 -T320230111111699954120200723WTT9#@#@P12222112204398100000000120160704WTT90PPTW12222112204398100000000 -T12023011111169999822000409971120213110598300000000180005280150000000000000000000000000000000000222222000000002229012 -T2202301111116999981220020427WT@PWYY#Y2212222222221012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111699998120200324WTTW0ZZ0@22122222204398100000000 -T12023011111170000720800410751120433110959300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117000072219910409WT@@ZZTYZ2222212222211012212120055513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111700007120100727WTT9Z#Y0W12222122204305100000000 -T320230111111700007120140318WT@P#TZY#12222112204398100000000120120104WT@T#T@WZ12222112204302100000000 -T12023011111170002822000413731120212110516113000000000000010530000000000000000000000000000000000122222000000002229012 -T2202301111117000281219880127WTTW0@TBT2221222222221012212110530711011700210000000000000000000000000000000000000000000000000000020000125900000000000000000000 -T320230111111700028120180113WT@Y0BWZ922212112204312100000000 -T12023011111170006324200407311120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111117000631219860107WT@ZZZZB92222212222222011214290065423011800000000000000000000000000000000030000000000000000000000000000000000000000000000000000 -T2202301111117000631219850305WTTYB@YW@2222221222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111700063120180101WT@9YP90T22222122204398200000000 -T12023011111170010723500411471120233110557300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117001073219600404WT@B0##0Z2222122222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111700107120120921WTTZY@BWB22221222206303100000000 -T12023011111170018721200414781120523111141300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111117001871219850922WTTYW00#Z2222212222222011213110085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117001871219830705WTTBP@W0W2222211222222021216190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111700187120120111WT@Z0B@ZZ22222112204303100000000 -T320230111111700187120170727WT@P@TZZ#22222122204398100000000120150121WT@#@TWPT22222122204301100000000 -T12023011111170021922000402321120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111117002191219990707WTTWPZ#PZ2122222222221012211110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111700219120210412WTTBYTZ#Y12222112204398100000000 -T12023011111170055124700406701110233110258300000000000004170010000000000000000000000000000000000222222000000002229021 -T2202301111117005513219960918WT@Y9W99W2122222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111700551120180923WT@9TPY9W21222222208398100000300 -T12023011111170074823500411471110213110516300000000000000730010000000000000000000000000000000000222222000000002229012 -T2202301111117007481219990127WT@Y#T###1222222222221012212110025823011400000000000000000000000000000000000000000000000000000000020000000000000000000000000150 -T320230111111700748120200901WT@9T#B@Y12212212204398100000000 -T12023011111170098725900402721120613111395300000000000010090110000000000000000000000000000000000222222000000002229012 -T2202301111117009871219930107WT@YYYZ#@1222222222221012208110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111700987120080513WT@0PZ9YY12222222204308100000000 -T320230111111700987120160427WTT@Z#WPY12222212204301100000000120110409WTTTT9P0T12222212204306100000000 -T320230111111700987120220907WTTY0WBZP22222222204398100000000120170418WTT#99@TT12222212204398100000000 -T12023011111170109322000408891120312110740300000000000004170990000000000000000000000000000000000222222000000002229072 -T2202301111117010931219780204WT@WWYT9#2222212222222013213111650023011800000000000000000000000000000000140002000000000000000000040000000000000000000000000000 -T2202301111117010935219740918WTT##ZYZ92222211222212023212190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111117010935220040927WT@0PZ@9Y2222212222211043210190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T12023011111170112620500410641120213110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111117011261219860112WT@TP0@@02222212222221012209110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701126120120427WTT0P@ZT#22222112204302100000000 -T12023011111170113325200410141110213110611300000000000001000010000000000000000000000000000000000222222000000002229012 -T2202301111117011331219980313WTT#PBPPY2222212222225012212110015923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701133120190901WTTP0PY#@22212222204398100000417 -T12023011111170114425900406081120333110611300000000200005280650000000000000000000000000000000000222222000000002229022 -T2202301111117011442219920127WT@YYBT9P1222222222225012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701144120130909WTTBZZWY912222212204303100000000120120423WTT09TWTB12222222204304100000000 -T12023011111170117825000403231120433110811300000000005001450070000000000000000000000000000000000222222000005092219022 -T2202301111117011782219880701WT@YYBT9P1222222222221012206910006011079918000000000000000000000000000000000000000000000000000000000000125000000000000000000000 -T320230111111701178120050705WT@@0YWT912222212204310100000000 -T320230111111701178120150718WTT9TT9ZP12222222204301100000000120130122WT@B@9P0P12222212204302100000000 -T12023011111170128425900402831120213110511300000000002005280060000000000000000000000000000000000222122000000002229012 -T2202301111117012841219740913WT@WTB0BB2222212222221012216110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701284120050901WTTZYZZ0Y22222112204311100000000 -T12023011111170133722000411551120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117013373219480926WT@W9Y@0T2221222122224012212120114913069900000000000000000000000000000000000000000000000000000000000000000000000985000000000000 -T320230111111701337120090401WTT0B@T#Y22212212206306100000000 -T12023011111170152123700414331120233110470300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111117015213219770923WT@TY0#Z91222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000500 -T320230111111701521120050411WTTWTY@9W12222112207312100000000 -T12023011111170161224500405781120232110611300000000000004170630000000000000000000000000000000000222222000000002229022 -T2202301111117016123219950513WT@0#@B#Z2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701612120160722WT@PTZZ0T22222112209398100000050 -T12023011111170161524500405451120213110611300000000010005280130000000000000000000000000000000000222222000000002229012 -T2202301111117016151219860727WT@PBP#PP1222212222221012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701615120150327WTTY00BWW12222122204301100000000 -T12023011111170165920800411931120213110618101590000000005280450000000000000000000000000000000000222222000000002229012 -T2202301111117016591219930218WT@PWPPPW2222212222221012212120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701659120200902WTT9YB99@22222112204398100000000 -T12023011111170169222000400281120212110598300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111117016921219960408WT@BYB0B@1222212222221012212110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701692120200723WTTZP9B9@22222122204398100000000 -T12023011111170171924200414721120213110611300000000000005280560000000000000000000000000000000000222222000000002229012 -T2202301111117017191219960424WTTWPZ@YW2211212222221012216110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701719120180918WT@TTBPPB22212222204398100000000 -T12023011111170176620600407032120233210516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111117017663219960112WT@@WBP0@2222212222221012298210006011069920000000000000000000000000000000000000000000000000000000000000144400000000000000000000 -T320230111111701766120050122WT@90W0YY22222122207310200000000 -T12023011111170180824700406741120212110598300000000000005280040000000000000000000000000000000000222222000000002229072 -T2202301111117018081219740422WT@YW09092221222222221012216110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701808120070414WTTZ0B@TP22212222204310100000000 -T12023011111170188025900402831120413110987109340000000007710230000000000000000000000000000000000222222000000002229012 -T2202301111117018801219880712WTTPWBWBW1222222222221012216110550523011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111701880120140111WTT00YWTT11222222204302100000000 -T320230111111701880120210122WT@TBW0TP11222222204398100000000120150107WTT0BT0Z#12222122204301100000000 -T12023011111170189722000403531120423111034300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111117018971219880304WT@#P09ZZ2222212222222011215290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117018971219800907WTT#@Y#WW2222211222222021214290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701897120170527WT@#ZTBPY22222112204398200000000120080723WTT90T#YP22222112204308200000000 -T12023011111170192322000405841120313110704300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111117019232219720118WT@ZT#@092212221122212012203190184213109900000000000000000000000000000000000000000000000000000000000000000000000839009500000000 -T2202301111117019231219750323WT@BY0W#@2212222222222022203290362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111701923120060701WTT#YWWPB22122222204309100000000 -T12023011111170196225600411521120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111117019621220000123WT@#BY9091222212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111170198522000411971120113110376300000000004003620020000000000000000000000000000000000222222000000552219012 -T2202301111117019851219850212WT@W900@T2221222222221013213190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000055 -T12023011111170207924200414021120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111117020791220040704WT@9W00B#1221222222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111170217224200402531120512110900300000000000007710190000000000000000000000000000000000222222000000002229092 -T2202301111117021721219830421WT@#TTB#P2221222222221012212111110023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111702172120060423WT@@Y0YYW22212222204309100000000120060423WTTP@T9W922212222204309100000000 -T320230111111702172420210709WTT@TTB@W22212222104398109140000120200227WT@Z09TT922212222206398100000000 -T12023011111170220422000405841120233110611300000000000005010340000000000000000000000000000000000222222002600012219022 -T2202301111117022041219720714WT@0#9@PW1222222222225012216110352523099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111702204120090923WT@W@0PWP12222112204306100000000 -T12023011111170231822000408891120213110598113420000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111117023181220000423WT@W9P0002221222222223012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111702318120210321WT@T0BW@Y22212212204398100000000 -T12023011111170232824100402401120233120000300000000000003660060000000000000000000000000000000000222222000000512219022 -T2202301111117023282219800524WT@WWP@#W2222212222214012212110491113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111702328120090527WTTTBZBZ#22222112204306100000054 -T12023011111170233520600404491120232110516300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111117023353219660923WT@9PB9YB2222212222214012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111702335120130412WTTTT#T0B22222112206303100000000 -T12023011111170241420600407031120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111117024141219840323WTT0YPYTB2222211222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117024141219860511WT@WBWZ092222212222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111702414120190227WTT#@0WTB22222122204398200000000120130305WT@@ZTYWW22222122204302200000000 -T12023011111170243724200403941120213110598300000000000205280380000000000000000000000000000000000222222000000002229072 -T2202301111117024371219720912WTT@TBT9P2222211222221012212110870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111702437120090408WT@ZTYWPW22222122204306100000000 -T12023011111170245324100402401120412110939300000000000007710360000000000000000000000000000000000222222000000002229072 -T2202301111117024531219820111WTT#@WTWW2222212222222012212121210023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111702453120120701WTTWP@T0@22222112204302100000000 -T320230111111702453120130727WTT@B0PYT22222112204301100000000120130727WT@#PPB#W22222112204301100000000 -T12023011111170256322000403892120213210598300000000000005280050000000000000000000000000000000000222222000000002229032 -T2202301111117025631219740918WT@9TPY9W1222212222221012212210065423010900000000000000000000000000000000170002000000000000000000040000000000000000000000000000 -T320230111111702563120200313WT@9TPY9W12222212204398200000000 -T12023011111170260523500410671120313110801300000000000101970040000000000000000000000000000000000222222000004572219012 -T2202301111117026051219840526WT@0Y#W#P2222122222221012212110055521011813000000000000000000000000000000000000000000000000000000000000091300000000000000000000 -T320230111111702605120110723WT@9B9Z@T22221222204305100000000120070411WT@TB@W@922221212204307100000000 -T12023011111170271323500411471120313110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111117027131219890312WTTY9TWY@2222212222223012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111702713120160407WTTY@@0#Y22222112204398100000000120140308WTT0@Z09P22222112204301100000000 -T12023011111170281922000405321120412111034300000000001407710060000000000000000000000000000000000222222000000002229012 -T2202301111117028191219910923WT@BT0T@P2222212222221012216110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111702819120160309WTT#9#@BZ22222122204398100000000 -T320230111111702819120220421WTTZYWW9022222122204398100000000120220421WTTT9#P9P22222122204398100000000 -T12023011111170290924200410711120313110835300000000000504760260000000000000000000000000000000000222222000001782219012 -T2202301111117029091219840912WTTWY#00#2222212222221012216110263421011952000000000000000000000000000000000000000000000000000000000000070900000000000000000000 -T320230111111702909120070727WT@#YZ0@022222112204309100000000120050702WT@B0#W0922222122204310100000000 -T12023011111170307625900400311120213110631300000000030503530120000000000000000000000000000000000222222000001752219012 -T2202301111117030761220010405WTT99Y#PB1222222222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111703076120210704WT@0W0Z0P12222222204398100000107 -T12023011111170322423500406851120313110835300000000002506540050000000000000000000000000000000000222222000000002229012 -T2202301111117032241219960114WTT@@Y9@T1222212222225012212110065421011816000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111703224120180524WT@0W@##Y22222112204398100000000120160424WT@PWP99#12222122204303100000000 -T12023011111170334023300410111120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111117033403219710412WTT@WYTZ@2222212222222012213110006011069940000000000000000000000000000000000000000000000000000000000000292400000000000000000000 -T320230111111703340120180113WTT0BPB9B22222222206398100000000 -T12023011111170341720600414251120633111298300000000000010090200000000000000000000000000000000000222222000000002229022 -T2202301111117034171219710227WTT0TYZZP2222122222225012211920530723099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111703417120060423WT@#ZWT#T22221222204310100000000 -T320230111111703417120090512WTTZ0ZT9B22221222204307100000000120070218WTT@YB#@P22221212204309100000000 -T320230111111703417120160321WT@0#Z0P#22221212206398100000000120100327WT@0ZPPB@22221222204305100000000 -T12023011111170342020600400871110213110619300000000000003160230000000000035001000000000000000211122222000000012219012 -T2202301111117034201219910902WT@#@P0WP2222212222225012212110312923010200000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111703420120150904WT@9TTP#B22222122204301100000000 -T12023011111170351522000410052120213210598300000000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111117035151219670723WT@9TPY9W2222211222222012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111703515120050313WTT99BY9T22222112204311200000000 -T12023011111170359623700414331120313110811300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111117035961219860123WT@W0P@@01222222222221012216110402023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111703596120090922WTT0Y0TTY12222212204306100000050120080914WT@T#T#ZT12222222204308100000050 -T12023011111170371422000409871120213110611300000000000003160350000000000000000000000000000000211122222000000012219072 -T2202301111117037141219890918WT@#PB@@P2222212222221012209110670023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111703714120200227WTTPYW0BY22222112204398100000000 -T12023011111170372322000410052120313210826300000000000006540040000000000000000000000000000000000222222000000002229032 -T2202301111117037231219920202WT@00BPPY2222212222223012215210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111703723120170112WTT@WTBPY22222122204398200000000120140423WTT09WBBP22222122204303200000000 -T12023011111170377222000409991120313110766300000000000006540030000000000000000000000000000000000222222000000002229072 -T2202301111117037721219900705WTTZ#WWZ#2122222222221012212111030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111703772120120524WT@0B#@Z921222222204305100000000120090327WT@Z99B@P11222222204307100000000 -T12023011111170377522000407832110423210939300000000000003730010000000000000000000000000000000000222222000000002229032 -T2202301111117037751219820501WT@ZTTWYB2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117037751219820126WT@Z#BWP#2222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111703775120150314WTTT##B@T22222122204398200000000120130511WTTW9#90Z22222122204303200000000 -T12023011111170379223500411471110213110611300000000000004930330000000000000000000000000000000154222221000000002229012 -T2202301111117037921219920907WTT@TPYZB2222212222221012210110332723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111703792120210114WT@9#Z0#W22222112204398100000000 -T12023011111170380022700413181120512111116300000000000106540990000000000000000000000000000000000222222000000002229072 -T2202301111117038001219820301WTT9TBZ#@2222212222222012212191010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117038002219830427WTT@0ZZYT2221221222212022210190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111703800120070921WT@9B@0W022222122204308100000000 -T320230111111703800420200209WTTW9BYZ922222122204398100000000120100122WTTZZ@YT@22222112204306100000000 -T12023011111170415821700406141120313110766300000000000006540400000000000000000000000000000000000222222000000002229012 -T2202301111117041581219910205WT@#@P9@Y2222212222221012212120411923011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111704158120210312WT@9TB#9B22222122204398100000000120190712WTTTBZT#Y22222112204398100000000 -T12023011111170427022000407091120212110373300000000000003160230000000000000000000000000000000211122222000000012219072 -T2202301111117042701219910514WTTBTPB9T2222212222221012210110690023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704270120120207WT@ZWPB#@22212212204303100000000 -T12023011111170429820600414161120312110791300000000001403920120000000000000000000000000000000261122222000000012219012 -T2202301111117042981219900726WT@@@TTWZ2222212222223012212110124823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704298120170307WTT#00YW922222112204398100000000120160212WT@YZWT9B22222122204398100000000 -T12023011111170430122000405321120233110516300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111117043012219720301WT@9@YT0W2222212222211012212110035713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111704301120050427WTTWTPBY@22222112204311100000000 -T12023011111170433120800411991120213110611300000000000005280450000000000000000000000000000000000222222000000002229012 -T2202301111117043311219940418WT@ZW#@YZ1222212222221012211110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704331120190113WT@@WZ00T12222212204398100000000 -T12023011111170438822000407411120212110611300000000000005280580000000000000000000000000000000000222222000000002229072 -T2202301111117043881219770908WTT#P9#9T2222212222221012208110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704388120070407WT@#P0BPT22222112204303100000000 -T12023011111170441622000409411120333110835300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117044162219690927WTTZ0@09B2222122222211012212111430013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111704416120070323WTT#ZZ9B#22221222204308100000000120050912WT@##PTWZ22221222204311100000000 -T12023011111170444922600405051120213110493300000000002605280040000000000000000000000000000000000222222000000002229012 -T2202301111117044491220000726WT@#0YTB@2222212222221012210110055523010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704449120210104WT@YYP@TP22222112204398100000000 -T12023011111170447823700414331120233110258300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111117044783219910318WT@YYBT9P1222222222225012204910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704478120090223WT@P0B@P#12222222207308100000000 -T12023011111170451920600402141120513111109300000000000005320150000000000000000000000000000000355122222000000012219072 -T2202301111117045191219870304WTTT@090B2222122222221012211910660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704519120090311WTTP99ZB#22221212204306100000000120070105WT@@T0#YB22221222204309100000000 -T320230111111704519120150412WTT#0BW9P22221212204301100000000120100101WTT#BTB0W22221222204305100000000 -T12023011111170455420600404351120323110835300000000028006540050000000000000000000000000000000000222222000000002229012 -T2202301111117045541219810407WTTY@@WPW2222212222222011216110065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117045541219790404WTT@@#@P02222211222222021213190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704554120090722WTT9#9Z9Y22222122204307100000000 -T12023011111170455722000405841120523111116300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111117045571219920513WTT0#90Z01222221222222011206290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117045571219970513WT@TBBPY01222222222222021205290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704557120120107WT@BWT9@W12222212204305200000000 -T320230111111704557120160113WTTTP@PTY12222212204398200000000120130302WTT@YT#YP12222222204304200000000 -T12023011111170467022000409991120312110611300000000000005600840000000000000000000000000000000000222222000000002229072 -T2202301111117046701219820901WTT9PPY#02222212222223012216110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000006695 -T320230111111704670120220321WT@0ZT0##12222112204398100000000120190907WTT@W0BZT22222112204398100000000 -T12023011111170469622000407411120233120000300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111117046963219730704WTT9PB##B2222212222222012212110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704696120150112WTTT#P#B921222212207301100000033 -T12023011111170469722000408892110313210835300000000000004850010000000000000000000000000000000000222222000000002229032 -T2202301111117046971219990121WT@9TPY9W1222222222221012298210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704697120210313WT@9TPY9W12222212204398200000000120180413WT@9TPY9W12222222204398200000000 -T12023011111170474524200409091120213110598300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111117047451219870421WTT0ZZBZY1222122222221012212110233723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704745120220111WT@9TPY9W12221212204398100000000 -T12023011111170479224200414851120212110611300000000000005280240000000000000000000000000000000000222222000000002229092 -T2202301111117047921219830718WT@YBZ0B02221222222225012213111070023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704792120100724WT@BPWPBW22212222204307100000000 -T12023011111170491524500405451120332120000300000000000005280290000000000000000000000000000000000222222000000002229022 -T2202301111117049153219680713WT@9@W0#P2122222122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001206000000000309 -T320230111111704915120200923WT@#WWWZP21222222206398100001666120120912WTT#9#B@T21222212206304100001666 -T12023011111170491725900402631120313110835300000000000206540330000000000000000000000000000000000222222000000002229012 -T2202301111117049171219940411WT@WW0#YZ2222212222225012212110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704917120200914WT@0ZYBTB12222212204398100000000120170727WTT#Y##W@22222112204398100000000 -T12023011111170491820600406751120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117049182219670423WT@@YTB@@2221222222215012212111060013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111704918120060102WT@W9Y9W022212212204310100000050 -T12023011111170496923900400641120333120000300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111117049693219720713WTT#90B@B2222212222225012213110006011069941000000000000000000000000000000000000000000000000000000000000745300000000000000000000 -T320230111111704969120140402WTTBZZ#W@22222112206301100000050120110104WTTWPY9Z022222112206305100000050 -T12023011111170498525900402121120323110835300000000000006540040000000000035002000000000000000000222222000000002229012 -T2202301111117049851220000523WT@0WZBWP2222211222221011210190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117049851220000126WT@9Y0#@Y2222212222221011211190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111704985120200701WTTB@@#9B12222122204398100000000 -T12023011111170500920600402141120213110611300000000300005280090000000000000000000000000000000000222222000000002229012 -T2202301111117050091219980412WT@WZ#0@P2221222222221012212110105023011700000000000000000000000000290003000000000000000000000000000000000000000000000000002118 -T320230111111705009120210926WT@WZ09P922212212204398100000000 -T12023011111170508224700406741120212110611300000000000005280230000000000000000000000000000000000222222000000002229072 -T2202301111117050821219800713WT@@9BPW#2222212222221012213110880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111705082120090713WT@W#9PWP22222112204306100000000 -T12023011111170510621000412411120213110611300000000000005280840000000000000000000000000000000000222222000000002229072 -T2202301111117051061219870721WTTWPZZ#Y2222212222223012209110850023011800000000000000000000010000000000000000000000000000000000000000000000000000000000000000 -T320230111111705106120170127WTT09000022212222204398100000000 -T12023011111170516924200414021120333120000300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111117051695219810118WT@Z9Y#BT1222222222222012212110015911069929000000000000000000000000000000000000000000000000000000000000474500000000000000000000 -T320230111111705169120160321WT@#ZYWB022222112209398100000000120150201WTT@ZTY@022222122209398100000000 -T12023011111170522423900408291120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111117052243219600712WT@0YYBTP2122222222225012212110035711069940000000000000000000000000000000000000000000000000000000000000269800000000000000000000 -T320230111111705224120170112WTTP9ZTTW21222212206398100000000 -T12023011111170543223100408861120233110408300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111117054323219900912WT@PWWZ@@1222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000449 -T320230111111705432120040722WT@BTB9BY21222222207311100000000 -T12023011111170557822000408451120533120000300000000000007710100000000000000000000000000000000000222222000000002229022 -T2202301111117055783219710205WT@#WWYT@2222212222222012212190006011069937000000000000000000000000000000000000000000000000000000000000457600000000000000000000 -T320230111111705578120140423WT@WTBY@B22222122206301100000000120120727WTTT@YB#Y22222122206302100000000 -T320230111111705578120150912WTT@@WTW922222122206301100000000120150912WTTZ9Y0ZT22222122206301100000000 -T12023011111170559825900412511120733111211124260000000008880530000000000000000000000000000000000222222000000002229022 -T2202301111117055982219940927WT@YYBT9P1222212222222012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117055982219880413WT@YYBT9P1222221222222022209990006011079901000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111705598120120413WT@Y9WPPY12222112204303100000000 -T320230111111705598120150701WT@0P@B9012222212204398100000000120130512WT@0Z00P@12222222204302100000000 -T320230111111705598120200522WT@BZ00T#12222222204398100000000120170414WT@0P000912222222204398100000000 -T12023011111170569623300401481120233110516300000000001204170990000000000000000000000000000000000222222000000002229022 -T2202301111117056962219800118WT@W#0ZZ92222212222215012216111220013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111705696120060224WTT9WW0YP22222122204308100000000 -T12023011111170575921000403201120633110893300000000000008880340000000000000000000000000000000000222222000000002229022 -T2202301111117057592219850304WT@PYWYB92122222222213012216110421813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111705759120060409WTTWTWZW921222212204309100000000 -T320230111111705759120140724WTT9W09@@21222222204301100000000120080713WTTTYZT@B21222222204307100000000 -T320230111111705759120220114WT@WP@@W021222212204398100000000120180722WTT9T##TT21222222204398100000000 -T12023011111170591024200403941120312110740300000000000205280060000000000000000000000000000000000222222000000002229012 -T2202301111117059101219990312WT@@P#W@Y2221221222221012211190065423011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111117059102219960714WTT#WW@@Z2222212222211102213190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400001332 -T320230111111705910120200727WT@#9P@9W21222212204398100000000 -T12023011111170597825200410141120233110516300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111117059783219550402WTTYW9BY@2222212222215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111705978120160912WT@@T9ZY922222122206398100000000 -T12023011111170608521000403301120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117060852219800412WTT#T#0YY2222212222213012212111550013089900000000000000000000000000000000000000000000000000000000000000000000000000080300000029 -T320230111111706085120060718WT@0@@Z@Y22222112204311100000050420050227WT@T0TWYP12222112104312109140215 -T12023011111170608722000407411120313110699128600000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111117060871219920323WT@WTW#Y@2221222222221012216110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111706087120220101WT@PZT9TZ22212222204398100000000120190122WTTY0YP#@22212212204398100000000 -T12023011111170610424700408301120212110493300000000000000010580000000000000000000000000000000000222222000000002229012 -T2202301111117061041219790426WT@YYPWYP2222212222225012212110580211011800210000000000000000000000000000000000000000000000000000000000125600000000000000000000 -T320230111111706104120150404WT@#09ZTY22222112204312100000000 -T12023011111170615022000400921120423110939300000000300007710030000000000000000000000000000000000222222000000002229012 -T2202301111117061501219780312WTT@#ZTZZ2222211222222011215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117061501219780323WT@@T9PZB2222212222222021215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111706150120160927WT@9TPY9W22222122204398200000000120060701WT@9TPY9W22222112204308200000000 -T12023011111170635124200409091120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111117063513219680302WT@YW9@0P1222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000938 -T320230111111706351120080927WT@@TYW#P22222122207308100000000 -T12023011111170658324700409321120512111116300000000000008880150000000000000000000000000000000000222222000000002229072 -T2202301111117065831219870723WT@0YT9TW1222222222223012216120700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111706583120170322WTTBZ00Z012222112204398100000000120140902WT@P##9PY12222112204303100000000 -T320230111111706583120220401WT@WPZ#9T12222122204398100000000120200321WT@PW@0TW12222112204398100000000 -T12023011111170671323500404531110213110516300000000000003740010000000000000000000000000000000000222222000000002229012 -T2202301111117067131220020912WTTP9@ZW91222222222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111706713120200301WTTYZW9TP12222222204398100000000 -T12023011111170680124200404701120233110611300000000000003480070000000000000000000000000000000000222222000001802219022 -T2202301111117068011219780723WT@Y9T0PZ2222212222221012215210085223099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111706801120060213WT@P#W#TY22222112204308200000179 -T12023011111170698724200411401120413110704300000000000004620420000000000000000000000000000000308122222000000012219072 -T2202301111117069871219810213WT@B@@@T02221222222221012213111000021011936000000000000000000000000000000000000000000000000000000000000356900000000000000000000 -T320230111111706987120040327WT@PW@BPT22212212204311100000000 -T320230111111706987120110923WTT9B#TYZ22212222204306100000000120090412WTTB@#99B22212222204307100000000 -T12023011111170702124700402991120413111034127800000000007710140000000000000000000000000000000000222222000000002229012 -T2202301111117070211219840423WT@9Y#P9#2222212222223012298210144621011726000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707021120120423WT@#@9W#Y22222212204398200000000 -T320230111111707021120180423WTTP99W#B22222212204398200000000120150423WT@00@#0P22222222204398200000000 -T12023011111170706623500411471120212110493300000000000005280960000000000070006000000000000000000222222000000002229072 -T2202301111117070661219840126WTTB0#BBZ2221222222223012212110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707066120100108WTT0BYWYY12212122204306100000250 -T12023011111170706820600402141120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117070683219600918WT@TTBZ#Y2222211122215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000542039200000000 -T320230111111707068120090323WTT@0@@BY22222112206306100000035 -T12023011111170724024200410531120213110611300000000003003660020000000000000000000000000000000000222222000001622219012 -T2202301111117072401219920412WT@0@PYY@2222212222221012213110322821011811000000000000000000000000000000000000000000000000000000000000064500000000000000000000 -T320230111111707240120150312WTTTY#WP022212112204398100000000 -T12023011111170732522000400651120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111117073251219880212WT@ZYYWBB2222212222221012213110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707325120200422WTTT000WT22222122204398100000000 -T12023011111170739122000403351120233110376300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111117073912219710411WT@YYBT9P1222221222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707391120120712WT@@YP0@W21222222204303100000000 -T12023011111170742024100402401120313111209300000000025206540070000000000000000000000000000000000222222000000002229012 -T2202301111117074201219860201WT@0BB@PB2222212222223012216110085223011800000000000000000001000000000000000000000000000000000000010000000000000000000000000000 -T320230111111707420120120318WTT#@T@ZZ22222122204304100000000120090905WTTB@P#YY22222122204307100000000 -T12023011111170743222700408351120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111117074323219910126WTTW@#@TZ2222212222221012203110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707432120070118WTT9Z9PY012222112207308100000000 -T12023011111170752524700410421110113110258300000000000000940010000000000000000000000000000000000222222000000002229012 -T2202301111117075251220030224WTTPBPP9B1222222222221013213190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111170752722600405051120212110557300000000006005280120000000000000000000000000000000000222122000000002229012 -T2202301111117075271219620326WT@ZT###@2222211222221012212120134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707527120060309WTT09WZ9#22222112204308100000000 -T12023011111170753024200403461120313110835300000000000004900300000000000000000000000000000000163222122000000012219012 -T2202301111117075301219870418WTT#ZBTY02122222222223012212120312923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707530120160313WT@99W90W21222222204398100000000120140101WT@9P@Z0T21222212204301100000000 -T12023011111170756622000414461120213110599300000000000003160150000000000000000000000000000000211122222000000012219012 -T2202301111117075661219850901WT@PB#B@Z2221221222223012216110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707566120110527WTT9Y#0TW22212212204304100000000 -T12023011111170757424100402401120333110555300000000000005280780000000000000000000000000000000000222222000000002229022 -T2202301111117075743219600207WT@0099WP1222222122225012209110263413069900000000000000000000000000000000000000000000000000000000000000000000000970000000000000 -T320230111111707574120110927WT@BBWW9#12222112206305100000050120050212WT@B0@@0Y12222122206311100000050 -T12023011111170760322000406211120213110367300000000010004650060000000000000000000000000000000000222222000000632219012 -T2202301111117076031219970704WTTY0W##B2222211222221012209110075323011400000000000000000000000000000000000000000000000000000000000000025000000000000000000000 -T320230111111707603120180111WTT@#PWYY22222112204398100000000 -T12023011111170769422000411551120212110611113350000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111117076941219840424WTTP0@W#W2222212222221012212121280023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707694120190118WTTZBZ9TZ12222112204398100000000 -T12023011111170770722000403481120333111208300000000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111117077073219680122WTT#Y9@#@2221222222213012212110164413069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111707707120190421WT@090PPY21222212209398100000000120180205WT@PZ90@921222222209398100000000 -T12023011111170781623500402291120213110611300000000020005280290000000000000000000000000000000000222222000000002229012 -T2202301111117078161219940327WT@BY@9T92222212222221012216110411923011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111707816120140122WT@PZP90022222122204301100000000 -T12023011111170785921000405412120422211034300000000000007710120000000000000000000000000000000000222222000000002229032 -T2202301111117078591219890212WT@YYTB#02212221222222011212290134721011952000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117078591219930205WTTPY#9YZ2222222222222021298290134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707859120160205WTTB#0BZT22222222204301200000000120150713WT@WZP@9T22222212204302200000000 -T12023011111170789524700406741110213110516300000000000000450010000000000000000000000000000000000222122000000002229012 -T2202301111117078951219990912WT@WWYZTW1221222222221012211120025823011400000000000000000000000000000000000000000000000000000000030000000000000000000000000400 -T320230111111707895120170304WT@YPT0#T12222212204398100000000 -T12023011111170797724200402501120313110740300000000000006540600000000000000000000000000000000000222222000000002229072 -T2202301111117079771219840212WTT#P9BY92221222222225012212110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707977120210402WTTB@0Z@P22212212204398100000050120160327WT@Y0#99#22212222204398100000050 -T12023011111170798823500410671120823111691300000000000012240050000000000000000000000000000000000222222006400012219012 -T2202301111117079881219800413WTTZYPW9B2222121222222011212990223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117079881219850312WTTW9Y9B#2222122222222021209990223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111707988120080726WTT0B#BZY22221222204308900000000120040507WTTB@0TZ@22221222204311900000000 -T320230111111707988120140707WTTWP0Y9P22221222204302900000000120110513WT@T0P#9B22221212204305900000000 -T320230111111707988120210314WT@9ZTBPT22222212204398100000000120190904WT@WWZT##22221222204398100000000 -T12023011111170800323500405271120213110611106250000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111117080031219870113WTTTZT@#T2222212222221012212210085221011818000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708003120120313WT@P#@WYT22222122204303200000000 -T12023011111170800420600407031120423111034300000000100007710020000000000000000000000000000000000222222000000002229012 -T2202301111117080041219880118WTTPBWBZP2222211222223011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117080041219920401WTT9P@YY92222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708004120180913WT@BBYWW#22222112204398200000000120120708WT@Y0B#@022222112204304200000000 -T12023011111170806222000408891120513110959300000000000005320130000000000000000000000000000000355122222000000012219012 -T2202301111117080621219810126WT@9#P@ZT2221222222221012212110520823010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708062120110409WTT##PZ#B22212222204304100000006120080914WT@TBW@ZY22212222204307100000006 -T320230111111708062120150413WT@TY0#PW22212222204398100000006120120718WT@#Z9#Y922212212204302100000006 -T12023011111170807425200412081120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117080743219640712WTT#BYB0Y2222212122225012210120006013069900000000000000000000000000000000000000000000000000000000000000000000001204000000000000 -T320230111111708074120130413WTT@Z@YTZ22222112207303100000000 -T12023011111170813624700408092120413210740300000000010007710080000000000000000000000000000000000222222000000002229032 -T2202301111117081361219850323WTTYWZBP92222212222223012212210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708136120120113WTTWPPYTZ22222122204304200000000 -T320230111111708136120180314WT@0Y9#9T22222122204398200000000120150327WT@##WTT@22222112204398200000000 -T12023011111170815920300411111120213110557300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111117081591219790914WT@ZBT#@Z2222212222225012216110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708159120080718WTT0ZWBZT22222112204308100000000 -T12023011111170818024700406701110212110516300000000000003910010000000000000000000000000000000000222222000000002229012 -T2202301111117081801219970302WT@WW@9@T2221222222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708180120160402WT@TTY90T22222112204398100000026 -T12023011111170823422000400591120323110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111117082341219670727WT@@P#0#92222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117082341219690512WT@B9Z90P2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708234120120314WTTYZWB#P22222122204398200000000 -T12023011111170827825600406521120312110480300000000000004830170000000000000000000000000000000000222222003201392219072 -T2202301111117082781219850412WTTYPTZYP2221222222223012216110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000137 -T320230111111708278120080404WT@P@@TYT22212212204309100000000120060401WTT0T0WWW22212212204311100000000 -T12023011111170836620600407031120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117083663219840927WT@T#0YT#2222211222221012211110006011069940000000000000000000000000000000000000000000000000000000000000466400000000000000000000 -T320230111111708366120170423WT@TTB0P022222122208398100000050 -T12023011111170838024700403421120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111117083801219820711WTTT9BBZ92221221222225012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708380120100709WT@PYWW9#22212212204306100000000 -T12023011111170851421000411361120213110611300000000000003160290000000000000000000000000000000211122222000000012219042 -T2202301111117085141219940714WTT@TY9WY2222212222221012211110006023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708514120100109WT@09##TY22222122204306100000000 -T12023011111170852924700410421120233110493300000000000004170630000000000000000000000000000000000222222000000002229022 -T2202301111117085292219850401WTT#TW9BB2222212222215012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111708529120140327WT@P9#@9#22222112204301100000050 -T12023011111170868620800405391120333110740114440000000005280830000000000000000000000000000000000222222000000002229022 -T2202301111117086862219940305WTT#@W#P02221222222211012211110283213089900000000000000000000000000000000000000000000000000000000000000000000000000015600000000 -T320230111111708686120210913WT@PPB#Z@22212222204398100000000120130413WTTT90Y9P12212222204303100000100 -T12023011111170873320400407741110313110740300000000000001050010000000000000000000000000000000000222222000000002229072 -T2202301111117087331219720327WT@ZBBTPT1222211222221012216110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708733120090327WT@PW#Y#011222222204306100000000120070421WTT#ZT0B911222222204309100000000 -T12023011111170875723700414332120723211339300000000000010090100000000000000000000000000000000000222222000000002229032 -T2202301111117087571219770918WTTT9B0PW2222211222222011214290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117087571219860107WT@90Y@9T2222212222222021214290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708757120110922WT@WY#9W922222122204304200000000 -T320230111111708757120150723WTTBB#ZPP22222112204301200000000120130507WTTTZZ9ZZ22222112204303200000000 -T320230111111708757120230414WT@WYZTZT22222122204398100000000120180311WT@B@PZ@022222112204398200000000 -T12023011111170890025200410591120313110548300000000249005280050000000000000000000000000000000000222222000000002229072 -T2202301111117089001219700409WT@#B0#TP2222212222223012212191440023011900000000000000000000000000360004000000000000000000000000040000000000000000000000000000 -T2202301111117089002219770101WT@YYBT9P1222221222223102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708900120060723WTTT#000912222122204309100000000 -T12023011111170892820800410781120313110835300000000000006540270000000000000000000000000000000000222222000000002229012 -T2202301111117089281219880507WT@WWPWY92221222222221012214110263421011741000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708928120170213WT@@BPPY022212212204398100000000120110122WT@W#0P0922212212204305100000000 -T12023011111170895424700406701120613111339300000000000010090030000000000000000000000000000000000222222000000002229012 -T2202301111117089541219820127WT@P9#T0@2222212222223012216210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111708954120060918WTT00@9TT22222112204310200000000 -T320230111111708954120090512WTTZBP0@@22222112204307200000000120070721WTTWPWZWW22222122204309200000000 -T320230111111708954120190927WT@P0T@@Y22222122204398200000000120120513WTTYYWYYB22222112204305200000000 -T12023011111170898625000402561120213110598300000000003005280030000000000070002000000000000000000222222000000002229012 -T2202301111117089861220010126WT@9B009B1222222222221012212110045623010600000000000000000002000000000000000000000000000000000000260000000000000000000000000000 -T320230111111708986120190726WTTWY@T9W12222122204398100000000 -T12023011111170902124700408091120313110704300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111117090211219870124WTTB@WPWP2222212222223012212210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709021120100913WTT0#@T0022222122204306200000000120070412WTTWW@9#922222112204309200000000 -T12023011111170902425900410241120633111124300000000032508880280000000000000000000000000000000000222222000000002229022 -T2202301111117090242219820504WT@YYBT9P1222222222224012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709024120040427WT@ZTBY0W12222212204310100000000 -T320230111111709024120080914WTT9W0#@Z12222212204307100000000120070421WTTPZZTWY12222212204308100000000 -T320230111111709024120130709WTTZZ0YBP12222212204301100000000120090727WT@Y0T##P12222212204305100000000 -T12023011111170904922700403021120623111415300000000030010090280000000000000000000000000000000000222222000000002229012 -T2202301111117090491219830704WTT@W0ZPP2222211222222011216110253523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117090491219970912WT@YY@9T#1222212222221011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709049120080723WTT9W00@922221212204308100000000120060424WT@@##YY022222212204310100000000 -T320230111111709049120180927WTT999W@B12222122204398100000000120170923WT@Y@Z@0P12222122204398100000000 -T12023011111170905720600402131110213110611300000000000002880070000000000000000000000000000000000222222000000002229012 -T2202301111117090571219860123WTT#PT9Y92222212222221012212120421821011807000000000000000000000000000000000000000000000000000000000000039300000000000000000000 -T320230111111709057120110927WTT##W@BW22222112204305100000000 -T12023011111170911923500405981120232110516300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111117091192219870727WT@ZYZTB92222212222211012211120006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111709119120140713WTT9YZ@W921222212204301100000000 -T12023011111170912422100410901120213110516300000000050005280300000000000000000000000000000000000222222000000002229012 -T2202301111117091241219820324WTT#@ZPW@2222212222221012213110303021011900210000000000130000000000000000000000000000000000000000040000057900000000000000000000 -T320230111111709124120070314WT@ZTT9#922222122204308100000000 -T12023011111170921423500408281120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111117092141219940126WTTZT9BBZ2222222222221012203910045623011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111709214120180926WTTZY9ZW@22222212204398100000000 -T12023011111170921620800414651120312110815127410000008706540180000000000000000000000000000000000222222000000002229012 -T2202301111117092161219930718WTTPTZB991222222222221012212120194123011400000000000000000000000000000000000000000000000000000000350000000000000000000000001595 -T320230111111709216120210113WT@0B#9@912222122204398100000000120190318WTTT@9TB012222122204398100000000 -T12023011111170924524200408391120233120000112270000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111117092453219920422WT@@WZ#T02221221222225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709245120190507WT@W0ZT0022212212207398100000000 -T12023011111170934922000405841120312110704300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111117093491219920723WTT9PZ9PZ2222212222221012216110550523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111709349420130723WT@9@B09P22222112104303109140000120100927WTTBTT@Y#22222122204306100000000 -T12023011111170937721600402511120213110611300000000000005280110000000000000000000000000000000000222222000000002229042 -T2202301111117093771219980302WT@@Z@ZZY2222212222221012211110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709377120210904WTTWWWWYT22222112204398100000000 -T12023011111170938422000407791120313110611300000000000003920100000000000000000000000000000000261122222000000012219012 -T2202301111117093841219800907WT@TZTB@01222222222225012208110293123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709384120070407WT@ZTYZ#912222212204308100000000120060418WT@B@W9P912222222204309100000000 -T12023011111170939422000405181120212110557300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111117093941219940708WT@@B@BT@2122222222225012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709394120200527WT@BW@Z#011222222204398100000000 -T12023011111170940022700407491120213110412300000000027005280080000000000000000000000000000000000222222000000002229012 -T2202301111117094001220020412WTT#P#P#Y1222222222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709400120220726WTT#@#P0912222212204398100000000 -T12023011111170943325200407301120413111034300000000090507710020000000000000000000000000000000000222222000000002229012 -T2202301111117094331219860212WT@9YP@0@2222212222223012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709433120060402WT@P9PZP@22222122204310100000000 -T320230111111709433120120221WTT9YYYT#12222212204304100000000120080123WT@BBWW#912222112204308100000000 -T12023011111170949720900411721120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117094972219770708WTTB99WW#2222211222215012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111709497120060712WT@WPTTY@21222122204307100000000 -T12023011111170953225900402721120313110446300000000085305280790000000000035020000000000000000000222222000000002229072 -T2202301111117095321219800718WT@W9TW9B1222211222221012212190740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117095322219780212WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709532120050324WT@#T@B@#12222112204310100000000 -T12023011111170955523500408281120313110766300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111117095551219870227WTTWWYY0P2222122222221012209910035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709555120210102WT@PW0Z#Y22221222204398100000000120190714WT@WWY@0@22221222204398900000000 -T12023011111170957620600406751120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111117095763219890701WTTWYB0ZZ2222212222222012212110006011069928000000000000000000000000000000000000000000000000000000000000240800000000000000000000 -T320230111111709576120210323WTT9Z@BBB21222212208398100000000 -T12023011111170961824200402501120233110516300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111117096183219770318WT@0BB@0#2222212122225012212110065413069900000000000000000000000000000000000000000000000000000000000000000000001245000000000050 -T320230111111709618120160113WT@W@P0WZ22222122206398100000000 -T12023011111170965220600401641120322110841300000000000006540620000000000000000000000000000000000222222000000002229012 -T2202301111117096521219930107WT@@00TTY2222212222221011211110550523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117096521219920102WTT@T00@B2222121222221011214190273323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709652120180308WTTTWT90@22221222204398100000000 -T12023011111170980424700406701120313110835300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111117098041219960709WTT#BYBYZ2222212222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111709804120180124WT@PYBYY@12222112204398100000000120150911WT@P@TZY912222112204301100000100 -T12023011111170985424100402401120213110599300000000000003060300000000000000000000000000000000204122222000000182219012 -T2202301111117098541219900426WT@#W#TYB2222212222221012211110421823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000016 -T320230111111709854120160113WTT@ZT0#P12222122204398100000000 -T12023011111170988120800411991120213110598300000000000005280170000000000000000000000000000000000222222000000002229072 -T2202301111117098811219750901WT@#Y#0WP2122222222221012212111330023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111709881120090318WT@Y#P@WT11222212204307100000000 -T12023011111171007620600414871120233120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111117100765219870123WT@0WW#@P2221212222222012214120006013069900000000000000000000000000000000000000000000000000000000000000549000000000000000000000 -T320230111111710076120120405WTT@#9ZWZ11212112209304100000000 -T12023011111171019622000407411120313110542300000000002203920060000000000000000000000000000000261122222000000012219012 -T2202301111117101961219830923WT@ZYBYZZ2222212222221012210110144623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111710196120130414WTT9PZ#WW22222122204305100000000120070107WTTPPPPWZ22222122204308100000000 -T12023011111171030024200414351110213120000300000000000000340010000000000000000000000000000000000222222000000002229012 -T2202301111117103001220040926WTTY#PPZZ1222222222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111710300120220101WT@@PBWT@12222212204398100000000 -T12023011111171032222000407791120233110376300000000130004170170000000000000000000000000000000000222222000000002229022 -T2202301111117103222219900101WT@#Z9Y@02222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111710322120160907WT@ZP#WYW12212212204398100000000 -T12023011111171033424100405611120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117103343219700912WT@B0WT#@2222212222225012213110114911069940000000000000000000000000000000000000000000000000000000000000326800000000000000000000 -T320230111111710334120110324WT@TZ@9BP12222122206304100000000 -T12023011111171040824200414021120313110835140600000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111117104081219900723WTTY#YZBB2221222222223012216220085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000980 -T320230111111710408120210327WTT9@TPY022212212204398100000000120200118WTT#P#9#922212212204398100000000 -T12023011111171042522900409631120623111315300000000039003850020000000000000000000000000000000000222222000006242219012 -T2202301111117104251219770227WTT#9##WY1222222222222011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117104251219690312WTT9#BBBP1222221222222021212190035721011940000000000000000000000000000000000000000000000000000000000000249500000000000000000000 -T320230111111710425120100227WTT@W#Y0P12222222204305100000000120070907WT@W#W@WP12222222204308100000000 -T320230111111710425120160723WTT#Z00PP12222222204398100000000120140407WT@B@9PT012222222204302100000000 -T12023011111171042722000411282120523211152300000000100008880100000000000000000000000000000000000222222000000002229032 -T2202301111117104271219940121WT@B#WZ##2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117104271219890327WT@T0Z9TT2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111710427120150723WTTZ9ZZPY22222122204305200000000 -T320230111111710427120190723WTTT#Y@ZW22222112204398200000000120190723WTT9W0BYW22222112204398200000000 -T12023011111171046925900406651120213110611300000000076405280280000000000000000000000000000000000222222000000002229012 -T2202301111117104691219760307WT@#PYPBW2222212222225012210110590123010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111710469120100122WT@0YPPBT22222112204304100000000 -T12023011111171054922000403891120533110611300000000000005280040000000000000000000000000000000000222222000000002229022 -T2202301111117105492219980902WT@YYBT9P1222222222221012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117105492219940722WT@YYBT9P1222221222222022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111710549420150926WT@YYBT9P12222212204302900000000 -T320230111111710549120200418WTTYWTZYY12222222204398100000000120190523WT@@PP0BP12222212204398100000000 -T12023011111171056820800414151120233120000108360000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111117105683219930104WT@W@9ZW02222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000489300000000000000000000 -T320230111111710568120170312WTTY9WBY@22222112207398100000000 -T12023011111171059925900402831120233110516300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111117105993219670527WT@W@B9ZW2222212122225012216110095113069900000000000000000000000000000000000000000000000000000000000000000000001542000000000000 -T320230111111710599120140701WT@@PP#BB22222122206301100000050 -T12023011111171064822000409971110213110611300000000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111117106481219980114WTT#@#Y#B2122222222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111710648120220113WTTB0WP0W21222212204398100000000 -T12023011111171067820600409771120213110606300000000000005280500000000000000000000000000000000000222222000000002229012 -T2202301111117106781219880727WT@W@T@PY2222212222225012212110501023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111710678120150122WTTPTTP@922222122204301100000050 -T12023011111171074125900403551120312110740113300000000000010240000000000000000000000000000000000222222000000002229012 -T2202301111117107411220000127WT@P9PY@P1222212222221012213110213911011700210000000000000000000000000000000000000000000000000000040000125600000000000000000000 -T320230111111710741120210527WTTPW9WYP12222212204398100000000420160923WT@0P#09Z12222122104399109140000 -T12023011111171077921000404881120313110835300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111117107791219950114WTT@P9##B1212212222223012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111710779120190408WTTWB0BWB12122112204398100000000120140123WTTYB9Z9#12122112204301100000000 -T12023011111171087620600414251120523111199300000000000008880110000000000000000000000000000000000222222000000002229012 -T2202301111117108761219870923WT@0#09T@2222211222222011212290035721011935000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117108761219880524WT@9YWT0Y2222212222222021212290035723011800000000000000000000000000000000160002000000000000000000020000000000000000000000000000 -T320230111111710876120110404WTTWT09#022222112204305200000000 -T320230111111710876120210318WTT9999@Y22222122204398200000000120130323WT@@@TTB#22222112204304200000000 -T12023011111171091422000413731120213110598300000000020005280070000000000000000000000000000000000222222000000002229012 -T2202301111117109141219900411WTT@YP00W2211222222221012213110085223011800000000000000000000000000000000110000000000000000000000000000000000000000000000000000 -T320230111111710914120140327WT@WZB#0T22212212204301100000000 -T12023011111171095021700403821120233120000300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111117109503219600412WT@0WWZT#2222212222223012212110075311069936000000000000000000000000000000000000000000000000000000000000278200000000000000000000 -T320230111111710950120080423WTTYPZBP#22222112206306100000050 -T12023011111171100122000405841120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117110012219840107WTTYP@Z9P2222211222211012212110263413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111711001120050107WT@YZ#0#Y22222112204312100000000 -T12023011111171101425600412851120232110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117110142219810923WT@@ZY9@02222212222213012212120322813089900000000000000000000000000000000000000000000000000000000000000000000000000004200000000 -T320230111111711014120060707WTT##B0@Y22122212204310100000000 -T12023011111171110524200407271120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117111052219890312WTTB0B@#W2222212222213012211110461413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111711105120070512WT@BBW9PT22222112204308100000000 -T12023011111171111222000411972120422211019300000000001106540160000000000000000000000000000000000222222000000002229032 -T2202301111117111121219840701WT@PPTTYB2212222222222011214990174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117111121219840707WT@0@BZPW2212221222222021213990174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711112420200909WT@YBWT@@22122212104398109140000120140121WT@#0#9PP22122212204303900000000 -T12023011111171114724700406631120312110766300000000001406540650000000000000000000000000000000000222222000000002229072 -T2202301111117111471219850326WTTY@TP092212222222221012213210640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711147120210718WT@9YWZ9W22122112204398100000000120150223WT@#PYYW022122222204301100000050 -T12023011111171117023500410671120233110493300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111117111703219590707WTTY9@BZP2222212122212012211110293113069900000000000000000000000000000000000000000000000000000000000000000000000342059200000000 -T320230111111711170120050401WT@TTY0P@22222112206311100000050 -T12023011111171125825800405801120313110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111117112581219900714WTT0Y9@ZB1222212222225012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711258120110327WTT9Z9ZZZ12222112204304100000000120100921WTTB#0WTB12222122204306100000000 -T12023011111171141622600405051120233110516300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111117114162219800714WT@@0@W0B1222222122211012206110006013109900000000000000000000000000000000000000000000000000000000000000000000000227070700000000 -T320230111111711416120200712WT@BZ0Z@T12222212204398100000000 -T12023011111171155020200409311120212110611300000000010005280030000000000000000000000000000000000222222000000002229012 -T2202301111117115501219890113WT@W##@WZ2222212222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711550120060923WTTW#YW0#22222112204309100000000 -T12023011111171158421700406141120233110516300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111117115842219830427WTTTBY9TY2222212222213012211110570313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111711584120170223WT@B0TZ9Y22222112204398100000000 -T12023011111171170920400400211120333120000300000000000005280660000000000000000000000000000000000222222000000002229022 -T2202301111117117093219540113WTT#T@9BB2122222122225012214120006013069900000000000000000000000000000000000000000000000000000000000000000000002447000000000450 -T320230111111711709120120423WT@P@BP0@21222212206304100000000120100718WT@@ZZ@BT21222212206305100000050 -T12023011111171172222000412232120323210835300000000010006540080000000000000000000000000000000000222222000000002229032 -T2202301111117117221219860723WT@Z#P00W2222211222222011215290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117117221219870312WT@#TP#@B2222212222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711722120200413WT@9@YZWW22222122204398200000000 -T12023011111171180924100402401120213110611300000000000105280100000000000000000000000000000000000222222000000002229012 -T2202301111117118091220000712WTT9TTWY#1222212222223012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711809120210108WTTTP0@PZ12212212204398100000000 -T12023011111171181720600401561120333110706300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117118173219660705WTTW#YWZ@2222212222223012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711817120210323WT@WWZB@#22222112207398100000000120190327WT@9W9BBT22222122207398100000000 -T12023011111171183925900403711120533110670300000000000506540720000000000000000000000000000000000222222000000002229022 -T2202301111117118392219850307WTTBWBPTZ1222212222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117118392219810427WT@YYBT9P1222211222222022210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711839120050105WT@0BTWW#12222112204310100000000 -T320230111111711839120130712WTT@Y9YBT12222122204303100000000120090701WT@B90@PP12222122204307100000000 -T12023011111171184324700403422120323210835300000000060006540050000000000000000000000000000000000222222000000002229032 -T2202301111117118431219700223WTT#PZWW@2222211222222011214290065421011948000000000000000000000000000000000000000000000000000000000000500200000000000000000000 -T2202301111117118431219780323WT@W9#9#02222212222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711843120090713WT@YYZT#P22222122204306200000000 -T12023011111171184725900406841120213110611300000000000001520580000000000000000000000000000000218222122002601322219042 -T2202301111117118471219880718WT9TTTBY02122222222221012216120283223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111711847120180411WT@T#BY0Y11222222204398100000000 -T12023011111171185321000408061120212110611300000000050003160570000000000000000000000000000000211122222000000012219012 -T2202301111117118531219840713WT@@BZ0BZ2222212222221012214110560423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711853120130901WT@WZ@0#Z22222212204302100000012 -T12023011111171192825800402241120213110611300000000000003960050000000000000000000000000000000132222122000000002229042 -T2202301111117119281219680926WTT#P#ZTT2122221222225012212120006023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111711928120060108WT@Y#@9ZP21222222204310100000000 -T12023011111171192922000405841120323110766300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111117119291219890411WTTTPP#@Y2222212222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117119291219880411WT@9TPY9W2222211222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711929120140718WTTTW#PTW22222112204302200000000 -T12023011111171195423300410111120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117119543219600721WT@P09YBB2222212122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000900000000000000 -T320230111111711954120060123WTTB9BT#Z22222122206307100000120 -T12023011111171195820800405141120313110835300000000000006540350000000000000000000000000000000000222222000000002229012 -T2202301111117119581219870311WT@T9YP992122222222223012213110471323010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111711958120150222WTTPBY@#021222222204301100000000120090202WTTTYZYZ@21222212204306100000000 -T12023011111171201120800411601120213110557300000000000003780650000000000000000000000000000000000222222000001502219072 -T2202301111117120111219720204WTTY@T0PZ2222212222225012216110660021011821000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111712011120140108WTT@WYWB#22222112204302100000000 -T12023011111171233025200407302120213210611300000000000005280100000000000000000000000000000000000222222000000002229032 -T2202301111117123301219970402WT@9TPY9W2222212222221012211210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111712330120190722WT@9TPY9W22222122204398200000000 -T12023011111171251622000410051120313110835118330000000006540450000000000000000000000000000000000222222000000002229012 -T2202301111117125161219840107WTT9TB0Z@1222222222221012216120461423010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111712516120180901WT@#9T9YB12212212204398100000000120060412WTTP0TBB@12222222204309100000000 -T12023011111171256024700405831120313110766300000000080006540050000000000000000000000000000000000222222000000002229012 -T2202301111117125601219830413WTTW##0PY2222212222223012214210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111712560120160702WTT9YBT0022222122204398200000000120080113WT@PT#Z9#22222112204308200000000 -T12023011111171260822600405051120312110740300000000002406540990000000000000000000000000000000000222222000000002229072 -T2202301111117126081219690512WTTBZP9TW2222212222225012216110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111712608120110423WTT0YTTYP12222122204305100000667120090701WT@TY0YY022222122204307100000648 -T12023011111171264222000402322120523211188300000000010008250040000000000000000000000000000000000222222000000632219032 -T2202301111117126421219900113WT@9TPY9W1222222222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117126421219840321WT@9TPY9W2222221222222021216290055521011804000000000000000000000000000000000000000000000000000000000000025000000000000000000000 -T320230111111712642120090423WT@9TPY9W12222212204307200000000 -T320230111111712642120180412WT@9TPY9W12222212204398200000000120150318WT@9TPY9W12222212204301200000000 -T12023011111171267822000413731120312110835300000000111606540110000000000035001000000000000000000222222000000002229012 -T2202301111117126781219850304WTT0BPZPW2221222222225012213110124823011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111712678120200304WTTY0ZBTZ22212212204398100000000120120104WTTPP9TBY22212222204305100000000 -T12023011111171275622000405841120823111691300000000000000330120000000000000000000000000000000000222222000012562219012 -T2202301111117127561219850311WTTZ9ZBZP2212221222222011212290134721011800210000000000000000000000000000070001000000000000000000080000125500000000000000000000 -T2202301111117127561219850711WT@@#TT@@2212222222222021212290134721011800210000000000000000000000000000070001000000000000000000080000125500000000000000000000 -T320230111111712756120090127WTTZ##B9T22122222204398200000000120070309WT@B@@0Y#22122212204398200000000 -T320230111111712756120130927WT@@W9T@022122222204398200000000120110312WT@B09B0P22122212204398200000000 -T320230111111712756120190214WTT@#0ZP#22122212204398200000000120170112WTT99#YTW22122222204398200000000 -T12023011111171277025100407671120413110939130140000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111117127701219950227WT@PT@TZ@2222212222223012216110362421011721000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111712770120160907WTTWB#@ZT22222122204398100000000 -T320230111111712770120200313WTT@PW9@022222122204398100000000120170126WTTTPBT@922222112204398100000000 -T12023011111171292822000406191120333120000300000000000005280400000000000000000000000000000000000222222000000002229022 -T2202301111117129283219630322WTTB#@#TT2222212222222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111712928120190727WTT9YTT9922222212206398100000000120180124WTTP9WW0@22222212206398100000000 -T12023011111171293623500410671120323110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117129361219960318WT@9TPY9W2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117129361219960418WT@9TPY9W2222212222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111712936120190926WT@9TPY9W22222122204398200000000 -T12023011111171308620800414151110313110740300000000000001890010000000000000000000000000000000000222222000000002229012 -T2202301111117130861219850326WT@P09TZ#2222212222223012214110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713086120170513WT@0WZZY@22222112204398100000000120110921WT@W9#@0922222112204305100000000 -T12023011111171309823700414331120213110618300000000000005280170000000000035002000000000000000000222222000000002229012 -T2202301111117130981219830114WTTY#WB0W1222221222221012209110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000001363 -T320230111111713098120070523WT@ZY0@PW12222222204309100000000 -T12023011111171313120800414651110332110740300000000000000850310000000000000000000000000000000000222222000004432219021 -T2202301111117131312219730707WTTBWZ9BY2221222222211012212110293113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111713131120150407WTT0BZZ#B22212212204398100000000120100213WTTZ#9P0Z22212222204306100000000 -T12023011111171316524600401451120233120000300000000600004170470000000000000000000000000000000000222222000000002229022 -T2202301111117131655219510712WT@@@#@T02222212122225012214110006011109921000000000000000000000000000000000000000000000000000000000000157600000886000000000000 -T320230111111713165120060304WTTZBT0P022222112209309100000000 -T12023011111171318622000407411120532110969300000000023406540050000000000000000000000000000000000222222000000002229022 -T2202301111117131862219850126WT@0PTTWB2212222222222012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713186120100327WT@9WTZBB22122212204306100000000420090218WT@ZBB#0@22122212204308100000000 -T320230111111713186120160414WTTWYT@B922122222204398100000000120120307WT@ZP0Y0T22122212204301100000000 -T12023011111171318724900404261120212110611300000000020505280090000000000000000000000000000000000222222000000002229012 -T2202301111117131871220010224WTTYZ#0TB1222212222221012212110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713187120220111WT@YTB99P22222112204398100000000 -T12023011111171330425900406841120432110846300000000000006540700000000000000000000000000000000000222222000000002229022 -T2202301111117133043219830418WT@0ZZBWT2122222222222012212110411913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111713304120090322WT@TB9W0921222212207304100000000 -T320230111111713304120140404WTTW#0Z9T21222222207398100000000120110723WTT@P9BZW21222212207302100000000 -T12023011111171339821700407751120213110611105420000000505280120000000000000000000000000000000000222222000000002229012 -T2202301111117133981219920704WTTPBZBW@1222211222222012212110154521011800210000000000000000000000000000010000000000000000000000000000000000000000000000000000 -T320230111111713398120140407WT@TP#B#W12222122204301100000000 -T12023011111171340921000411361120233110281300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117134093219510912WT@900Y#Y2222211122224012213110006013129900000000000000000000000000000000000000000000000000000000000000000000002129000000001164 -T320230111111713409120050118WT@P#B@#Y22222122206311100000000 -T12023011111171343622000412691120213110376300000000000004170100000000000000000000000000000000000222122000000002229012 -T2202301111117134361220000726WTT9TBP#02221222222221012212120114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713436120220707WT@TZ@90@22212212204398100000000 -T12023011111171345524100405611120232120000300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111117134553219780914WT@YWYYTB2222211222222012216110840011069922000000000000000000000000000000000000000000000000000000000000147900000000000000000000 -T320230111111713455120070909WTTYWPPZ#22222112207309100000000 -T12023011111171346824700408301120113110376300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111117134681219980405WT@W0TBWT2222212222221013212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111171353623700414331110513111009300000000000006110010000000000070001000000000000000000222222000000002229012 -T2202301111117135361219860502WTT@YY9YW2221222222225012216110431722011700000000000000200000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111117135365220040712WT@0@TZWP2221221222211043212190006013069900000000000000000000000000000000000000000000000000000000000000000000000000157900000000 -T320230111111713536120070907WT@90YP9W22212212204310100000000 -T320230111111713536120180411WTTWW9Y#W22212212204398100000000420090312WT@WWB9T022212212104307106610000 -T12023011111171356622000413731120233110306300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111117135662219750427WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713566120070404WTTZPT#PY12222222204306100000000 -T12023011111171365022000413731120523111211300000000000007730050000000000000000000000000000000000222222000000002229012 -T2202301111117136501219820409WT@#WY0TP2222122222221011216190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117136501219820708WTT0Y##991122221222221011216190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713650120080312WTT@9Y09@21222212204307100000000 -T320230111111713650120150702WT@@PBP9911222212204398100000000120100421WT@Y09ZT@11222212204306100000000 -T12023011111171365920600414831120312110811111470000000006540700000000000000000000000000000000000222222000000002229072 -T2202301111117136591219940111WTTWP@0ZZ2222212222221012212110610023011800000000000000000000000000000000160001000000000000000000000000000000000000000000000000 -T320230111111713659120200104WT@TBZPZ@22222122204398100000000120170105WTT#WZBYT22222122204398100000000 -T12023011111171366722000404841120312110766300000000000006540330000000000000000000000000000000000222222000000002229072 -T2202301111117136671219870126WT@Z#T#9P2221222222221012211121150023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713667120130904WT@YYZ0P#22212222204303100000000120040102WT@P@PBTY22212222204310100000000 -T12023011111171367824700409381120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117136782219730323WT@9##ZT91222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111713678120070926WT@YT0@@W12222212204308100000000 -T12023011111171368024200408571120323110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117136801219930118WT@09#TB#2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117136801219810422WT@@P0T992222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713680120150413WTTB@YYPY22222112204398200000000 -T12023011111171399722000410051120313110835120890000000006540440000000000000000000000000000000000222222000000002229012 -T2202301111117139971219940723WTT0WT@TY2221222222221012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111713997120210323WT@9#Y##022212212204398100000000120130314WT@90W0PW22212222204301100000000 -T12023011111171400420800411931120212110611300000000000003160060000000000000000000000000000000211122222000000012219072 -T2202301111117140041219840918WT@#TBTPY2222212222223012212110690023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714004120190313WT@YPWWY022222112204398100000000 -T12023011111171407722000405842120213210611300000000200004170040000000000000000000000000000000000222222000000002229032 -T2202301111117140775219930923WT@TYTYZ02222221222222013214290006011069947000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117140771219980112WT@BZP9W92222222222222023214290045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111171415924200402981120213110618300000000156605280020000000000000000000000000000000000222222000000002229012 -T2202301111117141591219770422WTTT0@@@02222212222224012216110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714159120050105WTTPW999#22222122204312100000000 -T12023011111171417825000406021120212110576300000000050002770680000000000000000000000000000000000222222000002512219072 -T2202301111117141781219770305WTTZZ9PY02122222222221012212111070023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000014 -T320230111111714178120090214WTT@TWB#W21222222204307100000286 -T12023011111171421322000407241120333120000300000000000005280200000000000000000000000000000000000222222000000002229022 -T2202301111117142133219520512WT@0999T02222211122222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001801000000000324 -T320230111111714213120220112WT@9TPY9W22222222206398100000000120050912WT@Z9ZZY922212112206311100000000 -T12023011111171423024500410691120733111186300000000000008880930000000000000000000000000000000000222222000000002229022 -T2202301111117142302219840304WT@YYBT9P1222222222221012211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117142302219810301WT@YYBT9P1222221222221102201990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714230120070926WT@B@@BPT12222212204308100000000 -T320230111111714230120120308WTT0PT9B#12222222204301100000000120100901WT@YW9#W012222222204305100000000 -T320230111111714230120210402WTT#9BB@B12222222204398100000000120190313WTT#@P@WZ12222222204398100000000 -T12023011111171430322000411131120212110516300000000000002500210000000000000000000000000000000166122222000000012219072 -T2202301111117143031219860408WTTBZP#PY2221222222221012211110960023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714303520070526WT@PWZ@9W22212212104310109140000 -T12023011111171434920800411931120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111117143493219690701WT@ZB9@9P1222212222225012216110006011069937000000000000000000000000000000000000000000000000000000000000347300000000000000000000 -T320230111111714349120220912WT@9@@T@012222112206398100000000 -T12023011111171443623500408281120313110786300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111117144361219720427WT@ZBP00B2222212222223012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714436120120327WT@WB@TZP22222122204303200000000120060907WT@9TPY9W22222112204310200000000 -T12023011111171446825900402631120313110855300000000000006540910000000000000000000000000000000000222222000000002229072 -T2202301111117144681219880723WT@ZZZT9W2222212222223012212110930023010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111714468120180201WT@ZPYPZ#22222122204398100000000120100518WT@ZB#WTP22222122204307100000100 -T12023011111171446925200409361120213110611300000000000004030130000000000000000000000000000000000222222000001252219012 -T2202301111117144691219880112WTT0TZ0@02222212222225012212110144621011807000000000000000000000000000000000000000000000000000000000000025000000000000000000000 -T320230111111714469120170304WTTTY9#WB22222112204398100000000 -T12023011111171451122000412971120213110598300000000002005280160000000000000000000000000000000000222222000000002229012 -T2202301111117145111219930426WT@ZTPTWZ2221222222221012212120114923010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111714511120160327WTTZB00YB22212212204398100000000 -T12023011111171451623500411471120213110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111117145161219960714WT@0900902222122222221012211110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714516120190205WTT#Y9W0Y12221212204398100000000 -T12023011111171456224700403421120213110533300000000076802860080000000000000000000000000000000000222222000002422219012 -T2202301111117145621219900701WT@#WZ#BP2222212222223012212210095121011816000000000000000000000000000000000000000000000000000000000000096500000000000000000000 -T320230111111714562120100123WT@90P0BY22222122204306200000000 -T12023011111171464024200414851120213110611300000000000005280020000000000000000000000000000000000222222000000002229042 -T2202301111117146401219870913WTTB@P@TB2221222222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714640120090414WT@YPP9#P22212222204307100000000 -T12023011111171469024700405901110213110251300000000000004420320000000000000000000000000000000132222221000000002229012 -T2202301111117146901219840911WTTT#9Y@@2222212222221012212120570323010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714690120120727WTTP0YWTB22222122204305100000000 -T12023011111171476022000403351120232110516300000000000004170730000000000000000000000000000000000222222000000002229022 -T2202301111117147602219670509WTT0ZTW@02221222222211012211111550013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111714760120080509WT@TZWYZP22212212204307100000000 -T12023011111171482220600414771120512111116300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111117148222219920126WTT9Z9BYW2122222222212012212110124811089920000000000000000000000000000000000000000000000000000000000000124600000000091400000000 -T2202301111117148221219890527WT@@T0#BT2122221222222022212190610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714822120110404WTT@#T0TY21222222204305100000051 -T320230111111714822120180318WTT909WY#21222222204398100000000420130327WT@T09@0T21222212104302109000103 -T12023011111171494322000400461120412110965300000000000004620380000000000000000000000000000000308122222000000012219072 -T2202301111117149431219880408WTT9B0@0Z2221222222221012212110980021011974000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714943120080723WTTW9ZT9922212222204308100000000 -T320230111111714943120160908WT@B0B9BW22212222204398100000000120120918WT@YYYPYY22212222204303100000000 -T12023011111171494924200404891120212110611300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111117149491219980713WT@B#Z@WB2222212222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111714949120200705WT@Z9YBW922212222204398100000000 -T12023011111171498623500411471120233110516300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111117149863219600127WT@Z@YY9#2222212122223012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000982000000000000 -T320230111111714986120050418WTTYPZTWT12222222206310100000000 -T12023011111171504424200410211120213110611300000000000005280130000000000000000000000000000000000222222000000002229072 -T2202301111117150441219840704WT@WY00P#2222212222223012208110760021011931000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715044120120109WT@TP#ZTB22222122204303100000050 -T12023011111171508722000400921120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111117150871219740113WTTT099WW2222122222221012214910164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715087120150321WT@Y@YP9922222122204398100000000 -T12023011111171513222000407241120212110606300000000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111117151321219920704WT@YW#99B2222212222221012211110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715132120160407WTT@#WYW022222112204398100000000 -T12023011111171520622000410051120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111117152061219870213WTT00YB9Z2222212222222011212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117152061219820707WT@@@TPBW2222211222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715206120160914WT@WYYPB#22222122204398200000000120130127WT@P0#PYP22222112204301200000000 -T12023011111171526122000402371120513111136300000000001208880020000000000000000000000000000000000222222000000002229012 -T2202301111117152611219830727WT@Y0##091222222222221012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715261120090709WT@@99P0912222212204307100000000120070909WT@9TBZZY12222222204309100000000 -T320230111111715261120180426WTTYTB@Z912222222204398100000175120150309WTT@W9YWW12222222204398100000175 -T12023011111171528823900408291120233110516300000000000004170920000000000000000000000000000000000222222000000002229022 -T2202301111117152883219440414WTTYZ0#9Y2122222122224012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000913000012000300 -T320230111111715288120090127WT@0B0TYP11222222206307100000000 -T12023011111171530020600404491120313110766300000000000006540220000000000000000000000000000000000222222000000002229012 -T2202301111117153001219900923WTTW09T#T2222212222223012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715300120190723WTTP##WZZ22222112204398100000000120080924WT@PT#T9W22222122204308100000000 -T12023011111171533023500404531120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111117153302219650421WT@99##WW2221221222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111715330120150113WTTP9Z00Z22212222204301100000000 -T12023011111171538822000407961120313110829122450000035004770110000000000000000000000000000000000222222000001772219012 -T2202301111117153881219890123WT@9@Z@#Y2222212222221012213110124821011812000000000000000000000000000000000000000000000000000000000000070500000000000000000000 -T320230111111715388120170327WT@W0WYPP22222112204398100000039120150405WT@PWBW9Z22222112204301100000039 -T12023011111171541825900402831110213110611300000000000002550010000000000000000000000000000000000222222000000002229012 -T2202301111117154181220000901WT@YZBY#@1222222222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715418120210926WTT9999#T12222212204398100000000 -T12023011111171551524700409381120313110786300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111117155151219870126WTT@WZYYT2222212222223012213210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715515120150312WTTBYZW0B22222112204398200000000120100426WTTPB9PYZ22222122204306200000000 -T12023011111171554825900403711120313120000300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111117155481219990327WT@PZP#W01222212222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117155482220010301WT@YYBT9P1222221222221102212990006011079930000000000000000000000000000000000000000000000000000000000000206400000000000000000000 -T320230111111715548120180718WT@YWT0YP12222112204398100000000 -T12023011111171564425900402831120233110516300000000000004170960000000000000000000000000000000000222222000000002229022 -T2202301111117156442219790211WT@ZY0#WZ2222211222211012212110105013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111715644120080113WT@WW#9@#12222122204308100000050 -T12023011111171575722900412051120523111199300000000065008880040000000000070004000000000000000000222222000000002229012 -T2202301111117157571219860727WT@BZ0PW#1222222222222011213190055523011800000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T2202301111117157571219850726WTT#@#TYP2122221222222021212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715757120100407WTTT09T@Z11222212204306100000000 -T320230111111715757120190711WT@PWZPT#11222222204398100000000120150402WT@B0#Z0Z11222212204302100000000 -T12023011111171576020800410781120323110766300000000000006540060000000000070003000000000000000000222222000000002229012 -T2202301111117157601219850127WTTTY0#BY2222121222222011212190035723011800000000000000000000000000000000000000000000000000000000350000000000000000000000000000 -T2202301111117157601219850222WT@9TPY9W2222122222222021212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715760120210413WT@Z@TYWW22221212204398100000000 -T12023011111171581322000400591120332110557300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117158132219780412WT@ZTWYBW1222222222221012216910362411079903000000000000000000000000000000000000000000000000000000000000014500000000000000000000 -T320230111111715813120140904WTT@Z090#12222222204303100000000120130918WTTZZ#0#B12222222204304100000000 -T12023011111171583824200403511120512111116300000000000008880510000000000000000000000000000000000222222000000002229012 -T2202301111117158381219850411WTT0W9PB@2122222222225012213110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111715838120090201WT@ZZ@0PT21222222204308100000000120060302WT@W0W9YZ21222212204310100000000 -T320230111111715838120130214WTT#B@W#@21222222204304100000202120110209WT@0ZZT0Z21222222204306100000202 -T12023011111171590024200410711120213110611112270000000005280400000000000000000000000000000000000222222000000002229012 -T2202301111117159001219870404WT@##Y#Z02222212222221012210110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000001282 -T320230111111715900120200427WT@09090@22222112204398100000000 -T12023011111171604922000413731120113110376300000000000004170080000000000000000000000000000000000222222000000002229012 -T2202301111117160491219980711WT@Y@#YZY2221222222221013216190095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111171613224700409321110233120000106580000000001610760000000000000000000000000000000000222222000002562219021 -T2202301111117161325219890718WTTW@9#@T2222212222223012216110006013069900000000000000000000000000000000000000000000000000000000000000304300000000000000000000 -T320230111111716132120140901WT@@P#BBB22222112209303100000050 -T12023011111171628024200414721120212110611300000000000005280530000000000000000000000000000000000222222000000002229012 -T2202301111117162801219940305WTTW@TZ#91221222222221012212110540623011400000000000000000000000000000000000000000000000000000000340000000000000000000000001188 -T320230111111716280120160713WTTZT@T@P12212222204398100000000 -T12023011111171632222000412231120233110516300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111117163222219910726WT@BT@PB92122221222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111716322120120102WTTW90T#@21222222204302100000000 -T12023011111171635120600402131120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117163513219550314WT@WP@#YT2222221122225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000002024000000002634 -T320230111111716351120090126WTTT#9#@T22222122206306100000000 -T12023011111171636123500407611120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117163612219750209WT@ZY#W0W2222212222215012210110194113089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111716361120060901WT@0#ZBBZ22222122204310100000008 -T12023011111171645820300410341120313110773300000000000006540580000000000000000000000000000000000222222000000002229012 -T2202301111117164581219910401WT@PY#B@P2222212222221012216110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000687 -T320230111111716458120190707WT@TB9@@Z22222112204398100000050120150407WTT0@W00P22222122204398100000050 -T12023011111171647921400408021120713111199300000000100008880090000000000000000000000000000000000222222000000002229012 -T2202301111117164791219940301WTTW0@#0@1222222222221012212210154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117164792219860401WT@YYBT9P1222221222221102208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111716479120090318WT@#ZWWZ#12222222204306100000000 -T320230111111716479120160323WTTTY#WW@12222122204398100000000120140307WT@090WBT12222222204301100000000 -T320230111111716479120230418WTTB@0#Z912222122204398100000000120200912WTT@Z@00Z12222122204398100000000 -T12023011111171648924200403941120213110611300000000085805280500000000000000000000000000000000000222222000000002229012 -T2202301111117164891219750313WTT9PZP#@2212222222225012207210501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111716489120170721WT@999@#Z22122212204398100000000 -T12023011111171658825600412851120413111034300000000000004620300000000000000000000000000000000308122222000000012219012 -T2202301111117165881219900514WTT9Y0@YT2222212222223012212110312923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111716588120090222WTT99B99Z22222112204306100000000 -T320230111111716588120190201WT@#BZB@912222212204398100000000120120312WTT#BBZPT22222112204302100000000 -T12023011111171661524500405781120613111100300000000000009640190000000000000000000000000000000000222222004400002229012 -T2202301111117166151219910708WT@@@B0002222212222222012216110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111716615120140427WTT#WB9W@22222112204302100000000 -T320230111111716615120180123WT@0ZYBZT22222112204398100000000120160427WTT0Z9B0922222112204398100000000 -T320230111111716615120220709WT@0WZB#@22222112204398100000000120210427WTTZ9@TY022222122204398100000000 -T12023011111171662624100402401120233110516300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111117166262219850704WTT0YBTBT1222222222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111716626120220907WTT@@W@WW12222222204398100000000 -T12023011111171666322000406191120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117166631219910424WT@@9TTBZ2222212222221012213110184223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111716663120220121WT@@ZT0W922222222204398100000000 -T12023011111171667623500405981120312110766300000000000004360110000000000000000000000000000000000222222000000002229012 -T2202301111117166761219670701WTTTYT9Y#2222212222224012212210124823011800000000000000000000000000000000100002000000000000000000060000000000000000000000000000 -T320230111111716676120070423WTTZPBBZP22222122204309200000000520040423WTT0@B#WT22222212204311200000218 -T12023011111171670923500410671110423110376300000000000000420010000000000000000000000000000000000222222000000002229012 -T2202301111117167092219920423WT@WYPYY92222211222222011214290006013051800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117167091219980411WT@9TPY9W2222212222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111716709120200926WT@9TPY9W22222122204398200000000120190401WT@9TPY9W22222112204398200000000 -T12023011111171680422000404691120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111117168043219630509WTTTZ0YBW1222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002777 -T320230111111716804120040305WTT9PT@BT22222212206311100000000 -T12023011111171700024700406701120512111057300000000000008880180000000000000000000000000000000000222222000000002229072 -T2202301111117170001219770421WT@Z9YT@02122222222221012213110950023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717000120110222WT@0W099B11222222207305100000000120050726WTT9BTZYZ21222212204310100000000 -T320230111111717000120150123WTTB0#ZZT22222222207301100000000120120907WTTYP#WYB22222222207304100000000 -T12023011111171705125200407301120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117170511220010326WT@#T@ZP@2222212222221012209110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717051120200327WT@BZPZZ022222112204398100000000 -T12023011111171712622000408891120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117171263219770409WT@YPPZ#Z2222212222222012213110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717126120130701WT@W#9TT#22212212206301100000000 -T12023011111171715422700401571110233120000300000000000002820010000000000000000000000000000000000222222000000002229021 -T2202301111117171543219570501WT@99WWW#2222211112225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001477000000001525 -T320230111111717154120220904WT@9TPY9W22222122206398100000000 -T12023011111171719024200403461120233110493300000000000004170840000000000000000000000000000000000222222000000002229022 -T2202301111117171903219610727WT@B0BTP#2222212122225012212110283213069900000000000000000000000000000000000000000000000000000000000000000000001032000000000000 -T320230111111717190120120412WTTZWW#W@22222112206304100000000 -T12023011111171722225000406021110632110740300000000290005280040000000000000000000000000000000000222222000000002229021 -T2202301111117172222219860705WT@YYBT9P1222222222222012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117172222219880723WT@YYBT9P1222211222222022202990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717222120210227WTTTT#@YW12222222204398100000000120160704WT@WBT09@12222222204301100000000 -T320230111111717222420140318WTT0TP9Y#12222212104301108340000420090327WT@YYBT9P12222212204307900000000 -T12023011111171726025900402831120213110598112250000000505280090000000000000000000000000000000000222222000000002229012 -T2202301111117172601219980208WT@@9ZT#Y2222212222221012210110105023010100000000000000000000000000000000000000000000060000000000010000000000000000000000000000 -T320230111111717260120220112WT@9Z9#P#22222112204398100000000 -T12023011111171737322600405051120333120000108620000000005280560000000000000000000000000000000000222222000000002229022 -T2202301111117173733219760712WT@@Z#T@@2222212222225012212110194113069900000000000000000000000000000000000000000000000000000000000000225300000000000000000000 -T320230111111717373120170912WT@Z@#99B22222112206398100000050120140214WT@@YW#B@22222122206302100000000 -T12023011111171742822000413731120333120000300000000347904170270000000000000000000000000000000000222222000000002229022 -T2202301111117174282219800209WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117174282219760114WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000075 -T320230111111717428120100426WT@ZWBZW@12222112204307100000000 -T12023011111171745024700408361120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111117174503219850118WTT@@YWY@2222212222221012212120580213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717450120220113WT@9TPY9W21222222207398100000000 -T12023011111171746420600404121120213110611300000000000004320100000000000000000000000000000000000222222000000962219012 -T2202301111117174641219820904WT@TPP@TB2222212222225012213110114923011400000000000000000000000000000000000000000000000000000000000000038300000000000000000000 -T320230111111717464120180114WTTZYYW@B22222122204398100000000 -T12023011111171747824100410041120113110348300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111117174781219960518WTTB9909W1222212222221013213190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111171752923700414331120322110778300000000025006540030000000000000000000000000000000000222222000000002229012 -T2202301111117175291219990422WTTWWP9@W1222221222221011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117175291220000521WTTY@ZPYP1222212222221011216190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717529120210426WTT#PY9BT12222112204398100000000 -T12023011111171757223500408281120113110376300000000017904170020000000000000000000000000000000000222222000000002229012 -T2202301111117175721219960723WTT000@0T1222212222221013216190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111171757423500408281120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111117175741219930307WT@9W#T002222212222221012215210055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717574120220414WT@PP9#Y#22222112204398200000000 -T12023011111171767123500404532110423210939300000000000000950010000000000000000000000000000000000222222000000002229032 -T2202301111117176711220010523WT@9TPY9W2222212222222011209290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117176711219920113WTTBWZW0P2222211222222021211290025821011823000000000000000000000000000000000000000000000000000000000000139700000000000000000000 -T320230111111717671120190713WT@9TPY9W22222112204398200000000120170701WT@9TPY9W22222112204398200000000 -T12023011111171786020600402141120433110906300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111117178603219830523WT@9W#0YZ2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717860420050905WTT@0YZB022222112105310108220000 -T320230111111717860120220211WT@9TPY9W22222122209398100000000420080722WT@0WZYY922222112205308100000000 -T12023011111171795522000402181120213110611300000000051805280130000000000000000000000000000000000222222000000002229012 -T2202301111117179551219850705WTTZTB#ZP2222212222224012216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717955120150301WT@#PBP0012122122204398100000000 -T12023011111171796124200404701120523111219300000000000008880150000000000000000000000000000000000222222000000002229012 -T2202301111117179611219790201WT@0@9Y0P2222122222222011216110144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117179611219650409WT@#@0B0Z2222121222222021212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111717961120100705WT@YZ#BTZ22221222204306100000000 -T320230111111717961120170126WT@W99YYZ22221212204398100000000120140923WT@9WZP0#22221222204302100000000 -T12023011111171800524200414851120323110835300000000000806540560000000000000000000000000000000000222222000000002229072 -T2202301111117180051219910907WT@T0B#T92222212222221011216110730023011800000000000000000000000000000000090000000000000000000000200000000000000000000000001203 -T2202301111117180051219670127WT@@T#P@@2222211222221011213190194123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111718005120180423WTTP0BTY#22222112204398100000000 -T12023011111171807124200407271110313110780300000000000002760010000000000000000000000000000000000222222000000002229012 -T2202301111117180711219910513WT@#PY0@92222212222221012211110025821011803000000000000000000000000000000000000000000000000000000000000024000000000000000000000 -T320230111111718071120190412WT@@P0PYW12212112204398100000000420140122WT@#0PT9#12212112104302106090000 -T12023011111171812725600400661120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111117181271219800502WT@T#P#W#2222211222225012212110134723011700000000000000000000000000260000000000000000000000000000000000000000000000000000000000 -T320230111111718127120180427WTT0@9PW@22222122204398100000000 -T12023011111171813722000408811120412110947300000000000007710490000000000000000000000000000000000222222000000002229072 -T2202301111117181371219910323WTTW0Y9Y92222122222221012216120860023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111718137120110404WT@#9#Z0#22222222204305100000000 -T320230111111718137120180309WT@Z0@@@Z22221212204398100000000120150118WT@YBYWZ@22221212204398100000000 -T12023011111171817822000411981120233120000300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111117181785219700405WTT9TTYPB2222211222222012298110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000900 -T320230111111718178120080318WTTT9#ZZ922222122208307100000000 -T12023011111171818523500410671120323110766300000000150006540040000000000000000000000000000000000222222000000002229012 -T2202301111117181851219830912WTTB0P@YW2222212222222011212290055523011800000000000000000002000000000000000000000000000000000000190000000000000000000000000000 -T2202301111117181851219800705WTTWWPWY92222211222222021216290055523011800000000000000000002000000000000000000000000000000000000250000000000000000000000000000 -T320230111111718185120150111WT@T@ZT#T22222122204301200000000 -T12023011111171820121000408061120232110560300000000060005280120000000000000000000000000000000000222222000000002229022 -T2202301111117182011220020127WT@Y9#TWT2221222122221012216110134723109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111111718201120220212WTT@@@@P#22222112204398100000000 -T12023011111171823025200412491120213110611300000000567805280320000000000000000000000000000000000222222000000002229012 -T2202301111117182301219690912WTT9W@TYP2222211222225012213110332723011400000000000000000000000000000000000000000000000000000000450000000000000000000000000025 -T320230111111718230120050107WT@YTWT0Z22222112204310100000000 -T12023011111171845724700413761120212110611114720000000003160290000000000000000000000000000000211122222000000012219012 -T2202301111117184571220000723WTT0900@T2222212222221012207110303023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111718457120200211WT@#Z9YY@22222112204398100000000 -T12023011111171851020600414871120313110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111117185101219820323WT@ZZZTT02222212222223012213110045623010900000000000000000001000000000000000000000000000000000000090000000000000000000000000000 -T320230111111718510120140304WTTBBT9B#22222122204302100000000120130926WTTYYP9Y#22222122204304100000000 -T12023011111171854621000403301120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117185463219810904WTT9@BB9@2222211222222012211120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000894 -T320230111111718546120220309WT@9TPY9W22222122209398100000000 -T12023011111171857720800409831120213110598300000000000005280680000000000000000000000000000000000222222000000002229072 -T2202301111117185771219680326WTTZZ@PBP2222212222225012211110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111718577120050704WT@T00@0#12222122204310100000000 -T12023011111171873422000411551120312110791300000000000006540520000000000000000000000000000000000222222000000002229012 -T2202301111117187341219970501WTTPWB09T2222212222221012210110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111718734120220309WT@9TPY9W22222122204398100000000120150309WTTB0PYYB22222112204398100000000 -T12023011111171877920600407032120723211485300000000000006990290000000000000000000000000000000466122222000000002229032 -T2202301111117187791219980309WTTBP#9YW2222122222221011211990114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117187791219960711WTT#@Z0BW2222121222221011212990114921011940000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111718779120160226WTT@PY#PB22221212204398100000000 -T320230111111718779120200309WTT#@P0@Z22221212204398100000000120170412WTTBZ@P@922221222204398100000000 -T320230111111718779120220104WT@T9WWYB22221212204398100000000120210707WTTW@T@@T12221212204398100000000 -T12023011111171883224200410531120313110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117188321219860302WTT##Z#@B2222212222224012216910105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111718832120080904WT@9@Z@##22222112204307900000000120050904WT@9BW9TP22222122204311200000000 -T12023011111171890424700405901120233120000300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111117189043219750902WTTPWW@@Z2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000012500000000000000000000 -T320230111111718904120170701WT@PPT@#T22222122209398100000000 -T12023011111171897622900409631120322110835300000000025003920340000000000000000000000000000000261122222000000012219012 -T2202301111117189761219780318WT@#W#@PY2222211222225011212190312923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117189761219790223WTTYB90ZT2222212222225011210110441623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111718976120110901WT@9090WY22222112204306100000000 -T12023011111171900024200407271120232110493300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111117190002219860327WT@ZB#Y@T2221222222211012212120075313089900000000000000000000000000000000000000000000000000000000000000000000000000089400000000 -T320230111111719000120170223WT@00@P#@22212212204398100000000 -T12023011111171904620800411931120212110599300000000000003160430000000000000000000000000000000211122222000000012219012 -T2202301111117190461219820104WTT@@TP#P2122221222221012216110491123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111719046120120321WT@BWTWT#21222212204303100000000 -T12023011111171908424200407271120412110957300000000000007320110000000000070023000000000000000000222222003800012219072 -T2202301111117190841219820913WT@WBP9@@1221212222221012212111660023011800000000000000000000000000000000290000000000000000000000040000000000000000000000000000 -T320230111111719084120040923WTTWTB09P22212212204311100000050 -T320230111111719084120160123WTTW0Y90022212122204301100000000120070707WTT@ZZ90022212122204309100000112 -T12023011111171919420800410751120333120000300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111117191943219720704WTTZTBY9T2222212122222012212110015913069900000000000000000000000000000000000000000000000000000000000000000000000483000000000000 -T320230111111719194120100418WT@T#9#Z022222112206398100000000120100418WT@Y9PP#022222112206306100000000 -T12023011111171922624700409321120213110598300000000000005280350000000000000000000000000000000000222222000000002229012 -T2202301111117192261219910311WT@9YWWP#2222212222221012211110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111719226120170104WT@BZ9@B#22222122204398100000000 -T12023011111171931125900402831120213110376300000000000003160070000000000000000000000000000000211122222000000012219012 -T2202301111117193111219880926WT@9@Y9#Y2222212222221012212110194123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111719311120140307WTT0#ZBT#12222112204302100000000 -T12023011111171934521700406141120323110766300000000000005880200000000000000000000000000000000000222222006500012219012 -T2202301111117193451219830722WTT0#9W@Y1222212222221011213190481223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117193451219780714WTTYP#YP@2222211222221011216190233723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111719345120190526WTT9WPZB022222112204398100000000 -T12023011111171966622000403351120333120000143860000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111117196663219670422WT@Y09P##2221222222221012298110006013079900000000000000000000000000000000000000000000000000000000000000832500000000000000000000 -T320230111111719666120210113WTT0B#09Y22212222206398100000000120190109WTT0@B@P022212222206398100000000 -T12023011111171978822000409971120712111480300000000000008880870000000000000000000000000000000000222222000000002229072 -T2202301111117197881219760124WT@ZT0ZTB2221222222223012209120880023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111719788120070921WT@Z00ZBB22212222204309100000000420060411WTT#W9@9B22212212104310108220000 -T320230111111719788120110323WT@PP9TYP22212212204304100000000120080712WT@0@#PZY22212212204307100000000 -T320230111111719788420180227WTTYW@09T22212212104398108220000120150404WT@@YW#0022212222204301100000000 -T12023011111171984923700414331120212110611300000000000005280490000000000000000000000000000000000222222000000002229012 -T2202301111117198491219860918WTTW0T99@2222212222223012212110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111719849120060121WT@0WBP#Z22222122204310100000107 -T12023011111171993824200409732120423210939300000000100007710050000000000000000000000000000000000222222000000002229032 -T2202301111117199381219810412WT@WBB0BP2222211222222011215290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117199381219860701WTTZBYT9Z2222212222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111719938120160713WT@ZBPWBW22222122204398200000000120150507WT@P#PWZB22222122204301200000000 -T12023011111172001022000408891120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117200102219760413WT@0Y9WW#1222212222211012209110253513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111720010120160427WTT@TY#WP12222222204398100000000120140127WTT9ZPB0W12222222204301100000000 -T12023011111172001525200400391120233110493300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111117200155219680312WTT#9PWB@2222212122221012214110006013109900000000000000000000000000000000000000000000000000000000000000000000001338000000000000 -T320230111111720015120070308WT@B#P9@Z22222112209309100000000 -T12023011111172003720800410751120213110611300000000000005280920000000000000000000000000000000000222222000000002229072 -T2202301111117200371219820904WTTP#B9Z92122222222225012212111440023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111720037120070927WT@YP9W0021222212204310100000000 -T12023011111172012124200407271120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117201211219790412WTTZBWZT@2222122222223012213110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111720121120180412WTTP#B@@B22221212204398100000000 -T12023011111172031425900402721120313110835300000000000003920640000000000000000000000000000000261122222000000012219072 -T2202301111117203141219810727WTTBYZ0Z#2222212222223012216110650023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111720314120080512WT@Y@9ZP912222122204308100000000120070123WTTTPW@W912222112204309100000000 -T12023011111172033120300401381120513111021300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111117203311219920712WT@#BBBBW2222212222221012216110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111720331120140721WTTP#9W0T22222122204398100000000120120923WT@YPWWBP22222112204303100000000 -T320230111111720331120220427WT@@YZTY922222122204398100000000120180704WTTBWBT0Z22222112204398100000000 -T12023011111172037722000410381120212110516300000000578004170080000000000000000000000000000000000222222000000002229012 -T2202301111117203771219780323WT@BP@@BB2221222222225012216120095123010900000000000000000000000000000000100000000000000000000000020000000000000000000000000000 -T320230111111720377520190404WTTB900ZW22212212104398109140000 -T12023011111172041421700406141120312110740300000000340204290230000000000000000000000000000000000222222000002252219012 -T2202301111117204141219830907WT@0Y0#WW2222212222223012212110243621011815000000000000000000000000000000000000000000000000000000010000089600000000000000000000 -T320230111111720414120210913WTTTWZ@0T22222122204398100000000120200705WTT##@99Z22222112204398100000000 -T12023011111172054525800404101120213110559300000000000705280420000000000070001000000000000000000222222000000002229042 -T2202301111117205451219970426WT@909B9P2222212222221012209110382223011400000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111720545120190711WT@B90B@Z22212212204398100000000 -T12023011111172063025600414971120233120000300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111117206305219820526WTT#WWW902222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111720630120110923WTTYYTZ@922222112209303100000000 -T12023011111172067524200409091120213110611300000000022305280050000000000000000000000000000000000222222000000002229012 -T2202301111117206751220010318WTTP9W@0Z2221222222223012213110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111720675120220726WT@Z0ZW0#22212222204398100000000 -T12023011111172069125600414551120412110981300000000000007710170000000000000000000000000000000000222222000000002229012 -T2202301111117206911219960204WTTW9#ZB92222212222223012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111720691120160707WTTYT@T@#22212212204398100000000 -T320230111111720691120190427WT@0Y#W@@22222122204398100000000120170318WT@Y#PWTW22222112204398100000000 -T12023011111172070624700409321120213110557300000000000005280200000000000000000000000000000000000222222000000002229072 -T2202301111117207061219860121WTTTZ90##2222212222221012211111080023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111720706120050326WT@B#W9PW22222112204310100000000 -T12023011111172072523500408281120233120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111117207253219460404WT@YY0B#@2222212122224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000003430000000000000 -T320230111111720725120080412WTTZW9@BT22222122207308100000000 -T12023011111172079024200408571120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117207903219580112WT@W9WZ9#2222212122222012298110006013069900000000000000000000000000000000000000000000000000000000000000035400002560000000000000 -T320230111111720790120050923WT@TT09YZ22212122206310100000000 -T12023011111172104422700408491110213110611300000000000002950010000000000000000000000000000000000222222000000002229012 -T2202301111117210441219760904WT@Y900YZ2222212222221012202110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721044520050701WTTB@Y#ZT22222122104311103240000 -T12023011111172104722000413732120323210835300000000000004790040000000000000000000000000000000000222222000001752219032 -T2202301111117210471219920421WTTBW9#BY2222221222222011207290055521011810000000000000000000000000000000000000000000000000000000000000035000000000000000000000 -T2202301111117210471219940704WTT#0@YB@2222222222222021209290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721047120110923WTTBY9Z0@22222222204305200000000 -T12023011111172110624700408361110313110376128090000589901260040000000000000000000000000000000000222222000007622219012 -T2202301111117211061219840402WT@Y@Y@#T2222212222222012212120124823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721106120190109WTT0WBBZ912222122204398100000000120190109WTTBB90#B12222122204398100000000 -T12023011111172114522000408892120423211034300000000000007710060000000000000000000000000000000000222222000000002229032 -T2202301111117211451219890304WTT#0W@TB2222212222221011214210035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117211451219920102WTTP0ZBYB2222211222221011212290006021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721145120220118WTTBT#00W22222212204398100000000120060407WTT#TWB@W22222122204310200000000 -T12023011111172114723500408281120213110611117460000012505280200000000000000000000000000000000000222222000000002229012 -T2202301111117211471219890323WTTY@ZB002222212222221012212120213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721147120200711WT@WBYB0Z22222122204398100000000 -T12023011111172117525900402721120313110835300000000280406540400000000000000000000000000000000000222222000000002229012 -T2202301111117211751219780122WT@T09#9Z1222212222221012212210095121011825000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721175120080218WT@0Z#PPP12222122204309100000000120050226WT@Y0TW9012222112204312100000000 -T12023011111172122423900408801120312110766300000000000006540140000000000000000000000000000000000222222000000002229072 -T2202301111117212241219870312WT@Z0W90W2222212222221012209110720023011800000000000000000000000000000000000000150000000000000000000000000000000000000000000000 -T320230111111721224120210126WT@0Y9TBW22222122204398100000000120080424WT@P9Y0#022221112204307100000000 -T12023011111172135125200407301120213110531300000000000003160130000000000000000000000000000000211122222000000012219012 -T2202301111117213511219980708WT@Y9B9@W2122222222221012212110144623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000045 -T320230111111721351120200126WT@WZ9@9P21222212204398100000000 -T12023011111172138224200410211120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111117213823219620901WTT0YWT#T2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721382120130512WTTYT9BW#22221222208303100000000 -T12023011111172145822900405641120213110598300000000005005280990000000000000000000000000000000000222222000000002229072 -T2202301111117214581219710911WTTT0ZPW#2222212222223012212111390023011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111721458120050102WTT@TW@@Y22222122204309100000000 -T12023011111172160723500407611120212110611300000000000505280750000000000000000000000000000000000222222000000002229072 -T2202301111117216071219810723WTT#09Z@#2222212222221012208110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721607120060423WTTYPPPYY22222122204309100000000 -T12023011111172165622700408351120213110618300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111117216561219910111WT@#Y@P0#1222212222221012211110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721656120090404WT@BPY99P12222222204307100000000 -T12023011111172175024700405901120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117217503219700724WTTYWP0Y@2222211122221012208110085213069900000000000000000000000000000000000000000000000000000000000000000000000958000000000000 -T320230111111721750120080321WTTBTZ0W#22222112206303100000000 -T12023011111172177622000403531120212110493300000000011304170450000000000000000000000000000000000222222000000002229072 -T2202301111117217761219740922WT@@90ZP92222222222225012206111700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721776520080923WT@PBY#TB22222212104308109140000 -T12023011111172177822000409971120232120000300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111117217783219630107WT@0T@ZZW2221222222222012212110144611069901000000000000000000000000000000000000000000000000000000000000116500000000000000000000 -T320230111111721778120150105WT@ZZ@@YP22212222206398100000050 -T12023011111172178323800413801120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111117217831219800327WTTYBTBT91122222222221012213110213923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721783120220226WTTZTZPWP11222212204398100000000 -T12023011111172185224200403431120213120000300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111117218521220020727WT@YP90P02222122222221012216110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111721852120220204WTTBB0B9Y22221222204398100000000 -T12023011111172190222700408351120333110740300000000000005280590000000000000000000000000000000000222222000000002229022 -T2202301111117219023219700718WTTZYZ#9B2221222122213012214110580213069900000000000000000000000000000000000000000000000000000000000000000000000570036400000000 -T320230111111721902120180318WTT9BZY0B22212212206398100000000120140105WTTPTBP@B22212222206301100000000 -T12023011111172204523900400641110312110776300000000001005260070000000000080001000000000000000000222222000000362219012 -T2202301111117220451219840705WTT0YW@PY2222212222225012216110342622011900000000000000300003000000000000000000000000000000000000030000000000000000000000000212 -T320230111111722045120100414WTTWW#@@W22222122204307100000050120080718WTT0BWYZ922222122204308100000000 -T12023011111172209422000412231120212110611300000000011505280440000000000000000000000000000000000222222000000002229012 -T2202301111117220941219730321WTTT@0TBT2222212222221012213110451523011400000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T320230111111722094120140218WTTWY@TWZ22212212204302100000000 -T12023011111172210024700408301120212110611114720000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111117221001219790702WT@BWW0ZY2222211222221012211110253523011800000000000000000000000000000000000000000000110001000000060000000000000000000000000000 -T320230111111722100120170122WTTBP@09B12222122204398100000000 -T12023011111172222323700414331120313110766300000000000006540410000000000000000000000000000000000222222000000002229012 -T2202301111117222231219950924WT@B@0@901222222222221012210110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111722223120160324WTTWZBT#Y12222222204398100000000120140723WTT90P0Z912222222204302100000000 -T12023011111172224125900402631110213110611108160000000003910010000000000000000000000000000000000222222000000002229012 -T2202301111117222411220010101WTT@090@T1222222222221012211210194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111722241120200524WT9TT9Z9Y12222222204398100000000 -T12023011111172225120600400871120213110598300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111117222511219970727WT@B@B99Z2222212222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111722251120190518WT@Z#009T22222122204398100000000 -T12023011111172234022700413181120733111021300000000000005280520000000000000000000000000000000000222222000000002229022 -T2202301111117223402219880304WT@YYBT9P1222222222221012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117223402219790712WT@YYBT9P1222221222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111722340420060312WT@YYBT9P12222212204309900000000 -T320230111111722340120080312WTT9YW0#B12222212204307100000000420080312WTTBZBZ0#12222212104307108340000 -T320230111111722340120220701WT@TWZ@B@12222222204398100000000420140122WT@ZW9YYW12222222104302108340000 -T12023011111172244024700409322120232210611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117224403219590405WTTBB90TT2222122222223012208920312913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111722440120130213WT@#T#WPZ22221222206303900000000 -T12023011111172280420600414161110233110301300000000000000260060000000000000000000000000000000000222222000003912219021 -T2202301111117228042219950418WTT@@T@B#2122222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111722804120230405WT@PTB0P#22222122204398100000000 -T12023011111172284125000403231120533111116300000000000007710040000000000000000000000000000000000222222000000002229022 -T2202301111117228413219650324WTTW@PWWT2222212222222012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111722841120180212WT@0TY0TY22222112206398100000000120160113WTTW0@#T@22222122206398100000000 -T320230111111722841120210427WT@TT0@0B22222112206398100000000120180212WT@Y90WPP22222112206398100000000 -T12023011111172299620600406751120333110704300000000000005280760000000000000000000000000000000000222222000000002229022 -T2202301111117229963219760421WTTWW9Z0Y2222212122222012213110075311069922000000000000000000000000000000000000000000000000000000000000161500001123000000000000 -T320230111111722996120100904WTT99ZTPW22222122207305100000000120070118WTTY00P9Z22222112207309100000000 -T12023011111172305322700413181120412110939300000000000006540510000000000000000000000000000000000222222000000002229072 -T2202301111117230531219800301WTT#BWYP02222212222222012210191350023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117230532219800926WTT9YPZWP2222211222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111723053120080407WTTBW#Y9Y22222122204307100000000120060313WTTPW9ZP@22222122204307100000000 -T12023011111172312825900402831120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111117231281219660112WTT@PTPBB1222212222222012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111723128120060707WT@9TPWWP22222112204310100000000 -T12023011111172323520600401981120333110740300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111117232353219680401WTT@WZY9Y2221222222222012213110006011069915000000000000000000000000000000000000000000000000000000000000195900000000000000000000 -T320230111111723235120150911WT@@TZPZ922212212209302100000000120150902WT@WPBP0B22212212207302100000000 -T12023011111172330325900402831120233110516300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111117233032219880905WTT#P#0@W1222212222215012212110015913089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111723303120100301WTTZPWB0P12222112204304100000000 -T12023011111172330922000413691120333110376300000000000001540070000000000000000000000000000000000222222000002632219022 -T2202301111117233092219850901WT@YYBT9P1222222222221012210910006011079924000000000000000000000000000000000000000000000000000000000000100000000000000000000000 -T320230111111723309120200912WTTZ@@TW012222212204398100000000420100127WT@YYBT9P22222212204305900000000 -T12023011111172335022000411981120413111054300000000000001510020000000000000000000000000000000000222222000000002229012 -T2202301111117233501219870421WT@W0#YYP2222212222223012209110035721011816000000000000000000000000000000000000000000000000000000000000123900000000000000000000 -T320230111111723350120070721WT@0TZ#TT22222112204309100000000 -T320230111111723350120210323WTT9@@BWZ22222122204398100000000120090412WTT##0#YT22222122204308100000000 -T12023011111172338723500411471120313110835117460000003606540080000000000035005000000000000000000222222000000002229012 -T2202301111117233871219920713WTT@P#TBY2222212222221012216110095123011700000000000000000000000000240000000000000000000000000000040000000000000000000000000000 -T320230111111723387120200927WTT0ZTPP922212222204398100000000120170312WT@#ZTBT#22212222204398100000000 -T12023011111172339924700405831120312110682300000000000006540560000000000000000000000000000000000222222000000002229012 -T2202301111117233991219890209WT@WWW9YT2222212222221012210110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111723399120220407WTTZB@YPP22222112204398100000000120150421WT@0Y@YB022222122204301100000000 -T12023011111172344921000405411120312110835300000000000006540320000000000000000000000000000000000222222000000002229012 -T2202301111117234491219870918WT@WZW#0@2122221222225012213110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111723449120150926WT@WBWW#B21222222204398100000000120130114WTTTB@YBP21222212204302100000000 -T12023011111172353523500407161120613111395300000000006010090590000000000000000000000000000000000222222000000002229072 -T2202301111117235351219830227WT@9Y@PZ92222212222221012212110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111723535120140418WT@B#BT0W22222122204302100000000 -T320230111111723535120170504WT@Y0ZY#@22222122204398100000000120150923WTTYPBW#B22222112204301100000000 -T320230111111723535120220912WTT90P@9922222122204398100000000120210104WT@@BT0P022222122204398100000000 -T12023011111172366722000408341120413110959300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111117236671219860723WT@9TPY9W2222212222222012214210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111723667120100126WT@9TPY9W22222112204306200000000 -T320230111111723667120120707WT@9TPY9W22222112204304200000000120110112WT@9TPY9W22222122204305200000000 -T12023011111172369225900402831120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111117236923219740126WT@90@@T01222212222222012206210174313069900000000000000000000000000000000000000000000000000000000000000270700000000000000000000 -T320230111111723692120100924WTT@@P@0@12222212206305100000000 -T12023011111172376024700401281120313110835300000000000005900060000000000000000000000000000000000222222000000642219012 -T2202301111117237601219830726WT@@0@ZYP2222212222225012213110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111723760120180307WTT#0@0@#22222112204398100000000120170501WT@YP990022222122204398100000000 -T12023011111172378124200414721120213110337300000000000002640780000000000000000000000000000000211122222005200012219072 -T2202301111117237811219910923WT@#W99#P2221222222221012211110790023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111723781120140723WTTPYZY#022212212204302100000000 -T12023011111172394222000406211120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111117239421219960304WTTB0@0#P2222122222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111172427624700409321120433111034300000000000004170070000000000000000000000000000000000222222000003542219022 -T2202301111117242762219950204WT@YYBT9P1222211222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117242762219920712WT@YYBT9P1222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111724276120220412WT@ZZWZPT12222112204398100000000420120304WT@YYBT9P12222112204302900000000 -T12023011111172429121000411361120333110822300000000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111117242913219620121WTT0PZTBT2222222222224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111724291120110323WT@90##TP22222222206303100000000120100427WTTZZ9#TP22222222206305100000000 -T12023011111172431925900406651120232110446300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117243193219660404WTTTZ@YBY2122222222221012212110750013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T320230111111724319120070704WTTY#Z0ZY21222212206308100000000 -T12023011111172433520400400211120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111117243355219880126WT@@9B9#Z2212222222221012213110006011069940000000000000000000000000000000000000000000000000000000000000670100000000000000000000 -T320230111111724335120170227WT@99Z@BY22222112208398100000000 -T12023011111172469422000400921120233110470300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111117246943219830222WT@YZYTZY2122222222223012212110006011069926000000000000000000000000000000000000000000000000000000000000240000000000000000000000 -T320230111111724694120200711WTT9PP0WP21222222208398100000000 -T12023011111172470025900403711120313110835300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111117247001219990213WT@TPTPT91222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111724700120210701WTTWBPB#P22222112204398100000000120190704WTTP0PYTZ22222112204398100000000 -T12023011111172477725800405801120233120000116550000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111117247775219860402WTTY@999B2122221222221012212110006011069942000000000000000000000000000000000000000000000000000000000000341400000000000000000175 -T320230111111724777120180318WT@YT99Y022222212209398100000000 -T12023011111172494624700413931110433120000300000000000005480010000000000000000000000000000000000222222000000002229021 -T2202301111117249463219900427WTT#YB9ZY2222212222222012215120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111724946120080423WT@#@PPY#22212112207308100000000 -T320230111111724946120180223WTTP@BB9B22212122207398100000000120130212WT@@9@@Z922212122207303100000000 -T12023011111172498022000406271120212110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111117249801219970123WTT#PBT@02222212222221012212110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111724980120220912WT@PP@WWZ22222112204398100000000 -T12023011111172499125600414551120233120000300000000120004170470000000000000000000000000000000000222222000000002229022 -T2202301111117249913219580312WT@P9BWT@2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002042000000000926 -T320230111111724991120120914WTT0ZYTP022222122206304100000000 -T12023011111172516625900414481120233110493300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111117251663219630926WTT0B9T9@1222212222225012201210006011069914000000000000000000000000000000000000000000000000000000000000102400000000000000000000 -T320230111111725166120090721WT@W0B#9P12222222207307100000000 -T12023011111172524620600403591120212110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111117252461219970221WT@#@9#WY2222212222221012212110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111725246120220427WTT9W##PZ22222122204398100000000 -T12023011111172528422000405841120313110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111117252841220010904WT@9TPY9W1222222222221012205210045623011800000000000000000004000000000000000000000000000000000000140000000000000000000000000000 -T320230111111725284120210927WT@9TPY9W12222222204398200000000120160704WT@9TPY9W12222222204398200000000 -T12023011111172538520800411931110213110516300000000000001360010000000000000000000000000000000000222222000000002229012 -T2202301111117253851219900421WTTZYW#W@2222211222221012216110085221011930000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111725385120140712WTTPT9@YP22222112204302100000000 -T12023011111172546322000410051120213110598300000000000005280900000000000000000000000000000000000222222000000002229072 -T2202301111117254631219930309WTTY0YZ9Y2222212222221012212110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111725463120130911WT@Y##@#W22222112204302100000000 -T12023011111172550925200410591120333110670300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111117255093219850411WTT9T9PPB1222211222223012212110095113069900000000000000000000000000000000000000000000000000000000000000086000000000000000000000 -T320230111111725509120200913WTTP0YW@@12222112207398100000000120130307WT@Y9W#ZZ12222112207302100000000 -T12023011111172551124700413761120213110598118330000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111117255111219880402WT@ZW9BB02222212222225012215110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111725511120200911WTT00Z@Y022222112204398100000000 -T12023011111172553722700406181120432110835300000000222406540030000000000000000000000000000000000222222000000002229022 -T2202301111117255372219780104WT@YYBT9P1222212222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111725537120050211WT@YYYYBT12222122204311100000000 -T320230111111725537120160318WTTW0B0@Y12222122204398100000000120060912WTTZW#ZB#12222112204311100000000 -T12023011111172561320800414151120213110598300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111117256131219860722WT@YYT@#W1222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111725613120210901WTTT9#Z#Z22222112204398100000000 -T12023011111172596322000413731120312110755300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111117259631219890727WTTB@ZZZY2221222222221012211110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111725963120210112WTT0PY#@Z22212212204398100000000120180711WTTPPTY9B22212212204398100000000 -T12023011111172599520300412371120233110611300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111117259953219730102WT@BPT9WB2222212222225012212110372313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111725995120180727WT9TT@#0T22222122206398100000000 -T12023011111172601425900402121120213110611300000000000005280080000000000000000000000000000000000222222000000002229072 -T2202301111117260141219870707WTT9@ZTT02222212222225012212110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726014120110126WT@0B9Y9Y22222112204304100000050 -T12023011111172609222700413181120513110939300000000050008880250000000000000000000000000000000000222222000000002229012 -T2202301111117260921219970114WT@P099YB2222212222223012211110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726092120200526WTTZP9PP922222122204398100000000120160124WT@WZT9TT22222112204398100000000 -T320230111111726092120230412WTT#ZZ0PP22222122204398100000000120210927WTTPPWWZZ22222122204398100000000 -T12023011111172611224700401281120233110470300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111117261123219770102WT@@T@@W02222212222221012216110322813069900000000000000000000000000000000000000000000000000000000000000321200000000000000000000 -T320230111111726112120140904WT@0W@YPT22222112207301100000000 -T12023011111172638424700406701120233110611104320000068404170060000000000000000000000000000000000222222000000002229022 -T2202301111117263842219930523WTTBZBPP#2222212222211012213110006013089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111726384120180914WTT9#PPW#21222222204398100000000 -T12023011111172643622700408351120423110939300000000000003920120000000000000000000000000000000261122222000000012219012 -T2202301111117264361219870912WTTB00Y#Y1222211222225011212190114923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117264361219920201WT@#90#PZ2222212222225011212190114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726436120210514WTTBW0WBZ12222112204398100000000420070721WTT00YY@Y12222112109308109140000 -T12023011111172652622000407091120213110611300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111117265261219960222WTTWB9TYB2222212222221012216110055523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111726526120150407WTTYTYB@W22212112204302100000000 -T12023011111172655920600414771120723111490300000000075011650040000000000000000000000000000000000222222000000002229012 -T2202301111117265591219830423WT@YTTYTP2221221222222011207190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117265591219880423WT@90BP@@2221222222222021206290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726559120070518WTTWT9PBW22212222204307200000000 -T320230111111726559120130305WTTZWZ99B22212222204302200000000120110512WT@0#9BT#22212212204302200000000 -T320230111111726559120200723WT@B@B#0W22212212204398100000000120180123WTTTTZTW922222222204398100000000 -T12023011111172656722000414462120323210729300000000000006540130000000000000000000000000000000000222222000000002229032 -T2202301111117265671219950722WTT@0Z0Y#2222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117265671219930701WTTTYW#YT2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726567120210312WT@T0@WTY22222112204398200000000 -T12023011111172658320400408271110233110516300000000000001610010000000000000000000000000000000000222222000000002229021 -T2202301111117265833219880427WT@TZTZ0T2222212222221012212110006011069910000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111726583120080108WTTYW0W@B22222212207309100000000 -T12023011111172659124200414851120213110376300000000002403160470000000000000000000000000000000211122222000000012219012 -T2202301111117265911219690105WT@T0T#WY2222212222221012212110481223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726591120080113WTTPZTTTW22222122204307100000000 -T12023011111172665420600414161120633111199300000000000008880050000000000000000000000000000000000222222000000002229022 -T2202301111117266542219840421WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726654120060902WT@#B9##012222212204310100000000 -T320230111111726654120100922WT@PPTY0912222222204306100000000120070313WT@WTBY@Z12222222204308100000000 -T320230111111726654120130326WTTZ#ZWZ912222212204302100000000120110907WTTZTZWTB12222212204305100000000 -T12023011111172673124700413891120412110939300000000005407710650000000000000000000000000000000000222222000000002229072 -T2202301111117267311219990718WT@WZ#WZT2222212222221012212110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726731120150701WTTB@Y9@Z22222122204398100000100 -T320230111111726731120210713WT@Y0@PZY22222112204398100000000120180105WTT9TPP@022222112204398100000000 -T12023011111172677922000407961120213110618300000000117105280020000000000000000000000000000000000222222000000002229012 -T2202301111117267791219870213WT@@TY@T92222212222225012214210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726779120080112WT@#B@@YZ22222112204307200000000 -T12023011111172679121700406141120213110516300000000052004170260000000000000000000000000000000000222222000000002229072 -T2202301111117267911219850112WT@BWWZ0#2222211222221012213110660023011400000000000000000000000000000000000000000000000000000000330000000000000000000000000000 -T320230111111726791520090209WT@ZPWZ0Z22222112104307108220000 -T12023011111172680224200410531120823111480300000000000012890080000000000000000000000000000000000222222000000002229012 -T2202301111117268021219720308WT@0PZW#P2222121222222011205290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117268021219870512WT@P9ZBZ92222122222222021204290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726802120080512WTT0P9WPZ22221222204309200000000120060512WTTZTPWZT22221212204310200000000 -T320230111111726802120110222WT@BT#PPZ22221222204304200000000120090712WT@#Z#W0B22221222204307200000000 -T320230111111726802120170721WT@BP@9Y#22221212204398200000000120140512WT@Y9PPBZ22221212204303200000000 -T12023011111172685320600406751120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111117268531219910311WTT@9T0@#2222211222221011216190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117268531219900318WTTBT#TWP2222212222221011212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111726853120140112WT@9Z90TP22222122204398100000000120120923WT@0PZ0PW22222112204304100000000 -T12023011111172689120500413621120423110939300000000000006430150000000000070002000000000000000000222222007700512219012 -T2202301111117268911219890213WTTY#@TBB2222212222222011212110441623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117268911219940112WTTBZ0WBP1222211222222021207190095121011804000000000000000000000000000000000000000000000000000000000000020100000000000000000000 -T320230111111726891120090509WTT0PBPZP22222112204308100000000120070707WTTB@9##Z22222122204309100000000 -T12023011111172714521000408061120232110516300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111117271452219890426WTTW@WB#92121212222211012209110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111727145120180505WT@YYYT0W21212122204398100000000 -T12023011111172720922000414462120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111117272091219880227WTT9W@Y0Z2212221222222011214290006022011900000000000000210002000000000000120002000000000000000000030000000000000000000000000000 -T2202301111117272091219960727WTTZT0WPW2212221222222021216290006022011900000000000000210002000000000000120002000000000000000000030000000000000000000000000000 -T320230111111727209120220927WTTY0YZT022122212204398200000000120200921WTT@Z@ZZB22122212204398200000000 -T12023011111172729723500411471120423110516300000000000004620130000000000000000000000000000000308122222000000012219072 -T2202301111117272971219840113WTT#TZ00Y2222212222222011212110610023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117272971219840709WT@@@P#W@2222211222222021211190283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727297120130123WT@WWW@@Z22222122204302100000000120060927WTTW09YTZ22222122204309100000000 -T12023011111172735622000404841120623111286300000000000010090140000000000000000000000000000000000222222000000002229012 -T2202301111117273561219730112WT@PBZWY#2212221222222011209290154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117273561219740705WT@#@PPB02212222222222021298290154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727356120070904WTTB9PBW022122212204309200000000120050904WT@T@PYY#22122222204312200000000 -T320230111111727356120120701WTTYYWB0Z22122212204303200000000120110112WTTYY0ZZP22122222204305200000000 -T12023011111172735724200414351110213110611300000000000004760010000000000000000000000000000000000222222000000002229012 -T2202301111117273571220030121WT@B9T9W91122222222221012210110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727357120200921WTTTZB0@921222212204398100000000 -T12023011111172741725000409431120233110516300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111117274173219680326WTT#@09Z92222212222215012209120045613069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111727417120170907WT@B@0Z0Y21222222206398100000000 -T12023011111172744222100410902120133210243300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111117274425219780702WT@P@TBBY2222211122215013211110293113109900000000000000000000000000000000000000000000000000000000000000000000000528040600000000 -T12023011111172744824200414351120513111116107030000000005320170000000000000000000000000000000355122222000000012219012 -T2202301111117274481219910913WT@#9#@ZB2222212222221012211110352521011742000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727448120120214WTTBW#YW912222112204303100000000120110426WTTBPPP@@12222112204304100000000 -T320230111111727448120220408WT@09#9WT22222212204398100000000120180227WT@#W##TW12222112204398100000000 -T12023011111172752120600402131120213120000300000000000003160310000000000000000000000000000000211122222000000012219012 -T2202301111117275211219850505WTT#YYWPZ2222212222223012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727521120100918WTT@9WB0P22222122204305100000100 -T12023011111172756125900406081120313110818300000000000003920520000000000035004000000000000000261122222000000012219042 -T2202301111117275611219920302WT@WW@BTT1222222222221012210110134723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727561120160527WT@@0YB#012222112204398100000000120150413WTTBB9@0012222112204301100000000 -T12023011111172789823500404821120323110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111117278981219890107WTTYWT@902222211222222011212990035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117278981219890701WTTZZZT9P2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727898120180123WT@YTY#0B22222122204398200000000 -T12023011111172790424700408301120213110611300000000000005280100000000000000000000000000000000000222222000000002229072 -T2202301111117279041219860126WT@B#PBWT2222212222225012210110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727904120050127WT@TY9Z@#22222112204309100000000 -T12023011111172794125900402121110513110376300000000000003430010000000000000000000000000000000000222222000000002229012 -T2202301111117279411219830718WTTYB0YZY2122221222223012209110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111727941120090108WT@ZW0WZZ21222212104307109140000120070723WT@BT9P0W21222212104309109140000 -T320230111111727941120160121WTTBZP@@P21222212104398109140000120150314WTTWT##WP21222212104398109140000 -T12023011111172799320600402141120233110516300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111117279932219850214WTTT@00BB2222212222215012212110263413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111727993120070318WTTYW@0PZ22222122204308100000000 -T12023011111172801322000402371120333110740300000000000002370210000000000000000000000000000000000222222000001802219022 -T2202301111117280132219580402WTT9@ZYY92222211222215012214110680013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111728013120070412WT@9ZZYP@22212212204308100000180420060413WT@Z0@BZ@22212212104309107540180 -T12023011111172806924600406061120232120000300000000000004170710000000000000000000000000000000000222222000000002229022 -T2202301111117280693219550324WT@Y@0@BY2222211122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001317000000004672 -T320230111111728069120070412WTT9ZZPP912222112206308100000587 -T12023011111172835923500402291120512111211300000000000007710130000000000000000000000000000000000222222000000002229012 -T2202301111117283591219830121WTT@@T9BP2222222222225012216110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111728359120070412WTT#@ZY9T22222212204310100000000120050707WTTPZ@90W21222222204311100000000 -T320230111111728359120220927WTTB9WW9#22222222204398100000000420130408WT@BPZP9T22222122104302106390000 -T12023011111172856724700406741120333110670300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111117285672220040901WT@P@BBYT2222212222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111728567120220408WTT@@ZWP@22222112204398100000000120190105WT@#TP0YB22222112204398100000000 -T12023011111172860422700401571120413110959300000000000006540510000000000000000000000000000000000222222000000002229012 -T2202301111117286042219890721WT@0ZYYBB2212222222212012211110114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111117286041219930127WTT0BBZP@2222211222222022210190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111728604120180326WT@9TBZ0022222122204398100000146120180326WT@9PBB#Y22222122204398100000146 -T12023011111172860724700401281120313110835300000000000003920160000000000000000000000000000000261122222000000012219012 -T2202301111117286071219830427WT@00BT#Y2222212222223012212110174323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111728607120070721WT@@T90WT22222112204309100000000120060423WT@#ZPBT022222112204310100000000 -T12023011111172864223500410672120313210835300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111117286421219870712WT@9TPY9W2222212222222012214210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111728642120200413WT@9TPY9W22222112204398200000000120130523WT@9TPY9W22222112204303200000000 -T12023011111172868825200410591120213110598300000000020005280100000000000000000000000000000000000222222000000002229012 -T2202301111117286881219900322WTT9P@90#2222212222223012212110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111728688120220526WT@PBPWWY22222112204398100000000 -T12023011111172871925100402211110523111009300000000008304870030000000000000000000000000000000000222222000001832219012 -T2202301111117287191219770912WT@T#W0PT2222211222225011211190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117287191219850423WT@Y@Z09P2222212222221011213110243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000065 -T320230111111728719120100323WTT##0@#922222122204305100000193 -T320230111111728719120210307WT@B@PT#Y22222112204398100000000120200701WTTTY#P@@22222112204398100000000 -T12023011111172874722000409021120213110611300000000200005280050000000000070003000000000000000000222222000000002229012 -T2202301111117287471219890526WTTW@TBZB2122222222223012216110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111728747120170907WT@PP@W0P21222212204398100000000 -T12023011111172878025200410591120432110939300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111117287803219730908WTTWBB@ZW2222212222211012208111230013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111728780420050913WTTYP0YZB22222122204310100000000 -T320230111111728780120190314WT@P@PWYT12222122208398100000000420160713WTTTYWZZZ22222122204398100000413 -T12023011111172879624100402401120233110624300000000000003760250000000000000000000000000000000000222222000000412219022 -T2202301111117287963219380423WT@9Y99WB1222212122214012205110065413069900000000000000000000000000000000000000000000000000000000000000000000000712022200000000 -T320230111111728796120090411WT@9#BP0012222212206301100000000 -T12023011111172881122700413181120213110576300000000000003160770000000000000000000000000000000211122222000000012219072 -T2202301111117288111219920412WT@PZZW@92222212222221012212110780023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111728811120170923WTTW0YTBY22222122204398100000000 -T12023011111172888220300412371120233110516300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111117288823219630227WT@##Y0T#2222211222223012212110006011069924000000000000000000000000000000000000000000000000000000000000146400000000000000000000 -T320230111111728882120110407WTT@@0YTY22222112207305100000000 -T12023011111172892022000411282120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111117289201219740912WT@W@B0002222211222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117289201219790712WT@090@PT2222212222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111728920120100412WTTWY0T@#22222122204308200000000 -T12023011111172893920600408321120213110516300000000100904170060000000000000000000000000000000000222222000000002229012 -T2202301111117289391219860726WT@#W@W@T2222211222225012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111728939520090713WTTWB#@0@22222112104306108220000 -T12023011111172913720600401981120233110516300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111117291373219540113WT@YT#TBT2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001916000000000334 -T320230111111729137120130501WTTPWY90P22222112206302100000000 -T12023011111172924423500411471120312110835113200000000006540140000000000035010000000000000000000222222000000002229012 -T2202301111117292441219830118WT@P9ZZY#2222212222223012214110372323011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111729244120210904WTTT@9BZ#22222112204398100000000120070313WT@##YPBT22222122204308100000000 -T12023011111172926024200403511120313110740300000000010003920370000000000000000000000000000000261122222000000012219012 -T2202301111117292601219840922WT@@T0ZW02222212222225012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111729260120110511WT@ZBZYPP12222122204305100000000120090102WTTBBTT0Z12222112204307100000000 -T12023011111172930621700406141120623111339300000000005010090460000000000000000000000000000000000222222000000002229072 -T2202301111117293061219810927WTTY9YB992222211222221011212190352523011800000000000000000000000000000000150001000000000000000000080000000000000000000000000000 -T2202301111117293061219800323WTTPY0@Y@2222212222225011213110930023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111729306120160105WTTY#YWB022222122204398100000000120130518WT@W#B@9W22222112209304100000000 -T320230111111729306120190712WTT#9099B22222122204398100000000120180712WT@W#BPZ#22222122204398100000000 -T12023011111172944922700408351120333120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117294493219820121WTT99BP092222212222222012213110006011069931000000000000000000000000000000000000000000000000000000000000290800000000000000000000 -T320230111111729449120090523WTT@9B9Z#12222112207307100000000520070109WTT@TB@W912222112107308109140000 -T12023011111172956120800410751120433110956300000000000006540200000000000000000000000000000000000222222000000002229022 -T2202301111117295613219890418WTTB0BP@B2222212222221012212110154513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111729561120050104WTTZYZPZZ22222122207310100000000 -T320230111111729561120220126WT@TT0T9T22222112207398100000000120200404WT@W0#ZW#22222112207398100000000 -T12023011111172960220600414251120233110516300000000015004170070000000000000000000000000000000000222222000000002229022 -T2202301111117296021219770918WT@ZYZTTZ2222211222221012212110194123099900000000000000000000000000000000000000000000000000000000000000000000000000000000000150 -T320230111111729602520070912WT@W9B@P022222122104308106980000 -T12023011111172990622000408891120923111901300000000000000990060000000000000000000000000000000000222222000013172219012 -T2202301111117299061219820901WTTY90YWT2212221222222011209290035721011935000000000000000000000000000000000000000000000000000000000000263300000000000000000000 -T2202301111117299061219820212WT@B#Z99Z2212222222222021298990035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111729906120060409WTT#T0T9Y22122212204307200000000 -T320230111111729906120110701WT@B@0PZY22122212204304200000000120070427WTT0YBTT922122222204305200000000 -T320230111111729906120150124WT@9TPY9W22122222204398200000000120130124WTTZ@BWYY22122212204301200000000 -T320230111111729906120210322WT@9TPY9W22122212204398200000000120170305WT@9TPY9W22122212204398200000000 -T12023011111172992524100402401110213110598300000000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111117299251219970127WT@@Y#BYZ2222222222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111729925120220714WTT#@0W##12222122204398100000000 -T12023011111172999120600414251120212110611300000000000505280770000000000000000000000000000000000222222000000002229072 -T2202301111117299911219860207WT@99#PW92222222222221012212120780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111729991120150426WTTYTTYYY22222212204398100000000 -T12023011111172999322000403351120412110939300000000000004620520000000000000000000000000000000308122222000000012219012 -T2202301111117299931219990904WTT#T@@#B1222212222221012211110402023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111729993120170101WTTW00ZWB12212222204398100000000 -T320230111111729993120180707WT@#ZPPBZ12212212204398100000000120170101WTTT@@WZY12212222204398100000000 -T12023011111173005622700408351110213110611300000000000003400010000000000000000000000000000000000222222000000002229012 -T2202301111117300561219850412WT@0@BBW@1222211222221012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730056120150923WTT#PPYYY12222122204398100000000 -T12023011111173025423500410671120613111116300000000000008880360000000000000000000000000000000000222222000000002229012 -T2202301111117302541219890124WT@ZPZYTT1222212222221012213210372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117302542219830318WT@YYBT9P2222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730254120100301WTT9Z99#@12222122204304100000000120080301WTTWP@@BB12222122204306100000000 -T320230111111730254120200927WTTY@0P#T12222112204398100000000120120923WTT#Y09@012222122204303100000000 -T12023011111173026125600413441120312110835102300000004606540120000000000000000000000000000000000222222000000002229012 -T2202301111117302611219810327WT@B0#Y901222222222221012211120431721011700210000000000000000000000000000000000000000050000000000000000136400000000000000000000 -T320230111111730261120190507WTTWBY0T#12222222204398100000000120060108WT@PPZWT@12222212204309100000000 -T12023011111173028224100402401120413110939300000000000007710300000000000000000000000000000000000222222000000002229012 -T2202301111117302821219770224WT@0Y@#B@2222212222223012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730282120090918WT@W#PZBP22222122204303100000000 -T320230111111730282120150127WTT9@#9@P22212222204398100000000120120311WTT#0PY0W22212212204303100000000 -T12023011111173033321000403202120523211219300000000000008880020000000000070002000000000000000000222222000000002229032 -T2202301111117303331219920313WTT#PP9P02222212222225011216120075323011800000000000000000002000000000000000000000000000000000000460000000000000000000000000000 -T2202301111117303331219860708WT@BP9T#T1222211222221011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730333120110101WT@P0WYT022222112204304100000000 -T320230111111730333120220218WTTB@WT0Y12222122204398100000000120150404WT@YTYZZZ22222122204301100000000 -T12023011111173034125900402831120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117303413219510124WT@0P9@Y@2122222122213012211110065413069900000000000000000000000000000000000000000000000000000000000000000000000410052400000000 -T320230111111730341120070123WT@9Y0YYT11222222206309100000000 -T12023011111173036322000409971120312110704300000000000006540720000000000000000000000000000000000222222000000002229072 -T2202301111117303631219770311WTTWW#B9T2221221222225012212110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730363120110313WTT90TBZ@22212212204304100000050120100909WTT#WBBWY22212212204306100000050 -T12023011111173037520600402142120323210740300000000000006540140000000000070003000000000000000000222222000000002229032 -T2202301111117303751219900707WTTW90ZTT2222122222221011208990213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117303751219850427WT@B9BYY@2222121222221011212990213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730375120150405WTT#0###922221222204301900000000 -T12023011111173040324600411871110323110835300000000000001680010000000000000000000000000000000000222222000000002229012 -T2202301111117304031220000923WT@9Z909B2222212222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117304031220000902WTT9@PW#Y2222211222221011211190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730403120200308WTT0#ZW@022222122204398100000000 -T12023011111173042825900402831120513111034300000000000008880510000000000070010000000000000000000222222000000002229012 -T2202301111117304281219840404WT@YZ#@#@1222222222223012210110510923011400000000000000000000000000000000000000000000000000000000280000000000000000000000000000 -T320230111111730428120060101WT@0W0PBW12222212204309100000000120050127WT@9B9WB@12222212204311100000000 -T320230111111730428120090122WT@B##0W912222222204307100000000120070104WTTZZ009#12222222204308100000000 -T12023011111173056920600404491120212110611300000000000005280730000000000000000000000000000000000222222000000002229072 -T2202301111117305691219880727WTTZBWZZP2222212222221012212120740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730569120090527WT@TW0ZYZ22222112204306100000000 -T12023011111173057722000407412120523211199300000000000008880060000000000000000000000000000000000222222000000002229032 -T2202301111117305771219860727WT@P@Y#WP2222212222222011214290075323011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T2202301111117305771219860427WT@0TZZWB2222211222222021214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730577120120308WTT@B@Z@#22222112204303200000000 -T320230111111730577120190724WT@TYPP0022222112204398200000000120140712WTTZ@BZT022222112204302200000000 -T12023011111173070022000411321120113110376300000000000304170040000000000000000000000000000000000222222000000002229012 -T2202301111117307001219890912WTT0WB9YW2222212222221013216190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111173077823500405271120433111034300000000000001650070000000000000000000000000000000000222222000006062219022 -T2202301111117307781219770713WT@ZBWZYT2222212222223012213110085223099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730778120090723WTTT9B9#B22222112204308100000000 -T320230111111730778120110112WT@P#@9TW22222112204306100000606120090723WTT#90YB@22222112204308100000000 -T12023011111173082925900402831120413111032300000000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111117308291219900911WTT0#WWTB2222212222225012216110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730829120150518WTTZY#0Y021222212204398100000000 -T320230111111730829120220113WTT0BPZTW22222122204398100000000120160707WT@Z#YY@B21222222204398100000000 -T12023011111173085722000407411120533111034124280000040007710180000000000000000000000000000000000222222000000002229022 -T2202301111117308572219790512WT@YYBT9P1222222222221012212910144613079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730857120090907WTT#@9T@W12222222204308100000000120060314WTT#ZT@ZT12222212204309100000000 -T320230111111730857120180712WT@YZT#@Y12222212204398100000000120160702WT@#@Z@#B12222222204398100000000 -T12023011111173089221400408021120433110611300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111117308922219940109WT@YYBT9P1222222222221012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117308922219960213WT@YYBT9P1222221222221102205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111730892120200712WT@#YWYZZ12222122204398100000000120190323WT@#B#BPW12222212204398100000000 -T12023011111173102323500410671120233110258300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111117310233219820718WT@9BY###2222122222221012212910283211079971000000000000000000000000000000000000000000000000000000000000380000000000000000000000 -T320230111111731023120190121WT@WT0PZ@22221222207398100000050 -T12023011111173105421400408021110113110376300000000000000130520000000000000000000000000000000000222222000003502219012 -T2202301111117310541219900423WT@#@YYBY2222212222221013212110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111173119620600414161120413110939300000000002507710410000000000000000000000000000000000222222000000002229012 -T2202301111117311961219960501WT@ZZPZZB2222212222221012216110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731196120160307WTT9B@9WB22222112204398100000000 -T320230111111731196120220523WTTPTYB0B22222112204398100000000120190413WT@09BYPW22222122204398100000000 -T12023011111173121425100407671120313110780300000000000006540770000000000000000000000000000000000222222000000002229072 -T2202301111117312141219910307WTTYT0ZTY2222212222221012209110780023011400000000000000000000000000000000000000000000000000000000260000000000000000000000001836 -T320230111111731214120190511WTTBZWTB@22222222204398100000000120110912WT@9BZPWT22122122204306100000000 -T12023011111173121724200403941110313110835300000000000001890010000000000000000000000000000000000222122000000002229012 -T2202301111117312171219990918WTT#YZWB@2221212222221012210120025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731217120200314WTTWB00BP22212122204398100000000120170102WTTY9B9@T22212122204398100000000 -T12023011111173122422000408341120313110549300000000000003920060000000000000000000000000000000261122222000000012219012 -T2202301111117312241219760105WT@9Z9Y#02222211222225012216110075323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731224120150308WT@P0@BWZ22222112204398100000000120070708WTTP9P#0#22222112204309100000000 -T12023011111173127020400409801120212110376300000000000002500990000000000000000000000000000000166122222000000012219072 -T2202301111117312701219680201WTT9WPT##2222212222224012212111030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731270520050101WTTWTZZW912222112104309109140000 -T12023011111173145824200403511120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117314583219640418WTTWZ00@Z2222212222222012211110402013069900000000000000000000000000000000000000000000000000000000000000669900000000000000000000 -T320230111111731458120110701WTTW#00@B22222122206302100000000 -T12023011111173154122000400811120313110766300000000000004900270000000000000000000000000000000163222122000000012219012 -T2202301111117315411219910927WTT0@PB9W2221222222221012212120283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731541120220127WT@BY#@Y922222212204398100000000120130901WTTTP0YT022212212204303100000000 -T12023011111173158123800409221120212110599300000000000003160800000000000000000000000000000000211122222000000012219072 -T2202301111117315811219790209WT@WBY@T92222212222225012209110880023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731581120080124WT@P09TWW12222122204307100000000 -T12023011111173159820800414151120323110835300000000140506540040000000000000000000000000000000000222222000000002229012 -T2202301111117315981219940507WTTYB@0#Y2222212222225011215210055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117315981219860901WTT99W#@B2222211222225011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731598120180518WT@9TPY9W22222112204398200000000 -T12023011111173165424200404051120233110376300000000004004170040000000000000000000000000000000000222222000000002229022 -T2202301111117316542219780523WTTTWY#0T1222222222225012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731654120060112WTTWPZP9@12222222204308100000000 -T12023011111173173322000407241120313110786300000000000003920780000000000000000000000000000000261122222000000012219072 -T2202301111117317331219920107WT@TB90T92221222222221012211110780023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731733120150927WT@@##BW@22212222204301100000000120100707WT@ZBTPW022212212204305100000000 -T12023011111173174921700406141120213110576300000000001205280420000000000000000000000000000000000222222000000002229012 -T2202301111117317491219980408WT@@9YZ9B2222212222221012212110431723011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111731749120180926WTTPZZZ#922222122204398100000050 -T12023011111173182823700414331120612111339133470000000003480390000000000000000000000000000000000222222000006612219012 -T2202301111117318281219900323WT@PZ9W001222212222223012212110402021011721000000000000000000000000000000000000000000000000000000000000132000000000000000000000 -T320230111111731828120110726WT@@90B@Y12222222204304100000001 -T320230111111731828120160418WTT90BZPY12222112204398100000000120130712WTTPW#TW012222122204301100000000 -T320230111111731828120210412WTTWTY##012222122204398100000000120170308WTT#W00TW22222122204398100000000 -T12023011111173184424200410531120213110516300000000020000010010000000000000000000000000000000000222222000000002229012 -T2202301111117318441219840723WTTY@##0Z2222212222221012216110273311011900200000000000110000000000000000000000000000000000000000040000135400000000000000001441 -T320230111111731844120130404WTT9BYTT@22222122204303100000000 -T12023011111173185524200407311120233120000300000000000003830990000000000000000000000000000000000222222000000342219022 -T2202301111117318553219670513WT@BTPBBB2122222222221012215110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731855120050324WT@0BTW9921222212209309100000033 -T12023011111173193925600414551110413110940300000000100004010110000000000000000000000000000000000222222000000002229012 -T2202301111117319391219920909WTT9T@#Y#1222222222222012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111731939120090414WTTY#WPT912222222204306100000327 -T320230111111731939120150108WTT@Z@Z#T12222212204398100000000120130913WT@9Z@TY012222212204302100000000 -T12023011111173216720800411931120213110548300000000000105280080000000000000000000000000000000000222222000000002229012 -T2202301111117321671219710407WT@ZT0#TB2222212222221012216120194123010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111732167120110901WT@0PBB@Y22212212204304100000000 -T12023011111173229522700408351120632111116300000000164708880310000000000000000000000000000000000222222000000002229022 -T2202301111117322952219910912WT@YYBT9P1222212222221012201910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111732295120120921WTTYYTYW912222112204303100000000 -T320230111111732295120160926WTT0W90TZ12222222204398100000000120140127WTTBTP90Z12222112204301100000000 -T320230111111732295120220921WT@TY@WBZ12222122204398100000000120190507WTTPZ9Y#Z12222212204398100000000 -T12023011111173236020800410781120433120000300000000000006540130000000000000000000000000000000000222222000000002229022 -T2202301111117323603219530912WT@WY0@##1222212122222012298110006013069900000000000000000000000000000000000000000000000000000000000000000100001528000000000763 -T320230111111732360120100214WT@TTZ9ZY22222122206305100000000 -T320230111111732360120110912WT@PWYYZ022222112206304100000000120100214WT@T0##9Z22222112206305100000000 -T12023011111173238025900402721120233110470300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111117323803219710204WT@WZWYB91222212222225012212110790013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001053 -T320230111111732380120200427WTTZYYBWP12222112207398100000000 -T12023011111173243422000404841110213110516300000000000003230010000000000000000000000000000000000222222000000002229012 -T2202301111117324341219750124WT@9TPY9W2222211222223012298210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111732434120060111WT@9TPY9W22222112204311200000000 -T12023011111173245423500411471120323110835300000000010006540110000000000000000000000000000000000222222000000002229012 -T2202301111117324541219810426WTT0#YY@T2222211222222011213290124821011817000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T2202301111117324541219770309WTTZ#WYBW2222212222222021213290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111732454120160314WT@PY099922222112204398200000000 -T12023011111173255622000404841120413111034300000000080507710080000000000035003000000000000000000222222000000002229012 -T2202301111117325561219830101WTTPW@@Y02222212222225012216110095123011400000000000000000000000000000000000000000000000000000000090000000000000000000000000252 -T320230111111732556120080922WTT0@P@W022222122204308100000000 -T320230111111732556120160901WTT@ZZBTT22222112204398100000000120120104WTTB9@9TP22222112204304100000000 -T12023011111173263020600400801120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111117326301219760312WT@TBZZT92222212222222011209290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117326301219720704WT@0BWTBP2222211222222021216290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111732630120060108WTTB#@Z0Z22222122204309200000000 -T12023011111173264023700414332120213210611300000000000005280070000000000000000000000000000000000222222000000002229032 -T2202301111117326401219870105WT@9TPY9W1222222222221012215210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111732640120080901WT@9TPY9W12222212204305200000000 -T12023011111173269424700405831120723111480300000000069708410090000000000000000000000000000000000222222000003242219012 -T2202301111117326941219840901WT@T09TZ02222212222222011216290105021011809000000000000000000000000000000000000000000000000000000000000064800000000000000000000 -T2202301111117326941219810904WT@@P09WT2222211222222021216290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111732694120100721WT@9PWYBB22222112204306200000000 -T320230111111732694120130427WTT#@PT0Y22222112204303200000000120110313WT@BY99WZ22222112204304200000000 -T320230111111732694120160523WT@9TPY9W22222122204398200000000120140705WT@#P@YBP22222122204302200000000 -T12023011111173271722000414461120523111116300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111117327171219850301WT@9TPY9W2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T2202301111117327171219820726WT@9TPY9W2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111732717120050224WT@9TPY9W22222122204311200000000 -T320230111111732717120140123WT@9TPY9W22222122204302200000000120060726WT@9TPY9W22222112204310200000000 -T12023011111173281822000405181120523111116300000000000005320100000000000000000000000000000000355122222000000012219012 -T2202301111117328181219940901WT@9TPY9W1222212222222011206290233723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117328181219900102WT@9TPY9W1222211222222021202290233723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111732818120140127WT@9TPY9W12222122204302200000000 -T320230111111732818120210913WTTZPYBB#22222112204398100000000120180902WT@9TPY9W12222122204398200000000 -T12023011111173284923500402711120723111480300000000000011650050000000000000000000000000000000000222222000000002229012 -T2202301111117328491219860705WT@#PZYT#2222212222222011215290065423011800000000000000000000000000000000130002000000000000000000400000000000000000000000000000 -T2202301111117328491219840413WTTPW9@TW2222211222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111732849120060922WTTP#9YZ922222122204311200000000 -T320230111111732849120100309WT@9W0Z@@22222112204306200000000120080908WT@9YW9T@22222112204309200000000 -T320230111111732849120200413WT@0@WY9022222112204398200000000120180901WTTP9#@ZZ22222122204398200000000 -T12023011111173287925900408111120233110503300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111117328793219750101WTTPYPY@T2122222222223012212110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000131 -T320230111111732879120150412WTTP0Z##Z21222222207398100000000 -T12023011111173288520800414651110412111034120640000002007710290000000000000000000000000000000000222222000000002229012 -T2202301111117328851219880427WTTW9WZ992222212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000006297 -T320230111111732885120130212WTT#Z0TW#22222122204302100000403 -T320230111111732885120180213WTT00P9BZ22222122204398100000403120150326WTTBB9P#W22222122204398100000403 -T12023011111173297824200400491120632111339102330000000008880990000000000000000000000000000000000222222000000002229022 -T2202301111117329782219880927WTTPW##9B2221222222212012212120960013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111732978120070923WTTB9@9#922212222204309100000000 -T320230111111732978120140412WTTYPBWBP12212222204302100000000120090312WTT@Y#TBY22212212204306100000000 -T320230111111732978120190304WT@@P9#0B22212222204398100000000120180312WT@9TW#W@22212222204398100000000 -T12023011111173304725900402722120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111117330471219860918WT@9TPY9W2222222222222011211290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117330471219770726WT@9TPY9W1222221222222021209290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733047120130112WT@9TPY9W22222212204303200000000 -T12023011111173305821000414221120413111034300000000000007710170000000000000000000000000000000000222222000000002229012 -T2202301111117330581219800101WT@YW@YBB2222212222225012213110174321011941000000000000000000000000000000000000000000000000000000000000545600000000000000000000 -T320230111111733058120070312WT@@WTTPP22222112204308100000000 -T320230111111733058120120302WTT#YZ@9@22222122204303100000000120100312WT@TBY99P22222122204305100000000 -T12023011111173317624200408391120523111199300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111117331761219740427WT@0BT0@02222211222222011214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117331761219770101WT@9TPY9W2222222222222021214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733176120050207WTTYWZWB022222222204311200000000 -T320230111111733176120130412WT@90WZ#Z22222122204303200000000120060324WT@9TPY9W22222112204309200000000 -T12023011111173329720600403591120313110835300000000000003920610000000000000000000000000000000261122222000000012219012 -T2202301111117332971219910224WT@#PW9BB2222212222222012208110520823010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733297120150126WTTB#WTYT22212222204398100000000120100226WT@YP##BZ22222112204304100000000 -T12023011111173334320600409771120313110786108380000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111117333431219910714WT@@Z@ZTZ2222212222221012214110045621011720000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733343120190413WTTBZYYP#22222112204398100000000120090123WT@#Z9ZP022222112204307100000000 -T12023011111173337625900400311120233110376300000000075004170090000000000000000000000000000000000222222000000002229022 -T2202301111117333762219850127WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733376120220102WT@BYYPYP12222212204398100000000 -T12023011111173341121000408061120432110740300000000002402350070000000000000000000000000000000000222222000004192219022 -T2202301111117334112219750113WT@YYBT9P1222212222224012208910006011079916000000000000000000000000000000000000000000000000000000000000107000000000000000000000 -T320230111111733411120070927WTT0W@W0Y12222112204309100000000 -T320230111111733411120130421WT@P9ZPYT12222122204303100000000120100412WT@TZPZTP12222112204306100000000 -T12023011111173342020800411601120213110611300000000003405280090000000000000000000000000000000000222222000000002229012 -T2202301111117334201219890127WTT#WWZPZ2222212222221012216110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733420120220911WT@0T00YB22222112204398100000000 -T12023011111173342423700414331120413110893300000000040003160640000000000000000000000000000000000222222000001012219072 -T2202301111117334241219840912WTTY9@TTB2222212222225012213110650021011802000000000000000000000000000000000000000000000000000000000000020100000000000000000000 -T320230111111733424520090704WT@WWZWWY22122112104306106200528 -T320230111111733424520140404WT@W@W0@Y22122122104302107340325520120523WTTW0TTYT22122112104304107340325 -T12023011111173344021000403201120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117334402219710927WT@WP9W002222212122215012212110600013109900000000000000000000000000000000000000000000000000000000000000000000000701023300000000 -T320230111111733440120090318WTTBWW@WZ21222222204305100000381 -T12023011111173344522000404841120312110793300000000000006540880000000000000000000000000000000000222222000000002229072 -T2202301111117334451219860722WTTZ09@@P2221222222221012216110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733445120100427WT@#BY9##22212212204305100000000120070311WT@9#PZWW22212112204307100000000 -T12023011111173348925000403231120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117334891219700423WT@@0090Z2222211222225012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733489120050501WT@TB#Z@P22222112204311100000081 -T12023011111173359420800410781120412110952300000000000007320410000000000000000000000000000000000222222003800012219072 -T2202301111117335941219970501WTTWPWTWZ2221222222221012211110650023011700000000000000000000000000200002000000000000000000000000040000000000000000000000000000 -T320230111111733594120140123WT@@ZZ0TP22212212204302100000000 -T320230111111733594120180305WTT#0P90022212222204398100000000120160304WTTWYZ@#T22212222204398100000000 -T12023011111173359824200414351120233110247300000000000004170730000000000000000000000000000000000222222000000002229022 -T2202301111117335983219780213WT@YYBT9P1222222222221012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733598120200526WT@0B0ZP912222222206398100000000 -T12023011111173362321600411511120413111034300000000000007710280000000000000000000000000000000000222222000000002229012 -T2202301111117336231219910707WTTZW@BYT2222212222223012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733623120060322WTTWY90Z022222122204309100000000 -T320230111111733623120150424WT@0#ZPW022222112204301100000000120100221WTT909W#Z22222112204306100000000 -T12023011111173365824200409091110323110835300000000000606540030000000000000000000000000000000000222222000000002229012 -T2202301111117336581219990307WT@@9W@0P2222212222222011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117336581219990323WT@@TZWWZ2222211222222021209190045623011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111733658120210422WT@ZTZZ@B22222112204398100000000 -T12023011111173366324700409381120313110835300000000000006540250000000000000000000000000000000000222222000000002229012 -T2202301111117336631219860107WT@TB#0T92222212222225012213110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733663120200401WTT@Y#W@922222112204398100000000120180327WT@9BZBWW22222122204398100000000 -T12023011111173366825000414191120313110835300000000015006540020000000000000000000000000000000000222222000000002229012 -T2202301111117336681219920501WT@PPBT@Y1222222222223012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000001469 -T320230111111733668120160312WTTZY@TWW12222212204398100000119120120312WT@ZTYBB#12222212204303100000119 -T12023011111173367724700409321120323110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117336771219950401WTT0B#PT92222212222222011216290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117336771219980727WT@ZZ9YBP2212211222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733677120190127WTT#TBPY022222122204398200000000 -T12023011111173370320600402141120232110516300000000000004170980000000000000000000000000000000000222222000000002229022 -T2202301111117337032219800111WTTW@WW9P2222212122215012212110610013109900000000000000000000000000000000000000000000000000000000000000000000000901003300000000 -T320230111111733703120160523WT@0Z#PT@22222122204301100000000 -T12023011111173378820600414161120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117337882219860412WT@9TTZ#W2212222122211012212110194113109900000000000000000000000000000000000000000000000000000000000000000000000462047200000000 -T320230111111733788120100408WTT@TW09022122212204306100000000120090518WTTYTZ#0912122212204306100000000 -T12023011111173379420600414251120312110810300000000000006540600000000000000000000000000000000000222222000000002229072 -T2202301111117337941219750204WTTT9@ZBY2122222222225012214121190023010900000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111733794120120911WTTP#YTT@22222112204303100000000120040101WTT#PYP0W22222112204311100000000 -T12023011111173395624200409091120412110972300000000000007710170000000000000000000000000000000000222222000000002229012 -T2202301111117339561219860101WT@W0BBZ@2221222222221012213220253523010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733956120050412WT@T#909P22212212204310100000000 -T320230111111733956120110201WTT#0PBPB22212222204304100000000120070702WTTYZB0BB22212212204308100000000 -T12023011111173395722000402371120312110822120890000000006540510000000000000000000000000000000000222222000000002229012 -T2202301111117339571219950323WT@TB@@Y92221222222221012211110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111733957120220418WTTPZ0TBB22212222204398100000000120160421WTTPY9YP022212222204398100000000 -T12023011111173419725900402831120233110247300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111117341973219880414WTTPBW9B@1222212222222012216910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734197120210324WT@ZBWYTP12222112207398100000000 -T12023011111173421824200409731120333110740300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111117342183219870522WT@9#0@9W2222212222221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734218120150901WT@T#WTW921222122207301100000000520130426WTT@YB@WW21222112107302109140000 -T12023011111173423321700406141110313110835300000000000005900010000000000000000000000000000000000222222000000002229012 -T2202301111117342331219960112WT@WPWWY02222212222221012211110015921011738000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734233120200423WT@P0@ZYW22222112204398100000000120180907WT@Z@99BT22222112204398100000000 -T12023011111173425622000407412120423210939300000000000007710090000000000000000000000000000000000222222000000002229032 -T2202301111117342561219860409WTTZ@PYZT2222211222222011212290105023011800000019000200000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111117342561219910912WTT@TW0T#2222212222222021212290105023011800000019000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111734256120160127WT@@WWT#022222122204398200000000120120501WTTZZZY#T22222112204304200000000 -T12023011111173430322000402151120622111284300000000100709310530000000000000000000000000000000000222222000000782219072 -T2202301111117343031219760723WTTPP#BYP2222211222222011206190750021011805000000000000000000000000000000000000000000000000000000000000031000000000000000000000 -T2202301111117343031219760207WTT#BB0W@2222212222222021206190750023011800000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111734303120080423WTTB#TTY@22222112204307200000000120060123WT@@ZBP@W22222122204310200000000 -T320230111111734303120180412WTTW9PYT022222122204398100000000120100413WTTWBZ#9B22222112204306200000000 -T12023011111173441322000414501120233110611300000000027004170240000000000000000000000000000000000222222000000002229022 -T2202301111117344133219740312WTTY#900P2222212222225012213120510911069904000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111734413120210201WTTYYZYPY22222122206398100000000 -T12023011111173445624700406702120322210766300000000010006540100000000000000000000000000000000000222222000000002229032 -T2202301111117344561219910412WTTBW0BTT2222212222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117344561219880922WTTW09TZ92222211222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734456120140112WT@9TPY9W22222122204301200000000 -T12023011111173448624700413762120323210835300000000000005280060000000000000000000000000000000000222222000000002229032 -T2202301111117344862219880913WT@YYBT9P2222211222222011298290006013051800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117344861219890401WT@9TPY9W2222212222222021203290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734486120070401WT@9TPY9W22222122204304200000000 -T12023011111173453725600412851120313110835300000000000806540490000000000000000000000000000000000222222000000002229072 -T2202301111117345371219710721WT@@##Y0@2122222222225012212110650023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000100 -T320230111111734537120120712WT@BWYZ#921222222204304100000000120100313WTT#TT9ZB21222222204305100000000 -T12023011111173459623900400641120513111064300000000000006210070000000000000000000000000000000000222222003200012219072 -T2202301111117345962219790118WT@TTZ00Z2222211222212012216190890013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111117345961219880301WT@ZZYT9Y2222212222222022216190910023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111734596120090913WTTY@9WT#22222112204306100000000 -T320230111111734596420160913WT@BPZ#TW22222112104398109140000120120412WTT9Y@0TY22222122204304100000000 -T12023011111173467620600402131120213110598300000000000005280410000000000000000000000000000000000222222000000002229012 -T2202301111117346761219850318WT@W00TBW1222222222221012209110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734676120180101WT@9@PYZT12222212204398100000000 -T12023011111173468821700406141120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111117346881219920113WT@9#0ZZZ2222211222221012216110095123011800000000000000000000000000000000330000000000000000000000000000000000000000000000000000 -T320230111111734688120090126WT@0ZPZY922222212204308100000000 -T12023011111173481620600400871120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117348163219380427WT@9Z@W9#2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001171000000000392 -T320230111111734816120070421WTT90PWP912222112209309100000050 -T12023011111173482525900406651120233110557300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111117348253219720109WTTBZYWPY2222212222222012211110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734825120170304WT@9PY9PZ22222122206398100000000 -T12023011111173489022000410051110213110516300000000001602770180000000000000000000000000000000000222222000000002229012 -T2202301111117348901219930707WTT@WWP@T2221222222221012216110184221011804000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734890120180921WT@@BT9T#22212212204398100000000 -T12023011111173489622000409971120312110558105400000000003920830000000000000000000000000000000261122222000000012219072 -T2202301111117348961219860126WTTW9@9TY2221222222225012212110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734896120120326WT@B#ZWT#12212212204304100000000120050913WT@PTYZ9Z12212212204311100000000 -T12023011111173491624200407271120312110740300000000000005280240000000000035001000000000000000000222222000000002229072 -T2202301111117349161219790512WT@0TZYW#2221222222225012212110740021011800200000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734916120090109WT@T9PT0P22212212204307100000000420050918WT@PP@@PP22212212104310109140000 -T12023011111173495021000408061120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111117349501219800427WTT9T0WWB2222222222221012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111734950120070212WT@YBZ@@P22222122204308100000000 -T12023011111173504220800405141120233120000300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111117350423219720223WTTW9YYYZ2222212222222012212110392113069900000000000000000000000000000000000000000000000000000000000000373400000000000000000000 -T320230111111735042120090323WT@YWW99W22222122206306100000000 -T12023011111173521720800411601120533111169300000000003008880160000000000000000000000000000000000222222000000002229022 -T2202301111117352171219790713WTT#B@#091222212222223012214110223823099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735217120090427WT@0ZB@#@11222222204307100000025120070721WTTZYYY9@11222212204309100000025 -T320230111111735217120150518WTTW9WB@012222212204301100000025120090427WTTB9PTYP11222212204307100000025 -T12023011111173525024700406491120323110611300000000000003920150000000000000000000000000000000261122222000000012219072 -T2202301111117352501219840313WTTT#0P9@2222212222223011212190690023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117352501219880726WT@#Z@ZW02222211222221011212190164423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735250120160326WTTW#0WY022222122204398100000000 -T12023011111173531024700413761120212110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111117353101219930414WT@#0WY@#2221222222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735310120220426WTTB09@WZ22212212204398100000000 -T12023011111173537525100414031120213110598300000000116005280170000000000000000000000000000000000222222000000002229012 -T2202301111117353751219710222WT@TB#BTY2222211222225012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735375120210224WT@##ZWY022222222204398100000000 -T12023011111173537720600400871120213120000300000000000003160160000000000000000000000000000000211122222000000012219012 -T2202301111117353771220030302WTTT0#Z#02122222222221012210110154523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735377120210307WTTTP9@B021222122204398100000000 -T12023011111173540722000412691120312110835300000000300006540240000000000000000000000000000000000222222000000002229012 -T2202301111117354071219970223WTT#W9PBY2221212222221012212110243623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735407120170111WTTY#YWW@22212112204398100000000120140122WTT@##@BB22212112204302100000000 -T12023011111173549922000408891120333120000300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111117354993219550327WTTPWZZYZ2222121222222012212210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002803 -T320230111111735499120160108WTTT0PY#W22221212206398100000000120120901WTTZYZ#T922221222206303100000000 -T12023011111173552225600414551120412110939300000000000005780110000000000000000000000000000000192222122000000012219072 -T2202301111117355221219860518WTTBP@YPP2222212222221012216120690023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735522120040312WT@BBZYPP22222112204312100000000 -T320230111111735522120100704WTT0WYPZY22222112204305100000000120080526WT@YYPP9T22222112204308100000000 -T12023011111173557020800411991120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111117355701219870913WT@9TPY9W2222212222221012212210075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735570120200713WT@9TPY9W22222122204398200000000 -T12023011111173568621400408021120212110247300000000023205280060000000000000000000000000000000000222222000000002229012 -T2202301111117356861220040911WT@W#PB#P1222212222221012212120075323011700000000000000000000000000310001000000000000000000000000000000000000000000000000000000 -T320230111111735686120220422WT@9W0YWP12222112204398100000000 -T12023011111173572820600408181120323110766300000000046506540110000000000000000000000000000000000222222000000002229012 -T2202301111117357281219970221WTTY0Y9@P2222212222222011298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117357281219980726WTTW0Y#WT2222211222222021298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735728120210727WT@BTYZB922222122204398200000000 -T12023011111173585820600414771120232110446300000000000011670050000000000000000000000000000000000222222000000002229022 -T2202301111117358583219800126WTTBBBTZZ2222212222212012212111290013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111735858120100523WTT#@ZZ@#22212222207305100000000 -T12023011111173589422000410331110213110611300000000000000850090000000000000000000000000000000000222222000003552219012 -T2202301111117358941219720223WTTZB@#P02222212222225012216110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735894120140913WTT@TP9#B22222112204303100000000 -T12023011111173592022000409411120433120000300000000000006540660000000000000000000000000000000000222222000000002229022 -T2202301111117359203219820107WT@YWW0BZ2222212222222012213110006011069943000000000000000000000000000000000000000000000000000000000000314700000000000000000000 -T320230111111735920120040321WTT0PZZZB11222222207311100000000 -T320230111111735920120060701WTTTPZYZ@11222222207309100000000120040321WTTZYWZY011222222207311100000000 -T12023011111173598125900402631120213110611300000000000005280120000000000000000000000000000000000222122000000002229012 -T2202301111117359811220000908WTT9BP9Y@2222212222221012211110134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111735981120220723WT@0W#09P22222122204398100000000 -T12023011111173598922000410221120233120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111117359893219510201WTTP9000Z2121222112225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001617000000000467 -T320230111111735989120040323WTTY##WT922212122206311100000000 -T12023011111173599125900402631120433111034300000000000006540470000000000000000000000000000000000222222000000002229022 -T2202301111117359912219850902WTTYZTB0B2222212222215012216110322813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111735991120120302WT@9Z#WYB22222112204302100000000 -T320230111111735991120210423WTT#0@BW022222112204398100000000120160212WT@P0PP#022222112204398100000000 -T12023011111173608822000412231120213110376300000000000003160880000000000000000000000000000000211122222000000012219072 -T2202301111117360881219850309WT@0W@YBB2222212222221012216110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736088120050423WT@ZB#YY922222112204310100000000 -T12023011111173611825800401871120332110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117361182219720412WT@BYPB@02222212222211012212120780013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111736118120120421WTT0@0WP@22212212204303100000040120060423WT@YT@Y0T22221222204309100000000 -T12023011111173616424200410531120413110939300000000003007710070000000000000000000000000000000000222222000000002229072 -T2202301111117361641219910922WT@9TZZ0Y2221222222221012212110670021011723000000000000000000000000000000000000000000000000000000000000211200000000000000000000 -T320230111111736164120110721WTTBWPB@B22212222204304100000000 -T320230111111736164120180522WTTWP#@B#22212222204398100000000120130227WT@P@TZ@922212212204303100000000 -T12023011111173628623500405981120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117362863219590721WTTPZ@PWW2222212222221012212120006011069924000000000000000000000000000000000000000000000000000000000000252000000000000000000000 -T320230111111736286120070708WTT#P0W0B22222122206309100000000 -T12023011111173632722000408891120313110835300000000004006540980000000000000000000000000000000000222222000000002229072 -T2202301111117363271219800318WT@ZTP0WZ1222222222225012209110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736327120110401WT@TY#P9W12222212204306100000000120050701WT@Z#WTP012222222204312100000000 -T12023011111173638822000407241120723111479300000000000008660140000000000000000000000000000000000222222000002992219012 -T2202301111117363881219800123WTTBT0##T2222122222222011213110134721011811000000000000000000000000000000000000000000000000000000000000059700000000000000000000 -T2202301111117363881219740123WT@Y0TTWT2222121222222021213190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736388120050924WT@BPYZ@@22221222204311100000000 -T320230111111736388120110227WT@9TPY9W22221212207304100000000120100518WT@@@#YPP22221212204305100000000 -T320230111111736388120160512WT@BTTZZP22221222204398100000000120140713WT@PT#TY922221222204398100000000 -T12023011111173640425900402831120212110599300000000000004870730000000000000000000000000000000000222222000000412219072 -T2202301111117364041219880226WT@ZT9PZB2222212222223012213110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000040 -T320230111111736404120150309WT@#P9WT#22222122204301100000000 -T12023011111173644020800411931120213110598300000000000005280630000000000000000000000000000000000222222000000002229072 -T2202301111117364401219710918WTT@0@T0P2222212222221012213110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736440120060109WT@P9ZWPB22222122204309100000000 -T12023011111173645220800405141120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117364523219670101WT@9W9YBW2222222122222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000002911000000000000 -T320230111111736452120100505WT@@#0ZWZ22222122206307100000000 -T12023011111173645722900405641120213110599300000000000003160020000000000000000000000000000000211122222000000012219072 -T2202301111117364571219860127WTT90B0BW2222212222221012211111080023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000003 -T320230111111736457120110105WTT@WT9Z912222122204306100000050 -T12023011111173653221400408021120332110611300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117365322219750126WT@YYBT9P1222222222221012213910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736532120080711WT@ZWW9Y912222112204308100000000120060923WT@P@Z9BT12222222204310100000000 -T12023011111173654022500404951110313110835300000000000005900010000000000000000000000000000000000222222000000002229012 -T2202301111117365401219840407WTTPW#T#02222212222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736540120200512WTT9Z9ZYW22222122204398100000000120120407WT@YYPWZW22222122204305100000000 -T12023011111173658924700405831120312110702300000000053105280610000000000000000000000000000000000222222000000002229072 -T2202301111117365891219910523WTTW9BY992221212222225012216120620023011800000000000000000000000000000000100001000000000000000000000000000000000000000000000000 -T320230111111736589420170226WT@#Z#ZZZ22212112104398108220000120090327WT@#BP@T#22212122204306100000050 -T12023011111173659720600402141120213110598300000000000005280670000000000000000000000000000000000222222000000002229072 -T2202301111117365971219940501WT@BB09Z@2222212222221012216110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736597120160413WT@P@TB9P21222212204398100000000 -T12023011111173662323500414281120233110516300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111117366233219770722WTTYZ9@ZP2222212222211012212120303013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111736623120120327WT@YPB9@@22222112206302100000000 -T12023011111173665023700414331120313110611300000000000004590070000000000000000000000000000000000222222000000002229012 -T2202301111117366501220000512WT@#09YP91222211222221012209190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117366502219990112WT@YYBT9P1222212222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736650120210321WTTPW9WZ@22222222204398100000000 -T12023011111173679822000405841120312110835300000000000005680150000000000000000000000000000000000222222000000002229072 -T2202301111117367981219800905WT@W###Y#2221222222221012211111690021011803000000000000000000000000000000000000000000000000000000000000017000000000000000000000 -T320230111111736798120110923WT@@@0T@T22212212204305100000000120070323WT@PZ0#W022212222204308100000000 -T12023011111173686524200414721120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117368652219870522WTTPTBPP@2221222122221012213110660013109900000000000000000000000000000000000000000000000000000000000000000000000909000000000000 -T320230111111736865120070724WT@P0BZ@Y22212212204309100000000 -T12023011111173688724700401281120233120000300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111117368875219440127WTT@YT09W2222212122225012298910006013109900000000000000000000000000000000000000000000000000000000000000000000001750000000000000 -T320230111111736887120210927WTT@@P@Z022222112209398100000000 -T12023011111173688823500411471110323111085300000000000003160010000000000000000000000000000000000222222000000002229012 -T2202301111117368881219850122WT@9TPY9W2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117368881219880712WT@9TPY9W2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736888120210126WT@9TPY9W22222122204398200000000 -T12023011111173689825900406081120333110704300000000000000260230000000000000000000000000000000000222222000005022219022 -T2202301111117368983219630718WT@Z0YBZT2122222222221012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000299 -T320230111111736898120120927WTT0PP#PY21222212206304100000299120100411WTTW0P@0#21222212206306100000299 -T12023011111173692825900402831120423110971300000000005002160100000000000000000000000000000000000222222000005552219012 -T2202301111117369281219900127WTT@WTBY#2122222222221011212110194121011814000000000000000000000000000000000000000000000000000000000000084700000000000000000131 -T2202301111117369281219870913WT@ZB#WPW1222211222221011209190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736928120210701WT@YPB90T22222222204398100000000120200512WT@Z#990Y11222212204398100000000 -T12023011111173696725900405231120333110611300000000010005280130000000000000000000000000000000000222222000000002229022 -T2202301111117369672219860407WT@YYBT9P1222212222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111736967120210311WTTW@@@#012222212204398100000000120160324WTT0P#BWT12222122204398100000000 -T12023011111173701922000405841120313110784138630000010006540370000000000000000000000000000000000222222000000002229012 -T2202301111117370191219970324WT@9B##@01222222222221012212110471323011800000000000000000000000000000000220002000000000000000000110000000000000000000000000000 -T320230111111737019120200927WT@@@WWY912222122204398100000000120190405WT@Y#00YZ12222112204398100000000 -T12023011111173712022000405842110723211395300000000000010970080000000000000000000000000000000000222222000000002229032 -T2202301111117371201219970127WTTW@9BT@2212221222222011212290006021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117371201219970923WTTB@#90Z2212222222222021298290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111737120120130526WTT0Y#TBT22122222204304200000000 -T320230111111737120120160408WTTTT#@9P22122222204398200000000120140401WTT@Z9Y0B22122222204302200000000 -T320230111111737120120220704WT@T0#W9P22222222204398100000000120200901WT@BP0ZYB22122212204398200000000 -T12023011111173716820600409771120333110670300000000000005280590000000000000000000000000000000000222222000000002229022 -T2202301111117371683219690712WT@WB0W@W2122222222223012212110015911069940000000000000000000000000000000000000000000000000000000000000325600000000000000000054 -T320230111111737168120180111WT@T0Z9W921222222206398100000000120090123WTT0T9ZZW21222212206307100000000 -T12023011111173729920600403591120312110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111117372991219840123WTT9@Y9TZ2221222222225012213110075323010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111737299120160409WT@@##0PW22212222204398100000000120090412WTT#@BPYB22212212204307100000000 -T12023011111173732823700414331120433120000103650000000006540860000000000000000000000000000000000222222000000002229022 -T2202301111117373283219610121WTTZBP0002222212222225012214110006011069940000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111737328120080211WT@T0TZT#12222122206308100000000 -T320230111111737328120130302WT@ZTBWWP12222112206302100000000120090522WT@PT@PYT12222112206307100000000 -T12023011111173750423500412161120413110939300000000000003980040000000000000000000000000000000000222222000003732219012 -T2202301111117375041219780413WTT9#PWTZ2222212222223012216110055521011724000000000000000000000000000000000000000000000000000000000000288600000000000000000000 -T320230111111737504120060112WTTTTBP##22222112204309100000300 -T320230111111737504120180212WTT@#TZ9W22222122204398100000000120160105WT@0#T99B22222122209398100000000 -T12023011111173763220600414871120333110782300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117376323219740101WT@TB#0W#2222212222211012209111380013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111737632120170712WT@9YZT@022222112206398100000000120150427WTT#ZT#0W22222112206301100000000 -T12023011111173766025800405801120532111116300000000000007710110000000000000000000000000000000000222222000000002229022 -T2202301111117376603219710105WT@WY#P9B2222212222215012214110204013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111737660120140424WT@@ZY00T12222222206301100000000120120118WT@09P##@12222222206302100000000 -T320230111111737660120170313WT@TYZ@Y012222222206398100000000120160926WTTZ#99Z#12222122206301100000000 -T12023011111173768922000405321120213110611300000000360005280070000000000000000000000000000000000222222000000002229012 -T2202301111117376891219900907WTTTZ#P992221222222223012214210085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111737689120220918WT@B###BW22212222204398100000000 -T12023011111173775122000407241120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117377511219960708WT@9@ZTT@2221222222221012212110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111737751120220312WTT@Z##Y022212222204398100000000 -T12023011111173780725900402121120212110598300000000000005280740000000000000000000000000000000000222222000000002229072 -T2202301111117378071219750912WT@Z##YT@2222212222221012212110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111737807120140427WT@009@9W22222112204302100000000 -T12023011111173786424600411871120333110719300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111117378643219710104WT@@9#0T#2212221222221012210210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111737864120150301WT@WYW9ZW22122212207301100000000120140912WTTZBT0TW22122212207303100000000 -T12023011111173789722000407091120313110766300000000150006540050000000000000000000000000000000000222222000000002229012 -T2202301111117378971219870427WT@#00Z9#2221222222223012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111737897120150422WT@ZZ@TYZ22212212204301100000000120150422WTTY09Z@Y22212222204301100000000 -T12023011111173791025900402121120313110835300000000000006540180000000000000000000000000000000000222222000000002229072 -T2202301111117379101219720414WT@@09T@Z1222221222223012211210780021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111737910120110322WT@9WY@9012222212204306100000000120090504WTT0@@PWW12222222204309100000000 -T12023011111173798721000411361120532111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117379872219830713WTT@@W9@T2222212222212012212110421813089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111117379872219690227WTTTY#ZYP2222211222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111737987120050109WTTBT00Z022222122204308100000000 -T320230111111737987120120913WT@#YZB0B22222122204301100000000120100507WTTP@ZWBZ22222122204302100000000 -T12023011111173804722000413731120213110598300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111117380471219920712WTTZ0ZBY#1222212222221012211110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111738047120210927WT@YZWBY#12212212204398100000000 -T12023011111173814420600414161120233110446300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111117381445219920123WT@WWPTW@2222212222222012213110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000001072 -T320230111111738144120120322WTT9WBWW#22222122209303100000000 -T12023011111173820724700406741120213110611300000000055303330250000000000000000000000000000000000222222000001952219012 -T2202301111117382071219840124WT@T@WBPT2211222222221012216110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000721 -T320230111111738207120160902WT@Y0@B#022222222204398100000195 -T12023011111173820925900403551120213110611300000000000003960020000000000070003000000000000000132222122000000002229012 -T2202301111117382091219830905WTT#P9TY01222221222221012210120134723011800000000000000000002000000000000000000000000000000000000130000000000000000000000000000 -T320230111111738209120070304WT@WZ@#@#12222212204308100000000 -T12023011111173822024200413921120213110598300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111117382201219900927WTT0B#@P@2222212222221012208110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111738220120150207WTTTYW9#@22222122204301100000000 -T12023011111173830022000409991120412110939300000000000007690490000000000000000000000000000000000222222000000022219012 -T2202301111117383001219880726WTTPT9@Y#2221222222221012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000001 -T320230111111738300120100318WT@W9BYT922212212204305100000100 -T320230111111738300120200711WT@0TWW@P22212222204398100000000120170321WTT9WY0YW22212212204398100000000 -T12023011111173844021000411361120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117384401219940723WTT9PZ@TB2222212222221012212110441623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111738440120220707WTT9P@00922222122204398100000000 -T12023011111173848022000400811120232120000300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111117384802219760304WT@9@ZY0@2222222222213012216120015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111738480120140923WT@#T##PP22222212204303100000000 -T12023011111173849522700408351110213110386300000000000000440010000000000000000000000000000000000222222000000002229012 -T2202301111117384951219880302WT@BB@BPY1222212222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000326 -T320230111111738495120230414WT@W9B09P12222212204398100000000 -T12023011111173854724200403511120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117385473219600712WT@9YWP#Y2222212222225012216110006011069940000000000000000000000000000000000000000000000000000000000000424500000000000000000000 -T320230111111738547120100502WT@##0T@Y22222122206306100000000 -T12023011111173861420800410781110433120000300000000000003900110000000000000000000000000000000000222222000000002229021 -T2202301111117386143219870727WTTBY#9Y92222212222223012212110105011069941000000000000000000000000000000000000000000000000000000000000468000000000000000000000 -T320230111111738614420090711WT@PBT9TT21222212204308100000000 -T320230111111738614120160927WTT#@P#0W22222122208398100000000420100727WT@P@PWTW22222112204306100000000 -T12023011111173862924200402531120313110811300000000000006070570000000000045001000000000000000000222222000000472219042 -T2202301111117386291219900927WT@0@0ZY@2221222222221012212110550523011400000000000000000000000000000000000000000000000000000000160000000000000000000000000046 -T320230111111738629120120312WT@Z#BB@T22212222204304100000120120090302WT@T@Y#PY22212222204307100000120 -T12023011111173863923500407161120233120000300000000040004170990000000000000000000000000000000000222222000000002229022 -T2202301111117386393219670113WT@9TBPPT2222212222222012212110006011069943000000000000000000000000000000000000000000000000000000000000117700000000000000000000 -T320230111111738639120060324WT@00@TB#22222112206310100000000 -T12023011111173864920600400871120313110835300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111117386491219680723WTTYBYWY@2222212222223012213210105021011934000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111738649120060304WT@W9ZW#P22222112204309200000000120050907WT@0P#WY@22222112204310200000000 -T12023011111173870122700408491110113120000300000000000002820010000000000000000000000000000000000222222000000002229012 -T2202301111117387011220030726WT@YY9ZW#2121212222221013211190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111173887924700406632120523211104300000000030001760040000000000000000000000000000000000222222000007122219032 -T2202301111117388791219810205WTTYZ0B992222121222222011214290055521011946000000000000000000000000000000000000000000000000000000000000284800000000000000000000 -T2202301111117388791219810221WTTB0P@#P2222122222221021213290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111738879120060714WTT0@YP9#22221222204311200000000 -T320230111111738879120190108WTTYWP0B@22221212204398200000000120150118WTT0B@BTZ22221222204302200000000 -T12023011111173894120600414771120213110516300000000000004170200000000000000000000000000000000000222222000000002229012 -T2202301111117389411219970921WTTPWZPY02222211222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111738941520130727WTT0#@B9022222122104302106090000 -T12023011111173907222000402371120412110939300000000000007710320000000000000000000000000000000000222122000000002229072 -T2202301111117390721219850904WT@Z@W0@B2222212222221012212110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111739072120060413WTT#9YPZ012222222204311100000000 -T320230111111739072120150323WT@PYZTB#12222112204301100000000120110713WT@T0@00P12222122204305100000000 -T12023011111173922020600406751120213110598300000000000005280090000000000000000000000000000000000222222000000002229072 -T2202301111117392201219830512WT@T0#B#@2222212222221012212110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739220120120121WTT#T##T922222112204303100000000 -T12023011111173922225900408111120533111057300000000000007710350000000000000000000000000000000000222222000000002229022 -T2202301111117392223219620723WT@TBZY#P2122222222214012208110006013069900000000000000000000000000000000000000000000000000000000000000000000000000053500000299 -T320230111111739222120110901WTT##P#TT21222222206305100000000120050418WTTW@Z0YB21222212206311100000000 -T320230111111739222120140401WTTPYZ0#@21222222206302100000000120120123WTT@0Z@YP22222122206303100000000 -T12023011111173927924100402401120423111034300000000003207710100000000000000000000000000000000000222222000000002229012 -T2202301111117392791219940414WTTY00Y9#2222211222222011209290114923011900000000000000000000000000760000000000000000000000000000000000000000000000000000000000 -T2202301111117392791219940727WT@Z#TPY02222212222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739279120200502WTTPYY0B#22222122204398200000000120150204WT@0P#WBW22222112204303200000000 -T12023011111173932520600403591120432110893300000000282506540660000000000000000000000000000000000222222000000002229022 -T2202301111117393252219740904WTT9BT@@W2222221222212012212190105013089900000000000000000000000000000000000000000000000000000000000000000000000000090400000000 -T2202301111117393251219800227WT@WBTW9Z2222222222222022212290660021099925000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739325120200902WT@9W9@TP22222222204398100000000120100512WT@PT#@#B22222222204306200000000 -T12023011111173935525200412081120213110470300000000065005280990000000000000000000000000000000000222222000000002229072 -T2202301111117393551219790513WTTYZT@9@2222212222223012216111320023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739355120080514WTT@Z0WWY22222122207304100000000 -T12023011111173942723500410671120233110611300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111117394273219620523WT@@T#0002222212222224012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000253 -T320230111111739427120060723WTT@PWB9921222112209310100000000 -T12023011111173946920600414251120412110965300000000000007710590000000000000000000000000000000000222222000000002229012 -T2202301111117394691219900927WTT#B#PYP2122222222221012211110431723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739469120170212WTTZ0BTWY21222212204398100000000 -T320230111111739469120220907WT@WT#0T021222212204398100000000120200701WTTZT09@T21222212204398100000000 -T12023011111173950222000410051120413110985300000000000007710180000000000000000000000000000000000222222000000002229012 -T2202301111117395021219830501WTT@0YPWY2222212222225012216110590123010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739502120130704WTTTY@0Z#22222112204302100000000 -T320230111111739502120170923WT@WZPP0W22222112204398100000000120160505WTTT#09YZ22222122204398100000000 -T12023011111173951224200409731120233120000300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111117395123219800407WTT09WZZY2222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000645900000000000000000000 -T320230111111739512120170926WTT0W#0WB22222122207398100000000 -T12023011111173955322000408561120213110611300000000071005280150000000000000000000000000000000000222222000000002229012 -T2202301111117395531219940111WTTZ@@Y#Y2221222222221012216110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739553120220201WTTW@ZWZW22212222204398100000000 -T12023011111173960825900402831120213110611300000000020005280080000000000000000000000000000000000222222000000002229012 -T2202301111117396081220020204WT@WT9BP@1222222222221012211110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739608120220402WTT0#Y#9922222222204398100000000 -T12023011111173965920800411601120313110835300000000046306540040000000000000000000000000000000000222222000000002229012 -T2202301111117396591219830407WTTYT0TB@2222212222225012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739659120120926WTTB#@WP@22222112204304100000000120080313WTTT@0BY#22222112204307100000000 -T12023011111173968124200410371120333120000300000000000005280620000000000000000000000000000000000222222000000002229022 -T2202301111117396813219690709WTT@ZBT0#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000143200000000000000000000 -T320230111111739681120150527WTTYYZ###22222112206398100000000120130112WT@00WTYY22222122206302100000000 -T12023011111173971522500405581120233110539300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111117397153219550326WTTB@#TYW2222212122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000826000000000000 -T320230111111739715120080407WTT@W#T@Y22222112206307100000000 -T12023011111173972724700409381120333120000117300000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111117397273219700523WTT#T@0#Z2222212222225012213110124811069935000000000000000000000000000000000000000000000000000000000000375800000000000000000000 -T320230111111739727120140123WT@90W09Y22222122206302100000000120100312WTTW9YP9P22222112206305100000000 -T12023011111173973322000405321120213110598300000000000005280440000000000000000000000000000000000222222000000002229012 -T2202301111117397331219830918WTTP9T90W2222212222221012216110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739733120140509WT@90Y09B22212112204303100000000 -T12023011111173974824700406701120312110820300000000000006540220000000000000000000000000000000000222222000000002229012 -T2202301111117397481219870223WT@0ZWTTT2222212222223012211110372323010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111739748120150127WT@@T#W0912221222204301100000000120140914WTTYYTPY912222122204302100000000 -T12023011111173977923700414331120712111480109900000010010090630000000000000000000000000000000000222222000000002229072 -T2202301111117397791219910924WTTPB#9T92222212222225012216110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000003130 -T320230111111739779120100207WT@T9PT@912222122204306100000000420090222WTTP@YT9912222112104307109140000 -T320230111111739779120150923WTTBW@BTY12222112204398100000000120140913WTT#B#Y@T12222112204302100000000 -T320230111111739779120220927WT@09P#9W12222122204398100000000120170712WTT0Y9T#Z12222122204398100000000 -T12023011111173978924200405671120313110786132940000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111117397891220000208WTT#Y0@@Z2222122222221012212110184221010114000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739789120220505WTT#YZT0B22211212204398100000000120200923WTTT9WT9922212222204398100000000 -T12023011111173991625600414551120422110939300000000000007710220000000000000000000000000000000000222222000000002229012 -T2202301111117399161219930927WTT9WP#BW2222212222222011212110213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T2202301111117399161219830227WT@WTTWZT2222211222222021212190114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739916120210122WT@WBB#Y022222112204398100000000120160413WTTBPYZYP22222122204398100000000 -T12023011111173996522000411551120113120000300000000000004170080000000000000000000000000000000000222222000000002229012 -T2202301111117399651219950304WT@W#PTT02212222222222013212290095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111173996823500404531120233110492300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111117399683219690127WT@9ZYW#@2222212122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001423000000000000 -T320230111111739968120140904WTTPTY9#B12222112206301100000000 -T12023011111173998020600402141120213110611300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111117399801219890211WT@YP#PPZ2222212222223012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739980120150318WTTP99#BB22222122204398100000000 -T12023011111173998124200414851120533111034300000000000007710080000000000000000000000000000000000222222000000002229022 -T2202301111117399812219840227WT@YYBT9P1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111739981120110427WTTT#PWBW12222222204305100000000120060413WTT09TZT@12222222204310100000000 -T320230111111739981120200723WT@Y0Y0WZ12222122204398100000000120160212WTT9TBY#T12222222204398100000000 -T12023011111174000224500405782120323210835300000000008606540080000000000000000000000000000000000222222000000002229032 -T2202301111117400021219910226WT@@WYTYY2222212222222011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117400021219840123WTTB9#YY@1222211222222021212190015923011800000000000000000000000000000000000000000000000000000000390000000000000000000000000000 -T320230111111740002120220923WTTTT#9TT22222112204398100000000 -T12023011111174012625100407671120333110740300000000000005280900000000000000000000000000000000000222222000000002229022 -T2202301111117401262219810707WT@ZPYW#92222212222213012209110910013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111740126120170726WT@T#WY#W22222122204398100000000120150912WT@YZ#Y9P22222112204301100000000 -T12023011111174019822000411551120313110835300000000000006540250000000000000000000000000000000000222222000000002229012 -T2202301111117401981219870102WT@0YP@PT2221222222221012214110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111740198120170927WT@0BW9T#22212212209398100000251120080124WTTWPB0P022212222204308100000000 -T12023011111174023821200403951120313110740300000000000006270420000000000000000000000000000000000222222000000272219072 -T2202301111117402381219890912WT@T0YPTY2222212222221012212110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000026 -T320230111111740238120190726WT@Y0T9ZT21222222204398100000000120140123WTT#09@T022122122204302100000100 -T12023011111174025725900403711110213110611300000000000003400010000000000000000000000000000000000222222000000002229042 -T2202301111117402571219990426WTT#9Z9WZ2122222222221012212120006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111740257120160424WTTZWPTZT21222212204398100000000 -T12023011111174043525900402631120433110376143750000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111117404352219940307WT@YYBT9P1222222222223012212910025813079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111740435420100112WT@YYBT9P12222222204306900000000 -T320230111111740435120180226WT@B@TYT012222112204398100000000420150901WT@YYBT9P12222222204302900000000 -T12023011111174052223500410671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117405223219660113WT@##PT0#2222212122225012212110025811069911000000000000000000000000000000000000000000000000000000000000131100001119000000000025 -T320230111111740522120070921WTTBYPWT#12222112206309100000000 -T12023011111174060922000412692120423210956300000000510007710020000000000000000000000000000000000222222000000002229032 -T2202301111117406091219760721WT@ZBPYYW2222211222222011216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117406091219810323WTTBPPB#Z2222212222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111740609120130914WT@#BBT#P22222112204302200000000120100711WTT@0#YTP22222122204305200000000 -T12023011111174064922100406981120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117406493219700714WTTTZZZBW2222212222221012212110006011069930000000000000000000000000000000000000000000000000000000000000448200000000000000000000 -T320230111111740649120110702WTT0B0#TB22222122206303100000050 -T12023011111174065424200404052120423210969300000000461507710060000000000000000000000000000000000222222000000002229032 -T2202301111117406541219770522WT@9TPY9W2222212222222011214290075323011800000000000000000000000000000000340001000000000000000000000000000000000000000000000000 -T2202301111117406541219750327WT@9TPY9W2222211222222021214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111740654120120409WT@9TPY9W22222122204303200000000120060212WT@9TPY9W22222112204310200000000 -T12023011111174066120600411031110413110939109530000000003540010000000000000000000000000000000000222122000000002229012 -T2202301111117406611219840904WT@PBTWW92222211222225012216120045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111740661120090108WT@#WY@#Y12222112204305100000000 -T320230111111740661120180904WTTPBTTWZ12222122204398100000000120120413WT@#@#B0W12222112204303100000000 -T12023011111174074724700402991120233110557300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111117407473219810727WT@TW0YTZ2222212222223012210110006011069922000000000000000000000000000000000000000000000000000000000000135200000000000000000000 -T320230111111740747120100121WTTBT#Y9T12222112207306100000000 -T12023011111174086025600412851120333120000300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111117408603219690101WTTBWB#W#2222212222222012213110006011069937000000000000000000000000000000000000000000000000000000000000274900000000000000000000 -T320230111111740860120160218WTT#WTTTY22222112206398100000000520150401WTTTT9Z@922222112106398106090000 -T12023011111174090325100407671120313110835300000000075306540150000000000000000000000000000000000222222000000002229012 -T2202301111117409031219880913WTTYTW#9Y2222212222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111740903120090301WTTT@Y@YY21222212204307100000000120080904WT@PB@@ZY21222222204309100000000 -T12023011111174093221700406141120213110516300000000003003070230000000000000000000000000000000000222222000001102219012 -T2202301111117409321219750721WT@PZPYZ92222212222225012214110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000109 -T320230111111740932520130401WT@PBWBZZ22222112104302109140000 -T12023011111174100223500412161120213110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111117410021219900927WTT0B0YY02221212222221012212110174323010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111741002120160327WT@@0PPPB22212122204398100000000 -T12023011111174110323500410671120312110835300000000000000010180000000000000000000000000000000000222222000000002229072 -T2202301111117411031219800212WTTBB@BW#2221222222221012212110650011011800210000000000000000000000000000000000000000000000000000070000131000000000000000000000 -T320230111111741103120140124WT@TZZWZ#22212222204302100000000120100307WTTY0Z99T22212212204306100000000 -T12023011111174114224700405901120233110631300000000000004170680000000000000000000000000000000000222222000000002229022 -T2202301111117411423219700504WT@TZ#0ZZ2222212222225012216110312913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111741142120080709WTTP#0Y@P12222112206306100000000 -T12023011111174134622000407241120512111195300000000000008110190000000000000000000000000000000000222222000000772219072 -T2202301111117413461219850904WTTZZ@TY#2221222222223012213111120023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000076 -T320230111111741346120090708WT@B9#@T#22212222204305100000000120070901WTTYZ0PP@12212212204308100000000 -T320230111111741346120190502WT@#9@T9P22212222204398100000000120160412WT@Y#TW@922212222204398100000000 -T12023011111174141024200401241120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117414103219730922WT@##Y#@T2222212222223012212120085211069948000000000000000000000000000000000000000000000000000000000000410500000000000000000000 -T320230111111741410120090305WTTZ#W90W22222122206306100000000120070113WT@#YBZZW22222122206308100000000 -T12023011111174146520800405141120213110521300000000000000170300000000000000000000000000000000000222222000005112219012 -T2202301111117414651219920704WT@B9Z#PB2222212222221012212110303021011819000000000000000000000000000000000000000000000000000000000000102100000000000000000000 -T320230111111741465120130213WT@@TT9#T22222112204303100000000 -T12023011111174152725100407671110213110516300000000000002380010000000000000000000000000000000000222222000000002229012 -T2202301111117415271219990404WT@9TPY9W1222212222221012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111741527120230407WTT0Y9@9Y12222112204398100000000 -T12023011111174153724700402992120323210766300000000020006540030000000000000000000000000000000000222222000000002229032 -T2202301111117415371219880204WT@9TPY9W2222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117415371219870913WTT9W09TT1222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111741537120150301WT@9TPY9W22222122204301200000000 -T12023011111174170122000403531120213110493300000000001005280820000000000000000000000000000000000222222000000002229072 -T2202301111117417011219670902WTTTB9#@W2222212222225012216110960021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111741701120060427WTTY#P###22222122204311100000000 -T12023011111174186323500411471120233110511300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111117418633219610401WTTB00BZY2222121222222012298920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000001929 -T320230111111741863120080418WT@WBTYYP22222212206308100000000 -T12023011111174188824700406701120212110516300000000025004170990000000000000000000000000000000000222222000000002229072 -T2202301111117418881219870412WT@WBPW9#2222212222221012210111200023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111741888520060101WT@9P#9PB22222112104309109140000 -T12023011111174202424200407312120423210939300000000020007710100000000000000000000000000000000000222222000000002229032 -T2202301111117420241219880926WT@@ZTWTT2222212222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117420241219880922WT@PY#ZZ@2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111742024120110401WT@9TPY9W22222112204305200000000120090426WT@9TPY9W22222122204306200000000 -T12023011111174205721000411361120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111117420571219690426WT@WP#YYP2222221222222011216190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117420571219820914WT@TT0#9B2222122222222021215190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111742057120080407WTTTBZZPW22222212204308100000000120050418WT@#T#@#@22221212204312100000000 -T12023011111174230022000413732120423210939300000000000007710050000000000000000000000000000000000222222000000002229032 -T2202301111117423001219870911WT@9TPY9W2222221222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117423001219970126WT@9TPY9W2222222222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111742300120210926WT@9TPY9W22222212204398200000000120170918WT@9TPY9W22222222204398200000000 -T12023011111174240120600402131120323110766300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111117424011219850401WTTW@Y9BZ2222212222221011216290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117424011219830918WTTPW99W@2222211222225021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111742401120150923WT@@#WZW#22222122204301200000000 -T12023011111174253725900402721120233110306300000000050004170500000000000000000000000000000000000222222000000002229022 -T2202301111117425372219750512WT@YYBT9P1222212222224012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111742537120100923WT@B9P9T@12222112204306100000000 -T12023011111174259522000408891120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111117425951219840714WTT9Y@WBT2221222222221012210110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111742595120220723WT@Z@BBY922212212204398100000000 -T12023011111174285124700409381120432110939103190000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117428513219720409WT@Y0TTPY2222212222221012213120402011069952000000000000000000000000000000000000000000000000000000000000312000000000000000000000 -T320230111111742851120090113WTT99WYTZ12222222206306100000000 -T320230111111742851120160127WT@WW#Y#912212212206398100000000120140712WTTBYPPW012212212206301100000000 -T12023011111174286925600411521120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111117428691219700704WT@P@#PYY2222211222225012212111220023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111742869120090718WTT9#PT9@12222122204307100000000 -T12023011111174287022000411281120233120000106530000000003960570000000000000000000000000000000000222222002000012219022 -T2202301111117428703219670122WTTTW0@992222212222222012212110006011069940000000000000000000000000000000000000000000000000000000000000361200000000000000000000 -T320230111111742870120150413WTT9TYWPT22222112206301100000000 -T12023011111174294522000403891120433110376300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117429452219980401WT@YYBT9P2222121222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117429452220010318WT@YYBT9P2222122222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111742945120220709WT@W@W9B@22221212204398100000000420190424WT@YYBT9P22222212204398900000000 -T12023011111174295520900411721120233110516300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111117429553219580926WT@PWW0@B2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001482000000000000 -T320230111111742955120160912WT@TYB@YP22222122206398100000050 -T12023011111174302122000404841120713111480300000000000011650160000000000000000000000000000000000222222000000002229012 -T2202301111117430211219890113WT@YTZYTP2221222222225012213110174323010900000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111743021120110101WTTZ@B@T022212222204305100000000120090718WTTBT0@T022212212204307100000000 -T320230111111743021120130112WT@0##P@B22212212204302100000000120120701WTTPW99ZT22212222204304100000000 -T320230111111743021120160122WT@PYT@9W22212212204398100000000120150904WTT#@T09#22212212204301100000000 -T12023011111174316925900405231120213110557300000000000005280130000000000000000000000000000000000222222000000002229072 -T2202301111117431691219780201WTTYZBYZB2222212222221012213110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743169120060918WTT@9@Z9P12222212204309100000050 -T12023011111174317724200414851120333110557300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111117431773219670707WTTTZ@ZZB1222222222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743177120170711WT@ZZBW@T12222122207398100000000120140408WT@WZ9#9012222212207302100000000 -T12023011111174320120600409771120233110671300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111117432015219810423WT@@Y#TW#2222211222225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743201120070126WT@9@YYBY22222122209309100000000 -T12023011111174320222100409491120433110906300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111117432023219900904WT@99@0B92222212222225012212110006011069941000000000000000000000000000000000000000000000000000000000000381300000000000000000000 -T320230111111743202420100723WT@0ZY#0#22222112204306100000200 -T320230111111743202420120411WTTPPZT@022222122204304100000200120100324WTTWPYTW#22222122209305100000000 -T12023011111174327824500405781120213110364300000000019503160200000000000000000000000000000000211122222000000012219012 -T2202301111117432781219870321WT@#0B@@92222212222221012216110570323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743278120090523WT@0ZB#Y922222112204306100000000 -T12023011111174339624200410211120723111480300000000176811650340000000000000000000000000000000000222222000000002229072 -T2202301111117433961219800712WT@0WYZPZ1122221222221011216190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117433961219840123WT@Y#YY#Z2222212222225011216110920023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111743396120090318WT@WBP#PB11222212204306100000000 -T320230111111743396120140413WT@0ZB#WW11222222204302100000000120110409WTT@BZWB011222212204305100000000 -T320230111111743396120210926WTTBYZBYY11222222204398100000000120170122WTTT0Z#ZW11222222204398100000000 -T12023011111174343123500407161120433110826300000000000006540600000000000000000000000000000000000222222000000002229022 -T2202301111117434311219760909WTT@@Z@TY2222212222225012213110640023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743431120060909WTTZTTW@@22222212204310100000000 -T320230111111743431120110407WT@W##P9B22222112204305100000050120070309WT@B#@WBY22222122204308100000050 -T12023011111174352822900401031120313110761300000000200006540040000000000000000000000000000000000222222000000002229012 -T2202301111117435281219990905WT@PBYYBY2222222222221012211210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743528120210301WTT@B#ZTB12222222204398100000000120140721WT@PW#0Z912222212204301100000000 -T12023011111174363720600404121120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117436372219840714WT@W9PP0T2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111743637120190923WTT0YTY0922222122204398100000100120130313WTTB@9B#022212112204302100000000 -T12023011111174373724200410371120333110740300000000000005280420000000000000000000000000000000000222222000000002229022 -T2202301111117437371219960211WTTBP#TWP2222212222221012208110431723099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743737420190408WTT0#W#@Y22222122104398106090000120170913WT@P90ZPB22222122204398100000000 -T12023011111174375922000414461120233110376300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111117437592219960105WT@YYBT9P1222212222221012216910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743759120210112WTT9@0P0Z12222222204398100000000 -T12023011111174389522000411981120313110835300000000000006210160000000000000000000000000000000000222222003200012219012 -T2202301111117438951219930313WT@99P#P#1222211222225012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743895120190118WT@T99P0912222112204398100000000120180713WTTW9Z#BZ12222112204398100000000 -T12023011111174392124200404281120313110766106690000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111117439211219850923WT@Z#9@YZ2222212222223012213110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743921120190709WTTP#TPYY22222122204398100000000120170723WT@B@W#Z922222112204398100000000 -T12023011111174396424200414851120712111480300000000000011650080000000000000000000000000000000000222222000000002229042 -T2202301111117439641219880408WTTWW#Z@T1222212222225012211120411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111743964120170327WT@Y@P00B12222112204398100000000120130112WTT#BYYWT12222112204302100000000 -T320230111111743964120200505WT@#BP0Y#12222122204398100000000120190513WTT9ZY#W912222122204398100000000 -T320230111111743964120220313WT@9TPY9W12222112204398100000000120210918WT@9BBBZ912222112204398100000000 -T12023011111174403723700414331120333110611300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111117440372219880304WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111744037120090907WT@9Z#09T22222222204306100000000120070518WT@PBW0PB12222222204309100000000 -T12023011111174405624700413891120313110761300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111117440561219920423WTT@BTTBY2222212222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111744056120130727WT@PY@99T22212212204303100000000120120314WTTZ@PP9W22222212204304100000000 -T12023011111174406323700414791120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117440633219650112WT@YYBT9P2222222222222012214910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111744063120040121WTTY#T@ZY12222222207312100000000 -T12023011111174413824700401281120213110611300000000004004820050000000000000000000000000000000000222222000000462219012 -T2202301111117441381219820426WTTW0B0PW2222211222225012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000095 -T320230111111744138120120312WT@PTZZB922222122204303100000000 -T12023011111174420821700406141120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111117442081219990108WTTWW9@Y#2222212222222012211110263422011700000000000000200000000000000000000000000000000000000000210000000000000000000000000000 -T320230111111744208120220305WT@9TPY9W22112122204398100000000 -T12023011111174424324200414021120313110835300000000000006540080000000000000000000000000000000000222122000000002229072 -T2202301111117442431219970101WTT#YBWTW1222212222221012216120660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111744243120190413WTT9PP9@B22212212204398100000000120170711WTT#P9Y##22212212204398100000000 -T12023011111174430925900402231120333120000300000000000005280300000000000000000000000000000000000222222000000002229022 -T2202301111117443093219900301WTTTWBZWZ1122221222221012213110006013069900000000000000000000000000000000000000000000000000000000000000866000000000000000000054 -T320230111111744309120120911WTTTTBY9@12222222207304100000000120100909WTT@TZ@@#11222212207305100000000 -T12023011111174433822700408351120313110835300000000001506540080000000000000000000000000000000000222222000000002229012 -T2202301111117443381219800908WTTYBPY@01222222222221012212220223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111744338120110327WT@TBYZTB12222212204303200000000120100524WT@W9PWBZ12222212204303200000000 -T12023011111174434425900402121120413110959300000000024005300440000000000000000000000000000000000222222000002412219012 -T2202301111117443441219930424WT@YPBT0Z1222222222221012210110441621010614000000000000000000000000000000000000000000000000000000000000086100000000000000000025 -T320230111111744344120120412WTTZWBWWW12222212204304100000000 -T320230111111744344120170102WTTZB@0T@12222122204398100000302120130922WTTYWPYYY12222212204303100000000 -T12023011111174458124200414851120712111480122750000007811650160000000000000000000000000000000000222222000000002229012 -T2202301111117445811219870223WTTPW99TW2122222222221012216110501023011400000000000000000000000000000000000000000000000000000000270000000000000000000000000000 -T320230111111744581120120923WTT@TW90Y21222122204304100000000120070418WTTBBZ#BT22212222204309100000000 -T320230111111744581120180712WTTY0ZZZW22222122204398100000000120170912WTTY0PB#B22222122204398100000000 -T320230111111744581120210313WT@@0#P9Y22222122204398100000000120190312WT@BYB0Y#21222222204398100000000 -T12023011111174470022000402371120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111117447001219930918WT@B#@0BY2221221222221012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111744700120160723WT@0PT@#W22212122204301100000000 -T12023011111174471524200411401120233120000300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111117447153219770912WTTP9T@T@2222212222225012212110035713069900000000000000000000000000000000000000000000000000000000000000175200000000000000000000 -T320230111111744715120190109WT@WWYZYY12222122207398100000000 -T12023011111174475725600411701120413111034300000000010007710560000000000000000000000000000000000222222000000002229012 -T2202301111117447571219880723WTT@#PTB92222212222225012212120273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111744757120120127WTTW@@W0T22122222204303100000000 -T320230111111744757120150923WTTZ9P0ZY22222122204301100000000120140101WTTT9PYW#22222122204302100000000 -T12023011111174476820800414651120233120000300000000000004170970000000000000000000000000000000000222222000000002229022 -T2202301111117447683219560427WT@WBWPB92222212122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001917000000001260 -T320230111111744768120100112WTTB#Y#BP22222112206304100000000 -T12023011111174480425600400661110323110740300000000000001730010000000000000000000000000000000000222222000000002229012 -T2202301111117448041219990924WT@PBZ0#@2222211222222011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117448041219940718WT@PYYPZ@2222212222222021212190025821011808000000000000000000000000000000000000000000000000000000020000054100000000000000000000 -T320230111111744804120210909WT@00T@Z@22222122204398100000000 -T12023011111174481820600407031120312110608300000000000006540660000000000000000000000000000000000222222000000002229072 -T2202301111117448181219900323WTT9PBB9T2222212222225012211110990023010900000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111744818120160313WT@YPZ@TP22212222204398100000000120110513WTT0PWP9#22222122204304100000100 -T12023011111174496222000407242120233220000300000000000004170700000000000000000000000000000000000222222000000002229022 -T2202301111117449623219530913WT@@#00#P2222121222222012214920015913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111744962120050918WT@9P@WY922221212206308900000000 -T12023011111174499522000406191120333110376300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111117449952219850312WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000200 -T320230111111744995120190121WT@#9T#YB12222212204398100000000420060713WT@YYBT9P12222212204309900000000 -T12023011111174502122000407831120213110611102000000150505280290000000000000000000000000000000000222222000000002229012 -T2202301111117450211219940708WT@PW9@YT2222212222221012213110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111745021120200123WTT@@TPYB22222222204398100000000 -T12023011111174517525000413201120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111117451751219960308WT@0@WB0B2222212222222011215290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117451751219920307WTTP9#WBW2222211222222021213290105021011935000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111745175120170712WT@0PYYP922222122204398200000000 -T320230111111745175120210207WT@Y0BZ9#22222122204398200000000120170712WT@#YZ0P#22222122204398200000000 -T12023011111174518421200414781110212110493300000000000002210100000000000000000000000000000000000222222000000002229012 -T2202301111117451841219810722WTTT#Y0ZY2222212222221012213110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111745184120060118WT@@Y9Y##22222122204310100000000 -T12023011111174532523500411471120312110835300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111117453251219960911WTT9BWTW#2222212222221012206120194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111745325120210124WT@9##WP@22122222204398100000000120200918WTT9#@PW922122222204398100000000 -T12023011111174533122000413731120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117453312219700102WT@P@Y@BY2222211222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111745331120080902WTTTP99WW22222112204308100000000 -T12023011111174536125900402831120213110559108470000020302280120000000000000000000000000000000152122222000001482219012 -T2202301111117453611219840404WT@BYZTZZ2222211222221012212110134721011210000000000000000000000000000000000000000000000000000000000000058600000000000000000000 -T320230111111745361120170327WT@#Y9Y9T22222122204398100000000 -T12023011111174540022000412231120213110598300000000184805280040000000000000000000000000000000000222222000000002229012 -T2202301111117454001219890408WTT@B99@02222212222225012214210055523011800000000000000000000000000000000250002000000000000000000020000000000000000000000000000 -T320230111111745400120140118WT@BP#9@Z22222122204303200000000 -T12023011111174550220600411641120333110776300000000000005280680000000000000000000000000000000000222222000000002229022 -T2202301111117455023219860312WTT#0#P@Y2222212222225012216110184211069903000000000000000000000000000000000000000000000000000000000000015000000000000000000000 -T320230111111745502120140708WTT909Y@Z22222122207301100000000120080211WTTTBYZBT22222112207306100000100 -T12023011111174574023500402711120213110611300000000000003160290000000000000000000000000000000211122222000000012219012 -T2202301111117457401219800718WTTYWBWTY2222212222225012213110303023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111745740120170507WT@Y0PBB022222122204398100000000 -T12023011111174593621700406141120412110939128540000002007710430000000000000000000000000000000000222222000000002229012 -T2202301111117459361219920127WT@##Y0BT1222212222221012212110431723010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111745936120130401WTTZ90B9T12222122204302100000000 -T320230111111745936120220707WTTTTWT#B12222112204312100000000120170127WTTPZY9T012222122204398100000000 -T12023011111174601424700406701120333110611300000000000005280920000000000000000000000000000000000222222000000002229022 -T2202301111117460142219930113WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000425 -T320230111111746014120200901WT@YP@0WT12222112204398100000000120130104WTTW00BW@12222112204302100000000 -T12023011111174605524100405611120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117460553219470113WTT9Z@B@P2222212112222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000846000000001050 -T320230111111746055120070104WTTTBTY0#22222122206309100000000 -T12023011111174616620900411721120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117461662219900723WT@TTPY@Y2222212222211012212111040013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111746166120070307WTTTTYTBZ12222112204308100000000 -T320230111111746166420200905WT@99YYWW22222122204398100000000120080308WTTW@PWW912222112204307100000000 -T12023011111174619923500405981120233120000300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111117461993219700207WT@Y#YBY#2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000775000000000000000000000 -T320230111111746199120080901WT@0WYWB@22222122209307100000000 -T12023011111174621925900402721120423110988300000000060001680130000000000000000000000000000000000222222000006032219012 -T2202301111117462191219900124WTT@BPZ##1222211222221011208290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117462191219910513WTTBB#0ZW1222222222222021212190144621011822000000000000000000000000000000000000000000000000000000000000120400000000000000000000 -T320230111111746219120210512WTT00#BPY12222222204398100000000120180427WTTYZP#Y#12222212204398100000000 -T12023011111174624525100411861120313110835300000000000006540730000000000000000000000000000000000222222000000002229072 -T2202301111117462451219880126WT@#WTZ@T1222212222221012211110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746245120120914WTT@Z0TYY22222222204302100000000120100901WT@9W#P#922222112204305100000000 -T12023011111174634420600404121120212110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111117463441219920721WTTZ0T@B02222212222221012210120124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746344120220918WT@@WP#WB22222112204398100000000 -T12023011111174640322000405321110413110939300000000000005220990000000000000000000000000000000000222222000002492219072 -T2202301111117464031219880413WTT@#09#B2222212222223012213111390023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746403120080407WT@P#TTB@22222112204309100000000 -T320230111111746403120140726WTTB@@BBT22222112204303100000000120130401WTT@W0ZTB22222112204304100000000 -T12023011111174640620600414161120413111034300000000377907710660000000000000000000000000000000000222222000000002229072 -T2202301111117464061219920418WTTZ9#Z092222212222221012216110620021011700220000000000000000000000000000000000000000000000000000020000000000000000000000002036 -T320230111111746406120120304WT@Z#Y#BB22222112204302100000000 -T320230111111746406120170713WTT9WWY#T22222112204398100000000120160404WT@W9PP#022222112204398100000000 -T12023011111174674624700408301120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117467462219800426WTTWT#9T#2222212122213012210110660013109900000000000000000000000000000000000000000000000000000000000000000000000469046500000000 -T320230111111746746120060924WT@W0PP0B22222122204310100000000 -T12023011111174681725900402831120513111116300000000000008880400000000000000000000000000000000000222222000000002229012 -T2202301111117468171219960418WTTP@BY#01222222222221012211110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746817120160723WTTZ#@0#Y12222212204398100000000120140202WT@PTBW9P12222212204301100000000 -T320230111111746817120220527WTT@WY@WP12222212204398100000000120190727WTT0##0Y#12222212204398100000000 -T12023011111174687822000407412120423210939300000000000007710050000000000000000000000000000000000222222000000002229032 -T2202301111117468781219820305WTT@@@0TB2222211222222011209290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117468781219880922WT@#YB@Z92222212222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746878120080721WT@WPB@0W22222112204308200000000120060722WT@0@PW#T22222112204309200000000 -T12023011111174689122000406191120333110611300000000105005280270000000000000000000000000000000000222222000000002229022 -T2202301111117468912219820327WT@YYBT9P1222211222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746891120070324WTT@WP0TB12222112204308100000055120050318WTT0WBBWB12222122204311100000055 -T12023011111174692724200402981120413110939300000000090004620180000000000000000000000000000000308122222000000012219012 -T2202301111117469271219860704WTTPZ90#W2222211222225012212110194123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746927120060721WT@YPTZZ922222122204309100000000 -T320230111111746927120160324WT@0@T0@#22222112204398100000000120120227WT@W@P9TY22222112204303100000000 -T12023011111174695324700406631120723111480300000000000011650050000000000000000000000000000000000222222000000002229012 -T2202301111117469531219790111WTTB0ZZWY2222211222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117469531219830524WT@B0TW9B2222212222222021213290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746953120040324WT@T0Z9YY22222122204311200000000 -T320230111111746953120080327WTTPBPBW922222112204307200000000120060413WTTBZP@ZP22222122204309200000000 -T320230111111746953120140501WTTYW0@9P22222122204302200000000120110323WT@T0W0BP22222122204305200000000 -T12023011111174695724200407272120423210959300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111117469571219850101WT@BYZY@#2221222222222011214290025821011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117469571219840704WT@YTYWZZ2221221222222021214290025821011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746957120180101WTTYB@PB#22212212204398200000000120160923WT@@YB#BP22212222204398200000000 -T12023011111174696920800411931120213110598300000000000005280470000000000000000000000000000000000222222000000002229012 -T2202301111117469691219970324WTTZPWYT91222222222221012212110471321011723000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111746969120200227WT@YZW@9Z12222112204398100000000 -T12023011111174713724200414851120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117471371219880918WTTPBP#B02221222222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111747137120090912WTTBP#B@@12212222204308100000000 -T12023011111174716820600407031120333110835300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117471683219660309WT@PWBZ@#2122222222223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111747168120070105WT@#Z9@WY21222222206308100000000120060102WT@ZPZZZ@22222122206310100000000 -T12023011111174728322000407241120433110704300000000004106540140000000000000000000000000000000000222222000000002229022 -T2202301111117472832219890912WT@YYBT9P1222222222225012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111747283120110321WTTY9TPPW12222222204304100000000 -T320230111111747283120140909WTTBPPWTB12222212204302100000000120120312WT@T#T@TB12222212204303100000000 -T12023011111174731120400409801120233120000300000000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111117473113219510926WT@WBTTYB2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001706000000002000 -T320230111111747311120040113WT@ZB@#9T22222112206312100000050 -T12023011111174735524200414721120212110611300000000004505280950000000000000000000000000000000000222222000000002229072 -T2202301111117473551219880326WT@#9@@9W2222212222221012211111140023010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111747355120160101WTTWTYBPY21222212204398100000000 -T12023011111174735622000405181120212110598300000000000105280080000000000000000000000000000000000222222000000002229012 -T2202301111117473561219800502WTT@99PYT2222212222222012214220095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111747356120160408WT@9WZZTW22222122204398100000000 -T12023011111174740325900403551120433110893300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117474032219840702WT@ZW#W#B1222222122211012210110790013109900000000000000000000000000000000000000000000000000000000000000000000000827010700000000 -T320230111111747403120050118WT@TTB0##12222122204310100000000 -T320230111111747403120100101WT@WPT#0#12222122204305100000000120090727WTTPYB#0@12222122204307100000000 -T12023011111174743922700406181120413111034109340000003004820310000000000000000000000000000000000222222003802512219012 -T2202301111117474391219900405WTTZPZ@901222222222221012212110322821011808000000000000000000000000000000000000210001000000000000000000050000000000000000000000 -T320230111111747439120130121WT@PB#P#Z12222222204303100000000 -T320230111111747439120200904WTTPB0BZ012222112204398100000000120150707WT@BZ#0B912222122204302100000000 -T12023011111174747725000406021120423110941300000000013207710080000000000000000000000000000000000222222000000002229012 -T2202301111117474771219830121WTTBBTY0T1222211222222011213190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117474771219830107WT@9ZBZ@Z2222212222222011216110095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111747477120120326WT@0#ZW#T22222122204303100000000120110407WTTPZZ9@T22222112204305100000000 -T12023011111174748924100402401120323110835300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111117474891219910914WTTPWPT0Y1222222222222011212110213923011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111117474891219840127WT@#9#TP#2222212222222021209190392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111747489120210213WTTZ9PYYZ12222122204398100000000 -T12023011111174750025900406651120213110611300000000000205280080000000000000000000000000000000000222222000000002229012 -T2202301111117475001220000513WT@Z0ZTB91222222222221012216110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000003455 -T320230111111747500120210207WTT@WZ#ZP12222212204398100000000 -T12023011111174762822000408891120313110766300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111117476281219930726WTT#YPWP92222212222223012298210105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111747628120160126WT@YPZYTP22222122204398200000000120130123WTT@BZYP@22222122204398200000000 -T12023011111174780822000411321120213110611300000000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111117478081219890309WTTZTWP092222212222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111747808120210123WTT##W@WB12222122204398100000000 -T12023011111174784924700405901110213110611300000000000004590010000000000000000000000000000000000222222000000002229012 -T2202301111117478491219940727WTT9ZYBBB2222212222221012212110025823010100000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111747849120220326WTTY@WPTZ22222122204398100000000 -T12023011111174792720800411601120212110516300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111117479271219820726WT@WZ9@PZ2222212222225012212120540621011941000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111747927120110718WT@B09#9922222112204303100000000 -T12023011111174797422500410151120412110957300000000000006930080000000000000000000000000000000000222222007700012219012 -T2202301111117479741219890227WT@9#0ZP02222212222221012212120590123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111747974120070318WT@PYZ@YP22222122204309100000000 -T320230111111747974120200209WTTB@ZY0B22222122204398100000000120160921WT@ZB@@0P22222112204301100000000 -T12023011111174798923500407162120323210835300000000390006540080000000000000000000000000000000000222222000000002229032 -T2202301111117479891219840226WT@TY9@#B2222211222222011214290085223011800000000000000000000000000000000040000000000000000000000200000000000000000000000000000 -T2202301111117479891219880509WTT0@#ZZ92222212222222021214290085223011800000000000000000000000000000000130000000000000000000000190000000000000000000000000000 -T320230111111747989120160914WTT#P9WTP22222122204398200000000 -T12023011111174800121400408021110233110188300000000000003490010000000000000000000000000000000000222222000000002229021 -T2202301111117480013220040409WTTZZ0P#W1222222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748001120100118WT@PWZ@T022222222207304100000000 -T12023011111174804822000412691120412110939300000000000006540290000000000000000000000000000000000222222000000002229012 -T2202301111117480481219850112WT@TZB0BP2221222222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748048120060927WTT0@9WPB22222122204309100000050 -T320230111111748048120130123WTT@PBBPZ22212222204302100000000420090126WT@9WPTBZ22212212104306109140000 -T12023011111174806422000406211120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111117480641219970323WTTYT@PZZ2222212222221013216190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111174816722000411552120412211034129100000000007710360000000000000000000000000000000000222222000000002229032 -T2202301111117481671219920721WT@TYZY092222222222222012206210263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748167120140912WT@9TPY9W22222222204301200000000 -T320230111111748167120150723WTTYWBBP022222112204301200000000120150723WT@BB@0YT22222212204301200000000 -T12023011111174821424200402502120233210611300000000000005280790000000000000000000000000000000000222222000000002229022 -T2202301111117482141219770423WTTYWZ9TB1222211222221012212910540623099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748214120120311WTT@TW@YY12222122204302100000050 -T12023011111174822424200404281120532111043300000000000008880280000000000000000000000000000000000222222000000002229022 -T2202301111117482241219890923WTTT9000B2222212222221012211110950023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748224120110912WT@PP@#WW12222212204305100000000120080226WTT9#ZWPB22222212204308100000000 -T320230111111748224120210412WT@@Y@Z0@22222222204398100000000120120118WTT@YYZP#22222222204304100000000 -T12023011111174823123500411471120213110611300000000010005280070000000000000000000000000000000000222222000000002229012 -T2202301111117482311219980127WT@0TT00B1222222222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748231120210307WT@WYZYP912212122204398100000000 -T12023011111174824322000412012110313210740300000000000001260010000000000000000000000000000000000222222000000002229032 -T2202301111117482431219920207WT@9TPY9W1222222222223012216220025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748243120150924WT@9TPY9W12222222204302200000000120130413WT@9TPY9W12222212204304200000000 -T12023011111174825220600406751120723111490300000000000011650050000000000000000000000000000000000222222000000002229012 -T2202301111117482521219780423WT@BT9#@02221221222222011212290065423011800000000000000000000000000000000000000000000000000000000170000000000000000000000000000 -T2202301111117482521219920423WT@ZYZPPB2221222222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748252120110313WT@YZW90Z22212222204398200000000 -T320230111111748252120150107WT@PT0##@22212212204398200000000120130727WTTW@TW9B22212212204398200000000 -T320230111111748252120210124WT@T#PW#022212222204398200000000120170909WT@Z9#Y9B22212212204398200000000 -T12023011111174838725000414191120233120000300000000000904170260000000000000000000000000000000000222222000000002229022 -T2202301111117483872219950704WT@YYBT9P1222222222225012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748387120150114WT@B0B#PT12222212204398100000000 -T12023011111174839522500405581120533110939300000000000007710030000000000000000000000000000000000222222000000002229022 -T2202301111117483952219910912WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748395120130301WT@T0W09912222122204302100000000120090412WT@99Z9WT12222122204307100000000 -T320230111111748395120170308WTTWWBYZ012222112204398100000000120160101WT@ZYPWP#12222112204398100000000 -T12023011111174853624200414851110113110376300000000000001210010000000000000000000000000000000000222222000000002229042 -T2202301111117485361219990121WT@W@T#B@2222212222221013210190006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111174855223500411471120613111116300000000000005570090000000000000000000000000000000000222222000003312219012 -T2202301111117485521219960212WT@9TPY9W1222211222222012212290095121011723000000000000000000000000000000000000000000000000000000000000090300000000000000000000 -T2202301111117485522220000712WT@YYBT9P1222212222222022208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748552120180322WT@#YWBW#12222122204398100000000120170702WTTY9BW@T12222112204398100000000 -T320230111111748552120220123WTTT#@B9012222112204398100000000120200926WTT@0P#0#12222122204398100000000 -T12023011111174858522000411282120423210939300000000000000390320000000000000000000000000000000000222222000007322219032 -T2202301111117485851219880923WT@ZPZ0@Z2222211222222011215290243621011947000000000000000000000000000000000000000000000000000000000000292600000000000000000000 -T2202301111117485851219900118WT@BY#9B#2222212222222021215290243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748585120170314WT@0WY@BY22222112204398200000000120150426WT@#WTYWY22222122204398200000000 -T12023011111174862322000405841120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111117486233219720512WTT@YBW0#2212222222221012203110402011069927000000000000000000000000000000000000000000000000000000000000376800000000000000000000 -T320230111111748623120220405WTTWPBT9B22212212206398100000000 -T12023011111174878024500405781120213110604300000000000005280610000000000000000000000000000000000222222000000002229072 -T2202301111117487801219870421WT@9@W@PP2222212222221012216110620023011400000000000000000000000000000000000000000000000000000000300000000000000000000000000578 -T320230111111748780120160527WTTPY@#YP22222122204398100000000 -T12023011111174881420600400871110213110611300000000000004930990000000000000000000000000000000000222222000000352219012 -T2202301111117488141219810413WT@@@Y9#T2222212222224012216110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748814120070912WT@BBWPT@12222122204309100000000 -T12023011111174883920600402131120213110611300000000000004140600000000000000000000000000000000000222222000000032219072 -T2202301111117488391219860104WT@09YZZZ2222212222221012216110610023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000002 -T320230111111748839520070123WT@#YTW0Z22222112104307109140000 -T12023011111174884724200400491120213110611300000000000004170100000000000000000000000000000000000222222000000002229012 -T2202301111117488471219820918WTTB0WP0T2222212222223012216210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748847520150311WT@0#ZP0B22222112104398101300804 -T12023011111174888522000406191120313110741120300000000105600630000000000000000000000000000000000222222000000942219072 -T2202301111117488851219980227WT@#B09#P2221222222221012212110630021011807000000000000000000000000000000000000000000000000000000000000037400000000000000000000 -T320230111111748885120210924WT@BPWTB922212222204398100000000120160912WTTTT@90922212212204301100000000 -T12023011111174893825600411521120422110939300000000000901430450000000000000000000000000000000000222222000006282219012 -T2202301111117489381219950907WT@T0TPZW2222212222222011216190332721011800190000000000000000000000000000000000000000000000000000040000125500000000000000000000 -T2202301111117489381219960501WTTTYBPTT2222211222222021212190332723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111748938120210123WTT#PT@PW22222112204398100000000120150702WTTB000@Z22222112204398100000000 -T12023011111174899720600402141120233110516300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111117489972219820704WT@TYY@TW1222212222211012212110293113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111748997120050201WT@#W0TPB22222112204310100000050 -T12023011111174908625900402721120413110893300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111117490861219740227WT@YZWTPZ1222212222223012208112530023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111749086120060912WTT@@09TZ22222112207310100000000 -T320230111111749086520100913WT@TPBT0Z22222112107305109140000120090421WTTP90P0P22222222207307100000000 -T12023011111174911022000402321110312110776300000000000005480020000000000000000000000000000000000222222000000002229012 -T2202301111117491101219900311WTTPT@@ZP2221222222221012212110550523010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111749110120210423WTTTTZY@@12212212204398100000000120170313WT@9#TZ@B22212222204398100000000 -T12023011111174921225600411701120313110766300000000000513080160000000000000000000000000000000000222222000000002229012 -T2202301111117492121219680412WTTZ#YPWP2222212222225012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111749212120080114WTTTY@90B22222122204308100000000120050308WT@0#TZZ@22222112204310100000000 -T12023011111174922024500407641120212110611101250000000505280170000000000000000000000000000000000222222000000002229012 -T2202301111117492201219930908WTT@@T#9#2222211222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111749220120160409WTT0Z#9#922222112204398100000000 -T12023011111174930422000414461120213110548300000000002003960310000000000000000000000000000000132222122000000002229012 -T2202301111117493041220010107WT@WW@P#@1222222222221012211120303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111749304120190427WT@YBZPYW12212212204398100000000 -T12023011111174931424200410211120333120000300000000000005280700000000000000000000000000000000000222222000000002229022 -T2202301111117493143219530126WT@@PYPBT2222212122223012212110006011069940000000000000000000000000000000000000000000000000000000000000292400001798000000000000 -T320230111111749314120160723WT@@ZY9#022222122206398100000000120120718WT@BP9P9012212212206304100000000 -T12023011111174932825900406081120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117493283219740512WTT0ZZYTW2122222222224012209110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111749328120090127WTT9Y9WTZ12222212207306100000000 -T12023011111174942120600414771120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117494213219530424WT@Z#Z0WZ2222211122225012213110283213069900000000000000000000000000000000000000000000000000000000000000000000001292000000000000 -T320230111111749421120110727WT@99@99Y22212212206303100000000120090401WTTY00Y9T22212222206305100000000 -T12023011111174947020600409001120213110611300000000003001240310000000000000000000000000000000111122222000002932219012 -T2202301111117494701219880727WTT9P9Y9Z2222212222221012213110322823010200000000000000000000000000000000000000000000000000000000000000117000000000000000000000 -T320230111111749470120080113WTT0P9#0922222112204306100000000 -T12023011111174949524200404281120312110766111000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111117494951219860126WT@9YWTWT1222212222221012212110233723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111749495120220722WT@9TPY9W12222222204398100000000120190923WT@@WZ@9#12212212204398100000000 -T12023011111174951722000411981120412110939300000000000007710100000000000000000000000000000000000222222000000002229072 -T2202301111117495171219820418WTTY9#9#Z2221222222221012209111000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111749517120130426WTTZTPT9P22212222204303100000000 -T320230111111749517120210322WTTTW@P9922212212204398100000000120200318WT@#WBB9W22212222204398100000000 -T12023011111174980820300408521120213110598300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111117498081219830111WT@WW#9WY2122222222225012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000208 -T320230111111749808120210108WT@9TPY9W11222212204398100000000 -T12023011111174994520700402051120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117499452219690509WT@#BZ#9T2222212122211012210110810013109900000000000000000000000000000000000000000000000000000000000000000000000522031200000000 -T320230111111749945120050504WTTB9Y#0Z22222122204311100000050 -T12023011111174995120300400971120233120000300000000000004170860000000000000000000000000000000000222222000000002229022 -T2202301111117499513219560723WTTW09WZ#2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111749951120100121WT@Y0YZW@22222122206304100000000 -T12023011111174999920600414771120422110939300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111117499991219830711WTTBBW@@02222212222222011216110204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117499991219720326WTTWT0WT@2221221222222021212190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111749999520200704WTTBB@#0T22212122104398109140000520200704WT@#@T0PZ22212122104398109140000 -T12023011111175008122700413181120333120000116990000000005280250000000000000000000000000000000000222222000000002229022 -T2202301111117500813219830312WT@9ZYT@Z2222212222221012214110006011069923000000000000000000000000000000000000000000000000000000000000716400000000000000000000 -T320230111111750081120180908WTTBPP09@22222122207398100000000120160414WTTPTY9YW22222112207398100000000 -T12023011111175012920600404491120312110740300000000030005280370000000000000000000000000000000000222222000000002229072 -T2202301111117501291219770423WTTP@TTZB2222212222225012211110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111750129420150707WT@YZZ#ZY22222112104398106090000120070321WT@Z@B0WT22222122204307100000000 -T12023011111175016923700414331120233120000300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111117501693219850923WT@9YYYPW1222222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000298400000000000000000000 -T320230111111750169120050121WT@Y@P9YW12222212207309100000000 -T12023011111175017323500404531120313110740300000000012006540130000000000000000000000000000000000222222000000002229012 -T2202301111117501731219910918WT@TP0ZY@1222222222221012212110431721011800170000000000000000000000000000170000000000000000000000000000109100000000000000000422 -T320230111111750173120190308WT@TB#B#W12222212204398100000000120100513WT@Z90Z@T12222222204305100000000 -T12023011111175022223500402711120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117502221219930713WT@B0Y@TY2222212222225012212210114923011400000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111750222120130127WTTPY@BZ#22222112204302200000000 -T12023011111175023320600403592120323210724300000000000006540270000000000000000000000000000000000222222000000002229062 -T2202301111117502331219670421WT@B0BPT02222122222222011211990880023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117502331219670327WTTY@YPZ02222121222222021212990820023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111750233120050127WT@0#ZB#W22221212204311900000000 -T12023011111175024021100402261120432110893300000000000006540820000000000000000000000000000000000222222000000002229022 -T2202301111117502402219640223WTT#@B9T02222211222215012207110730013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111750240120050104WTT0PBBWW11222122204309100000000 -T320230111111750240120090405WT@ZZBYZT11222122204306100000000120070322WTTT@W9B#11222122204307100000000 -T12023011111175032724700409321120432110939300000000000006540280000000000000000000000000000000000222222000000002229022 -T2202301111117503272219760401WTTT#9ZBT1222211122211012212110015911109910000000000000000000000000000000000000000000000000000000000000077100000487035500000000 -T320230111111750327120110511WT@####YW12222122204304100000000 -T320230111111750327120160113WT@0YZP0B12222122204398100000000120130707WTTP#BWBY12222112204302100000000 -T12023011111175035622000410051120423110939300000000100007710030000000000000000000000000000000000222222000000002229012 -T2202301111117503561219920711WTT0BZZ#Y2222211222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117503561219980724WT@0Z9ZTT2222212222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111750356120210107WTTP0Z0PZ22222122204398200000000120190111WT@Z#PY#022222122204398200000000 -T12023011111175044323500404341120213110598300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111117504431219770127WTT@00Z@02222212222223012212110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111750443120090413WTT0W0@W@22222112204306100000000 -T12023011111175046722000409871120413110939132530000006000940320000000000000000000000000000000031222122000006462219012 -T2202301111117504671219920412WTTPTBWY02221222222221012212120332721011730000000000000000000000000000000000000000000000000000000000000129000000000000000000000 -T320230111111750467120120723WTT9Z#9Y@22212222204303100000000 -T320230111111750467120190509WTTZ909P022212212204398100000000120150207WTTBBYBB012212222204301100000000 -T12023011111175053421000411361120213110598300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117505341220010409WTTYP@B##2122222222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111750534120210704WTTZ00WB#21222222204398100000000 -T12023011111175069822000407412120213210598300000000010005280030000000000000000000000000000000000222222000000002229032 -T2202301111117506981219710107WT@9TPY9W2222222222223012214210045623011800000000000000000004000000000000000000000000000000000000360000000000000000000000000000 -T320230111111750698120110421WT@9TPY9W22222222204304200000000 -T12023011111175088020600401641110632111434300000000000008020130000000000000000000000000000000000222222000000862219021 -T2202301111117508802219910305WT@@Z#YTZ2222212222211012212110075313089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111750880120090312WTTPBW#Y922222122204305100000000 -T320230111111750880120140727WT@009T@P22222122204301100000000120120701WTTZ0BTYB22222112204303100000000 -T320230111111750880120190518WT@@9@ZY@22222112204398100000000120160923WTTPBW0TZ22222112204398100000000 -T12023011111175091624200403941110313110835300000000000004210130000000000000000000000000000000000222222000002332219012 -T2202301111117509161219910323WT@P9TW@#2221222222225012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111750916120200326WTTTPBB@P22212212204398100000000120180112WTTP0YWPW22212222204398100000000 -T12023011111175094522100401271120312110806300000000001106540810000000000000000000000000000000000222222000000002229072 -T2202301111117509451219810105WT@B#ZPZ@2222212222225012212111360023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111750945120190413WT@TWPB@P22222122204398100000000120130126WTTPTPBP#22222112204303100000000 -T12023011111175113423500411471120333120000300000000000005280670000000000000000000000000000000000222222000000002229022 -T2202301111117511343219640402WT@W99Y0Y2222212122225012212110194113069900000000000000000000000000000000000000000000000000000000000000000000001934000000000562 -T320230111111751134120070327WTT0@ZB#Y22222122206308100000069120050126WT@BB9@9P22222122206311100000038 -T12023011111175114325600411521120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117511432219740324WTT0Z#BBT2222212122211012212120006013109900000000000000000000000000000000000000000000000000000000000000000000000725020900000000 -T320230111111751143120060226WT@9BB@PP22222122204310100000000 -T12023011111175114524200409091120212110606300000000025505280660000000000000000000000000000000000222222000000002229072 -T2202301111117511451219900518WT@TZTW#@2222211222221012213110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111751145120120922WTT0PBZ#W22222112204303100000050 -T12023011111175134724200409091120433110611300000000070005280370000000000000000000000000000000000222222000000002229022 -T2202301111117513472219860702WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117513472219770401WT@YYBT9P2222221222222102209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111751347120200426WTT9B@##012222212204398100000000120100905WT@Y@YZBB22222222204306100000000 -T12023011111175147123500411471120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117514713219840405WTTT#WZZT2222211222222012211110006011069947000000000000000000000000000000000000000000000000000000000000360400000000000000000000 -T320230111111751471120060201WTTT#@0P022222112207309100000000 -T12023011111175176622000410051120213110376300000000040004950100000000000000000000000000000000000222222000000002229012 -T2202301111117517661219970709WT@WZ@#BY2121222222221012216110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111751766120220712WT@9TPY9W12212222204398100000000 -T12023011111175191924200403941120233110470109700000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111117519193219980911WTT#B#BPW1222222222221012211120055511069933000000000000000000000000000000000000000000000000000000000000248900000000000000000000 -T320230111111751919120130726WTTPP9##Y22222122207302100000000 -T12023011111175193220600409771120233110516300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111117519322219860412WTTPWWZ#@2222212222215012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000060900000000 -T320230111111751932120070126WTTPT@ZYT22222112204308100000000 -T12023011111175210622000414461120233110516300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111117521063219550422WT@B9WW0B2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001740000000000000 -T320230111111752106120100323WTTZY9WW@22222112206304100000000 -T12023011111175224520800414151120533110717300000000000006540470000000000000000000000000000000000222222000000002229022 -T2202301111117522451219780427WTTWTZPWY2221222222225012212111000023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111752245120120907WTTYYWZ##22212212204306100000000420100401WT@TP00#W22212212104307106090000 -T320230111111752245420080312WTT0Z@WB022212212104308106090000120050922WTT9#BWW922212222204311100000000 -T12023011111175231125600411521120313110766300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111117523111219910927WT@P#WT##2222212222221012213120243623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111752311120220112WTT@T#BYT22222122204398100000000120170226WTTW@#ZT022222122204398100000000 -T12023011111175237922000406271120233110516300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111117523792219950702WT@9W9Y@P2221222222211012210110006011089912000000000000000000000000000000000000000000000000000000000000100600000000077700000000 -T320230111111752379120180312WT@Y9B#W022212212204398100000000 -T12023011111175247623500409141120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111117524761219840313WTTY90W#Y2222211222222011212290065423011800000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T2202301111117524761219870727WTTBW9#PZ2222212222222021212290065423011800000000000000000000000000000000180002000000000000000000230000000000000000000000000000 -T320230111111752476120160913WT@P@P0@@22222112204398200000000120120426WTT9PYY#922222122204304200000000 -T12023011111175260424700406701120412111054300000000000007710130000000000000000000000000000000000222222000000002229012 -T2202301111117526041219910112WT@PTZY@W2221222222221012210120114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111752604120190918WTT9T0Y0#22212222204398100000000 -T320230111111752604120220726WT@9TPY9W22212212204398100000000120210912WT@@Z9WTZ22212212204398100000000 -T12023011111175262622000403351120213110598300000000000505280030000000000000000000000000000000000222222000000002229012 -T2202301111117526261219950423WT@TBYWY@2221222222221012213110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111752626120220726WTT0P9B#912212212204398100000000 -T12023011111175269425200407301120212110611111990000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111117526941219790304WT@#PB@0Z2222212222225012214110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111752694120190109WTTTWWTT@22222122204398100000000 -T12023011111175269723500411471120423111034300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111117526971219730713WT@0@PWW02222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117526971219800211WT@W9Z#9@2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111752697120120311WTTPYTW9P22222112204303200000000120060412WT@9TBT#T22222122204309200000000 -T12023011111175270922700408491120313110835300000000140006540050000000000070007000000000000000000222222000000002229012 -T2202301111117527091219840907WT@YTZZPT2222211222223012216110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111752709120110407WT@Y9ZP9#22222122204305100000000120090212WTTW9000#22222122204307100000000 -T12023011111175278825100407671120213110611300000000006905280080000000000000000000000000000000000222222000000002229012 -T2202301111117527881219650312WTTWY@#YP2222212222225012213110095123011800000000000000000000120000000000000000000000000000000000000000000000000000000000000000 -T320230111111752788120050101WTT9WTP#Z22222122204310100000000 -T12023011111175286720300408321120333110740300000000000005280310000000000000000000000000000000000222222000000002229022 -T2202301111117528673219600526WTTY90PTW2222212122223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000926000000000000 -T320230111111752867120130123WT@9#PYPP22222122206302100000000120110707WTTB@W9TB22222112206304100000000 -T12023011111175308324700408301120213110598300000000000005280610000000000000000000000000000000000222222000000002229072 -T2202301111117530831219890718WT@TWTT@Y2222212222221012212110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753083120080114WTT#@TTTT22222112204307100000000 -T12023011111175317624700406701120413110740300000000000004620340000000000000000000000000000000308122222000000012219072 -T2202301111117531761219850122WTTW@@YYY2222212222221012216110730023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753176120060902WT@9TYZ#Z22222112204310100000100 -T320230111111753176120150123WT@#Z0#Z022222122204398100000000120120913WT@TTYTP@22222112204304100000000 -T12023011111175319623500410671120213110611300000000001005280580000000000000000000000000000000000222222000000002229012 -T2202301111117531961219890704WT@P#09#@2222212222221012216120590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753196120150401WT@Z00BZB22222122204301100000000 -T12023011111175321424700408301120213110611300000000050004170070000000000070001000000000000000000222222000000002229012 -T2202301111117532141219910318WT@TYZ@@W2221222222223012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753214520220721WT@B0@#PZ22212222104398100300000 -T12023011111175333022500405581120412110971300000000000007710320000000000000000000000000000000000222222000000002229072 -T2202301111117533301219900407WT@B@@#TP2222212222225012211110880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753330120100221WTTP9T@Z#22222112204304100000000 -T320230111111753330120150423WTT0#@YY#22222112204398100000000120130927WTT9Y9Z9022222112204301100000000 -T12023011111175336822000414461120712111384300000000000010090110000000000000000000000000000000000222222000000002229012 -T2202301111117533682219940705WTTPY9T#T2222122222222012212990075313079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117533681219940324WT@Z#9P@#2222121222222022212190194123011400000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T320230111111753368120120701WTTT9#0Y#22221212204302100000000 -T320230111111753368120170907WTT@YBZ@T22221222204398100000000120130712WTTZT@#9Y22221222204301100000000 -T320230111111753368120220921WT@0WT@@#22221222204398100000000120180723WTTW@TTYZ22222212204398100000000 -T12023011111175352825200409361120413110835300000000000004620190000000000000000000000000000000308122222000000012219072 -T2202301111117535281219870318WTTWZY@WB2222212222223012212110710023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753528120060718WTT@ZY#Z@12222122204310100000000 -T320230111111753528120090726WT@YP0ZW922222112204307100000000120080318WT@P9W0YZ22222112204307100000000 -T12023011111175361522000413731120313110766300000000000004900120000000000000000000000000000000163222122000000012219012 -T2202301111117536151219980423WT@0TW00#2222122222221012209120134723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753615120160127WTTYY0B#022221212204308100000000120140727WTTZ9BZ0022221222204398100000000 -T12023011111175362122000406271120332110740300000000000005280680000000000000000000000000000000000222222000000002229022 -T2202301111117536213219500411WTT@BZT0B2221222122221012211110035713069900000000000000000000000000000000000000000000000000000000000000000000001051000000000000 -T320230111111753621120090108WTT#B##BY22212222206307100000000120050926WT@W0TB#P22212222206311100000000 -T12023011111175365122700408351110232110281300000000000002550270000000000000000000000000000000000222222000001622219021 -T2202301111117536513219530714WTT9Y9@9@1222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001334000000000000 -T320230111111753651120150318WTT@ZWB9T12222122206398100000000 -T12023011111175376523500405271120523111116300000000000008880090000000000000000000000000000000000222222000000002229012 -T2202301111117537651219950923WT@@#0Z0Y2222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117537651219960909WT@9P@WPB2222211222222021212290045621011954000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753765120180101WT@ZZYPZW22222122204398200000000 -T320230111111753765120210101WTT0B@TW022222122204398200000000120190912WT@BYW@@Z22222112204398200000000 -T12023011111175377920800403781120233110484300000000000004170760000000000000000000000000000000000222222000000002229022 -T2202301111117537793219830902WTTBZWWP@2222212222221012212110065413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000350 -T320230111111753779120080214WTT@T#@0W22222112207308100000000 -T12023011111175384822000407791120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111117538481219920104WT@B@B@T@2222222222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753848120220118WTTP##00P22212222204398100000000 -T12023011111175389924900404261120213110557300000000000505280440000000000000000000000000000000000222222000000002229012 -T2202301111117538991219950104WTT@9#9#Y2222212222221012213110580221011945000000000000000000000000000000000000000000000000000000000000140700000000000000000000 -T320230111111753899120160712WT@00PT9Y22222112204398100000000 -T12023011111175395724100402401120312110835106350000000006540510000000000000000000000000000000000222222000000002229012 -T2202301111117539571219870113WT@PZZP0#2222212222221012212110510921011732000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111753957120190202WTTBWB#WT12222122204398100000000120090512WTT#TBPBB12222112204308100000000 -T12023011111175404020800410781120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117540402219890323WT@00#TP92222212122213012212110006011109908000000000000000000000000000000000000000000000000000000000000054400000129080500000000 -T320230111111754040120090713WT@P0#00#22222122204308100000000 -T320230111111754040120150712WTT0ZTTW022222122204301100000050120100311WT@PWZ@#Z22222112204306100000000 -T12023011111175405724700402991120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117540571219880709WT@9TPY9W2222212222225012212210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754057120080914WTT9YW@YP22222112204308200000000 -T12023011111175405824100408431120313110835300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111117540581220000101WT@WTP00P2222212222221012212110055521011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754058120210423WTTB#BP#@22222122204398100000000120190312WTT0#ZP0922222112204398100000000 -T12023011111175413124200414351120213110611300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111117541311219980127WTTTZB#902221221222221012211190253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754131120200913WT@Z9@TZ022222112204398100000000 -T12023011111175419425600413441120333120000112270000000005280300000000000000000000000000000000000222222000000002229022 -T2202301111117541943219980127WT@PYB9TY2222212222222012212110006011069941000000000000000000000000000000000000000000000000000000000000483300000000000000000000 -T320230111111754194120220104WT@9TPY9W21222212208398100000000120180308WTT9T0#9911222222209398100000033 -T12023011111175442724200411401120233120000300000000000004170960000000000000000000000000000000000222222000000002229022 -T2202301111117544273219550912WTTB0909@2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001040000000000000 -T320230111111754427120140526WTTB#9@@#22222112206303100000000 -T12023011111175443121700407751120313110835300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111117544311219970407WT@WP0TW@2222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754431120210704WT@9TPY9W22222122204398100000000120200321WTTT9TZPW22222122204398100000000 -T12023011111175447124600411871120232110516300000000000004500990000000000000000000000000000000000222222000000002229022 -T2202301111117544712219730312WTTT9TYWP2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111754471120060926WTT0#PTWB22222122204310100000000 -T12023011111175453322900412051120233120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111117545333219650308WT@9##0YB2222212222222012212110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754533120200107WT@TP@Y#012222112209398100000000 -T12023011111175459920200409311120313110835300000000005506540350000000000000000000000000000000000222222000000002229012 -T2202301111117545991219850313WTTYB0BY#2222212222221012213110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000002820 -T320230111111754599120120523WTTYPZB#@22222122204303100000000120100713WTT0YBB#T22222112204304100000000 -T12023011111175461221700406141120213110587300000000000003960200000000000000000000000000000000132222122000000002229072 -T2202301111117546121219730912WTT0T@@YW2222222222225012214120750023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754612120070321WT@P#YT@P22222212204309100000025 -T12023011111175465022000403351120313110835300000000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111117546501219870213WT@09PT9P1222222222221012212210283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000700 -T320230111111754650120220423WT@BWW9Z912222122204398100000000120150208WT@YYWT0Z12222112204301100000000 -T12023011111175467922000407241120413110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111117546791219810704WTT99BZZ#2222212222223012214210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754679120060104WTT9#9YBB22222122204310200000000 -T320230111111754679120160113WT@0TTBBY22222112204398200000000120100407WTTPW#ZY022222122204306200000000 -T12023011111175471222000412971120313110835300000000000004900160000000000000000000000000000000163222122000000012219012 -T2202301111117547121219800513WTTYWBZ9#2122212222225012212120312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754712120100414WTTT0W@T921212122204306100000000120080727WT@B#9ZZ#21222122204307100000000 -T12023011111175472524700413891120713111490300000000000011650420000000000000000000000000000000000222222000000002229012 -T2202301111117547251219830712WTTT@W9YB2222212222223012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754725120130122WTTYY#W0022212222204313100000000120120421WTTP9YTB922212212204303100000000 -T320230111111754725120160207WTT9B@@B022212212204398100000000120140412WTT##T@W#22212222204301100000000 -T320230111111754725120180307WT@WBPWPY22212222204398100000000120170313WT@0PPWZ@22212212204398100000000 -T12023011111175472924700400741120233120000300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111117547293219820918WT@0TTB9@2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000205800000000000000000000 -T320230111111754729120090526WTTYYZ#YW22122212207307100000000 -T12023011111175473523500411471120523111136300000000000008880020000000000000000000000000000000000222222000000002229012 -T2202301111117547351219890311WT@9TPY9W2222212222222011215290035723011800000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T2202301111117547351219890714WT@9TPY9W2222211222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754735120100921WT@9TPY9W22222122204306200000000 -T320230111111754735120160124WT@9TPY9W22222122204398200000000120130108WT@9TPY9W22222112204303200000000 -T12023011111175479322900410121120312110803105590000350006540120000000000000000000000000000000000222222000000002229012 -T2202301111117547931219960412WTT9TP00P2222212222221012212110174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754793120220123WTTB0WTTZ22222112204398100000000120180404WT@#YP@ZY22222112204398100000000 -T12023011111175490220600407031120233120000300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111117549023219560412WTTY9PZ9W2222212122222012212110025813069900000000000000000000000000000000000000000000000000000000000000000000001523000000000000 -T320230111111754902120210309WTTP0Y#B@22222122206398100000000 -T12023011111175492224500405941110233110539300000000000000670010000000000000000000000000000000000222222000000002229021 -T2202301111117549223220020423WTTW0ZTWZ2222212222221012212120006011069920000000000000000000000000000000000000000000000000000000000000173900000000000000000000 -T320230111111754922120140907WT@B9@TTW22222122207302100000000 -T12023011111175493625900402831120332110740300000000010005280990000000000000000000000000000000000222222000000002229022 -T2202301111117549362219780321WT@YPWT002221222222211012212111150013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111754936120150421WTT9Y#WP@22222112204398100000000120150421WT@BB9P@922222122204398100000000 -T12023011111175497023500408281120413111034300000000000004620160000000000000000000000000000000308122222000000012219012 -T2202301111117549701219880327WT@ZPZBZ#2222212222223012216110382223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111754970120080413WT@0W#ZY#22222112204305100000000 -T320230111111754970120200912WTT0@BTBT22222112204398100000000120180422WT@B#B#WT22222122204398100000000 -T12023011111175502320600402131120332110740300000000000005280630000000000000000000000000000000000222222000000002229022 -T2202301111117550232219590304WT@#WWZTY2222211122215012212110194113109900000000000000000000000000000000000000000000000000000000000000000000000931000300000000 -T320230111111755023120050708WT@0TWY9022222112204309100000000120050708WT@T#YP#@22222112204309100000000 -T12023011111175505120600414831120213110611300000000000003160140000000000000000000000000000000211122222000000012219012 -T2202301111117550511219990107WT@0T0BB@2222212222221012212110263423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111755051120180412WTT#P9ZTZ22222112204398100000000 -T12023011111175510822000408891120313110766300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111117551082219830224WT@YYBT9P1221222222222012212990035713079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117551081219830404WTTB@TTZ@1221221222222022212290045621011829000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111755108120110509WT@BWT@ZW12212212204306200000000 -T12023011111175516223800413801120313110835300000000000006540200000000000000000000000000000000000222222000000002229012 -T2202301111117551621219860724WTTYW@0902222212222225012216110431723011400000000000000000000000000000000000000000000000000000000300000000000000000000000000402 -T320230111111755162120180426WTTYTZ#Z022222122204398100000000120110324WT@0B@#9922222122204305100000000 -T12023011111175517720600404121120213110630300000000000005010330000000000000000000000000000000000222222002600012219012 -T2202301111117551771219960427WTT0Y9TT92222212222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111755177120190112WT@P9#@0022122212204398100000000 -T12023011111175526120600400801120412110939122630000000007710520000000000000000000000000000000000222222000000002229012 -T2202301111117552611220020712WTTB@@9Z@2222212222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111755261120190523WTTT@ZYYZ12222122204398100000050 -T320230111111755261120220926WT@09BZ@P22222112204398100000000120200707WTTTP0@#W12222122204398100000050 -T12023011111175527820600412561120622111339300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111117552781219850421WT@99T@9B2222212222222011213290095123011800000000000000000000000000000000180002000000000000000000020000000000000000000000000000 -T2202301111117552781219840302WT@0B#T#02222211222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111755278120120205WTT#TTB9Y22222112204398200000000120090308WTTPBYPYW22222122204305200000000 -T320230111111755278120210427WT@P0BPT@22222122204398200000000120120205WT@#WZP0Y22222112204304200000000 -T12023011111175529324200403511120213110611300000000020205280120000000000000000000000000000000000222222000000002229012 -T2202301111117552931219830711WTTP##Z#02222211222221012211110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111755293120130326WT@WZPWWB22222112204301100000000 -T12023011111175529924200414851120233110446300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111117552993219860121WTT@BYZW02222212222221012213110501013069900000000000000000000000000000000000000000000000000000000000000330700000000000000000169 -T320230111111755299120150422WTTW9ZW@W22212222207301100000000 -T12023011111175544222000406191120432110939300000000000006540540000000000000000000000000000000000222222000000002229022 -T2202301111117554422219960318WTTPW@BYT2222212222211012209120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111755442120150514WTT#PBP#P22222122204301100000000 -T320230111111755442120190905WTTT@Z#W922222122204398100000000120160126WTT0WP9Y#22222122204398100000000 -T12023011111175550022000403481120333120000132840000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111117555003219510213WT@BWW@##2222212122221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000002557000000000000 -T320230111111755500120200118WTTPP#B9B22212222206398100000000120180901WTT9PZW#W22222122206398100000000 -T12023011111175564622000408311120213110598300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117556461219980701WTTP#BB9Y1212222222223012216210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111755646120210118WT@ZBY#9B22122122204398100000000 -T12023011111175574324200414851120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111117557431219860105WT@P9W@@T2222211222223012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111755743120170723WT@P0TZ@P22212122204398100000000120140126WTTTYZB0@22212112204302100000000 -T12023011111175591020800414151120213110611300000000000005280570000000000000000000000000000000000222222000000002229012 -T2202301111117559101219820401WTT0P00Y02222212222221012212120580223010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111755910120120102WTTZBPB0#22222122204303100000000 -T12023011111175598422000407092120113210376300000000000004170050000000000000000000000000000000000222222000000002229032 -T2202301111117559841219930205WT@9TPY9W2221222222221013207290065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111175608524700401011120313120000300000000000003920310000000000000000000000000000000261122222000000012219072 -T2202301111117560851219690401WT@YB#9PW2222212222221012211110730023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756085120060123WT@@9@99P22222112204309100000000120050512WT@BTZ0YY22222112204311100000000 -T12023011111175613025900402831120213110611300000000000005280490000000000070013000000000000000000222222000000002229012 -T2202301111117561301219920211WT@B#PZYB1222212222221012210110372321011933000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111756130120110723WT@ZPT@Z#12222122204305100000000 -T12023011111175619124200411401110213110493300000000000001360010000000000000000000000000000000000222222000000002229012 -T2202301111117561911220000701WT@Y#ZW#P2222212222221012209110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756191120220404WT@BY0P9922222112204398100000000 -T12023011111175630324200408391120513111211300000000000008880020000000000000000000000000000000000222222000000002229012 -T2202301111117563031219920113WT@@B##YW2222212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756303120170907WT@Z0WW@@22222112204398100000000120160201WT@BZT#@922222112204301100000000 -T320230111111756303120190324WTT#P0@YP22222112204398100000000120180105WT@ZB0TB922222112204398100000000 -T12023011111175632520800414151120533111034300000000040007710160000000000000000000000000000000000222222000000002229022 -T2202301111117563252219870424WT@YYBT9P2222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756325120090112WT@@#BWZB22222212204306100000100120070401WT@ZBBP#B12222222204309100000000 -T320230111111756325120200401WT@Y#BB@012222222204398100000000120150127WTTB9PWYB12222222204398100000000 -T12023011111175632722000412811120313110766300000000006006540070000000000000000000000000000000000222222000000002229012 -T2202301111117563271219860207WT@TYZY9Z2222212222221012213110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756327120210123WTTY9Y#W#22222112204398100000000120140708WT@0B0#Y@22222112204302100000000 -T12023011111175635920600402141120233120000300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111117563593219580701WT@@P#9PT2222211122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002254000000001550 -T320230111111756359120200407WTTY#PZT022222122206398100000000 -T12023011111175648821700409521120432110835300000000000006540750000000000000000000000000000000000222222000000002229022 -T2202301111117564882219920407WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756488120110401WT@TTYBPY12222222204306100000000 -T320230111111756488120160104WTTZY0ZYZ12222212204398100000000120130208WT@9BW9#W12222212204304100000000 -T12023011111175650724700409322120423211034300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111117565071219960314WT@Y#ZT@#2222121222221011212990006021011938000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117565071219940307WT@Y@90YP2222122222221011212990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756507120220502WT@0@#99P22221222204398100000000120190922WTT@ZBW9T22221222204398100000000 -T12023011111175663522000412971120533111211300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111117566352219870112WTT99Z@TZ2122222222211012209120194113089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111756635120090313WTTY0W@0@21222212204307100000000120060308WTT0TWZ##12222212204310100000000 -T320230111111756635120160108WT@WY9@BY21222222204398100000000120140505WTTW0PWB021222212204303100000000 -T12023011111175668322000400461120213110618300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111117566831219810901WT@ZZ#9@@2221222222221012212110045623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756683120140412WTTYB@TZP22212212204302100000000 -T12023011111175671722000411551120233110611300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111117567172219890104WT@BPYB9#2221222222211012210110471313089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111756717120050127WTT9TWY9#22212222204308100000000 -T12023011111175672324200414022120523211199300000000000008880080000000000000000000000000000000000222222000000002229032 -T2202301111117567231219920323WT@@TZ#BZ2222211222222011215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117567231219980921WT@WWW9TB2222212222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756723120180311WT@Z@TZT#22222112204398200000000 -T320230111111756723120210312WTTP0@PP922222112204398200000000120200522WT@B9#WZZ22222122204398200000000 -T12023011111175677420600409001120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117567742219910322WT@@@@PWT2222212222215012216110174313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111756774120120118WTTWT0@PZ22222122204304100000000 -T320230111111756774120140118WT@#ZY#BW22222112204301100000000120130323WT@#@9@BP22222122204302100000000 -T12023011111175692925600404651110233120000300000000000003630010000000000000000000000000000000000222222000000002229021 -T2202301111117569293219640112WT@#0PY9#1222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756929120050722WT@P@0WPT22222112206311100000000 -T12023011111175693924100402401110313110516300000000000001470070000000000000000000000000000000308222221000003162219012 -T2202301111117569391219860921WT@@9@T#T1222212222225012214120461423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111756939120140708WT@TY0TZ012222122204302100000000120090321WT@0@ZTW#12222122204306100000000 -T12023011111175698024900404261120333120000300000000014805280990000000000000000000000000000000000222222000000002229022 -T2202301111117569803219380102WTTP#9PYP2222212122224012209110006013069900000000000000000000000000000000000000000000000000000000000000000000001563000000001070 -T320230111111756980120080421WT@P0P@PB22222122207307100000000120050912WT@@90ZPB12222112207310100000000 -T12023011111175698224200407431110113110376300000000000003900010000000000000000000000000000000000222222000000002229012 -T2202301111117569821219900714WTT#@WPYW1222222222221013216190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111175705723500405271120323110835300000000150006540060000000000000000000000000000000000222222000000002229012 -T2202301111117570571219890421WTTPT9TZT2222212222222011214290075323011800000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T2202301111117570571219880412WT@YBW@0@2222221222222021214290075323011800000000000000000000000000000000000000000000000000000000160000000000000000000000000000 -T320230111111757057120170913WT@BPZY9922222112204398200000000 -T12023011111175709020800411991120233110516300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111117570903219550109WTTTT@Y0W2222211122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001828000000000000 -T320230111111757090120070926WTT#@WTT#22222212206308100000000 -T12023011111175712325900406841120213110631300000000446104790020000000000000000000000000000000000222222000000492219042 -T2202301111117571231220030207WT@Z#WY9B2122222222221012212110006023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111757123120220309WTTWPTT#B11222212204398100000000 -T12023011111175713222000410051120213110611300000000000004950110000000000000000000000000000000000222222000000002229012 -T2202301111117571321220020705WTTPW90002221222222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757132120220301WTT9TZ@#012222112204398100000000 -T12023011111175718822600413111120213110598300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111117571881219970918WTTY9WPTP2222212222221012216120213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757188120200105WT@T9YZ@W22222112204398100000000 -T12023011111175720320600406751120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111117572031219950701WTT#@#00@2222212222221012213110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757203120130227WTT#@90TY22222122204303100000000 -T12023011111175724425600413441110313110704300000000000001870370000000000000000000000000000000000222222000001622219012 -T2202301111117572442219810727WTT#TBY#Y2222112222212012210110312913089900000000000000000000000000000000000000000000000000000000000000000000000000086200000000 -T2202301111117572441219810423WT@PPWPP#2222211222222022212190025821011803000000000000000000000000000000000000000000000000000000040000016300000000000000000000 -T320230111111757244120140901WTTZ0T9TW22222112204398100000000 -T12023011111175724725900402721110312110740111280000000006110010000000000000000000000000000000000222222000000002229012 -T2202301111117572471219930413WTTTW99T#1222222222221012212210243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757247120180107WT@0BPTP012222222204398100000000120140224WT@TW@90W12222212204303100000000 -T12023011111175731420600405081120233120000300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111117573143219820923WTT@BZY9Y2222211222225012212110006013069900000000000000000000000000000000000000000000000000000000000000581500000000000000000000 -T320230111111757314120120507WT@@PZWYT22222122209304100000000 -T12023011111175734925000414191120233120000300000000090004170370000000000000000000000000000000000222222000000002229022 -T2202301111117573492219810413WT@TW0T#B1222222222223012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757349120100127WTT0TWWBY12222222204306100000000 -T12023011111175745422700407441120533110835300000000077306540600000000000000000000000000000000000222222000000002229022 -T2202301111117574542219820426WT@YYBT9P1222222222221012201910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117574542219820305WT@YYBT9P1222221222223102207990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757454120080227WTTW09WZT12222222204308100000000 -T320230111111757454120160518WTTWB9PY912222222204398100000000120100113WT@P#Y#Z#12222222204306100000000 -T12023011111175746220600414771120823111691300000000000012890090000000000000000000000000000000000222222000000002229012 -T2202301111117574621219810423WTTP@P90@2222221222222011206290055523011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111117574621219930423WTT@0@ZYY2222222222222021203290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757462120140111WT@WBPBZ@22222222204303200000000120120408WTTYZ9Z9W22222222204305200000000 -T320230111111757462120170514WTT9@Z9Y#22222222204398200000000120150901WT@T0@9WY22222222204301200000000 -T320230111111757462120210423WT@PP9T#B22222222204398200000000120190424WT@BWWTT022222212204398200000000 -T12023011111175757024700406741120213110618300000000013605280020000000000000000000000000000000000222222000000002229012 -T2202301111117575701219860114WTTW#PBT92222212222225012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757570120180221WT@#T@9T922222112204398200000000 -T12023011111175757525000403231120423111034300000000266207710110000000000000000000000000000000000222222000000002229012 -T2202301111117575751219910302WT@0@B#BW2222211222222011209190124823011800000000000000000000000000000000000000000000000000000000430000000000000000000000001909 -T2202301111117575751219950404WTT#9BZT02222212222222021212190124823011800000012000000000000000000000000000000000000000000000000310000000000000000000000002396 -T320230111111757575120180123WTTZWTPZP22222112204398100000000120150907WTTZ##99Z22222112204301100000000 -T12023011111175763221700406141120433120000300000000000006540920000000000000000000000000000000000222222000000002229022 -T2202301111117576323219560901WTT90B0BY2222222222224012204110184211069990000000000000000000000000000000000000000000000000000000000000896900000000000000000000 -T320230111111757632120040726WTTPBT0YT22122222206312100000000 -T320230111111757632120070408WTT@BWY0W22122212206306100000000120050926WT@PWWTW#22122212206308100000000 -T12023011111175767920800410781120533111116300000000048506030180000000000000000000000000000000000222222000001682219022 -T2202301111117576791219880421WT@Z0Z9TZ2222212122223012213110580223099900000000000000000000000000000000000000000000000000000000000000000000000042000000000000 -T320230111111757679120120527WT@PYZPB@22222122204304100000042420100413WTTBZ##9P22222112104306108920042 -T320230111111757679120170427WT@Z@9W@022222122204398100000042120140907WT@B0Y0B022222112204302100000042 -T12023011111175768020600407031120233110516112180000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111117576802220040327WT@ZT#W9T2222222222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111757680120200312WT@@@@P0@22222222204398100000000 -T12023011111175774623700414791120433110835300000000000006540170000000000000000000000000000000000222222000000002229022 -T2202301111117577462219970104WT@YYBT9P1222212222221012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757746120160127WTT#PY@BB12222122204398100000000 -T320230111111757746120210907WTT#@Y#W912222222204398100000000120200221WT@PZ#0#@12222212204398100000000 -T12023011111175782325100407671120313110516300000000090003160100000000000000000000000000000000211122222000000012219012 -T2202301111117578231219860222WT@YTYB@02222212222221012211110154523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111757823120140901WTTBPWBY@22222122204302100000000420080118WTTPZ99#B22222112104307108120000 -T12023011111175799724700400741120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117579973219580704WTTW#TBB02222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001145000000000000 -T320230111111757997120120705WT@@P0@W@21222212206302100000000 -T12023011111175801121400408021120333110376300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111117580112220030324WT@YYBT9P1222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117580112220030122WT@YYBT9P1222211222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758011120220412WTTYYWP9#12222112204398100000000 -T12023011111175802822000411281120523111199300000000000008880080000000000000000000000000000000000222222000000002229012 -T2202301111117580281219900126WT@PYPB@Y2222211222222011211290075323011800000013000100000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117580281219960221WT@@00T002222212222222021211290075323011800000007000100000000000000000000230001000000000000000000030000000000000000000000000000 -T320230111111758028120160222WTT#B0YZT22222112204398200000000 -T320230111111758028120210905WT@PBB#P@22222122204398200000000120190918WT@ZTPWPY22222122204398200000000 -T12023011111175804022000413081120333120000300000000000005280200000000000000000000000000000000000222222000000002229022 -T2202301111117580403219710918WT@T##WPZ2222212222222012209110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758040120170722WTTP0YZBY12222212206398100000000120070323WT@W@P@B#22222122206308100000000 -T12023011111175804724700409322120323210835300000000000006540040000000000000000000000000000000000222222000000002229032 -T2202301111117580471219850302WT@9TPY9W2222211222222011212990055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117580471219940124WT@9TPY9W2222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758047120190402WT@9TPY9W22222112204398200000000 -T12023011111175824820600411031120213110611300000000000005010180000000000000000000000000000000000222222002600012219012 -T2202301111117582481219890307WT@#Z@BWZ2222212222221012210110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758248120200127WT@ZTYZ#P22222122204398100000000 -T12023011111175839022000408891120333120000300000000000005280140000000000000000000000000000000000222222000000002229022 -T2202301111117583905219700324WT@Y#TW092222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111758390120200104WT@ZW0ZP@11222212209398100000000120180727WTT####TT21222222209398100000000 -T12023011111175843624700406701110423110939300000000000005720010000000000000000000000000000000000222222000000002229012 -T2202301111117584361219840721WT@TBBB@P2222212222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117584361219860322WTT9@TP@Y2222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758436120170126WT@0YW#B@22222122204398200000000120100114WTTPP9Y9P22222122204306200000000 -T12023011111175852324100410041120233120000300000000000004170750000000000000000000000000000000000222222000000002229022 -T2202301111117585233219940907WT@WWYTZY2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758523120160527WT@WP#WP022222112207398100000050 -T12023011111175880820200409311120212110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111117588081219990312WTT0@TZ@B2222212222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000001222 -T320230111111758808120210321WTTW##0BP22222112204398100000000 -T12023011111175881224900412322120423210939300000000000007710070000000000000000000000000000000000222222000000002229032 -T2202301111117588121219900111WT@9TPY9W1222212222222011208290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117588121219760702WT@9TPY9W1222211222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758812120170914WT@9TPY9W12222122204398200000000120130227WT@9TPY9W12222112204304200000000 -T12023011111175892325900402831120312110817300000000000006540600000000000000000000000000000000000222222000000002229072 -T2202301111117589231219790907WTTZ9#ZTZ1222222222221012212110990023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758923120180113WTT#WTT@Z12222112204398100000000120100707WT@T#WWWT12222222204305100000000 -T12023011111175895524600406061110323110835300000000000206130280000000000000000000000000000000261222221000000002229012 -T2202301111117589551219890212WT@ZT0TT@2222212222223011216190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117589551219920912WT@YB#WPP2221221222221011216190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758955120210727WT@TPYW9Z22212122204398100000000 -T12023011111175896222000404842120213210598300000000000005280050000000000000000000000000000000000222222000000002229032 -T2202301111117589621219830727WT@WYZZZ@2222212222225012214210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758962120100321WTTBPB0##22222112204305200000000 -T12023011111175897025600414551120233110376300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111117589702219870911WT@YYBT9P1222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111758970120070724WTTYYWTPW12222112204309100000000 -T12023011111175898823500405981120212110611300000000000005280060000000000035010000000000000000000222222000000002229012 -T2202301111117589881219650126WT@@ZB#T@2222211222225012212110184223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111758988120130323WT@PZ@@@Z22222122204302100000000 -T12023011111175916420600404491120212110611300000000000005280160000000000000000000000000000000000222222000000002229072 -T2202301111117591641219860218WTTW9#W@B2222212222221012216110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759164120210123WT@T0##0W22222112204398100000000 -T12023011111175933325600400661120213110598300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111117593331219910307WT@#9PB#P2222212222221012212110204023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759333120220726WTTB090Z@22222112204398100000000 -T12023011111175938222000412971120312110773300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111117593821219850304WT@TBYYPP2222122222221012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759382120220122WT@9TPY9W12212222204398100000000120040923WTT99T#TY22221212204311100000000 -T12023011111175940822000411282120423210939300000000000007710040000000000000000000000000000000000222222000000002229032 -T2202301111117594081219850101WT@PW@#T92222211222222011212290055522011800000000000000220003000000000000000000000000000000000000060000000000000000000000000000 -T2202301111117594081219850712WTT@T0PYT2222212222222021212290055522011800000000000000220003000000000000000000000000000000000000060000000000000000000000000000 -T320230111111759408120200923WT@9TPY9W22222122204398200000000120150726WT@9TPY9W22222122204301200000000 -T12023011111175945225600400661120233110611300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111117594523219670304WT@T#TT#02222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000339000000000000 -T320230111111759452120100423WTTPPZZ#@22222112206306100000000 -T12023011111175945423500410671120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111117594541219730205WTTT99#Z02222212222223012214210085222011900000000000000220000000000000000130002000000000000000000090000000000000000000000000000 -T320230111111759454120110923WTTZWWZ##22222122204304200000000 -T12023011111175953424700409381120313110835300000000000003920490000000000000000000000000000000261122222000000012219072 -T2202301111117595341219900424WT@ZB#9ZY2222212222221012211110620023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759534120170101WTT0T#TWB12222122204398100000000120160101WT@B#YZPY12222112204398100000000 -T12023011111175954724100413901110433110740300000000050006110300000000000000000000000000000000000222222000000002229021 -T2202301111117595472219780523WT@YYBT9P1222212222221012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759547120060412WT@TYWP9B12222112204309100000000 -T320230111111759547120150105WTTT9BZTY12222112204398100000000120090721WTT0ZWY##12222122204306100000000 -T12023011111175960621200403951120213110598300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111117596061219970918WT@Y#90Z#2222212222221012211110243621011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759606120160914WT@9YW#Z922222112204398100000000 -T12023011111175961420600409771120423110895300000000000007710110000000000000000000000000000000000222222000000002229012 -T2202301111117596141219800209WT@W9WW0#2222212222222011209290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117596141219770107WT@W9YWP92222211222222021209290095121011934000000000000000000000000000000000000000000000000000000000000292400000000000000000000 -T320230111111759614120140118WTTYYPT#Z22222122204398200000000120090413WT@TYZZ@022222112204306200000000 -T12023011111175962122000410051120312110760300000000000006540570000000000000000000000000000000000222222000000002229012 -T2202301111117596211219980108WTT#P@0YZ2221222222221012212110580223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111759621120200111WT@P@TPBZ22222212204398100000000120190923WT@TYTZWW22212222204398100000100 -T12023011111175963324500405781120233120000300000000070004170270000000000000000000000000000000000222222000000002229022 -T2202301111117596333219620307WTT@9B@002222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000513400000000000000000000 -T320230111111759633120200313WTTB@999T22212222206398100000000 -T12023011111175964120600400801120233110493300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111117596413219700912WT@@9P#@Y2222211122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000947000000000000 -T320230111111759641120190313WT@0Z@Z#W22222112206398100000000 -T12023011111175968925900402831120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117596893219740904WTT0W@YY92222212222222012214120055511069939000000000000000000000000000000000000000000000000000000000000322500000000000000000000 -T320230111111759689120090504WTT@9YBZW22222122207307100000000120070318WT@BY#BY@22222122207308100000000 -T12023011111175980822000413731120433110740300000000000006540640000000000000000000000000000000000222222000000002229022 -T2202301111117598082219790212WT@ZZP9PW2212221222211012212110233713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111759808120050121WTT#Z#B#922122222204312100000000 -T320230111111759808120050311WT@P9BW9Y22112212204312100000000120050311WTTPP09BP22112222204312100000000 -T12023011111175981721700406141120323110835300000000000506540170000000000000000000000000000000000222222000000002229012 -T2202301111117598171219960712WTTWP#TP92222211222221011209190075323011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111117598171220010214WTTBZZ@@Z2222212222221011212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759817120210921WT@P#B@0Y22222122204398100000000 -T12023011111175985224200414721120213110547300000000000005280390000000000000000000000000000000000222222000000002229012 -T2202301111117598521219810412WT@ZB0WYZ2212222222221012212210402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000500 -T320230111111759852120070111WT@WT0T9P12122222204309100000000 -T12023011111175986822000407411120212110611120300000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111117598681219880423WT@W0Y#T@2212222222223012212210164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759868120210707WTTB#Z#0Z22122212204398100000000 -T12023011111175988024200403511120313110835300000000052106540120000000000000000000000000000000000222222000000002229012 -T2202301111117598801219860105WTTBP0TBT2222212222223012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759880120110409WT@T0##PB22222122204303100000000120070412WT@9YTP0Y21222112204308100000000 -T12023011111175995822000400461120313110835300000000035006540560000000000000000000000000000000000222222000000002229012 -T2202301111117599581219780327WTTBZWY901222222222222012212110560421011937000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111759958120120927WTT#W#YYW12222212204305100000000120100727WT@WT##9#12222212204307100000000 -T12023011111176002721000412411120213110516114720000000000010150000000000000000000000000000000000222222000000002229012 -T2202301111117600271219980918WTT@0Z9#02222212222221012211110154511011700210000000000000000000000000000000000000000000000000000010000132000000000000000000000 -T320230111111760027120200505WTTWP#W0B22222122204312100000000 -T12023011111176028624200410211120213110598300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111117602861220010713WT@0Y##T92221222222221012212110154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760286120220226WTT09P#T@12212212204398100000000 -T12023011111176033525100407671120333110740300000000000005280450000000000000000000000000000000000222222000000002229022 -T2202301111117603353219640322WTT9BP#TY2222212222215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000089400000000 -T320230111111760335120170107WTTPB0#PW22222122206398100000000120140427WT@Z0@Y9922222122206301100000000 -T12023011111176038123900403801120233120000105210000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111117603813219590901WT@ZB@P@W2212211222221012216110322813069900000000000000000000000000000000000000000000000000000000000000503500000000000000000000 -T320230111111760381120150414WT@YP9BYW22222112206302100000000 -T12023011111176038722000412971120233110247300000000007704170210000000000000000000000000000000000222222000000002229022 -T2202301111117603872219810901WT@YYBT9P1222212222225012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760387120070312WTTY0P@TB12222122204308100000000 -T12023011111176040520600402141120212110611300000000000005280130000000000000000000000000000000000222222000000002229072 -T2202301111117604051219860423WT@Z9Z0B92122222222221012211110950023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000041 -T320230111111760405120210112WTTTW@#YT21222222204398100000000 -T12023011111176059523500404531120313110835300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111117605951219910218WTTB@Z@0W2222122222221012211910204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760595120200421WT@ZW#ZW022221222204398100000000120190907WTTWP000W22221212204398100000000 -T12023011111176061424200404281120313110766300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111117606141219940522WT@Z0YT@Y2221222222221012212110035723010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760614120180904WTTPP#0B921222222204398100000000120160226WTT9BW@ZT22212212204398100000000 -T12023011111176062225900402631120233110516300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111117606223219680222WTT9T9TB@1222212122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000979000000000000 -T320230111111760622120100122WT@9@@9TP12222112206306100000050 -T12023011111176063425600411521120332110740300000000000005280880000000000000000000000000000000000222222000000002229022 -T2202301111117606342219830118WTTZ@B0B#2222212122213012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000553038100000000 -T320230111111760634120170718WTT#09B#W22222112204398100000000120160411WTT0B9PY@22222112204398100000000 -T12023011111176073222000412231120213110611300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111117607321219930102WT@@9PBBY2222212222221012216110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760732120150921WTTW0##BB22222222204301100000000 -T12023011111176074922000414501120213110611300000000002505280430000000000000000000000000000000000222222000000002229012 -T2202301111117607491219860214WTT@YTWT#2222212222221012213120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760749120170118WT@Y9#0ZW22222122204398100000000 -T12023011111176075622000406191120213110598300000000170005280060000000000000000000000000000000000222222000000002229012 -T2202301111117607561219980204WT@B009YT2222212222221012212110075323010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760756120200427WTT9W9ZYB22222112204398100000000 -T12023011111176088922000407241120232110611300000000000004170870000000000000000000000000000000000222222000000002229022 -T2202301111117608893219670307WT@W@9ZBW2221222222221012212120610013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760889120100927WT@9P9YTZ22212212206305100000000 -T12023011111176091420600402141120233110313300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111117609143219750113WT@PP9W9T2222122222222012212910660013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111760914120220501WT@9Z09B022222222207398100000000 -T12023011111176136522000405841120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117613653219850127WTT009@@W2221221222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111761365120040313WTTPYW9BP22212212207310100000000 -T12023011111176136724200404701120313120000300000000000004900060000000000000000000000000000000163222122000000012219012 -T2202301111117613671219800412WTTZT@@YB2222212222223012216120065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000002000 -T320230111111761367120130127WTT@9Z99#22222122204305100000000120080323WTT0#Y9@B22222112204309100000000 -T12023011111176142722000412811120233110598300000000000005280310000000000000000000000000000000000222222000000002229022 -T2202301111117614271219860307WTTBTZWT@2222212222221012212110630023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111761427120160514WTTB9#0WT12222112204398100000000 -T12023011111176150223500405981120233110543300000000000004170840000000000000000000000000000000000222222000000002229022 -T2202301111117615023219650908WTT#@P#TP2222212122213012208110006013069900000000000000000000000000000000000000000000000000000000000000000000000369056500000000 -T320230111111761502120060307WT@90Z@PW22222112206309100000000 -T12023011111176152921000403201120523111116300000000000008880090000000000000000000000000000000000222222000000002229012 -T2202301111117615291219950907WT@90B9WP2222211222222011212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117615291219970113WT@0B0W0Z2222212222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111761529120160313WTT@0TPZ922222122204398200000000 -T320230111111761529120200704WT@BY##Z@22222112204398200000000120180401WT@09BW#B22222112209398200000000 -T12023011111176174524500402221120533111116300000000000007710570000000000000000000000000000000000222222000000002229022 -T2202301111117617452219840302WT@@P9@#W1222212122215012211120085213109900000000000000000000000000000000000000000000000000000000000000000000000672017000000000 -T320230111111761745120090327WT@Z9B#PY12222112204307100000000120080705WTT@YBP9T12222122204309100000000 -T320230111111761745120170114WTT0ZT@WP12222112204398100000000120110401WTT0@@@W012222112204306100000000 -T12023011111176203322000412971120213110611300000000072405280720000000000000000000000000000000000222222000000002229072 -T2202301111117620331219850412WT@WTY00#2221222222221012213110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762033120040327WTTBY09W922212222204311100000000 -T12023011111176226925600412851120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117622691219870312WT@Z#P90Y2221221222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762269120090107WT@Y0T0ZP22212212204306100000000 -T12023011111176236320600414871120613111339300000000000009260040000000000000000000000000000000000222222000000002229012 -T2202301111117623631219790727WTT#Z909T2222222222225012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762363120060904WTTY@BZPW22222212204308200000000 -T320230111111762363120080726WTT9PY9@@22222222204307200000000120080923WTT90YY#Z22212222204308200000000 -T320230111111762363120130327WTTZBBP@#22212222204302200000000120110701WTT#WWYW922212212204305200000000 -T12023011111176239122700407491120213110599300000000000003160390000000000000000000000000000000211122222000000012219012 -T2202301111117623911219850713WTTYY9PB@2222212222221012211110402023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762391120090901WTT@P9BW@22222122204305100000000 -T12023011111176248425900402831120313110611300000000060003920280000000000000000000000000000000261122222000000012219012 -T2202301111117624841219960713WTT@0YPWW1222222222221012212110273323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762484120150402WT@#BTYBT12222222204301100000000120130309WT@Y00WTW12222222204302100000000 -T12023011111176248820600404121120413110827300000000000007710250000000000000000000000000000000000222222000000002229012 -T2202301111117624881219870121WT@ZZ@PZ02222212222225012212110263423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762488120110507WT@ZBBT0Z12222122204306100000000 -T320230111111762488120220314WT@9Y0Y@P22222222204398100000000120110507WTTY9@Y@T22222122204306100000000 -T12023011111176257120300410341120333110740300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111117625712219850309WT@0ZB0YP2222212122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000831010300000000 -T320230111111762571120200301WTTP#PZBZ22222122204398100000000120160311WTTZ0Y#Y@22222112204398100000000 -T12023011111176257224200403941120233110516300000000000004170910000000000000000000000000000000000222222000000002229022 -T2202301111117625722219910723WTT0YWB@02222212122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000742019200000000 -T320230111111762572120150912WT@WZW9Y022222122204301100000000 -T12023011111176265022000405701120213110611300000000024305280440000000000000000000000000000000000222222000000002229012 -T2202301111117626501219640326WT@9W9P9@2222212222221012214110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762650120140918WT@PBW#P922222122204303100000000 -T12023011111176271224200404891120422110954300000000000007710310000000000000000000000000000000000222222000000002229012 -T2202301111117627121219960718WT@PPZTZW2222211222221011211190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117627121219980514WTTP0TZPT2212222222221011211110263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762712120210901WTT#W#TP922122122204398100000000120150111WT@@P#PBT22122212204398100000000 -T12023011111176274323500407161120323110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111117627431219900701WT@@WZ9W#2222211222222011214290065423011800000000000000000000000000000000070002000000000000000000450000000000000000000000000000 -T2202301111117627431219910409WT@##WZB92222212222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762743120200127WTTBWT9BW22222112204398200000000 -T12023011111176274625900402631120413110740300000000000007710230000000000000000000000000000000000222222000000002229072 -T2202301111117627461219900927WTTPZ@P9T2222212222225012212110740023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111762746120090109WTTYW@@#Z22222112204306100000000 -T320230111111762746120160218WT@WYW@WT12222122204398100000000120120911WT@PP09T022222122204304100000000 -T12023011111176277325900402831120233110516300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111117627733219550401WTTWT#W0B1222211122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001536000000000000 -T320230111111762773120110902WT@WPW@#P12222112206305100000000 -T12023011111176277424200403511120213110598300000000200005280110000000000000000000000000000000000222222000000002229012 -T2202301111117627741219930918WT@0ZY@002222212222221012211110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762774120150723WT@W#@YTY22222122204398100000000 -T12023011111176279624200413921120213110598111990000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111117627961220000123WTTT#Y9YY1222212222225012211110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762796120190923WT@@Z00@T12222122204398100000000 -T12023011111176287022000408891120512111200115330000000008880150000000000000000000000000000000000222222000000002229012 -T2202301111117628701219890924WTTY9TB@02221222222221012211110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762870120110326WT@T90ZTP22212222204305100000000120070113WT@@ZP9BY22212222204310100000000 -T320230111111762870120160718WTTYB9YZW22212212204301100000000120140327WTTBYY00P22212212204302100000000 -T12023011111176289124600411871120212110611102270000048005280070000000000000000000000000000000000222222000000002229012 -T2202301111117628911219880421WTTWT##9Y1222222222225012213110164421011937000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762891120130514WT@W9W#9Y12222122204303100000000 -T12023011111176289724200404891120423111034300000000000007710120000000000000000000000000000000000222222000000002229072 -T2202301111117628971219790701WT@PBB0PB1221221222222011216190421823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117628971219840727WT@#ZWW9T1222212222222021216110710023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762897120210718WTT9BWPY#12212212204398100000000120050112WT@@TT9PP22212212205310100000000 -T12023011111176294422000407241120313110788300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111117629441219590405WT@PB@WPT2221221222221012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111762944120090112WT@W9YBTP22212212204308100000000120050112WT@W9ZB9@22212212204312100000000 -T12023011111176304723500408282120423211034300000000000007710140000000000000000000000000000000000222222000000002229032 -T2202301111117630471219840705WTTPTYPPW2222211222222011213290154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117630471219870323WT@YP0Z@Z2222212222222021214290154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763047120200912WTTPT99PT22222122204398200000000120100512WT@TTZW@B22222122204305200000000 -T12023011111176308222000407091120313110817118460000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111117630821219980723WTTBP00WT2221222222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763082120220712WT@W@W9ZW22212222204398100000000120210127WT@TPP@T922212212204398100000000 -T12023011111176313424200404701120232110516300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111117631342219770723WTTTYZ99@2221222122211012213110006013109900000000000000000000000000000000000000000000000000000000000000000000000554038000000000 -T320230111111763134120160212WT@T90#@Z22212222204398100000000 -T12023011111176318023700414331110413110982101000000000002300060000000000000000000000000000000000222222000000002229012 -T2202301111117631801219930913WTT#WWTWW2222212222221012210110411921011807000000000000000000000000000000000000000000000000000000000000044900000000000000000000 -T320230111111763180120110107WT@@BBB#B12222112204304100000000 -T320230111111763180120210123WTTYT0#W912222212204398100000000120170723WTT#9Z@WT12222122204398100000000 -T12023011111176319322000407411120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117631933219780723WTTP09T#W2222212222211012212111470011069933000000000000000000000000000000000000000000000000000000000000267500000000061500000000 -T320230111111763193120160513WTT9WZ00#22212212206398100000000 -T12023011111176330725900402721120333120000300000000000005280670000000000000000000000000000000000222222000000002229022 -T2202301111117633073219510104WTTYYWT#Y1222221122222012206110750011069940000000000000000000000000000000000000000000000000000000000000255200000796000000000000 -T320230111111763307120070307WTTW@###011222212206307100000000120060426WTTPWBZ0011222222206308100000000 -T12023011111176334422000412971120413110828300000000000004270200000000000000000000000000000000000222222000002272219012 -T2202301111117633441219830326WTTT@9PT92212222222225012206210213923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117633442219860309WT@YYBT9P1222221222221102212990006011079922000000000000000000000000000000000000000000000000000000000000137600000000000000000000 -T320230111111763344120220904WT@#B#Z9W22122212204398100000000120130123WT@YW@WY922222212204301100000000 -T12023011111176336820600402131120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117633682219850413WT@Z9PPY@2221222222212012212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111117633681219850427WT@TZW0WT2222211222222022213191450023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763368120100912WTT9ZBY0Y22212122204303100000000120070704WT@Y0PTB922212122204305100000000 -T12023011111176336921000403201120313110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117633691219850711WTTBZ@YPB2222212222225012214210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763369120180922WT@@P0Z#P22222112204398200000000120150126WTT#PYYZY22222122204398200000000 -T12023011111176347424100402401120333110670300000000000005280670000000000000000000000000000000000222222000000002229022 -T2202301111117634743219800914WT@999ZWW1222212222221012212120600011069925000000000000000000000000000000000000000000000000000000000000209100000000000000000000 -T320230111111763474120170424WT@@TW99T12222222206398100000000120150307WTT9TB9WY12222222206398100000000 -T12023011111176363224700408301120412110939300000000000007710230000000000000000000000000000000000222222000000002229012 -T2202301111117636321219950326WTTTZY9@B1221222222221012211110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763632120130507WT@P#TZP#12212212204303100000100 -T320230111111763632120190112WTT#B09Z912222112204398100000000120150304WTTPBBTZ912222112204398100000000 -T12023011111176373525900406651120233120000300000000000504170120000000000000000000000000000000000222222000000002229022 -T2202301111117637353219690727WT@ZTPY992222211222222012215110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763735120060904WT@0BY9PZ22222112209310100000000 -T12023011111176374824700401281120622111395300000000569210090100000000000000000000000000000000000222222000000002229012 -T2202301111117637481219890101WT@P0@#ZW2222212222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117637481219920521WTTTZ@@PY1222211222222021213290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763748120160411WTTWZZYT@22222122204398200000000120130221WTTYP@#W@22222122204302200000000 -T320230111111763748120200521WT@T9Y#0T22222112204398200000000120180104WT@YZYB##22222122204398200000000 -T12023011111176375420600414831120413110939300000000000007620410000000000000000000000000000000000222222000800012219072 -T2202301111117637541219850426WTTY#Z#W92221222222221012216121020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763754120110707WT@#ZTBB#22212222204304100000000 -T320230111111763754120180904WT@ZZWTWP12212222204398100000000120160123WT@0PYTB@22212212204398100000000 -T12023011111176376322000414461120313110766161090000002006540260000000000000000000000000000000000222222000000002229012 -T2202301111117637631219990301WTTB0#Z@W2212222222221012211110441623011800000000000000000000000000170002000000000000000000000000120000000000000000000000000000 -T320230111111763763120190114WTT0YW09Y22222212204398100000000120170727WT@#T0BY@12221222204398100000000 -T12023011111176377922000406191120612111339300000000015007710690000000000000000000000000000000000222222000000002229072 -T2202301111117637791219760705WTT9WW@0W2222211222222012212190810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117637792219830218WT@YT0ZT02222222222212022212190114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111763779120090405WTTYY@P#022222222204306200000000120070105WTT09WTTW22222212204307200000000 -T320230111111763779420180718WT@@ZB#Y922222222104398109140000120130309WTTZP0@Y022222212204302100000000 -T12023011111176380722900405641120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111117638071220040918WTTZZP9BP1222212222221012208110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763807120220921WT@YZTTB012222212204398100000000 -T12023011111176385425900402121120312110838300000000000006540490000000000000000000000000000000000222222000000002229012 -T2202301111117638541219900705WTT@TY#@W1222222222221012212910550523011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111763854120110409WT@9@9T9B12222222204304100000000120090313WT@#00TBP12222122204306100000000 -T12023011111176394020800405141120413110884300000000000006540230000000000000000000000000000000000222222000000002229072 -T2202301111117639401219800704WT@YT@BBW2122222222221012213111650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763940420070409WT@#PW0WW12222222104308108220000 -T320230111111763940120100723WT@@P09ZT11222222204303100000000120100723WT@ZYY9WW11222212204303100000000 -T12023011111176395421000408061120213110619300000000000003160060000000000000000000000000000000211122222000000012219012 -T2202301111117639541219950126WTTB#0T##2222212222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763954120220405WTTWZT@BZ12222122204398100000000 -T12023011111176396524200414851120713111480300000000000011650240000000000000000000000000000000000222222000000002229072 -T2202301111117639651219890924WT@9YWTTB2221212222225012210111030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763965120110324WT@ZB0@9W12212212204304100000000120090126WTTZZ9T0912212212204306100000000 -T320230111111763965120160523WT@PYTYB922222112204398100000000120110324WT@W0@ZY912212212204304100000000 -T320230111111763965120190121WT@Z00B9922212222204398100000000120170924WTTZZ9T9T22222112204398100000000 -T12023011111176396824500402221120333120000300000000000005280450000000000000000000000000000000000222222000000002229022 -T2202301111117639683219740323WT@@0##PY2222212222222012211110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763968120170422WT@BTY@WT22222122206398100000050120120323WTTTTTTY@22222112206304100000050 -T12023011111176398620300400971120612111269300000000000010090280000000000000000000000000000000000222222000000002229072 -T2202301111117639861219910912WTTT@#TW92222212222223012212110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763986120070307WT@B09TZW22222112204308100000000 -T320230111111763986120110318WTTZ@Y#9T22222122204304100000000120100721WT@Y0#ZYT22222122204305100000000 -T320230111111763986120200701WTTZ9BP0T22222222204398100000000120140505WTTT#ZZPP22222122204302100000100 -T12023011111176398724200414851120212110611300000000000005280510000000000000000000000000000000000222222000000002229042 -T2202301111117639871219980427WT@9B##W#2221222222221012211110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111763987120170127WTTP#@#0W22212212204398100000005 -T12023011111176399922700407491120412110939300000000000007710150000000000000000000000000000000000222222000000002229012 -T2202301111117639991220010302WTTPTY0W#2222212222221012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000810 -T320230111111763999120190908WT@9TPY9W22222112204398100000000 -T320230111111763999120220907WTTZT@#@@22222122204398100000000120210414WTTTZZPZB22222112204398100000000 -T12023011111176403324700403421120433110611300000000003005280040000000000000000000000000000000000222222000000002229022 -T2202301111117640332219940707WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117640332219880727WT@YYBT9P1222221222221102209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764033120180511WTT00@##Y12222212204398100000000120150923WT@P@BBTY12222212204301100000000 -T12023011111176410124200410001120213110618300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111117641011219990926WT@T@#@YZ2221222222221012213110322821011813000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764101120200321WT@PW#BZT22222212204398100000000 -T12023011111176411724200404422120213210376300000000000004380060000000000000000000000000000000000222222000000002229032 -T2202301111117641171219970111WTTTY9@W@2222122222221012213910006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764117120220713WT@9TPY9W22221222204398100000000 -T12023011111176414522000406271120212110516300000000008004170120000000000000000000000000000000000222222000000002229012 -T2202301111117641451219870126WT@T0YP@91222212222221012216110124821011822000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764145520150318WT@T@WP0T22222112104398109140000 -T12023011111176434025900406841120533111034300000000170007710140000000000000000000000000000000000222222000000002229022 -T2202301111117643402219860227WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764340120110522WTTB9P@TZ12222122204305100000000120090901WTTZB#@0B12222112204307100000000 -T320230111111764340120150102WTTZW#@TP12222112204398100000000120120901WTTP@P0Y912222112204304100000000 -T12023011111176436723500404531120213110493300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111117643671219880422WTT9#Z#BB1222222222225012213110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764367120100512WTTT9ZYPY22222222204306100000000 -T12023011111176453324100414051120432110939300000000000006540380000000000000000000000000000000000222222000000002229022 -T2202301111117645332219890527WT@YTB@902222212122211012216110610013109900000000000000000000000000000000000000000000000000000000000000000000000695023900000000 -T320230111111764533120070914WTT0@@Z@922222112204309100000000 -T320230111111764533120170127WT@YZP9BB22222122204398100000000120130904WT@T@#ZPT22222122204303100000000 -T12023011111176466724200403461120513111199126010000006008880170000000000000000000000000000000000222222000000002229012 -T2202301111117646671219970318WT@TZ@0TP1222212222221012212110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764667120190424WTTBPB#@#12222122204398100000000120180423WT@TY0T#012222112204398100000000 -T320230111111764667120220713WT@9YY#WZ12222212204398100000000120200907WT@T@P#P#12222112204398100000000 -T12023011111176477422000407961120212110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111117647741219970727WT@90#BZP1222212222221012212120174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000008657 -T320230111111764774120220404WT@P#Z9TT11222212204398100000000 -T12023011111176477823700414331120423111034300000000030407710040000000000000000000000000000000000222222000000002229012 -T2202301111117647781219890401WT@9WZZZW2222212222222011212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117647781219900407WT@WZ9T@@2222211222222021216190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764778120180123WT@TTBP@@22222112204398100000000120130404WTT#0P9Y@22222122204304100000000 -T12023011111176484020600414771120412110939300000000000007710970000000000000000000000000000000000222222000000002229072 -T2202301111117648401219810224WTTYTWTPW2221222222221012216111470023010900000000000000000001000000000000000000000000000000000000210000000000000000000000000000 -T320230111111764840120090702WT@WYZ#YT22212212204307100000000 -T320230111111764840120130902WTT@B0@W@22212222204302100000000120100312WTT9BTB#@22212222204305100000000 -T12023011111176484722000411551120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111117648471219950327WT@9#P9W@2222212222221012211110055521011822000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764847120140709WT@T0PZBY22222212204301100000000 -T12023011111176494422000413732120323210835300000000000006540050000000000000000000000000000000000222222000000002229032 -T2202301111117649441219870413WT@Y9W00T2222211222222011215290065423011800000023000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117649441219870504WTT@YW@992222212222222021215290065423011800000024000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111764944120180314WTTZB@B0B22222122204398200000000 -T12023011111176504924200407271120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117650492219650305WT@TYB#W02222211222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111765049120060426WT@@0PBZZ12222122204311100000000 -T12023011111176528920600404491120423110939300000000070007710040000000000000000000000000000000000222222000000002229012 -T2202301111117652891219880904WTT@P#9Z92222211222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117652891219870401WT@Z#PB#W2222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765289120130311WT@BPPP9@22222122204303200000000120100201WTT0WY#P#22222112204307200000000 -T12023011111176529125600411521120233110516300000000000504170990000000000000000000000000000000000222222000000002229022 -T2202301111117652912219720327WTT9@PWZT2222212222215012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111765291120100723WT@PZ9@Y@22212122204304100000000 -T12023011111176530824200408571110313110835300000000000004340240000000000000000000000000000000000222222000000002229012 -T2202301111117653081219850427WTT9#@ZZW2222212222225012212120243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765308120170411WT@Y0BZ#T22222112204398100000000120140918WTT#@T@9#22222122204302100000068 -T12023011111176535521000405411120212110611300000000000005280230000000000035001000000000000000000222222000000002229012 -T2202301111117653551219780427WTT@@ZZZZ2222211222225012212110243623011400000000000000000000000000000000000000000000000000000000320000000000000000000000000000 -T320230111111765355120100313WTTW@#W9B22222112204305100000000 -T12023011111176549824100402401120213110631300000000063403340020000000000000000000000000000000000222222000001942219072 -T2202301111117654981219680518WTTYTYT@01222222222225012212110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000001203 -T320230111111765498120060101WTTZ9YTW012222122204310100000287 -T12023011111176556622000411981120232110583300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111117655662219980107WTTPB0YP02221222222211012211120035713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111765566120190104WTTY0@9Y022212212204398100000000 -T12023011111176561921700406141120233120000300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111117656193219660212WT@0YY@B92222212122222012210110006013069900000000000000000000000000000000000000000000000000000000000000000000001071000000000000 -T320230111111765619120120312WTTY0W9W#22222112207302100000000 -T12023011111176563222000410051120323110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111117656322219920204WTT09Y#PB2222211222222011214290035713051800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117656321219890713WTTB9#TBB2222212222222021215290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765632120190513WTTY@90YB22222112204398200000000 -T12023011111176563720800414651120213110611300000000025005280490000000000000000000000000000000000222222000000002229012 -T2202301111117656371219920401WTT0YW9WT2221222222221012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765637120150223WT@YP@#@B12212212204398100000000 -T12023011111176577824200407311120523111199300000000000008880670000000000000000000000000000000000222222000000002229012 -T2202301111117657781219930924WTTTYPB9Z2222212222221011211110550523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117657781219900727WTTT0TTBP2222211222221011210190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765778120100327WTTPZB9#W22222122204306100000000 -T320230111111765778120160722WTT0@009P22222122204398100000000120120507WTTZ9TY@922222112204305100000000 -T12023011111176578324200414851120632111339300000000000008880800000000000000000000000000000000000222222000000002229022 -T2202301111117657832219900127WT@TB#T0W2222222222211012212120461413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111765783120070527WTT9Z@0WZ22222222204308100000000 -T320230111111765783120130326WTTYWP9WP22222222204398100000000120100721WTT###0#Y22222212204305100000000 -T320230111111765783120180124WT@PB0PT922222222204398100000000120160123WTTPZT0ZT12222222204398100000000 -T12023011111176578624700411201120432110939300000000000006540940000000000000000000000000000000000222222000000002229022 -T2202301111117657861219880923WTT@0TT9B2222212222225012212110950023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765786120120427WTT909WP022222122204304100000000 -T320230111111765786120170514WTTZT0@TB22222122204398100000000420150426WT@Z@9ZPB22222112104301106840243 -T12023011111176579024200403941120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117657902219630326WT@#YPYP@2221222222211012212110850013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111765790120060908WT@W#0BTY12212222204311100000000 -T12023011111176584922000402321120212110611300000000005005280310000000000035003000000000000000000222222000000002229012 -T2202301111117658491219920509WT@0B@YW#2221222222221012212110362423011800000000000000000000000000200002000000000000000000000000040000000000000000000000000000 -T320230111111765849120150122WT@Y@9BTB12212222204302100000000 -T12023011111176585122000410221120213110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111117658511219810101WT@P9TB#92222222222221012212110243623011800000000000000000000040000000000000000000000000000000000060000000000000000000000000000 -T320230111111765851120180204WTTB@Z#BT22222222204398100000000 -T12023011111176588024200408391120213110598300000000001005280090000000000000000000000000000000000222222000000002229012 -T2202301111117658801220020424WT@#WW#B01222212222221012212110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765880120220909WT@T@0ZP022222212204398100000000 -T12023011111176590220800405391120113110396300000000000004170110000000000000000000000000000000000222222000000002229012 -T2202301111117659021219890509WTTYBT@@92222212222221013214190243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111176591225900401101120313110482300000000000003160180000000000000000000000000000000211122222000000012219012 -T2202301111117659121219750311WTT9PB00B1222222222223012206210075323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765912120180523WTT@YZT9912222222204398100000000420110127WT@YYBT9P12222212204303900000000 -T12023011111176593424900404261120313110766300000000000006540020000000000000000000000000000000000222222000000002229072 -T2202301111117659341219920427WT@00#Z0B2221222222223012212110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111765934120130426WTTW#TZZB22212212204303100000000120080726WT@#@T@YY22212222204306100000000 -T12023011111176596421700406141120333120000300000000029305280480000000000000000000000000000000000222222000000002229022 -T2202301111117659643219670212WT@WBT#@92222212222222012212120006013069900000000000000000000000000000000000000000000000000000000000000318000000000000000000000 -T320230111111765964120090704WTTZ#09@B22222122206306100000023120070727WT@@9YW9@22222112206308100000060 -T12023011111176612522500411101120212110611300000000000005280260000000000000000000000000000000000222222000000002229092 -T2202301111117661251219870408WT@Y@WZY92222212222221012212110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766125120070412WTT#@TP0@22222122204310100000000 -T12023011111176622321700406141120413110995136350000000004770170000000000000000000000000000000000222222000002942219012 -T2202301111117662231220030101WT@#P@90@2222212222221012211110184221011808000000000000000000000000000000000000000000000000000000000000058700000000000000000000 -T320230111111766223120180209WT@YB@@0W22222122204398100000000 -T320230111111766223120210107WT@B9PWBW22222122204398100000000120200108WT@BTP9@T22222112204398100000000 -T12023011111176624524700402991120413110684300000000000007710270000000000000000000000000000000000222222000000002229012 -T2202301111117662451219950326WT@TZP0#Z2221222222221012216110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766245120170307WT@Y0P@0922212212204398100000000 -T320230111111766245120210904WT@T#Z00922212222204398100000000120190407WT@@WY0#T22212212204398100000052 -T12023011111176626624200407271120233110557300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111117662663219640309WTTZPYWYY2222122222222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766266120040507WTTT#PT9922221222206312100000000 -T12023011111176628720600402141120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111117662871220020727WTTTW9#0#2221212222221013212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111176636223500408281120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117663621219940713WT@#Y#@#W2222212222223012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000300 -T320230111111766362120100921WT@T9ZPYW22222112204302100000000 -T12023011111176638325800405801120233110376300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111117663835219790421WTT9T#9@P1222211222221012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766383120110413WT@TW9Z9@12222122209304100000000 -T12023011111176639920800411601120212110631300000000000005280190000000000000000000000000000000000222122000000002229012 -T2202301111117663991220010227WTTB#0WTZ2222212222221012210110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766399120190723WTTW#ZBWT22222122204398100000000 -T12023011111176649924100405611120533120000300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111117664993219780222WT@##YPZY2222212222225012213110025811069940000000000000000000000000000000000000000000000000000000000000279500000000000000000050 -T320230111111766499120200527WTTZZ00T022222122208398100000000420120907WTT0TZBT012222122205304100000000 -T320230111111766499420080212WTTZ@0Z9P12222122204308100000000420060318WT@TB#YBP22222122204310100000000 -T12023011111176655320600402141120232110516300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111117665533219500912WTTWP@ZT#2222212122215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000871006300000000 -T320230111111766553120070318WTT9#0T9922222112206308100000000 -T12023011111176660020800414651120312110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117666001219810113WT@PZ0ZBY2212222222225012213110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766600120080407WT@@TBYB922112212204307100000000120070427WTTW90#ZZ22112222204308100000000 -T12023011111176665624200414851120713111351300000000000011650150000000000000000000000000000000000222222000000002229072 -T2202301111117666561219800526WT@#Y9ZBT2221221222222012212190520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117666561219820713WT@B@ZPY02221222222222022216190690023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766656120040308WT@#TY9PW22212212204310100000000 -T320230111111766656120070702WTT9@PP@T22212222204308100000000120060708WTTW0@WBB22212222204309100000000 -T320230111111766656120100126WT@TZ0TTW22212222204305100000000120080108WTTBTW0#022212222204307100000000 -T12023011111176669320600414161120313110835300000000000206540080000000000000000000000000000000261222221000000002229012 -T2202301111117666931219780421WTTTY0TT02122222222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766693120060924WT@PPZBTY21222222204309100000000120050427WT@TTTPPZ21222222204310100000000 -T12023011111176671520800410751120213110611300000000000505280380000000000000000000000000000000000222222000000002229012 -T2202301111117667151219640101WTTZ099@Z2222212222221012298110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766715120110712WT@Z#PYTW22222122206306100000000 -T12023011111176676621700406141120433110939300000000000006540850000000000000000000000000000000000222222000000002229022 -T2202301111117667662219840501WTTWWB0ZT2222212222211012208110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111766766120060926WTTZ9T0TP21222222204310100000000 -T320230111111766766120100226WTTWP#@#B21222222204306100000000120080402WTT@0#9##21222222204308100000000 -T12023011111176682024200414351120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117668203219600712WTTBTYPY@2122222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001160 -T320230111111766820120110207WTTYTZ0@#21222222206305100000000120060913WTTWP0W0W21222222206310100000000 -T12023011111176685025200409361120333110740300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111117668502219680707WTTW9B@BP2222211222213012209110920013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111766850120090313WT@9TP9#T22222122204307100000000120080727WT@ZW##Z922222112204308100000000 -T12023011111176685923500411471120523111013300000000000505320120000000000000000000000000000000355122222000000012219012 -T2202301111117668591219910712WT@W@ZZTP2222212222222011216190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117668591219920409WTTBYZ9TZ1222221222222021216190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766859120150427WT@TYY#9#12222222204398100000000 -T320230111111766859120200505WTTY#9@9022222122204398100000000120180709WT@@@ZBB#12222212204398100000000 -T12023011111176688425100407671120433110611300000000000005280940000000000000000000000000000000000222222000000002229022 -T2202301111117668842219820905WT@YYBT9P2222222222222012204990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117668842219840301WT@YYBT9P1222221222222022203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766884120220505WT@0Z0BBP12222122204398100000000120110718WTTBBTW9T12222112204304100000000 -T12023011111176695321000412411120233120000300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111117669533219540723WTTY0BP002222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001378000000000000 -T320230111111766953120130305WT@PBYZ##22222122206302100000000 -T12023011111176696423500409141120213110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111117669641219970413WTT#W0BB02222212222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766964120210726WTT@BPZ@Y22222112204398100000000 -T12023011111176697825600411521120432110939300000000000007710090000000000000000000000000000000000222222000000002229022 -T2202301111117669781219800426WT@9#ZTWB2222212222225012216110184223099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111766978120070718WTT0@9#9T22222112204308100000000 -T320230111111766978120130123WTTT#W@9922222112204303100000050120110427WTTT@@P0922222112204305100000050 -T12023011111176701222000405181120233110376300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117670122219890923WTTWB#WZB2221222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111767012120220201WT@0TZ0W022212222204398100000000 -T12023011111176702220800411991110213110611110900000000003570010000000000000000000000000000000000222222000000002229012 -T2202301111117670221219910507WTTWZ#P#02221221222225012216110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111767022120180705WTTP#9YPY22222122204398100000000 -T12023011111176704022000409871120812111480300000000000010090060000000000000000000000000000000000222222000000002229072 -T2202301111117670402219830423WTTBTT9B02221222222212012212190471313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111117670401219820423WTT@P9YT#2221221222222022212190670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111767040120130121WTT900WWT22212222204303100000000120110908WT@@PT9#P22212222204306100000000 -T320230111111767040120180102WTT0PBWBB22212212204398100000000120150423WT@PZWY9B22221212204301100000000 -T320230111111767040420070405WTTBZPPZB12212212104310109140000120050418WTT0ZTY@P22212222204309100000000 -T12023011111176709122000405841120513111227300000000000007460780000000000000000000000000000000000222222000001422219072 -T2202301111117670911219860314WT@PYWZT#1222212222221012211110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000141 -T320230111111767091120120323WT@@WT9@@12222222204302100000000120050712WTT99B#WP12222212204310100000164 -T320230111111767091120160911WT@B#000Z12222122204398100000000120130327WTTB0TZBB12222212204301100000000 -T12023011111176709824700413891120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111117670981219990901WT@P9BP0W1222221222221011208290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117670981220010401WTT#PBZ901222222222221011210210065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111767098120200313WTTYZ0#ZY12222222204398200000000 -T12023011111176740125900403711110233120000300000000000002010010000000000000000000000000000000000222222000000002229021 -T2202301111117674015219790727WT@9TPZWZ2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111767401120220714WTTZ@@Z#Y12222212208398100000000 -T12023011111176741022000414461120332110740300000000000005280760000000000000000000000000000000000222222000000002229022 -T2202301111117674102219750721WTT@ZBW9#2221221122221012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000918000000000000 -T320230111111767410120150918WT@P@#BY#22212222204398100000000120140413WTTP#YYT#22212212204301100000000 -T12023011111176748924500405781120213110611300000000002104170020000000000000000000000000000000000222222000000002229012 -T2202301111117674891220000523WT@YZ9WYP2222212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111767489520180307WT@YBPB#W12222122104398106090000 -T12023011111176756521100402261120333110704300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111117675652219750101WT@BP#TWT1222221222212012212190075311089937000000000000000000000000000000000000000000000000000000000000086000010000000100000000 -T2202301111117675652219850507WTT#0PT9Y1222222222212022210190006013089900000000000000000000000000000000000000000000000000000000000000000000000000088900000000 -T320230111111767565120210727WTT0PZ9Y012222222204398100000000 -T12023011111176773025200408051120623111395300000000080506050370000000000000000000000000000000403122222000000012219012 -T2202301111117677301219970426WTTT#Y@0@1222222222221011212110243621011212000000000000000000000000000000000000000000000000000000000000111000000000000000000000 -T2202301111117677301219980907WTT00BPZ92222211222221011212190025823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111767730120180707WT@P##T0@12222122204398100000000120170501WTTZBT#BB12222112204398100000000 -T320230111111767730120210721WTT9BTZ9T22222212204398100000000120200904WT@Z0ZZYZ12222112204398100000000 -T12023011111176777522000409871120212110258300000000000002040430000000000000000000000000000000136122222000000772219012 -T2202301111117677751219830407WTT9ZYP@Z2221221222221012212110441623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000075 -T320230111111767775520110301WTTWT9W@Z22212212104303109140000 -T12023011111176780820400400211120213110516300000000000000010140000000000000000000000000000000000222222000000002229012 -T2202301111117678081219840705WT@YPPB9Y2122222222225012212110144611011700210000000000000000000000000000000000000000000000000000040000136400000000000000000000 -T320230111111767808120190313WT@@PZZBT21222212204312100000000 -T12023011111176790920800411601120213120000300000000415001970060000000000000000000000000000000000222222000003312219012 -T2202301111117679091220020104WT@9@0Z#W2222212222221012212110065421011810000000000000000000000000000000000000000000000000000000000000066100000000000000000000 -T320230111111767909120210121WT@@W@#ZT22222112204398100000000 -T12023011111176804720600414251110413110893300000000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111117680471219870722WTT09#PY92222212222222012216110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111768047120120708WT@@Y9B0W22222112204303100000000 -T320230111111768047120210327WT@TWYTTB21222222204398100000000120140127WTTBBW9WZ22222122204301100000000 -T12023011111176813822000400811120313110697300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111117681381219700122WTT@0B@@T2221222222221012212111120021011821000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111768138120070718WTTY##B0B22212212204309100000000120060511WT@Y@B@WT22212212204310100000000 -T12023011111176815525600411521120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117681552219780313WT@0WYTPT2222212222211012213111880013089900000000000000000000000000000000000000000000000000000000000000000000000000091400009999 -T320230111111768155120070109WT@P#WBBW22222222204309100000100120050223WTTZ#9T0Y22222222204310100000000 -T12023011111176820923700414331120312110835300000000170906540080000000000000000000000000000000000222222000000002229012 -T2202301111117682091219970327WT@PY#9#@1222212222221012212120322823011400000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111768209120170104WTTPZ9TT012222112204398100000000120160527WTTZPBZ@B12222112204398100000000 -T12023011111176824020600402131120333110747300000000005005010470000000000000000000000000000000000222222002600012219022 -T2202301111117682401219840308WT@0#W@#B2222212222221012213110640023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111768240520110101WT@ZPY#W#22222122104304109140000120060113WTT@PYP#@21222122209310100000000 -T12023011111176824325900402231120333110740300000000000003380870000000000000000000000000000000000222222000001902219022 -T2202301111117682432219910723WT@9Z9PYY2222212122211012212110700013109900000000000000000000000000000000000000000000000000000000000000000000000871006300000000 -T320230111111768243120180407WTTTWP##W22222112204398100000190120120123WTT#0#@0T22222122204304100000000 -T12023011111176832624100402401120213110560300000000000105280050000000000070001000000000000000000222222000000002229012 -T2202301111117683261219930713WTTY0B#YW2222212222223012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111768326120090301WTTWY#99022222112204306100000086 -T12023011111176835120600404122120233210470300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111117683513219790118WTTYWZZWP2222121222222012212910006013079900000000000000000000000000000000000000000000000000000000000000278200000000000000000000 -T320230111111768351120210427WT@00T0BZ22221222207398900000000 -T12023011111176842722000408451120313110846300000000010006540440000000000000000000000000000000000222222000000002229072 -T2202301111117684271219860923WT@B#W#Z02222212222221012216110890023011400000000000000000000000000000000000000000000000000000000220000000000000000000000000000 -T320230111111768427120180427WTTZB@0@Z22222112204398100000000120150313WT@Z9TPP@22222122204398100000000 -T12023011111176845823500404821120233120000300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111117684585219830426WTTP#YP#Z2222212222223012298120006013069900000000000000000000000000000000000000000000000000000000000000380000000000000000000000 -T320230111111768458120160922WTTPTYWZB12222122208398100000000 -T12023011111176849921700406141120213110611111990000001005280030000000000000000000000000000000000222222000000002229012 -T2202301111117684991219950724WTT@0YZZT2222212222221012212110035721011748000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111768499120180123WTTPTYY#B22222112204398100000000 -T12023011111176850120800410751110313110704300000000000005060520000000000000000000000000000000000222222000000002229012 -T2202301111117685011219860904WT@PYTT002122222222225012210110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000053 -T320230111111768501120160104WT@#9B@@011222212204398100001633120050514WT@@TWBZ@11222222204311100000053 -T12023011111176851420600414871120313110835300000000079606540080000000000000000000000000000000000222222000000002229012 -T2202301111117685141219870313WTT#9WWWZ2222211222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111768514120200323WT@9TT9Y#22222122204398100000000120150927WTTTY0BTT22222112204301100000000 -T12023011111176869225200410591120413111034300000000150007710030000000000000000000000000000000000222222000000002229012 -T2202301111117686921219920309WTT0@9B9#2222212222223012212110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111768692120160124WT@@@9@Y022222112204301100000000 -T320230111111768692120220904WT@@W9YP922222122204398100000000120200924WTTPT0@YP22222112204398100000000 -T12023011111176884625900406081120333110376300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111117688462219940123WT@YYBT9P1222212222221012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117688462219940712WT@YYBT9P1222221222221102205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111768846120170118WT@TBBB0W12222122204398100000000 -T12023011111176886724700405831120323110740300000000000001890090000000000000000000000000000000000222222000004652219012 -T2202301111117688671219730127WTTTWPY#02222212222222011215210095121011814000000000000000000000000000000000000000000000000000000000000092800000000000000000000 -T2202301111117688671219700908WTTYBP9@@2222211222221021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111768867120050304WT@##Z09022222112204310200000000 -T12023011111176891022900412731120233110423300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111117689103219800105WTTWZZP#91222221222221012212110144611069940000000000000000000000000000000000000000000000000000000000000382700000000000000000000 -T320230111111768910120090712WTTW@#Z0B12222222207305100000000 -T12023011111176892522000404691120213110611300000000008905280100000000000000000000000000000000000222222000000002229012 -T2202301111117689251219830401WTTYB#@TW2222212222225012213110303023011900000019000200000000000000000000230002000000000000000000100000000000000000000000000000 -T320230111111768925120130427WTTPP#BT022222112204304100000000 -T12023011111176893420200409311120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117689341219860313WTTYY000Z2222212222223012212110114923011800000000000000000001000000000000000000000000000000000000010000000000000000000000000000 -T320230111111768934120180901WTTB009T#22222122204398100000000 -T12023011111176898922900405641120313110376300000000000305280410000000000000000000000000000000000222222000000002229012 -T2202301111117689891219910912WT@0PWW#Y2222212222221012212110421823011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111768989420130918WTTTP09PZ22222112104304109140000120110314WT@0PZ@ZW22222122204305100000000 -T12023011111176905022000406951120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117690503219640101WT@W#Y9Z#2222212222225012216110154513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111769050120090221WT@TP9PTB22222122206305100000000 -T12023011111176905822000405321120212110583300000000000505280990000000000000000000000000000000000222222000000002229072 -T2202301111117690581219680523WT@ZB#0@91222222222224012210111870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111769058120080526WT@WWWPTW12212222204309100000050 -T12023011111176908425900406081120313110766300000000000005230360000000000000000000000000000000000222222000001312219042 -T2202301111117690841219750108WT@09PPYY2122222222223012212110283223010700000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111769084120180711WT@B09#0021222222206398100000000120150127WT@T@TYYT21222212206301100000000 -T12023011111176910423500405982120323211575300000000000006540020000000000000000000000000000000000222222000000002229032 -T2202301111117691041219760104WT@YZPWZ#2222211222222011215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117691041219780104WT@@ZTZYY2222212222222021215290035723011800000000000000000000000000000000000000000000000000000000170000000000000000000000000000 -T320230111111769104120060427WTTY#B@Y022222122204309200000000 -T12023011111176913922000411551120332110835300000000000006540100000000000000000000000000000000000222222000000002229022 -T2202301111117691391219700723WT@@TWTYW2221221122225012209110362423109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111111769139120090218WT@YP@TPY22212212204307100000000120060113WT@0@@T#Z22212222204310100000000 -T12023011111176914221700406141120313110835300000000000006210170000000000000000000000000000000000222222003200012219012 -T2202301111117691421219990407WT@YZ0T@P2222212222221012211110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111769142120200918WTTT9PYYZ22222122204398100000000120160101WTTPY@W#W22222122204398100000000 -T12023011111176916624100402401120433120000300000000000006540360000000000000000000000000000000000222222000000002229022 -T2202301111117691663219760909WT@B0@0WP1222221222222012212110006011069940000000000000000000000000000000000000000000000000000000000000733800000000000000000000 -T320230111111769166120160724WT@Y@BZZ012222112208398100000000 -T320230111111769166120190709WT@PB9#0P22222122208398100000000120190709WT@#0ZZT#22222112208398100000000 -T12023011111176919922700408351120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111117691991220040723WTT9P9B#Z1221222222221013211190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111176934324700409321120233110516300000000000001400050000000000000000000000000000000000222222000002772219022 -T2202301111117693433219760408WTTW9W9#B2221222122211012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000922001200000000 -T320230111111769343120070923WTT@WYZ0Y22212222207309100000301 -T12023011111176943120800414651120413110939300000000000007710300000000000000000000000000000000000222222000000002229012 -T2202301111117694311219990226WTT9PP0B@2221222222221012207120342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111769431120180421WTTBWY#9Z12212212204398100000000 -T320230111111769431120210222WT@99T@YP12212212204398100000000120190302WTTT9Y0ZP12212212204398100000000 -T12023011111176952824200408391120332110670300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117695283219730904WTT9PP0WT2221222222211012210120670013069900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111769528120140712WT@YB@0#922212212206398100000050120110723WTTYPPP@B22212212206303100000050 -T12023011111176969324700401281120212110611300000000011105280950000000000000000000000000000000000222222000000002229072 -T2202301111117696931219750926WTTZ#0BZW2222212222223012212110960023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111769693120110214WTT99WWTZ22222122204301100000000 -T12023011111176976425900406841120213110611300000000000005280760000000000000000000000000000000000222222000000002229092 -T2202301111117697641219880404WT@0ZT#Z92222212222225012212110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111769764120110426WT@0B#BBT12222112204304100000000 -T12023011111176978122000409411120113110376300000000000002500060000000000000000000000000000000166122222000000012219012 -T2202301111117697811219890121WT@@#9BWB1221212222221013209190065423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111176990820400409801110313110835108430000000002530010000000000000000000000000000000000222222000000002229012 -T2202301111117699081219850923WTTZ@9B9P2221212222225012216120025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111769908120220904WTTP9P9ZZ22212212204398100000000120170309WTTYWWT0#22222212204398100000000 -T12023011111176995624500405781120213110611104580000004405280280000000000000000000000000000000000222222000000002229012 -T2202301111117699561219950214WTTW00BT#2222212222221012210110293123011400000000000000000000000000000000000000000000000000000000160000000000000000000000000000 -T320230111111769956120160727WT9TT@ZWY22222122204398100000000 -T12023011111177000924700408301120212110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111117700091219910712WT@#P@#9T2222212222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770009120210401WT@P9@@B022222122204398100000000 -T12023011111177007624500405781120233110516300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111117700762219960927WT@BWYYPP2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000468 -T320230111111770076120190905WT@YYT0Y922222122204398100000000 -T12023011111177016424200414851120212110599300000000000003160060000000000000000000000000000000211122222000000012219042 -T2202301111117701641219880723WTT99BB9P2122222222221012212110303023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000081 -T320230111111770164120060209WTT@BPB@@21222222204310100000000 -T12023011111177019220600404491120232110516300000000000004170780000000000000000000000000000000000222222000000002229022 -T2202301111117701922219890918WTT#YZ9ZB2222212222211012212110840013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111770192120170123WTTZY@0B022222112204398100000000 -T12023011111177022124200404421120523111116300000000000008880100000000000000000000000000000000000222222000000002229042 -T2202301111117702211219840509WTT9#WZ902222211222222011212290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117702211219900707WT@Z0WPZ@2222212222222021214290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770221120130427WT@T0W9Y@22222112204301200000000 -T320230111111770221120200504WTT#9@W9022222122204398200000000120180412WTT#TY99Z22222112204398200000000 -T12023011111177026522000411551110332110376300000000000001160420000000000000000000000000000000000222222000003012219021 -T2202301111117702652219900122WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117702652219780924WT@YYBT9P1222221222221102207990006011079912000000000000000000000000000000000000000000000000000000000000105000000000000000000000 -T320230111111770265120090721WT@PZTZ@T12222212204305100000000 -T12023011111177030422000402321120213110606300000000000005210130000000000000000000000000000000000222222000000072219012 -T2202301111117703041219870318WT@T9WP#B1121222222221012212110590123010900000000000000000000000000000000000000000000000000000000000000000000000000000000000006 -T320230111111770304120070408WT@PTTPBP22222212204308100000000 -T12023011111177031122000411281120523111116300000000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111117703111219830926WTTT@YZB92222212222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117703111219830307WTTPZPB#P2222211222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770311120080218WT@90W#Y022222112204308200000000 -T320230111111770311120130301WTT#Y@PB#22222122204303200000000120100727WT@#BYB9T22222112204305200000000 -T12023011111177032024200404701120323110835300000000040006540080000000000000000000000000000000000222222000000002229012 -T2202301111117703201219700127WT@P9BZTB2222212222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117703201219710126WT@0Z@TP#2222211222222021213290085221011820000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770320120110427WT@ZBP#P022222112204305200000000 -T12023011111177043425900403711120213120000300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117704341219770712WT@WWP@PW2222222222222012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770434120160212WTT##0#@Y22222212204301100000000 -T12023011111177051725900402831120213110654108660000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117705171219860204WT@#YT0YT1222221222225012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770517120180112WTT0BY@BZ12222212204398100000000 -T12023011111177059525900402721120233110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117705952219800218WTTZTW#PB1222222122211012209120006013109900000000000000000000000000000000000000000000000000000000000000000000000561037300000000 -T320230111111770595120060121WTTZB#YW@22221212204309100000000 -T12023011111177065024900404261120312110740300000000000004170340000000000000000000000000000000000222222000000002229072 -T2202301111117706501219860527WTTT@ZPZ@2222122222221012213110800023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770650520150426WT@PBWT9W22221222104398109140000520150426WT@#@YB9022221212104398109140000 -T12023011111177086323700414331120633111339300000000000006540430000000000000000000000000000000000222222000000002229022 -T2202301111117708632219900424WT@09@#YT2222212122211012212120114913109900000000000000000000000000000000000000000000000000000000000000000000000817021300000000 -T320230111111770863120100704WTTWWPZY#22222122204305100000000 -T320230111111770863120130701WT@YTY#ZT22222122204302100000000420120408WT@T0TB0022222112104303109050000 -T320230111111770863120190321WTT#PT90#12222122204398100000000420150423WT@Z0T0@B22222112104301109050000 -T12023011111177087821700406141120212110610300000000009505280470000000000000000000000000000000000222222000000002229012 -T2202301111117708781219890701WTTWPZY092222212222221012213120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770878120150107WT@WZ#9PP22222112204398100000000 -T12023011111177093322000412971120422110939300000000388607710150000000000000000000000000000000000222222000000002229012 -T2202301111117709331219820113WT@Z90#P#2221221222222011213190530721011800210000000000000002000000000000000000000000000000000000160000000000000000000000000000 -T2202301111117709331219840507WT@90#YBT2212222222222021212190491121011800210000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770933120090201WTTW0##ZY22122222204308100000000120070501WTT@Z#WB#22122222204310100000000 -T12023011111177094325200410591120313110835300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111117709431219990727WT@Z#@BYW1222222222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111770943120220201WTT#00YBY12222212204398100000000120190713WTT@@9P9P12222122204398100000000 -T12023011111177098024200414351120213110611101670000359405280060000000000000000000000000000000000222222000000002229012 -T2202301111117709801219720723WT@Z9W#ZP2222212222221012213110075323011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111770980120190407WTT0BTYZ@22222122204398100000000 -T12023011111177105524700401281120413110740300000000000005120100000000000000000000000000000000000222222000001422219012 -T2202301111117710551219910118WTT0@WZYP1222222222222012212210114921011817000000000000000000000000000000000000000000000000000000000000103400000000000000000000 -T2202301111117710552219890921WT@YYBT9P1222211222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771055120140713WT@P00@PT12222112204301100000000120130426WTTP@090W12222112204303100000000 -T12023011111177107720800414151120313110740300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111117710771220000711WTT#0#@Z92222211222221012212190114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117710772220000305WTTPWT#092222212222211102212190095113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111771077120200318WT@0YWPB022222122204398100000000 -T12023011111177111021200400681120433110766300000000000006540580000000000000000000000000000000000222222000000002229022 -T2202301111117711103219730407WT@#YPYW92122222222221012213110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000151 -T320230111111771110120070426WT@BBB##P21222212207309100000000 -T320230111111771110120150907WT@B99ZTY21222212207301100000000120140214WT@YYYY0021222212207302100000000 -T12023011111177112322000413691120333110611300000000000005280220000000000000000000000000000000000222222000000002229022 -T2202301111117711232219800318WT@YYBT9P2222121222223012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771123120140313WTTZY0@@922221212204302100000000120110424WTTPZZBYP22221222204306100000000 -T12023011111177120520600414831120313110776300000000000002840120000000000000000000000000000000000222222000003702219072 -T2202301111117712051219820918WT@ZTPBZB2122222222221012216111210023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000058 -T320230111111771205120090507WT@P9#@9W21222212204307100000370120060708WT@P0PY@B21222222204308100000000 -T12023011111177122222000409411120233110516113000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111117712223219670327WT@T#TTTZ1222212222223012212110006011069931000000000000000000000000000000000000000000000000000000000000258700000000000000000000 -T320230111111771222120180107WT@YPWZ9Z12222122206398100000000 -T12023011111177128622500410151120423120000300000000067107710060000000000000000000000000000000000222222000000002229012 -T2202301111117712861219730926WT@W9@Y#Z2222211222222011213190085221011942000000000000000000000000000000000000000000000000000000000000746800000000000000000000 -T2202301111117712861219730209WTTZPP9#W2222212222222021212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771286120090724WT@9W0PZP22222112204307100000000120040309WTTB#PT@B22222112204312100000000 -T12023011111177130320800403781120313110835300000000000006540180000000000000000000000000000000000222222000000002229012 -T2202301111117713031219940712WTT09@TPY2222212222225012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771303120210105WT@YZBZ@Y22222112204398100000000120190127WT@@TYB9Z22222112204398100000000 -T12023011111177132524100402401120233110423300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111117713253219850526WTTPZZYYB2221222222222012216110154513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771325120050702WT@9@0TWP12222212209312100000000 -T12023011111177135022700408351110213110611300000000000002210010000000000000000000000000000000000222222000000002229012 -T2202301111117713501219820901WT@PTZT@B2222212222221012216110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771350120110127WT@#WT#TB22222112204305100000000 -T12023011111177136622000408891120412110916300000000000007710350000000000000000000000000000000000222222000000002229072 -T2202301111117713661219800707WTTPBPYTZ2221222222221012216111080023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771366120060923WTT0ZY#YW22212212204311100000000 -T320230111111771366120120902WTTPB90#922212212204305100000000120110407WTT@BY9#W22212222204306100000000 -T12023011111177150222700401571120333110376300000000040004170020000000000000000000000000000000000222222000000002229022 -T2202301111117715022219740727WT@YYBT9P1222212222222012205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117715022219690711WT@YYBT9P1222211222222022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771502120070112WT@@T0T##12222122204310100000000 -T12023011111177155923700414332120323210835300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111117715591219950126WT@9TPY9W1222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117715591219970209WT@9TPY9W1222212222222021213290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771559120150422WT@9TPY9W12222122204398200000000 -T12023011111177160023500405981120212110611300000000000005280570000000000000000000000000000000000222222000000002229012 -T2202301111117716001219700112WTT9@0BPT2222212222225012216110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771600120050907WT@0P#P#W22222122204311100000000 -T12023011111177171824200403941120233120000104060000000004170930000000000000000000000000000000000222222000000002229022 -T2202301111117717185219940318WTTWBPPYP2221221222222012212110006013069900000000000000000000000000000000000000000000000000000000000000603600000000000000000000 -T320230111111771718120120927WT@PZ@TT922212222209302100000000 -T12023011111177172220600414251120413111034300000000000007710650000000000000000000000000000000000222222000000002229072 -T2202301111117717221219880723WT@9TBWYW2222212222221012216110660023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111771722120070302WTTP9TBZP22222122204308100000033 -T320230111111771722120170418WTTB##99Y22222212204398100000000120160512WTTYY990@22222222204398100000000 -T12023011111177176320800414651120513110740124530000000003080410000000000000000000000000000000000222222000003462219072 -T2202301111117717631219810301WT@99BT#W2221222222221012208111040021011700210000000000000000000000000000000000000000000000000000030000115900000000000000000000 -T320230111111771763120140907WT@ZP0PPT22212212204303100000055120120501WT@YZBYWY22212212204306100000055 -T320230111111771763120190708WTTB0Z@9P22212222204398100000000120150308WTTBBB#0P22212222204398100000055 -T12023011111177177622000413731120312110611110800000000003920060000000000000000000000000000000261122222000000012219012 -T2202301111117717761219810423WTTB@9B@B2221222222225012212110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771776120140223WT@TPBZ@W22212212204302100000000120120112WTTTBB9ZB22212212204304100000000 -T12023011111177179320800404431120233110470300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111117717933219640412WT@PZ0#ZB2222211222212012212110006011069928000000000000000000000000000000000000000000000000000000000000200000000000003100000000 -T320230111111771793120090114WT@99WBBW22222122207303100000000 -T12023011111177187822700408351120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117718782219860205WT@#WTYY02222212222211012216110880013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111771878120120107WT@P0YT9#22222112204304100000000 -T12023011111177193925100407671120423111032300000000030107710990000000000000000000000000000000000222222000000002229012 -T2202301111117719391219810227WTTT0ZY#P2222212222222011212110194123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117719391219850113WT@T#WZ@P2222211222222021212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771939120090113WTT0Y9ZWP22222112204307100000000120080512WT@BPT##922222122204309100000000 -T12023011111177196220600402131120312110835300000000000006540180000000000000000000000000000000000222222000000002229072 -T2202301111117719621219930908WTTW9YY001222212222221012212110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771962120170412WT@B#YT9W12222122204398100000000120100501WT@PYZWZB12222112204306100000000 -T12023011111177197123500408281120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117719713219530111WT@0#W0TT2221222112222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001767000000001437 -T320230111111771971120040323WTTYB@TW022212212206311100000000 -T12023011111177197922000408891120313110611300000000000001680060000000000000000000000000000000000222222000003602219012 -T2202301111117719791219950113WT@PB@Y#Y2122222222221012216120273323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111771979120220721WT@9TTP9921222212204398100000000120120404WT@PZZPZZ22212212204303100000000 -T12023011111177202325000414191120332110611300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117720233219520714WT@YYBT9P1222222222221012208920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772023120090413WT@BYZ9Y@12222222206307100000000120070926WTTT0@0@Z12222222206308100000000 -T12023011111177203722000410331120232110493300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111117720372219820718WTTBWYPW#2221222222212012211110530713089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111772037120070908WTT990#TW12222222204309100000000 -T12023011111177204922000410051120233110247300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111117720493219660909WTT0T#WB01222222222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772049120080123WT@9@PP9911222212206309100000000 -T12023011111177206325900402631120313110835120690000000006250360000000000000000000000000000000000222222002800012219012 -T2202301111117720631219890413WTTPY90@T1222212222221012211210263423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772063120220926WT@P@BYBT12222222204398100000000120200701WTTT9Z@ZY22222122204398100000000 -T12023011111177206522000411282120213210611300000000000004170030000000000000000000000000000000000222222000000002229032 -T2202301111117720651220010327WT@0BPW0B2222212222222013212290045623011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T2202301111117720655219990401WT@YTB#YP2222211222222023212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111177207820600409771120233120000300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111117720783219640307WTT#ZYWWT2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000262500000000000000000000 -T320230111111772078120120721WTT@0YWW922212122208303100000000 -T12023011111177217123500411471120233120000300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111117721713219820407WTTTP@P#92221222222221012212110600011069967000000000000000000000000000000000000000000000000000000000000626600000000000000000000 -T320230111111772171120100222WTT0P#0T022212222207306100000000 -T12023011111177220825200410591110412111043300000000000004710100000000000000000000000000000000000222222000000912219072 -T2202301111117722081219800109WT@Y@0##P2222212222221012212110850021011809000000000000000000000000000000000000000000000000000000000000052600000000000000000105 -T320230111111772208120040307WTT#BT9WY22222112204311100000000 -T320230111111772208120120709WT@#@TYZT22222122204303100000000420080426WT@BPY@W@22222112104308106090000 -T12023011111177230923500405271120513111146300000000000008880490000000000000000000000000000000000222222000000002229072 -T2202301111117723091219780918WTT99YP902222212222221012205121080023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772309120180126WT@TW90@#22222122204398100000000120180126WTTZY09W922222112204398100000000 -T320230111111772309120180126WTTP0#YZP22222112204398100000000120060311WTT0W9T9W22222112204307100000000 -T12023011111177231824100405611120423111017300000000045007710130000000000000000000000000000000000222222000000002229072 -T2202301111117723181219790507WT@99Z0#Z2222212222222011212110740023011800000000000000000000000000000000000000000000000000000000010000000000000000000000000107 -T2202301111117723181219690318WTT#@PPWB2222211222222021212190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772318120070518WT@W#Z@ZT22222112204308100000050120040713WT@BPY#ZW22222122204310100000050 -T12023011111177232225600414951120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117723223219650704WTT@#B90W2222212222211012216121240013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111772322120080713WT@B@YBW922212112206306100000000 -T12023011111177235625900403711120313110751300000000000006540450000000000000000000000000000000000222222000000002229072 -T2202301111117723561219900201WT@B#@@ZZ2122222222221012212110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772356120180305WT@Y#@YZ@21222222204398100000100120110212WT@PPB#9911222212204306100000000 -T12023011111177240720600414871120233110516300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111117724073219630101WT@YB9@9@2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001337000000000000 -T320230111111772407120070701WTT9YWYY@22222122209308100000000 -T12023011111177246122000410051120313110835105300000001906540120000000000000000000000000000000000222222000000002229012 -T2202301111117724611219810923WTTYPTW9T2221221222221012216110134723010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111772461120110122WTTBWPBW@22212222204304100000000120070413WTT0T0@WP12212212204309100000000 -T12023011111177247124200405921120233110516300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111117724712219890426WTT#9TB992221221222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000083800000000 -T320230111111772471120180913WTTZ90PP@11222222204398100000000 -T12023011111177247823500404531120312110835300000000000006540320000000000000000000000000000000000222222000000002229012 -T2202301111117724781219890927WT@W9PPYZ2122222222223012216110332723011400000000000000000000000000000000000000000000000000000000110000000000000000000000000011 -T320230111111772478120180907WT@0WP90#22212222204398100000000120160712WTT#9TP#022222122204398100000000 -T12023011111177260722700407491120233120000300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111117726073219890418WTT#@BZBT1222222222222012213110075313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772607120200412WT@BY#TTZ12222112207398100000000 -T12023011111177263522000405181120213110611300000000000003160380000000000000000000000000000000211122222000000012219012 -T2202301111117726351219910923WT@99TZ9#2222212222221012212110382223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772635120170305WT@YPP99Z22222112204398100000000 -T12023011111177264020500404361120433110939300000000000006540920000000000000000000000000000000000222222000000002229022 -T2202301111117726402219680407WT@9B9YZW2222212122215012213110471311109910000000000000000000000000000000000000000000000000000000000000058100000775012400000000 -T320230111111772640120090907WTT00TT@Y12222122204307100000000 -T320230111111772640120140323WT@TYP##012222122204301100000300120120312WT@#PYPW022222112204303100000300 -T12023011111177266025100402211120233120000300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111117726603219490423WTT#9ZBZ#2221212122224012213110035711069913000000000000000000000000000000000000000000000000000000000000149300001309000000000000 -T320230111111772660120080311WTTT9T09#12222122206307100000000 -T12023011111177268922000407241120313110557300000000000004570620000000000000000000000000000000000222222000000712219012 -T2202301111117726891219750926WT@@TPPPW1222222222222012212210223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117726892219800709WT@YYBT9P1222211222222022205990006011079913000000000000000000000000000000000000000000000000000000000000078700000000000000000000 -T320230111111772689120090927WT@PP9WWP12222222204308100000000 -T12023011111177272521700406142120323210835300000000000006540340000000000000000000000000000000000222222000000002229032 -T2202301111117727251219830427WTT9@Z#0T2222211222221011212190213923011900000000000000000000000000370003000000000000000000000000020000000000000000000000000000 -T2202301111117727251219910207WTT0Z90ZT2222212222221011212110530723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772725120220509WTT9B0WZ022222112204398100000000 -T12023011111177275524200404891120233110493300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117727553219720426WTT0PP@Y#2222122222221012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772755120130705WT@W#YBZB22221222207303100000000 -T12023011111177280824700413761120433120000300000000000006540570000000000000000000000000000000000222222000000002229022 -T2202301111117728083219820307WTT9@9@#92222212222221012212110006011069940000000000000000000000000000000000000000000000000000000000000430000000000000000000000 -T320230111111772808120120912WT@TW0Z@@11222222207303100000000 -T320230111111772808120160705WTTW#9@WZ11222212207398100000000120140123WTT#9PZBY11222212207398100000000 -T12023011111177280924200414021120213110511300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111117728091219800702WT@WPBW@92222212222221012216110095123011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111772809120050118WTT#TZWZZ21122222204311100000000 -T12023011111177290025900406081120412110944300000000000007710660000000000000000000000000000000000222222000000002229042 -T2202301111117729001219890213WTTYP@WTB1222222222221012211110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772900120110913WT@ZYTWYP12222212204305100000000 -T320230111111772900120220318WT@TWTYZY12222222204398100000000120200913WT@TWWWP@12222212204398100000000 -T12023011111177292520600414161120413111034300000000000007320780000000000000000000000000000000000222222003800012219012 -T2202301111117729251219890305WTT999##Z2222212222225012216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772925120080714WTT#PWWBY22222112204309100000000 -T320230111111772925120100107WTTTZP0BZ22222122204306100000000120100107WTT9@BWYP22222112204306100000000 -T12023011111177298623500411471120513111199300000000000008880290000000000000000000000000000000000222222000000002229072 -T2202301111117729861219670723WT@9@PW@@2222211222221012213111330023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772986120100527WTT#TBY#B22222122204306100000000120070301WTT#WP99922222112204308100000000 -T320230111111772986120140127WTTBZ@ZYW22222112204302100000000120110223WTTY#YB@Y22222112204305100000000 -T12023011111177299523500411471120212110363300000000000005280260000000000000000000000000000000000222222000000002229012 -T2202301111117729951219860501WT@###PT#2222212222221012213110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111772995120220413WT@9TPY9W22222122204398100000000 -T12023011111177302524700402991120213110611300000000173004170090000000000000000000000000000000000222222000000002229012 -T2202301111117730255219900412WT@0YTPZP2221221222222013212190006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117730251219930414WT@W@PYW92212222222222023216190105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111177308225800409911120413110909300000000000006540200000000000000000000000000000000000222222000000002229072 -T2202301111117730821219770108WT@@@@0Y@2222212222222012211191090023011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111117730822219760727WT@WPT0PP2222211122212022212190006013109900000000000000000000000000000000000000000000000000000000000000000000000604033000000000 -T320230111111773082120160313WT@TY0ZWW22222112204398100000000120150427WT@PBPYTY22222122204398100000000 -T12023011111177308924700406701120323110766300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111117730891219950108WTT0#P@YZ2222212222223011212210105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117730891219950507WTTWP0P#P2222211222222021215290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773089120170307WT@0WYW#W22222122204398200000000 -T12023011111177311324200414721120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111117731131220020408WT@PTT9B@1222212222221013211190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111177313723300410111120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117731372219640112WT@PZBYZ#2222212222214012212110392113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111773137120060513WT@T#90TT22222122204309100000000 -T12023011111177316323500414281120333120000300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111117731633220020205WT@P0ZW9T2222211222221012298110006013069900000000000000000000000000000000000000000000000000000000000000264000000000000000000000 -T320230111111773163120180213WT@@ZWWY#22222122208398100000000120150912WTTYZPY#W22222122208398100000000 -T12023011111177320823500402291120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111117732081219860507WT@#B#YT@1222211222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117732081219870402WTTY@ZBTY2222212222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773208120110723WTTBZZW@Y22222112204305200000000120090101WT@W@B#B@22222122204307200000000 -T12023011111177327424700409381120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117732741220000407WT@#9WTT#2221222222221012216110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773274120220123WT@WZ#P@P22222212204398100000000 -T12023011111177334424500405781110233110423300000000000002010530000000000000000000000000000000000222222000002162219021 -T2202301111117733443219910904WT@TZZW#P1222212222225012213110243611069941000000000000000000000000000000000000000000000000000000000000608700000000000000000000 -T320230111111773344120050113WTTYTTYW#12222122207310100000000 -T12023011111177335022000412011120113110348300000000000003130040000000000000000000000000000000000222222002000842219012 -T2202301111117733501219850712WTTYP9ZB92221222222221013216190600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000082 -T12023011111177335221000408061120213110518300000000000004020060000000000070003000000000000000000222222000001262219012 -T2202301111117733521219760402WTTPZZZWP2222211222225012212110560421011940000000000000000000000000000000000000000000000000000000000000050300000000000024880000 -T320230111111773352120080409WT@@PBZBZ21222222204307100000000 -T12023011111177346223900408801120312110776113020000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111117734621219980421WTTYYYW902222212222221012210110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773462120200704WT@W0#BZ922222122204398100000000120180427WTTT00B#B12222112204398100000000 -T12023011111177352321700409521110213110611300000000000000300010000000000000000000000000000000000222122000000002229012 -T2202301111117735231219780501WT@B9P9TZ2222212222225012212120243621011816000000000000000000000000000000000000000000000000000000000000097500000000000000000000 -T320230111111773523120060307WTT#T9@PB22222112204309100000000 -T12023011111177353722000406271120213110598300000000030005280210000000000000000000000000000000000222222000000002229012 -T2202301111117735371219770727WT@TPY0BW2221222222225012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773537120050101WT@P9#0PW22212222204309100000000 -T12023011111177355023500410671120233120000300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111117735503219580512WTTBT@WBY2222212122223012216110035713069900000000000000000000000000000000000000000000000000000000000000000000000924000000000000 -T320230111111773550120150726WT@P@Y@9Z22222122206301100000000 -T12023011111177359422000406191120313110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111117735941219820924WTT90W#TW2222212222222012214210075321011931000000000000000000000000000000000000000000000000000000000000185900000000000000000000 -T320230111111773594120060314WTT#T0P#@22222122204311200000000120050126WT@#PT9T#22222122204312200000000 -T12023011111177368622000410221110323110835300000000291506540010000000000000000000000000000000000222222000000002229012 -T2202301111117736861220000122WT@T@#PT@2122222222222011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117736861220010213WTT9BBPW@2222211222222021212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773686120180307WT@#@T0#Y22222212204398100000000 -T12023011111177371724200402981120233110567300000000000004170980000000000000000000000000000000000222222000000002229022 -T2202301111117737173219650908WTTTY0PWW2222212222225012216110006011069911000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111773717120100405WT@@0@Z#B21222222206305100000000 -T12023011111177375525900403711120513111211300000000004008880450000000000000000000000000000000000222222000000002229012 -T2202301111117737551219880105WTTY#B9YY2222212222223012212110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773755120090901WTTWTT#TP22222122204307100000000120070104WT@9Y09@Y22222122204308100000000 -T320230111111773755120180405WTT#W@T@B22222112204398100000000120130227WT@ZT0P@B22222112204304100000000 -T12023011111177375622000412231120312110801300000000000006540320000000000000000000000000000000000222222000000002229012 -T2202301111117737561220000424WT@ZT0P#91221222222221012210110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773756120220401WTT@BZBWY12212212204398100000000120200308WT@BBT##Y22212212204398100000000 -T12023011111177379822000409871120212110611112100000006705280080000000000000000000000000000000000222222000000002229012 -T2202301111117737981219980118WT@9T#0BB2221222222221012209210174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773798120190312WTTTPBB@B22212212204398100000000 -T12023011111177382224700408091120423110939300000000585607710160000000000000000000000000000000000222222000000002229012 -T2202301111117738221219790909WT@99Y0##2212221222222011214190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117738221219790901WTT0BW9W02212222222222021212190174323011800000000000000000000000000000000000000000000000000000000300000000000000000000000000000 -T320230111111773822120170708WTTTW0#T@22122212204398100000000120160107WTT@9Z#9P22122222204398100000000 -T12023011111177385724200414851120722111490300000000150011650100000000000000000000000000000000000222222000000002229012 -T2202301111117738571219630121WT@W9ZZ0Y2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117738571219760307WT@0PWWZB2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111773857120070104WT@Z0Y@9922222122204305200000000 -T320230111111773857120110405WT@W0TPZ#22222112204303200000000120080327WTT0#PTT@22222122204308200000000 -T320230111111773857120170312WTTP09T@W22222112204398200000000120130701WT@PYZYP022222112204306200000000 -T12023011111177397925900402831120533110740300000000290005280990000000000000000000000000000000000222222000000002229022 -T2202301111117739792219770724WT@YYBT9P1222222222222012208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117739792219750407WT@YYBT9P1222221222222022208990006011079910000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T320230111111773979120050512WT@@YZ00912222222204311100000000 -T320230111111773979420120512WT@T9PPTW12222212104304107920000120070327WTTYZTZBP12222212204308100000000 -T12023011111177399224200412571120313110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117739921219890318WT@BYP9YZ2122222222221012212110293123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111773992120100927WT@#YPWYY21222212204305100000000120100927WT@@Y090B21222222204305100000000 -T12023011111177406923700414331110432110835300000000003504430340000000000000000000000000000000000222222000000002229021 -T2202301111117740692219750901WT@YYBT9P1222222222223012206910233713079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111774069120060709WTTT99BT#12222112204310100000000 -T320230111111774069120090407WT@9#0B0T12222212204308100000000120070723WTTB99@9912222122204309100000000 -T12023011111177411120600400871120213110516300000000100000010270000000000000000000000000000000000222222000000002229012 -T2202301111117741111219820927WT@ZZ9BZ92222212222221012214110273311011700210000000000000000000000000000000000000000000000000000030000136400000000000000000000 -T320230111111774111120200118WT@BT#ZYT22222122204312100000000 -T12023011111177414924700408301120233120000300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111117741493219870101WT@B@ZYT#1222222222225012216110006011069941000000000000000000000000000000000000000000000000000000000000416600000000000000000000 -T320230111111774149120100312WT@T#BZYW22221212207304100000000 -T12023011111177424722700408351120412110939300000000010007710210000000000000000000000000000000000222222000000002229012 -T2202301111117742471219880204WT@YW0@Y01222212222221012209210223823010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111774247120090327WTTPZ0B#012222112204305200000000 -T320230111111774247120190312WTTBZ#W9P12222122204398100000000120160707WTT00##T912222122204398100000000 -T12023011111177431521700406141120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117743152219830901WTTP@BY@92222212222215012208110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111774315120120923WTT@9WYYT22222112204303100000000120060118WT@Z9TPY#22222112204309100000000 -T12023011111177456420800410781120513111034300000000000007710460000000000000000000000000000000000222222000000002229012 -T2202301111117745641219770118WT@YZ@@BB2222122222222012213110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117745642219600727WTTWT@WP#2222121222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111774564120070112WT@WP@0WP22221222204310100000000 -T320230111111774564120160504WT@BWZ0BW22221222209398100000000120080327WTT9#BPTZ22221212204308100000000 -T12023011111177456725800401871120513111116300000000002305130020000000000000000000000000000000000222222000003752219012 -T2202301111117745671219860227WT@P9YW9B2222212222223012216110035723010900000000000000000002000000000000000000000000000000000000030000150000000000000000000000 -T320230111111774567120070326WT@Y#BZ@#22222112204309100000000120060205WT@Y9PY0W22222122204311100000177 -T320230111111774567120170307WT@WPTPBW22222122204398100000000120150707WTT0YPW@#12222112204301100000000 -T12023011111177459020600412561120413111017300000000020207560680000000000000000000000000000000000222222000000152219072 -T2202301111117745901219700708WTTZ0YZPT2222211222224012212110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000014 -T320230111111774590120070912WT@0W#B0Y22222122204308100000000 -T320230111111774590120110927WTT0@@TP@22222122204304100000050120110927WTT90TZ@Z22222112204304100000050 -T12023011111177467122000405701120512111211300000000000008880340000000000000000000000000000000000222222000000002229072 -T2202301111117746711219880323WT@9PZ90B2221222222223012211121220023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111774671120130513WT@PWPTZ922212222204301100000000120070223WTTZTZ@Z922212222204307100000000 -T320230111111774671120210311WT@9TPY9W22222222204398100000000120200927WTT99BBW#12222222204398100000000 -T12023011111177472020600404121120213110376300000000300003160300000000000000000000000000000000211122222000000012219012 -T2202301111117747201219930322WTTP0TTYB2221222222221012212110342623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111774720120150727WT@ZB#0PB22212212204301100000000 -T12023011111177472522000409991110113110329300000000000001740010000000000000000000000000000000000222222000000002229012 -T2202301111117747251219870911WT@0BYP@@2122222222221013211190322823011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T12023011111177473922900410121120333110740300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111117747392219890518WTTYWPWW@2222212122211012209120006013109900000000000000000000000000000000000000000000000000000000000000000000000647028700000000 -T320230111111774739120190527WTTTPZWTZ22222112204398100000000120180108WTTY0YYPT22222112204398100000000 -T12023011111177474925900403551120233110470300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111117747493219630105WT@ZPTYTT1222211122222012209110065413069900000000000000000000000000000000000000000000000000000000000000000000001401000000000000 -T320230111111774749120100309WT@9T@PY@12222212206304100000000 -T12023011111177476622000413691120432110835300000000000006540500000000000000000000000000000000000222222000000002229022 -T2202301111117747662219990908WT@YYBT9P2222222222221012209920095113079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111774766120110101WTTTZTW9Y12222212204304100000000 -T320230111111774766120160221WTT0TBTZB12222222204398100000000120130324WTTTYY0#Z12222222204302100000000 -T12023011111177485322700408491120613111365300000000030110090340000000000000000000000000000000000222222000000002229072 -T2202301111117748531219920913WT@T0@0T#1222222222221012216110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111774853120090127WTTT00W9P12222112204305100000000 -T320230111111774853120180722WTTPP0ZPB12222222204398100000000120140101WTT0WYZZZ12222112204301100000000 -T320230111111774853120210112WT@ZPYPYW12222122204398100000000120200521WT@PZW00T12222222204398100000000 -T12023011111177493420800411991120233120000300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111117749343219660505WT@P@P@0Z2222122222222012215110006013069900000000000000000000000000000000000000000000000000000000000000542400000000000000000000 -T320230111111774934120160413WT@0#BBZ922221212207398100000000 -T12023011111177504125800405801110413111034300000000232003230100000000000000000000000000000000000222222000004482219012 -T2202301111117750411219840109WTT9P9YTZ1222222222225012216210164423011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111775041120100709WTTY0W@ZY12222122204305100000000 -T320230111111775041120150918WT@Z0#Y#Y12222112204301100000000120130114WTT#@090012222122204302100000000 -T12023011111177506624200414851120512111116300000000000008880080000000000000000000000000000000000222222000000002229042 -T2202301111117750661219780212WT@BB0W0Y1122222222223012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111775066120100107WTTBY0@##21222222204305100000000120080313WTTPZPYWB21222222204307100000000 -T320230111111775066120140418WT@@BZBWP21222212204302100000000120110721WTTZW0PZZ21222212204305100000000 -T12023011111177517624900403221120333110740300000000000005280720000000000000000000000000000000000222222000000002229022 -T2202301111117751763219590321WT@9B@@@#2222212122224012213110085213069900000000000000000000000000000000000000000000000000000000000000000000001453000000000000 -T320230111111775176120120218WT@W90@#922222112206304100000000120080401WT@PZ9Z9#22222112206308100000000 -T12023011111177524722500410151120322110821300000000004605550220000000000000000000000000000000000222222000000992219012 -T2202301111117752471219910721WT@PW#YZ92222212222222011212110550521011804000000000000000000000000000000000000000000000000000000000000019600000000000000000000 -T2202301111117752471219860712WT@0@PTB02222211222222021211190312923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111775247120170213WTTYZ9#T#22222122204398100000000 -T12023011111177533722000400461120632111116300000000006007090180000000000000000000000000000000000222222000001792219022 -T2202301111117753372219820407WT@BP#9#P1222222222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000300 -T320230111111775337120060502WTTPT99P@12222212204311100000000 -T320230111111775337120150114WT@B00ZYY12222222204301100000000120080401WT@PTB@WT12222222204309100000000 -T320230111111775337120170318WT@9P@#BB12222222204398100000000120150114WTTZZYW@B12222222204301100000000 -T12023011111177543722000411981120213110611300000000066805280020000000000000000000000000000000000222222000000002229012 -T2202301111117754371219890112WT@0W@BTP2221222222223012214210035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111775437120220705WTT#W#P#922212222204398100000000 -T12023011111177552720600404491120233120000300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111117755273219640105WTT#P9YPT2222212222221012213110006013069900000000000000000000000000000000000000000000000000000000000000560900000000000000000000 -T320230111111775527120170304WT@#YPZBY22222122209398100000099 -T12023011111177562922000406191120323110835300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111117756291219940914WTTP0YTPP2222212222222011215290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117756291219900708WT@Z@0Y0W2222211222222021214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111775629120160905WT@Y@0ZW922222122204398200000000 -T12023011111177565722000413731110423110740300000000000000170010000000000000000000000000000000000222222000000002229012 -T2202301111117756571219880902WTTW90B@02221222222222011213190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117756571219890426WTTTBT0#91222221222222021213290025821011810000000000000000000000000000000000000000000000000000000000000136100000000000000000000 -T320230111111775657120190424WTTZYWPZY12212212204398100000000120140313WT@W#WY@#12222222204398100000000 -T12023011111177569024200403941120213110611300000000010003160050000000000000000000000000000000211122222000000012219012 -T2202301111117756901219950501WTTT9ZTZZ2222212222222012212110065423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111775690120180321WTT9P9BYW21222212204398100000000 -T12023011111177592123700414331120233110516300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111117759213219500214WT@#Y@@P#2222212122221012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001679000000000162 -T320230111111775921120060909WTTZP@9#022222122206310100000000 -T12023011111177600724200409731120822111691300000000000012890100000000000000000000000000000000000222222000000002229012 -T2202301111117760071219820321WT@#9@WWB2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117760071219820909WT@0YTT@@2222212222222011216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776007120100924WT@0TPYZB22222122204303200000000120080323WT@#PBP#Z22222122204304200000000 -T320230111111776007120140901WTTBP@Z##22222112204302200000000120110927WT@9@T9Z922222122204302200000000 -T320230111111776007120190113WTT@YBPTZ22222112204398200000000120150724WT@09BBZP22222122204398200000000 -T12023011111177603125900403551120113110376300000000001201830060000000000000000000000000000000000222222000002342219012 -T2202301111117760311220030422WT@Y0B#Y01222222222221013212190065421011808000000000000000000000000000000000000000000000000000000000000046700000000000000000000 -T12023011111177604522000411321120233120000300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111117760453219800418WTT@BTYBW1222212222225012216110006011069937000000000000000000000000000000000000000000000000000000000000747600000000000000000000 -T320230111111776045120120126WT@#B9@9Z12222122207304100000000 -T12023011111177609522000403891120213110611300000000050005280040000000000000000000000000000000000222222000000002229012 -T2202301111117760951219930726WTTZ@0ZB@2222122222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776095120190322WTT@W9YW022221212204398100000000 -T12023011111177619422000407411120323110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117761941219960901WT@9TPY9W2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117761941219970408WT@9TPY9W2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776194120170402WT@9TPY9W22222112204398200000000 -T12023011111177626224200414851120333110548300000000000005280870000000000000000000000000000000000222222000000002229022 -T2202301111117762622219840907WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776262120070112WT@#TT#YZ12222212204308100000000120040427WT@BBB@#W12222212204311100000000 -T12023011111177626423500414911120513111199300000000376208880040000000000000000000000000000000000222222000000002229012 -T2202301111117762641219960914WT@@@#YYW2222212222225012212120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776264120160326WTTB#@TZB22222112204398100000000120150107WTT0ZP@0#22222122204398100000000 -T320230111111776264120190727WT@9PPP#Z22222112204398100000000120180127WT@0BYZW922222112204398100000000 -T12023011111177627422000406271120212110611300000000000005280460000000000000000000000000000000000222222000000002229012 -T2202301111117762741219780713WT@90B0B@1222212222221012213110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776274120170427WT@9Y#BWW12122212204398100000000 -T12023011111177628725900402831120333110725112250000000005280660000000000000000000000000000000000222222000000002229022 -T2202301111117762872219620121WTT9BBBBT2222212222215012212110015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111776287120220507WT@PBWBB@22222112204398100000000120050102WT@@Y0YPY22222122206310100000000 -T12023011111177632022000406192120213210611300000000000005280080000000000000000000000000000000000222222000000002229032 -T2202301111117763201219770923WTTW90ZTB2222212222223012214210095121011942000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776320120100401WT@TBZ09922222122204306200000000 -T12023011111177633324700411201120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111117763333219840722WTTPYBW#T2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776333120210227WTTYB@0YP22222112207398100000000 -T12023011111177642524200409591120213110598300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111117764251219940421WTTZP#PPY2212222222221012216110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776425120170224WTTB@0PPB12122212204398100000000 -T12023011111177643120600414871120213110611300000000000003780570000000000000000000000000000000000222222000001502219072 -T2202301111117764311219950123WTTY9B@YT2221222222221012210110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000150 -T320230111111776431120160318WT@WPYYZB22212222204301100000000 -T12023011111177645420800414651120213110611300000000004003330200000000000000000000000000000000000222222000001952219012 -T2202301111117764541219870926WTTYZ9YPW2222212222225012212120411921011816000000000000000000000000000000000000000000000000000000000000092600000000000000000000 -T320230111111776454120120901WT@@P9TW922222122204303100000000 -T12023011111177651725800405061120333110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117765172219810205WT@T9WY##2222212222212012210190006013089900000000000000000000000000000000000000000000000000000000000000000000000000063000000000 -T2202301111117765172219750304WTTPPZY9P2222211222212022210190015913089900000000000000000000000000000000000000000000000000000000000000000000000000063000000000 -T320230111111776517120060914WT@PPWP0922222112204311100000000 -T12023011111177662422000405181120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111117766241219840224WT@#YP#BT2222212222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111177663822700408352120613211339300000000000010090280000000000000000000000000000000000222222000000002229032 -T2202301111117766381219780501WT@9TPY9W1222212222221012202910006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776638120050408WT@Y#YZZ012222112204310100000000 -T320230111111776638120080912WTTY0BW#912222112204307100000000120070123WTT0Y#9WT12222122204308100000000 -T320230111111776638120130312WT@PP0Y@B12222112204302100000000120120712WTT0##T0#12222112204304100000000 -T12023011111177673620800414151120113110396300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111117767361219870312WT@Y0#Y@T2222212222221013212190174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111177674024100402401120513111034300000000000407710150000000000000000000000000000000000222222000000002229012 -T2202301111117767401219910901WTT#Z#@WW1222212222222012212290322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117767402219900905WT@YYBT9P1222221222222022203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776740120130327WT@B09##W12222112204301100000000 -T320230111111776740120210901WT@PW##9Y12222122204398100000000120150704WTTY9#@BB12222122204398100000000 -T12023011111177680524200403511120333110670300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111117768055219850222WT@@Y0ZP#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776805120150402WTTBZ9#9#22222112209398100000000120130312WT@BZ@W@922222122209301100000000 -T12023011111177682024200414722120422211034300000000000007710110000000000000000000000000000000000222222000000002229032 -T2202301111117768201219890904WT@9TPY9W1222222222222011212290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117768201219840518WT@9TPY9W1222221222222021212290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111776820120200101WT@9TPY9W12222222204398200000000120170112WT@9TPY9W12222222204398200000000 -T12023011111177697725900406651120333120000111270000000004750520000000000000000000000000000000000222222005200012219022 -T2202301111117769773219870927WTT#0ZPBY2222212222221012212110006011069901000000000000000000000000000000000000000000000000000000000000225700000000000000000000 -T320230111111776977120200927WT@PP@WT#22222112207398100000000120140927WT@#TW@#P22222112207301100000000 -T12023011111177710924200402501120213110598300000000000505280360000000000000000000000000000000000222122000000002229012 -T2202301111117771091219850927WT@#Z9#TY2222212222225012213110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111777109120160723WT@@T@@BT22222122204398100000000 -T12023011111177712222000409021120213110538300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111117771221219940704WTTTP#YP@2222212222221012211110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111777122120120721WTTZBT@WZ22222112204302100000400 -T12023011111177714120800410781120212110493300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111117771411219840701WTTPYW@TB2222212222225012216110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111777141120040323WTTY9W@YZ22222222204312100000000 -T12023011111177717022000405841120423110893300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111117771701219810309WTTY0T0TY2222211222222011206290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117771701219810118WTTT#0YPT2222212222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111777170120110709WTTB#0#9#22222112204305900000000120050427WT@TT9Z#922222112204312200000000 -T12023011111177733222000405321120213110631300000000000005280300000000000000000000000000000000000222222000000002229072 -T2202301111117773321219830105WTTPBPY0@2122212222221012212111030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111777332120180901WT@09#9#021222122204398100000000 -T12023011111177738020800405391120113110376300000000000404170030000000000000000000000000000000000222222000000002229012 -T2202301111117773801219940305WT@YB0T9T2222212222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111177742921700409521120413110959300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111117774291219900123WT@ZBPT#T1222222222223012212120035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111777429120180421WTTYYY0B@22222122204398100000537 -T320230111111777429120220424WTT0B@W@@12222222204398100000000120190108WTTTYB#B#22222112204398100000537 -T12023011111177754523500411471120512111184115220000000004210340000000000000000000000000000000280122222000001872219072 -T2202301111117775451219880908WT@#ZB9W@2222212222223012211111370023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000185 -T320230111111777545120090124WTTBY@#Y922222112204307100000000120060927WTTWPPZ0#22212222204310100000050 -T320230111111777545120180208WT@BY9Y@@22212222204398100000000120100105WTTTB0T@W22222122204304100000000 -T12023011111177757625900403711120533110939111740000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111117775763219770422WT@YYBT9P1222211222221012212910006011079925000000000000000000000000000000000000000000000000000000000000222500000000000000000000 -T320230111111777576120200407WT@W#B0B012222112209398100000000420170313WTTTZWW9912222122204398100000000 -T320230111111777576420150421WTT0WYY0T12222112204398100000000420070924WTTB#BZ@012222122204308100000000 -T12023011111177758322000411551120213110599300000000000003160180000000000000000000000000000000211122222000000012219012 -T2202301111117775831219910408WT@BBBPBB2221222222221012216110293123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111777583120170312WTT@9090@22212222204398100000000 -T12023011111177765622700408351120333110670300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111117776563219780423WT@TP0TTZ2221222222225012201210164411069953000000000000000000000000000000000000000000000000000000000000431600000000000000000104 -T320230111111777656120200308WT@YYT9ZP22212222206398100000000120190126WTT0ZTB0P12212212206398100000000 -T12023011111177766125600411701120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117776613219630111WTTP0W@ZY2222212222222012208110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111777661120130426WTTWZYWY@22222112206303100000000 -T12023011111177786522000407411120232110567300000000000004170750000000000000000000000000000000000222222000000002229022 -T2202301111117778652219770712WT@#TZ9WY2222211222211012212110303013089900000000000000000000000000000000000000000000000000000000000000000000000000081800000000 -T320230111111777865120070527WT@Z##@@@22212122204308100000000 -T12023011111177814424900404261120512111116300000000025007710990000000000035025000000000000000000222222000000002229072 -T2202301111117781441219870404WTT0Y@YZT2222212222221012212111100023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111778144120190411WT@@T@0BB12222112204398100000000120130422WT@T#@YT@12222122204303100000000 -T320230111111778144420120418WTTP9ZP9#12222112104304109140000120080312WT@T#P00912222122204307100000000 -T12023011111177828820600414252120323210542300000000000806540080000000000000000000000000000000000222222000000002229032 -T2202301111117782881219910112WTTYTZ@B02222211222221011212190015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117782881219970121WTT@YW9@T2222212222221011212190015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778288120220404WT@0YYBBP22222222204398100000000 -T12023011111177832223700414791120733111116300000000010008880340000000000000000000000000000000000222222000000002229022 -T2202301111117783222219810713WT@YYBT9P1222212222221012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117783222219870207WT@YYBT9P1222211222221102212990006011079949000000000000000000000000000000000000000000000000000000000000446600000000000000000000 -T320230111111778322420060907WTTWZPW@012222112104308109140000 -T320230111111778322120100109WTT@##00#12222122204304100000000120080913WT@ZZWWW#12222122204306100000000 -T320230111111778322120190313WTTZ9ZB##12222122204398100000000120130218WTTB0WZ#Y12222122204398100000000 -T12023011111177833820600414771120513111116300000000000000490080000000000000000000000000000000000222222000007222219012 -T2202301111117783381219940927WT@TY9@@W2222122222221012216110095121011813000000000000000000000000000000000000000000000000000000000000144300000000000000000000 -T320230111111778338120150123WT@0ZZTB#22221222204398100000000420110104WTTWYYTBP22221212104304109140000 -T320230111111778338120190413WTT@P##WB22221222204398100000000120160707WT@ZPY9T#22221212204398100000000 -T12023011111177836625900402831120322110835300000000000506540390000000000070005000000000000000000222222000000002229012 -T2202301111117783661219840124WT@YZBTP#2222212222222011212190283223011800000000000000000002000000000000000000000000000000000000390000000000000000000000000000 -T2202301111117783661219890321WTTYYTZ#T2222211222222021213190352523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778366120180507WTT@0ZW9W22222122204398100000000 -T12023011111177837522000411282120323210835300000000000006540070000000000000000000000000000000000222222000000002229032 -T2202301111117783751219900712WTT@99#WP2222212222222011214210085223011800000007000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117783751219910102WT@9TPY9W2222211222222021213290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778375120190121WTTZYZZTP22222112204398200000000 -T12023011111177855722000408891120213110611300000000011505280030000000000000000000000000000000000222222000000002229012 -T2202301111117785571219980718WTT#B9YZW2122222222221012212110045623010100000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T320230111111778557120220309WT@@T@TZY22122212204398100000000 -T12023011111177863124100410041120632111339300000000000010090200000000000000000000000000000000252222122000000002229022 -T2202301111117786311219900112WT@09PB@Y1122222222223012212120810023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778631120090324WT@BBTZPT11222222204305100000071 -T320230111111778631120150107WTT9YB#BP12222122204398100000125120110313WT@@YP90011222222204303100000071 -T320230111111778631120190918WT@9Y#PZB11222222204398100000000120180423WTT#WT@ZW12222112204398100000000 -T12023011111177871225000413201120213110611300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111117787121219820327WTT@WWW0@1222222222221012210110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778712120120405WT@#BZZZZ22222122204304100000050 -T12023011111177880425000401171110213110516300000000055001530040000000000000000000000000000000000222222000002642219012 -T2202301111117788041219910411WT@99@W#T2222212222221012216110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778804120220424WTTY0900922222122204398100000000 -T12023011111177881322000408891120213110611100500000000004930160000000000000000000000000000000000222222000000002229012 -T2202301111117788131219980107WTT@0TPY02221222222221012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778813120210127WT@Z9T0@@22212212204398100000000 -T12023011111177882224700405901120313110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111117788221219790523WT@90YWB@1222212222225012213110065423010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111778822120100723WT@9PZW9P12222112204305100000000120060326WT@@#Y0Z012222112204309100000000 -T12023011111177883322000405321120213110631300000000001505280320000000000000000000000000000000000222222000000002229012 -T2202301111117788331219910127WTT@ZTBB92212222222221012213110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000001131 -T320230111111778833120170327WTT0#YBTW22212222204398100000000 -T12023011111177887924200406011120213110631300000000000005280310000000000000000000000000000000000222222000000002229012 -T2202301111117788791219930127WTTYWTPYB2122212222221012208110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778879120190327WT@@0@YT921222122204398100000000 -T12023011111177889623500402292120323210835300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111117788961219940104WT@99T99Z2222221222222011212290035721011948000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111117788961219960402WT@WP@YYZ2222222222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778896120190411WT@#BWTYZ22222212204398200000000 -T12023011111177890022000403891120233120000109600000000004170900000000000000000000000000000000000222222000000002229022 -T2202301111117789003219920101WTT9#90T02221222222221012212110105013069900000000000000000000000000000000000000000000000000000000000000597700000000000000000000 -T320230111111778900120140523WT@ZWY09922212222207302100000000 -T12023011111177895120600414771110213110611300000000006703740380000000000000000000000000000000000222222000000002229012 -T2202301111117789511219690904WTT009ZYB2222212222225012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111778951120070421WTTYWY@T@22222122204308100000000 -T12023011111177896520600414771120813111691300000000000008700310000000000000000000000000000000000222222000001392219072 -T2202301111117789651219910405WTTPZ0P0B2221222222222012211110670023011800000000000000000000000000000000000000000000210002000000020000000000000000000000000000 -T320230111111778965420060301WTT099@WP22212212104309109140000 -T320230111111778965120120321WT@WY90T#22212212204303100000000120110318WT@PBYBT022222112204304100000000 -T320230111111778965120150424WT@B90@0Y22212212204398100000000120140408WT@Z#Y0BB22212212207301100000139 -T320230111111778965120160318WTT@#WTP922212212204398100000000520150307WT@#P@0T022212212107398107950139 -T12023011111177902722000407231120313110536300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117790271219740722WTTBY0Y#@2221222222221012211110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117790272219730107WT@#WPBT02221221222212022208190006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111779027120150114WT@@W@W9@22212212204301100000000 -T12023011111177907124200414721120232110579105630000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117790712219810127WTTT#YBW#2221222222211012213110530713089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111779071120110414WTTW99@PZ22212222204305100000000 -T12023011111177917323500404821120413110802300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111117791731219910127WTTZBZPB92222122222221012212110233723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111779173120130513WTT#90TZW22221222204304100000000 -T320230111111779173120220718WTTW99BWY22221212204398100000000120220422WT@YT#TW922221212204398100000000 -T12023011111177923620800414651120213110611300000000066003520160000000000000000000000000000000000222222000001762219012 -T2202301111117792361219700418WT@#ZWTPY2222212222225012216110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111779236120090922WT@BY#PWB22222112204307100000526 -T12023011111177933024700400741120313110835300000000000003920100000000000000000000000000000000261122222000000012219012 -T2202301111117793301219860714WTTZP@Y9P2222212222222012212110114923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111779330120170107WT@9TB0YZ22222112204398100000000120080727WTT#BW0TT22222112204309100000000 -T12023011111177967021000403301120832111691300000000000010090990000000000000000000000000000000000222222000000002229022 -T2202301111117796702219680322WTT09#@TW2222211222212012216190362413089900000000000000000000000000000000000000000000000000000000000000000000000000061600000000 -T2202301111117796702219730708WTTB90PYP2222212222212022207190352513089900000000000000000000000000000000000000000000000000000000000000000000000000061600000000 -T320230111111779670120060927WT@TW9ZZT22222122204307100000000120050922WT@#WYY#022222122204308100000000 -T320230111111779670120090423WTTP@#YP922222122204304100000000120070723WTT@0WY0T22222122204305100000000 -T320230111111779670120120127WT@TWZ0Y922222122204301100000000120100223WTT9Z9Z9P22222112204303100000000 -T12023011111177972424700402991120322110796300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117797241219890208WTT9YBZ9Y2222211222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117797241219950923WT@WTB#@#2222212222221011212190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111779724120210721WT@WYPW@W22222112204398100000000 -T12023011111177978322000402322120423211034300000000030007710070000000000000000000000000000000000222222000000002229032 -T2202301111117797831219820307WT@9@Z0#T2222212222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117797831219780227WTTBT#BP#2222211222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111779783120170712WT@ZYB0TW22222112204398200000000120060104WTT09T#TZ22222122204310200000000 -T12023011111177981923500412161110212110533300000000124405280520000000000000000000000000000000000222222000000002229012 -T2202301111117798191219780721WT@Y#0WBB2222212222221012214110600023011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111779819120170926WT@9YZ0YW22222112204398100000050 -T12023011111177984324700409322120213210598300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111117798431219900907WT@9TPY9W2222222222222012213210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111779843120200101WT@9TPY9W22222212204398200000000 -T12023011111177991124700408301120313110699300000000002206540040000000000000000000000000000000000222222000000002229012 -T2202301111117799111219870401WTTWPZ9P02222212222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111779911120220312WTT9#BZWW22222122204398100000000120150412WT@ZW#WYP22222112204301100000000 -T12023011111177995320600408181120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117799533219710421WT@#PWP@92222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000172500000000000000000000 -T320230111111779953120090404WT@090PT@21222212207307100000002 -T12023011111177996624500405781120333110634300000000000005280340000000000000000000000000000000000222222000000002229022 -T2202301111117799663219910212WT@0T@Y9@2222212222223012214110045611069940000000000000000000000000000000000000000000000000000000000000440400000000000000000000 -T320230111111779966120140118WTTB#TZYB12222122207398100000000120110513WT@#P90Z@22222112207304100000000 -T12023011111178009522000412691120512111116300000000389108880260000000000000000000000000000000000222222000000002229012 -T2202301111117800951219770326WT@TB@WBZ2212222222223012212120273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111780095120130707WTT##WWBP22122212204302100000025120120901WTTW#T0YZ22122212204304100000025 -T320230111111780095120160318WT@#Y099P22122222204398100000025120140101WT@@@YPWY22122212204301100000025 -T12023011111178019120800411931120512111116300000000000007710120000000000000000000000000000000000222222000000002229072 -T2202301111117801912219880727WTT#@YB092221222222212012216190550513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111117801911219900423WT@YZ@WY@2221221222222022209190680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111780191120080905WTTW@WYB#22212222204307100000000 -T320230111111780191120110414WT@YW0W#Y22212222204304100000000120090108WT@@YYW@P22212212204305100000000 -T12023011111178021324500407121120523111116300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111117802131219890312WTTT9WZY#1222111222221011216190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117802131219840312WT@0YWPPY2222212222221011216110055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111780213420140704WT@#TWB@@22222112104301109140000 -T320230111111780213120210404WTTWTTYYW12221112204398100000000120160926WTT#P0W#P22222112204301100000000 -T12023011111178026520400409801120212110597300000000004601840660000000000000000000000000000000000222222000003442219072 -T2202301111117802651219820327WTTW@B#Y92222212222221012216110760021011808000000000000000000000000000000000000000000000000000000000000068800000000000000000000 -T320230111111780265120110305WT@@##YTZ22222122204305100000000 -T12023011111178027920800414651120412110893300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111117802791219780121WT@@TW##02122222222225012216121450023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000033 -T320230111111780279120070207WTT0#BY@021222222204310100000033 -T320230111111780279120220402WT@9ZZP0021222222204398100000000120120427WT@YZ9ZW921222222204305100000033 -T12023011111178043320600414771120313110835102040000000005660040000000000000000000000000000000000222222000000882219012 -T2202301111117804331219940502WT@W@@9B92222212222223012208110213923011400000000000000000000000000000000000000000000000000000000370000000000000000000000000000 -T320230111111780433120180307WT@Z@Z#Z922222122204398100000000120170311WTT@ZZTBP22222112204398100000000 -T12023011111178045121400410861120313110611300000000000003600150000000000000000000000000000000240122222000000542219012 -T2202301111117804511219760918WT@BB@W0W2222211222225012212110243623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111780451120060707WT@#B0#P922222112204309100000027120040318WTTZT@WW#22222122204311100000027 -T12023011111178049320600402141120522111116300000000000408880100000000000070002000000000000000000222222000000002229012 -T2202301111117804931219820108WT@BB9BBT2222211222222011212110085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117804931219880402WT@0WP0PP2222212222222021211190065423011800000000000000000004000000000000000000000000000000000000050000000000000000000000000000 -T320230111111780493120040311WT@YWW@#022222112204311100000000 -T320230111111780493120200301WT@WZ@BZZ22222122204398100000000120060104WT@PTB0WZ22222112204310100000000 -T12023011111178051825100407671120233120000300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111117805183219510904WTT0ZZ@#@1222212122221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001331000000000000 -T320230111111780518120210309WT@0TBPPB22222222206398100000000 -T12023011111178068825000401171120213110598300000000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111117806881219940127WT@99@9TP1222212222225012210110283223010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111780688120210411WTTWW09BW12222112204398100000000 -T12023011111178077125900402631120213110611300000000000505280030000000000000000000000000000000000222222000000002229012 -T2202301111117807711219980101WTTZYTYYW2222212222221012212110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111780771120220401WTT00Y#ZW22222122204398100000000 -T12023011111178095322000413731120822111691300000000230012890100000000000000000000000000000000000222222000000002229012 -T2202301111117809531219860509WT@TTTT#02221221222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117809531219900201WT@@9P0ZW2221222222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111780953120110722WTTTBYZ9922212212204304200000000120060405WTTY0YPZW22212212204308200000000 -T320230111111780953120160423WTTP0@#BW22212212204398200000000120150413WTT@PPB0022212212204398200000000 -T320230111111780953120210127WT@Y@TWYT22212222204398100000000120190912WT@Z#9@B022212222204398100000000 -T12023011111178105121000403201120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117810513219760401WT@0ZYP@91222222222225012215110471311069942000000000000000000000000000000000000000000000000000000000000397800000000000000000000 -T320230111111781051120110126WT@9YT@Z012222222206304100000000120100727WTTZPT@T#11222212206306100000000 -T12023011111178113120800410751120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117811312219850127WTTZ@9BBW2222212222213012216110770013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000015 -T320230111111781131120110713WT@99#9Z@22222112204303100000000420070204WTTP9WBWY22222112104307105520282 -T12023011111178115722000402321120313110830117500000000005280100000000000035006000000000000000000222222000000002229012 -T2202301111117811571219880926WTT0BPB0W2222211222223012212110114922011700000000000000200000000000000000000000000000000000000000160000000000000000000000000000 -T320230111111781157120170104WTTYTB0BW22222112204398100000000420150201WT@W#P#W#22222112204398100000000 -T12023011111178117925600414551120212110549300000000000001630100000000000000000000000000000000000222222000003652219072 -T2202301111117811791219730726WTTBZTPYW2221222222223012216110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000034 -T320230111111781179120060923WTTP9Z99Y12212212204309100000330 -T12023011111178120120900403501120212110591300000000028505280490000000000000000000000000000000000222222000000002229012 -T2202301111117812011219910112WTT@T#W#P2222212222221012208110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781201120120923WTTBBBPWT22222112204305100000050 -T12023011111178129621000411361120212110376300000000000003160910000000000000000000000000000000211122222000000012219072 -T2202301111117812961219720127WTTB@T#Z@2222212222221012216110920023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781296120110705WT@PPWTW#22221212204304100000000 -T12023011111178131922000413681110213110376300000000000002210060000000000000000000000000000000000222222000003922219012 -T2202301111117813191219900301WTT9Y9YZ92121221222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781319120220313WTTBT#@9W21212222204398100000000 -T12023011111178133825900403711120533111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117813382219610122WT@T#Y@B#2222212222211012216110114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111781338120070512WT@T909@Y22222112204306100000000420050913WT@@W09#T22222112104308109140000 -T320230111111781338120170721WTT@0B0#@22222112206398100000000120160704WT@000PW922222122206398100000000 -T12023011111178134924700408301120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117813493219860127WT@9YW@##2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781349120090712WT@#@Z9@#12222122207303100000031 -T12023011111178135222000408891120433110939300000000000006540070000000000000000000000000000000000222222000000002229022 -T2202301111117813525219930724WTTWWT0Y#2222221222221012212210045611069908000000000000000000000000000000000000000000000000000000000000173100000000000000000000 -T320230111111781352120050218WTTZ@9ZW@22222212209312200000000 -T320230111111781352120120518WT@B#BWPT22222222209304200000000120060101WTT#BB0BW22222222209309200000000 -T12023011111178142020800411931120213110933300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111117814201219970924WTTTTYWWW2222212222221012209120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781420520140727WTTP#B9T922222122109302109140000 -T12023011111178142420600414771120313110835300000000000003920940000000000000000000000000000000261122222000000012219072 -T2202301111117814241219860301WT@W9B9Z02222212222221012212111010023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781424120180724WT@W9ZTP@22222122204398100000000120080113WTTBWPPPZ22222112204306100000000 -T12023011111178142725900407101120333110670300000000000005280440000000000000000000000000000000000222222000000002229022 -T2202301111117814273219540204WT@W9WZZB2122222122213012212110045613069900000000000000000000000000000000000000000000000000000000000000000000000439024300000269 -T320230111111781427120050713WT@Y#B9BP11222212206308100000000120050427WTT#Y@W#P21222212206310100000000 -T12023011111178146722000408891110412110939106740000000000380010000000000000000000000000000000000222222000000002229012 -T2202301111117814671219930207WT@00@@BT2221222222221012212110213921011810000000000000000000000000000000000000000000000000000000000000082900000000000000000000 -T320230111111781467420130718WT@0ZP#BY22212212104302108220000 -T320230111111781467120190107WTT@Y9W9022212212204398100000000120170422WT@YZ0YPP22212212204398100000000 -T12023011111178148024200404421120313110835300000000001206540030000000000000000000000000000000000222222000000002229042 -T2202301111117814801219870424WTTB@9TZ02222212222223012212110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781480120200107WTTWZ@9BB22222112204398100000000120150212WT@9WPWWW22122222204301100000000 -T12023011111178148623500407161110423110939300000000000004970010000000000000000000000000000000000222222000000002229012 -T2202301111117814861219930513WTTB99BWY2222211222221011210110025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117814861219880111WT@0#9#BW1222212222223011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781486120180701WTT@Y0WW022222112204398100000000120150309WTTYYZYP012222122204398100000000 -T12023011111178153024200403511120413111034300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111117815301219920908WTTZ09TPZ2222122222221012216110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781530120110705WT@ZYTZPY22221222204304100000000 -T320230111111781530120160426WT@Y9@BZ922121212204398100000000120120707WT@PYP@ZW22221222204303100000000 -T12023011111178166122000400921120613111395300000000150010090100000000000000000000000000000000000222222000000002229012 -T2202301111117816611219710323WTTBB9#9@2222212222224012216210233723011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111111781661120040327WTT90P0#Z22222122204311200000000 -T320230111111781661120090702WT@PW@TWB22222112204307200000000120070127WT@Y90WW922222112204309200000000 -T320230111111781661120140912WT@W9YZ@922222122204302200000000120110314WT@0#Y#BW22222112204303200000000 -T12023011111178176424100402401120332110704300000000000005280570000000000000000000000000000000000222222000000002229022 -T2202301111117817643219650123WT@0W#@TP1222212222225012210111220011069915000000000000000000000000000000000000000000000000000000000000114200000000000000000000 -T320230111111781764120090407WT@ZZY0@Z12222122206306100000000120040712WTTY0B@BP12222122206310100000000 -T12023011111178180522000410051120213110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111117818051219750712WT@0@090Z2221221222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111781805120200712WT@ZBW@YW22222212204398100000000 -T12023011111178182025800405801120313110743300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111117818201219810401WTT#9#ZYB2222212222221012209111040023011400000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111781820120100912WTT#@ZZ@@12222122204304100000000120050313WTTWZ#PZ912222122204310100000050 -T12023011111178197524200404701120412110939300000135001000010330000000000000000000000000000000000222222000000002229072 -T2202301111117819751219750723WT@#YT0WT2222122222221012213110940011011800200000000000000000000000000000000000000000000000000000160000135400000000000000000135 -T320230111111781975120120127WT@P@9TBP22221212204304100000308 -T320230111111781975120160509WT@#99W@W22221222204312100000000120140713WT@#@WY9Y22221222204301100000000 -T12023011111178200924200404891120213110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111117820091219940512WT@T9ZTPT2222212222221012212110184223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782009120220526WT@0PT9WT22222212204398100000000 -T12023011111178204625600413441120332110670300000000000001260990000000000000000000000000000000000222222000002912219022 -T2202301111117820462219560107WT@WB09Y#2222211122212012211190006013109900000000000000000000000000000000000000000000000000000000000000000000000429048100000000 -T2202301111117820462219620323WTT9@P#9Z2222212222212022210190204013089900000000000000000000000000000000000000000000000000000000000000000000000000048100000000 -T320230111111782046120050721WT@BWZ@PZ22222122204311100000291 -T12023011111178218222000402371110233120000300000000000001210010000000000000000000000000000000000222222000000002229021 -T2202301111117821825219870918WTT9##W002221222222221012213110006011069903000000000000000000000000000000000000000000000000000000000000477900000000000000000000 -T320230111111782182120210709WT@T@B@B#22212222209398100000000 -T12023011111178222722000410051120512111116300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111117822271219840326WTT@YYZW02221222222221012212111640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117822275220040327WTTBT@09@2221221222211043211190006013069900000000000000000000000000000000000000000000000000000000000000000000000000064200000238 -T320230111111782227120050318WTTBYW#@@22212222204310100000000 -T320230111111782227120130405WTTP@0#ZW12212222204303100000000120080507WTT9YYP9Z12212212204308100000000 -T12023011111178227022000400811120513110939300000000087800780620000000000000000000000000000000000222222000006932219072 -T2202301111117822701219790321WT@Z@YPPY2122222222222012210190620021011900210000000000000000000000000000290001000000000000000000000000138500000000000000000010 -T2202301111117822702219760527WT@YYBT9P1222221222222102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782270120090902WTT@PBT@Y11222222204307100000010 -T320230111111782270120140313WTTT@TT@@11222212204301100000010120110102WTTBW@TY#11222222204305100000010 -T12023011111178231623700414331120213110598109810000000005280200000000000035010000000000000000000222222000000002229012 -T2202301111117823161219980427WTTYT9ZYB1222221222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782316120190326WTT#YB9WT12222112204398100000000 -T12023011111178231924700408361120113110376300000000000004170080000000000000000000000000000000000222222000000002229012 -T2202301111117823191219900412WT@ZB@#BP2222212222221013212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111178235424200408391110423110939300000000000001740010000000000000000000000000000000000222222000000002229012 -T2202301111117823541219810702WTTPYYY@W2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117823541219860113WTTT@#9T@2222212222222021215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782354120120408WT@@#09BW22222122204304200000000120080721WTTPY@W0@22222112204307200000000 -T12023011111178242822000413691120213110611300000000001505280100000000000000000000000000000000000222222000000002229012 -T2202301111117824281219860908WT@T#Y#@02222212222221012216210114923011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111782428120170504WTT0Z0#W@22222122204398100000000 -T12023011111178255724700401011120313110835300000000850006540020000000000000000000000000000000000222222000000002229012 -T2202301111117825571219840713WTT0#TY#Z2222212222221012298110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782557120130126WT@@BYB9P22222122204303100000000120070709WT@T9##ZP22222122204309100000000 -T12023011111178268225600411521120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111117826823219840307WT@#TPPTT2222212222221012211110025813069900000000000000000000000000000000000000000000000000000000000000309600000000000000000000 -T320230111111782682120070712WTTZWYZ0B12222112207309100000000 -T12023011111178274723500408281120313110724300000000150006540050000000000000000000000000000000000222222000000002229072 -T2202301111117827471219850307WTT#BT0P@2222212222225012212111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782747120170318WT@YYBWBZ22222122204398100000000120140407WT@TB0Y9#22222112204303100000000 -T12023011111178282423500411472120523211116300000000000008880020000000000000000000000000000000000222222000000002229032 -T2202301111117828241219910212WT@9TPY9W2222211222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117828241219920101WT@9TPY9W2222212222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782824120170502WT@9TPY9W22222112204398200000000 -T320230111111782824120210404WT@9TPY9W22222122204398200000000120190105WT@9TPY9W22222112204398200000000 -T12023011111178282525900403711120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117828251219840313WT@0P9@0P1222221222225012209110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782825120100921WT@@ZP0B@12222112204305100000000 -T12023011111178289223500404821120213110611300000000000004950040000000000000000000000000000000000222222000000002229012 -T2202301111117828921220010522WT@@#TW#02222212222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111782892120220702WT@0BWYB922222122204398100000000 -T12023011111178301522700408351120313110740300000000000105280220000000000000000000000000000000000222222000000002229012 -T2202301111117830151219940701WT@W@0B@#2222212222221012216110204023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783015120230424WT@9TPY9W22222112204398100000000120220402WTT#BTWWY22222122204398100000000 -T12023011111178305624700401281110213110493113570000014401870270000000000000000000000000000000000222222000003412219012 -T2202301111117830561219920401WT@BTT9ZT2222212222221012212110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783056120190104WTTY#B@T@22222122204398100000274 -T12023011111178315524100402401120413110939300000000025006540820000000000000000000000000000000000222222000000002229072 -T2202301111117831551219940112WTTPTY0WW2222212222221012216110720023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117831551219830327WTT0W#BY01222221222221012212190312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783155420190527WT@T@BY0B22222122104398109140000120120709WT@B0Z0ZB22222112204303100000050 -T12023011111178316821000408061110433110939300000000000003630010000000000000000000000000000000000222222000000002229021 -T2202301111117831682219810727WT@@BP#@#2222212222215012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111783168420050413WTTY0@0#Z22122212104311109140000 -T320230111111783168420100727WT@9Z9Y0922222122104307109140000120080709WTT@BBZ#Y22222122204309100000000 -T12023011111178322423500411471120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111117832241219980324WT@Y90BW@2222222222221012210110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783224120180702WT@9TTYYP22221212204398100000000 -T12023011111178327724200408571120313110516300000000000003160610000000000000000000000000000000211122222000000012219072 -T2202301111117832771219840121WTT90P0T#2222212222225012212110740023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000011 -T320230111111783277120130108WTTT9PYYY22212112204302100000025420090208WTT##BZY922212112104307108220025 -T12023011111178332125900403551120433110835300000000000006540910000000000000000000000000000000000222222000000002229022 -T2202301111117833212219800424WT@W9TB991222222222225012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783321120060707WTTZB@B9Y12222222204311100000000 -T320230111111783321120170321WTTWY0ZPY12222112204398100000000120070701WTTYBBYZP12222222204309100000000 -T12023011111178332921700406141120333110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117833292219830923WTTZ#YW0P2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000080300000000 -T320230111111783329120110113WT@WBPB@Y22222122204304100000050120060705WTTW@B0T@22222122204307100000000 -T12023011111178333720200409311110312110740300000000000004000110000000000000000000000000000000000222222000000002229012 -T2202301111117833371219970122WT@PW0#Z@1222212222221012211110204021011734000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783337120180518WT@W9T#YB12222222204398100000000120140204WT@00PYB912222112204301100000000 -T12023011111178337624700409381110313110766103490000000006540010000000000000000000000000000000000222222000000002229012 -T2202301111117833761219820104WT@T99@ZZ2222212222223012212110025821011720000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783376120180408WTTZTPZ@022222122204398100000000120060301WT@T@PZTP22222122204310100000000 -T12023011111178345921700406141120233110516300000000000504170150000000000000000000000000000000000222222000000002229022 -T2202301111117834592219850412WTTPWPYTP1222212122215012213110006013109900000000000000000000000000000000000000000000000000000000000000000000000476045800000000 -T320230111111783459120050101WT@Y#B#TW12222122204312100000000 -T12023011111178355024200414351120413111034300000000016007710040000000000035002000000000000000000222222000000002229012 -T2202301111117835501219810702WT@BT90Z91222211222225012212110075323011800000000000000000002000000000000000000000000000000000000140000000000000000000000000000 -T320230111111783550120060108WT@9YB9W#12222212204309100000000 -T320230111111783550120130918WT@BT@ZBY12222212204303100000000120070308WT@YPYWTT12222222204309100000000 -T12023011111178364224200414721120213110598112270000000005280500000000000035004000000000000000000222222000000002229012 -T2202301111117836421219810307WT@YWYWYP2221222222223012216110491123011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111783642120180327WTTZTBTY922212222204398100000000 -T12023011111178365620800411991120412110971300000000000007710940000000000000000000000000000000000222222000000002229072 -T2202301111117836561219940704WT@TZTWYP2222212222221012212110940023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783656120120421WTTPT#B9@12222122204304100000000 -T320230111111783656120220201WT@9W9Y#W22212222204398100000000120130911WTTT00YPZ22222122204303100000000 -T12023011111178367020600414871120213110611300000000000005280180000000000000000000000000000000000222222000000002229072 -T2202301111117836701219900923WT@BTZ#@Z1222212222221012212120620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783670120210714WT@TW99#Y22222112204398100000000 -T12023011111178372022000411551120312110740300000000000006540720000000000000000000000000000000000222222000000002229072 -T2202301111117837201219920423WT@PB@PW02221222222221012212110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783720120190423WT@BYPY#Y22212212204398100000000120090311WT@PZ@Z#022212222204307100000000 -T12023011111178373224200409091120312110766300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111117837321219840926WTT#P9#W91222221222225012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783732120140905WTTW@TPYT11222212204302100000000120100708WTT@@TY#Y11222222204305100000000 -T12023011111178387924100402401120113110376300000000085304170030000000000000000000000000000000000222222000000002229012 -T2202301111117838791220020923WTTZ@ZTBB1222222222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111178390123500407162120423210939300000000000007710040000000000000000000000000000000000222222000000002229032 -T2202301111117839011219880427WT@9TPY9W1222212222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117839011219850113WT@9TPY9W1222211222222021215290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111783901120120412WT@9TPY9W12222112204303200000000120100923WT@9TPY9W12222122204305200000000 -T12023011111178393422000410221120213110611300000000000005280240000000000000000000000000000000000222222000000002229012 -T2202301111117839341219800304WTTB@#WZ92222212222221012212110253523011400000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111783934120210424WT@@Z#Y#P22222122204398100000000 -T12023011111178396924700402991120232110516300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111117839693219650127WTT@#90P#2222212122225012210110095113069900000000000000000000000000000000000000000000000000000000000000000000000972000000000000 -T320230111111783969120170311WT@0Y0PZY22222112207398100000000 -T12023011111178404122000413681120212110364300000000000003160600000000000000000000000000000000211122222000000012219072 -T2202301111117840411219800909WT@BZPBPT2222212222221012216110610023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111784041120160102WT@BBW@0T22222122204301100000000 -T12023011111178411721700407751120213110598113020000006005280040000000000000000000000000000000000222222000000002229012 -T2202301111117841171219950924WTTP@BPYB2222212222221012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111784117120210314WT@Z9#00022222222204398100000000 -T12023011111178423622000405181110213110611300000000000002380010000000000000000000000000000000000222222000000002229012 -T2202301111117842361219770718WTT90YBP#2222122222225012216110461423011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111784236120100718WT@T@#@9Z22122212204306100000000 -T12023011111178430824200414851120212110554300000000000002480200000000000000000000000000000000000222222000002802219012 -T2202301111117843081219880314WT@#ZPY@P2221222222221012213110213921011807000000000000000000000000000000000000000000000000000000000000056000000000000000000000 -T320230111111784308120200704WT@PT9BBT22212222204398100000000 -T12023011111178439722000411551110412110939300000000000002230010000000000000000000000000000000000222222000000002229012 -T2202301111117843971219770423WTTW999TW2221222222223012206110223821011810000000000000000000000000000000000000000000000000000000000000055300000000000000000000 -T320230111111784397120060721WTTZ#Y#0#22212212204310100000000 -T320230111111784397120130507WT@B#BWZ@22212212204304100000000120110127WTTZ9WZBT22212222204308100000000 -T12023011111178454520800414151120313110740300000000206106540330000000000000000000000000000000000222222000000002229012 -T2202301111117845451219860412WT@Y@Z#9@2222212222225012216110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000001547 -T320230111111784545120080318WT@9@BBBZ22222112204307100000000120040923WT@P0TZ0#22222112204311100000100 -T12023011111178460320600414251120413111034300000000000007710230000000000000000000000000000000000222222000000002229012 -T2202301111117846031219860226WTTBTY0P#2222212222223012216110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000001785 -T320230111111784603120160926WTTT9P#0B22222112204398100000000 -T320230111111784603120200712WTTZZYBPP22222112204398100000000120180207WTTW@0B9Z22222112204398100000000 -T12023011111178461620800411601120213110611300000000007805280070000000000000000000000000000000000222222000000002229012 -T2202301111117846161219860112WT@Z0BBWB2222212222221012212110303023011800000000000000000000000000120000000000000000000000000000000000000000000000000000000000 -T320230111111784616120140904WT@0PZBWP22222122204302100000000 -T12023011111178474522000403531120312110704300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111117847451219920404WTTW0ZZ@B2222212222223012211121070023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111784745120180905WT@W@YTBB22222122204398100000000120150122WT@Z##0YP22222112204398100000000 -T12023011111178477722000402321120412110751300000000000007710150000000000000000000000000000000000222222000000002229012 -T2202301111117847771219750112WT@PBTZPB2221222222225012216110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111784777120060321WTTY@@0PY22212222204309100000000 -T320230111111784777120120723WT@#P0B#T22212212204302100000000120110704WTT@@BB@P12212222204303100000000 -T12023011111178500624900404261120213110611300000000000002680130000000000000000000000000000000000222222000002602219012 -T2202301111117850061219810327WT@@YWZ0W2222212222221012212110144621011940000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111785006120070312WTTY@@9Y@22222122204307100000000 -T12023011111178504423500405981120423110893300000000040007710080000000000000000000000000000000000222222000000002229012 -T2202301111117850441219800726WTT@B0@YY2222211222222011212290095123011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111117850441219790102WTT00Z@#T2222212222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785044120130205WTTWW9P#T12222112204302200000000120080126WT@Y0Z99#22222122204307200000000 -T12023011111178506724200414721120612111339139900000000003590230000000000000000000000000000000000222222000006502219012 -T2202301111117850671219890318WTTYW90TY2221222222221012212110540621011804000000000000000000000000000000000000000000000000000000000000019600000000000000000600 -T320230111111785067120100908WT@#WYWPY22212222204306100000120 -T320230111111785067120190412WTTZ9TB0#22212222204398100000000120160924WTT#@#BBY22212222204398100000194 -T320230111111785067120210904WTT0#T09W22212212204398100000000120200107WTT@P##T922212222204398100000000 -T12023011111178509122000408891120213110598300000000060005280130000000000070004000000000000000000222222000000002229012 -T2202301111117850911219940424WTT0T@PBW1222212222221012212110174323010600000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111785091120200111WT@9BPYB922222122204398100000000 -T12023011111178512120800411931120433120000300000000000005280160000000000000000000000000000000000222222000000002229022 -T2202301111117851213219750921WTTPWB#PT2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000585000000000000000000000 -T320230111111785121420100322WT@P0Y9YY22222122204305100000000 -T320230111111785121120210704WT@9TPY9W22222122208398100000000120200107WTTPP9B#B22222122208398100000000 -T12023011111178513422000400281120212110598300000000200005280640000000000070004000000000000000000222222000000002229072 -T2202301111117851341219910105WT@Z@B09B2222212222221012213110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785134120140108WT@9BZYWB22222112204302100000000 -T12023011111178515522500410151120313110740300000000000004900100000000000000000000000000000000163222122000000012219012 -T2202301111117851551219880518WTTW@@YZW2222212222223012210120174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785155120090727WTT@PBTB922222122204307100000000120080421WT@ZP@@BT22212122204308100000203 -T12023011111178520021700410451120233120000300000000000004170920000000000000000000000000000000000222222000000002229022 -T2202301111117852003219770918WT@YYBT9P1222222222222012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785200120100207WT@0TP9@912222222207305100000000 -T12023011111178523622000400591120612111339103560000107010090030000000000000000000000000000000000222222000000002229012 -T2202301111117852361219890423WT@00Z#TP2221222222223012206220223823011800000000000000000000000000000000160001000000000000000000000000000000000000000000000000 -T320230111111785236120070921WT@0PWBB#22212222204309200000000 -T320230111111785236120120313WTT9BB@9Y22212222204304200000000120090426WTT0ZBBB@22212222204308200000000 -T320230111111785236120190105WTT#BYPW#22212212204398100000000120180921WTTZ@9B@@22212212204398100000000 -T12023011111178529523500412161120233120000300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111117852953219810209WT@BTYTB02222212222221012211110124813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785295120090507WT@ZB9Z9922222122207306100000000 -T12023011111178536824200407311120313110766300000000000003920200000000000000000000000000000000261122222000000012219012 -T2202301111117853681219980727WTTP@ZZ0T2222212222221012211110213923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785368120200412WT@00@ZB#22222112204398100000000120180723WT@TZBT9P22222122204398100000000 -T12023011111178537520800409831120413110939300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111117853751219770211WTT#T9@PW2222212222221012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785375120040701WTT9Y@P0022212212204312100000000 -T320230111111785375120170227WTTZBZ@9022222112204398100000000120150927WTTT0ZBTP12222122204301100000000 -T12023011111178537722000407241120412111034300000000000007710600000000000000000000000000000000000222222000000002229012 -T2202301111117853771219880727WT@Z9WYZ02222122222221012212120590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785377120090501WTT0B9TY@12221222204307100000000 -T320230111111785377120190112WTTWW@#Y022221222204398100000000120100723WTTPT0TBZ22222122204306100000000 -T12023011111178543022600405051120332110740108620000000005280920000000000000000000000000000000000222222000000002229022 -T2202301111117854303219630901WTTW0ZT0P2222212222225012212110075313069900000000000000000000000000000000000000000000000000000000000000000000000000000000001298 -T320230111111785430120130909WT@PTTBZ022222122206302100000000120130909WT@WZWYYB22222112206302100000000 -T12023011111178547323500411471120312110516300000000000003160070000000000000000000000000000000211122222000000012219012 -T2202301111117854732219920123WTTPPW9Y92222212222211012216190065413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111117854731219830504WT@TB@BZ@2222211222221012212190105023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785473120220421WT@#Z#PWB22222122204398100000000 -T12023011111178549824200410711120323110835300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111117854981219660112WTT9TWY0T2222212222223011212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117854981219620302WTTB90T002222211222223021212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785498120060426WT@YTW#@B22222112204310100000000 -T12023011111178560425900406081120433110611300000000550005280150000000000000000000000000000000000222222000000002229022 -T2202301111117856042219860409WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117856042219840705WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785604120200405WTTPYBZBB12222212204398100000000120070427WTT9BYBYY12222222204308100000000 -T12023011111178565020600401641120412110376300000000203807710730000000000000000000000000000000000222222000000002229072 -T2202301111117856501219840512WT@PYY9WZ1212222222225012212110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785650120090212WT@YY0Z@Y21222222204306100000000 -T320230111111785650120170421WT@P0WT0P12222112204398100000000120140713WTTB@9YZP21222212204398100000000 -T12023011111178583624700405901120113110376300000000000004170170000000000000000000000000000000000222222000000002229012 -T2202301111117858361219890401WTTWTT#BZ2222212222221013214110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111178584823500412161120232110493300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111117858483219770305WTTP#0#Y02222212222221012213110740011069934000000000000000000000000000000000000000000000000000000000000264900000000000000000000 -T320230111111785848120220101WTT0B#@B@22222112206398100000000 -T12023011111178587420600403591120413110835300000000001303970160000000000000000000000000000000261122222003200002229072 -T2202301111117858741219900124WTTPTPPZ@2222212222221012212110760023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111785874120080427WT@BW#0YB22212212204308100000000 -T320230111111785874120140118WTTPT#WY@22222112204303100000000120100526WTT@@PY9W22222122204307100000000 -T12023011111178610520600414771120413111034300000000000007710400000000000000000000000000000000000222222000000002229012 -T2202301111117861051219910424WT@YBZPZ#1222212222221012216110590123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111786105120120901WTTB9W@W012222122204303100000000 -T320230111111786105120220423WT@T@9#Y@12222122204398100000000120150413WT@Z9@@WW12222122204398100000000 -T12023011111178619822700413181120633111269300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111117861982219870507WTTBY##9T2222212222212012211190540613089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111117861982219850404WTTZ0Y#WW1222221222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111786198120150427WTT@##0W012222122204301100000000120120413WT@@YZ#B#12222212204304100000000 -T320230111111786198420090123WT@Y#Y@BT12222212104306109140000120070122WTTYWWB9912222212204309100000000 -T12023011111178629320800409831120233120000300000000005104170990000000000000000000000000000000000222222000000002229022 -T2202301111117862933219580424WT@ZZP@WB2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001133000000000000 -T320230111111786293120090427WT@Y@9@Y922222122206306100000000 -T12023011111178646923700414331120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117864692219890123WT@9PW@W01222222122215012212120144613109900000000000000000000000000000000000000000000000000000000000000000000000762017200000000 -T320230111111786469120060327WTTP#WPTW12222222204309100000000 -T320230111111786469120180104WTTWTPW@#12222212204398100000000420080323WTT0B#W9012222212104307106110347 -T12023011111178650222000402371120412110965113920000000007710090000000000000000000000000000000000222222000000002229072 -T2202301111117865021219870423WTTPPP#@92221222222221012206110660023011400000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T320230111111786502120070927WTTY0YBBT22212212204310100000000 -T320230111111786502120140105WTT0TBT@P22212212204302100000000120110514WT@BYWYP@22222212204306100000000 -T12023011111178654920600414871110213110682300000000000003740010000000000000000000000000000000000222222000000002229012 -T2202301111117865491219800721WTTYT0###2222211222221012213110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111786549120130321WTTB9@Z9Z22222122204302100000000 -T12023011111178655421700406141120213110599300000000000003160250000000000000000000000000000000211122222000000012219012 -T2202301111117865541219980721WTT0@T0TT2222212222221012211120263423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111786554120180407WTT@BYBBB22222112204398100000000 -T12023011111178662220600400871121122112324300000000000002610130000000000000000000000000000000000222222000012782219012 -T2202301111117866221219730423WTT0BWP0Z2222211222222011298290085221011973000000000000000000000000000000000000000000000000000000000000255400000000000000000000 -T2202301111117866221219760423WT@009YY92212222222222021298290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111786622120070423WTTZBZZZ022122212204309200000000 -T320230111111786622120100423WT@BT@09Y22222122204306200000000120090423WT@0Y0B9022122212204308200000000 -T320230111111786622120140423WTTWYWB9P22122212204303200000000120130423WT@#TP@WB22222122204304200000000 -T320230111111786622120160423WT@0WPT#Z22222112204398200000000120150423WTTBY#ZZ@22222112204303200000000 -T320230111111786622120170423WTT@WTP9W22222122204398200000000120160423WT@#PZ9#922222122204398200000000 -T12023011111178670622000412971120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117867063219680421WT@YZTPZZ1122222222225012212110303011069940000000000000000000000000000000000000000000000000000000000000361200000000000000000000 -T320230111111786706120100727WT@PW9Y0011222222206304100000000 -T12023011111178677524200413331120333120000300000000000005280770000000000000000000000000000000000222222000000002229022 -T2202301111117867753219700412WTTY#WZ#92222212222222012213110006011069940000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111786775120110726WTT0YW@9922222122206303100000000120070126WTT9Z@@@#22222122206306100000000 -T12023011111178688620300401381120423110893300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111117868861219810127WTTZ0B@9Z2122222222222011213190402023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117868861219740727WT@YY@B9T2122221222222021212190411923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111786886120160221WT@TTZ0P#21222212204398100000000120140313WTTT0PB@#21222212204301100000000 -T12023011111178689620800414651120513111199111520000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111117868961219850323WTT0P##ZW2222212222223012213110461423010100000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111786896120060913WTT9##WP@22222122204309100000000120040312WTT0BY@TY22222122204311100000000 -T320230111111786896120220105WT@9TPY9W22222112206398100000000120090118WTTPT9WZ022222112204306100000000 -T12023011111178692720800410751120233110501300000000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111117869272219870124WTT9TY0WW2222212122211012212110650013109900000000000000000000000000000000000000000000000000000000000000000000000821011300000000 -T320230111111786927120080704WTTW@Y9WY22222122204307100000000 -T12023011111178697425600414551110413111034300000000000003230010000000000000000000000000000000000222222000000002229012 -T2202301111117869741219890904WTTYP@TZ02222212222222012214110352523011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111786974120080113WTT0PPYP922222122204308100000000 -T320230111111786974120150904WTTYYW99B12222122204398100000000120120427WTTTPYYP022222112204302100000000 -T12023011111178703024200404891120533111116300000000000006540700000000000000000000000000000000000222222000000002229022 -T2202301111117870302219900127WT@9YYWB02221221222212012212190015913089900000000000000000000000000000000000000000000000000000000000000000000000000067500000000 -T2202301111117870302219880913WT@W@YWBP2222212222212022212190015913089900000000000000000000000000000000000000000000000000000000000000000000000000067500000000 -T320230111111787030120170201WT@Y@P9PP22212212204398100000000 -T320230111111787030120220213WTTWY#B@T22212212204398100000000120190409WT@T@P#0T22212222204398100000000 -T12023011111178703321000401191120213110363300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111117870331219850426WT@WZ0T002222212222225012216110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111787033120220712WT@@@YT@T22222112204398100000000 -T12023011111178703424700413931120213110611300000000002005280060000000000000000000000000000000000222222000000002229012 -T2202301111117870341219930918WTTW9WT092222212222221012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111787034120210204WT@WBP9T#12122212204398100000000 -T12023011111178730225200412081120113110376300000000100004170080000000000000000000000000000000000222222000000002229012 -T2202301111117873021219960312WTTZ0W99T2222222222221013213190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111178742923500409141120233110470115220000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111117874293219710308WT@BPWY@Z2222212222225012211110025811069940000000000000000000000000000000000000000000000000000000000000340000000000000000000000 -T320230111111787429120200413WT@BYTT@Y22222112207398100000000 -T12023011111178744225200407301120313110766300000000025006540860000000000000000000000000000000000222222000000002229072 -T2202301111117874421219800307WT@W0T0BB2222211222225012212110950023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111787442120110712WT@ZW##T#22212122204304100000000120100407WT@Z0TZYB22212122204306100000000 -T12023011111178747122000408891120323110766300000000021206540030000000000000000000000000000000000222222000000002229012 -T2202301111117874711219930312WTTYW#@PT2212221222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117874711219930426WT@YY#9@92212222222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111787471120200426WT@00PPZP22122222204398200000000 -T12023011111178750220600400801120213110611300000000000505280220000000000000000000000000000000000222222000000002229012 -T2202301111117875021219910227WT@Z0###@2222212222221012213110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111787502120130307WT@90B#PT12212222204302100000000 -T12023011111178750424200414021120333110670100500000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111117875043219950713WTTYBZY@T2221221222222012212110006011069944000000000000000000000000000000000000000000000000000000000000138300000000000000000000 -T320230111111787504120080424WTTYZ@YWW22212212207308100000000120070413WTT@PZ9BW22212212207309100000000 -T12023011111178765522000404841120213110376300000000000003160290000000000000000000000000000000211122222000000012219072 -T2202301111117876551219660401WTT9YBZB@2221222222225012216110650023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111787655120080124WTTPBZTPT22212222204307100000000 -T12023011111178800825200407301120313110835300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111117880081219960426WTT@#0Y0W2222212222221012209110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111788008120220422WTTZ9WP9Z22222122204398100000000120100313WT@YWW0BY22222122204305100000018 -T12023011111178802722000413691120212110611300000000000005280410000000000000000000000000000000000222222000000002229072 -T2202301111117880271219760504WT@T#Z@TZ2221222222225012216111030023010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111788027120170312WT@9W##@922222212204398100000000 -T12023011111178812225900410241120413110939300000000000007710460000000000000000000000000000000000222222000000002229012 -T2202301111117881221219900309WT@W#YZ#B2222212222223012212110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111788122120120713WTTZT#0W#22222112204304100000050 -T320230111111788122120170701WTTWWTTPZ22222122204398100000050120130701WT@#YT0YW22222122204303100000050 -T12023011111178812524500405781120312110835300000000100006540060000000000000000000000000000000000222222000000002229012 -T2202301111117881251219960101WT@0W9P#P1222222222221012216210065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111788125120220921WTTZB9#Y#12222122204398100000000120160524WTT@@9#BZ12222112204301100000000 -T12023011111178818125000400451110233110516300000000000000380990000000000000000000000000000000000222222000003792219021 -T2202301111117881813219470907WTTZ9WZ#W2122222122224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000891000000000000 -T320230111111788181120080526WT@T9PWW@21222212206305100000020 -T12023011111178819522700401571120233120000300000000000004170830000000000000000000000000000000000222222000000002229022 -T2202301111117881953219540907WT@9W9PPZ2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000599000000003797 -T320230111111788195120050327WT@TTW@Z922222112206308100000000 -T12023011111178824724700401011120412110970300000000000007710160000000000035001000000000000000000222222000000002229012 -T2202301111117882471219860102WTTWY9ZY@2222211222222012212110174323010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111788247120130107WTTP@YYWT21222212204302100000000 -T320230111111788247120190722WTTZZYYY022222112204398100000000120180726WTTTB0P0T21222222204398100000000 -T12023011111178834924200409091120113110188300000000030304170090000000000000000000000000000000000222222000000002229012 -T2202301111117883491220000127WTT#T99002222212222221013212190105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111178837024700409321120323110835300000000009006540020000000000000000000000000000000000222222000000002229012 -T2202301111117883701219960407WTT@WZ@PZ2222121222221011212990025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117883701219930713WTT#Y0T0B2222122222221011214990095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111788370120210709WTTTBY@W922221222204398100000000 -T12023011111178842822000408451120332110740300000000000005280830000000000000000000000000000000000222222000000002229022 -T2202301111117884282219750204WTTTPP0YZ2222222222213012214110095113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111788428120110423WT@@PYZ@W22222222204304200000100120060421WTTP9BYZB22222212204309200000000 -T12023011111178844822000407241120413110835300000000001006830040000000000000000000000000000000163222122000000002229012 -T2202301111117884481219920227WT@#Y0BPB2122222222221012212120263423010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111788448120120512WT@##YW9@11222212207304100000000 -T320230111111788448120190926WTT0BY0ZY12222122204398100000000120180912WTT0YYZB011222222204398100000000 -T12023011111178846922000410051120232110516300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111117884692219830404WTTY0@09Y2222212222215012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111788469120200323WT@TZPP@Y21222222204398100000000 -T12023011111178848124500405781120213110493111990000000003160240000000000000000000000000000000211122222000000012219012 -T2202301111117884811219970427WTTTYYTZ92222212222221012210110233723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111788481120180709WTT9ZP0TZ22222112204398100000000 -T12023011111178849620600400871120313110786300000000000003920270000000000000000000000000000000261122222000000012219012 -T2202301111117884961219920121WT@9##0WB2222122222223012213910283223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111788496120190321WTT@TYYZZ22221222204398100000000120180913WTT0#BBTP22221222204398100000000 -T12023011111178853220600402131120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111117885321219810923WTT#T9@ZT2222212222223012216110312923011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111788532120080907WTTBPWZPY22222112204309100000000 -T12023011111178870124500410691120313110740300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111117887011220030424WTTYPWZ0Y2222212222221012211110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117887012219990105WT@TZT##@1222221122211102211190006013109900000000000000000000000000000000000000000000000000000000000000000000000755017900000000 -T320230111111788701120220326WT@BT99ZY22222112204398100000000 -T12023011111178878124200403941120213110364300000000000003160280000000000000000000000000000000211122222000000012219012 -T2202301111117887811219870413WT@9Y#0YZ2221212222221012216110293123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111788781120160918WT@TWYBZW22212112204398100000000 -T12023011111178878825800405801120233110611300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111117887883220000723WT@@#WP0W2122222222221012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000204 -T320230111111788788120040427WTT0BZPW911222222207312100000000 -T12023011111178884422000411281120333120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111117888443219580911WT@WTW09T2222211222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001720 -T320230111111788844420220518WTTPBT09Z22222112108398109140000120150213WT@TT#@YT22222112209301100000000 -T12023011111178890720600402141120312110835300000000000004540040000000000000000000000000000000000222222000002002219072 -T2202301111117889071219890912WTTBWTB9@2122222222221012208110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000200 -T320230111111788907120120112WTTWPPYB922222112204303100000000120060112WTT0099WZ21222222204310100000000 -T12023011111178919024500405941120213110611300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111117891901219900118WTTPTWT#@2122222222221012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111789190120210909WT@9PZWT921222212204398100000000 -T12023011111178920124500405941120533110756300000000067805880280000000000000000000000000000000000222222000000662219022 -T2202301111117892012219850123WT@YYBT9P1222212222221012211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117892012219860402WT@YYBT9P1222221222221102210990006011079920000000000000000000000000000000000000000000000000000000000000120000000000000000000000 -T320230111111789201120100227WT@#Z0#BW12222112204306100000000 -T320230111111789201120160214WTT9BYZPW12222112204301100000000120140723WT@PP9YTW12222122204301100000000 -T12023011111178921023700414331120233120000300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111117892103219920711WT@9TY09#1222211222221012213110006013069900000000000000000000000000000000000000000000000000000000000000208700000000000000000000 -T320230111111789210120070218WTT9@ZWTB12222212207309100000000 -T12023011111178922320300408321120523111116300000000092808020040000000000000000000000000000000000222222000000862219012 -T2202301111117892231219900905WT@0PB9BT2222211222222011212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117892231219910313WTT9@#Y0Z2222212222221021212190055521011803000000000000000000000000000000000000000000000000000000000000017200000000000000000000 -T320230111111789223120140323WT@YZBWPT22222122204301100000000 -T320230111111789223120180201WT@9WB@BB22222122204398100000000120160901WT@0WT#Z922222122204398100000000 -T12023011111178923021000411361120413110942300000000000007710200000000000035007000000000000000000222222000000002229042 -T2202301111117892301219870713WT@#YZWBP1122222222221012208110600023011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111789230120060922WT@9Z@PPW11222212204309100000000 -T320230111111789230120160923WTTPW0BZ#11222222204398100000000120120512WT@PBBYBT11222222204302100000000 -T12023011111178926124200402982120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111117892611219840709WT@9TPY9W1222211222222011212290015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117892611219830727WT@9TPY9W2222212222222021212290015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111789261120150702WT@9TPY9W22222112204302200000000120080311WT@9TPY9W22222122204307200000000 -T12023011111178929320600408181120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117892931219880113WTTZW@P@T2222211222221012213110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111789293120220427WTTWZY@PY22222112204398100000000 -T12023011111178932522000413731120213110611300000000000005280370000000000000000000000000000000000222222000000002229012 -T2202301111117893251219970326WTTPTPBT#2221222222221012211110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111789325120180409WTTPPWT0T22212222204398100000000 -T12023011111178934622000402371120312110824112350000030006540110000000000000000000000000000000000222222000000002229012 -T2202301111117893461219980108WT@P#TWBP2221222222221012211110124823011800000000000000000000000000000000000000070001000000000000000000000000000000000000000000 -T320230111111789346120200207WTT90#Z9Y22212222204398100000000120180904WT@@ZT#Z922212222204398100000000 -T12023011111178949620600400871120213110598300000000000005280280000000000000000000000000000000000222222000000002229072 -T2202301111117894961219830707WT@@ZY@Y02222212222221012213111540023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111789496120070201WTT#TY@T#22222112204308100000000 -T12023011111178951424200414721120633110930300000000000008880590000000000000000000000000000000000222222000000002229022 -T2202301111117895142219890922WT@YYBT9P1222222222221012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111789514120050702WT@#Y@Z0W12222212204310100000000 -T320230111111789514120170722WTT#TY#ZY12222222204398100000000120070411WTTZ#Y#BB12222222204309100000000 -T320230111111789514120220927WTTBB99PT22222212204398100000000120190101WTTZY9PYP22222222204398100000000 -T12023011111178952824700405831120332110740300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111117895282219900127WT@#ZZBYB2222211122212012211190006013109900000000000000000000000000000000000000000000000000000000000000000000000146062200000000 -T2202301111117895282219960708WT@TPZ9W@2222212222212022211190006013089900000000000000000000000000000000000000000000000000000000000000000000000000062200000000 -T320230111111789528120170427WT@@W#99B22222122204398100000000 -T12023011111178961525200414061120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111117896151219990209WT@Z9PPYT2122222222221012212110194121011700200000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111789615120190323WT@#9PBW@21222222204398100000000 -T12023011111178972522000411551120233110516300000000010004170400000000000000000000000000000000000222222000000002229022 -T2202301111117897251219950123WTTB9WTTB2212222222221012212210411923099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111789725520180705WTTT@@@BW22122212104398109140000 -T12023011111179001424200403401120233120000107830000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111117900143219650922WT@9ZYWW#2222212122222012216110025811069925000000000000000000000000000000000000000000000000000000000000204200002193000000000000 -T320230111111790014120150718WT@WBZT0B12222112206398100000025 -T12023011111179014223500405271120233120000300000000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111117901423219720105WTTZW@9T#2222212122222012216110075313069900000000000000000000000000000000000000000000000000000000000000000000000568000000000000 -T320230111111790142120150121WT@Z#PB9@22222112206301100000000 -T12023011111179016222000405821120212110611300000000020005280280000000000000000000000000000000000222222000000002229012 -T2202301111117901621219720912WT@99BPZZ2221221222225012213110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111790162120180502WT@B0T#0922212212204398100000000 -T12023011111179022124200403941120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117902212219750327WT@9Y#PWT2221221222215012212110471313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111790221120040312WT@PY0BZ#22212222204312100000050 -T12023011111179023025900405251120233110247300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111117902302220020702WT@YYBT9P1222212222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111790230120220527WT@BYZ90Z12222122204398100000000 -T12023011111179031920800411931120233120000300000000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111117903195219760707WTT#@W@Y@2222212222222012216110194113069900000000000000000000000000000000000000000000000000000000000000323500000000000000000000 -T320230111111790319120130318WT@Y0P90Z22222112209302100000000 -T12023011111179034824700409322120323210766300000000000006540050000000000000000000000000000000000222222000000002229032 -T2202301111117903481219850914WTTY#00#Z2212221222222011214290065421011933000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117903481219840112WT@@@WZ#02222222222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111790348120200313WT@#ZWZPB22222212204312200000000 -T12023011111179040123500405981120333110740300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111117904012219820123WT@ZYPT@Z2222212222211012206110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111790401420090922WTTBYZP#922222112104306109140000120070721WTTWWW##Y22222112204308100000000 -T12023011111179040525900402831120212110601300000000149205280570000000000000000000000000000000000222222000000002229072 -T2202301111117904051219890222WTT0Z00T@1222222222223012211110610023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111790405120140118WTT00P@PP12212222204303100000002 -T12023011111179074220600404121120213110574300000000000804340060000000000000000000000000000000000222222000000942219012 -T2202301111117907421219850505WTTBY9ZZ@2221222222223012212110075321011807000000000000000000000000000000110000000000000000000000000000037200000000000000000000 -T320230111111790742120140402WTTT0@00@22212212204302100000000 -T12023011111179081824200403511120413110766300000000000007630130000000000000000000000000000000000222222000000002229012 -T2202301111117908181219990404WT@TB@9Z#2222212222221012212110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111790818120180323WTT#@WW9022212112204398100000000 -T320230111111790818120220727WTTBT#YT922212122204398100000000120200705WT@ZTYPWZ22212112204398100000000 -T12023011111179086622000403481120333110757300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111117908663219660101WT@9@BZP@2221212122223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001349000000000000 -T320230111111790866120060704WTT000##@22212222206309100000000120050712WTTPWW0B922212222206310100000000 -T12023011111179088524100402401120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111117908851219930904WT@0Y9P#02222212222221012212110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111790885120220327WTTW@WZ9W22222122204398100000000 -T12023011111179093324900404261120213110598300000000082805280040000000000000000000000000000000000222222000000002229012 -T2202301111117909331219740527WTT#BYYZY2122222222221012213110392121011900200000000000000000000000000000130001000000000000000000000000135300000000000000000000 -T320230111111790933120090223WT@BB9BYZ22122222204307100000000 -T12023011111179095225200414061120233110493300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111117909522219800724WTT@@@WBP2222212222215012212110670011089934000000000000000000000000000000000000000000000000000000000000243600000000000700000000 -T320230111111790952120110404WTTT@@@#W22222112204304100000000 -T12023011111179103022000407412120313210796300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111117910301219830112WTT@BTB#P2222122222221012212910114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791030120100104WT@9TWZ#P22221212204305900000000120070426WT@W0TT@Z22221212204308900000000 -T12023011111179105223700414331120633111211300000000000007710260000000000000000000000000000000000222222000000002229022 -T2202301111117910522219870122WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791052120040123WT@W9W#TY12222112204311100000000 -T320230111111791052120130702WT@WZW#@T12222122204301100000000420120107WTT0P@W0B12222122104302106090000 -T320230111111791052120220218WT@YZ@YW022222222204398100000000120160713WT@##PBB@12222122204398100000000 -T12023011111179115124700405901120313110493300000000000003920130000000000000000000000000000000261122222000000012219012 -T2202301111117911511219840126WT@YZB@PB2222212222225012213110144623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791151120120318WTTWB@PPT22222112204304100000000120080927WTTZYZT9W22222112204308100000000 -T12023011111179117722000406211120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117911771219990101WT@9TW00Y1221222222221012212120035723010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111791177120220914WTTW9W#0W22212222204398100000000 -T12023011111179139920800411931120313110761300000000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111117913991219900912WT@ZTZ0T92221222222221012212110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791399120130327WT@@T#09@22212222204302100000000120110409WTTTP@T9@22212122204305100000000 -T12023011111179148823700414331120513111116300000000000005270030000000000000000000000000000000000222222000000002229012 -T2202301111117914881219980912WT@PPZ#0#1222212222221012213120164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791488120180421WTTZ@TPZY12222112204398100000000120080311WT@YW9Z#Z12222222207305100000012 -T320230111111791488120200326WTT@Z@#0912222112204398100000000120190427WT@P0909B12222112204398100000000 -T12023011111179152824700413761120233110376300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111117915282219820914WT@YYBT9P1222221222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791528120090204WT@P#T@PP12222222204305100000000 -T12023011111179171024700408092120423210939300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111117917101219830701WTTB9ZTYT2221221222222011215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117917101219920704WT@@T0Z#T2221222222222021215290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791710120200504WTT@WPBPW22212212204398200000000120170318WTTT9@P@T22212222204398200000000 -T12023011111179198525100407672120713210835300000000000006540020000000000000000000000000000000000222222000000002229032 -T2202301111117919851219840724WT@W0P@ZB1222211222222012203290035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117919852219850901WT@YYBT9P1222222222222022298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791985420050907WT@YYBT9P12222112204311900000000 -T320230111111791985120110404WTT#B9T#T12222222204306200000000120060904WT@9TPY9W12222212204312200000000 -T320230111111791985420160121WT@YYBT9P12222122204398900000000420130305WT@YYBT9P12222112204304900000000 -T12023011111179199822900405641120433110611300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111117919982219850918WT@YYBT9P1222222222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117919982219810724WT@YYBT9P1222221222222022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111791998120150922WT@9WT#@Y12222212204398100000000120080224WT@Z#PB0012222222204307100000000 -T12023011111179216620600401981120313110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111117921661219840922WTTTYPW0#2222212222221012211210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111792166120080523WTTZB99@022222122204307200000000120040712WTTPT#0#B22222112204311200000000 -T12023011111179222624200402981120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111117922261219930704WT@TZWY#02222212222221012210110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111792226120210126WTTBBB@P@22222122204398100000000 -T12023011111179233920800411991120623120000300000000000010090060000000000000000000000000000000000222222000000002229012 -T2202301111117923391219840513WTTTBWZW92222122222222011211190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117923391219820914WT@999ZYB2222121222222021212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111792339120060905WT@9B###B12221222204310100000000120040201WT@PBB90022221222204311100000000 -T320230111111792339120090124WT@9YY9#B22221212204306100000000120070323WTTZ#9BTT22221212204308100000000 -T12023011111179237124700406701120313110835300000000001405280050000000000000000000000000000000000222222000000002229012 -T2202301111117923711219910423WTTBTY#TZ1222211222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111792371420150511WTT#YB@ZZ12222212104301106090000120120718WTTZZY9W012222222204303100000000 -T12023011111179242222000412691120313110766300000000100006540040000000000000000000000000000000000222222000000002229012 -T2202301111117924221219820323WTT9#P@YZ2222212222223012215210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111792422120170105WT@9TPY9W22222122204398200000000120060404WT@9TPY9W22222122204310200000000 -T12023011111179242822700403021120433110611300000000152205280110000000000000000000000000000000000222222000000002229022 -T2202301111117924282219850107WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117924282219860118WT@YYBT9P1222211222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111792428120160427WTTYB9@YY12222212204398100000000120100907WT@Y#YYY#12222212204306100000000 -T12023011111179243120600402131120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111117924311219900409WT@B0YYBT2222212222222011212290015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117924311219880901WTT@ZZZ#B2222211222222021212290015921011940000000000000000000000000000000130002000000000000000000020000000000000000000000000000 -T320230111111792431120210726WT@9TPY9W22222112204398200000000120120426WT@9TPY9W22222112204302200000000 -T12023011111179247620800404431120233110493111990000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111117924763219940701WTTYBTWPB2222212222221012212110035711069919000000000000000000000000000000000000000000000000000000000000133100000000000000000000 -T320230111111792476120200118WT@P0#B##22222112209398100000000 -T12023011111179256223700414331120313110835300000000000006540570000000000000000000000000000000000222222000000002229012 -T2202301111117925621219920927WTTBBPB991222212222221012213110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111792562120210722WT@BTYZTB12222112204398100000000120200704WTT#9@@#912222112204398100000000 -T12023011111179263124200411401120213110376300000000000002300130000000000000000000000000000000153122222000001452219012 -T2202301111117926311219870423WT@B0W0P@2222212222221012216110441623011200000000000000000000000000000000000000000000000000000000000000028600000000000000000000 -T320230111111792631120150704WTT@#PZW@22222122204398100000000 -T12023011111179270122000414461120233110516300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111117927013219580112WTTWPZTTB2221222222225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002400 -T320230111111792701120150112WT@@@TYPT22212212206398100000000 -T12023011111179288024700409321120333110740300000000000005280950000000000000000000000000000000000222222000000002229022 -T2202301111117928802219730409WTT#PYZ9W2221222222211012212110382213089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111792880120160423WT@@#ZZ@T22212212204301100000000120060227WTT9P9@B#22212222204311100000000 -T12023011111179292522000405321120233110516300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111117929253219650901WT@TZ@#PY2122212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001135000000000000 -T320230111111792925120140214WTTW0@T0@22222122206303100000000 -T12023011111179292620800414151120213120000300000000000004170520000000000000000000000000000000000222222000000002229012 -T2202301111117929262219690124WT@Y@T#W@2222212222225012213110006011051937000000000000000000000000000000000000000000000000000000000000207000000000000017240000 -T320230111111792926120130902WT@WPBW@W22122212205301100000000 -T12023011111179292824700401281120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111117929281219830707WTT@ZP@ZW2222212222225013211190263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111179292923500408281120532111492300000000000010390450000000000000000000000000000000000222222000000002229022 -T2202301111117929292219850905WT@Y#@W9W2221222222211012211111160013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111792929120050912WTT9YBT9P22212222204312100000000120040923WTTP@@#W#22212222204312100000000 -T320230111111792929120160123WTT9Z#B@Y22212212204398100000000420140718WT@Y#90@922212212104301109140000 -T12023011111179297724200403941120233110518300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111117929772219660905WTTBB9@PZ2221221222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111792977120090522WTTB0Z9P922212212204307100000000 -T12023011111179300121000411361120213110516300000000001202530020000000000000000000000000000000000222222000002752219012 -T2202301111117930011219880724WTT90@P0@2222212222225012214110035723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793001120140722WT@PB9BTZ22222112204301100000275 -T12023011111179301724200404701120313110835300000000080006540150000000000000000000000000000000000222222000000002229012 -T2202301111117930171219780726WTT0@###Z2222212222221012213110510923011900000000000000000000000000400000000000000000000000000000000000000000000000000000002227 -T320230111111793017120150407WT@WZPZWP22222122204301100000000120090323WT@#@PW0B22222112204306100000000 -T12023011111179312120600402131120213110611300000000000005090100000000000000000000000000000000000222222000000002229012 -T2202301111117931211219990314WT@YT0#PZ2222212222221012212110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793121120220709WTTP0#P#022222122204398100000000 -T12023011111179314624200403511120233110480300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111117931463219930505WT@BTB#ZT2222212222225012212110006011069940000000000000000000000000000000000000000000000000000000000000346600000000000000000000 -T320230111111793146120100312WT@B9@PBB22222122207305100000000 -T12023011111179317324200414721120612111339300000000000010090680000000000000000000000000000000000222222000000002229072 -T2202301111117931731219880127WTTPW#0ZP2221222222221012212111290023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111793173120100527WT@@YWBTW22212222204307100000020 -T320230111111793173120140909WT@0TB9#P22212212204302100000020120120118WTTY9P9W022212222204304100000020 -T320230111111793173120170305WT@PBY@B922212212204398100000020120160927WTT0WZYPW22212222204398100000020 -T12023011111179321024700406631120232110516300000000050004170330000000000000000000000000000000000222222000000002229022 -T2202301111117932101219640524WT@@@TTT#2222212222225012205210342623099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793210520050222WT@W9Z9PB22222122104311206120482 -T12023011111179335023500407161120213110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111117933501219970123WT@WYWT9B2222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793350120200707WTT0#WPY@22222112204398100000000 -T12023011111179350420600402131120233110493300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111117935043219580707WTT9ZBY0Z2222212122222012212110134713069900000000000000000000000000000000000000000000000000000000000000000000001446000000000000 -T320230111111793504120070326WT@ZT@T0022222122206309100000000 -T12023011111179351822000408891120323110766300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111117935181219870409WT@@WP#P@2221222222221011209290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117935181219840327WT@9TPY9W2221221222221011204290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793518120140302WT@9TPY9W22212222204302200000000 -T12023011111179357625100407671120433110893300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117935762219670102WT@PZYW0T2222211222212012212110045613089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111117935762219680127WT@#@PW#B2222212222212102210190114913089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111793576120200127WT@@W0YP@22222122206398100000000120070721WT@PY@B#022222112204309100000000 -T12023011111179358020800411931120333110740300000000025005280770000000000000000000000000000000000222222000000002229022 -T2202301111117935801219760426WTT#TZ9P@2222212222225012212111090023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793580120120221WTT@TY0WB22222122204305100000000420090221WT@9T9@9@22222112104304109140000 -T12023011111179367123500410681120232120000300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111117936713219770923WT@WW@TWW2222212222222012211110550513069900000000000000000000000000000000000000000000000000000000000000328400000000000000000050 -T320230111111793671120220111WT@ZTP#PY22222112207398100000000 -T12023011111179368824700402991120312110740112100000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111117936881219890726WT@9@9#9P2221222222221012212110213921011726000000000000000000000000000000000000000000000000000000000000213900000000000000000000 -T320230111111793688120210324WTTT9BWZW22212212204398100000000120100523WT@T0@BTT22212222204306100000000 -T12023011111179372725000414192120623211395300000000000010090060000000000000000000000000000000000222222000000002229032 -T2202301111117937271219850218WT@9TPY9W1222221222221011209290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117937271219850721WT@9TPY9W1222222222221011209290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793727120060323WT@9TPY9W12222222204309200000000120050126WT@9TPY9W12222212204310200000000 -T320230111111793727120090527WT@9TPY9W12222212204307200000000120080426WT@9TPY9W12222212204308200000000 -T12023011111179382820200403961120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111117938281219940301WTTBZ#BBY1222212222223012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793828120180304WTTWTW9PB12222122204398100000000 -T12023011111179385420600414771120312110793300000000009006540180000000000000000000000000000000000222222000000002229012 -T2202301111117938541219900701WTT9WTY0@2222212222221012213110194123011900000000000000000000000000450000000000000000000000000000000000000000000000000000000000 -T320230111111793854120150124WT@9Z#WYY22222112204301100000000120150124WT@WPP#0@22222112204398100000000 -T12023011111179387824700401011120213110611300000000000003160110000000000000000000000000000000211122222000000012219012 -T2202301111117938781219940923WT@PW@YZZ2221222222221012212110263423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111793878120220524WTT@W0P#Y22212222204398100000000 -T12023011111179403622000402892120313210766300000000000006540120000000000000000000000000000000000222222000000002229032 -T2202301111117940361219830123WTT0BY@P91222222222221012213210134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111794036120180324WT@9TPY9W22222222204398200000000120160327WT@9TPY9W22222222204398200000000 -T12023011111179405222000410051120212110611300000000000001370360000000000000000000000000000000111122222000002802219012 -T2202301111117940521219890123WTT@0ZBB@2222212222225012212110431723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000042 -T320230111111794052120130312WTTB0PWWP22222122204302100000280 -T12023011111179406124700409321120413111034191460000000007710450000000000000000000000000000000000222222000000002229012 -T2202301111117940611219910921WT@W9@TTP2221212222223012216110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111794061120190207WT@W@999B22212222204398100000000 -T320230111111794061120220502WT@@T9##922212112204398100000000120210111WTTP#WBBP22212122204398100000000 -T12023011111179412521700406141120213110580300000000000005010260000000000000000000000000000000000222222002600012219072 -T2202301111117941251219890527WT@@B9YZZ2222212222223012212110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111794125120130721WTTPWWPZT22222122204303100000000 -T12023011111179426425100411861120233110516300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111117942642219800707WT@YYPTTP2222212122211012216110006013109900000000000000000000000000000000000000000000000000000000000000000000000427050700000000 -T320230111111794264120040912WTT#ZZ0YW12222112204310100000000 -T12023011111179427322500405581120213110611300000000211605280040000000000000000000000000000000000222222000000002229012 -T2202301111117942731219990427WT@@PZZWT2222212222221012212110055521010101000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111794273120220713WT@Z@0P9T22222112204398100000000 -T12023011111179427724200404891120233110493300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111117942773219700905WTTW9Y@ZB2222222222215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111794277120050418WT@WYBT0Z22222212206311100000000 -T12023011111179428720800411601120233120000300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111117942873219810104WT@TTBB0#2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000358600000000000000000000 -T320230111111794287120060901WT@0TZW@P22222112207310100000000 -T12023011111179445624700408301120213110516300000000020004170830000000000000000000000000000000000222222000000002229072 -T2202301111117944561219800507WT@9T0@0B1222222222221012214110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111794456520140202WT@#Y#9#T12222212104301109140000 -T12023011111179451924700406701120412111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111117945191219790904WT@##TPB@1222222222225012216110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111794519120070726WT@P@PYPW12222122204309100000000 -T320230111111794519120180724WT@TWY#ZZ12222122204398100000000120100323WT@B9YP9B12222122204306100000000 -T12023011111179455122100401951120233110563300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111117945512219840507WT@PY@Y@02222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111794551120070302WT@WTYB#P12222122204309100000000 -T12023011111179458723900403801120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111117945873219690713WTT0PBBPZ2222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000128700000000000000000000 -T320230111111794587120190318WTT9PPZWZ21222212206398100000000 -T12023011111179462525900406081120233120000300000000000001660480000000000000000000000000000000000222222000002512219022 -T2202301111117946253219390907WTTT9@W#W2222212122224012209110006013069900000000000000000000000000000000000000000000000000000000000000000000001620000000000000 -T320230111111794625120070727WT@YB0WBT21222212209309100000269 -T12023011111179467724700401011120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117946772219600307WT@0#TTYB2222221222215012213111050013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111794677120060726WTT@T00@W22222222204309100000050 -T12023011111179468221000403201110512111034300000000000005720430000000000000000000000000000000000222222000001992219012 -T2202301111117946821219940904WT@ZP@YWB2122222222221012216120441623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111794682120160704WTTY9@YB922222112204398100000000120140905WT@P@@Z@T22222112204302100000000 -T320230111111794682120220718WT@ZTWB@@21222212204398100000000120170321WTT0B@B9#22222112204398100000000 -T12023011111179488724200414721120313110781300000000000006210400000000000000000000000000000000000222222003200012219072 -T2202301111117948871219840304WTTPTYY@@2221222222221012211111110021011811000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111794887120200723WTTW#ZY#T22212212204398100000000120150712WTT09@TZ#22212212204398100000000 -T12023011111179498224700409321110333120000300000000000004590070000000000000000000000000000000000222222000000692219021 -T2202301111117949823219780518WT@YTTY9B2222212222222012212110213913069900000000000000000000000000000000000000000000000000000000000000281700000000000000000000 -T320230111111794982120210312WT@TP@TZT21222122206398100000000120200223WT@TBWT0#21222122206398100000000 -T12023011111179504522700407491120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117950452219720913WTTBPT0B@2221222222215012212110880013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111795045120100723WT@TYY#0Y12212222204306100000000120050323WTT@Y@BBW12212212204310100000000 -T12023011111179511124200413331120233120000100410000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117951113219740321WT@B#BYTB2222212222225012212110332713069900000000000000000000000000000000000000000000000000000000000000300000000000000000000000 -T320230111111795111120120713WT@W@W0TW22222112206301100000000 -T12023011111179533323100408861120333110740300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111117953333219630104WTT09TYZ02222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000865 -T320230111111795333120150518WTT@Z9#TY22222112206301100000000120120727WTTB0WYTT22222112206304100000000 -T12023011111179536721700406141120233120000105420000000004170700000000000000000000000000000000000222222000000002229022 -T2202301111117953673219520726WT@TYZ#YT2222212122224012214110006013069900000000000000000000000000000000000000000000000000000000000000370900000978000000000000 -T320230111111795367120160912WT@99W#T022222122206398100000000 -T12023011111179544025600411521120333120000110150000000005280310000000000000000000000000000000000222222000000002229022 -T2202301111117954403219710218WT@WZ#YWT2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111795440120160101WT@WT9W#922222122206398100000000120140502WTTTTWWTY22222122207302100000000 -T12023011111179547422700408491120213110598300000000000005280060000000000070002000000000000000000222222000000002229012 -T2202301111117954741219850427WT@WP9@@#2222212222224012212210075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111795474120050118WTT#YTBWT22222122204311200000000 -T12023011111179549320600402141120233110516300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111117954932219890101WT@PY0Y002222212222211012213110223813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111795493120160726WT@Z#PYTB22222122204398100000000 -T12023011111179557925900402721120212110611300000000000003160200000000000000000000000000000000211122222000000012219012 -T2202301111117955791219930918WT@Y900Z91222222222221012212110213923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111795579120190321WT@@TT00P12222222204398100000000 -T12023011111179558124200414021110113110376300000000000004170320000000000000000000000000000000000222222000000002229012 -T2202301111117955811219820127WT@ZYW@ZT2222212222221013212110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111179571322000408561120332110740300000000000005280720000000000000000000000000000000000222222000000002229022 -T2202301111117957132219860302WT@YTBTY92222222222211012208110780013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111795713120130418WT@Y0PZ@@22222222204304100000000120090107WTTZ9PZY022222222204306100000000 -T12023011111179573320600414771120213110550300000000000004310120000000000000000000000000000000000222222000000972219012 -T2202301111117957331219840526WTTZWBYYT2222222222221012212110590121011807000000000000000000000000000000000000000000000000000000000000038400000000000000000000 -T320230111111795733120110227WT@P9Y9Y#22222222204306100000050 -T12023011111179579521100402261120232110516300000000000002910990000000000000000000000000000000000222222000001262219022 -T2202301111117957952219820724WTTZ#P9@92222212222213012208110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111795795120090914WT@#0WY#@22212122204306100000126 -T12023011111179579724700408091120213110599300000000090005280070000000000000000000000000000000000222222000000002229012 -T2202301111117957971219760112WT@W0T0#T2222212222225012213110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111795797120070313WTT0PB0#W22122112204307100000328 -T12023011111179582424700409321120413110939300000000000007710170000000000000000000000000000000000222222000000002229012 -T2202301111117958241219970727WT@PP0TTW1222222222221012210110184223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111795824120200727WTTZ0YWTW12222122204398100000000 -T320230111111795824120220723WT@PP@ZB@12212212204398100000000120220723WTTZ0Y#P#12212222204398100000000 -T12023011111179589922000406191110413120000300000000000003230290000000000000000000000000000000227222221000000192219012 -T2202301111117958991219910709WT@@WZZ002222212222221012212210293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111795899120140118WT@W0@@@Z22222112204303100000000 -T320230111111795899120210426WT@9TPY9W22222112204398200000000120150907WT@B@09@T22222112204302100000000 -T12023011111179594123700414331120233110235300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111117959413219800705WT@YYBT9P1222212222223012201910006011079940000000000000000000000000000000000000000000000000000000000000290200000000000000000000 -T320230111111795941120130113WTTWWPZZ912222222207303100000000 -T12023011111179595325600414421120213110611300000000000005280160000000000000000000000000000000000222222000000002229042 -T2202301111117959531219960104WTT9ZZ##Y1222212222221012214120006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111795953120200301WT@WZW@B022222122204398100000000 -T12023011111179601422900409631120313110835300000000015006540020000000000000000000000000000000000222222000000002229012 -T2202301111117960141219890726WTTZ#ZZ#P1222222222223012212120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111796014120180702WT@@YBB0912222122204398100000000120130304WT@BTW9BW12222112204303100000000 -T12023011111179617021700406141120312110740118240000025506540670000000000000000000000000000000000222222000000002229072 -T2202301111117961701219850401WT@Y0#B0P2222222222225012216121550021011800110000000000000000000000000000000000000000000000000000090000064500000000000000000000 -T320230111111796170120190121WTTT0#ZP912222122204398100000000120160312WTT9TPPBZ22222112204398100000000 -T12023011111179639125600412851120233120000300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111117963913219810304WTTZ@9#W@2222122222221012212110006011069932000000000000000000000000000000000000000000000000000000000000298500000000000000000000 -T320230111111796391120050302WTT#P9YW@12221222207310100000000 -T12023011111179648024200404891120213110548300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111117964801219780327WT@W@Z@002221222222221012216111530023129900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111796480120070104WTT99WYBZ22212222204309100000000 -T12023011111179653520600406751120613111348300000000000109080080000000000000000000000000000000554222122000000002229012 -T2202301111117965351219820212WTTWZPZPW2222212222223012216120342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111796535120050124WTT@W#T@@22222122204310100000007 -T320230111111796535120080207WT@9WZT#Z22222112204307100000007120070404WTTW9W0TT22222112204310100000000 -T320230111111796535120120927WT@TZ0TZB22222112204303100000007120100911WTTT0ZWBT22222112204305100000007 -T12023011111179657525900403711120433110724300000000000006540360000000000000000000000000000000000222222000000002229022 -T2202301111117965752219760921WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111796575120060714WTT@#99ZZ12222222204309100000000 -T320230111111796575120120226WT@P0#P#B12222222204303100000000120090109WT@0B0YW#12222212204306100000000 -T12023011111179659823500404532120423211034300000000350007710130000000000000000000000000000000000222222000000002229032 -T2202301111117965981219810918WT@9PYZY02222212222222011214290164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117965981219870407WTTZPYP@@2222212222222021214290164421011823000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111796598120140323WT@9T@ZZY22222122204302200000000120110913WTTTBTY@922222122204305200000000 -T12023011111179666222000407411120423110939300000000201201460040000000000000000000000000000000000222222000006252219012 -T2202301111117966621219910126WT@9TPY9W1222222222221011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117966621219810427WT@PWP0ZT1222221222222011210290055521011940000000000000000000000000000000000000000000000000000000000000250000000000000000000000 -T320230111111796662120160705WT@9TPY9W12222222204398200000000120120401WT@9TPY9W12222222204304200000000 -T12023011111179668724200400491120312110835300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111117966871219890327WT@00B0Z92222212222225012213110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111796687120220207WTT0#99P022222122204398100000000120170723WTTZPB@#T22222122204398100000000 -T12023011111179671725600413441120232110470300000000000004170930000000000000000000000000000000000222222000000002229022 -T2202301111117967172219800726WTT#BTBZW1222212122211012211120382213109900000000000000000000000000000000000000000000000000000000000000000000000734020000000000 -T320230111111796717120140223WTT#B@W9@11212122204302100000000 -T12023011111179673520800411931120233120000300000000020004170700000000000000000000000000000000000222222000000002229022 -T2202301111117967353219510221WT@PWWWWZ2222212122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001227000000000000 -T320230111111796735120060114WT@PZZPYP22222122206308100000000 -T12023011111179681420600400871120532111116300000000004007710990000000000000000000000000000000000222222000000002229022 -T2202301111117968143219640412WTT0Z9#WY2221222122211012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000762017200000000 -T320230111111796814120070426WT@WB@Z##22212212207309100000000120050112WTTPYZTB022212222207311100000000 -T320230111111796814120090401WTT#P90P@22212212207307100000050120090401WT@#BBTZ@22212212207307100000050 -T12023011111179689525900402631120313110835300000000000005690560000000000000000000000000000000000222222000000852219072 -T2202301111117968951219820504WT@@YP9Z01222222222223012208110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111796895120100301WTT0@PTWT22222212204305100000078120070412WTTPYBWT022222222204309100000000 -T12023011111179704521000404881110313110761300000000005101110070000000000000000000000000000000000222222000000002229012 -T2202301111117970451219800912WTTZW0PWW1222221222221012211110114921011905000000000000250000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797045120120704WT@P9YBP@12222122204398100000097120100113WTTY0@T@W12222122204301100000097 -T12023011111179714422100410901120233120000300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111117971443219510924WTTZZW@#W2222212122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000968000000000102 -T320230111111797144120050223WT@BYBZWT22222112206311100000000 -T12023011111179715920600402141120213110611300000000000003090020000000000000000000000000000000000222222000002192219012 -T2202301111117971591219910504WTT900#BZ2222212222221012210110411921011825000000000000000000000000000000000000000000000000000000000000043600000000000000000000 -T320230111111797159120090423WTTZTZT9T22222122204308100000000 -T12023011111179716721700410451120313110766300000000000006540050000000000000000000000000000000261222221000000002229072 -T2202301111117971671219820902WT@#TZ0BY2222212222221012210110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797167120150401WT@0Z#9WB22222112204301100000000120130702WTT0Y0##@22222122204302100000000 -T12023011111179723524200414021120213110598300000000000005280450000000000000000000000000000000000222222000000002229012 -T2202301111117972351219750726WTTZWTTZB2212222222223012213120461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797235120060307WT@9#9#B922122212204308100000000 -T12023011111179732425900414481120233120000300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111117973243219790711WTTPYBPT92222211222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797324120160923WTT90WT9Y12222222207398100000000 -T12023011111179736025600406521110213110516300000000000002210010000000000000000000000000000000000222222000000002229012 -T2202301111117973601219920312WTTT9YTY92222211222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797360120100707WT@WB#YB@22222112204306100000000 -T12023011111179737820600414161120233110470300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111117973783220030207WTT0B9ZWZ2222212222221012212110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797378120220123WT@9TPY9W22222122207398100000000 -T12023011111179742824700406741120512111143300000000000008430280000000000000000000000000000000000222222004400012219072 -T2202301111117974281219920223WTTBB0T9#2222212222221012216110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000015 -T320230111111797428120140327WTTB@#TWY22222122204398100000100120110214WT@#9ZYYP22222112204304100000000 -T320230111111797428120220421WT@Z00ZP922212112204398100000000120170423WTTWT##Z#22222112204398100000000 -T12023011111179745025900402631110433110376300000000000002690010000000000000000000000000000000000222222000000002229021 -T2202301111117974502219980211WT@YYBT9P1222222222221012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117974502219970223WT@YYBT9P1222221222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797450120220102WTT#B#0@P12222122204398100000000420140904WT@YYBT9P12222212204303900000000 -T12023011111179756920600402141120212110554104060000000000010040000000000000000000000000000000000222222000000002229012 -T2202301111117975691219910727WT@##TZTW1222222222223012212110045611011800210000000000000000000000000000000000000000000000000000060000125600000000000000000000 -T320230111111797569120160111WTT@Z0PPW12222112204312100000000 -T12023011111179757320800411931120312110778300000000000006540270000000000000000000000000000000000222222000000002229072 -T2202301111117975731219840324WT@@#9#W#2222212222225012213110980023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797573120100722WT@T#ZW0T22222112204305100000000120080711WT@@YPBW022222122204307100000000 -T12023011111179759822000408891120423111034300000000000004620180000000000000000000000000000000308122222000000012219012 -T2202301111117975981219720902WTTT9TP@B2222211222222011216190184223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117975981219830124WT@P@ZZPB2222212222222021214190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797598120190424WT@P0B#0P22222112204398100000000120160402WT@PYT#9P22222122204398100000000 -T12023011111179768824200410211120312110740300000000002604170580000000000000000000000000000000000222222000000002229072 -T2202301111117976881219760518WT@B0@#0T2222212222225012213121290023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111797688520150226WTT0BB9T@22222122104301108610000520150226WTT0TTZZ#22222112104301108350000 -T12023011111179774324200414851120812111691300000000000012890210000000000000000000000000000000000222222000000002229042 -T2202301111117977431219890414WTTP909WY2222122222225012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797743120070712WTT@9#TP@22221212204310100000000 -T320230111111797743120110709WTTZ@ZWZ022221222204304100000000120090205WTTBZWW0W22221212204308100000000 -T320230111111797743120130302WTTYWBZBZ22221222204303100000000120130302WTTY9YZZ022221222204303100000000 -T320230111111797743120160114WTT9W9WTB22221212204398100000000120150123WTTP##W0P22221212204303100000000 -T12023011111179785025900402831120213110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111117978501219880102WT@PPT0WY1222212222221012213110184223010100000000000000000000000000000000000000000000000000000000410000000000000000000000000000 -T320230111111797850120220327WT@YY0@9@22222212204398100000000 -T12023011111179792724700400741120213110560300000000000005280790000000000000000000000000000000000222222000000002229012 -T2202301111117979271219650122WT@#Y0YP02222212222223012212110045621011935000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797927120060327WTTP0BY#B22222122206309100000000 -T12023011111179795320600402141120213110611111470000000005280320000000000035001000000000000000000222222000000002229012 -T2202301111117979531219960514WT@T@PPZY2222212222221012211110332721011717000000000000030000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111797953120180227WT@0W#ZZW22222112204398100000000 -T12023011111179803825900402631120533111136300000000000508880480000000000000000000000000000000000222222000000002229022 -T2202301111117980381219880913WTTZ@#9T02222222222221012210110491123099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798038120160111WT@WW9ZP#12222122204301100000000120120721WT@Z00TZY22222112204303100000050 -T320230111111798038120200104WTTB@P99Z12222112204398100000000120180209WTTW##TYB12222112204398100000000 -T12023011111179811122000413691120212110611300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111117981111219880423WTTPBY9PY2221222222225012298210471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798111120160112WTTZ#Z0PW22212212204398100000050 -T12023011111179814920600414771120323110776300000000000006540070000000000000000000000000000000000222222000000002229072 -T2202301111117981491219820121WT@@ZWBYB2222212222222011216190630023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117981491219810305WT@BWY0#W2222211222222011213110640023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798149120060412WTTYTPT0Z22222122204310100000000 -T12023011111179834020800410781110313110835300000000000004390250000000000000000000000000000000000222222000002152219012 -T2202301111117983401219820901WTTY90B0Z2212222222221012209110263423010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798340120110727WT@0WPBPW22122212204304100000000120090922WT@Y90TYB22222112204306100000005 -T12023011111179836324200403941120113110376300000000000004170110000000000000000000000000000000000222222000000002229012 -T2202301111117983631219850723WT@@B@T@#1222222222223013213110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111179851322000402891120433110818300000000000006540790000000000000000000000000000000000222222000000002229022 -T2202301111117985132219850312WT@ZZW#W92222212222211012212110640013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111798513120060923WTT##0WTP12222122204310100000000 -T320230111111798513120120501WTTP#@00#12222122204304100000000120070318WT@ZY09PZ12222112204308100000000 -T12023011111179856824700405901120512111116300000000151008880370000000000000000000000000000000000222222000000002229012 -T2202301111117985681219790405WTTYTT@WZ2222212222223012216110382223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111798568120060311WTTTZ0WTY22222112204308100000000120040422WT@B0Y@0P22222112204311100000000 -T320230111111798568120160313WT@PT@ZPY21222212204398100000000120100124WT@T0@09W22222122204305100000000 -T12023011111179857125200410591120213110524115360000010002490050000000000000000000000000000000000222222000002792219012 -T2202301111117985711219900722WTTPP@0TY2222212222225012216110273321011721000000000000000000000000000000000000000000000000000000000000055700000000000000000000 -T320230111111798571120190412WTTYYZY0@22222112204398100000000 -T12023011111179857823500402711110523111116300000000000004290010000000000000000000000000000000000222222000000002229012 -T2202301111117985781219920123WT@9TPY9W2222221222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117985781219900126WT@9TPY9W2222212222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798578120150724WT@9TPY9W22222112204398200000000 -T320230111111798578120210327WT@9TPY9W22222112204398200000000120180112WT@9TPY9W22222112204398200000000 -T12023011111179858222000407411120312110809300000000000006540610000000000000000000000000000000000222222000000002229072 -T2202301111117985821219940104WTTTYWPTY2221222222221012211110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798582120220312WTTYZY99922222122204398100000000120200727WT@WW#W@T22212222204398100000000 -T12023011111179859322000406191120523111116300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111117985931219870412WTTZZ#@##2222211222222011216290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117985931219850723WT@0#9PBB2222212222222021216290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798593120120912WT@TPTP0T22222122204303200000000 -T320230111111798593120160713WT@@@#@0#22222122204398200000000120150127WT@Y@P90Y22222112204398200000000 -T12023011111179868122000408341120412110962300000000006007710470000000000000000000000000000000000222222000000002229072 -T2202301111117986811219770413WTTZPT0992221222222221012213111500023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798681120050311WT@#PW#BP22212222204311100000000 -T320230111111798681120110927WTTTW90Z#22212212204306100000000120090407WT@Z9Y@0W22212212204308100000000 -T12023011111179868622000405181120632111339300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111117986862219790707WT@9T9@#@2222221222212012212190194113089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111117986862219810724WTTYB9Y@T2222222222212022214190600013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111798686120070409WTTBYW@##22222212204311200000000120050121WT@YZWZB022222212204311200000000 -T320230111111798686120160704WT@B9@T0922222222204398100000000120090914WTTP90PY022222212204307200000000 -T12023011111179873020600404351120213110611300000000003105280040000000000000000000000000000000000222222000000002229012 -T2202301111117987301219900326WT@#0PT001222222222225012213110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111798730120090112WT@P@P9#012222212204307100000000 -T12023011111179878420600414831120212110595300000000020005280260000000000000000000000000000000000222222000000002229072 -T2202301111117987841219780304WT@B#Z9P92222212222225012213121290023010900000000000000000001000000000000000000000000000000000000020000000000000000000000000000 -T320230111111798784120080302WTTY@@PT#22222112204307100000008 -T12023011111179895522000408891120233120000300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111117989553219690418WT@9@BZB#1222222222221012209910006013079900000000000000000000000000000000000000000000000000000000000000119300000000000000000000 -T320230111111798955120200427WT@BYY0@#12222122206398100000000 -T12023011111179900220600404121120313110835300000000000006540310000000000000000000000000000000000222222000000002229072 -T2202301111117990021219800318WT@PT#0W92122212222223012209120980023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799002120080709WTT9YZ#W#22222112204308100000000120070914WTTBT0BT022222122204309100000000 -T12023011111179900624200404891120212110611300000000000505280510000000000000000000000000000000000222222000000002229012 -T2202301111117990061219850409WTTB@BW9#2122222222221012213110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799006120220427WTTYP#@P@11222212204398100000000 -T12023011111179908420900411721120212110611300000000000705280080000000000000000000000000000000000222222000000002229012 -T2202301111117990841220010704WT@T@Z9WP2222212222221012211110095123010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799084120210911WTT@B9WY022212122204398100000000 -T12023011111179915124700405901120313110835109400000020006540060000000000035001000000000000000000222222000000002229012 -T2202301111117991511220000512WTT9PT99B1222222222221012216110075323010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111799151120220924WT@ZWTZTB22222212204398100000000120210514WTT9@WWY#12222212204398100000000 -T12023011111179916123700414331120233120000300000000000004170860000000000000000000000000000000000222222000000002229022 -T2202301111117991613219680727WTTYBYYP92222212222223012212110382211069932000000000000000000000000000000000000000000000000000000000000299500000000000000000513 -T320230111111799161120090904WTT#YY9ZP22122222206307100000050 -T12023011111179916522000411551120233110611300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111117991653219620108WT@T0BB#02122212122225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000932000000000900 -T320230111111799165120210426WTTWWTBBB12222112206398100000000 -T12023011111179924423500410671120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117992443219680918WT@@0W0BY2222212222225012212110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799244120110112WT@Y0B90922222112206304100000050 -T12023011111179928623700414331120233120000300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111117992863219710123WT@0Y0#ZP1222222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799286120190112WT@9#9P@T22222212207398100000000 -T12023011111179932022000400461120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111117993203219810223WTTB0T0001222222222222012213120006013069900000000000000000000000000000000000000000000000000000000000000378400000000000000000000 -T320230111111799320120090104WT@WPZPB@22222212209306100000000120050112WTT@WZWYW22222222209310100000000 -T12023011111179932125100407671120232110376300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111117993212219870701WT@YYBT9P2222221222221012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799321120100913WT@@BW9B912222212204307100000000 -T12023011111179934325600411701110213110516300000000000003740010000000000000000000000000000000000222222000000002229012 -T2202301111117993431219820909WTT0BBZ@01222222222221012211210154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799343120180311WT@##Y9#012222122204398100000000 -T12023011111179940025900406081120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111117994003219570704WTTP@WZ@Y2222212222222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799400120050209WTT#B0Z#W22222122206310100000000 -T12023011111179942725900402121120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111117994273219710923WTTTTZWZP2222222222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799427120120904WTTBPT0T#12222112207305100000000 -T12023011111179947823500405271120213110611300000000020405280020000000000000000000000000000000000222222000000002229012 -T2202301111117994781219760111WT@T09YTW2122222222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799478120070927WT@PWP9@922222122204309100000000 -T12023011111179951022000400431120233110516300000000000003960990000000000000000000000000000000000222222002000012219022 -T2202301111117995103219570518WTTZ@9ZWY2222211122225012212110154513069900000000000000000000000000000000000000000000000000000000000000000000001440000000000000 -T320230111111799510120080212WT@9YZ9YY12222122206307100000050 -T12023011111179952025900403711120213110446300000000000305280200000000000000000000000000000000000222222000000002229012 -T2202301111117995201219950527WTTY@YTY#2222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799520120140312WT@TBW@@922222122204398100000000 -T12023011111179956823500410671120332110704300000000000005280310000000000000000000000000000000000222222000000002229022 -T2202301111117995683219730702WT@9Y9T0B2221222222221012212110510911069910000000000000000000000000000000000000000000000000000000000000065400000000000000000000 -T320230111111799568120160505WTTZ####P22212212206398100000050120130327WT@9P00TY22212222206301100000050 -T12023011111179962724100402401120232110376300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111117996272219840913WT@YYBT9P1222211222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799627120160424WT@BYPP@T12222112204398100000000 -T12023011111179969022000414461120623111395300000000000010090070000000000000000000000000000000000222222000000002229012 -T2202301111117996901219900213WTTTYYY002222212222222011213290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111117996901219900212WT@Z9BPYY2222211222222021212290085223011800000021000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799690120120213WTT9Y0WYT22222212204305200000000120100702WT@0BP@9912222212204307200000000 -T320230111111799690120200904WT@@9@TBY22222212204398200000000120150404WT@#BBT0922222222204302200000000 -T12023011111179980224200403511120233110516300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111117998023219670226WT@B@0B992222212122224012212110421813069900000000000000000000000000000000000000000000000000000000000000000000000993000009290000 -T320230111111799802120040327WT@#9TB0P22222112206310100000000 -T12023011111179980324700405901120312110740113070000002005280510000000000000000000000000000000000222222000000002229012 -T2202301111117998031219920507WT@#@0WB#1222222222221012213110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799803420160718WT@@T#ZT@12222212104398106060000120120427WT@9ZWY@T12222222204304100000000 -T12023011111179981621700407751120412110835300000000000004240350000000000000000000000000000000308122222003800012219072 -T2202301111117998161219770323WT@WP9Y9P2222212222221012214110960023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111799816120040901WTT#YP0T022222112204312100000000 -T320230111111799816120080511WTT#YB#0P22222112204309100000000120050301WT@PWB99Y22222122204310100000000 -T12023011111179993620600401981120213110598300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111117999361220020901WTTPZ#90@2221222222221012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799936120210308WT@#ZTTPT22212122204398100000000 -T12023011111179996624700409321120433110835125850000000006540290000000000000000000000000000000000222222000000002229022 -T2202301111117999662219960104WT@WPWP9B1222222222221012216910114913079900000000000000000000000000000000000000000000000000000000000000000000000000000000001068 -T320230111111799966120140727WT@WZYT@012222212204303100000000 -T320230111111799966120170323WT@0Y99@Z12222212204398100000000120150726WT@#00TZB12222222204301100000000 -T12023011111179998822000406271120512111116300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111117999881219910502WT@Z0Z00Z2122222222221012211110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111799988120120227WTTB0#90W21222212204305100000000120090926WTTZZ@@B#21222212204308100000000 -T320230111111799988120190104WT@ZTT#Z011222222204398100000000120170201WT@WWY@TP11222212204398100000000 -T12023011111180006121700406141110213120000300000000000002690010000000000000000000000000000000000222222000000002229012 -T2202301111118000611220010309WT@0Z00BW2222212222221012212110025821011807000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800061120210723WT@WZ#9Y@22222122204398100000000 -T12023011111180008422700408351120113110376300000000020004170040000000000000000000000000000000000222222000000002229012 -T2202301111118000841219950723WTTTPW00Z2222212222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000001333 -T12023011111180011721000411361120713111490300000000000011650070000000000000000000000000000000000222222000000002229012 -T2202301111118001171219800423WT@Y00YT@2222212222223012213110085223011800000000000000000002000000000000000000000000000000000000220000000000000000000000000000 -T320230111111800117120130727WT@@TW@Z#22222112204303100000000120110727WTTZ@BB9Y22222112204305100000000 -T320230111111800117120170927WT@BTW#P922222112204398100000000120150307WTT#9@BB@22222122204398100000000 -T320230111111800117120200705WTTB9ZW0B22222122204398100000000120190211WTTWWYYZ@22222112204398100000000 -T12023011111180013424500405781120213110609300000000000005280500000000000000000000000000000000000222222000000002229012 -T2202301111118001341219720412WT@Y#B9P92222212222225012208110510923011800000000000000000000010000000000000000000000000000000000000000000000000000000000000000 -T320230111111800134120090512WTTY#Y@#T22222112204307100000000 -T12023011111180015322000402371120212110611300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111118001531219790401WTT#T9BTY2121222222225012216120392123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111800153120170705WT@9TPY9W21212212204398100000000 -T12023011111180020721000411361120113110306300000000000004170100000000000000000000000000000000000222222000000002229072 -T2202301111118002071219820104WT@#9#Y@02222222222224013213190920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111180022920600414831120213110187300000000000003910100000000000000000000000000000000000222222000001372219012 -T2202301111118002291219810323WT@99WYYW2222212222223012216210461421011811000000000000000000000000000000000000000000000000000000000000066500000000000000000000 -T320230111111800229120090423WTTW0Z90P22222122204307100000000 -T12023011111180024724100405611120523111171300000000000008880060000000000000000000000000000000000222222000000002229012 -T2202301111118002471219810914WT@9#Z9W02222211222222011214210075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118002471219890204WT@#ZWTYT2222212222222021212290075323011800000000000000000000000000000000120001000000000000000000000000000000000000000000000000 -T320230111111800247120080418WT@9@0@P#22222122204309200000000 -T320230111111800247120200107WT@9TPY9W22222122204398200000000120100713WTTWPB@0Y22222112204306200000000 -T12023011111180026424200404891120333110740300000000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111118002642219660109WT@PW#B#W1222221222212012206190560413089900000000000000000000000000000000000000000000000000000000000000000000000000063000000000 -T2202301111118002642219780112WT@ZPTPTT1222222222212022208190243613089900000000000000000000000000000000000000000000000000000000000000000000000000056100000000 -T320230111111800264120080118WT@B0@WW#12222212204307100000000 -T12023011111180027722000413692110323210740300000000000001470010000000000000000000000000000000000222222000000002229032 -T2202301111118002771219890721WT@9TPY9W1222211222221011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118002771219890413WT@9TPY9W2222212222221011216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800277120160113WT@9TPY9W12222212204398200000000 -T12023011111180029325000414191120233110557300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118002933219760413WT@TB0B#01222222222222012209110510913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800293120110413WT@0P#BYT12222212207305100000100 -T12023011111180030622000405841120432110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118003062219870924WT@B@P#T#2221222222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111800306120080718WTT##P#TY22212212204307100000000 -T320230111111800306120160512WT@YY0T@022212212204398100000000420120218WTTBBTW##22212212104303109140000 -T12023011111180031125600414551120423110939300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111118003111219800326WTT9@9W#P2222211222222011208190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118003111219960423WT@@#Z@9T2222222222222021210190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800311120200309WT@9T#9ZZ22222212204398100000000120170208WT@Y0B9BB22222212204398100000000 -T12023011111180038322000403351120312110835300000000000006540460000000000000000000000000000000000222222000000002229012 -T2202301111118003831219990112WTT0Y@T#91222222222225012208210055523011800000000000000000000000000000000180001000000000000000000040000000000000000000000000000 -T320230111111800383120170112WT@9BYT#@12222212204398100000000120150126WT@0WWT0T12222212204302100000000 -T12023011111180040724200404701120523111199300000000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111118004071219840921WT@WZT@#B2222212222222011213290045623011800000000000000000000000000000000190001000000000000000000000000000000000000000000000000 -T2202301111118004071219820205WTTB#TW092222211222222021216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800407120110105WTTY0TZ@P22222112204306200000000 -T320230111111800407120200107WTTZY0Z@922222122204398200000000120130411WT@@9#Y9#22222122204304200000000 -T12023011111180045324200414721120523111199300000000030608880020000000000000000000000000000000000222222000000002229012 -T2202301111118004531219830727WTTY9009Y2222121222222011212190312923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118004531219870911WT@B@ZP092222122222222011211190312923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800453120080523WT@PWW@@T22221212204308100000000 -T320230111111800453120110907WT@#YP@Y022221222204305100000000120090121WT@BBTZT022221212204307100000000 -T12023011111180061520800409831120313110835300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111118006151219900705WTTP0Y@@T2222212222224012209110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800615120120123WTTYT0@@@22222122204303100000000120100412WTTWTPTWY22222122204305100000000 -T12023011111180069125200407301120533110529300000000000007710020000000000000000000000000000000000222222000000002229022 -T2202301111118006913219970902WTT9T09#W1222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800691120070123WT@Z9P@TB12222122207308100000000120050427WT@W@WYBP12222112207311100000000 -T320230111111800691120100718WT@0@#Y9912222122207305100000000120090213WTTB9PW#T12222112207306100000000 -T12023011111180071724200404891120213110739300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118007171219880708WT@Y9PT992221222222221012211110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800717120220312WTTB@TTB022212112204398100000000 -T12023011111180082924200400491120213110611300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111118008291219990113WTT#T@TWY2222212222221012212110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800829120180105WT@W#ZTTP22212212204398100000000 -T12023011111180084421900412441120213110599300000000000003160120000000000000000000000000000000211122222000000012219072 -T2202301111118008441219840123WT@#@T0@T2222212222221012216110740023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800844120120904WT@0YP@ZZ22222112204302100000000 -T12023011111180087320600407031120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111118008731219790721WT@@TY@#B2222211222222011212210065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118008731219880427WT@BZB0902222212222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800873120190914WT@BZTZYB22222112204398200000000120140127WT@9TPY9W22222122204302200000000 -T12023011111180089220300412371120433110893300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118008923219590223WTTB@PWBT2222212222222012213110273313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800892120050401WT@W##P#Y22222122206311100000000 -T320230111111800892120070301WTTZYBB0T22222122206308100000000120060705WT@B#YZTT22222122206310100000000 -T12023011111180090920600407031120212110611300000000000005280360000000000000000000000000000000000222222000000002229012 -T2202301111118009091219820726WT@@P#P9Z2222212222225012212110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800909120200323WT@#Y9P0Y22222122204398100000000 -T12023011111180096220800414651120813111691300000000000012890450000000000000000000000000000000000222222000000002229072 -T2202301111118009621219850102WT@0BW0WB1221222222223012216110730023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800962120060701WTTWYPPZ012212222204308100000000 -T320230111111800962120090301WT@@WB99P12212212204305100000000120080108WT@@B#@@T12212212204306100000000 -T320230111111800962120130326WT@WWBY#P12212212204302100000000120110126WT@B@PTT912212222204304100000000 -T320230111111800962120180523WTTW0P@#@12212212204398100000000120150108WT@TWWTWY12212212204301100000000 -T12023011111180096321700407751120413110773300000000000004620410000000000000000000000000000000308122222000000012219072 -T2202301111118009631219930724WTTW#P09@1222222222221012211110870023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111800963120100418WTTPP@#9@12222212204305100000100 -T320230111111800963120140909WTTP0T@W#12222112204301100000000120110911WTT#@Y9#Z12222112204304100000000 -T12023011111180108422900405641120312110752300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111118010841219790921WT@#YP#P#2222211222223012214110114923011400000000000000000000000000000000000000000000000000000000300000000000000000000000000000 -T320230111111801084120180721WTTZ#BWBY22222112204398100000000120080427WT@ZTYBBT22222122204308100000000 -T12023011111180109220800411601120312110786116160000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111118010921219970114WT@#T@ZBB2222212222221012211110392121011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801092120180912WTTP@PZT022222122204398100000000120150712WTTPY0##Z21222222204301100000000 -T12023011111180114223700414331120313110542300000000000003920200000000000000000000000000000000261122222000000012219072 -T2202301111118011421219880105WTTBP@WY92221222222221012212110770023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801142120120223WTT9PPZ9W22212222204304100000000120090307WTTYWBWZ922212222204306100000000 -T12023011111180120922000407241120413111034300000000000007710600000000000000000000000000000000000222222000000002229072 -T2202301111118012091219960409WTT90W0Y92221222222221012211110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801209120150904WT@PYWW0922212212204301100000000 -T320230111111801209120200314WT@PT@W@P22212212204398100000000120170309WTT@YY0ZW22212222204398100000000 -T12023011111180123122000403351120413110846300000000000007710310000000000000000000000000000000000222222000000002229012 -T2202301111118012311219720423WTTT0BW#T2221222222221012202210312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801231120100504WT@0WT0YZ22212222204306200000000 -T320230111111801231120160408WT@#ZTBW#22212212204398100000000120100504WTTWWBWPT22212212204306200000000 -T12023011111180124421000405411120312110796300000000000003920250000000000000000000000000000000261122222000000012219012 -T2202301111118012441219990924WTTT990W#1122222222221012212120253523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801244120220721WT@B0TZ9T11222222204398100000000120210404WT@#PZ#B#11222212204398100000000 -T12023011111180125622000400591120512111116300000000000008880330000000000000000000000000000000000222222000000002229012 -T2202301111118012561219800701WTTWWZ9#Z1222222222222012211210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801256120060713WTTYW90ZP12222212204309100000000120050121WTT#B0Y@@12222212204311100000000 -T320230111111801256120090721WTT#BTW9Y12222212204307100000000120080522WTT9@0Z#B12222222204308100000000 -T12023011111180138522000405701120213110611115000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111118013851219920122WTTP9ZYY02222222222223012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801385120210709WT@#9PZBY22222222204398100000000 -T12023011111180142320600400871120413111034123650000000007710160000000000000000000000000000000000222222000000002229012 -T2202301111118014231219930707WTTY0@PYW2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801423120140209WTTYBZ#P@22222112204302100000000 -T320230111111801423120210524WTTBW0TYY22222122204398100000000120180113WT@#WY@0Z22212212204398100000000 -T12023011111180147223500411471120432110939300000000000006540560000000000000000000000000000000000222222000000002229022 -T2202301111118014723219710205WT@BY#@B@2222212222225012216110015911069933000000000000000000000000000000000000000000000000000000000000251000000000000000000000 -T320230111111801472120040105WTTBP#9PW22222112206310100000000 -T320230111111801472120090924WT@B9T#ZB22222122206306100000000120060212WTTT#T@#Y22222112206309100000000 -T12023011111180155024700408301120213110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111118015501219930304WTTT#0W#T2222212222221012211110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801550120200723WTT@0WWT922222112204398100000000 -T12023011111180167522000411551120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111118016751219950427WT@TT0Z@Z2222211222221012212210164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801675120070201WT@BZYYYW22222112207310200000000 -T12023011111180168722000409871120213120000300000000005503160260000000000000000000000000000000211122222000000012219012 -T2202301111118016871220010326WTTTZW0BT1221222222221012210110273323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801687120180105WTTB@Z9@P12222112204398100000000 -T12023011111180192425800405801120333110821300000000000005280270000000000000000000000000000000000222222000000002229022 -T2202301111118019243219810401WTTPZP@W92122222222221012211110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000010 -T320230111111801924120110312WTTZYPY@@21222222207302100000001120080408WT@@W@ZTZ21222222207307100000001 -T12023011111180193524200403511120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111118019351219670422WTT9YPTP02222212222225012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801935120040302WT@9YY9BY22222122204312100000000 -T12023011111180199224500409151120212110611300000000000005280520000000000000000000000000000000000222222000000002229012 -T2202301111118019921219840424WTTPZPTW92222212222221012211110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111801992120150423WTT@WZT9P22222112204398100000000 -T12023011111180200720200409311120212110611300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111118020071219840121WT@B@@@BZ2222212222221012210110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802007120100723WT@#PTTT#22222122204305100000000 -T12023011111180217925900402632120523211199300000000037908880130000000000000000000000000000000000222222000000002229062 -T2202301111118021791219780927WT@ZYP0@@2221221222222011213110015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118021791219900926WTT09T@PP2222212222222021212190610023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802179120100714WTTZYBZY#22222212205306100000000 -T320230111111802179120220118WT@BT@BWY22222122204398100000000120110926WTTZPYWWZ22212212204305100000000 -T12023011111180220922000407411120532111116300000000000007710200000000000000000000000000000000000222222000000002229022 -T2202301111118022092219930904WT@#WWTBB2222222122211012212110600011109901000000000000000000000000000000000000000000000000000000000000179700000596013600000000 -T320230111111802209120120704WTT0#9@P912222212204303100000000120110712WTTBYZTWZ12222222204304100000000 -T320230111111802209120210727WTT#YZPTY12222222204398100000000120160908WTTP#Z#T011222222204398100000000 -T12023011111180224525600413441120212110363300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118022451219770912WTT0PBTW02221221222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802245120080912WTTBWWY0022212212204304100000000 -T12023011111180226824900404261120312110740300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111118022682219880104WT@PW0T@02221222222212012211190600013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118022681219910704WT@0WB0TT2222211222222022212190194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802268120220702WTT9P90BW22212112204398100000000 -T12023011111180229223500410671110423110893300000000000001240010000000000000000000000000000000000222222000000002229012 -T2202301111118022921219800126WT@YBY9P92222212222222011216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118022921219790327WTTWT@#YT2222211222221021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802292120110904WTT9ZT0WB22222112204305200000000120050324WT@#WYYWW22222122204311200000000 -T12023011111180238320800405141120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118023833219510723WT@BT#0PB2222211112222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001180000000000865 -T320230111111802383120100726WT@Y9TPP#21222212206305100000000120090321WT@BB#0BB22212212206306100000000 -T12023011111180240024700413761120312110740300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111118024001219920123WTTW9@YTT1222212222221012216110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802400120150123WT@TTYZW012222112204302100000237120100412WT@W@ZY9B12222112204307100000418 -T12023011111180261824900404261120612111286300000000000010090500000000000000000000000000000000000222222000000002229012 -T2202301111118026181219850327WT@BYWZWW1222212222223012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802618120070412WTT#@TZYZ12222112204308100000050 -T320230111111802618120190312WTT0P9PP012222212204398100000000120100113WT@PP#@Y@12222112204306100000050 -T320230111111802618120220922WTTTBBWTP12222212204398100000000120210427WT@YPB99Z22222112204398100000000 -T12023011111180268222000411281120423110959300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111118026821219790423WTTTPZP9#2222211222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118026821219850412WTT0PPPYZ2222212222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802682120110227WT@9TPY9W22222112204305200000000120060112WT@9TPY9W22222122204310200000000 -T12023011111180276822000407241120823111690300000000000012890050000000000000000000000000000000000222222000000002229012 -T2202301111118027681219760721WTTY#Z9@#2222212222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118027681219730109WTTWZ00PT2222211222222021216290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802768120080423WT@P#TW0922222112204308200000000120050701WT@#9#WT922222122204310200000000 -T320230111111802768120120427WT@WBBB9P22222122204304200000000120100712WTTB9B9@Z22222112204306200000000 -T320230111111802768120180527WTT9TWB0022222112204398200000000120150109WTTTTB@T#22222112204301200000000 -T12023011111180285820300401721120233120000300000000025004170200000000000000000000000000000000000222222000000002229022 -T2202301111118028583219870301WTT0W009W2122222222222012216110006013069900000000000000000000000000000000000000000000000000000000000000309600000000000000000033 -T320230111111802858120070912WT@T#WY9B21222222207309100000000 -T12023011111180291924200414721120432110939300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111118029193219900402WTT#P90BB2221222222221012212110580211069933000000000000000000000000000000000000000000000000000000000000252000000000000000000000 -T320230111111802919420110104WTTWB#TBY22212212204305100000000 -T320230111111802919120150109WTTY0Y##@22212222209398100000000120120207WTTW#PYW#22222112209305100000000 -T12023011111180299020600403591120413110939300000000000007710300000000000000000000000000000000000222222000000002229012 -T2202301111118029901219860912WT@00T#W#2222212222225012216120303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111802990120090404WTTZ@9#9B22222112204307100000000 -T320230111111802990120130923WTT#ZP#9922222112204303100000000120130923WTTT@@99T22222112204303100000000 -T12023011111180303924200414351120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111118030391219940309WTT@@WY#@2222212222221012216110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803039120220322WT@#BYZP@22122112204398100000000 -T12023011111180304325900402631120233110516300000000017004170670000000000000000000000000000000000222222000000002229022 -T2202301111118030433219610104WTTYTYYBB2222212222213012216110790013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111803043120130711WTT99ZZ0@12222122206302100000000 -T12023011111180308520800410781120532110917300000000014908880510000000000000000000000000000000000222222000000002229072 -T2202301111118030851219800421WTT99TBT@2222211122222012213111080023109900000000000000000000000000000000000000000000000000000000000000000000011195000000002141 -T320230111111803085120050424WTT#B@TWT22222122205311100000000120040201WT@Y@Y0YB22222112204312100000234 -T320230111111803085120070713WT@WY9Z#T22222122205309100000000120060907WT@PWB#@B22222112204311100000234 -T12023011111180330923900403801120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118033092219850923WT@WWW#@02222212222215012212120223813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111803309120050113WTTZPTWP922222112204309100000050 -T12023011111180334024200414721120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111118033401219870318WTT0ZP@Z#2222212222221012212110510923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803340120220418WTTP#9W#W22222222204398100000000 -T12023011111180335722000405841120423111034300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111118033571219820705WT@99W99T2222212222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118033571219740418WTTB#WT9@2222211222222021212290065423011800000000000000000000000000000000000000000000000000000000280000000000000000000000000000 -T320230111111803357120160427WTT9#PT9Z22222122204398200000000120130512WT@T@TWW@22222112204303200000000 -T12023011111180337924900403221120212110549300000000000003010230000000000000000000000000000000201122222000000262219012 -T2202301111118033791219960326WT@BZZYY92222212222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T320230111111803379120210107WTT#P0YY@22222112204398100000000 -T12023011111180341122600405051120213110631300000000000005280110000000000000000000000000000000000222222000000412219012 -T2202301111118034111219840227WT@BZP99@2222212222221012213110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803411120100121WTT#TB@WB22222112204306100000000 -T12023011111180343722000413731120313110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111118034371219840424WT@BT#ZW#2222212222221012212110085223011700000000000000000000000000260000000000000000000000000000000000000000000000000000000000 -T320230111111803437120180307WT@PTB9T#12222112204398100000000120060926WTT#ZZ0Y922222112204310100000000 -T12023011111180346220600402141110312110835300000000000005690130000000000000000000000000000000000222222000000002229012 -T2202301111118034621219860708WTTZ#Y0ZW1222212222221012209110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803462120140527WTTT#BBZY22222112204302100000000120070318WTTWBPY0W22222122204308100000000 -T12023011111180348523900411001120233120000300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111118034853219630527WTTP@0ZPT2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001081000000000000 -T320230111111803485120110418WTTY#Y09P22222122206304100000050 -T12023011111180352922100401271120333110777300000000000005280630000000000000000000000000000000000222222000000002229022 -T2202301111118035293219680104WTT@WP9PW2222212222221012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803529120130307WTTWBBB9Y22222112206302100000050120060218WTTPY@99Y22222122206310100000050 -T12023011111180365624500410691120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118036562219840423WTT#9@9@02222212222213012212121220013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111803656120090202WT@@TB#W922222112204306100000000 -T12023011111180366521700407751120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118036653219580418WT@T9@P#B2122222122222012208120154513069900000000000000000000000000000000000000000000000000000000000000000000000409000000000000 -T320230111111803665120050921WTT@PBPZ#11222222206312100000000 -T12023011111180368424700410421120213110611300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111118036841220000113WTT@PBPWY2221212222221012211110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803684120200907WT@#0@Z0012212222204398100000000 -T12023011111180370025900406841120213110598300000000000005280180000000000000000000000000000000000222222000000002229042 -T2202301111118037001219750126WT@0BBZ#91222211222225012208110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803700120050426WTTTWPT0012222222204311100000000 -T12023011111180377222700402901120533110731300000000016006540020000000000000000000000000000000000222222000000002229022 -T2202301111118037722219800713WT@YYBT9P1222222222221012204990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118037722219690127WT@@P09P@1222221222221022201990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803772120050726WTT9T#WZT12222212204309100000000 -T320230111111803772120110313WT@09@BT#12222212204303100000000120100427WTTW@Y00P12222222204305100000000 -T12023011111180378822000412691110312110761300000000000005690540000000000070001000000000000000000222222000000002229012 -T2202301111118037881219940207WT@B9B@ZT2221222222221012213120540623011400000000000000000000000000000000000000000000000000000000080000000000000000000000001019 -T320230111111803788120190912WT@#ZZT##22212222204398100000000120100924WT@BBT9ZW22212212204306100000000 -T12023011111180396424100402401120313110834300000000000006540680000000000000000000000000000000000222222000000002229072 -T2202301111118039641219880321WTTBZWWPB2222212222225012210110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111803964120090207WTT#TB@PZ22222112204308100000083120060723WT@ZW#P##22222122204310100000083 -T12023011111180404322000408891120313110835300000000000006540040000000000035001000000000000000000222222000000002229012 -T2202301111118040431219780407WT@@0B9ZW1222222222225012212210105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111804043120160126WT@BZZ@#Y12222212204398100000000120110713WT@9P#PZ012222222204306100000000 -T12023011111180408622000410051120233110590300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111118040863219580126WT@#@WB#T2222122222222012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111804086120110727WT@PP0WB@22221222206304100000000 -T12023011111180409723500404821110233110598300000000001803900430000000000000000000000000000000000222222000000002229021 -T2202301111118040973219640901WTTYY#9W91222222222215012206110421813069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111804097120120104WTT#0#9W912222212206304100000000 -T12023011111180422420900411721120333110740300000000000005280420000000000000000000000000000000000222222000000002229022 -T2202301111118042242219790405WTTBZ@@Y02222211222215012213120075313089900000000000000000000000000000000000000000000000000000000000000000000000000088400000000 -T320230111111804224120120323WT@#@TWTB22222122204304100000000120110908WTT09@@BY22222112204305100000000 -T12023011111180434222000411281120323110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111118043421219850123WTT9@@PTB2222222222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118043421219830222WT@YTWTZW2222221222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111804342120090522WT@P9#WP@22222222204308200000000 -T12023011111180457925900402831120313110835120480000000003920200000000000000000000000000000000226122222000000002229012 -T2202301111118045791220010923WT@9WBB@02122222222221012211110204023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000006 -T320230111111804579120200424WTT@Z99@Y21222222204398100000000120190407WT@9B9Z9021222212204398100000000 -T12023011111180462620600402131120312110835300000000000006540260000000000000000000000000000000000222222000000002229012 -T2202301111118046261219940907WTTWP@ZWZ2221222222221012216110471323010100000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111804626120220922WT@9@Z9#W22222122204398100000000120190108WTT@YZP@W12222222204398100000000 -T12023011111180464224700402991120212110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111118046421219990923WT@9TT@0Y2221222222221012216110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111804642120210913WTTB9@WBW22212222204398100000000 -T12023011111180467120600400801120323110766300000000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111118046711219870112WTT#Y#T0Z2222212222225011213190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118046711219750511WT@@00T9T2221221222221011213190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111804671120210109WTTTZPY9922212222204398100000000 -T12023011111180476722000409411120233110536300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111118047673219440514WTTTPBWBY2222212222215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000086600000060 -T320230111111804767120180121WTT9@WW0@12222212206398100000000 -T12023011111180487220600403591120233120000300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111118048723219670113WTT0##9#02222212222225012215110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001000 -T320230111111804872120140327WT@@0B#Y#22222112206301100000000 -T12023011111180508620600400801120213110611300000000055005280520000000000000000000000000000000000222222000000002229072 -T2202301111118050861219780904WTT#@9WTT2222212222223012213110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111805086120090327WT@ZB@#W@22222122204306100000000 -T12023011111180516722000403351120412110893300000000000007060690000000000000000000000000000000000222222000000652219072 -T2202301111118051671219750513WT@WYTYTB2221222222221012212110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000064 -T320230111111805167120050911WT@9YTYTT22212222204311100000025 -T320230111111805167120080523WT@@#TT9#22212212204308100000025120080523WTT#@PTBZ22212222204308100000025 -T12023011111180517322000409871120313110760300000000000006540310000000000000000000000000000000000222222000000002229012 -T2202301111118051731219960504WTTBBBB0W2222122222223012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111805173120210311WT@@P9BB@22222212204398100000046120190212WTTYZZ@B@22221222204398100000046 -T12023011111180523524700402992120323210776300000000150006540020000000000000000000000000000000000222222000000002229032 -T2202301111118052351219820724WT@9TPY9W2222222222222011215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118052351219870326WT@9TPY9W2222211222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111805235120160105WT@9TPY9W22222122204398200000000 -T12023011111180523822100409491110213110611300000000000004420030000000000000000000000000000000000222222000000002229012 -T2202301111118052381219790327WT@Z##ZWZ2222212222223012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111805238120050922WT@@9Y9BP22222122204311100000000 -T12023011111180526324200410371120233120000300000000000004170700000000000000000000000000000000000222222000000002229022 -T2202301111118052633219710326WTT0WY9#T2222212222225012212110154511069940000000000000000000000000000000000000000000000000000000000000292400000000000000000100 -T320230111111805263120160323WT@#PBTZY22222112206398100000000 -T12023011111180526925200402841120233110516300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111118052692219690704WTTBBYPP92222212222215012212121370013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111805269120080413WT@WBBY#P12222212204309100000000 -T12023011111180551125800405801120333110776300000000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111118055113219950723WTTY#Z0#P2222211222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111805511120080422WTTB#@#@012222122207308100000000120050421WT9TT9B#Y12222122207311100000000 -T12023011111180562823500404531120233120000105820000002504170990000000000000000000000000000000000222222000000002229022 -T2202301111118056283219680511WTT0#BWY#2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000361200000000000000000000 -T320230111111805628120090714WT@BT9#WB22222122206302100000000 -T12023011111180564123500410672120213210598300000000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111118056411219920223WT@9Y0Y@Z2222212222223012212210055522011900000000000000300000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111805641120160223WT@9TPY9W22222122204398200000000 -T12023011111180587824900404261120212110599300000000000003160280000000000000000000000000000000211122222000000012219012 -T2202301111118058781219920322WT@Z@9TWT2222212222221012216110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111805878120130526WT@YPWPTW22222112204304100000000 -T12023011111180597222000414461120623111395300000000000010090280000000000000000000000000000000000222222000000002229012 -T2202301111118059721219900918WT@PBB9#T2222121222222011216290342623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118059721219940423WT@#P@W##2222122222222021216290342623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111805972120140912WT@W@BZTT22122212204301200000000120120718WT@@BBWTZ22221212204304200000000 -T320230111111805972120200911WTTT@9YBB22222112204398100000000120180204WT@WWPPWW22122222204398100000000 -T12023011111180607122000405842120423210959300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111118060711219810121WTTTYPBBB2222221222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118060711219820122WTT9#BW@B2222222222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806071120170221WT@PW#YTW22222212204398200000000120120912WTT#W0#BW22222212204304200000000 -T12023011111180620424200402501120233120000300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111118062043219730304WTTT9#TBT2222211212222012214110006013069900000000000000000000000000000000000000000000000000000000000000253500000000000000003791 -T320230111111806204120060921WTT0WZ0T022212122207310100000050 -T12023011111180633422700407441120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118063343219540201WT@Y90PT91222222122224012212110095113069900000000000000000000000000000000000000000000000000000000000000000000001140000000000000 -T320230111111806334120190921WT@WB@Y@T12222112206398100000000 -T12023011111180635621700406141120323110835300000000302006540030000000000070002000000000000000000222222000000002229012 -T2202301111118063561219710723WTTYWWZBY2222211222222011212190045623011800000000000000000004000000000000000000000000000000000000130000000000000000000000000000 -T2202301111118063561219750427WT@YZ0PTZ2212222222222021212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806356120100926WTTTZ#@Y#22222122204306100000000 -T12023011111180637824500404151120213110598300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111118063781219890214WTTB@ZZ#Z2222212222221012212120312923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806378120220924WTTPZP99P22222122204398100000000 -T12023011111180640320400400211120213110363300000000010005280030000000000000000000000000000000000222222000000002229012 -T2202301111118064031219960107WT@@WPY9P2222211222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806403120210223WT@9YWZ9@22222112204398100000000 -T12023011111180651920300410341120213110598300000000000005280300000000000000000000000000000000000222222000000002229072 -T2202301111118065191219770913WTT@0W@0W2222212222225012211110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806519120090427WTTZ9BPT#22222122204307100000000 -T12023011111180655220800411991120433110835300000000015006540750000000000000000000000000000000000222222000000002229022 -T2202301111118065522219890727WT@@0BZPT1222222222221012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806552120070912WTTYPBWB012222222204309100000000 -T320230111111806552120200914WTT0BW#BP12222212204398100000000120180727WT@#PYPWY12222212204398100000000 -T12023011111180664323500411471120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111118066431219740907WTT09Z#@B1222221222225012212210184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806643120050421WTT9YWZTB12222212204312100000152 -T12023011111180672820500409121110323110776300000000000005900010000000000000000000000000000000000222222000000002229012 -T2202301111118067281219670105WTT###YT#2222212222222011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118067281219640201WTTT@#ZW02222211222222021212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806728120090314WTTB@ZZ@Z22222112204305100000440 -T12023011111180674623500411471120212110598300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111118067461220000714WTT#0ZT@Y2221222222221012211110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806746120190724WT@0#W#P#22212212204398100000000 -T12023011111180679925100407671110213110493111090000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111118067991219940921WT@@W0ZP02222212222221012212120075323011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111806799120200127WT@T00@Y022222122204398100000000 -T12023011111180680922000400461120512111084300000000002007710150000000000000000000000000000000000222222000000002229012 -T2202301111118068091219840204WT@0#P@002221222222222012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806809120110123WTTY#@BB@22212222204302100000000120100123WTT009@#@22212212204304100000000 -T320230111111806809120200402WT@@#ZPZP22212212204398100000000420160713WT@9#BTWZ22212222104398100680000 -T12023011111180683221700406142110512211261300000000000000790230000000000000000000000000000000000222222000004492219032 -T2202301111118068321219910121WT@W@T@WB2222211122225012211190035723109900000000000000000000000000000000000000000000000000000000000000000000011316000000000000 -T2202301111118068321219960507WTTT00P@T2222212222221012212110312923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111806832420200326WT@T#@YT022222122104398107850000 -T320230111111806832120220308WTT09B9Z022222122204398100000000120210311WT@ZTPPTZ22222122204398100000000 -T12023011111180698324700406701120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111118069833219660527WTTTWYWWZ2122222222225012212110006011069927000000000000000000000000000000000000000000000000000000000000240800000000000000000000 -T320230111111806983120110214WT@@P@Z@W12222212206305100000000 -T12023011111180706022000409411120533110755300000000186906060090000000000000000000000000000000000222222000000482219022 -T2202301111118070602219790401WT@YYBT9P1222212222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118070602219780727WT@YYBT9P1222121222222022206990006011079919000000000000000000000000000000000000000000000000000000000000112500000000000000000000 -T320230111111807060120040412WTTWTYWP912222112204310100000000 -T320230111111807060120110114WT@YY#Y@T12222112204303100000000120070401WTT@#Y0Y012222112204308100000000 -T12023011111180718322000408891120923111902300000000000014160060000000000000000000000000000000000222222000000002229012 -T2202301111118071831219880401WTT@##W992222212222222011214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118071831219790918WTTZ0WYTT2222211222222021214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111807183120060714WT@9WBWZP22222122204309200000000 -T320230111111807183120120423WT@@@Y@#Y22222122204304200000000120090218WT@ZP9@YB22222122204307200000000 -T320230111111807183120170123WTT@0W@YW22222122204398200000000120130326WTT0YZ#PB22222122204302200000000 -T320230111111807183120200712WT@BY99W922222112204398200000000120190501WT@BTBPZT22222112204398200000000 -T12023011111180729225900406651120333120000300000000065005280990000000000000000000000000000000000222222000000002229022 -T2202301111118072923219750426WTT#PPYWB2222211222225012212110006011069945000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111807292120090409WTTT0BPY#22222112207306100000000120080412WT@9TYT@W22222112207307100000000 -T12023011111180772720600407031120213110611300000000000005280320000000000000000000000000000000000222222000000002229072 -T2202301111118077271219720907WTTWBB0#02222212222223012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111807727120050922WTTZT#P9#22222122204311100000000 -T12023011111180776720600404122120113210376300000000000004170020000000000000000000000000000000000222222000000002229032 -T2202301111118077671219880304WTTTZTY#@2222122222223013216290035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111180777323500405981120312110826300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111118077731219940912WTTTPTP#Y2222212222221012210110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111807773120190327WTT@Y9Y0W22212222204398100000000120100423WTTZZ#YZ@22222122204306100000000 -T12023011111180783124100413561120312110798300000000000006540220000000000000000000000000000000000222122000000002229012 -T2202301111118078311219950323WT@WWZBPB2221222222222012216120273323011800000000000000000003000000000000000000000000000000000000060000000000000000000000000000 -T320230111111807831120180304WT@9W#ZBZ22212222204398100000000120170427WT@#0PY0@22212222204398100000000 -T12023011111180787522000403352120233210425300000000000005280990000000000000000000000000000000000222222000001262219022 -T2202301111118078753219740709WT@WYY@Z#2222122222223012212910105011079941000000000000000000000000000000000000000000000000000000000000370900000000000000000000 -T320230111111807875120070407WTT0TBPBB22221222207308900000000 -T12023011111180788424200414721120433110893300000000000005280370000000000000000000000000000000000222222000000002229022 -T2202301111118078843219660712WT@#B#PPZ2222122122222012212110055513069900000000000000000000000000000000000000000000000000000000000000000000001622000000000000 -T320230111111807884120050523WTTBWZB@@12221212206310100000000 -T320230111111807884520120126WT@TTTP9#12221212106302107020000120110126WTTTW#WTB12221212206304100000000 -T12023011111180815021400408021120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118081503219450907WT@YTTBW@1222222122224012208110006011069916000000000000000000000000000000000000000000000000000000000000272700001307000000000000 -T320230111111808150120050212WT@#Y@P9Z12222212206311100000000 -T12023011111180823625900403551120633111034300000000013007710150000000000000000000000000000000000222222000000002229022 -T2202301111118082362219820227WT@YYBT9P1222222222221012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111808236420060923WT@YYBT9P12122222204309900000000 -T320230111111808236120100304WT@@B9#PY12222212204305100000000120080904WT@9W#WW012222212204309100000000 -T320230111111808236120180721WT@Z9TYYT12222212204398100000000120140318WTTB@YPPP12222222204302100000000 -T12023011111180829220600412681120313110786111450000000004040030000000000000000000000000000000000222222000002502219072 -T2202301111118082921219870113WT@9ZWZ0T2222212222225012212110630023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000250 -T320230111111808292120190123WTTBZBPBT22222112204398100000000120080423WTT@B0P9T12222122204308100000000 -T12023011111180842324100414391120212110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111118084231219820723WT@@Y#W@P1222222222223012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111808423120180709WTTW00TYY12222222204398100000000 -T12023011111180844522700407491110513111116300000000000003280210000000000000000000000000000000000222222000003422219012 -T2202301111118084451219900712WT@T#YYWB1222222222221012211110223823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111808445120160926WTTZP9Z@B12222222204301100000000120100304WT@ZPW9PY12222222204306100000209 -T320230111111808445120210127WTTWP9Y0012222222204398100000000120180427WT@PTBP@B12222112204398100000000 -T12023011111180851222700413181120332110740300000000000005280940000000000000000000000000000000000222222000000002229022 -T2202301111118085122219880423WTT@T@ZW92221222222215012298110124813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111808512120130123WT@0YYTWY22212212204302200000000120100308WT@B#ZTTB22212222204305200000000 -T12023011111180852122000402372110423211034300000000000007210010000000000000000000000000000000000222222000000002229032 -T2202301111118085211219680726WT@9TPY9W1222221222222011209290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118085211219960221WT@9TPY9W1222222222222021209290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111808521120160902WT@9TPY9W12222222204301200000000120120907WT@9TPY9W12222212204305200000000 -T12023011111180853724200403941120423110939300000000001007710070000000000070002000000000000000000222222000000002229012 -T2202301111118085371219820302WT@@YPT9P2221222222222011212110085223011800000000000000000000000000000000000000000000000000000000280000000000000000000000000000 -T2202301111118085371219830323WTTYP0WZB2221222222222021212190352523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111808537120180111WT@09WY@@22212212204398100000000120060412WT@00ZZWW21222222205310100000000 -T12023011111180859224200414721120213110611300000000000005280170000000000000000000000000000000000222222000000002229072 -T2202301111118085921219930713WT@9WBPBY2222212222221012216120660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000002003 -T320230111111808592120130327WT@W000#P22212222204398100000000 -T12023011111180867323500410671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118086733219710523WT@P#@Y#Z2222212222225012216110481213069900000000000000000000000000000000000000000000000000000000000000309600000000000000000000 -T320230111111808673120080401WT@#Y90PB22222112206309100000050 -T12023011111180870925900406651120413110959300000000000006540060000000000035001000000000000000000222222000000002229012 -T2202301111118087091220000307WTTBWY#ZP1221222222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118087092219780512WTT#0PB9B2222211222211102212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111808709120200726WT@ZZZYPB12212222204398100000000120190726WTT9#0BP912222122204398100000000 -T12023011111180881223700414332110233210470300000000000003630010000000000000000000000000000000000222222000000002229021 -T2202301111118088123219680518WT@YYBT9P1222222222223012206210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111808812120130111WT@9TPY9W12222212206302200000000 -T12023011111180892925000414191120213110611300000000035005280040000000000000000000000000000000000222222000000002229012 -T2202301111118089291219980424WTTZYT9P02222212222221012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111808929120150304WTT99ZY9#22222112204301100000000 -T12023011111180901620900411721120413111054300000000000007710110000000000000000000000000000000000222222000000002229012 -T2202301111118090161219870921WTTZ#Y#0Y2222212222221012216110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809016120160908WT@@YP9T022222112204398100000000 -T320230111111809016120210426WTTWP9PP922222112204398100000000120170927WTTP##TBB22222122204398100000000 -T12023011111180909222000411551120312110766300000000057706540080000000000000000000000000000000000222222000000002229012 -T2202301111118090921219800118WTTYPZ#ZP2222212222223012212120372323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809092120220118WTT@P0@P022222212204398100000000120080212WT@9#0W9T22212212204308100000000 -T12023011111180911920600414161120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111118091191219900726WTT#ZTZ#Z2222212222225012211110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809119120120921WTTZTB9PW22222112204304100000000 -T12023011111180923020600414771120333110761300000000000006210990000000000000000000000000000000000222222003200012219022 -T2202301111118092301219810702WT@09B9BW2222212222225012212111050023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809230120120107WTTZPP9B922222112204304100000000120120107WT@Z#@Z@922222122204304100000000 -T12023011111180925120600414771120413110939300000000000002710110000000000000000000000000000000000222222000005002219012 -T2202301111118092511219940123WT@#YPT#T2222212222221012213110174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809251120120322WT@YW#9##21222222204303100000250 -T320230111111809251120220912WT@@B@#Y921222212204398100000000120170123WT@WY90PZ22222222204398100000250 -T12023011111180926524200414021120413110939300000000000007710420000000000000000000000000000000000222222000000002229012 -T2202301111118092651219880704WT@P0TZTT2222212222221012212110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809265120180507WTTT00#BP22222122204398100000050 -T320230111111809265120210318WTTT#TZTY22222122204398100000000120190913WT@TTW@TP22222112204398100000050 -T12023011111180935824700408981120233110516300000000000003670800000000000000000000000000000000000222222000000502219022 -T2202301111118093582219690918WTT@WZ#@#2222211222211012210110850013089900000000000000000000000000000000000000000000000000000000000000000000000000089600000000 -T320230111111809358120060113WT@ZWP@W@22222112204308100000050 -T12023011111180946620800405141120413111013300000000000004090390000000000000000000000000000000136222122000002262219012 -T2202301111118094661219820123WTTZP9W0Y2222212222221012211120431721011806000000000000000000000000000000000000000000000000000000000000045000000000000000000000 -T320230111111809466120070501WTTP9B9Z@22222112204310100000000 -T320230111111809466120150726WTTY9Z#YW22222112204302100000000120080723WT@Y0T9TY22222112204309100000000 -T12023011111180954524200414851120313110835300000000000006540600000000000000000000000000000000000222222000000002229072 -T2202301111118095451219950413WT@99P#9P2222212222223012209110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809545120170327WTT9PZWY@12222122204398100000000120110727WTTTB0TY922212222204305100000000 -T12023011111180959622000413731120323110835300000000000504900030000000000000000000000000000000163222122000000012219012 -T2202301111118095961220020307WTTTW9B0B2222212222221011211120045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118095961219900423WTT9W@Y#02212211222221011211190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809596120210927WT@#Y9#PB22122212204398100000000 -T12023011111180963920600402141120312110740300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111118096391219810722WT@Z09TBP2221222222221012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809639420110923WTT0ZBTWT22212222104305109140000120100526WT@0BT9W922212222204306100000000 -T12023011111180964025200400391120333110835300000000000005280670000000000000000000000000000000000222222000000002229022 -T2202301111118096403219640312WT@TP@T#T2222212222223012207110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809640120120918WT@W@W9YP12222122206303100000050120050312WTTY@000B12222112206309100000050 -T12023011111180973522000407411120213110598300000000027105280080000000000000000000000000000000000222222000000002229012 -T2202301111118097351219850421WT@#ZYPW@2222222222221012215210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809735120160908WT@YTW@PB22222212204398200000000 -T12023011111180975424700409381120313110766300000000000003920100000000000000000000000000000000261122222000000012219012 -T2202301111118097541219870402WT@WZTZ#Z2222212222221012216120114923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809754120160913WTTWWBZ0B22222122204398100000000120140313WTTTZ#@YZ22222112204398100000000 -T12023011111180975925200407301120413110939300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111118097591219930318WT@Z@TW##2222211222221012212190055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118097592220010127WTT0WTWWY1222212222211102211190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068400000000 -T320230111111809759120220701WT@##Y#0#12222212204398100000000120210721WT@ZY9#T@12222122204398100000000 -T12023011111180979123500404821120432110939300000000000005280200000000000000000000000000000000000222222000000002229022 -T2202301111118097912219900111WT@BYWTZ02222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111809791420110718WTT@#PP0@12222112104305108410000 -T320230111111809791120160407WT@@PPPZ#21222222204398100000000120160407WT@WPZTYY21222222204398100000000 -T12023011111180979524200404281110213110611300000000020002340080000000000000000000000000000000000222222000002942219012 -T2202301111118097951219930707WTTW0#ZTB2212222222221012213110095121010116000000000000000000000000000000000000000000000000000000000000099500000000000000000000 -T320230111111809795120220909WT@0T9@@@22222222204398100000000 -T12023011111180980922000412691120322110835300000000050006540090000000000000000000000000000000000222222000000002229012 -T2202301111118098091219880107WTTY#T@WW2222212222223011215210095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118098091219850512WT@9ZB#PT2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809809120160909WT@YWYBZB22221222204398200000000 -T12023011111180985823500408282120323210766300000000001506540090000000000000000000000000000000000222222000000002229032 -T2202301111118098581219950323WT@TYY0PY2222211222222011216290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118098581219970108WT@090BWT2222212222222021214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809858120210926WTT90T@@922222112204398200000000 -T12023011111180991420600407031120512111116300000000000005320990000000000000000000000000000000355122222000000012219072 -T2202301111118099141219800927WT@@#WWBT1222222222221012211111240023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809914120120412WT@TP9YBP12222212204304100000025120060913WT@99#WTP12222212204310100000025 -T320230111111809914120170102WTTYPPZTB12222212204398100000025120150309WT@T00PB@12222212204398100000025 -T12023011111180998624700405832120523211116300000000000008880020000000000000000000000000000000000222222000000002229032 -T2202301111118099861219890504WT@9TPY9W1222212222222011205210025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118099861219880112WT@9TPY9W1222211222222011207290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111809986120060721WT@9TPY9W12222112204303200000000 -T320230111111809986120160701WT@9TPY9W12222122204398200000000120100923WT@9TPY9W12222112204303200000000 -T12023011111181002222000400461110312110740109010000002505690010000000000000000000000000000000000222222000000002229012 -T2202301111118100221219820712WTTZBZ9T92222212222221012213110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000003086 -T320230111111810022120140707WTTW0@TP022212122204398100000000120140707WTTW0BT9922222112204398100000000 -T12023011111181009424500405941120213110611105000000000005280120000000000000000000000000000000000222222000000002229072 -T2202301111118100941219890923WT@0Y0#9P2222212222223012212110610023011900000000000000000000000000270004000000000000000000000000080000000000000000000000000000 -T320230111111810094120160123WTTYZ#ZZ922222122204398100000000 -T12023011111181013324700411201120233120000300000000000104170080000000000000000000000000000000000222222000000002229022 -T2202301111118101333219570426WT@@P@PT92222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810133120180409WTT9P#BYB22222122206398100000000 -T12023011111181013824200414021120413110939300000000000007710630000000000000000000000000000000000222222000000002229072 -T2202301111118101381219890512WT@P09ZP02221222222221012211110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810138120120401WTT@WZBP#21222222204304100000000 -T320230111111810138120190102WTT#WWP0T22212222204398100000000120180226WT@Z0YWB022212212204398100000000 -T12023011111181018522000413731120233110516300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111118101852219920918WTTBTWPWW2222212222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111810185120160707WT@#0YZWT22222122204301100000000 -T12023011111181022523500410671110723111480300000000000005260010000000000000000000000000000000000222222000000002229012 -T2202301111118102251219820105WT@9TPY9W2222212222222011216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118102251219840202WT@9TPY9W2222211222222021216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810225120070327WT@9TPY9W22222112204309200000000 -T320230111111810225120100327WT@9TPY9W22222122204305200000000120090409WT@9TPY9W22222112204307200000000 -T320230111111810225120200907WT@9TPY9W22222112204398200000000120150118WT@9TPY9W22222112204301200000000 -T12023011111181027122000410051120313110712107440000004006540300000000000000000000000000000000000222222000000002229012 -T2202301111118102711219930902WT@BW0@WB2221222222221012212110441623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810271120220318WTTW9WPWB12212212204398100000000120150701WTTYTY#TW22212212204398100000000 -T12023011111181028224200403941120613111116300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111118102821219780127WT@#TBPWP1222212222222012206210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118102822219940708WT@YYBT9P1222221222222102212990015913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810282120080918WT@9#ZWTB12222122204309100000000120060707WTT#99BP#12222122204310100000000 -T320230111111810282120220407WTTTTY#0912222122204398100000000120120102WT@Y00ZP012222112204305100000000 -T12023011111181040124200414851120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111118104011219850204WTTZZ#00#2222211222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810401120190722WTTW9@Y9Y22222122204398100000000 -T12023011111181049625000401171120113110376300000000000004170080000000000000000000000000000000000222222000000002229012 -T2202301111118104961219980322WTT#WYB0T2211212222221013211110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111181051325000402561120423110939300000000020007710070000000000000000000000000000000000222222000000002229012 -T2202301111118105131219890714WT@0W#B#@2222222222222011214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118105131219850223WTTT0PP9B2222211222222021216290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810513120200914WT@9TPY9W22222112204398200000000120150313WT@9TPY9W22222122204301200000000 -T12023011111181066020800411931120213110611300000000002505280450000000000000000000000000000000000222222000000002229012 -T2202301111118106601219940713WTT#@9WPZ2222212222221012216110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810660120210927WT@PPB@B@22222112204398100000000 -T12023011111181079122000405181120212110611300000000000003160880000000000000000000000000000000211122222000000012219072 -T2202301111118107911219810908WTTZ#@ZWW2221222222221012216110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111810791120040313WT@WP#T#T22212222204312100000000 -T12023011111181083325900402631120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118108332219840312WT@B@99BY1222222222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111810833120060307WT@##9@YT12222122204309100000000 -T12023011111181083724700406631120333110376300000000000003580930000000000000000000000000000000000222222000000592219022 -T2202301111118108372219830726WT@YYBT9P1222222222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118108372219870304WT@YYBT9P1222221222222102212990006011079919000000000000000000000000000000000000000000000000000000000000118200000000000000000000 -T320230111111810837120090518WT@Y9PWYB12222212204307100000000 -T12023011111181092722000412971120232110516300000000000004170710000000000000000000000000000000000222222000000002229022 -T2202301111118109272219660208WT@9PYYBY2222212222215012212110233713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111810927120140518WTT@W9YPZ22222112204302100000600 -T12023011111181101824200403511120233120000300000000120004170990000000000000000000000000000000000222222000000002229022 -T2202301111118110183219530507WTTP0ZP@@2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001470000000000000 -T320230111111811018120140426WTT9BYP0T22222212206301100000002 -T12023011111181103820600402131120213110611300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111118110381219840705WT@ZB009@2222212222225012216110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111811038120130114WT@ZZBT9921222212204304100000050 -T12023011111181117225900403711120333110816300000000000005280150000000000000000000000000000000000222222000000002229022 -T2202301111118111722219800913WT@ZY9Z#@1222221122211012212110293113109900000000000000000000000000000000000000000000000000000000000000000000000742019200000000 -T320230111111811172120200111WTTW@9ZTW12222212204398100000000120180927WTT9TZTY012222222204398100000000 -T12023011111181125825600414551120312110524300000000000003280130000000000000000000000000000000261122222000000652219012 -T2202301111118112581219900408WT@BWP0Z92222212222221012212110392123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111811258120080307WT@00BB@Y22222122204307100000000120080307WT@BPT09B22222122204307100000000 -T12023011111181139223900405971120532111116300000000000007710540000000000000000000000000000000000222222000000002229022 -T2202301111118113923219660707WT@TYY#T92222212222221012212110332711069928000000000000000000000000000000000000000000000000000000000000200000000000000000000052 -T320230111111811392120100707WT@Z00#0@12222122209304100000025120070723WTTP@ZP#Z12222112209308100000025 -T320230111111811392120180527WTTWYWYWB12222112206398100000025120130913WT@9YPP0#12222122206303100000025 -T12023011111181142025900402831110413111034300000000143503230130000000000000000000000000000000308222221000001402219012 -T2202301111118114201219990101WT@P#WYWB1222212222221012209110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111811420120150401WTTZYWWP912222112204398100000278 -T320230111111811420120220407WT@@PW9#P12222212204398100000000120160912WTTBZ0PWZ12222122204398100000000 -T12023011111181151923500404821120333110740300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118115192219730208WTTW@Y@B#2222212222215012216110680013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118115195220040304WTT#0PWZW2221211222211043210190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111811519120070123WTTBT#W0W12222222204307100000000 -T12023011111181153123500405271120313110788300000000000006040050000000000000000000000000000000000222222000000502219012 -T2202301111118115311219770708WT@#WW#Y92222212222221012216110263423011400000000000000000000000000000000000000000000000000000000000000010000000000000000000000 -T320230111111811531120150113WTT@0@@0022222112204301100000000120090112WTT09@WT@22222122204307100000000 -T12023011111181155125600411521120233110611300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111118115513219780223WT@ZZ#TZ#2222212222222012210110065413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111811551120200324WTT@W@Y0W22222122206398100000000 -T12023011111181156322000407791120533110835300000000000000720040000000000000000000000000000000000222222000005822219022 -T2202301111118115632219840714WT@YYBT9P1222222222222012209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118115632219820112WT@YYBT9P1222221222222022206990006011079939000000000000000000000000000000000000000000000000000000000000240000000000000000000000 -T320230111111811563120080223WT@#ZWY9012222112204309100000000 -T320230111111811563120140304WT@P0YZ##12222122204302100000000120120727WTTBPTTW012222122204304100000000 -T12023011111181169723900408291120413111034300000000000007710530000000000000000000000000000000000222222000000002229072 -T2202301111118116971219730124WT@PT@PWT2222212222223012216110950023011400000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111811697120070712WTTW#PWPZ21222212204309100000000 -T320230111111811697120130102WT@B0BB#W21222212204304100000000120110327WT@TB0W@B21222222204305100000000 -T12023011111181172724200404891120212110598119430000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111118117271219960914WT@PZ9TP#2221222222221012216110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111811727120200713WT@#PYY9B22212212204398100000000 -T12023011111181174923500406851120423110978300000000005007710100000000000000000000000000000000000222222000000002229012 -T2202301111118117491219950421WT@9TPY9W2222211222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118117491219980123WT@9TPY9W2222212222222021211290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111811749120210104WT@9TPY9W22222122204398200000000120200911WT@9TPY9W22222122204398200000000 -T12023011111181178224500402301120423111034300000000065007710080000000000000000000000000000000000222222000000002229012 -T2202301111118117821219800311WTT##ZY9T2122222222221011213190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118117821219750914WTTTTYYYT2122221222221011211190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111811782120160127WT@BW#B@Z21222212204398100000000120060101WT@TY@#YB21222212204308100000000 -T12023011111181186223500412161120213110611300000000000005280270000000000000000000000000000000000222222000000002229072 -T2202301111118118621219780907WT@TZ@BY02222212222223012216110880023011800000000000000000002000000000000000000000000000000000000220000000000000000000000001023 -T320230111111811862120160718WT@ZP#ZT@22222122204398100000050 -T12023011111181198822700408351120313110761300000000000003920250000000000000000000000000000000261122222000000012219072 -T2202301111118119881219780308WT@YTYBBZ1222222222225012213110840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111811988120070701WT@@BP#PZ22222112204308100000000120050205WT@BBBT0022222112204311100000000 -T12023011111181201224100412771120833111199300000000001108880090000000000000000000000000000000000222222000000002229022 -T2202301111118120122219870527WT@YYBT9P1222222222222012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118120122219770714WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812012120090507WT@P@9ZPY12222212204307100000000420060923WT@YYBT9P12222222204308900000000 -T320230111111812012120110518WT@PZTZTT12222222204305100000000120100104WT@PPP00#12222212204306100000000 -T320230111111812012120220427WT@BTBBZ012222222204398100000000120150127WTT#9ZTZB12222222204398100000000 -T12023011111181203825900406841120533110835300000000141006540120000000000000000000000000000000000222222000000002229022 -T2202301111118120382219780526WT@YYBT9P1222222222221012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118120382219710318WT@YYBT9P1222221222224102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812038120040723WTTTY0YZZ12222222204312100000000 -T320230111111812038120100907WT@00BZW912222212204306100000000120080914WT@W@Y0Y@12222212204309100000000 -T12023011111181204024200414851120213110446300000000000005280090000000000000000000000000000000000222222000000002229042 -T2202301111118120401220030701WT@PWW#YT2222212222221012211110006023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812040120220318WTTY#Z99@22222112204398100000000 -T12023011111181211120200409311120212110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111118121111219960218WTTT9@#W#2222212222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812111120220112WT@0#Y00Y22222112204398100000000 -T12023011111181228824700406491120333110740300000000000005280640000000000000000000000000000000000222222000000002229022 -T2202301111118122883219760426WTTB0YZ#Z2222212122221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001261000000000000 -T320230111111812288120150127WT@#T99YW22222122207398100000000120090714WTTYPYY@@22222122207306100000000 -T12023011111181234422700401571120313110766300000000000006540030000000000070003000000000000000000222222000000002229012 -T2202301111118123441219830923WT@@P#B0Y1222211222221012209110105022011900000000000000300001000000000000000000000000000000000000040000000000000000000000000000 -T320230111111812344120150413WT@@0BZ9@12222112204301100000000120130913WTT9W#T#Y12222112204304100000000 -T12023011111181235022000408891120212110611300000000000105280790000000000000000000000000000000000222222000000002229072 -T2202301111118123501219740704WT@PTPZTP2221212222221012213111140023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111812350120050923WTT#BYPB921222222204311100000000 -T12023011111181235420800410781120312110766300000000000002700140000000000000000000000000000000000222222000003842219072 -T2202301111118123541219690922WTTT@B0WB1222222222221012216110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812354120110107WTT9ZW9Y#12212212204303100000192120100902WTT0#ZB#P12222212204305100000192 -T12023011111181237421000411361120213110559300000000004303790140000000000000000000000000000000000222222000001492219012 -T2202301111118123741219980224WTTTW0BPY2222212222221012216110154521011810000000000000000000000000000000000000000000000000000000000000059200000000000000001363 -T320230111111812374120200411WTTP@@#ZT22222122204398100000000 -T12023011111181239225200407301120313110835300000000000003920080000000000000000000000000000000261122222000000012219012 -T2202301111118123921219950312WTT@@9ZB@2222212222221012209110085223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812392120190104WT@PZ####22222122204398100000000120120713WTTY#T#TZ22222112204304100000000 -T12023011111181246720600404121120213110598300000000000003960030000000000000000000000000000000132222122000000002229072 -T2202301111118124671219680722WTT#9TW092222122222223012211920780023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812467120050413WTTTZ#TWB22221222204311100000000 -T12023011111181246825000401171120213110611300000000000005280540000000000000000000000000000000000222222000000002229012 -T2202301111118124681219760104WT@#W0B@P2222212222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812468120050118WT@00ZPTP22222122204312100000000 -T12023011111181252224700409381120233120000300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111118125223219470507WT@0BB9B@1222211112222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001379000000001443 -T320230111111812522120160724WT@#ZBZ@Y12222112206398100000000 -T12023011111181270023500411471120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111118127001219860526WT@9TPY9W2222221222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118127001219910918WT@9TPY9W2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812700120170326WT@9TPY9W22222112204398200000000120090112WT@9TPY9W22222222204306200000000 -T12023011111181275125200400391120313110835300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111118127511219780721WTT#@#99@2222212222225012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812751120070118WT@PW90Y@22221122204309100000000120060126WT@WB#BTP22221112204310100000000 -T12023011111181278522000408891120233110611300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111118127852219900718WT@0#P#992221222222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111812785120180414WT@WY0ZWB22212212204398100000000 -T12023011111181278823500411471120233110258300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111118127882219760727WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812788120080309WT@P0PZB012222112204306100000000 -T12023011111181299020600407031120312110810300000000000006540900000000000000000000000000000000000222222000000002229072 -T2202301111118129901219760712WT@09B#Y#1221222222221012212111140023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111812990120110122WT@TB#90012212222204305100000000120060105WT@TTTYPW12212212204309100000000 -T12023011111181306620800410781120232110516300000000000004170680000000000000000000000000000000000222222000000002229022 -T2202301111118130661219940311WTTYY#P@Y2222212222221012212120730023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111813066520170113WTTT#PYY@21222212104398109140000 -T12023011111181314021400408021120333110516300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111118131402219970313WT@YYBT9P1222212222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111813140120210312WTT@9W9#W12222222204398100000000120190123WTTY@T9@W12222112204398100000000 -T12023011111181318325900403711120333110740300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111118131833219490714WT@Y99ZT02222212122223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001118000000000000 -T320230111111813183120140927WT@#0ZBZZ22222122206301100000000120130514WT@PYTP@W22222122206302100000000 -T12023011111181322021000411361120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118132203220020404WT@TTWPTP2221222222221012212110006011069926000000000000000000000000000000000000000000000000000000000000159600000000000000000000 -T320230111111813220120070923WT@PP9@YW22212212209308100000000 -T12023011111181324523500407161120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111118132451219970713WT@09ZP#W2222212222222011214290025823011800000000000000000000000000000000100001000000000000000000000000000000000000000000000000 -T2202301111118132451219940102WT@BPB#YW2222211222222021214290025822011900000000000000310003000000000000170000000000000000000000110000000000000000000000000000 -T320230111111813245120200111WTTWY#YP#22222122204398200000000120180509WT@#P0Y##22222122204398200000000 -T12023011111181327823500402711120823111690300000000300012890040000000000000000000000000000000000222222000000002229012 -T2202301111118132781219760422WTTB9ZZTW2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118132781219740413WT@@99TB92222211222222021212290055523011800000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111813278120080921WTTZWZ@9T22222122204308200000000120070104WT@#ZWZ0922222112204309200000000 -T320230111111813278120140113WT@WZ@#0P12222122204303200000000120110201WTT#TPYP#22222112204305200000000 -T320230111111813278120210118WTT@@900922222112204398200000000120170312WT@Y#WW9022222112204398200000000 -T12023011111181335522000405821120333120000300000000000005280600000000000000000000000000000000000222222000000002229022 -T2202301111118133553219610123WT@##99@92221221222225012216110015911069939000000000000000000000000000000000000000000000000000000000000433300000000000000000000 -T320230111111813355120140426WT@Y#PT9T22212212206302100000000120130414WT@Z#90W#22212222206303100000000 -T12023011111181339225900406651120233110493109310000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111118133922219900911WTT9TZ0P@2222212222211012212110303013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111813392120200213WT@@T#PPZ22222122204398100000000 -T12023011111181342622000414461120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111118134261219990311WT@#0WB902221222222221012205110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111813426120210901WTTP@YB#T22212222204398100000000 -T12023011111181357523500407611120213110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111118135751219870326WT@Z#ZBP92222212222225012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111813575120210105WT@@B@0B@22222122204398100000000 -T12023011111181364120800411601120313110835300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111118136411219740326WT@T0B@TY2122221222222012212110243623010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118136411219810127WT@W00PPW2222212222222022213190124823099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111813641120070311WTTZ9Z0#922222122204308100000000 -T12023011111181370321700407751120233120000300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111118137033219650713WT@PYTWPT2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000483700000000000000000000 -T320230111111813703120100312WT@Y@PBWP22222122206305100000000 -T12023011111181371522000403891120333110704300000000000005280620000000000000000000000000000000000222222000000002229022 -T2202301111118137152219800309WT@BW@YP91222222222213012212110243613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111813715120080114WTT9ZT0#B12222212204307100000000120060921WTTY0WBT#12222122204309100000000 -T12023011111181382124200414851120213110610300000000000002900320000000000000000000000000000000211122222002600012219012 -T2202301111118138211219900112WT@YW9BZT2221222222221012211110332723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111813821120200527WTTYW0WWW12212212204398100000000 -T12023011111181399622000404841120212110611300000000000005280560000000000000000000000000000000000222222000000002229012 -T2202301111118139961219940111WTTWPW9@T2221222222221012212110570323011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111813996120130718WT@PY0#PP12222222204302100000000 -T12023011111181405122000406951120212110516300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111118140511219860327WTT9@9B@Y2222212222223012213110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814051120140523WTT0W#0TZ11222112204302100000000 -T12023011111181407323700414331110433110542300000000065704590210000000000000000000000000000000000222222000000002229021 -T2202301111118140732219740909WT@YYBT9P1222212222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118140732219740704WT@YYBT9P1222211222221022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814073120060121WT@T@#TY@12222112204305100000000120040112WTT0PTW@912222122204312100000000 -T12023011111181411222000411551120213110598300000000000005280230000000000000000000000000000000000222222000000002229072 -T2202301111118141121219800126WTTTTP0002221222222221012216111530023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814112120080523WT@Y@99ZT22212212204308100000000 -T12023011111181414720600414771120313110835300000000000006540710000000000000000000000000000000000222222000000002229072 -T2202301111118141471219970518WT@0YWWP92221222222221012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814147120200501WTT#9ZPBT22212212204398100000000120140213WTTYPBBTT22212222204302100000000 -T12023011111181427720200409311120212110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111118142771219860224WTTBYPZ#B2222212222225012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814277120090911WTT9ZPP@W22222122204306100000000 -T12023011111181431422000400591120233120000300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111118143143219630704WT@Y@WTBP1222212222225012213110114911069944000000000000000000000000000000000000000000000000000000000000483400000000000000000000 -T320230111111814314120100904WTTZ@#Y@@12212112206305100000000 -T12023011111181436724200403461120333120000300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111118143673219670711WTTW#@0992222211222222012213110006013069900000000000000000000000000000000000000000000000000000000000000439100000000000000000000 -T320230111111814367120140223WT@0BY9P@22222122206301100000050120100313WTTZ0W09T22222112206304100000050 -T12023011111181444822000408561120512111116300000000000008880320000000000000000000000000000000000222222000000002229012 -T2202301111118144481219900904WT@#ZY99Z2222212222225012216110332721011722000000000000000000000000000000000000000000000000000000000000137400000000000000000000 -T320230111111814448120170921WT@Y9#BB022222112204398100000000120150101WT@@ZWBPT22222112204398100000100 -T320230111111814448120210727WTT09ZWBP22222122204398100000000120190108WTT#WB9TB22222112204398100000000 -T12023011111181446124700409321120312110817300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111118144611219950718WT@#YT#ZY2222212222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814461120220927WTTW9B99022222122204398100000000120180911WTT0BTWPZ22222112204398100000000 -T12023011111181446424100402401120212110560300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111118144641219910127WT@P#@ZBT2221222222221012216110293123011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111814464120170907WT@9Z9T@P22212222204398100000000 -T12023011111181453324200403511120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111118145331219970318WTTBYT9@Z2222212222221012210110273323011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111814533120150201WT@BPYWT022212212204301100000000 -T12023011111181458324700406701120212110341300000000010003160990000000000000000000000000000000211122222000000012219072 -T2202301111118145831219790704WT@PP#PWZ2222212222221012216111100023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814583120070902WT@@#WZZ#22222122204307100000050 -T12023011111181464725900406082120723211490300000000000011650170000000000070012000000000000000000222222000000002229032 -T2202301111118146471219930527WTTZ#@PB@1222222222222011210190342623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118146471219930108WTTWZ9@BZ1222221222222021212190174323011800000000000000000000000000000000000000000000000000000000270000000000000000000000000000 -T320230111111814647120090723WTTZWW@WW12222212204307100000000 -T320230111111814647120120704WT@9T#YTZ12222212204305100000000120110726WTTBPBBYP12222212204306100000000 -T320230111111814647120220723WT@W0W@PB12222222204398100000000120200207WT@TYYY9T12222212204398100000000 -T12023011111181473724700409321120212110516300000000000004170840000000000000000000000000000000000222222000000002229072 -T2202301111118147371219740718WT@0Z##9B2222211222221012212120850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814737520080127WT@@@BBY922222112104306109140000 -T12023011111181483525900403551120413110835300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111118148351219940721WTTZZ##ZY1222222222222012214290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118148352219830707WT@YYBT9P2222221222222022208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814835120210401WT@@ZW9T@12222122204398100000000120200114WTTY9WZW912222112204398100000000 -T12023011111181484923500408281120313110835300000000000006540210000000000000000000000000000000000222222000000002229012 -T2202301111118148491219990207WTTYY#ZY#1221222222221012212110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814849120210123WT@YWWBY912212122204398100000000120180714WT@P@P@0Y12212122204398100000050 -T12023011111181486620600412681120233110493300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111118148662219710426WTTYYP0BT2222212222215012206110085213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111814866120100412WTT0B9YP#22222122204306100000000 -T12023011111181488622000409411120213110598300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118148861219840712WT@9TPY9W1222222222225012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814886120150327WT@9TPY9W12222222204301200000000 -T12023011111181489422000407411120213110611300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111118148941219920412WTTT09YW@2222212222224012212210105023011800000018000200000000000000000000000000000000000000000000040000000000000000000000000625 -T320230111111814894120130313WT@PBYT0T22222112204302200000000 -T12023011111181490022000404841120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111118149001219790509WTT@0PBZT2222122222225012212210075323011800000000000000000000000000000000380001000000000000000000000000000000000000000000000000 -T320230111111814900120050702WT@9B0W@B22221222204309200000000 -T12023011111181490823500404821120412110910300000000000005280380000000000000000000000000000000000222222000000002229072 -T2202301111118149081219850523WT@9ZB9TP2222222222225012213111100023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111814908120070214WT@9@ZTP@12222122204309100000000 -T320230111111814908420150923WT@WZ@B@@12222112104301109140000420140404WTTBZY@#B12222112104302109140000 -T12023011111181498022000405841120313110835300000000002301680930000000000000000000000000000000000222222000003602219012 -T2202301111118149801219760422WT@Z0PZ#Y2222212122222012212110332723109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T2202301111118149801219700502WT@PZZ@@W2222211222212022212290134723089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111814980120050226WT@@WB9YZ22222122204311200000000 -T12023011111181518622000405181120413111032139840000020007710040000000000000000000000000000000000222222000000002229012 -T2202301111118151861219960901WTT9WW9P02221222222222012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000002094 -T320230111111815186120170318WT@WWYBBT22212212204398100000000 -T320230111111815186120200227WT@WY#9Z@22212212204398100000000120180304WT@WWZYW922212222204398100000000 -T12023011111181524922000413681120212110611300000000010005280180000000000000000000000000000000000222222000000002229012 -T2202301111118152491219890902WTT0YB9B92221212222223012212120491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815249120160407WTTZ0TPPT22222122204398100000000 -T12023011111181530220800405391120213110548300000000000005280390000000000000000000000000000000000222222000000002229012 -T2202301111118153021219980301WT@BZZZ#T1222222222223012212120402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815302120200913WT@B#TBT@22222122204398100000000 -T12023011111181537720200409311120333110760300000000000005280550000000000000000000000000000000000222222000000002229022 -T2202301111118153773219700123WTT##P@W@2222212222224012212110025811069927000000000000000000000000000000000000000000000000000000000000165200000000000000000000 -T320230111111815377120180504WT@##0TPZ22222122206398100000000120140107WT@ZT@#T922222122206398100000000 -T12023011111181539322700413181120333110704300000000000005280550000000000000000000000000000000000222222000000002229022 -T2202301111118153932219930427WT@P#TTT01222222222211012212110075313089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111815393120160401WT@0#YPT#12222222204398100000000120130321WTTYT@#TB12222212204302100000000 -T12023011111181542621700406141120533111116300000000000006540050000000000000000000000000000000000222222000000002229022 -T2202301111118154261219910907WTTBTB0Y#2222212222225012214110065423099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815426120170313WTTP#TPZZ22222112204398100000000420150705WT@9W9BWP22222112104398109140000 -T320230111111815426420150705WTT0PTZY022222112104398109140000120140126WTTYBYB@Y22222122204301100000000 -T12023011111181547122000411551120623111341300000000070010090090000000000000000000000000000000000222222000000002229012 -T2202301111118154711219660723WT@TYZBZW1221221222222011212190134723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118154711219930701WT@@T@PZB2221222222222011212290263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815471120180524WTT0@9T@Z22222212204398100000000120130227WT@0#TTWY22212222204301100000000 -T320230111111815471120210104WT@#@WZYY22222222204398100000000120190301WT@#BBY#T22222222204398100000000 -T12023011111181548822000413731120213110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111118154881219790323WT@WZ@W9#2122222222221012211120233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815488120210312WTTYZZZZW21222222204398100000000 -T12023011111181562922700408351120613111339300000000000008880020000000000000000000000000000000000222222000000002229012 -T2202301111118156291219760121WT@W#@ZZW1222221222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815629120070212WT@#99@0P12222222209310100000000 -T320230111111815629120140907WTTTY090012222212204302100000000120080718WTT0W09#P12222212209308100000000 -T320230111111815629120200712WT@Y@PW#Z12222212204398100000000420170423WTTY@W#BT12222212104398109140000 -T12023011111181578322000410051120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111118157831219990101WT@WB#ZYT2222212222221013210190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111181583520600414871120513111116300000000000008880060000000000000000000000000000000000222222000000002229012 -T2202301111118158351219780726WT@0#WPTZ2222212222225012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815835120060407WTTW9WT@@22212112207310100000000120040121WT@ZY#0@922212212204310100000000 -T320230111111815835120070101WTT@P9YPP22212122204309100000000120060307WTTY@PZBW22212122207309100000000 -T12023011111181584122000407411120413110939300000000000007710140000000000000000000000000000000000222222000000002229012 -T2202301111118158411219960913WT@PW@B992221222222221012210110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815841120170513WT@0#0PYT12212222204398100000000 -T320230111111815841120200323WT@0Z09ZZ12212212204398100000000120190104WT@TZW00W12212212204398100000000 -T12023011111181589122000407831120232110516300000000000004170930000000000000000000000000000000000222222000000002229022 -T2202301111118158912219540207WT@P#PZWZ2222211222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111815891120050727WT@Y#YTP022122212204310100000000 -T12023011111181590624200404891120432110959300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118159062219790107WT@YZ9BB02222212222211012209110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111815906120060926WT@BPWTZZ22212222204310100000000 -T320230111111815906120150312WTTZZ@@TW22212212204398100000000120080421WT@ZYZWP#22212222204308100000000 -T12023011111181591422000408891120312110670300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111118159142219540423WT@PB0ZT#2221221222212012212190114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118159141219660423WTTZ9BPP02221222222222022212191060023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815914120070113WTT#09Y0B22212222204310200000000 -T12023011111181594823900408291120332110740300000000000005280910000000000000000000000000000000000222222000000002229022 -T2202301111118159482219880927WTT#009PW2122222222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111815948120190512WT@B9YY##21222222204398100000000120150923WT@PWW9@Y21222222204398100000000 -T12023011111181596022700406182120213210598300000000000005280120000000000000000000000000000000000222222000000002229032 -T2202301111118159601219840713WT@9TPY9W1222212222221012298210134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111815960120130318WT@9TPY9W12222112204302200000000 -T12023011111181600124200414721120233110557300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118160013219690209WT@ZZ90@@2222211222222012212110830013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816001120100711WT@TB9@PP22222122206306100000000 -T12023011111181604524200413921120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118160453219730126WT@@@TZBP2222212222224012212110006011069940000000000000000000000000000000000000000000000000000000000000416000000000000000000000 -T320230111111816045120120211WTTYBW#BY22222122207304100000000120080914WTTY@Z9BB22222122207308100000000 -T12023011111181604720600402131120213110557300000000000005280760000000000000000000000000000000000222222000000002229072 -T2202301111118160471219780727WT@W0#BZP2222212222225012209110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816047120190518WTTP#B@YP22222122204398100000041 -T12023011111181615622000407241120423111034300000000020004460020000000000000000000000000000000000222222000003252219012 -T2202301111118161561219770105WT@BWPYPB2222122222222011216190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118161561219610307WTT@@9#@#2222121222222021212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000324 -T320230111111816156120110727WTT9ZYTBT22221212204304100000000120090927WT@ZW#B#P22221222204307100000000 -T12023011111181616224200402981120413110939128600000064205280030000000000000000000000000000000000222222000000002229012 -T2202301111118161621219900402WT@ZPBZ#@2222212222221012216110045623011700000000000000000004000000240004000000000000000000000000040000000000000000000000000000 -T320230111111816162420140112WTTZ@TY9922222112104398108220000 -T320230111111816162120190718WT@W@WZ0022222122204398100000000420180412WT@PWPBY922222112104398109140000 -T12023011111181617024200404421120313110776300000000000006540340000000000000000000000000000000000222222000000002229092 -T2202301111118161701219870923WT@TW990Y2221222222221012212110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816170120180126WTTWZZPW022212212204398100000000120160507WTTWWYBTY22212222204398100000000 -T12023011111181632522000406191120523111057300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111118163251219790104WT@PYT@#02222221222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118163251219810302WTTBB0@ZT2222222222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816325120100713WT@Z90#B022222212204303200000000 -T320230111111816325120180707WTTW##90#22222222204398200000000120150912WT@WPZYPT22222222204301200000000 -T12023011111181642820600402131120513111116300000000000108880990000000000000000000000000000000000222222000000002229012 -T2202301111118164281219880705WT@9YBY#Z2222212222221012213110352521011799000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816428120080727WTT#P0@PW22222122207307100000066120080123WTTTTTPWW22222112204307100000000 -T320230111111816428120180207WTTTZ9P#Z22222122204398100000000120130701WT@W#YY#W22222112204303100000000 -T12023011111181649122700407491120433110835300000000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111118164912219720901WT@YYBT9P1222222222221012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816491120060227WTTPWB@0T12222112207309100000000 -T320230111111816491120130212WTTWY#Z0W12222222204303100000000120080923WTT0@T9W#12222222204308100000000 -T12023011111181650124100405611120233110376300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111118165012219810313WT@YYBT9P1222212222221012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816501120150723WT@0TBY9911222222204398100000000 -T12023011111181657122000405321120213110364300000000000003160290000000000000000000000000000000211122222000000012219012 -T2202301111118165711219710123WT@B00B9T2222212222221012213110293123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816571120090408WT@Y9#BBB22222122204305100000000 -T12023011111181658222000408341120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111118165821219850704WT@PZT#Z@2222212222222011214290065421011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118165821219810726WT@YB000W2222211222222021213290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816582120130313WTTZ@Y#W022222112204303200000000120120414WT@W0@9BT22222112204305200000000 -T12023011111181673620600407032120213210598300000000000005280120000000000000000000000000000000000222222000000002229032 -T2202301111118167361219660923WT@P09@P@2222122222224012212910134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816736120140107WTTWY0T0B22221212204301900000000 -T12023011111181680524200404702120323210786300000000001206540040000000000140001000000000000000000222222000000002229032 -T2202301111118168051219920702WT@0#YW#B1222222222222011212190035722011900000000000000290004000000000000000000000000000000000000070000000000000000000000000000 -T2202301111118168051219920726WT@@9#WP#1222211222222021212190035722011900000000000000330004000000000000000000000000000000000000090000000000000000000000000000 -T320230111111816805120210223WTTZ90BBB12222112204398100000000 -T12023011111181687225900408111120313110670300000000000005230020000000000000000000000000000000000222222000001312219042 -T2202301111118168721219990905WTTY#Z#BP2122222222221012211110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111816872120210701WT@@#@0TB11222222204398100000000120170901WT@90BY0#11222222204398100000000 -T12023011111181693322000410051120233120000300000000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111118169333219630307WT@0BTBT92222212222222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111816933120160101WTT#YPTTY22122212206398100000000 -T12023011111181703220900411721120213110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111118170321219980704WT@#BWZ##2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817032120210414WTTB0W0@W22222122204398100000000 -T12023011111181704525600414551120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118170453219750312WTT#9@T9W2221222222221012214120860011069924000000000000000000000000000000000000000000000000000000000000211300000000000000000000 -T320230111111817045120060404WTTBYT9ZZ22212212207310100000000 -T12023011111181717522000408891120323110940300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111118171751219910723WTTW#T9@@2222211222221011211190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118171751219940427WTTBP#T091211122222223011216110095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817175120220712WTTBTTBP@22221212204398100000000 -T12023011111181717624700406741120213110611300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111118171761219960407WTTPWY9092222212222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817176120210918WTT09BTB022222122204398100000000 -T12023011111181717723500408281120213110611300000000028805280480000000000000000000000000000000000222222000000002229012 -T2202301111118171771219740413WT@9@90B#2122212222224012215110600023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817177120060401WT@T@#9YZ22122112204309100000000 -T12023011111181725823500411471120513111185300000000025708070120000000000000000000000000000000000222222000000812219012 -T2202301111118172581219860904WTT@@ZYB92221222222221012216110580221011806000000000000000000000000000000000000000000000000000000000000032000000000000000000000 -T320230111111817258120170905WT@B#9W@Y22212212204398100000000120150123WTTWZYT0B22212212204398100000000 -T320230111111817258120200326WT@YPBPWP22212222204398100000000120180926WTT0T@YZZ22212222204398100000000 -T12023011111181733825900402721120233110516300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111118173383220030702WT@W99P@P1222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817338120220101WT@#PYT0Z22222222208398100000000 -T12023011111181734525000409431120313110516300000000000003920170000000000000000000000000000000261122222000000012219072 -T2202301111118173451219930107WTT0B#TT#2222212222221012213110690023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817345120160904WT@PTZ9#W22222122204398100000050120150427WT@@W#BP022222122204301100000050 -T12023011111181743824200403511120213110611300000000000005280350000000000000000000000000000000000222222000000002229012 -T2202301111118174381219940527WTT@W0@P#2222212222221012210110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817438120190701WT@T99#W#21222222204398100000000 -T12023011111181751325000406021120333110704300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111118175133219610523WTT9@WT902222212222212012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000013700000000 -T320230111111817513120130312WTTW@90#Y12222122206302100000000120050707WT@ZZWZ9922222112206309100000000 -T12023011111181766524200403511110213110524114090000000004420010000000000000000000000000000000000222222000000002229012 -T2202301111118176651219980113WTT@0P@TP2222112222225012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817665120220709WT@W@Y0YY22211222204398100000000 -T12023011111181767120600402141120213110598300000000356505280640000000000000000000000000000000000222222000000002229072 -T2202301111118176711219910512WT@TTPYZZ2222212222221012212110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817671120180104WTTWPB@YP22222122204398100000000 -T12023011111181776224200414351120713111490300000000000011650150000000000000000000000000000000000222222000000002229012 -T2202301111118177621219890401WTTTZ@@BT2222122222223012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817762120100418WTT00PZ@022221212204305100000000120090427WTTWW9Y9@22221212204306100000000 -T320230111111817762120140724WT@@@P90B22221212204301100000000120120711WT@T@#ZT#22221222204303100000000 -T320230111111817762120200112WTTZ#Z9YZ22221222204398100000000120170307WTTW#@9WB22221222204398100000000 -T12023011111181781725900402631120433110939300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111118178172219960523WTTB9#@WW2222212122211012210190006013109900000000000000000000000000000000000000000000000000000000000000000000000413052100000000 -T2202301111118178172219920308WT@WW#W@Z2222211122211102212190006013109900000000000000000000000000000000000000000000000000000000000000000000000727020700000000 -T320230111111817817120220422WT@@P@9@P22222112204398100000000120210424WTTW0@@9012222122204398100000000 -T12023011111181785824200403941120233110516300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118178582219610904WTT@@BPBB2222211222215012211110392113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111817858120070418WT@0#@9Y022222122204307100000000 -T12023011111181790624700401011110213110516300000000000000170010000000000000000000000000000000000222222000000002229012 -T2202301111118179061219720107WT@BP0@ZZ2222211222221012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817906120050413WTT@PZ#T922222222204311200000000 -T12023011111181792522000402321120233120000300000000000004170680000000000000000000000000000000000222222000000002229022 -T2202301111118179253219720412WTT99W9ZB2222212222221012212110134711069929000000000000000000000000000000000000000000000000000000000000475400000000000000000000 -T320230111111817925120130921WTT@99#@B12222122206301100000050 -T12023011111181792622000402152120323210724300000000000006540040000000000000000000000000000000000222222000000002229032 -T2202301111118179261219720501WT@9TPY9W1222222222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118179261219730721WT@9TPY9W1222221222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817926120060308WT@9TPY9W12222212204309200000000 -T12023011111181794024500405781120213110598104580000046505280100000000000000000000000000000000000222222000000002229012 -T2202301111118179401219930123WT@0BB9P02222212222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111817940120130426WTT#@TWBZ22222112204303100000000 -T12023011111181794422000406191120232110516118830000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111118179442219800424WTTB@P#0T2221222122211012214110006013109900000000000000000000000000000000000000000000000000000000000000147300000785014900000000 -T320230111111817944120200107WT@YB0PTB22212212204398100000000 -T12023011111181804724700413762120213210611300000000009505280090000000000000000000000000000000000222222000000002229032 -T2202301111118180471219660213WT@TZ#0#W2222122222224012207910105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818047120050523WTTZ0TY@022221222204311900000000 -T12023011111181812322000406951120212110583300000000000010560550000000000000000000000000000000000222222000000002229072 -T2202301111118181231219840123WT@ZB@0YY2221212222221012213110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818123120070527WT@BWWWBB21212112204309100000050 -T12023011111181817125200412081120233110516300000000105004170130000000000000000000000000000000000222222000000002229022 -T2202301111118181711219960301WTTBY9WWY2222212222221012212110730023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818171520170318WTT##9T9P22222122104398106090000 -T12023011111181819024200414021120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118181901219860221WT@#@Z0#Z2222212222221012216110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818190120050426WT@#PTY@T12222112204311100000000 -T12023011111181823824700408301110213110516106070000000003400140000000000000000000000000000000000222222000000002229012 -T2202301111118182381219910112WT@B0@9YY2222212222221012212120154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818238120140127WT@Z@#WZ@22222122204301100000000 -T12023011111181825622000412691120523111195300000000000004240300000000000000000000000000000000308122222003800012219072 -T2202301111118182561219850304WTT0Y0TTT2221222222222011209110810023011300000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118182561219830304WT@@BZPP02221221222222011213190045623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818256120060913WTTZPZYP022212212204310100000000 -T320230111111818256420210313WT@WWZWTP22212222104398100300000120080327WT@9B9YYT22212212204307100000000 -T12023011111181828621700407751120213110599300000000000003160030000000000000000000000000000000211122222000000012219072 -T2202301111118182861219890701WTTWW0YY#2222212222221012212110890023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818286120200414WT@9YT@YW22222122204398100000000 -T12023011111181833922000409871120213110611300000000000003160150000000000000000000000000000000211122222000000012219012 -T2202301111118183391219810921WT@@#Y#Z#2221221222225012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818339120140712WT@#0@WZW22212212204301100000000 -T12023011111181840521700406141120213110376300000000000003160150000000000000000000000000000000211122222000000012219012 -T2202301111118184051219970301WT@T0##@T2222212222221012210110293121011932000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818405120140426WTTBPBWB022222112204301100000000 -T12023011111181843220800414651120233110516300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111118184322219770327WT@YY9P@T2222212222211012212110640013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111818432120160907WTTBWZ9TY22222112204301100000000 -T12023011111181846521700409521120213110611300000000111105280080000000000000000000000000000000000222222000000002229012 -T2202301111118184651219820523WTT0#Y0BW2222212222225012213110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000009760 -T320230111111818465120170127WT@Z0BBYT22222122204398100000000 -T12023011111181847724700408301120413111034300000000000006930230000000000000000000000000000000000222222007700012219012 -T2202301111118184771219830505WT@9W09TW2122222222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818477120070412WT@Y#ZB0@21222222204308100000000 -T320230111111818477120100304WT@9W@WBB21222212204304100000000120090221WTT9@YZBP21222212204306100000000 -T12023011111181863522700408352120423211034300000000000007710070000000000000000000000000000000000222222000000002229032 -T2202301111118186351219910404WT@9TPY9W1222222222222011209290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118186351219900707WT@9TPY9W1222221222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818635120190514WT@9TPY9W12222212204398200000000120130904WT@9TPY9W12222212204303200000000 -T12023011111181873421000405411120312110766300000000002506540080000000000000000000000000000000000222222000000002229012 -T2202301111118187341219950312WTTPT#YPW1222212222221012209110411923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818734120220907WTT@TPZ#W22222112204398100000000120120907WTTZZB@0T12222122204304100000000 -T12023011111181885022000409411120333110835300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111118188503219610501WT@0Y#Z@W2222212222225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818850120210427WT@0ZTP9022222122206398100000000120200412WTTW9ZWPW22212212206398100000000 -T12023011111181889925000400451120312110766300000000000006540160000000000000000000000000000000000222222000000002229042 -T2202301111118188991219830501WTT#0ZPB#2122222222221012216110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111818899120110111WT@B##PBZ21222222204305100000000120100427WTT9WPZ@B21222222204306100000000 -T12023011111181903221700403821120333120000100500000000005280950000000000000000000000000000000000222222000000002229022 -T2202301111118190323219750505WTT#Y0#B@2222212222225012213110095113069900000000000000000000000000000000000000000000000000000000000000000000000000000033640000 -T320230111111819032120120407WTTPBTYY#22222112206303100000000120100412WT@P0Y9ZY22222122206305100000000 -T12023011111181908125900407101110213110516300000000000002550060000000000000000000000000000000000222222000000002229042 -T2202301111118190811219930412WT@WTWP#T1222222222221012216110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819081120150921WTTP9WTBW12222212204398100000000 -T12023011111181912024200414021120313110786300000000000006540500000000000000000000000000000000000222222000000002229072 -T2202301111118191201219860422WT@YW@YP92222212222221012212111300023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819120120070404WT@WYTW#Z22222112204308100000000120050923WTTP0TBYY22222112204311100000000 -T12023011111181913924200409731110423110939300000000000004970010000000000000000000000000000000000222222000000002229012 -T2202301111118191391219870926WTT@B#W0W2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118191391219870704WTT#PZTBP2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819139120210912WT@@WYBB022222122204398200000000120130301WTTP0PZTT22222122204304200000000 -T12023011111181914222000412231120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118191421219730523WT9TT@T9#2221222222225012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819142120070712WTT#TP9Y#22212212204308100000080 -T12023011111181921824700413891120213110557300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111118192181220010712WT@ZT9B0Z2222212222222013212290075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118192185219980926WTT90@9PZ2222211222222023212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111181925923500405271120313110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118192591220040312WTTTBYZ@@2222122222221012209910035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819259120210504WTT9ZYBT922221222204398100000000120200421WT@B@@ZB022221222204398100000000 -T12023011111181935924200414021120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118193592219760907WTTB#BZWZ2222212222211012212110491113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111819359120110404WT@#Z09ZT22222112204305100000000 -T12023011111181943122000405321120212110611105400000000005280580000000000000000000000000000000000222222000000002229072 -T2202301111118194311219890727WT@@#P@ZW2221222222221012216110980023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819431120170711WT@#0B@YY22212222204398100000000 -T12023011111181948922700413181120623111395300000000000010090060000000000000000000000000000000000222222000000002229012 -T2202301111118194891219900312WT@T@B0PT2222212222222011212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118194891219910323WTTBTTW#P2222221222222021212290075323011800000000000000000000000000000000110001000000000000000000000000000000000000000000000000 -T320230111111819489120140411WT@P9T#Y#22222122204303200000000120120722WTTTBTB9B22222112204304200000000 -T320230111111819489120190701WTT9Y@P9022222112204398200000000120150709WTTTY9PWP22222112204301200000000 -T12023011111181949322700408351120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118194932219920223WT@00@TT92221212222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111819493120120912WT@@WYB9#22212212204303100000000 -T12023011111181955023500404531120312110764300000000000102760160000000000000000000000000000000000222222000003782219072 -T2202301111118195501219710321WT@0WWZBZ2222212222225012212110740021011810000000000000000000000000000000000000000000000000000000000000080700000000000000000000 -T320230111111819550120090901WT@#ZZ9ZT22222112204307100000000120090901WT@TZZTP#22212222204307100000000 -T12023011111181957524200404421120623111339300000000000010090020000000000000000000000000000000000222222000000002229012 -T2202301111118195751219810921WT@T9B9W02222212222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118195751219860905WTT@#9#Y92222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819575120090726WT@9TPY9W22222112204308200000000120070907WT@9TPY9W22222112204310200000000 -T320230111111819575120190501WT@9TPY9W22222112204398200000000120120726WT@9TPY9W22222112204304200000000 -T12023011111181964325900406651120333110631106930000000005280360000000000000000000000000000000000222222000000002229022 -T2202301111118196433219810112WTT@ZPBZ@2222212122222012212110960011069925000000000000000000000000000000000000000000000000000000000000167700000967000000000000 -T320230111111819643120130724WTT0BZ##Y22222122207302100000050120120313WTTBB9@9922222222207303100000050 -T12023011111181969122700408351120233110291300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111118196912219900207WT@YYBT9P1222212222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819691120180124WTTZBY@9W12222222204398100000000 -T12023011111181980023700414331120622111434300000000002210090210000000000000000000000000000000000222222000000002229012 -T2202301111118198001219930308WTT0BW@BZ2221222222222011210110303023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111118198001219920909WT@@BPBY#2221221222222021212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111819800120160308WT@@PP9TB12212222204398100000000120120401WTT9BYW@012212222204304100000100 -T320230111111819800120180511WTT#9Y99P12212212204398100000000120160308WT@WYBY#912212222204398100000000 -T12023011111181982222000403891120113110376300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111118198221219820723WT@@#9#@T2221222222223013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111181998424500405781120523111169300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111118199841219820121WTT#WTWB#2222212222222011213110461423011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111118199841219780723WTT09B9902222211222222021216190303023011800000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111819984120130922WTT@WP9B@22222122204303100000050 -T320230111111819984120180204WTT09YWZZ22222122204398100000000120160226WT@@TYT@022222112204398100000050 -T12023011111182004025900402831120212110516109310000050505280410000000000000000000000000000000000222222000000002229012 -T2202301111118200401219890707WT@##YTYZ2222212222221012212110421821011800180000000000000000000000000000000000000000000000000000250000110100000000000000000935 -T320230111111820040120190721WTTY#T@P922222112204398100000000 -T12023011111182015723700414331110213110516300000000000003910010000000000000000000000000000000000222222000000002229012 -T2202301111118201571219910723WT@9TPY9W1222222222221012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111820157120140704WT@9TPY9W12222212204303200000000 -T12023011111182022723500411472120313210835300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111118202271219780723WTTZBY#TT2222212222223012215210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111820227120160507WT@BTZY9@22222122204398200000000120070923WT@WTPPPY22222122204316200000000 -T12023011111182023322900405641120313110740300000000000006540220000000000000000000000000000000000222222000000002229012 -T2202301111118202331219960727WT@W9YT0T2222212222223012211110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111820233120210214WTTWPYB#P12222112204398100000000120160327WT@Z###Y922222112204398100000180 -T12023011111182029222000411981120312110808300000000000006540260000000000000000000000000000000000222222000000002229072 -T2202301111118202921219820927WTTBPW0#02221222222225012212110870023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111820292120220327WT@##BTPB22212212204398100000000120120304WT@PPBZZP22212212204304100000050 -T12023011111182034321600408241120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118203432219770911WTTT9P#Y92222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111820343120060713WT@9900Y922222112204308100000000 -T12023011111182053220600414871120113110376300000000115404170470000000000000000000000000000000000222222000000002229012 -T2202301111118205321219910323WT@T0T@992222212222221013212110481223010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T12023011111182067022700408351120233120000300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111118206703219950927WT@T#@ZYW1222222222221012210110085211069941000000000000000000000000000000000000000000000000000000000000260000000000000000000000 -T320230111111820670120200113WT@YP9@PY12222212207398100000000 -T12023011111182074125900406081110233110516300000000000004170310000000000000000000000000000000000222222000000002229021 -T2202301111118207413219660902WT@WTWWZ02122222122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001052000000000299 -T320230111111820741120120701WT@9TPY9W21222222206305100000000 -T12023011111182076122000405181120313110835300000000000006540160000000000000000000000000000000000222222000000002229072 -T2202301111118207611219760118WT@#0#09T2221222222225012212111400023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111820761120100211WT@ZYP9BZ22212222204306100000050120070313WT@BT@@@922212222204308100000050 -T12023011111182076723500402291120333110760300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118207672219840924WTTB9Z9ZW2222212222215012212110580213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111820767420100714WTT9BYZ9T22222112104306109140000120070327WTTWPZ99Z22222122204309100000000 -T12023011111182084820200409311120313110740300000000000006540160000000000000000000000000000000000222222000000002229072 -T2202301111118208481219850904WT@@BZW992222212222225012213110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111820848120140304WTT@W@0PW12222122204301100000000120050327WTT0PBTT#22222112204310100000100 -T12023011111182086522600413111120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118208652219830301WT@TPYZB91222212222211012216110850013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111820865120050123WTT9YWBW022222112204310100000000 -T12023011111182091924700406632120323210835300000000000006540110000000000000000000000000000000000222222000000002229032 -T2202301111118209191219980104WT@9TPY9W1222222222221011211290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118209191219950927WT@9TPY9W1222221222221011212290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111820919120180427WT@9TPY9W12222222204398200000000 -T12023011111182111020800405391120313110766300000000000006540340000000000000000000000000000000000222222000000002229012 -T2202301111118211101220010923WTT#BZYZ92222212222221012210110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111821110120220411WTT@@ZYBT22222122204398100000000120200112WTTBZT@P922222112204398100000000 -T12023011111182116225600411521120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118211622219700426WTTB#PB##1222222222213012213110085213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111821162120060313WTTW@WT0P12222222204309100000000 -T12023011111182119720300400971110313110835300000000000001260010000000000000000000000000000000000222222000000002229012 -T2202301111118211971219810314WT@Y990T02222211222221012216110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111821197120090323WT@WP@0TW22222122204306100000000120060414WT@TZY#9022222112204310100000000 -T12023011111182119925900402631120233110446300000000000003900130000000000000000000000000000000000222222000000272219022 -T2202301111118211993219840101WTTBWZ9ZW2222212222225012212110006011069941000000000000000000000000000000000000000000000000000000000000456400000000000000000000 -T320230111111821199120090102WTT9ZY@0B22222122207306100000000 -T12023011111182149024200413971120532111057300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111118214903219650226WTTZTT0PT2222212222212012216121340013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111821490120140326WTTP@@0B@22222122206398100000000120120401WT@YZT0T@22212222206303100000000 -T320230111111821490120180405WT@0YWZ0P22212212206398100000000120160908WTTBT#9Z#22222122206398100000000 -T12023011111182156423800406541110213110611300000000000002600010000000000000000000000000000000000222222000000002229072 -T2202301111118215641219650309WTT#TP0BY2222211222225012212110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111821564120160226WT@0#PYY022222112204398100000143 -T12023011111182158820800414151120233110516300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111118215882219930307WTTZY0@Y#2221212222211012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111821588120200223WT@TW@@9@11211122204398100000000 -T12023011111182159922700408351110313110835300000000320900210010000000000000000000000000000000000222222000000002229012 -T2202301111118215991219890413WT@PYBTTP2222212222225012216110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111821599120160102WT@@WZBYZ22222122204398100000000120090327WTTP099BY22212222204304100000000 -T12023011111182164324700400741120113110366300000000000002400220000000000000000000000000000000000222222000001772219012 -T2202301111118216431219880113WT@P@@BY@2222212222221013213110233721011812000000000000000000000000000000000000000000000000000000000000070600000000000000000000 -T12023011111182166620600407031120233110516104060000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118216663219660901WT@YZ0W9#1222222222211012212110095111069958000000000000000000000000000000000000000000000000000000000000398800000000091400000500 -T320230111111821666120120901WT@9PBWT@22222122206304100000000 -T12023011111182167622000414461120313110766300000000000003920340000000000000000000000000000000261122222000000012219012 -T2202301111118216761219910912WTT0Z00BZ2221222222223012213110352523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111821676120180109WT@B@BWPZ22222222204398100000000120100713WT@#ZBWW@22212222204306100000000 -T12023011111182182624700408301120312110766300000000000006520030000000000000000000000000000000000222222000000022219012 -T2202301111118218261219830721WT@YB@BWZ2222212222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000600000000000000000000 -T320230111111821826120140926WT@BBZ#WB22222122204301100000000120050712WT@BWB9W@22222122204310100000000 -T12023011111182188722000401051110213110542300000000000004590010000000000000000000000000000000000222222000000002229012 -T2202301111118218871219860323WTTYY#T092222212222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111821887120160309WTTW0P00#22222112204398100000000 -T12023011111182228120800403781120333120000300000000020005280950000000000000000000000000000000000222222000000002229022 -T2202301111118222813219860407WT@#@P0BW2222212222225012216110015911069901000000000000000000000000000000000000000000000000000000000000042300000000000000000000 -T320230111111822281120110707WTT0ZTTZ922222122207304100000000120100309WTTTW9#W@22222112207305100000000 -T12023011111182242125900402832120413211034300000000000005780820000000000000000000000000000000192222122000000012219032 -T2202301111118224211219890313WT@9TPY9W1222222222221012211920006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111822421120070322WT@B@WYPW12222212204308100000000 -T320230111111822421120200712WT@PW9B@Z12222212204398100000000120110918WTTB9TBZW22222222204305100000000 -T12023011111182245422000410051120523111199300000000100008880040000000000000000000000000000000000222222000000002229012 -T2202301111118224541219960121WTTYZYB9P2222211222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118224541219970226WT@ZWBZ9T2222212222222021216290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111822454120170727WT@YT0##Y22222122204398200000000 -T320230111111822454120200707WT@YW0WB922222122204398200000000120180323WTT##9Z#W22222112204398200000000 -T12023011111182263925000414191120313110766300000000036506540300000000000000000000000000000000000222222000000002229012 -T2202301111118226391219890212WT@999W0@2222211222225012213110312921011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111822639120120326WTT#BZPTB22222112204303100000000120090712WTT#TWP@P22222122204306100000000 -T12023011111182266222000408891120323110835300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111118226621219980413WT@9TPY9W2221222222221011212290035723011800000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T2202301111118226621219900708WT@9TPY9W2222121222221021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111822662120210312WT@9TPY9W12212212204398200000000 -T12023011111182272520600407031120213110611104560000030305280480000000000000000000000000000000000222222000000002229012 -T2202301111118227251219900904WT@PB0ZYW2222222222221012212110491121011943000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111822725120140913WTTZB##ZW22222112204302100000000 -T12023011111182285422000412011120213110611300000000200005280020000000000000000000000000000000000222222000000002229012 -T2202301111118228541219960727WTTP@PTP@2222212222221012212110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111822854120220324WTT9#Y9#W22212112204398100000000 -T12023011111182296522000407831120312110740300000000000005280770000000000000000000000000000000000222222000000002229072 -T2202301111118229651219760911WT@ZPZ0#W2222212222223012212110770023129900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118229655220030721WT@0Y##TT1222211222211043211190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111822965120060212WTT0TPWZ#12222112204310100000000 -T12023011111182310724200403941120313110228300000000000006540020000000000000000000000000000000000222222000000002229072 -T2202301111118231071219860901WT@#PPWBZ2222212222223012211110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111823107120200712WT@99BZT022222122204398100000000120190912WTT0@Y#9P12222122204398100000000 -T12023011111182325024200414851120232120000300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111118232503219670101WTT0P9Y992122222222221012212110790011069942000000000000000000000000000000000000000000000000000000000000512200000000000000000000 -T320230111111823250120090704WTTZWTPBZ22112112206307100000000 -T12023011111182330825900402631120433110598300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111118233082219730902WT@YYBT9P1222222222222012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118233082219770202WT@YYBT9P1222221222222022298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111823308120140327WT@#WB#WB12222122204301100000000120110113WT@9WZYYY12222112204304100000000 -T12023011111182332520600414251120233110516300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111118233253219720126WTT@B@00T2222212122224012214110006013069900000000000000000000000000000000000000000000000000000000000000000000001287000000000000 -T320230111111823325120130907WTTZWYYT022222112206302100000000 -T12023011111182335022500410151120233120000300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111118233503219600902WT@#BY0Y92222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000349000000000000000000000 -T320230111111823350120180527WTT9PBW9Z22222122206398100000000 -T12023011111182339623800413801120313110835300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111118233961219820713WT@0#T0@W2122222222221012214110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000001 -T320230111111823396120120901WTTZ90B0912212222204304100000000120060107WT@W9T#BP22212212204309100000000 -T12023011111182341922700407441120213110611300000000005005280990000000000000000000000000000000000222222000000002229072 -T2202301111118234191219730227WTT@T@@T#1222222222221012206210840023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111823419120080921WTTT9B0ZZ12222212206306100000000 -T12023011111182347822000413731120313110835300000000000306540540000000000000000000000000000000000222222000000002229012 -T2202301111118234781219880314WTTPB9Y002222212222225012213110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111823478120130914WTT0W9PY@22222112204302100000000120110505WT@9BT#Z022222122204304100000000 -T12023011111182374722000407241120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118237472219850911WTTYT#TB92222212122211012212110800013109900000000000000000000000000000000000000000000000000000000000000000000000746018800000000 -T320230111111823747120070126WTTP9YBWP22222112204308100000100120050209WTTW@PTWZ22222112204310100000000 -T12023011111182379622000407411120323110740300000000025003280090000000000000000000000000000000000222222000002002219012 -T2202301111118237961220000414WT@PPZWT#2222212222223011212290085221011810000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T2202301111118237961219950723WT@9TPY9W2222211222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111823796520210901WT@TTYW#W22222112104398106090000 -T12023011111182386322000413731120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118238633219620723WT@9YY9P02222212222211012212120124813069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111823863120050518WT@@90TY922222112206311100000000 -T12023011111182394223500411471120213110548300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118239421220030323WT@0W0Y0B2222122222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111823942120210213WT@ZBZTY#22221222204398100000000 -T12023011111182396725900406081120213110376300000000000002370670000000000000000000000000000000290222122000000012219042 -T2202301111118239671219680404WTTYW@0Y92122222222225012211120204023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T320230111111823967120050927WTTTWB#BW21222222204311100000083 -T12023011111182407825900402631120433120000300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118240783219680204WT@BWB@T#2222212222225012216120520811069958000000000000000000000000000000000000000000000000000000000000365600000000000000000000 -T320230111111824078120120309WT@#9BWW022222122206302100000000 -T320230111111824078120150322WTT#Z9W9P22222112206398100000000120140927WTTB0ZWBY22222122206301100000000 -T12023011111182421024700402992120323210766300000000276006540040000000000000000000000000000000000222222000000002229032 -T2202301111118242101219990501WT@9ZTY@W2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118242101220010222WT@WPW9Z#2222212222222021216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111824210120210721WT@9TPY9W22222122204398200000000 -T12023011111182424824700402991120212110598300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111118242481219870323WTTWB@P0B1222222222225012212120124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111824248120150513WTTYTPWZB12222122204301100000000 -T12023011111182433424200404701120323110704300000000180700010130000000000000000000000000000000000222222000000002229012 -T2202301111118243341219810423WT@BZTBYB2221221222222011216110075313011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118243341219810327WT@#WTYP92222212222222011212110134711011940180000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111824334120070223WTT#W#9#T22212112204309100000000 -T12023011111182435620800411931120212110604300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111118243561219650727WTTZTWTYZ2222212222223012212110263423010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111824356120060721WTTT#9#PZ22222222204309100000000 -T12023011111182437823500412161120333110740300000000000010560390000000000000000000000000000000000222222000000002229022 -T2202301111118243783219610421WT@ZYYWT@2222212122225012212110760013069900000000000000000000000000000000000000000000000000000000000000000000001078000000000000 -T320230111111824378120060421WT@@TBYZ022222122206311100000000120060421WT@#9B0Z#22222122206311100000000 -T12023011111182440524700408301120612111339300000000000003230550000000000000000000000000000000000222222000005652219012 -T2202301111118244051219870904WTTWT09TT2222212122211012208190065423010700000000000000000000000000000000000000000000000000000000000000000000000565034100000000 -T2202301111118244052219850312WTTWYBBTB2222211222211102210190015911089944000000000000000000000000000000000000000000000000000000000000353100000000066300000000 -T320230111111824405120090718WT@@#WY@@22222122204306100000000120070914WT@PYB#BB22222112204308100000000 -T320230111111824405120130224WTTYTT9#022222122204303100000000120110718WT@WWBPY@22222112204304100000000 -T12023011111182444524700403421120732111509300000000000011650990000000000000000000000000000000000222222000000002229022 -T2202301111118244452219840712WTTP##Y#02222212222213012212120114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111824445120110126WTT9T9ZP922222122204305100000000120050107WTTYBPWZY22222112204310100000000 -T320230111111824445120190201WTT90#B9W22222112204398100000000120170122WTTT@PZZ@22222122204398100000000 -T320230111111824445120220227WT@9TPY9W22222112204398100000000120210107WTT0Z#0BZ22222112204398100000000 -T12023011111182444720800411991120312110783300000000000006540490000000000000000000000000000000000222222000000002229012 -T2202301111118244471219800127WTT#BP#0#2222212222225012216110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111824447120110526WT@YY9PP#22222112204305100000000120080323WTT#BTT#@22222112204307100000000 -T12023011111182465522700401571120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118246551220000314WTTWZ9#WW1222222222221012211110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111824655120210713WTTB@ZYWY12222112204398100000000 -T12023011111182473420800414651120233110516300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111118247343219760426WTT9ZTT@W2122222222221012212110124813069900000000000000000000000000000000000000000000000000000000000000199300000000000000000114 -T320230111111824734120160114WT@0BWP9P11222212206316100000000 -T12023011111182474024500405781120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111118247401219940727WT@ZB9BY01222211222221011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118247401219920711WT@YT9#0B2222212222221011212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111824740120190701WT@Y#B#WZ12222112204398100000000 -T12023011111182477822700408351110212110560300000000000003910010000000000035004000000000000000000222222000000002229012 -T2202301111118247781219900908WT@9WPBT@2222222222221012209110461423011400000000000000000000000000000000000000000000000000000000130000000000000000000000000000 -T320230111111824778120120523WTT@#Z0TW22222112204305100000000 -T12023011111182492025200407301120233110493300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111118249205219830926WT@T##0#Y2222212222225012213120006013069900000000000000000000000000000000000000000000000000000000000000244800000000000000000000 -T320230111111824920120080223WT@9Z0ZPZ22222122209308100000050 -T12023011111182516420600400801120232110516300000000000002940990000000000000000000000000000000000222222000001232219022 -T2202301111118251642219700123WT@WT#ZWP2221221122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000734020000000000 -T320230111111825164120090726WT@0T@PZ022212212204305100000123 -T12023011111182521322000400461120412110939113840000000007710930000000000000000000000000000000000222222000000002229072 -T2202301111118252131219900104WTTBYZTTT2222212222221012212120810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111825213120140512WT@9@YT9B22222212204302100000000 -T320230111111825213120200709WTT@9#9@#22212112204398100000000120140512WT@PT#0Y022222212204302100000000 -T12023011111182522123500410681120213110611300000000000005030630000000000000000000000000000000000222222000000252219072 -T2202301111118252211219870912WTT@9BYPZ2222212222221012212110630021011802000000000000000000000000000000000000000000000000000000000000009800000000000000000000 -T320230111111825221120140712WTTT00BBT22222122204302100000001 -T12023011111182525122000400581110623111339300000000000005690010000000000000000000000000000000000222222000000002229012 -T2202301111118252511219830504WT@W9B@YW2222212222221011210120045621011934000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118252511219770721WTTZ9Y@#P2122221222222021212110243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111825251120060921WTT#WZPYY22222212205310100000000120050122WTT#0#WBT22222212205311100000000 -T320230111111825251120080713WT@TBTP0Y22222112204309100000000120060111WT@Z#0W@922222122204310100000000 -T12023011111182525324200414351120432110893300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111118252532219650707WTTWP@P@P1222221222212012208191230013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111118252532219730904WT@ZPWTT01222212222212022213191330013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111825253120130127WTTZ@#9P@22222212204302100000000120050123WT@9ZY9@022222212204309100000000 -T12023011111182535323500402291120423111034300000000002607710040000000000070003000000000000000000222222000000002229012 -T2202301111118253531219680124WT@TWZZWW2222211222222011214110055523011800000000000000000000000000000000000000000000000000000000370000000000000000000000000000 -T2202301111118253531219730127WT@W@T9TB2222212222222021215190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111825353120150322WT@YPZP@T22222122204398100000000120120504WTTZT#ZTT22222112204303100000000 -T12023011111182540122700408491120313110740300000000020005280170000000000000000000000000000000000222222000000002229012 -T2202301111118254011219860327WT@B9@Y9W1222221222225012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111825401120210923WTTZWPZT012222212204398100000000420160426WTT#Z#YZP12222212104301107930171 -T12023011111182542421000412411120433120000300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118254243219650422WT@T0909P2222212222225012212110045611069941000000000000000000000000000000000000000000000000000000000000396900000000000000000000 -T320230111111825424120040918WTTWZP@YW22222122206311100000000 -T320230111111825424120130407WT@BPPBZ@22222122206302100000000120100924WT@@YBP#922212222206305100000000 -T12023011111182543024200410211120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111118254305219860927WTT@@9P0P1222222222221012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111825430120210109WTT0#0B@Y12222222208398100000000 -T12023011111182547022000407241120313110835104310000000706540060000000000000000000000000000000000222222000000002229012 -T2202301111118254701219900923WTT@PZP@#2221222222221012212110114921011935000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111825470120150301WTT0P99#P22212222204301100000000120120711WTTWT@0WP22212222204305100000000 -T12023011111182563724700404541120233110470300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111118256373219400518WT@W##Z#B2221222122225012213120045613069900000000000000000000000000000000000000000000000000000000000000000000001096000000000000 -T320230111111825637120090727WTT0TYWBP12212222206307100000000 -T12023011111182564022700408491120213110399300000000000005280270000000000000000000000000000000261222221000000002229012 -T2202301111118256401219990104WT@B0@ZWP2221222222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111825640120200921WT@ZYPPT#22212212204398100000000 -T12023011111182565725900402631120313110766300000000000003850150000000000000000000000000000000256122222000000132219012 -T2202301111118256571219840511WTT#0#0WP2122221222223012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000054 -T320230111111825657120170321WTTP0@#WY11222222204398100000000120160427WTTT@0ZT011222222204398100000000 -T12023011111182581320600402131120333120000300000000005005280390000000000000000000000000000000000222222000000002229022 -T2202301111118258133219540201WT@9WTY9P2222212122225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000002634000000000000 -T320230111111825813120120312WT@ZZWYTZ22222122206303100000023120050422WT@#@9TW@22222122206311100000023 -T12023011111182587622500410151120312110933300000000000505280160000000000000000000000000000000000222222000000002229012 -T2202301111118258761219940326WT@@TB0TP2222222222221012214120174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111825876120200401WT@ZW0Y9#12222112204398100000000420180907WTTZ0B9@922222112104398109140376 -T12023011111182596324700409381120213110611300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111118259631219890712WT@B#00@P2122211222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111825963120140708WT@BWB@9P21222222204301100000000 -T12023011111182603621000405411120212110611300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111118260361219720126WTTPPW0PB2212222222223012212110194121011819000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111826036120130905WTT@TBYZ#22222212204302100000000 -T12023011111182618724700409321120622111395300000000004510090100000000000000000000000000000000000222222000000002229012 -T2202301111118261871219830127WT@YZWYP02222212222222011216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118261871219830721WTTZ@@#BB2222211222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111826187120090421WT@ZZTT0022222112204306200000000120060723WTTZBWYY922222122204312200000000 -T320230111111826187120130718WTT0W#@TB22222122204302200000000120100302WT@@0YTPB22222112204304200000000 -T12023011111182621325800409911120633111054300000000100007710140000000000000000000000000000000000222222000000002229022 -T2202301111118262132219840721WT@YYBT9P1222212222221012207990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118262132219870123WT@YYBT9P1222211222221022210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111826213120090905WT@#B9#@912222122204307100000000120070122WTTPP@90W12222112204308100000000 -T320230111111826213120170505WT@@00YP#12222112204398100000000120140401WTTP999@#12222112204302100000000 -T12023011111182623320600402141120333110740300000000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111118262332219900704WT@@WYYT92222221122211012211110006013109900000000000000000000000000000000000000000000000000000000000000000000000171076300000000 -T320230111111826233120200222WT@@Z0BTP22212212204398100000000120190911WT@B0W@YB22222112204398100000000 -T12023011111182649025900402631120212110493106980000000000010270000000000000000000000000000000000222222000000002229012 -T2202301111118264901219840411WT@W@Z#092222212222221012212110273311011700210000000000000000000000000000000000000000000000000000040000125600000000000000000000 -T320230111111826490120170904WTT00YPT022222112204312100000118 -T12023011111182658320600414871120212110493300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111118265831219860914WT@0#Y#P#2221222222221012211111130023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111826583120110304WTT@B0#ZZ22212112204304100000000 -T12023011111182663322000407241120233120000122350000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111118266333219810304WT@#@T#TZ2221222222221012216110006013069900000000000000000000000000000000000000000000000000000000000000432900000000000000000000 -T320230111111826633120220108WTTWB00BB22212222207398100000000 -T12023011111182676424900404261120233120000300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111118267643219630111WTTZ@P@092222212222225012213110303011069937000000000000000000000000000000000000000000000000000000000000295300000000000000000000 -T320230111111826764120120509WTTY@BTP022222122206304100000000 -T12023011111182683722700408351120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111118268371219810918WTT0B#9#@2222212222223012210110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111826837120160107WTTYTP9Z922222122204301100000000120070307WTTBW@P9922222212204308100000000 -T12023011111182699325900406841120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118269933219760126WTT@@YWTB2122222222223012213110006013069900000000000000000000000000000000000000000000000000000000000000546700000000000000000153 -T320230111111826993120040104WTTYZWT0921222222207310100000000 -T12023011111182704821700409521120313110835300000000000006540390000000000000000000000000000000000222222000000002229072 -T2202301111118270481219890305WTTZ@BWY02222212222221012212110870021011816000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111827048120100902WTTPB00Z@12222112204305100000025120070726WT@#Z#P@#22222112204308100000025 -T12023011111182709720600400871120413110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111118270971220000927WT@TPP0P91222212222221012209110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111827097420190923WT@#ZBTPW22222112104398109140000 -T320230111111827097120220407WT@W@ZZTW22222112204398100000000120210411WTTW0T99B22222122204398100000000 -T12023011111182724122000414461120333110670300000000000005280710000000000000000000000000000000000222222000000002229022 -T2202301111118272413219830413WTT#TTYTW2222212222221012212110144611069943000000000000000000000000000000000000000000000000000000000000410400000000000000000000 -T320230111111827241120180412WT@9BZ9Z022222112206398100000000120150921WT@BB9@P@22222222207302100000000 -T12023011111182726822700408351120312110710300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118272681219980311WT@9YZYZW2222212222221012211110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111827268120190707WTTPPTT0W22222112204398100000042120180227WT@Y0WZ0022222122204398100000000 -T12023011111182732424100402401120313110835300000000002004900110000000000000000000000000000000163222122000000012219012 -T2202301111118273241219900918WTTTPZ0992222212222225012212120114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000004295 -T320230111111827324120150526WTT@9@09@22222122204301100000000120110701WT@W990WT22222112204304100000000 -T12023011111182736824200409091120213110611300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111118273681219930707WT@TZTZTT1222212222225012212110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111827368120110212WT@YW90WT12222112204305100000027 -T12023011111182755022000410051120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118275502219870312WTTW@YTW@2122212222215012212110580213089900000000000000000000000000000000000000000000000000000000000000000000000000088400000000 -T320230111111827550120120518WT@TPPPZP22222112204304100000000 -T12023011111182759524200414021120313110835300000000013604540060000000000000000000000000000000000222222000002002219012 -T2202301111118275951219840327WTTTTW@BZ2222212222223012213110065421011813000000000000000000000000000000000000000000000000000000000000080000000000000000000000 -T320230111111827595120130712WTTYZZYP#22222122204302100000000120120926WTTBZW9WP22222222204304100000000 -T12023011111182763622100410901120313110766300000000100003920390000000000000000000000000000000261122222000000012219012 -T2202301111118276361219820912WTTPT@T092222212222221012210110402023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111827636120190727WT@#W9@T922222112204398100000000120140422WTTZY@Y0Y22222112204302100000000 -T12023011111182765724700402991120232120000300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111118276573219890104WTTTTYY992222212222221012213110006011069940000000000000000000000000000000000000000000000000000000000000430000000000000000000000 -T320230111111827657120210121WT@Y09@@W22222112207398100000000 -T12023011111182778320600402141120213110611113520000091601280140000000000000000000000000000000000222222000004002219012 -T2202301111118277831219970708WT@PZWTWY2222212222221012216120154521010112000000000000000000000000000000000000000000000000000000000000079900000000000000000000 -T320230111111827783120220904WTT00W@BB22222112204398100000000 -T12023011111182781222900412731120213110470300000000030505030180000000000000000000000000000000000222222000000252219012 -T2202301111118278121219800902WTT9BW@0B2222212222223012212110283221011802000000000000000000000000000000000000000000000000000000000000010000000000000000000000 -T320230111111827812120090908WTTZTY@#Z22222122204307100000000 -T12023011111182782025000409641120233120000300000000000004170610000000000000000000000000000000000222222000000002229022 -T2202301111118278203219660314WT@@YT@B@2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111827820120070701WT@WTBZBT21222222206307100000000 -T12023011111182786221700407751120233120000113020000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111118278623219840327WTTY@PYP@2222212222225012216110263413069900000000000000000000000000000000000000000000000000000000000000294600000000000000000000 -T320230111111827862120210721WTTP0090Z22222122207398100000000 -T12023011111182786524700408701120213110618300000000004005280340000000000000000000000000000000000222222000000002229012 -T2202301111118278651219900423WT@##9WP@2222212222225012212110352523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111827865120200704WTTPWYTY@12222112204398100000000 -T12023011111182794423500410671120333120000300000000000004990990000000000000000000000000000000000222222000000002229022 -T2202301111118279443219590313WT@PYTZ901222212122222012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000418000000000000 -T320230111111827944120220712WT@9TPY9W12222122206398100000000120060412WTT@BZYZZ12222122207310100000000 -T12023011111182802520600400871120613111339300000000000008880190000000000000000000000000000000000222222000000002229012 -T2202301111118280251219870714WTTWBYZ0Y1222222222221012212110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000450 -T320230111111828025420060404WTTPZ@0PT21222122105308109140000 -T320230111111828025120110309WTT#P##@Z21222112205302100000000120070726WTTT#T@0P21222112205307100000000 -T320230111111828025120160701WT@WYZWZP22222112204398100000000120150726WTTY#ZPZ912222212204301100000000 -T12023011111182806225900402631120233110376300000000000904170770000000000000000000000000000000000222222000000002229022 -T2202301111118280622219660901WTTW0ZYBY1222212222225012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828062120040122WT@WY0@WB12222112204310100000000 -T12023011111182817725900402721120213110235300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118281771219930312WTT9WT@YZ1222222222221012210110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828177120090526WT@#ZZZY912222212204307100000000 -T12023011111182818822600405051120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118281881220020422WTTP#Y90Y2222212222221012210110045621011700210000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111828188120180226WTTWPZBZ#22222122204398100000000 -T12023011111182822022500410151120213110611300000000078505280020000000000000000000000000000000000222222000000002229012 -T2202301111118282201219840201WTT0BPBP@2222212222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828220120150527WTTYY9@Z022222112204398100000000 -T12023011111182824923500407161110213120000300000000000000670010000000000000000000000000000000000222222000000002229012 -T2202301111118282491220020311WT@T@B#@T2222212222222013212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118282495219990212WTTP9T0BW2222211222222023212290006013069900000000000000000000000000000000020000000000000000000000000000000000000000000000000000 -T12023011111182850224200414851120233110188300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111118285023219880513WTT99YB992222212222221012212110154513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828502120210414WTTTWP#Y022212212209398100000000 -T12023011111182856722000400461120232110516300000000000003000990000000000000000000000000000000000222222000001172219022 -T2202301111118285672219740721WT@PW@9@P2221222222211012209111360013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111828567120090912WTT#T#@#022212222204307100000117 -T12023011111182863324200410371120213110611300000000000005280060000000000035004000000000000000000222222000000002229012 -T2202301111118286331219900907WTTZ9#0P@2222212222221012210110471323011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111828633120100312WT@@99ZWW22222112204305100000000 -T12023011111182865325900414481110213110611109340000000000170040000000000000000000000000000000000222222000005112219012 -T2202301111118286531220000405WT@P@9TW01222222222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828653120200923WT@WT@W@T12222222204398100000000 -T12023011111182869624600411871120232110516300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111118286962220000421WT@@YZBZ02222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111828696120210418WTTZ09TBW22222122204398100000000 -T12023011111182874920700402051120233120000300000000000004170730000000000000000000000000000000000222222000000002229022 -T2202301111118287493219750922WTT#0TZ0P2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000250000000000000000000000 -T320230111111828749120200908WTT@W0TP922222122208398100000000 -T12023011111182880321700406141120333110704300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111118288033219830418WTTP@9YWY2222212222222012212120501013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828803120190412WTTY@BYW#22222122209398100000050420060422WTTTWPPYT22222122204309100000915 -T12023011111182881825900406841120332110765300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118288183219660126WTT@0TB9T2122222222224012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000299 -T320230111111828818120110113WTTT0T9ZP21222212206305100000000120100114WTT#@BZZB21222212206306100000000 -T12023011111182895121400408021120333110981300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111118289512220030726WTT#@0B##1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828951120220304WT@Z@BP#T12222122204398100000000120190708WT@Y@B99Z12222122204398100000000 -T12023011111182897524200414852110323210516300000000000002380010000000000000000000000000000000000222222000000002229032 -T2202301111118289751219860701WT@YYT#0Y2222211222222011212290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118289751219890423WT@PT@B092222212222222021212290015923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828975120140513WT@#99W9@22222112204301200000000 -T12023011111182898922000400591120333110611300000000010005280100000000000000000000000000000000000222222000000002229022 -T2202301111118289892219890905WT@YYBT9P1222221222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111828989120170302WT@PTZY@T12222112204398100000000120160301WT@TZZWTP12222222204398100000000 -T12023011111182909924700406631120313110835300000000000006540720000000000000000000000000000000000222222000000002229072 -T2202301111118290991219880201WTTTT9BT#2222212222221012216110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829099120160323WTT@YY@@T22222122204398100000000120080404WTTPPZZBT22212112204308100000000 -T12023011111182914524700408301120612111339300000000000008880990000000000000000000000000000000000222222000000002229072 -T2202301111118291452219690511WT@000B9Y2222221222212012206110372313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118291451219770402WT@W@YBPB2222222222222022206191620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829145120100427WTTTWZZPZ22222122204305100000000120080402WTTW009W#22222112204307100000000 -T320230111111829145120140111WT@9Y@#W@22222222204398100000000120120723WT@Y9ZPZW12222222204303100000000 -T12023011111182919924200408571120323110835300000000100006540050000000000000000000000000000000000222222000000002229012 -T2202301111118291991219870404WT@YP#PP#2222211222222011214290065423011800000000000000140000000000000000000000000000000000000000080000000000000000000000000000 -T2202301111118291991219900227WT@9PZWT#2222212222222021214290065423011800000000000000280000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111829199120140318WTT#YYWB022222112204302200000000 -T12023011111182920122700401571120513111211300000000000008880320000000000000000000000000000000000222222000000002229012 -T2202301111118292011219910723WT@W#WB992222212222221012212110332723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829201120120112WT@YY09#012222112204302100000000120100526WT@WY9YTB12222112204305100000000 -T320230111111829201120220927WTT9P99P#22222112204398100000000120160402WT@PB@ZT#12222122204398100000000 -T12023011111182927624700401281110113110376300000000000000130010000000000000000000000000000000000222222000000002229042 -T2202301111118292761219910922WTT#0TTW01122222222221013212190006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111182932124200409091120312110835116860000000006540210000000000035004000000000000000000222222000000002229072 -T2202301111118293211219870104WTTW@#99Y2222222222221012213120850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829321120210921WT@B00Y9@22212112204398100000000120120712WT@@TWZBB22212222204304100000000 -T12023011111182933324100402401120333110376300000000060004170050000000000000000000000000000000000222222000000002229022 -T2202301111118293332219830901WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118293332219800704WT@YYBT9P1222221222222102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829333120220507WTT@00Y#W12222212204398100000000 -T12023011111182942822000408891120332120000126610000000005280290000000000000000000000000000000000222222000000002229022 -T2202301111118294283219740218WTT@B@0Y#2221222222221012213110580211069937000000000000000000000000000000000000000000000000000000000000232000000000000000000000 -T320230111111829428120140926WTT#9TYBB21222212206302100001103120120704WT@#99#TB22212222206302100001103 -T12023011111182949922500404951120322110704300000000160906360180000000000000000000000000000000000222222000000182219072 -T2202301111118294991219770702WTTWBZ@YY2222212222222011212110790023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000017 -T2202301111118294991219740923WTTYYZB0T2222211222222021212190610023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829499120090402WT@PP#BP#22222122204308100000000 -T12023011111182960425900403551120332110611300000000000905280160000000000000000000000000000000000222222000000002229022 -T2202301111118296042219970323WTTBT#Y@Y1222212222221012212910065413079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829604120180724WT@0@ZY@B12222112204398100000000120150324WTT@0YBWW12222212204301100000000 -T12023011111182967922000400922110213210611300000000000004590010000000000000000000000000000000000222222000000002229032 -T2202301111118296791219900324WTTP#0T9Z2222122222222012298910025821011806000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829679120110911WT@PP@Y#@22221222204304900000000 -T12023011111182973824700409381110313110835300000000000000910010000000000000000000000000000000000222222000000002229012 -T2202301111118297381219930213WTTBY@YTT2222212222221012212110283221011713000000000000150000000000000000000000000000000000000000000000087300000000000000000000 -T320230111111829738120180324WTT@YWWW022222112204398100000050120150923WT@B0P@@922222122204302100000050 -T12023011111182986320800410751120413111034300000000000007710410000000000000000000000000000000000222222000000002229012 -T2202301111118298631219890227WT@0BW#@W2222212222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829863120080513WTT00P@TY12222112204308100000000 -T320230111111829863120180713WT@ZB0WYY12222112204398100000000120110318WT@#Z9Z#W12222122204304100000000 -T12023011111182989724200407431120413110972300000000000007710140000000000000000000000000000000000222222000000002229012 -T2202301111118298971219870401WT@WTPBY02222212222221012212110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829897120080427WT@9@@#T@22222122204309100000000 -T320230111111829897120210711WTTTZ#BPP22212122204398100000000120120223WT@BT@@WP22212122204304100000000 -T12023011111182990524700401011120233120000300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111118299053219600411WT@P0#W9W2222211222222012212110006013069900000000000000000000000000000000000000000000000000000000000000668500000000000000000000 -T320230111111829905120120927WT@PYY##Z22222122206304100000000 -T12023011111182991421700406141120213110516300000347005000010250000000000000000000000000000000000222222000000002229012 -T2202301111118299141219830713WT@PYTYY92222212222221012212110253511011900210000000000000000000000000000130000000000000000000000060000125600000000000000000000 -T320230111111829914120140414WTTP##YPZ22222122204302100000347 -T12023011111182997522000405842120323210766300000000000006540110000000000000000000000000000000000222222000000002229032 -T2202301111118299751219740312WT@BYZ9092222122222222011210990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118299751219780118WT@@090#Y2222121222222021212990006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111829975120110918WT@0#PP#Y12221222204303900000000 -T12023011111182997723500404531120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118299772219770109WT@ZW0#BT2222212122211012210120560413109900000000000000000000000000000000000000000000000000000000000000000000000705022900000000 -T320230111111829977120140211WTTP0#WPP21222222204301100000000420070301WTTBTP@@@22222112104307109140000 -T12023011111183004922000403531120212110611300000000122305280990000000000000000000000000000000000222222000000002229072 -T2202301111118300491219840702WT@YB#ZB@2222212222221012212111750023011800000000000000000000020000000000000000000000000000000000000000000000000000000000000000 -T320230111111830049120080721WTTP#PWZZ22222122204306100000000 -T12023011111183006821700407751120333110740106250000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111118300683219630324WT@#YYTTY1222212222225012216120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000001548 -T320230111111830068120150918WT@PWZW0W12222112206398100000000120040307WT@ZYB90#12222112206311100000000 -T12023011111183027424200403461120233120000300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111118302743219720208WT@@BP#@P2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111830274120090926WTT0T9ZBP22222112207308100000000 -T12023011111183031322000411281120233110516300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111118303132219720723WTT#0#TWY2222221222211012212210045613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111830313120130312WT@0B@#0Z22122212204302100000000 -T12023011111183057822000414461120213110618300000000025905280020000000000000000000000000000000000222222000000002229012 -T2202301111118305781219950708WTTP@09002222212222221012212210035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111830578120220124WT@9TPY9W22222122204398200000000 -T12023011111183069122700408351110312110740300000000000003700010000000000000000000000000000000000222222000000002229072 -T2202301111118306911219890112WTTW09ZPY2222212222221012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111830691120170501WT@W0@YTY22222112204398100000000120050308WTT#99WTP22222122204309100000050 -T12023011111183074522600405051120233120000300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111118307453219460227WTTW##W9T2222212122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000988000000000000 -T320230111111830745120140311WT@YPTP0922222122206301100000000 -T12023011111183080421400408021120312110792112160000002906540280000000000000000000000000000000000222222000000002229012 -T2202301111118308041219960404WT@PW09WW1222122222221012212120441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111830804120210407WT@9Z9PW012212212204398100000000120190723WT@WZT@9Z12212222204398100000000 -T12023011111183087124700405831120213110516300000000064704190060000000000000000000000000000000000222222002600832219012 -T2202301111118308711219760105WTTW0PBTY2212222222225012216110194123011400000000000000000000000000000000000000000000000000000000320000000000000000000000001068 -T320230111111830871120130727WT@0YY9Z922222122204303100000779 -T12023011111183106124200402501120233110516300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111118310611219930301WTTZB@@Z#1222212222223012216110530723099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831061520190514WT@@9Y#@Z12222122104398109140000 -T12023011111183109522000411981120232110493300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111118310952219780423WTTTZ@@WW2221222222215012210110105013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111831095120070218WTTZBWW@T22212222204308100000000 -T12023011111183125122900405641120312110835300000000000006540180000000000000000000000000000000000222222000000002229012 -T2202301111118312511219990923WT@P@0#@W2222212222221012211110223823010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831251120200724WTT@BP#WZ12222112204398100000000120180413WTTT@@B#Y12222112204398100000000 -T12023011111183130722000409971120423111034300000000400007710030000000000000000000000000000000000222222000000002229012 -T2202301111118313071219630423WTTPZP#Y@2212221222222011204210045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118313071219780423WT@@BW@9B2212222222222021298290045621011932000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831307120140712WT@YP0@#Y22122212204301200000000120080112WTT90W#@P22122212204307200000000 -T12023011111183134924100402401120313110835300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111118313491219990907WTT@Y@9@P1222222222223012212110035723011400000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111831349120200314WTTTPB00T12222112204398100000000120150104WT@9@T@W#12222222204398100000000 -T12023011111183139121400408021120213110493300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111118313911220010107WTTYWTZZ91222222222221012212120085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831391120220109WT@TB0B0P12222222204398100000000 -T12023011111183140624200409091120313110766300000000000006540630000000000000000000000000000000000222222000000002229072 -T2202301111118314061219900318WTTW0#ZZ02221222222221012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831406120180423WT@Z#BTZZ22212212204398100000000120140512WTT9TBTZ022212212204301100000000 -T12023011111183141122000403351120213110611104670000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118314111219950704WT@TYB9YW2222212222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831411120200927WTT@ZBW@922222122204398100000000 -T12023011111183148120600400801120313110740300000000007506540090000000000000000000000000000000000222222000000002229012 -T2202301111118314811219630714WTTZZ@99B2222212222225012211110095121011927000000000000000000000000000000000000190000000000000000000000000000000000000000000000 -T320230111111831481120150109WTTWWYBP#22222112204398100000449120130301WT@YZPBBT22222122204301100000505 -T12023011111183160624200404051120432110939300000000000006540370000000000000000000000000000000000222222000000002229022 -T2202301111118316062219890301WT@9T@0002221222222211012211110233713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111831606120050412WT@Y90YW@22122212204312100000000 -T320230111111831606120180302WT@YWBP0W22212212204398100000000120150304WTT@P9B#W22212222204301100000000 -T12023011111183162222000405181120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118316223219740712WT@9YZTZW2221222222225012213110085211069937000000000000000000000000000000000000000000000000000000000000516900000000000000000000 -T320230111111831622120080713WT@0PB##T22212222206307100000000 -T12023011111183164522700413181120213110611300000000371305280030000000000070002000000000000000000222222000000002229012 -T2202301111118316451219790905WT@YTYZZ02222211222225012214110045623011400000000000000000000000000000000000000000000000000000000120000000000000000000000000827 -T320230111111831645120140726WT@BYY@Z922222212204301100000000 -T12023011111183169223500411471120213110598300000000000005280290000000000000000000000000000000000222222000000002229072 -T2202301111118316921219650107WT@#YBYWY2222212222225012209110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831692120070309WT@0090Y@22222112204308100000000 -T12023011111183176723500410671120333110587300000000000005280160000000000000000000000000000000000222222000000002229022 -T2202301111118317673219840313WT@PPTZ092222122222221012211910550511079933000000000000000000000000000000000000000000000000000000000000259800000000000000000000 -T320230111111831767120090427WT@@#ZT9Y22221212207306100000000120070324WT@WBZZ9B22221212207308100000000 -T12023011111183185325000414191120233120000300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111118318535219850907WTTZY@YZT2222212222222012298120006013069900000000000000000000000000000000000000000000000000000000000000179100000000000000000000 -T320230111111831853120180402WT@YZ#PY#22222112209398100000000 -T12023011111183186125900402721120233110376300000000000000990090000000000000000000000000000000000222222000003182219022 -T2202301111118318612219790721WT@YYBT9P1222212222224012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831861120060512WT@TZ@0W#12222112204309100000318 -T12023011111183189620600402141120412110939300000000000004620550000000000000000000000000000000308122222000000012219072 -T2202301111118318961219930112WT@@W0#W02222212222223012212110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111831896120100426WTTP@0YW022222112204305100000059 -T320230111111831896120180301WTTZ9BBYP22222122204398100000000120120318WT@0TT0Y022222122204302100000000 -T12023011111183195324200404891120313110766300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111118319531219790721WT@BPWZWY1222222222221012211211170021011801000000000000000000000000000000000000000000000000000000000000206100000000000000000000 -T320230111111831953120140413WT@W@P0WP12212212204301100000000120110912WT@TBBY#Y22212222204304100000000 -T12023011111183210322000405321120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118321032219730104WT@#90TYY2221222222211012216110382213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000050 -T320230111111832103120090518WTTZ0@0BB22212222204307100000000 -T12023011111183215622000405842120213210598300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111118321561219920701WTT#B9ZW92221222222222012216210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111832156120080509WTTWBZZ0B22122222204308200000000 -T12023011111183215822000407411120213110611300000000000003160360000000000000000000000000000000211122222000000012219012 -T2202301111118321581219760307WT@PZPTTW2221222222223012213110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111832158120150114WTTT0P@Z022212222204303100000000 -T12023011111183226824700406632120323210786300000000000006540020000000000000000000000000000000000222222000000002229032 -T2202301111118322681219900914WTT0TZYYZ2222211222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118322681219900704WT@B0PBP92222212222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111832268120160302WT@0TB9ZW22222112204398200000000 -T12023011111183231324600411871120312110766300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111118323131219930913WT@PWZ0Y@2222212222221012213110164423011400000000000000000000000000000000000000000000000000000000010000000000000000000000004012 -T320230111111832313120170312WT@YBZ0PT22222112204398100000000120110927WTT9PPY@922222122204304100000000 -T12023011111183233924700409381110313110835300000000023001260010000000000000000000000000000000000222222000000002229012 -T2202301111118323391219850201WT@W9T@YP1222212222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111832339120130227WTTW#@WBZ12222112204303100000000120100301WT@0#Y@9Z22222112204305100000000 -T12023011111183249524200403511120233120000300000000040004170990000000000000000000000000000000000222222000000002229022 -T2202301111118324953219710407WTT@9@ZZW2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000240800000000000000000000 -T320230111111832495120050423WTTBZYZ0022212222207312100000000 -T12023011111183265725200407301120233110516300000000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111118326573219630711WTTY0Y#B91122212222211012209110392113069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111832657120110318WT@PYT99T22212222206302100000000 -T12023011111183268924900405371120322110737300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111118326891219850702WTTZ9@#Y92222212222222011212190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118326891219750723WT@#BT0T#2222211222222021212190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111832689520160523WT@Z00PBZ22222112104398109140000 -T12023011111183270421700403571120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118327043219690418WT@P0T9@W2222212222224012212120006011069920000000000000000000000000000000000000000000000000000000000000166400000000000000000000 -T320230111111832704120050722WT@BPY0Y022222122207310100000000 -T12023011111183278124200404891120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118327813219780301WT@99@WYB2221222222222012213120372311069938000000000000000000000000000000000000000000000000000000000000498000000000000000000000 -T320230111111832781120050726WTT9T9YWB22212212207309100000025120040924WT@BTY@YT22222222207311100000000 -T12023011111183296122600413251120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118329613219650922WTT#00WW92222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000012600000 -T320230111111832961120060323WT@ZWB90P22222122206309100000003 -T12023011111183301822000408451120112110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111118330181219980924WT@YP9@#W2222212222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111183310524200410211120212110611300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111118331051219700111WT@TPY0W02222212222225012216120550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111833105120070418WTT09WY0922222212204310100000000 -T12023011111183329125900406081120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118332912219750227WTT0@@9@Z1222212122215012212120114913109900000000000000000000000000000000000000000000000000000000000000000000000663027100000000 -T320230111111833291120040302WTTTZP09Z12222122204312100000000 -T12023011111183330321700406141120433120000300000000000006540700000000000000000000000000000000000222222000000002229022 -T2202301111118333033219530927WT@#90@0B2222212122221012213110105011069922000000000000000000000000000000000000000000000000000000000000186700001282000000000000 -T320230111111833303120060313WTT9BTT0Z12222112206308100000000 -T320230111111833303120100307WT@BBYPBT22222122206305100000000120100307WT@WB#Z#@22222122206304100000000 -T12023011111183335225900402631120432110939300000000000006540170000000000000000000000000000000000222222000000002229022 -T2202301111118333522219950112WT@ZY@BB91222222222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111833352120150721WTT9Y##B912222222204302100000033 -T320230111111833352120190307WTT0Y#Z##12222112204398100000033120160318WTTT0YY9#12222122204398100000033 -T12023011111183340225600411521120332110740300000000000005280870000000000000000000000000000000000222222000000002229022 -T2202301111118334022219820413WT@##T#W@2222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000083300000000 -T320230111111833402120140907WTT#ZY00P22222112204301100000000120070723WT@TW#WWB22222122204309100000000 -T12023011111183347320600414831120312110826300000000000006540300000000000000000000000000000000000222222000000002229072 -T2202301111118334731219910426WT@Y#YTB02221212222221012216110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111833473120170301WTTY@@PZP22212212204398100000000120090318WT@TT#@0P22212112204306100000000 -T12023011111183351120300400971120312110740300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111118335111219890209WT@BP#T#92222212222225012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111833511120220121WT@@Z@Y#922222122204398100000000120090411WT@WY9TTT22222122204308100000107 -T12023011111183364621700406141120333110801300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111118336462219790207WT@BZBWBP2222211222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111833646120150901WTTZZZ0ZT22222122204302100000000120050301WT@ZY#0BB22222122204311100000000 -T12023011111183389620600407031120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118338963219550318WTTYBZ#0Y1212222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002030000000000000 -T320230111111833896120050424WTTZWYPZW12222122206310100000000 -T12023011111183393220800410781120233110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118339322219930714WT@BP@@Z01222212122211012209120006013109900000000000000000000000000000000000000000000000000000000000000000000000596028600000040 -T320230111111833932120160407WT@#WPZ#Z12222212204398100000000 -T12023011111183396924700406701120413110939114720000000007710180000000000000000000000000000000000222222000000002229012 -T2202301111118339691219860423WT@YP0PBY2222212222225012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111833969120070909WTT@WW9#P22222122204307100000100 -T320230111111833969120180112WT@@ZWT#W22222122204398100000000120170409WT@P#TZZ022222112204398100000000 -T12023011111183403622000407231110423111034300000000000006460010000000000000000000000000000000000222222000000002229012 -T2202301111118340361219850423WT@#BPPBY2221221222222011209290025823011800000000000000000000000000000000210001000000000000000000000000000000000000000000000000 -T2202301111118340361219910212WTT#YBZZZ2221222222222021210290025823011800000000000000000000000000000000210001000000000000000000000000000000000000000000000000 -T320230111111834036120200718WT@P@YBBY22212222204398200000000120140312WTTWTBT@Z22212222204398200000000 -T12023011111183407822700407441120233110258300000000495004170070000000000000000000000000000000000222222000000002229022 -T2202301111118340782219750904WT@PYY@9B1222222222221012212910253511079904000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111834078120120409WT@BZBYP#12222222204304100000136 -T12023011111183428621000411361120212110493300000000001001140340000000000000000000000000000000000222222002603882219072 -T2202301111118342861219780423WTTW@@TWZ2222222222225012212110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000387 -T320230111111834286120070412WT@@#9W#B22222122204309100000000 -T12023011111183440320600400801120213110611300000000001205280890000000000000000000000000000000000222222000000002229072 -T2202301111118344031219930407WT@YBWW#Z2222212222225012216110900023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111834403120090405WTTYB0ZZZ22222112204307100000000 -T12023011111183449022000405181120233120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111118344903219770108WTTZPTW#W1122222222222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002760 -T320230111111834490120220422WT@T9@T##21222212208398100000000 -T12023011111183456925800401991120333110740300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111118345692219810707WT@0BWW092222222222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111834569120110427WT@00YZ0B22222222204305100000000120060926WT@W#9P9P22222222204310100000000 -T12023011111183457121700406141120212110611300000000000510250090000000000000000000000000000000000222222000000002229012 -T2202301111118345711219790123WT@9TZ#WZ2221221222221012212110105023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111834571120110101WT@WTB9Z#22222112204306100000000 -T12023011111183468122000407091120413110959300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111118346811219920102WT@ZP0YWY2221222222221012210110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111834681120100511WT@@YB0BT22212212204306100000000 -T320230111111834681120180401WTTW09YB@22212222204398100000000120130418WTT#W9@P022212222204303100000000 -T12023011111183475822000414461120213110611106760000010003850200000000000000000000000000000000000222222000001432219012 -T2202301111118347581219980127WT@09BZZ92222122222221012213110213921011804000000000000000000000000000000000000000000000000000000000000028500000000000000000000 -T320230111111834758120160914WTTPZTB9@22221212204398100000000 -T12023011111183477020300401721120233120000300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118347703219570312WTTTPZ00B2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001639000000000000 -T320230111111834770120050108WT@@000TB22222122206311100000000 -T12023011111183479023500411472120823213072300000000000012890020000000000000000000000000000000000222222000000002229032 -T2202301111118347901219890322WTTY9Z9TP2222211222222011213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118347901219890424WT@B@ZYPB1222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111834790120120427WTT0TPP@B22222122204304200000000120100201WTTWZ@ZWB22222122204306200000000 -T320230111111834790120170709WTT9ZZTY022222112204398200000000120140724WTT@00@ZY22222122204301200000000 -T320230111111834790120210302WT@TBYPZ@22222112204398200000000120200421WTTZB#B9022222112204398200000000 -T12023011111183482822000411981120213110598300000000007505280360000000000000000000000000000000000222222000000002229012 -T2202301111118348281219890427WTT#Z#PW#2222212222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111834828120190326WT@T00YPP22222112204398100000000 -T12023011111183486724200403941120213110611300000000000005280240000000000000000000000000000000000222222000000002229072 -T2202301111118348671219880327WT@@ZB9ZP1222212222221012212110690023011800000000000000000000000000020000000000000000000000000000000000000000000000000000001666 -T320230111111834867120150405WTT9WPYB@12222112204301100000000 -T12023011111183500324700413761120533110376300000000000003970100000000000000000000000000000000000222222000000202219022 -T2202301111118350032219790312WTTW#P9BW2222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000175000000000000000000000 -T2202301111118350032219800126WT@@P0TWT2222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111835003420050707WTTY09@WY22222112204310900000000 -T320230111111835003120160923WT@0#PZZ@22222112204398100000000420100309WTT@TPWPP22222122204306900000000 -T12023011111183506421000403201120312110793117460000000106540320000000000000000000000000000000000222222000000002229072 -T2202301111118350641219880708WT@Y#PB0P2222212222223012212110670023011700000000000000000000000000330002000000000000000000000000000000000000000000000000000000 -T320230111111835064120200714WT@##@P9Y22222122204398100000000120070909WTT@#YBY@22222112204309100000000 -T12023011111183536622700401571120233120000300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111118353663219490923WTT#0#@WB1222211122222012206120006013069900000000000000000000000000000000000000000000000000000000000000000000002368000000003239 -T320230111111835366120060913WTT9BY9#@12222112206309100000000 -T12023011111183549322000407241120513111195115260000016708880070000000000000000000000000000000000222222000001212219012 -T2202301111118354931219900923WTTPBBW9P1222222222221012212110253523011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T320230111111835493120120713WTT0WZPZ#12222212204303100000000120080126WT@@P9TY012222222204307100000000 -T320230111111835493120210223WT@TPW@P912222222204398100000000120170102WTTW00Y#012222222204398100000000 -T12023011111183553022000412691120432110939300000000000006540850000000000000000000000000000000000222222000000002229022 -T2202301111118355302219830912WTT@ZY0BP2221222222213012213110075313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111835530120050901WTT#@@##B22122212204311200000050 -T320230111111835530120120201WT@WZ####22122222204303200000050120070404WTTBBPTT922122212204308200000050 -T12023011111183557623700414331110413110893300000000000006800050000000000000000000000000000000000222222000000912219012 -T2202301111118355761219880313WTTPZTPZB2222212222225012216110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000090 -T320230111111835576120080712WT@T9ZPPB22222122204307100000000 -T320230111111835576120130412WT@T0T0#@22222112204303100000000120110514WT@Y9WW#T22222122204305100000000 -T12023011111183558622700408351120113110376300000000000204170030000000000000000000000000000000000222222000000002229012 -T2202301111118355861220020312WTTYPTP#B2222212222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111183566620800410591110213110611300000000000003570010000000000000000000000000000000000222222000000002229012 -T2202301111118356661220040202WT@#P@W9W2222212222221012210110025823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111835666120210718WTTWWW#T@22222112204398100000000 -T12023011111183570622000400461120213110611114000000524705280280000000000000000000000000000000000222222000000002229012 -T2202301111118357061219900913WT@WT#0ZY2221222222221012216110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111835706120210507WT@0BBPTZ22212212204398100000000 -T12023011111183575422000412691120312110815300000000000006540240000000000000000000000000000000000222222000000002229072 -T2202301111118357541219880512WT@TZTWTW2222212222221012212110880023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111835754120160926WT@#T99ZZ22222112204398100000000120070327WT@##BYB022222112204307100000000 -T12023011111183598123500407161120723111500300000000000011650020000000000000000000000000000000000222222000000002229012 -T2202301111118359811219850918WT@WT@9W92222211222222011214290035723011800000000000000000000000000000000000000000000000000000000160000000000000000000000000000 -T2202301111118359811219930523WT@Y00TB92222212222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111835981120140913WT@##000@22222112204303200000000 -T320230111111835981120160123WTTZ##0B022222122204301200000000120150923WTT@TBYPB22222122204301200000000 -T320230111111835981120200927WTT0#TPYW22222112204398200000000120170318WTTW@W9P022222112204398200000000 -T12023011111183601024700411201120313110835300000000052004370180000000000000000000000000000000000222222000002172219012 -T2202301111118360101219820909WTTPWTBP02222212222223012214110194121011814000000000000000000000000000000000000000000000000000000170000086500000000000000000000 -T320230111111836010120160326WTTP0Y#PB22222122204398100000000120070204WTT0W@#B922222112204309100000000 -T12023011111183612020600414251120213110611300000000000005280340000000000000000000000000000000000222222000000002229072 -T2202301111118361201219810104WT@@0TY0B2222212222225012212110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836120120130707WTT@@@W0022222122204303100000000 -T12023011111183617324200408231110213110557300000000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111118361731220030914WT@WB9@9Y2222212222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836173120220309WT@T@@T0922222122204398100000000 -T12023011111183621421000403201120312110835300000000000006540670000000000000000000000000000000261222221000000002229072 -T2202301111118362141219930918WTTYZ#0Y#2222212222221012212110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836214120190721WT@WYW#BY22222112204398100000000120140505WT@ZB@#PB22222112204302100000000 -T12023011111183628624100414321120433110939300000000000007710150000000000000000000000000000000000222222000000002229022 -T2202301111118362861219920913WTT00@WY#1222222222221012211110283223099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836286120100707WT@@#PZ#912222212204306100000000 -T320230111111836286120220411WTT@0WZ9Z12222122204398100000000120200901WTT9TT#TT12222212204398100000000 -T12023011111183630724200409091120213110516300000000025005280430000000000000000000000000000000000222222000000002229072 -T2202301111118363071219880327WTT0WWZP#2222211222221012212110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836307120120727WT@0P9Z0P12222112204304100000000 -T12023011111183633020600402141120232110493300000000000004170900000000000000000000000000000000000222222000000002229022 -T2202301111118363303219680323WT@B#B@B#2222212222221012214110700013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836330120080422WT@BW9#P@22222112206306100000000 -T12023011111183635824900404261120312110724300000000000003920130000000000000000000000000000000261122222000000012219012 -T2202301111118363581219710423WTTP0ZZT02222212222223012213110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836358120110318WT@Z#PWYP22222112204304100000000120110401WTTZTPT#W22222112204305100000000 -T12023011111183639025200400411120233110516300000000054504170510000000000000000000000000000000000222222000000002229022 -T2202301111118363901219830312WT@PZ#B9Y2222211222225012216120520823099900000000000000000000000000000000000000000000000000000000000000000000000000000000001598 -T320230111111836390520060111WTTZB##BZ22222112105308109140000 -T12023011111183639223800413801120313110835300000000020003920100000000000000000000000000000000261122222000000012219012 -T2202301111118363921219860312WT@@ZT9WW2222211222221012216110283223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836392120110427WT@@@ZPBY22222122204305100000000120080327WT@P@P@0W21222212204308100000000 -T12023011111183640320600414161120213110598300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111118364031219850126WTTY#@#TT2222212222221012211110213923011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111836403120160527WT@ZZB#W922222122204398100000000 -T12023011111183675822000413691120233120000300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111118367583219790712WT@YYBT9P1222222222221012216910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836758120060504WTTBWTPW#12222222207310100000000 -T12023011111183685821400408021120433110835300000000000006540690000000000000000000000000000000000222222000000002229022 -T2202301111118368582219890723WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111836858120090901WT@9B@PYW12222112204307100000000 -T320230111111836858120210218WTT#B0BYT12222112204398100000000120110326WT@T@YW9T12222112204304100000000 -T12023011111183688624700402991120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118368863219540714WT@T#@P#02221222122225012215120184213069900000000000000000000000000000000000000000000000000000000000000000000001155000000000000 -T320230111111836886120100112WTT#WP09922212212206305100000000 -T12023011111183703820600414771120312110835300000000000306540290000000000000000000000000000000000222222000000002229012 -T2202301111118370381219820412WTTBZ90TZ2222212222225012214220431723010900000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111837038120080722WTTY0P9#@22222112204307200000000120050911WTT0ZYYZP22222122204310200000000 -T12023011111183707322000413081120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111118370731219860407WTT@T#99W2222212222222012212210075321011932000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111837073120090712WT@Y0WBT022222122204307200000000 -T12023011111183717024200414021120522111116300000000069008880340000000000000000000000000000000000222222000000002229072 -T2202301111118371701219870918WT@WBYZPB2221221222222011212191110023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118371701219890127WTT@WPZWY2122222222222021212191000023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111837170120050226WT@P#TBTZ21222212204310100000000 -T320230111111837170120100312WT@YWZPBW21222222204304100000000120070326WTTY0YB#@21222212204307100000000 -T12023011111183718423700414331120213120000300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118371841219970301WTTB0WTBT2222212222222012213110085223010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111837184120190513WTTPTTW0#22222122204398100000000 -T12023011111183722420600400871120313110835300000000082100010060000000000000000000000000000000000222222000000002229012 -T2202301111118372241219840118WTT#TT#9T2222212222223012215210065411011900210000000000000000000000000000170000000000000000000000020000136400000000000000000000 -T320230111111837224120130327WTTPYB99#22222122204302200000000120050305WT@W9TYPZ22222112204310200000000 -T12023011111183725724200402501110413110969300000000000000860040000000000000000000000000000000000222222000000002229012 -T2202301111118372571219950123WT@0@WPWB2222212222222012211110332721011805000000000000000000000000000000000000000000000000000000000000046800000000000000000000 -T320230111111837257120140307WTT##YP9T21222212204398100000000 -T320230111111837257120160908WT@99WW#Z22222122204398100000000120150124WT@0#T9WZ22222212204398100000000 -T12023011111183731720300411111120233120000300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118373173219560326WT@ZWZ0@Y2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000634 -T320230111111837317120190312WT@@0YTYT22222112206398100000000 -T12023011111183749625900403551120213110611300000000000105280200000000000000000000000000000000000222222000000002229012 -T2202301111118374961219780118WTTTZ0Y0T1222221222221012212110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111837496120060118WT@YYB#T012222222204310100000000 -T12023011111183753222000407411120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111118375321219840322WT@@WWWWY2222212222221012212210114923011900000023000100000000000000000000210001000000000000000000040000000000000000000000000000 -T320230111111837532120100327WTTY0#B#Z22222122204306200000000 -T12023011111183759520800411991120522111116300000000200008880240000000000000000000000000000000000222222000000002229012 -T2202301111118375951219940923WTTZ0WBP92222211222221011208190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118375951219900323WTT9YW9BZ2222212222223011216110342623011800000000000000000000000000000000000000000000000000000000430000000000000000000000000397 -T320230111111837595120110107WT@ZTWT0922222122204306100000000 -T320230111111837595120210527WT@W#@9Z022222122204398100000000120120127WTTP##@TB22222112204305100000000 -T12023011111183795824200410531110313120000300000000000003160010000000000000000000000000000000000222222000000002229012 -T2202301111118379581219780912WTTPT@#902222212222222012212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111837958120100327WTT@9TPPP22222122204305200000000120060404WT@Y#ZBW#22222122204311200000000 -T12023011111183796324700408301120422110939300000000000007710150000000000000000000000000000000000222222000000002229012 -T2202301111118379631219800326WTTYZZWTP2222212222222011212110471323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118379631219740423WTT@B9Z#@2222211222222021212190451523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111837963120120327WT@#WT##P22222112204303100000000120070921WT@PZZY@P22222122204309100000000 -T12023011111183806521700406141120233120000300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111118380653219770709WT@9BWTTP2222212222222012213110134711069942000000000000000000000000000000000000000000000000000000000000469400000000000000000000 -T320230111111838065120120407WTTTTPTY#22222122206304100000000 -T12023011111183811220800405391120233120000300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111118381123219510413WTTYTY9W02222212122225012214120006013069900000000000000000000000000000000000000000000000000000000000000000000002705000000000000 -T320230111111838112120160712WTTTWPYW022222122206398100000000 -T12023011111183815424200409731120213110576300000000000005280870000000000000000000000000000000000222222000000002229072 -T2202301111118381541219930323WTTPYBWPB2222212222221012212110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838154120160902WTT9YPY0022222112204398100000050 -T12023011111183819123500404821120413111034300000000000007710310000000000000000000000000000000000222222000000002229072 -T2202301111118381911219830526WTT9#YY0#2122222222221012209111060023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000038 -T320230111111838191120080521WT@##@00021222222204307100000038 -T320230111111838191120110726WTTWZ0ZB921222222204304100000038120080521WTT0@TB#@21222222204307100000038 -T12023011111183820122000405181120213110611113090000012904750540000000000000000000000000000000000222222005200012219012 -T2202301111118382011219970111WTT#9ZBT02221222222221012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838201120180423WTTBYP9@Y22212222204398100000000 -T12023011111183822922000407961120512111116300000000000008880510000000000000000000000000000000000222222000000002229072 -T2202301111118382291219920113WTTP@0TZB2221222222221012210120720021010914000000000000000000000000000000000000000000000000000000000000118400000000000000000000 -T320230111111838229120140921WTTW#ZB0Y21222212204302100000000120130911WT@9Z0P#T21222212204303100000000 -T320230111111838229120150305WTTWP#9ZZ22212212204398100000000120140921WT@#PTB0W22212212204302100000000 -T12023011111183827524700413762120423210939300000000000007710060000000000000000000000000000000000222222000000002229032 -T2202301111118382751219900301WT@9TPY9W2222221222222011210290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118382751219930426WT@9TPY9W1222222222222021208290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838275120160204WT@9TPY9W12222222204398200000000120110223WT@9TPY9W12222212204304200000000 -T12023011111183828222000405181110213120000300000000000004420010000000000000000000000000000000000222222000000002229012 -T2202301111118382821220030302WT@9#Y00Z2222222222221012212210025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838282120220701WT@#9BZYZ22222222204398100000000 -T12023011111183828320800405391120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118382831219930405WTTPZ#Z0W2222212222221012212110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838283120220702WT@#Y@WT#22222112204398100000000 -T12023011111183831520600400871120212110631112180000463705280060000000000000000000000000000000000222222000000002229012 -T2202301111118383151219890204WTT0Z0P0B2222212222223012216120075323011700000000000000200000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111838315120210207WT@W0#Z9B22222112204398100000000 -T12023011111183839222000411281120232110187300000000311905280350000000000000000000000000000000000222222000000002229022 -T2202301111118383921219740202WT9TTZY9T2222212222225012212210362423099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838392120100227WT@BY#BYB22222112204307200000050 -T12023011111183842422700408351120233120000300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111118384243219740504WTTYYT9W02222212222225012216110065413069900000000000000000000000000000000000000000000000000000000000000303900000000000000000000 -T320230111111838424120200127WT@9BZ0PZ12222112206398100000046 -T12023011111183849520600402131120413111034300000000001107710140000000000000000000000000000000000222222000000002229012 -T2202301111118384951219820907WT@BZT@YW2222211222223012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000500 -T320230111111838495120090401WT@#PBBPB22222112204307100000000 -T320230111111838495120120301WT@#P@@@P22222112204303100000000120100123WTT9BBB9Z22222112204305100000000 -T12023011111183857922000411551120232110494300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111118385793219540501WTTT#0Z@92221222122215012213110095113069900000000000000000000000000000000000000000000000000000000000000000000000807012700000000 -T320230111111838579120140927WT@@TW#BB22212212206302100000000 -T12023011111183862625900403711120333110835300000000485106540120000000000000000000000000000000261222221000000002229022 -T2202301111118386261219960926WT@@B@WYY1222222222223012212110134723099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838626120190523WT@#YZW0912222212204398100000000120150412WTTW#@P9Y12222122204302100000000 -T12023011111183864824200402501120413111034300000000000007710420000000000000000000000000000000000222222000000002229012 -T2202301111118386481219960114WTT#PZY001222212222221012212110431723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838648120150904WTTWYBYP912222222204398100000000 -T320230111111838648120220112WT@PTZY0P12222112204398100000000120220112WTTWWZWWZ12222112204398100000000 -T12023011111183865023500404821120313110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118386501219930524WT@9Y9#WT1222212222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838650120210504WTT#9#TZT12222112204398100000000120180722WT@T#WWP@12222112204398100000000 -T12023011111183867022000411132110423211034300000000000004720010000000000000000000000000000000000222222000000002229032 -T2202301111118386701219830413WT@9TPY9W2222211222222011298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118386701219840912WT@9TPY9W2222212222222021298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838670120170712WT@9TPY9W22222112204398200000000120120707WT@9TPY9W22222112204305200000000 -T12023011111183873424700401011120333120000300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111118387343219630412WTT#@9@0B2222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838734120180507WTTTZ9ZTY22222112206398100000000120140123WTTZ9W99922222122206302100000000 -T12023011111183874822000409411120333110376300000000500004170040000000000000000000000000000000000222222000000002229022 -T2202301111118387482219980522WT@YYBT9P1222212222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118387482219960302WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838748120210702WT@YPTB#912222112204398100000000 -T12023011111183878924700408361110213110611300000000000000160010000000000000000000000000000000000222222000000002229012 -T2202301111118387891219970913WTTYTP9P@2222212222221012211120025821010916000000000000000000000000000000000000000000000000000000000000084600000000000000000000 -T320230111111838789120210312WT@0YTPZW21222112204398100000000 -T12023011111183883225900402831120433110766122280000000006540060000000000000000000000000000000000222222000000002229022 -T2202301111118388322219950121WT@YYBT9P1222222222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838832120160923WT@TB@@@Z12222122204398100000000 -T320230111111838832120200127WT@##@0YW12222122204398100000000120180518WT@PYYYB912222122204398100000000 -T12023011111183888024700405831120623111384300000000010010090110000000000000000000000000000000000222222000000002229012 -T2202301111118388801219800107WTTPZ@@ZW2222211222222011216290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118388801219840718WTT@0TP#W2222212222222021216290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111838880120150705WT@T#TTB@22222112204301200000000120060426WT@0@0#WB22222112204309200000000 -T320230111111838880120210409WTTWW@@P#22222122204398200000000120180507WT@0YB09P22222122204398200000000 -T12023011111183899425100407671120213110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111118389941219840907WTTBZ##@92222212222221012216110352523010100000000000000000000000000000000250000000000000000000000000000000000000000000000000000 -T320230111111838994120220901WT@9TPY9W22222112204398100000000 -T12023011111183906324700405901120213110598117460000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111118390631219990712WT@WBPBZP2221222222221012211110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111839063120210513WTTTBP0TB21212112204398100000000 -T12023011111183915625600400661120333110740300000000000005280770000000000000000000000000000000000222222000000002229022 -T2202301111118391562219820413WT@0BPYT92222212222215012212110620013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111839156120210712WTTY9P0@022222112204398100000000120040709WTTPPPY@@22222112204310100000000 -T12023011111183924725600400661120412110939112270000000007710530000000000000000000000000000000000222222000000002229072 -T2202301111118392471219820927WTTWTWYPB1222212222221012216111890023011400000000000000000000000000000000000000000000000000000000030000000000000000000000003846 -T320230111111839247120070427WT@#@WPBB22222122204309100000050 -T320230111111839247120170724WTT#@PZW922222122204398100000000120090327WT@BYPZP#22222112204305100000050 -T12023011111183931924600411871120232110493300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111118393192219810921WTT@P@TB02222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111839319120220121WT@WYB9WB22222112204398100000000 -T12023011111183937424700410421120333120000300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111118393743219490409WTT0ZP9YY2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002618000000000000 -T320230111111839374120200423WTTPBBZTZ22222112206398100000000120160321WTTY9BP0Y22222112206398100000000 -T12023011111183940920600401641120523111191300000000000008880020000000000000000000000000000000000222222000000002229012 -T2202301111118394091219870901WTTTZ0WYB2222211222222011214290035723011800000000000000000000000000000000040002000000000000000000000000000000000000000000000000 -T2202301111118394091219870113WT@##YW9T2222212222222021213290035723011800000000000000000000000000000000050002000000000000000000000000000000000000000000000000 -T320230111111839409120080108WTTT0#PWY22222112204308200000000 -T320230111111839409120190302WT@0TB#@#22222112204398200000000120110907WT@#T@00Y22222122204305200000000 -T12023011111183943423700414331110513111025300000000409808460010000000000000000000000000000000000222222000000002229012 -T2202301111118394341219910911WT@9PP9PP1222222222222012212290025823099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118394341219860322WT@#BTTY#1222221222222022212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111839434120110712WTTYZWYWP12222212204305100000000 -T320230111111839434120180412WT@BT0YW012222212204398100000000120130413WT@TWW9BB12222112204303100000000 -T12023011111183949921700407751120233110493300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111118394993219950704WTTZ@@9992222212222221012212110006011069924000000000000000000000000000000000000000000000000000000000000180500000000000000000000 -T320230111111839499120070327WT@BWTZZ922222122207308100000000 -T12023011111183958824700409321120523111116300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111118395881219900313WT@BBP9P02222211222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118395881219920112WTTY@YWZZ2222212222222021216290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111839588120140401WT@@TPW#Y22222122204302200000000 -T320230111111839588120200911WT@@YWYWB22222122204398200000000120180427WTTPW@Z9#22222112204398200000000 -T12023011111183962022000411281120213110516300000231013800010130000000000000000000000000000000000222122000000002229012 -T2202301111118396201219960904WT@T@W@TW2222212222221012212120382211011900210000000000000000000000000000200000000000000000000000000000125600000000000000000052 -T320230111111839620120140713WT@Z0WW@Z22212222204301100000179 -T12023011111183965624200409731120313110759300000000010201270080000000000000000000000000000000000222222000005272219012 -T2202301111118396561219880909WTTPYPBY02222212222225012212110095121011814000000000000000000000000000000000000000000000000000000000000105300000000000000000000 -T320230111111839656120190214WTT9Z#@PB22222112204398100000050120160308WTTB9WP@@22222112204398100000050 -T12023011111183968322000408341120313110835300000000000006540490000000000000000000000000000000000222222000000002229012 -T2202301111118396831219820113WTT0TWW@@2221212222221012210110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111839683120150721WTT0Z9Y9T11222222204398100000000120130926WTTWZWZ@Z11212122204302100000000 -T12023011111183968922000411132120422211034300000000050007710100000000000000000000000000000000000222222000000002229032 -T2202301111118396891219890908WTTZ#9@0#2222211222222011212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118396891219930418WTTT9ZY#T2222212222222021212290105023011800000002000100000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111839689120210227WT@ZT9W@Y22222122204398200000000120190205WT@PB9B@B22222122204398200000000 -T12023011111183970122000410052120323210766300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111118397011219970101WT@BWP@B02222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118397011219980912WT@0Y00@P2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111839701120200701WTT#YTPTY22222112204398200000000 -T12023011111183997325900402721120423110978300000000000002630100000000000035001000000000000000000222222000003912219012 -T2202301111118399731220000113WT@@B@WZZ2222212222221011211110095121011804000000000000000000000000000000000000000000000000000000220000000000000000000000000000 -T2202301111118399731220000923WT@ZWT0@91222221222222011209190035723011800000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111839973120210911WTTZWYYW@12221212204398100000000120190921WT@##ZB@912222222204398100000000 -T12023011111184000722000408891120233110536300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111118400072219900912WTT0#9ZB02221222222211012212120154513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111840007120140423WT@TYP9WT22212212204303100000000 -T12023011111184003225900406081120333110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118400323219560418WT@YYBT9P1222222222223012298910154513079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840032520110711WT@WB09TZ12222212106304109140000120080212WTT0PPZ0T12222222206309100000000 -T12023011111184006322000410221120322110773300000000000003920140000000000000000000000000000000261122222000000012219012 -T2202301111118400631219990712WTTTYWY#@2221221222221011212190154523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118400631220000713WTTYZ0WZ92221222222221011211190213923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840063120200512WT@0900BP22212212204398100000000 -T12023011111184011322000400811120213110611300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111118401131219880523WTTYZPW@Y2221222222221012213110332723011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111840113120200704WT@0@@T@022212222204398100000000 -T12023011111184017924700408301120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118401791219920118WT@9TPY9W2222212222222011216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118401791219810912WT@9TPY9W2222211222222021216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840179120140426WT@9TPY9W22222122204302200000000 -T12023011111184020622000410051120212110606300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111118402061219710101WTT@WBP0B2221221222225012212110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840206120180112WT@BB999Z22222112204398100000000 -T12023011111184022924700401011120412110611300000000001005430060000000000000000000000000000000000222222000000002229012 -T2202301111118402291219970112WT@@Y@W@T2222212222221012211110372323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840229120180713WT@#P###Y22222122204398100000000 -T320230111111840229120230409WTT9BZT0W22222122204398100000000120230409WTT@9YB9B22222122204398100000000 -T12023011111184023422000409971120213110631300000000000003960030000000000000000000000000000000132222122000000002229012 -T2202301111118402341219800308WT@9TPY9W1222221222223012204220045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840234120110324WT@9TPY9W12222212204304200000000 -T12023011111184023523700414331120432110939300000000000006540130000000000000000000000000000000000222222000000002229022 -T2202301111118402351219780418WT@T0#@T@2222212222223012212111430023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840235120120718WT@YYYTZ@22222122204302100000000 -T320230111111840235420160209WTT#YY@WP12222122104398109140000120150426WTT0B@YT@12222122204301100000000 -T12023011111184035821000405411120212110571300000000000903330590000000000000000000000000000000000222222000001952219012 -T2202301111118403581219650418WT@B0Z0#T2222212222225012216110600021011803000000000000000000000000000000000000000000000000000000370000039000000000000000000000 -T320230111111840358120050112WT@0Y@9P@22222122204311100000000 -T12023011111184037325200407301120213110611300000000000004450910000000000000000000000000000000000222222000000832219072 -T2202301111118403731219750901WTTWP@Z9#2222212222225012213110920021011806000000000000000000000000000000000000000000000000000000000000029800000000000000000000 -T320230111111840373120130913WT@@Y@P0@22222122204303100000000 -T12023011111184043320800405141120312110740300000000000006540120000000000000000000000000000000000222222000000002229072 -T2202301111118404331219740704WTTY9##9#1222222222225012212110960023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840433120070723WT@BT#B#012222112204308100000000120040927WTT#@PT9912222222204311100000000 -T12023011111184055625600413441120312110778300000000000006540430000000000000000000000000000000000222222000000002229072 -T2202301111118405561219880727WTT#0@0TY2222212222221012216110990023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840556120190322WTTZTT9BP22222112204398100000000120050118WT@YPZB0W22211122204311100000000 -T12023011111184056620600414871120323110835300000000040006540100000000000000000000000000000000000222222000000002229012 -T2202301111118405661219850111WTTZZ0@9@2222212222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118405661219770527WT@#9TZY92222211222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840566120110905WTTT0BWBW22222112204304200000000 -T12023011111184059222000412231120332110760300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118405922219790312WT@PY#ZP02222212122215012212110055513109900000000000000000000000000000000000000000000000000000000000000000000000830007400000000 -T320230111111840592120100707WT@Y9ZWWT22222222204306100000050420070118WTT#BBYB022222212104308109140260 -T12023011111184060123500400891120323110670300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111118406011219670423WT@BZ@ZT@2222211222222011212290114923011800000000000000000001000000000000000000000000000000000000180000000000000000000000000000 -T2202301111118406011219660121WTT0#ZP002222212222222021212290114923011800000000000000000001000000000000000000000000000000000000110000000000000000000000000000 -T320230111111840601120050914WT@#9B9Z@22222122204309200000000 -T12023011111184062924200407271120213110446300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111118406291220040709WTT#@WZZT1221222222221012212110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840629120220313WTTZTTTW012212212204398100000000 -T12023011111184066620600414871120232110493102780000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118406665219910412WT@YP0ZPP2222212222221012212110322811069929000000000000000000000000000000000000000000000000000000000000221200000000000000000000 -T320230111111840666120220712WT@9TPY9W22222122209398100000000 -T12023011111184077424200408571120623111211300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111118407741219970326WTTZ0#YT91222222222221011212120045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118407741219910323WTTPWT00#1222221222221011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840774120150226WT@W9BWY@12222222204301100000000120120723WT@WZ#@#Z12222212204303100000000 -T320230111111840774120230423WT@9TPY9W12222122204398100000000120170105WTT9B9BYB22222112204398100000000 -T12023011111184078424200414721120213110611300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111118407841220000727WT@TT#@BT2221222222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840784120180427WT@Z@T0TP22212222204398100000000 -T12023011111184080823500411471120233110376300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118408082220020123WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111840808120200112WT@0WYPY012222212204398100000000 -T12023011111184092720600414771120412110939300000000000006540950000000000000000000000000000000000222222000000002229072 -T2202301111118409272219940907WT@B@@B#Z2222212222211012211110124813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118409271219860423WT@TY@9WB2222211222221012212190650023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111840927120170927WTTTWT@9@22222122204398100000000120160427WTT@0Y#9922222112204301100000000 -T12023011111184108023500410671120212110516300000000000004170590000000000000000000000000000000000222222000000002229012 -T2202301111118410801219820108WTTBYW@BW2222212222221012212120600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841080520180927WT@BW0T0@22222122104398109140000 -T12023011111184111625900403711120213110538300000000000003160440000000000000000000000000000000211122222000000012219072 -T2202301111118411161219720504WTTB90PB02222212222221012212111760023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841116120150707WT@Z0#T0022222122204301100000035 -T12023011111184112125100407671120233120000300000000022904170530000000000000000000000000000000000222222000000002229022 -T2202301111118411213219660707WTTYT#W@@2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000340000000000000000000000 -T320230111111841121120110507WT@9WWYP@22222122206304100000000 -T12023011111184123423500411471120213110598114720000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118412341219970326WTT@9#0Y02222212222221012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841234120200423WTT#@@T9Z22222112204398100000000 -T12023011111184134022000414461110312110611300000000000005900330000000000035003000000000000000261222221000000002229072 -T2202301111118413401219870704WTT@@BZ9@2221222222221012216110950022011900000000000000300000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841340120090301WT@Y@ZZBP22212212204307100000000120070305WTT@WZ#ZB22212212204309100000000 -T12023011111184140324700409381120233120000300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118414035219910913WTT0ZZ#992222212222225012216110065411069940000000000000000000000000000000000000000000000000000000000000361200000000000000000000 -T320230111111841403120170427WTTWTZ@0022222122208398100000000 -T12023011111184142722000405321120313110542300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111118414271219870112WTTTPBYPB1222222222221012212110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841427120220412WT@@##@BY22222222204398100000000120050501WTT#TWW9B12222212204311100000000 -T12023011111184144622000407412120423210959300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111118414461219860307WT@9TPY9W2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118414461219920712WT@9TPY9W2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841446120160727WT@9TPY9W22222112204301200000000120130901WT@9TPY9W22222122204312200000000 -T12023011111184155824200414721120313110835300000000020004900120000000000000000000000000000000163222122000000012219012 -T2202301111118415581219860927WT@@##B9@2222122222221012212920124821011933000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841558120150412WTTT#0Z9Y22221212204398900000000120080212WT@B0@PYZ22221222204308100000000 -T12023011111184162922000410052120523210740300000000000000010040000000000000000000000000000000000222222000000002229032 -T2202301111118416291219840121WT@#9TZ902222121222222011214910045611011900410000000000000000000000000000000000000000000000000000000000299300000000000000000000 -T2202301111118416291219830312WT@W@Z#ZZ2212222222222021215910045611011800210000000000000000000000000000000000000000000000000000160000125600000000000000000000 -T320230111111841629120110513WTTZT0ZZT22221212204306900000000 -T320230111111841629120190107WTT#ZY@Z#22221212204398900000000120160126WT@WZ90#T22221222204301900000000 -T12023011111184169624200410211120413110766300000000014006540150000000000000000000000000000000000222222000000002229012 -T2202301111118416961219950402WT@@0T90P2221222222223012212110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841696120130112WT@YYTY0W22212212204302100000000 -T320230111111841696120220309WT@BB##0@12222212204398100000000120190418WTT##0#0@22222112204398100000000 -T12023011111184173222000405841120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111118417321219860712WTTP0Y@TT2222212222222011215210114923011800000000000000000000000000000000060000000000000000000000000000000000000000000000000000 -T2202301111118417321219850113WT@BYZBPP2222211222222021209290105023011800000020000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111841732120110923WT@0WWP@B22222112204304200000000 -T320230111111841732120190526WTTWZ00Z922222112204398200000000120140927WTTBWP#B#22222122204301200000000 -T12023011111184173524700402991120213110598300000000000003960070000000000000000000000000000000132222122000000002229012 -T2202301111118417351219710127WT@##WT#P2222212222225012214220085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111841735120040401WTTWWZPT022222112204311200000000 -T12023011111184178521700406141120232110516300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111118417852219930727WTTZ99##Z2221222122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000440049400000000 -T320230111111841785120170423WTTZPBY0022212222204398100000000 -T12023011111184181624100402401120513111116109570000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111118418161219990318WTTYBWP@T1222222222223012208110045623010900000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111841816120170721WT@#00WBY12222112204398100000000120150723WT@##Y#T012222212204398100000000 -T320230111111841816120210313WTTWY0Y@Y12222122204398100000000120180927WTTZWZ0BB12222212204398100000000 -T12023011111184185825900403551120313110835300000000000006540710000000000000000000000000000000000222222000000002229072 -T2202301111118418581219960205WTTZP#TBP1222222222221012211110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000200 -T320230111111841858120220412WT@@0Z@9W12222222204398100000000120140226WTTYYWWPY12222212204303100000100 -T12023011111184192422000400591120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111118419243219520518WTTY@90TP2222211122225012298120006013069900000000000000000000000000000000000000000000000000000000000000498000002766000000000000 -T320230111111841924120180127WT@0YWYP@22222112206398100000000 -T12023011111184203724700402991120313110835120440000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111118420371219900411WTTPWPZ@#1222222222225012213110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842037120210502WTT9@BW@#12212212204398100000000120190723WT@BB@B9W12212222204398100000000 -T12023011111184211325000409431120232110493300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111118421133219560505WT@BTY#Y#2222212122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001116000000000000 -T320230111111842113120160726WT@@TWBPY12222212206398100000000 -T12023011111184212325900402831120313110766300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111118421231219890312WT@P@Z90@2122222222223012211120184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842123120160318WT@PZY#BP21222222204398100000000120150927WTTYZ#0PZ21222222204398100000000 -T12023011111184218921700407751120213110611300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111118421891219930321WTTP@BZ#Y1122222222221012212110332723011400000000000000000000000000000000000000000000000000000000190000000000000000000000000000 -T320230111111842189120200205WTT0W@@@#11222212204398100000000 -T12023011111184222124700409321120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118422211219970714WTT#ZB@PT2222212222221012211110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842221120200721WTTYBPTY@22222122204398100000000 -T12023011111184222424500410931110213110557300000000000002550080000000000000000000000000000000154222221000000002229012 -T2202301111118422241219910104WTT0YZB992222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842224120120404WTTWPTWBY22221112204304100000000 -T12023011111184235020800414151120213110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111118423501219940923WT@Z@Y@@Y2222212222223012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842350120210118WT@ZZ0Y0P22222122204398100000050 -T12023011111184240222000405841120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118424023219510918WT@B@BW0W2221222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001052000000000000 -T320230111111842402120120226WT@T9BWBZ22212212206304100000000 -T12023011111184240323300410111120313110776300000000018206210230000000000000000000000000000000000222222003200012219012 -T2202301111118424031219780102WT@TP0@9P2222212222221012216110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842403120100701WTTP@Y@P011222212204305100000000120060705WT@@P#ZT@12222122204309100000000 -T12023011111184246125800409911120233110536300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111118424612219970926WT@P#9BWB2222212222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111842461120190912WT@#@ZY9Y21222212204398100000000 -T12023011111184250220800414651120212110516300000000000004170990000000000000000000000000000000000222222000000002229072 -T2202301111118425021219850712WT@PZTYZW2221212222221012212111130023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111842502520140208WTTB9W0TT22222222104301109140000 -T12023011111184262222000412971120233110361300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118426223219640501WT@B9TP#P2122222222215012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111842622120090204WTT#TYBWB21222222206308100000000 -T12023011111184263924200414351120233120000300000000000003960990000000000000000000000000000000000222222002000012219022 -T2202301111118426395219600708WTT###@PZ2222212122225012216110006013109900000000000000000000000000000000000000000000000000000000000000000000002061000000000569 -T320230111111842639120060714WT@B0@#YP12212212209310100000000 -T12023011111184264322000411281110212110611300000000000003570090000000000000000000000000000000000222222000001022219012 -T2202301111118426431219850107WTTWPP@WP2221221222221012211110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842643120100118WTT@TP99Y22212212204305100000000 -T12023011111184269723500405981120413110896300000000000004320180000000000000000000000000000000288122222000000512219012 -T2202301111118426971219740301WT@@BP#992222122222221012211210184223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111842697120080705WT@@T0TP922221212204307100000000 -T320230111111842697120190418WTT9BTZBB22221222207398100000000120080705WTT90P00B22221212204307100000000 -T12023011111184270321600412781120613111339300000000000008880730000000000000000000000000000000000222222000000002229072 -T2202301111118427032219660909WT@0W@09W2221221222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118427031219860527WT@#YB0P@2222212222221012216191000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842703120070924WT@0W@WTB22222112209307100000000120070207WT@0P0ZPP22222122206308100000000 -T320230111111842703120220512WTTTW90WY22222112204398100000000120190427WT@P0@P#022222122204398100000000 -T12023011111184283623500411471120313110786300000000000006540390000000000000000000000000000000000222222000000002229012 -T2202301111118428361219800923WTTWPTYP92222122222223012212910451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842836120200423WT@Y99T9W22212222204398100000000120090118WTT09@B#B22222222204307100000000 -T12023011111184286121000404881120312110835300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111118428611220010721WT@P#00#B2222212222221012211110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842861120210421WTTT@WTTY22222112204398100000000120190107WT@WPZPBB22222122204398100000000 -T12023011111184298522000400921120413111052300000000008004620460000000000000000000000000000000308122222000000012219012 -T2202301111118429851219830904WT@BZ#0@Y2221221222221012210110471323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111842985120050126WTTWTPBYB22212212204310100000000 -T320230111111842985120120901WT@#P@WPW22212222204304100000000120090413WTT#P0PB@22212212204307100000000 -T12023011111184303024700406701120212110598300000000055505280110000000000000000000000000000000000222222000000002229012 -T2202301111118430301219720727WTT@Z0T#W2222212222223012213110530721011800210000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111843030120080121WTTP@BT9W22222122204307100000000 -T12023011111184304323500402711120233120000300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111118430433219670718WT@YWY9ZB2222212222222012298120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843043120150323WTT99PP9W22222122206398100000000 -T12023011111184310820800410781120313110835300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111118431081219910323WTT@9@#P@2221212222221012216110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843108120220723WT@9PT0@Y22222112204398100000000120210213WT@0Z9Z9@11222222204398100000000 -T12023011111184312120800410781120313110766300000000000106540410000000000000000000000000000000000222222000000002229012 -T2202301111118431211219830101WTT@WWZZ01222221222224012216110421823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843121120220427WT@PWYZYZ12112222204398100000000120060409WTTYTZ9W@12212212204309100000000 -T12023011111184312322000407411120213110631300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118431231219910918WT@Z##@PB2222122222221012212110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843123120130405WTTW0WZT022221212204303100000000 -T12023011111184319721700406141120412110939300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111118431971219800302WT@P#WTW@2222212222225012212110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843197120080901WT@P99WZ922222122204309100000000 -T320230111111843197120150309WT@@PYYPW22222122204398100000000420140208WT@0T0W#T22222112104303101170817 -T12023011111184328524200414721120513110965300000000000005320490000000000000000000000000000000355122222000000012219012 -T2202301111118432851219680911WT@09Y9@Y2222121222223012212110491123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843285120100905WT@YWWYB922221212204303100000000120080218WT@0P#PYB22221222204306100000000 -T320230111111843285120150421WTTTY9@PT22221222204301100000000120120304WT@W@B@#022221212204301100000000 -T12023011111184331425100407671120232110490300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111118433142219820509WT@TBZP#02222212222215012212110540613089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111843314120150504WT@#0B0ZY22222122204302100000000 -T12023011111184335222000407831120212110611300000000010005280250000000000000000000000000000000000222222000000002229012 -T2202301111118433521219920321WT@BPB9PB2222212222221012212110293123011800000000000000000000000000000000170002000000000000000000040000000000000000000000000000 -T320230111111843352120170304WTT@YP#WY22222112204398100000000 -T12023011111184338020600412681120233120000100410000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111118433803219770904WT@#9@T#92222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000524400000000000000000000 -T320230111111843380120170121WT@Z0B@TB22212112209398100000000 -T12023011111184352923700414331120213110611300000000015505280020000000000000000000000000000000000222222000000002229012 -T2202301111118435291219820912WTT9B##WY1222222222221012211210025821011941000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843529120060304WT@B@#BPY12222222204309100000000 -T12023011111184355223900400641120213110618300000000000005280160000000000000000000000000000000000222222000000002229072 -T2202301111118435521219810709WT@TP0WPT2222212222221012210110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843552120210405WT@T@T#@Z22222112204398100000000 -T12023011111184365325600411701120213110376300000000000003160690000000000000000000000000000000211122222000000012219072 -T2202301111118436531219810127WTTPTZPY#2222212222225012213110700023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843653120070902WT@9Y##0922222112204309100000000 -T12023011111184369220600414161120212110554300000000000003160990000000000000000000000000000000000122222000000002229072 -T2202301111118436921219820721WTT#900@T2222212222221012212111610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843692120080424WTTW0YB@B22212112204307100000000 -T12023011111184373422000400591120422111034300000000305407710340000000000000000000000000000000000222222000000002229072 -T2202301111118437341219740913WTTBWTT@B2222212222222011212191120023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118437341219650913WT@TY@PZB2222211222222021212291120023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843734120090126WTT0Z0BZP22222122204307100000000120070404WTTWWWTZZ22222112204309100000000 -T12023011111184375925900402831120233110296300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111118437593219640401WT@YYBT9P1222222222221012202910006011079940000000000000000000000000000000000000000000000000000000000000086000000000000000000000 -T320230111111843759120060113WT@PP0@YZ12222222206310100000000 -T12023011111184386123500402711120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118438613219750321WTTWZPZZ#2222212222225012212110550513069900000000000000000000000000000000000000000000000000000000000000148200000000000000000000 -T320230111111843861120100101WTTP@Z@TY22222112206306100000000120090127WT@@TZ9#922222122206307100000000 -T12023011111184389923500407161110323110761300000000000005900010000000000000000000000000000000000222222000000002229012 -T2202301111118438991219850522WT@990PT#2222211222222011215290025823011800000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T2202301111118438991219850427WTT90@B0P2222212222222021215290025823011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111843899120150304WTTWZPB9022222112204398200000000 -T12023011111184398625100407671120213110611300000000000004170220000000000000000000000000000000000222222000000002229012 -T2202301111118439861219860901WTTT#YZY@2222212222225012216110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111843986520130726WT@9B#PPB22212212104301109140000 -T12023011111184407222000408451120423110959300000000095007710020000000000000000000000000000000000222222000000002229012 -T2202301111118440721219780907WTT90PY@02222212222222011214290035723011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T2202301111118440721219770107WT@Y0BY9Z2222211222222021214290035723011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T320230111111844072120100323WTT@090ZY22222122204305200000000120050404WTTPY9P0P22222112204312200000000 -T12023011111184412224100410041120313110717300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111118441221219970427WT@0TB#9W1222212222221012211110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844122120220905WTT@@ZTT@12222212204398100000000120160112WT@Y0@ZTP12222112204398100000000 -T12023011111184422324200409091120213110611300000000000005280490000000000000000000000000000000000222222000000002229012 -T2202301111118442231219890411WTT@#P0BP2222212222221012210110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844223120180318WT@TWPYTB12222112204398100000050 -T12023011111184427922000409871120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118442793219670413WTTZ@W99@2221222222224012213110035711069919000000000000000000000000000000000000000000000000000000000000217700000000000000000000 -T320230111111844279120060104WT@WPZ@9912212222206309100000000 -T12023011111184429224700409321120313110766300000000000206540040000000000000000000000000000000000222222000000002229012 -T2202301111118442921219980912WT@@T9TTY2221222222223012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844292120210727WT@@P#Z##22212212204398100000000120190323WTT@B#Y#022212222204398100000000 -T12023011111184429524200404051120213110618300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118442951219750223WT@W99ZPZ2221221222225012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844295120090102WT@BPWWT912212122204307100000000 -T12023011111184432222000406951120212110606300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111118443221219770923WTT0W9YY#2222212222225012212121470023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844322120100223WT@TZYWYY22222112204307100000000 -T12023011111184438324200401241120413111034122700000000803690320000000000000000000000000000000000222222000004022219012 -T2202301111118443831219880527WT@9BPPTT2222212222225012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844383120130327WTT9B#@PB22222122204302100000000 -T320230111111844383120190314WTTT0W@@#22222112204398100000000120150401WT@YTWZ#Z22222122204301100000401 -T12023011111184455120600414871120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111118445511219850111WTT0#9YWY2221222222225013216190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111184459022000408341120512111116300000000000008880140000000000000000000000000000000000222222000000002229072 -T2202301111118445901219870312WT@ZWBBY@2221222222221012212110830021011819000000000000000000000000000000000000000000000000000000000000173500000000000000000000 -T320230111111844590120090723WTT@@#BYW22212222204307100000000120070901WTTYP@P0@22212212204309100000050 -T320230111111844590120160407WT@PPYZZZ22212212204398100000000120140507WT@0BPZPB22212222204302100000000 -T12023011111184459522700408351120233110516300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111118445953219500318WT@TWZW9#2222212122225012298110006013069900000000000000000000000000000000000000000000000000000000000000000000002056000000000000 -T320230111111844595120050423WT@BT#Z@T22222112206310100000000 -T12023011111184460322000409411120412110558300000000010005780140000000000000000000000000000000192222221000000012219072 -T2202301111118446031219780423WTTB@W#PP2221222222225012212120930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844603120080404WT@W0ZYY#22212222204309100000000 -T320230111111844603120130913WT@ZB@WWP22212222204301100000000120090923WT@9#@@YB22212212204308100000000 -T12023011111184461823500410671120412110939300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111118446181219860726WTTZPY0ZB2222212222225012212111770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844618420070413WTTB#B9Y022222112104309107320500 -T320230111111844618120130701WTTZY#W##22222112204302100000000420080418WT@Y9T#9Y22222122104308106620500 -T12023011111184463723500411471120313110835300000000003506540050000000000000000000000000000000000222222000000002229012 -T2202301111118446371219820401WT@#90BYP2222212222223012212210065423011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111844637120160312WTTTW#@T@22222122204398200000000120110213WT@90@Z##22222122204306200000000 -T12023011111184469822000410051120333110516300000000078705280290000000000000000000000000000000000222222000000002229022 -T2202301111118446982219840413WT@YYBT9P2222222222224012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844698120140214WTT99B@##12222212204302100000000120110112WTT0WP#TY12222222204305100000000 -T12023011111184474423500407161120333120000117430000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118447443219590112WT@90W@W91212222222225012213110006011069938000000000000000000000000000000000000000000000000000000000000386100000000000000000000 -T320230111111844744520130427WT@9ZW9W022222222106303106090000120120427WT@WBBP@P22222212206304100000000 -T12023011111184480024700413891120213110611300000000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111118448001219900302WT@@PPTW#2222222222221012212110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844800120160714WT@BT0B#P22222222204398100000000 -T12023011111184490120600414771120312110835300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111118449011219970323WTT0T9PTT2122211222221012211110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111844901120200501WTTYZ090B12212222204398100000000120170713WT@BWTZZ@12212212209398100000000 -T12023011111184494523700414331120433120000300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118449453219660926WT@P#9P0W2221222122222012212120372313069900000000000000000000000000000000000000000000000000000000000000000000001227000000000000 -T320230111111844945120150727WT@@Y0Z#922212212206301100000000 -T320230111111844945120190323WT@WZW#BY21222212206398100000000120170712WT@TTTWTW22212222206398100000000 -T12023011111184505822000409971120213110376300000000000004170080000000000000000000000000000000000222222000000002229012 -T2202301111118450581219890109WTT9ZYP9Y2222122222221012216110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845058120220704WTTT9ZBWY22221222204398100000000 -T12023011111184511520600400801120333110740300000000000005280580000000000000000000000000000000000222222000000002229022 -T2202301111118451153219490923WT@YT@0P@2222212122225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000002054000000000000 -T320230111111845115120140923WT@#@P@@Z12222112206398100000050120060426WTTWP9@Z@12222122206309100000050 -T12023011111184515225900402631120232110376300000000000004170830000000000000000000000000000000000222222000000002229022 -T2202301111118451522219770212WT@YYBT9P1222212222223012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845152120070727WTT@#BBB012222112204308100000000 -T12023011111184525023500410671120412111034300000000000807710350000000000000000000000000000000000222222000000002229072 -T2202301111118452501219880305WTT@@0P9@2221222222221012211120830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845250120090421WT@9BYZ#P22212212204307100000000 -T320230111111845250120140509WTT9TW@BB22212212204302100000000120100123WT@9BPP@Y22212222204306100000000 -T12023011111184530720600406751120233110423300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111118453073219870907WT@PP9ZW02222212222222012212110134713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845307120100227WT@Z0#ZZW22222112207304100000000 -T12023011111184532221000408061120313110835300000000051206540040000000000070011000000000000000000222222000000002229012 -T2202301111118453221219860412WT@ZZ#TPW2222211222225012216110174323011400000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T320230111111845322120170207WT@B0Z9YP22222122204398100000000120070102WTTT0Z0@P22222112204309100000000 -T12023011111184535122000407411120312110823300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111118453511219820913WTTT9ZP9@2222212222225012212210114923011800000011000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111845351120140518WT@PW#TT#22222122204303200000000120090401WTT99W0T@22222112204307200000000 -T12023011111184537924200414351120113110376300000000003004170040000000000000000000000000000000000222222000000002229012 -T2202301111118453791219920312WT@#T@WZ#2221222222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111184540725200407301120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111118454071220010727WTTP#B0PZ2222212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111184540924200403511110212110516111370000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111118454091219960511WT@PZTB0Z2222212222221012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845409120190727WT@0YW#T922222112204398100000000 -T12023011111184542820600407031120213110598300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111118454281219760308WT@WTTTY@2222212222224012213110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845428120060909WT@WBP9B@22222122204302100000000 -T12023011111184558423500407161120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111118455845219850912WT@YYBT9P2222212222222012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845584120200711WT@TBT9#922212212208398100000000 -T12023011111184559624500403051120333110740300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111118455963219590722WTT0ZY9Z92122212122225012207110451511069910000000000000000000000000000000000000000000000000000000000000146200000863000000000000 -T320230111111845596120060712WT@@0ZPW022222112206309100000000120050526WTT#B#W@Z22222112206311100000000 -T12023011111184560520900411721120312110775300000000000003920760000000000000000000000000000000261122222000000012219072 -T2202301111118456051219880707WT@WPZ@#T2222212222221012216110760023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845605120160122WTTBT9##@22222112204398100000000120060504WTTYB9@B#12222122204308100000053 -T12023011111184560720600409001120333110470300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111118456073219800711WTT@#P@9B2222212222225012212110006011069941000000000000000000000000000000000000000000000000000000000000396000000000000000000000 -T320230111111845607120220312WT@9TPY9W12222112209398100000000120110714WTT#WBP#@12222112209305100001133 -T12023011111184578524200407271120632111269300000000000008880990000000000000000000000000000000000222222000000002229022 -T2202301111118457852219860314WT@W099##2122222222211012213120660013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111845785120060123WT@#9BB##22212222204310100000000 -T320230111111845785120110318WTTT99#B922212212204303100000000120100924WTTTP@90W22212222204306100000089 -T320230111111845785120180727WTT#ZYZZ@22212222204398100000000120120109WT@9#WZ9#22212222204303100000000 -T12023011111184580223500411471120313110835300000000000003920160000000000000000000000000000000261122222000000012219012 -T2202301111118458021219980412WTT9WY9@W2221222222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845802120180709WTTWW09PT22212212204398100000000120140111WTTZ@P0BY22212222204302100000000 -T12023011111184587620400400211120233120000300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111118458765219760727WT@00ZB0W2222212222222012212110075313069900000000000000000000000000000000000000000000000000000000000000326000000000000000000000 -T320230111111845876120100304WT@9@PYBB22222122208305100000000 -T12023011111184593522000412971120233110376300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111118459352220010413WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845935120190318WT@#0P@W012222112204398100000000 -T12023011111184593624100402401120413111034115840000058507350710000000000000000000000000000000000222222000000362219012 -T2202301111118459361220020104WTTZTBWTW1222212222221012211110293121011802000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845936120170404WT@TPWY@#12222122204398100000000 -T320230111111845936120220404WTTW#0PZ012222112204398100000000120200411WTTZBY#9#12222112204398100000000 -T12023011111184595224200410531120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111118459521219920712WT@0Y#TP@2222211222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111845952120180909WTTBZPPTB22222112204398100000000 -T12023011111184596424100402401120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118459643219580513WTT9PT0YZ2222211122221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001472000000002306 -T320230111111845964120190914WT@#9BB@Z12222112207398100000000 -T12023011111184606720600402131120233110493300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111118460673219720114WT@09T0YT2222212122223012214120263413069900000000000000000000000000000000000000000000000000000000000000000000001060000000000150 -T320230111111846067120150718WT@#P0PB922212112206301100000000 -T12023011111184607624200404422120313210766300000000000004900060000000000000000000000000000000163222122000000012219032 -T2202301111118460761219870502WTTBYY#WT2222212222222012213220006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846076120140323WTTYZ9YYY22222112204303900000000120090312WT@WZ9TWP22222122204308200000000 -T12023011111184619724200407311120313110835300000000000006540050000000000000000000000000000000261222221000000002229072 -T2202301111118461971219790924WT@90W@TB2122212222221012212111190021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846197120140426WT@YWY9T021212122204302100000000120060913WT@Z@YYTB11222112204309100000000 -T12023011111184626822700408491120323110835300000000386406540240000000000000000000000000000000000222222000000002229012 -T2202301111118462681219840413WTTBT09BY2222212222221011212190253523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118462681219810102WTT9@W9Z02222211222221011213190253523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000902 -T320230111111846268120120121WTTY0PW@Y22222122204302100000000 -T12023011111184628624200414851120412111034300000000050407710150000000000000000000000000000000000222222000000002229072 -T2202301111118462861219900723WTT00T@TY2221222222221012211120610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846286120090427WT@T9#T@T22212212204307100000000 -T320230111111846286120170413WTTPZ9W9#22212212204398100000000120130514WTTZ#PTZB22212212204303100000000 -T12023011111184629324700406741120523111104300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111118462931219720513WT@@#@90#2222211222222011298290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118462931219820423WT@P90B@Z2222212222222021298290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846293120060118WTTZZBYWZ22222122204398200000000 -T320230111111846293120210412WT@PTP0T022222112204398200000000120090413WTT@09@WP22222122204398200000000 -T12023011111184629825900402121120213110618300000000000905280120000000000000000000000000000000000222222000000002229012 -T2202301111118462981220000104WTT99B@TP2122222222221012211110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846298120200901WT@@WZBW@11222212204398100000000 -T12023011111184632825900402831120213110611300000000059005280240000000000000000000000000000000000222222000000002229012 -T2202301111118463281219790407WT@#T9W9@1222222222223012212110263423010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846328120070101WTT@99WZ912222222204309100000000 -T12023011111184635322000407791120413110939300000000000004620190000000000000000000000000000000308122222000000012219012 -T2202301111118463531219960401WT@@PW09#2222212222223012210120204023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846353120170707WTTYB0W##22222112204398100000033 -T320230111111846353120200426WTT9@Z0@#22222112204398100000033120180108WT@BT9Z@B22222112204398100000033 -T12023011111184640624700402991120323110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111118464061219750513WTT@ZZ@0P2222212222223011212210055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118464061219730214WTTPY9YPT2222211222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846406120080902WTTYT0TWY22222122204309200000000 -T12023011111184650221000403201120313110611300000000029506280120000000000000000000000000000000000222222000000262219012 -T2202301111118465021219840722WTTBY@YPB2222212222225012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000026 -T320230111111846502120090108WT@@999#T22222112204306100000050120080127WT@9Y#T#022222122204308100000050 -T12023011111184652920600402141120513111211300000000000008880080000000000000000000000000000000000222222000000002229012 -T2202301111118465291219890418WTTPZT0#92222212222221012212110154523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846529120180527WTT@T0WW022222112204398100000000120130411WT@#YZP0Z22222112204304100000551 -T320230111111846529120220901WT@9TPY9W22222122204398100000000120190126WTTW#WTTT22222112204398100000000 -T12023011111184653522000404841120733111034300000000000006540040000000000000000000000000000000000222222000000002229022 -T2202301111118465352219980512WT@YYBT9P2222222222221012205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118465352219940721WT@YYBT9P2222211222222102208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846535120140714WT@9TPY9W22222122204301200000000 -T320230111111846535120220311WTTY@0WYT22222212204398100000000120210107WT@9TPY9W22222122204398100000000 -T320230111111846535420200427WT@YYBT9P22222122204398900000000120150723WT@9TPY9W22222122204398200000000 -T12023011111184657824700408981120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118465782219700123WT@TZYBZ92222211222211012210110194113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111846578120090702WT@YZ#90P22222112204304100000000 -T12023011111184688420800414651120212110516300000000050004170060000000000000000000000000000000000222222000000002229012 -T2202301111118468841219650927WT@TW@ZP92222222222225012213110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111846884520080407WTT##T#WW22222112104308105230479 -T12023011111184702022600405051120213110598300000000035005280120000000000000000000000000000000000222222000000002229012 -T2202301111118470201219790513WT@ZWP9B92222212222221012212110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847020120050414WTTTW#PY#22222112204309100000000 -T12023011111184702924200414721120213110598106130000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111118470291219910427WT@@TBW0B2222221222222012216110065421011820000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847029120140414WTT#WPB0922212222204302100000000 -T12023011111184705025200407301120213110516300000000000000230660000000000000000000000000000000211122222000002942219072 -T2202301111118470501219700327WT@#9W#YP2222212222224012210110730021011812000000000000000000000000000000000000000000000000000000000000065000000000000000000000 -T320230111111847050120060301WTTY9Y@WB22222122204309100000000 -T12023011111184711224700403421120423110939300000000050007710040000000000000000000000000000000000222222000000002229012 -T2202301111118471121219840314WTTZ99#BB2222211222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118471121219890921WTT9#PP#P2222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847112120140218WTTZ@0PW#22222122204302200000000120080707WT@WPBYTZ22222112204308200000000 -T12023011111184718925900402831110313110740106100000002001990010000000000000000000000000000000000222222000000002229012 -T2202301111118471891219920918WTTWYBPZZ2222212222225012208110025821010107000000000000000000000000000000000000000000000000000000000000042300000000000000000000 -T320230111111847189120220723WT@#Z#9BZ12222112204398100000000120220502WTTZ9T0ZT12222112204398100000000 -T12023011111184720122700406181120233120000300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111118472013219980902WTT#WZ9Z@1222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000163600000000000000009824 -T320230111111847201120060227WTT9P00ZT12222122207310100000000 -T12023011111184725624100405611120313110829108730000010006540130000000000000000000000000000000000222222000000002229012 -T2202301111118472561219860323WTT#WZBZ02222211222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847256120170323WT@Y0ZTTW22222112204398100000000120120302WT@ZWPZ0@22222112204304100000000 -T12023011111184731225900403551120332110557300000000012005280800000000000000000000000000000000000222222000000002229022 -T2202301111118473122219820901WT@YYBT9P1222222222221012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847312120090712WTT#WB@Y#12222112204307100000000120080707WTTWZ9B0@12222112204308100000000 -T12023011111184734122700408351120213110598300000000000005280290000000000000000000000000000000000222222000000002229012 -T2202301111118473411219960702WTT@0BWW92222212222221012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847341120190207WTTYYTT9911212112204398100000000 -T12023011111184737722000405181120333110611300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111118473772220010326WT@YYBT9P1222212222221012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847377120200718WT@0ZBTBB12222112204398100000000120180424WTT9B@T@912222112204398100000000 -T12023011111184737922000403352120413211034300000000000007710070000000000000000000000000000000000222222000000002229032 -T2202301111118473791219860204WT@9TPY9W2221222222223012212210085223011800000019000400000000000000000000030000000000000000000000120000000000000000000000000000 -T320230111111847379120080304WT@9TPY9W22212212204309200000000 -T320230111111847379120150407WT@9TPY9W22212212204302200000000120120407WT@9TPY9W22212212204304200000000 -T12023011111184738422000410222120323210598300000000006606090110000000000000000000000000000000000222222000000002229032 -T2202301111118473841219800918WT@#T###T2222212222223011214910114923011800000000000000000000000000000000200001000000000000000000000000000000000000000000000000 -T2202301111118473841219780704WTT00BPYZ2222211222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847384120170311WTT0#0WTB22222112204398200000000 -T12023011111184753622000411282120423211034300000000000006990050000000000000000000000000000000000222222000000722219032 -T2202301111118475361219930426WT@9TPY9W2222212222222011205290065423011800000000000000000004000000000000000000000000000000000000180000000000000000000000000000 -T2202301111118475361219880926WT@9TPY9W2222211222222021205290065423011800000000000000000004000000000000000000000000000000000000120000028600000000000000000000 -T320230111111847536120140909WT@9TPY9W22222122204301200000000120110322WT@9TPY9W22222112204303200000000 -T12023011111184759122000407791120332120000300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111118475913219720904WT@TZ@TBT2221222222225012212120085211069974000000000000000000000000000000000000000000000000000000000000540600000000000000000000 -T320230111111847591420070304WT@@#YTWT22212212204308100000000120050304WTTZ9YP@P12222122208311100000000 -T12023011111184760524200408571120413110969300000000010005620070000000000000000000000000000000000222222000002092219012 -T2202301111118476051219730426WTTBPTTZ@2221222222223012212110085221011992000000000000000000000000000000000000000000000000000000000000999900000000000000000208 -T320230111111847605120050708WTT@@WP@Z22212222204311100000000 -T320230111111847605120070321WT@P0@WBP22212212204309100000000120060723WTT@9PYYT22212222204310100000000 -T12023011111184766122000406951120412110947112740000000004620570000000000000000000000000000000308122222000000012219012 -T2202301111118476611219790923WTT0YTT#P2222212222225012212110570323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847661120170507WT@9@ZWYW22222112204398100000000 -T320230111111847661120190426WTTBY9T@P22222122204398100000000120170507WT@@9WPYT22222112204398100000000 -T12023011111184778025900406651120333120000112170000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111118477803219730905WT@BY9@0B2222212222222012208110402011069940000000000000000000000000000000000000000000000000000000000000419200000000000000000169 -T320230111111847780120180712WTTT@#T0@22212122206398100000000120150314WTTPTYP9Y22212122206398100000000 -T12023011111184783123500405981120213110563300000000080005280050000000000000000000000000000000000222222000000002229012 -T2202301111118478311219820512WT@@99B0@2222212222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111847831120050327WT@T9YZB922222122204310100000077 -T12023011111184806225900402721120313110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111118480621219970127WT@##T0T91222222222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111848062120210904WT@#BTT0012222222204398100000000120180907WTT#TWW@@12222222204398100000000 -T12023011111184808222000410221120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118480823219660314WTT@9BBTW2222211222222012212110006013069900000000000000000000000000000000000000000000000000000000000000784300000000000000000000 -T320230111111848082120090118WT@ZW#Y0B22222112206306100000050 -T12023011111184817722000411551120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118481773219540407WT@PWPTWB2221222222215012212110600013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111848177120090214WT@P99@BW22212222206307100000000 -T12023011111184818825900406841120332110700300000000000005280470000000000000000000000000000000000222222000000002229022 -T2202301111118481883219860423WT@#0##YP2122222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000600 -T320230111111848188120180907WTTWP@TZZ11222222208398100000000120150307WTTWP@9PW11222222208398100000000 -T12023011111184820422000408892120523211136300000000000008880020000000000000000000000000000000000222222000000002229032 -T2202301111118482041219830708WTTYY@9T@2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111118482041219910401WTTYPY9B@2222212222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111848204120150423WTTYY9ZTB22222122204398200000000 -T320230111111848204120210318WT@B#@ZYT22222112204398200000000120180507WT@B#@ZWT22222122204398200000000 -T12023011111184829823500405271120212110576105820000003005280300000000000000000000000000000000000222222000000002229012 -T2202301111118482981219960324WTTTT##@@2222212222221012216110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111848298120160705WTT9TWWT#22222112204398100000050 -T12023011111184845625900402831120113110376300000000065004170040000000000000000000000000000000000222222000000002229012 -T2202301111118484561220020512WT@YY@B9W1222222222221013212190055523011800000015000000000000000000000000000000000000000000000000000000000000000000000000008983 -T12023011111184860122000412971120313110835300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111118486011220010402WTT9#B#@02222212222221012211110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111848601120210922WTT0WZBPP22222112204398100000000120210922WTTB0PW#T22222122204398100000000 -T12023011111184863220800410751120233120000300000000300004170410000000000000000000000000000000000222222000000002229022 -T2202301111118486323219620313WT@WZPW@T2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000414500000000000000000000 -T320230111111848632120130701WTT00#@B@22222122206302100000000 -T12023011111184882324700408091120412110939300000000000007710600000000000000000000000000000000000222222000000002229072 -T2202301111118488231219970113WT@T9B@WW2222212222221012211120690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111848823120150705WTTPBBTWB22222112204398100000000 -T320230111111848823120200923WT@PB9TP022222112204398100000000120170302WT@YYY9WP22222112204398100000344 -T12023011111184883922100409491120233120000300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111118488393219980226WTTTT0PP@1222222222221012212110006011069916000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111848839120060404WTTYP9#9P12222112207310100000000 -T12023011111184884224700408361120213110611110660000008303160140000000000000000000000000000000211122222000000012219012 -T2202301111118488421219930727WTTZ0Y#902222212222221012210110253523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111848842120180427WTT#WPT@W22222122204398100000000 -T12023011111184889824200400491120212110611108850000000003160440000000000000000000000000000000211122222000000012219072 -T2202301111118488981219860324WTTPP#9BW2222212222221012210110810023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111848898120190727WT@ZBW90B12222112204398100000000 -T12023011111184894122000407411120333110740124170000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118489412219870413WT@WW9WBT2221222222215012216120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111848941120170704WTTZ#@@BZ22212222204398100000000120110307WT@TPZ#WB22222222204303100000000 -T12023011111184894524200404421120213110611300000000000003160230000000000000000000000000000000211122222000000012219042 -T2202301111118489451219880501WTTT@00PB2222212222221012216110154521010211000000000000000000000000000000000000000000000000000000000000081000000000000000000000 -T320230111111848945120140722WTT#YT#0#22212212204301100000000 -T12023011111184896720600402131120432110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118489672219850212WT@TB909B2222212222215012213110520813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111848967120080726WT@P9B0B#22212112204307100000000 -T320230111111848967120200907WTTPPPY@922212112204398100000000120150524WTTWYWBZZ22212112204398100000000 -T12023011111184907624200414721120233110557300000000000004170630000000000000000000000000000000000222222000000002229022 -T2202301111118490762219910111WT@#B0B#B2122222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111849076120190313WTTZT#99P22212212204398100000000 -T12023011111184923524700408301120213110516300000000070005280190000000000000000000000000000000000222222000000002229012 -T2202301111118492351219840701WTTYZTTY@2222212222221012212110204021011800130000000000000000000000000000000000000000000000000000310000081500000000000000000000 -T320230111111849235120190922WT@@P0ZP922222122204398100000000 -T12023011111184924924100413901120313110618300000000000005280120000000000070003000000000000000000222222000000002229012 -T2202301111118492491219790108WTT99TZYY1222222222222012210210065423011800000000000000000004000000000000000000000000000000000000160000000000000000000000000000 -T2202301111118492492219860226WT@YYBT9P1222221222222022208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111849249120060324WTTZ9YP#Z12222212204309100000000 -T12023011111184944320600412681110313110740300000000000301190150000000000000000000000000000000126122222000004092219012 -T2202301111118494431219810308WT@W@ZZYY2222212222223012216110164421011227000000000000000000000000000000000000000000000000000000000000163300000000000000000000 -T320230111111849443120130207WTT9Y0TZ922222112204304100000000120110701WT@P@Y9YW22222122204305100000000 -T12023011111184944520600400801120233110516300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111118494452219700423WT@Y0Y#902222211222211012209110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111849445120170713WTTWYW#T022222122204398100000000 -T12023011111184945022000408891120212110611300000000074405280650000000000000000000000000000000000222222000000002229072 -T2202301111118494501219850402WT@Y#B0TP1221222222221012216111280023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111849450120050426WT@BTWB@@12222222204310100000000 -T12023011111184955325900402631120212110599300000000000503160080000000000000000000000000000000211122222000000012219012 -T2202301111118495531219830723WTTP@9P@T2222212222221012213110491123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111849553120150923WTT0009WB22122122204398100000000 -T12023011111184960425000402561120433110376300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118496042219990918WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118496042219990407WT@YYBT9P1222221222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111849604120220926WT@9TPY9W12222212204398100000000420170701WT@YYBT9P12222222204398900000000 -T12023011111184962523500404531120413111034125850000441107710050000000000000000000000000000000000222222000000002229012 -T2202301111118496251219900705WTTYBY9092212222222223012214110065421011814000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111849625120130727WTTYTZBTB22222122204303100000000 -T320230111111849625120190112WTTY090#B22222112204398100000000120150212WTTT#WBZ022222112204301100000000 -T12023011111184983225100407671110233110376300000000000002820130000000000000000000000000000000000222222000001352219021 -T2202301111118498322219930113WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111849832120180305WT@T0BBBW12222212204398100000000 -T12023011111184988225900408111120213110599300000000080002380380000000000000000000000000000000158122222000001322219042 -T2202301111118498821219810224WT@9T0B@92122222222223012216110055521011823000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111849882120040227WT@#WYYW921222212204311100000000 -T12023011111184992020600404122120523211199300000000157308880030000000000000000000000000000000000222222000000002229032 -T2202301111118499201219910718WT@WYB9P02222211222221011212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118499201219930318WTT#PWW@Z2222212222221011212190065421011936000000000000000000000000000000000000000000000000000000000000350000000000000000000000 -T320230111111849920120140721WT@T@0#PZ22222112204302100000000 -T320230111111849920120200923WT@PBB9P#22222112204398100000000120150708WT@P90T0#22222112204301100000000 -T12023011111184992125900403711120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118499213219730107WT@0@#9ZZ2222212222225012212110006011069943000000000000000000000000000000000000000000000000000000000000366100000000000000000025 -T320230111111849921120100126WT@P@YBY@22222122206304100000000 -T12023011111184994020600400801120233110516300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111118499402219880112WTT@Y#9BW2122222222211012210120174313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111849940120200108WTTP#9T9#22222112204398100000000 -T12023011111185001123500408281120233110516300000000000002360060000000000000000000000000000000000222222000001812219022 -T2202301111118500113219620121WT@99ZY@91122222222225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850011120060111WTTTY#@0#22222112206309100000197 -T12023011111185004724200409591120423110893300000000010003010080000000000000000000000000000000000222222000004702219012 -T2202301111118500471219900701WTTZZP@WB2222212222221011216190303023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118500471219960201WTTTPPY@Z2222211222221011212110095121011814000000000000000000000000000000000000000000000000000000000000150900000000000000000000 -T320230111111850047120200424WTTZ@YZPZ22222112204398100000000120160726WT@ZYP9WW22222122204398100000000 -T12023011111185022525900406651120433120000300000000000006200990000000000000000000000000000000000222222000000342219022 -T2202301111118502253219580223WTT@TY09Z2222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000435700000000000000000000 -T320230111111850225120100421WT@WPP00@22222122206306100000000 -T320230111111850225120130927WT@YBWWPZ22222122206398100000033120110422WT@#PZ#PW22222122206302100000033 -T12023011111185033824500410691120332110740300000000000005280640000000000000000000000000000000000222222000000002229022 -T2202301111118503382219800427WTT9#Y#Y92222212222211012216110501013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111850338120120909WT@YBZBPY22222122204305100000050120110923WT@B#0TB#22222122204306100000050 -T12023011111185035722000407231120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111118503571219920107WT@ZZPW@92222212222221013210190055521011941000000000000000000000000000000000000000000000000000000000000341700000000000000000000 -T12023011111185039524200405921120212110611106140000004004590610000000000000000000000000000000000222222000000692219072 -T2202301111118503951219820311WT@WY0TZB2222212222221012213110820023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000068 -T320230111111850395120180512WTTYPTT@Y22222112204398100000000 -T12023011111185041120600414771120213120000119490000000004550060000000000000000000000000000000000222222000000002229012 -T2202301111118504111219930712WTT0PWW#W2222212222221012212110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850411120220112WT@#ZWWZY22222122204398100000000 -T12023011111185043424200408571110213110493300000000150005280280000000000000000000000000000000000222222000000002229012 -T2202301111118504341219820121WT@ZW0#YT2222212222225012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850434120080112WTTTTPB@T22222112204308100000387 -T12023011111185043924200414351120313110835107880000000006540140000000000070001000000000000000000222222000000002229012 -T2202301111118504391219960126WTT@@Z@ZW2221222222221012212120174323011400000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111850439120200223WTT0W##P#22212222204398100000000120150114WT@ZY@0W@22212222204301100000000 -T12023011111185055220600414161120413111034300000000000004170540000000000000000000000000000000278122222000000762219012 -T2202301111118505521219860107WTTTZY#002222212222223012212110540623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850552120050327WTTP#BY@B22222122204309100000025 -T320230111111850552120150907WT@W9B@B922222112204398100000025120080318WT@ZB0Z0T22222122204307100000025 -T12023011111185055924200414721120213110598118330000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111118505591219990727WTT9Z9BW02222122222221012210110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850559120200121WT@PTWZ##22222212204398100000000 -T12023011111185056424200404421120233110611300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111118505643219860523WT@0YW0Y@2221222222221012216110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850564120210312WTTPT0Y9#22212212208398100000000 -T12023011111185057524700409321120322110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111118505751219960304WTTP#0T#92222212222222011214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118505751219960924WTTB#YTZ92222211222222021213290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850575120210126WT@#YT9@P22222112204398200000000 -T12023011111185057924700406701120512111116300000000163106540550000000000000000000000000000000000222222000000002229012 -T2202301111118505791219910318WTTTTWWZW1222212222222012215190461423099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118505791219920113WT@TPT@Y@2122221222222022212190411923011400000000000000000000000000000000000000000000000000000000300000000000000000000000004495 -T320230111111850579120150907WTTZPBTTT21222112204398100000000 -T320230111111850579420190326WT@WTZP9@22222112104398109140000420180427WTTT9PBZY21222112104398109140000 -T12023011111185070822000408892120523211116300000000014908880020000000000000000000000000000000000222222000000002229032 -T2202301111118507081219880418WT@9TPY9W2222212222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118507081219850121WT@9TPY9W2222211222222021215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850708120100109WT@9TPY9W22222122204305200000000 -T320230111111850708120170509WT@9TPY9W22222122204398200000000120130905WT@9TPY9W22222122204303200000000 -T12023011111185071521700403571120213110611300000000100005280230000000000000000000000000000000000222222000000002229012 -T2202301111118507151219920113WT@99#WWW2212212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850715120210524WTT0P0W@912222122204398100000000 -T12023011111185075624200414021120523111116300000000070703000020000000000000000000000000000000000222222000005882219012 -T2202301111118507561219880126WTT@ZZYPW2222212222222011216290144621011819000000000000000000000000000000000000000000000000000000000000117500000000000000000000 -T2202301111118507561219860126WT@@9WB0T2222211222222021212290144623011800000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111850756120130727WT@Z#9BBP22222122204303200000000 -T320230111111850756120200907WTTT0@##T22222122204398200000000120150107WTT9YT@TZ22222112204398200000000 -T12023011111185081925200410591120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111118508191219970709WT@@#BBY92222212222221012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111850819120210927WTT#0Z0PW22222122204398100000000 -T12023011111185122122700408351110733111116300000000008000110150000000000000000000000000000000000222222000008772219021 -T2202301111118512212219870712WT@YYBT9P1222212222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118512212219810312WT@YYBT9P1222221222222022206990006011079930000000000000000000000000000000000000000000000000000000000000219300000000000000000000 -T320230111111851221120060212WT@TWP@T012222212204309100000000 -T320230111111851221120110318WTT#0T0WB12222222204305100000000120100307WT@PWTT9#12222222204306100000000 -T320230111111851221120180723WT@BT@@9012222222204398100000000120140904WT@Y#909W12222212204303100000000 -T12023011111185134622000402321120313110835300000000020006540120000000000000000000000000000000000222222000000002229012 -T2202301111118513461219870721WT@9P#TWB2222212222225012214210134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111851346120180513WTT0BTW0T22222122204398200000000120080424WT@P@BZZB22222122204308200000000 -T12023011111185135023500412161120233110516300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111118513503219740101WT@Y@TYB@2221222222223012211120124813069900000000000000000000000000000000000000000000000000000000000000000000000000000000001230 -T320230111111851350120080726WTTYZ0#WB22212212206305100000000 -T12023011111185137824700409651120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111118513781219830724WTT0###PP2222212222225013210190332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111185146921000411361110113110258300000000000004170010000000000000000000000000000000000222222000000002229012 -T2202301111118514691219910923WT@#@90992222212222221013212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111185147620600400871120313110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111118514761219900112WTT0#YZ@Y2222212222223012212210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111851476120160514WT@@TYP0@22222112204398200000000120100323WTTWZ0WZ922222112204304200000000 -T12023011111185148124100402401120113110376300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111118514811220000926WT@Z0YP#P1222212222221013212190035723011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T12023011111185148824200414721120312110740300000000000002960820000000000070010000000000000000000222222000002322219072 -T2202301111118514881219880426WTTP#BT9Z2221222222221012211110830023011800000000000000000001000000000000000000000000000000000000120000000000000000000000000000 -T320230111111851488420100527WT@Y#T0TW22212222104306107020232120070127WTTP#009B22212212204308100000232 -T12023011111185161623500408281120233110608300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118516162219950413WTTPWTTWW2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111851616120140204WT@BBW@T@22222122204302100000000 -T12023011111185169021700407751120212110516300000000432400010580000000000000000000000000000000000222222000000002229012 -T2202301111118516901219880711WT@#WPB#92222212222221012209110570311011700210000000000000000000000000000040000270000000000000000000000125600000000000000000000 -T320230111111851690120170924WTT9YZ90T22222112204312100000000 -T12023011111185170720200409311120213110306300000000000003160210000000000000000000000000000000211122222000000012219072 -T2202301111118517071219870908WT@YTWB9#2222212222221012216110830023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111851707120150908WTT@0BT0W22222122204398100000000 -T12023011111185189220600402141120423110944300000000042501950170000000000000000000000000000000000222222000005762219012 -T2202301111118518921219870505WT@WP999Y2222211222222011214290184221011937000000000000000000000000000000000000000000000000000000450000230200000000000000000000 -T2202301111118518921219930718WT@#WPTTW2222212222222021214290184223011800000000000000000000000000240002000000000000000000000000000000000000000000000000000000 -T320230111111851892120190918WTTYZT9T922222112204398200000000120180421WT@Y0YY9#22222112204398200000000 -T12023011111185191622000401051120233120000300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111118519163219610404WTTB#Z@B@2221221222222012214110006013069900000000000000000000000000000000000000000000000000000000000000600000000000000000000000 -T320230111111851916120050727WT@@WP#Y022212212207309100000865 -T12023011111185205424200404701120312110704300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111118520541219860409WT@BPT0WB1222222222225012212110134721011941000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852054120130713WTTW@P9YP12222212204302100000000120080707WTTYZW9YY12222212204307100000000 -T12023011111185209924200403941110313110835109620000000003160310000000000000000000000000000000000222222000003382219012 -T2202301111118520991220000526WTT9T9WT@2221212222221012210110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852099120200307WT@W@0T0Z22222112204398100000000120190423WTT#YBZPW22212222204398100000000 -T12023011111185219524100402401120213110611300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111118521951219730901WTT@@0BYP2222211222225012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852195120110324WT@Y#T#Z922222112204303100000000 -T12023011111185221221000404881120313110740300000000112505840580000000000000000000000000000000000222222000000702219012 -T2202301111118522121219900313WTT@0TZP@2222212222221012212110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000069 -T320230111111852212120210413WT@@W0Z#@22222122204398100000000120120105WT@ZPWPW#22222122204303100000265 -T12023011111185242122000410051120212110516300000000000004170930000000000000000000000000000000000222222000000002229072 -T2202301111118524211219780112WT@#ZPPYW2221221222225012212111000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852421520070102WT@#0BWPT22212222104309109140000 -T12023011111185245820300400971120433110939300000000015004100760000000000000000000000000000000000222222000001182219022 -T2202301111118524581219940223WT@@9Y9B02222212222221012216110830021099907000000000000000000000000000000000000000000000000000000000000020000000000000000000067 -T320230111111852458120130904WT@09#9T012222122204304100000050 -T320230111111852458420170427WTTZ#PBP022222112104398109000000420150121WT@Z@W9YB12222112104301108560164 -T12023011111185252522700408491120313110835126800000000006540160000000000070002000000000000000000222222000000002229012 -T2202301111118525251220000209WT@@ZZPTB1222222222223012211110164423011400000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111852525120190909WTTW#Z9Y#12222122204398100000000120170312WT@YB9PWB12222222204398100000000 -T12023011111185253922000407241120313110766300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111118525391219950308WTTZW#WP01222222222223012209110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852539120220223WTTTT##T@12222112204398100000000120150321WTTZYW9##12222122204398100000000 -T12023011111185261120600400801120413111032134410000022507710210000000000000000000000000000000000222222000000002229012 -T2202301111118526111219960707WTTZPTTPZ2222212222221012212110213923011400000000000000000000000000000000000000000000000000000000290000000000000000000000009999 -T320230111111852611120190527WT@99B@BB22222112204398100000000 -T320230111111852611120200908WT@@#@@#922222122204398100000000120190527WT@#YBBYB22222112204398100000000 -T12023011111185264222000412691120412110939300000000000003920640000000000000000000000000000000261122222000000012219072 -T2202301111118526421219740113WT@BWPPPZ2222222222222012213190740023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118526422219800222WT@Y@@9#02221211122212022216190006013109900000000000000000000000000000000000000000000000000000000000000000000000716021800000000 -T320230111111852642120080514WT@YBPWT022212112204305100000000120060404WT@@PBZYP22212122204308100000000 -T12023011111185270524200404891120433110939300000000027405280110000000000000000000000000000000000222222000000002229022 -T2202301111118527051219830911WT@#PPYTP2222211222224012213110134723099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852705120080112WTTZ#9#Z@22222122204307100000000 -T320230111111852705420120523WT@@99@0Z22222112104304107360198420100221WTT#W@@T#22222112104306107360198 -T12023011111185280625600412851120313110786300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111118528061220020422WTT90@WP92222222222221012212120035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852806120220926WT@P@9W@922221212204398100000000120200202WT@Y9Y@TZ22222212204398100000000 -T12023011111185288625000401171110313110516300000000000001690420000000000000000000000000000000261122222000002242219012 -T2202301111118528861219870423WTTZZ#00T2222212222223012212110431723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852886120160224WTTT0YY9T22222112204301100000000120120118WTTY90ZYT22222112204304100000000 -T12023011111185289524100402401120512111116115840000000006110340000000000000000000000000000000000222222000002772219072 -T2202301111118528951219880722WT@99#09Z1222222222221012213110800021011808000000000000000000000000000000000000000000000000000000020000055300000000000000000000 -T320230111111852895120090307WTT0#0TZ@22222122204306100000000120080404WTTY#YP9912222212204308100000000 -T320230111111852895120210707WT@WZPT9@12222222204398100000000120190113WTTZ@#B9B12222112204398100000100 -T12023011111185294024200414021120213110598300000000000003960280000000000000000000000000000000132222122000000002229012 -T2202301111118529401219900411WTTWT9#0#2222212222221012212120411923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852940120160712WT@B@TB9B22222112204398100000000 -T12023011111185294322000410052110423210939300000000000006710010000000000000000000000000000000000222222000000002229032 -T2202301111118529431219950313WT@9TPY9W1222222222221011298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118529431219680101WT@9TPY9W1222221222222021298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852943120170223WT@9TPY9W12222222204398200000000120150207WT@9TPY9W12222222204302200000000 -T12023011111185297425800405801120232110611300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111118529743219760724WTTW@PZWW2222212222223012212110382213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111852974120130123WT@#9W##P22222122206302100000000 -T12023011111185315422600405051120623111126300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111118531541219960212WT@ZT0#@P2222211222222011212290055521011937000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118531541219950313WT@YZBZY92222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111853154120160423WT@#9TPT#22222112204398200000000120130423WT@P@YZZ@22222112204398200000000 -T320230111111853154120230423WTTP#@@BW22222122204398100000000120170124WT@BYPP0Y22222112204398200000000 -T12023011111185321522700408491120413110959300000000000007320280000000000000000000000000000000000222222003800012219012 -T2202301111118532151219930212WT@BT#T9Z2222212222225012213110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111853215120130512WTTBZ0Z#022222112204302100000000 -T320230111111853215120160109WT@TBZY@T22222122204398100000000120130512WT@00WYT922222122204302100000000 -T12023011111185325025900403711120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118532503219510523WTTBZTZ#Z1222222122212012205210501013069900000000000000000000000000000000000000000000000000000000000000000000000395053900000000 -T320230111111853250120050918WT@99B0PY12222212206311100000000120040404WTTZZ#9W012222222206311100000000 -T12023011111185327322000407241120313110766300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111118532731220030211WT@W0@B@Y2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111853273120220511WT@Z@ZWY@12222122204398100000000120210114WT@WBWT0Z12222112204398100000000 -T12023011111185334323500404531120313110835106050000005306540040000000000000000000000000000000000222222000000002229012 -T2202301111118533431219930314WTTW#BYZ92222212222221012212110045621011740000000000000000000000000000000000000000000000000000000000000186600000000000000000000 -T320230111111853343120220107WT@0@0@T@22222112204398100000000120160322WTTZ@ZWBT22222122204398100000000 -T12023011111185341522000409971120332110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118534153219650418WT@BBT9002221222222221012210110510913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111853415120050501WT@@#WY@Z22212222206311100000000120050501WT@0YYPYW22212212206311100000000 -T12023011111185345724200414851120333110493300000000062004170340000000000000000000000000000000000222222000000002229022 -T2202301111118534572219750311WT@YYBT9P1222222222223012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118534575220040318WTTW@90##1222221222211043211190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111853457120110404WT@9PB@TY12222212204305100000000 -T12023011111185347024700405901110413110964300000000000006940030000000000000000000000000000000000222222000000002229012 -T2202301111118534701219880413WTTTB#BB@2222212222225012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000001529 -T320230111111853470120100727WTT9TT@ZZ12222122204306100000033 -T320230111111853470120170423WT@0#90BZ22222122204398100000033120120327WT@#9W#9T12222112204303100000033 -T12023011111185366020800411931120322110785300000000000106540310000000000000000000000000000000000222222000000002229012 -T2202301111118536601219910701WT@#PP@Y91222222222221011213110322823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118536601219940126WT@PZZZPT2221221222221011213190312921011932000000000000000000000000000000000000000000000000000000000000000200000000000000000000 -T320230111111853660120200407WTTWZ#9YW12222222204398100000000 -T12023011111185371120600412561120423111017300000000000007710200000000000000000000000000000000308222221000000002229012 -T2202301111118537111219920126WT@#WWPZ#2222211222221011212190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118537111219980913WTTYTWZ#Z2222212222221011209110253523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111853711120210118WT@TWY99B22222122204398100000000120170301WT@YBTYWT22222122204398100000000 -T12023011111185384523500405271120233110516300000000180004170170000000000000000000000000000000000222222000000002229022 -T2202301111118538453219550307WT@0#9W@#2222212122225012213120006011069920000000000000000000000000000000000000000000000000000000000000185000000832000000000000 -T320230111111853845120060712WTTT@0TZB12222112206309100000000 -T12023011111185388624700408301120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118538862219730523WTT@@#PYP2222212222213012206120362413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111853886120130923WTTTB0B9#22222122204302100000000120130923WT@W@YP@Z22222112204302100000000 -T12023011111185401224700405901120313110835300000000191306540060000000000000000000000000000000000222222000000002229012 -T2202301111118540121219770127WTT#TT##@2222212222225012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854012120100701WT@PY90P022222112204306100000000120080414WT@9909TB22222122204308100000000 -T12023011111185401424200414721120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111118540143219760711WT@ZB@ZZ02222122222222012212110006011069976000000000000000000000000000000000000000000000000000000000000789500000000000000000000 -T320230111111854014120070112WT@BZ99W922221222207308100000000 -T12023011111185406922000405321120313110835300000000070005280740000000000000000000000000000000000222222000000002229012 -T2202301111118540691219710713WT@YPP9Y91222222222221012206220035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854069420090509WTTPPP09B12222212104308109140000120070705WT@PZ@0BY12222222204310100000000 -T12023011111185409925600411521120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118540992219670913WTTT@9ZT#2222122222215012213111000013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111854099120080526WTTPBBZ#Y22221212204308100000050 -T12023011111185431525100407671120323110835300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111118543151219790207WTT9#YPZ@2222212222225011213190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118543151219670127WTT9ZZWTT1122221222221011212190144623011800000000000000000000000000250002000000000000000000000000040000030000000000000000000000 -T320230111111854315120170121WTT@TPP#T12222112204398100000000 -T12023011111185440724200407431120213110611300000000080000910070000000000000000000000000000000000222222000004372219012 -T2202301111118544071220010923WT@BZP9Z#2222212222221012212120085221011814000000000000000000000000000000000000000000000000000000000000087200000000000000000000 -T320230111111854407120210927WTTW@9#BY22212112204398100000000 -T12023011111185451720800411931120713111490127330000000011650170000000000000000000000000000000000222222000000002229072 -T2202301111118545171219890327WTT@@BYB@2221222222221012210110880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854517120110113WTT@BBTBB22212212204305100000000120090202WT@BP99#Z22212212204306100000000 -T320230111111854517120140423WT@@P#0Z@22212212204302100000000120120123WT@0PWZYT22212212204304100000000 -T320230111111854517120190908WT@P00Z9T22212222204398100000000120160907WTTYBZPT#22212222204301100000000 -T12023011111185457725900402831120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111118545771220000209WT@P##@BW2222212222221012211110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854577120220713WT@0TWP@W22222122204398100000000 -T12023011111185459222700413181120313110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118545921219840308WT@0BPWYY2222211222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854592120130423WTTBW09P@22222122204303100000000120100904WTTPW@#9012222112204305100000000 -T12023011111185462621700406141120313110832125010000000406540100000000000000000000000000000000000222222000000002229012 -T2202301111118546261219980922WTT@WYWZ91222222222221012213110114923011700000000000000000000000000400002000000000000000000000000010000000000000000000000002277 -T320230111111854626120210527WTT9YZW@Y22222112204398100000000120190705WT@B99#PY22222122204398100000002 -T12023011111185463625900402831120313110855116700000000005660500000000000000000000000000000000000222222000000002229012 -T2202301111118546361219910209WTTW@BT9Y2222212222221012212110451523011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111854636120220924WT@@WTT9022222122204398100000000120210123WT@P@@0TY22222112204398100000000 -T12023011111185470020200409311110533110835300000000000005480010000000000000000000000000000000000222222000000002229021 -T2202301111118547002219830309WT@YYBT9P1222222222222012209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118547002219780302WT@YYBT9P1222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854700120120912WT@P0YWBT12222212204304100000000 -T320230111111854700120220713WT@#@#WTW12222212204398100000000120150312WT@@@W#YB12222222204398100000000 -T12023011111185474220600409771120412111034300000000050007710250000000000000000000000000000000000222222000000002229012 -T2202301111118547421219770712WT@9Y0#0#2222212222223012215110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854742120050904WTT090#@@21222222204310100000000 -T320230111111854742120100204WTT@TBZ9P21222222204305100000000120080905WT@9Y#W0#21222222204307100000000 -T12023011111185493822000410051120313110835300000000000003920990000000000000000000000000000000261122222000000012219072 -T2202301111118549381219830902WT@09TTTT2222212222223012210111330023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854938120170918WTT#YP9B@22222112204398100000000120120427WT@P#TZ9922222122204304100000000 -T12023011111185497620800414651120412111004300000000000007320320000000000000000000000000000000000222222003800012219012 -T2202301111118549761219920204WT@#9#90Z2221222222221012212120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111854976120150507WT@#Z#B0T22222222204301100000000 -T320230111111854976120200308WTTBZT#P922222112204398100000000120160721WTT#@PYZ922222212204398100000000 -T12023011111185498124500405781120333120000300000000005005280540000000000000000000000000000000000222222000000002229022 -T2202301111118549813219570122WTT#B#ZPY2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000110000000000000000000000 -T320230111111854981120080912WTT#099TY22222122206307100000025120070424WT@Z9TY@Z22222122206308100000025 -T12023011111185501723500407161120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118550173219500312WT@9ZT@Z92222212122225012212120006011069919000000000000000000000000000000000000000000000000000000000000206700000929000000000051 -T320230111111855017120110404WT@0ZYZPZ22222122206398100000000 -T320230111111855017120150404WT@0#B9@@22212222206398100000000120130526WT@BPT@ZP22212222206398100000000 -T12023011111185502422000407241120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111118550241219760424WTT#W@YB92222212222222011213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118550241219760414WT@YT9#@02222211222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855024120120912WT@@PBYYW22222112204304200000000120050107WT@#9Y#PY22222122204312200000000 -T12023011111185515324200404891120213110376300000000010004650020000000000000000000000000000000000222222000000002229012 -T2202301111118551531219980907WT@#Z#ZB@1222212222221012216120075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855153120220708WT@9TPY9W22222212204398100000000 -T12023011111185517920600414771120212110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111118551791220000726WT@ZWZZT#2222222222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855179120220723WTTY0ZYW#22222122204398100000000 -T12023011111185522623900408801120433110893117480000000006540730000000000000000000000000000000000222222000000002229022 -T2202301111118552263219710718WT@T0TY#02222212222225012214110025811069925000000000000000000000000000000000000000000000000000000000000320200000000000000000009 -T320230111111855226120140411WT@0Y90BZ22222122206302100000050 -T320230111111855226120210914WTTW#9ZTW12222122206398100000000120150111WT@P@PWT022222112206398100000050 -T12023011111185525021400408021120533110835300000000100006540330000000000000000000000000000000000222222000000002229022 -T2202301111118552502219920408WT@YYBT9P1222222222221012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118552502219910112WT@YYBT9P1222221222221102209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855250120100301WTTZZ09TY12222212204306100000000 -T320230111111855250120210708WT@WYW#@#12222222204398100000000120150427WT@0ZPP9@12222212204302100000000 -T12023011111185528422000414461120233120000300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111118552843219580514WTTBPYWB@2222211222222012212110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111855284120200418WT@00#WTB22222112206398100000000 -T12023011111185528520600402131120213110611300000000000001520090000000000000000000000000000000000222222000003762219012 -T2202301111118552851219890307WT@PB@ZYW1222212222223012211110085221011812000000000000000000000000000000000000000000000000000000000000075000000000000000000000 -T320230111111855285120070714WTTWT#0W@12222222204309100000000 -T12023011111185549322000409411120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118554933219630311WTTT0T#P92222212222213012213110332713069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111855493120080418WTTZWYZ@W12222112206308100000000 -T12023011111185550723500411471120233110489300000000000003960490000000000000000000000000000000000222222002000012219022 -T2202301111118555073219770723WTTTPY#BP1222222222225012213110372311069924000000000000000000000000000000000000000000000000000000000000154800000000000000000000 -T320230111111855507120130223WT@TZ#9#Y22222112206302100000000 -T12023011111185553225600413441120213110576300000000200805280270000000000000000000000000000000000222222000000002229012 -T2202301111118555321220010311WTTZ@PTB92222212222221012209110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855532120200926WT@W#ZB9T22222122204398100000050 -T12023011111185562323500405271110213110516300000000000002380010000000000000000000000000000000000222222000000002229012 -T2202301111118556231219850901WT@B9Y#@B2222212222221012214110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855623120120404WT@PWZZWZ22222112204304100000000 -T12023011111185564322700408351120233110376300000000043604170150000000000000000000000000000000000222222000000002229022 -T2202301111118556432219830112WT@YYBT9P1222212222221012213910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855643120190118WT@B9@Y9#12222112204398100000000 -T12023011111185571622700401571120633111269300000000000006540290000000000000000000000000000000000222222000000002229022 -T2202301111118557163219960523WTTYZB0@@2222212222221012211110184213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855716420140727WT@0ZYP@022222112204302100000000 -T320230111111855716120190527WTTZ00W@Z22222122209398100000000120170702WT@BT0@0B22222122209398100000000 -T320230111111855716420210127WT@ZBTPY@22222122204398100000000120200408WTTWPWPPT22222112209398100000000 -T12023011111185572924500405781120232110516300000000000004170910000000000000000000000000000000000222222000000002229022 -T2202301111118557292219850321WT@#W@W0Z1222212222211012216110800013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111855729120110723WT@YB0BWY22222112204304100000000 -T12023011111185578920800414651120412110975300000000000007710450000000000000000000000000000000000222222000000002229072 -T2202301111118557891219760902WTTWZ0#ZY1222212222225012211110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855789120100708WT@T#@@9Z11222122204304100000000 -T320230111111855789120150213WT@9B@0B911222122204398100000000120110905WT@YZW0#911222112204304100000000 -T12023011111185595320600402131110213110611300000000000000340010000000000000000000000000000000000222222000000002229012 -T2202301111118559531219990102WT@TPB9B#2222212222221012212120025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111855953120210404WTT9ZPT#Z22222112204398100000000 -T12023011111185603520600401641120312110816300000000032506540990000000000000000000000000000000000222222000000002229072 -T2202301111118560351219820401WTTZ9T@B02222212222225012212111010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856035120150724WT@TZYY@022222112204398100000000120150724WT@9Y#@W022222122204398100000000 -T12023011111185610824200414721120333120000300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111118561085219600708WT@9BW0WP2221222222223012212110006011069935000000000000000000000000000000000000000000000000000000000000777700000000000000000000 -T320230111111856108120070923WTTT@P@9@22212222209309100000000120050907WT@ZY0P0P22212212209310100000000 -T12023011111185620920800410751120233110516101310000000004170840000000000000000000000000000000000222222000000002229022 -T2202301111118562092219910721WT@W0TY902222212222211012212110006011089919000000000000000000000000000000000000000000000000000000000000121800000000055800000006 -T320230111111856209120160523WT@0@@W9W22222112204398100000050 -T12023011111185626723500411471120432110752300000000000006540140000000000000000000000000000000000222222000000002229022 -T2202301111118562673219840927WTT0T#W0Y2222212222221012216110980013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856267120110522WTTT@B09Z22222112207306100000000 -T320230111111856267120130527WTTZYZTW022222112209304100000000120120507WT@B@9W0B22222122207305100000000 -T12023011111185632222000400811110212110611300000000010005280110000000000000000000000000000000000222222000000002229012 -T2202301111118563221219960223WTTB00T#P2221222222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856322120170912WT@YB@ZW#21212222204398100000033 -T12023011111185639120800411931110313110835300000000000003160030000000000000000000000000000000000222222000000002229012 -T2202301111118563911219990514WT@WYP#ZY2222212222221012212120045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856391120200912WTT#Z9YPZ22222112204398100000000120150312WT@B0#0@Y22222112204398100000000 -T12023011111185640721000411361120313110724300000000000004420060000000000000000000000000000000000222222000002122219012 -T2202301111118564071219790921WTT0#T0P#2222212222221012213110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856407120150204WT@0PZ0WT22222112204398100000212120060908WT@@T@Z9Z22222112204310100000000 -T12023011111185642620800405141120433110611300000000000005280460000000000000000000000000000000000222222000000002229022 -T2202301111118564262219920921WT@P0Y9#T1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118564262219880521WT@YYBT9P1222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856426120180701WTTY0YTT012222212204398100000000120120427WTT#P@PWP12222212204304100000000 -T12023011111185643621700406141110213110376300000000000002040080000000000000000000000000000000000222222000000002229012 -T2202301111118564361219820312WT@@Z9Z#B2222212222223012212110065422011700000000000000200000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111856436120210426WT@P@WY0921222212204398100000000 -T12023011111185644924200402501120233120000300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111118564493219670923WTTTW0W9P2221222222222012212120006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111856449120130223WTTZZW0YB22212212206303100000000 -T12023011111185645624100413561120313110634300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118564561220020511WTTBPZPB#1222212222221012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856456120210702WT@WBZPWT12222122204398100000000120180727WTT0PW@TZ12222122204398100000000 -T12023011111185648420800414651110213110611104850000057104760110000000000000000000000000000000000222222000000002229012 -T2202301111118564841220000112WT@@@TWTY2222212222221012212110124821011735000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856484120200204WT@#ZW00P12222122204398100000000 -T12023011111185649925600413441120213110611300000000005005280080000000000000000000000000000000000222222000000002229012 -T2202301111118564991219900104WTT0YZYY@1222212222225012213110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856499120220312WTTB#ZW@912222222204398100000000 -T12023011111185665124200403461120213110598300000000000205280160000000000000000000000000000000000222222000000002229012 -T2202301111118566511219890201WTT9ZT99@2222212222221012216110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856651120130112WT@B090Y#22222112204304100000000 -T12023011111185669920600406751120313110835300000000000006540280000000000000000000000000000000000222222000000002229012 -T2202301111118566991219860412WTTT#0ZPB2222212222223012212110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111856699120210326WT@#T#@Y022222122204398100000000120160113WTTTZB09#22222122204398100000000 -T12023011111185677825600403771120233110470300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111118567783219790202WTT@9TW#P1122212222222012216110650011069953000000000000000000000000000000000000000000000000000000000000330200000000000000000000 -T320230111111856778120160518WT@9Z0WPT11222112206398100000000 -T12023011111185679922000403891120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118567991219910423WTT0Y#Y9W2221222222221012205210055523011800000000000000000000000000000000110001000000000000000000000000000000000000000000000000 -T320230111111856799120080309WTTZZ#9@Y22212212204308200000000 -T12023011111185682323500404821120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118568233220040523WTTW9ZWPY1222221222221012212110006011069958000000000000000000000000000000000000000000000000000000000000521300000000000000000000 -T320230111111856823120060202WT@ZYW9#Y12222212207310100000000 -T12023011111185689122000409971120312110766300000000000006540820000000000035018000000000000000000222222000000002229072 -T2202301111118568911219840409WTT@BYWYW2221222222221012216110940023011400000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111856891120190524WTT9P9T9@22212222204398100000000120060121WT@YPT9ZB22212212204310100000000 -T12023011111185703720900411721120232110516300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111118570373219530114WTTBZW@ZW2222212122225012214120015913069900000000000000000000000000000000000000000000000000000000000000000000001092000000000000 -T320230111111857037120100412WT@TY@W9T22222122206305100000000 -T12023011111185707225900402831120213110611109340000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111118570721219940207WTTZWT#P02222212222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857072120210702WT@@99BP922222122204398100000000 -T12023011111185713122000400591120213110618300000000000005280350000000000000000000000000000000000222222000000002229012 -T2202301111118571311219980313WTTYYBTTT2221222222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857131120150212WT@@0#BB922212212204302100000000 -T12023011111185716224700405901120412110939146890000000007710590000000000000000000000000000000000222222000000002229012 -T2202301111118571621219870312WT@Z#09@T1222212222221012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857162120190213WT@P9YB0@22222122204398100000000 -T320230111111857162120210501WT@ZZ9ZYY12222112204398100000000120200126WT@PY99T#12222122204398100000000 -T12023011111185723424700406631120712111480122980000000005940880000000000000000000000000000000000222222000005712219072 -T2202301111118572341219850527WTT0WWP@#2222212222221012212110890021011700210000000000000000000000000000000000000000000000000000030000125900000000000000000000 -T320230111111857234120090707WTTTTBBP#22222112204307100000000120070322WTT#@PY9@22222122204308100000000 -T320230111111857234120150413WTTP9YZ@922222122204301100000000120110312WT@BT@@P@22222112204304100000000 -T320230111111857234120180904WT@#0WWPZ22222112204398100000000120160111WTT@#09ZT22222122204398100000000 -T12023011111185724122000413731120513111116300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111118572411219800423WTT9#Y#P@2221221222223012298210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857241120130313WT@TPZ9BW22212222204398200000000120090421WT@YTW0@#22212222204398200000000 -T320230111111857241120200312WTT@9T#0B22212212204398200000000120170726WTTTBWWP022212212204398200000000 -T12023011111185732322000402371120232110593300000000000004170970000000000000000000000000000000000222222000000002229022 -T2202301111118573232219800402WT@PPY@WT2222212222211012206110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111857323120150422WT@TB@ZW922222122204301100000000 -T12023011111185734420600414871120313110746120860000000005780020000000000000000000000000000000000222222000000762219012 -T2202301111118573441219820324WT@@ZYY9#2222211222221012213110045623011400000000000000000000000000000000000000000000000000000000000000030100000000000000000000 -T320230111111857344120190123WTTW#ZYB022222112204398100000000120180504WTTZYP#PZ22222122204398100000000 -T12023011111185738824200410711120313110835300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111118573881219970404WT@0#W##Y2222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857388120190305WT@W#@TZ#22222122204398100000000120160126WT@W0#Y@Z12222112204398100000150 -T12023011111185743925900414481120333120000300000000000005280490000000000000000000000000000000000222222000000002229022 -T2202301111118574393219700723WT@B0BW0P2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857439120100401WT@#PZ@WY22222112207305100000050120100401WTTYZ@TWZ22222112207305100000050 -T12023011111185750624200403941120233120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118575063219560704WT@#ZPP0@2222121122222012212110372313069900000000000000000000000000000000000000000000000000000000000000000000000976000000000000 -T320230111111857506120080327WT@WP##T022222222206306100000000 -T12023011111185753824100413881120213110598300000000001505280090000000000090004000000000000000000222222000000002229012 -T2202301111118575381219780127WTT0@Z@@T2222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857538120160326WTT0W90BB22222122204398100000000 -T12023011111185755222000400461110413110939123450000000000460030000000000000000000000000000000000222222000000002229012 -T2202301111118575521219910109WTTZ#0YT@2221222222221012211110045621011815000000000000000000000000000000000000000000000000000000000000113000000000000000000000 -T320230111111857552120080908WTTB0@9B922212222204308100000000 -T320230111111857552120190918WT@0WBZYT22212222204398100000000120130412WT@Z0@W#P22212222204303100000000 -T12023011111185757022000405181120213110598300000000000005280960000000000000000000000000000000000222222000000002229072 -T2202301111118575701219880109WT@YB@#BZ2221222222221012209111100023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857570120210727WTTT0PT#Y21222222204398100000000 -T12023011111185765720600402141120333110740300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111118576573219650423WT@YP9PTT2222212222223012213110055511069932000000000000000000000000000000000000000000000000000000000000254200000000000000000000 -T320230111111857657120140301WTTY0Z0T#12221212208398100000000120130407WT@#90YW#12222122209302100000000 -T12023011111185783525900402631110213110631300000000000000940010000000000000000000000000000000000222222000000002229012 -T2202301111118578351219920726WT@#YBW9B2222212222221012212110025821010114000000000000000000000000000000000000000000000000000000000000080000000000000000000000 -T320230111111857835120220512WT@BZ990B12222122204398100000000 -T12023011111185783722700408351120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111118578371219950408WT@TY9Y0P1222212222222011212290055521011947000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118578371219930713WT@B@PT0#1222211222222021211290055521011947000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111857837120170727WT@ZBZ00912222112204398200000000120100704WT@0YW9W#12222122204305200000000 -T12023011111185786020600407032120232210470300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111118578603219810327WT@P9WZYB2222122222221012211910253511079914000000000000000000000000000000000000000000000000000000000000090300000000000000000000 -T320230111111857860120060523WT@ZBW##B22221222207310900000000 -T12023011111185826024200402981120412110939300000000000007710630000000000000000000000000000000000222222000000002229072 -T2202301111118582601219870123WTTZZ99ZZ1212222222221012212110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858260120040304WTT@BYY#Z12122222204311100000000 -T320230111111858260120140123WT@W@9#0W12122222204398100000100120070113WTT#PBYW912122212204308100000000 -T12023011111185830924700402991120213110598300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118583091219920413WT@9TPY9W1222222222221012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858309120130923WT@9TPY9W12222222204304200000000 -T12023011111185833322000405841120413110939300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111118583331219740423WTT9B@ZZB2221222222222012212210174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858333120060412WT@PPYB@T22212222204310200000000 -T320230111111858333120110412WTTT9Z#Y@22212222204305200000000420080711WT@TY#9#T22212222104307209140000 -T12023011111185840020600414871110213110376300000000000003400150000000000000000000000000000000000222222000000772219012 -T2202301111118584001219950701WT@B#TW002222212222221012210110233723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858400120220113WTT@Y0BP922222122204398100000000 -T12023011111185843522000405321120213110598111740000010005280080000000000000000000000000000000000222222000000002229012 -T2202301111118584351219810921WTT##Z@P#2222212222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858435120220112WT@0#00WW22222112204398100000000 -T12023011111185846325900402721120512111116300000000000208880510000000000000000000000000000000000222222000000002229012 -T2202301111118584631219880118WT@WPW0#Y1222222222221012212110510921011700210000000000000000000000000000000000000000000000000000030000136400000000000000000000 -T320230111111858463120110111WTTYWTBZT12222222204305100000000120080304WTTPT9YTY12222112204307100000000 -T320230111111858463120220912WTTZPBBZY12222122204398100000000120170912WT@9TPBWP12222112204398100000000 -T12023011111185848022000412232120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111118584801219890326WT@9TPY9W2222211222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118584801219880927WT@9TPY9W2222212222222021214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858480120210526WT@9TPY9W22222112204398200000000120170523WT@9TPY9W22222112204398200000000 -T12023011111185848124200405921120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118584812219840323WT@0Y90B01222222222215012208110730013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111858481420110918WT@WTWYZB12222212104305109140000120050904WTTP#BT@P12222212204309100000000 -T12023011111185848220600407031120433110893300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118584823219610123WT@BYWWTB2222212222222012212110015913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858482120060302WTT9Y0#W#22212212206309100000000 -T320230111111858482120170104WT@YZ#TZP22212212206398100000000120140727WT@9@#ZWY22212222206301100000000 -T12023011111185860624100414391120212110611300000000004005280510000000000000000000000000000000000222222000000002229072 -T2202301111118586061219810301WTT0B9PWY2222212222221012216110900023011800000000000000000001000000000000000000000000000000000000010000000000000000000000000000 -T320230111111858606120200701WTT9WWW0T12222112204398100000000 -T12023011111185870025600400221120413111017300000000008007710040000000000000000000000000000000000222222000000002229012 -T2202301111118587001219920505WT@B@W0T02222212222221012212120055523011800000000000000000000000000000000250000000000000000000000000000000000000000000000000000 -T320230111111858700120130302WT@P#0ZY#22222112204303100000100 -T320230111111858700120210424WTTPZ@Y0B22222212204398100000000120180911WT@ZWWZT922221112204398100000000 -T12023011111185882220600414771120232110516300000000300004170990000000000000000000000000000000000222222000000002229022 -T2202301111118588223219640504WT@PYTZ9T2222212122215012212110105013069900000000000000000000000000000000000000000000000000000000000000000000000811012300000000 -T320230111111858822120050902WTTPPBTYB12222122206311100000050 -T12023011111185888022000405842120423210939300000000000007710080000000000000000000000000000000000222222000000002229032 -T2202301111118588801219900918WTTT@@Z902222212222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118588801219820901WTTYWWYZW2222211222222021212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858880120200701WT@T0@B#922222112204398200000000120140711WTTTTPY9Y22222112204398200000000 -T12023011111185890222000406271110213110611105920000000203230060000000000000000000000000000000000222222000000002229012 -T2202301111118589021220010704WTT#BZ9Y92222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111858902120200126WT@9Z@#B022222122204398100000000 -T12023011111185895023500411471120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111118589501219860718WT@909@#P2222211222222011216290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118589501219880123WTTZ@BPBB2222212222222021216290105023011800000000000000000000000000000000000000000000000000000000390000000000000000000000000000 -T320230111111858950120110918WT@PTW99Y22222122204304200000000 -T320230111111858950120210227WT@BZYZWP22222112204398200000000120130214WTTPPBTZY22222122204302200000000 -T12023011111185897720600414251120732111500300000000000010090690000000000000000000000000000000000222222000000002229022 -T2202301111118589772219840223WTT00ZY#@2222211122211012212110610013109900000000000000000000000000000000000000000000000000000000000000000000000913002100000000 -T320230111111858977120060705WT@BZYZBW11222222204309100000000120050512WT@@BWB0B12222122204310100000000 -T320230111111858977120100412WT@0#0@B@12222112204305100000000120080121WT@0@#P#W11222222204307100000000 -T320230111111858977120190711WTTYPZZY@22222122204398100000000120180405WTT9W@0ZY11222212204398100000000 -T12023011111185903724200407271120423111034300000000007606420020000000000000000000000000000000000222222000000122219012 -T2202301111118590371219870901WTTBT0P0P2222212222223011215210035721011931000000000000000000000000000000000000000000000000000000000000018900000000000000000000 -T2202301111118590371219870223WTTT0@WB92222211222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111859037120160523WTT@P#B@T22222112204398200000000120120704WTTWBYBZW22222122204303200000000 -T12023011111185905124200411401120233120000300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111118590513219750422WTTWT99#T2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000058 -T320230111111859051120130121WTTYY00@912222112207301100000000 -T12023011111185911022700413181120333110611300000000005005280380000000000000000000000000000000000222222000000002229022 -T2202301111118591102219850412WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000700 -T320230111111859110120150412WT@99TZTT12222222204302100000000120080321WTTZYZ@TY12222122204308100000000 -T12023011111185912424700405901120233120000300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111118591243219500321WT@P#BY9#2222211122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002787000000000000 -T320230111111859124120150724WTT909#PP22222112206301100000000 -T12023011111185923625900400311120333110634300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111118592363219890914WT9TT@Z0B2222212222223012212110006011069958000000000000000000000000000000000000000000000000000000000000338800000000000000000212 -T320230111111859236120210327WT@BT##@W11222212208398100000000120200918WTTT@Y#TY12222112209398100000000 -T12023011111185941625100407671120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118594163219720114WTTWTZPZY2222211222222012216120006011069907000000000000000000000000000000000000000000000000000000000000645600000000000000000000 -T320230111111859416120130212WT@BB9Z0#22222122206302100000000120090407WTT009TTP22222122206306100000000 -T12023011111185942222000409991120313110835300000000035806540070000000000000000000000000000000000222222000000002229012 -T2202301111118594221219990918WTTY9P#9Y2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111859422120220901WT@TYW#9922222112204398100000000120180127WTTY@W0YZ22212122204398100000000 -T12023011111185951423700414331120233110611300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111118595143219890527WTT@B@WPB2221222222221012213110006013069900000000000000000000000000000000000000000000000000000000000000263800000000000000000000 -T320230111111859514120150421WTT09T@Z912212222207398100000000 -T12023011111185954520600414251120233120000300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111118595453219600524WTT@B@9Z#2222212122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001130000000003400 -T320230111111859545120050324WT@YWT@0922222122206309100000000 -T12023011111185958420600407031120313110835300000000000006540300000000000000000000000000000000000222222000000002229012 -T2202301111118595841219920423WTTWZ09Z@2222122222221012212910293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111859584120150904WT@BTZTBW12221212204398100000000120130726WT@B9#TTY22221222204302100000000 -T12023011111185972323500408281120212110598114720000000505280350000000000000000000000000000000000222222000000002229012 -T2202301111118597231219840121WT@ZYY#@W2222212222225012213120362423010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111859723120180726WTTZW9YTY22222112204398100000000 -T12023011111185976524200403511120633111359300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111118597652219890401WTTBWPWZP2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111859765120100327WT@PZTWZ#22212112204304100000050 -T320230111111859765120140713WT@9Y@0@T22212122204302100000000120110312WTT#0P#BB22212112204303100000050 -T320230111111859765420200426WT@ZYTWPT22212222104398109140000120170426WTTWBBYP@22212112204398100000000 -T12023011111185979825900402121120312110773300000000000106540030000000000000000000000000000000000222222000000002229012 -T2202301111118597981219950927WT@@PB0B92122222222223012210120322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111859798120200918WTT0PBT@921222212204398100000000120180327WT@BP9@T#21222212204398100000000 -T12023011111185999324700402991120213110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111118599931219760318WT@0T@BPP1222222222221012216110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111859993120090727WTTBT0@TZ12212112204305100000000 -T12023011111186003124700404541120233110482300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111118600313219970224WTTPTW0Y#1222212222221012211210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000017920000 -T320230111111860031120050222WTT#PBWTB22222122207311100000000 -T12023011111186013324100410041120233120000300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111118601333219730109WT@9W9BBW2222212222222012210110580213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111860133120160122WTTWWBBBP22222112206398100000000 -T12023011111186013922000413731120313110766300000000000006540350000000000000000000000000000000000222222000000002229012 -T2202301111118601391219780701WTT@090T01222222222221012212210124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111860139120140122WTT9000Y912222122204398100000000120100724WTTB#0#T022222212204303100000000 -T12023011111186024622000400461120433110376300000000576704170020000000000000000000000000000000000222222000000002229022 -T2202301111118602462219810708WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111860246420050314WT@YYBT9P12222212204309900000000 -T320230111111860246120220101WTT@T09T912222222204398100000000420070324WT@YYBT9P12222212204309900000000 -T12023011111186029525800401871120333120000300000000000005280810000000000000000000000000000000000222222000000002229022 -T2202301111118602953219770909WT@P#Y@T#2222212222222012212120075313069900000000000000000000000000000000000000000000000000000000000000359600000000000000000449 -T320230111111860295120200421WTTP@Y9ZW12222122207398100000000120150922WTTY@BTTW22222122207398100000000 -T12023011111186039622900405641120413110987300000000000007710700000000000000000000000000000000000222222000000002229072 -T2202301111118603961219870323WT@#@W@@92222212222221012212110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111860396120150323WTT9#P@0Z22222112204398100000000 -T320230111111860396120210712WT@@T#T@B22222112204398100000000120200404WTTPPWZ9022222112204398100000000 -T12023011111186045424200404891120533111116300000000000006540180000000000000000000000000000000000222222000000002229022 -T2202301111118604543219710511WT@B@ZBWP1122222222221012212111090011069940000000000000000000000000000000000000000000000000000000000000349600000000000000000000 -T320230111111860454120130218WT@@0PWPZ21222212206303100000000120080524WT@P9WY9@21222222206308100000000 -T320230111111860454520180122WTT09TTBY21222222106398106090000120160426WT@ZZ@WB921222222206398100000000 -T12023011111186055322000403352120513211116300000000030008880040000000000000000000000000000000000222222000000002229032 -T2202301111118605531219860118WT@9TPY9W1222212222223012211210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111860553120050701WT@9TPY9W12222122204309200000000120040912WT@9TPY9W12222122204311200000000 -T320230111111860553120140312WT@9TPY9W12222212204304200000000120130226WT@9TPY9W12222212204305200000000 -T12023011111186055423500408281120313110754300000000000206480020000000000000000000000000000000000222222000000062219012 -T2202301111118605541219870409WT@B0T90@1222212222223012212110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000005 -T320230111111860554120200126WTTBB9TY#22222112204398100000000120160724WTTT#9#B022122122204301100000326 -T12023011111186067220800411991120233120000300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111118606723219730223WT@@WB0992222212222222012211110144613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111860672120130701WTTT9P0T@22222112207301100000050 -T12023011111186068724500405941120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118606873219580905WTT#9#0TZ2222212122221012212110610013069900000000000000000000000000000000000000000000000000000000000000129000001028000000000000 -T320230111111860687120070312WT@T9YY@012222112206308100000043 -T12023011111186076525900402721110413110939300000000000006960130000000000000000000000000000000000222222000000002229012 -T2202301111118607651219810404WT@9TPY9W1222222222224012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111860765120060412WT@9Z@Y@#12222212204309100000000 -T320230111111860765120180422WT@9TPY9W12222212204398200000000120080902WTTWZPP9@12222212204307100000000 -T12023011111186080922000410051120313110763300000000000006540710000000000000000000000000000000000222222000000002229072 -T2202301111118608091219800918WT@PZB@9#2222211222221012212110770023011400000000000000000000000000000000000000000000000000000000410000000000000000000000000000 -T320230111111860809120120118WTT@#9B#W22222222204303100000050120090323WTTY@#Z@B22222112204307100000050 -T12023011111186086124200403461120213110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111118608611219910427WT@T@#W0T2222212222221012212110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111860861120220512WT@#Z#WPT22222112204398100000000 -T12023011111186101723700414331120233110516300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111118610172219970126WTTWBYWY#1222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111861017120190309WTTB#T9BW12222122204398100000000 -T12023011111186107025000401171120712111480300000000000011650410000000000000000000000000000000000222222000000002229012 -T2202301111118610701219910904WTTTBPPP@2222212222221012209110540623010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111861070120090723WTT9T0T9012222122204304100000000120080714WTTW#BT@Y22222122204305100000000 -T320230111111861070120160301WTT##09TT12222212204398100000000120110307WT@09@YPB12222122204302100000000 -T320230111111861070120210712WT@ZT#Y@P22222122204398100000000120200905WTTWZBPZZ22222122204398100000000 -T12023011111186116420600414771120312110726300000000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111118611641219940723WTT#W@0Z02222212222223012213110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111861164120180107WTT0W9Y@W22222122204398100000000120150104WTT0T0#B@22222112204301100000000 -T12023011111186120125900402631120233110516300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111118612013219630322WT@W@B@BT2222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001079000000000000 -T320230111111861201120140404WTTY@090W22222122206302100000050 -T12023011111186133821700406141120322110835300000000000006540450000000000000000000000000000000000222222000000002229072 -T2202301111118613381219820321WTTB#ZY#02222211222225011212190560423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000900 -T2202301111118613381219870724WTT@PYB9B2222212222221011210190910023011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111861338120190321WT@T@9P0Y22222122204398100000000 -T12023011111186136524200403941120212110611300000000000005280400000000000000000000000000000000000222222000000002229072 -T2202301111118613651219790426WTTW@TWBB2221222222221012213111190023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111861365120080313WTTWY9WTP22212212204307100000000 -T12023011111186138222000405841120423110939300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111118613821219900223WTT9@#YBW2222221222222011212290045621011943000000000000000002000000000000140001000000000000000000390000000000000000000000000000 -T2202301111118613821219980907WTT@W#B#92222222222222021212290045623011800000000000000000000000000000000120001000000000000000000000000000000000000000000000000 -T320230111111861382120200724WT@@0TWY022222222204398200000000120180122WTT#9BTY922222212204398200000000 -T12023011111186139022700413181120213110611300000000000005120450000000000000000000000000000000000222222000000162219012 -T2202301111118613901219930412WTTZ#P90T2222212222223012211110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000015 -T320230111111861390120220426WTTYT#@PW12222112204398100000000 -T12023011111186155622000407831120213110598300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111118615561219920501WT@0BB9@Z1122222222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111861556120220901WT@9TPY9W12222212204398100000000 -T12023011111186158624900403221120213110520300000000003501260180000000000000000000000000000000000222222000004022219012 -T2202301111118615861219990126WT@W#ZBWP2222212222221012212110154521011813000000000000000000000000000000000000000000000000000000000000080300000000000000000000 -T320230111111861586120210707WTT@@#09T22222122204398100000000 -T12023011111186163324900404261120413111034300000000067607710230000000000000000000000000000000000222222000000002229012 -T2202301111118616331219920909WTT9W#0#P1222212222221012212110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111861633120150927WT@#Y@99Y12222122204398100000000 -T320230111111861633120210926WTTBWYT#T12222222204398100000000120180402WTTB@0YP#12222112204398100000000 -T12023011111186167920600404351120233110446300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111118616795219810713WT@WP0Y@Z2222212222222012216110342613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111861679120200527WTT@@90TP22222112209398100000000 -T12023011111186169023500407161120212110516105820000000100010050000000000000000000000000000000000222222000000002229012 -T2202301111118616901219940912WT@ZZYYP@2222212222221012212110065411011700210000000000000000000000000000000000000000000000000000010000131000000000000000000000 -T320230111111861690120170504WT@@0T09Y22222112204312100000000 -T12023011111186181122000409411120633111116300000000000007680340000000000000000000000000000000000222222000001202219022 -T2202301111118618112219810327WT@YYBT9P1222222222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111861811120050522WT@@W00BB12222222204311100000120 -T320230111111861811120070502WT@@W@09T12222212204309100000000120050305WT@#BT#BW12222212204310100000000 -T320230111111861811120100726WT@#0W09T12222222204305100000000120090513WTTBTWW9P12222222204308100000000 -T12023011111186182324200403941120213110994300000000045005280020000000000000000000000000000000000222222000000002229072 -T2202301111118618231219780911WTT0ZPPTW2221222222221012213110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111861823120060313WTTYY@09W22212222204309100000000 -T12023011111186187221700407751120312110760117410000002300260150000000000000000000000000000000000222222000006282219012 -T2202301111118618721219820902WTT@PBTZB2222212222221012213110154521011700210000000000000000000000000000000000000000000000000000040000125500000000000000000000 -T320230111111861872120200527WTT9#W0@922222222204398100000000120170927WT@YW0W#022222122204398100000000 -T12023011111186189722000409871120513111057300000000008008880100000000000000000000000000000000000222222000000002229012 -T2202301111118618971219690927WT@@0WW002222212222221012298210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111861897120100722WT@PBWWT#22222112204305200000000120060327WT@#YTZ#022222112204305200000000 -T320230111111861897120130504WTT@B09BT22222112204303200000000120130512WT@ZYPWWT22222112204303200000000 -T12023011111186207321700406141120332110740300000000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111118620733219530327WT@W@ZY@B2122222122214012209110204013069900000000000000000000000000000000000000000000000000000000000000000000000631030300000500 -T320230111111862073120090127WT@Y90#PZ11222222206307100000000120080226WT@9@#P@W21222222206308100000000 -T12023011111186223225600406521120723111490300000000031411650190000000000000000000000000000000000222222000000002229012 -T2202301111118622321219850126WTT@#BBT02222211222222011212110204023011800000000000000000000000000000000000000000000000000000000310000000000000000000000001952 -T2202301111118622321219900124WTT@PT#TZ2222212222222021212190283223011800000000000000000000000000190000000000000000000000000000000000000000000000000000001821 -T320230111111862232120090923WTTBYB00#22222122205307100000000 -T320230111111862232120150918WT@WB#B@#22222112204301100000000120130112WT@#ZBYBB22222122204303100000000 -T320230111111862232120200105WTT0@YPZZ22222222204398100000000120180927WTT#9TZZ922222122204398100000000 -T12023011111186227124200414021120432110939300000000000006540150000000000000000000000000000000000222222000000002229022 -T2202301111118622712219730704WTT##Z0PY2221212222211012213110940013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111862271120060307WTTBT@TZT22212122204309100000000 -T320230111111862271120220118WT@9TPY9W21222212206398100000000120180223WTT0P0@P021222212206398100000000 -T12023011111186232922000407791120212110611300000000000005280390000000000000000000000000000000000222222000000002229012 -T2202301111118623291219930512WT@9Z0BZ@2222212222221012209110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862329120080712WTT09#W@Z22221212204307100000000 -T12023011111186241422000411551110213110587119660000000002550010000000000000000000000000000000000222222000000002229012 -T2202301111118624141219910922WT@TZWT0T2221221222221012213110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862414120200118WTTW9WB@P22212212204398100000849 -T12023011111186242724200403511120313110740300000000002003410020000000000000000000000000000000000222222000003132219012 -T2202301111118624271219960904WT@##990#2122222222221012216110035721011809000000000000000000000000000000000000000000000000000000000000062400000000000000000000 -T320230111111862427120210523WTTWP@#TZ22212222204398100000000120180307WT@Y##B#W22222122204398100000000 -T12023011111186245222000409411120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118624523219520424WTTWTBW9@2222121222222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862452120150213WT@909YWT22221222206304100000000120110923WT@W0@YZ#22221212206306100000000 -T12023011111186248322000407791120213110611124430000000005270150000000000000000000000000000000000222222000000012219012 -T2202301111118624831220020112WT@T#TTWP2122222222221012212110154521011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862483120220507WT@PT@BBP22222112204398100000000 -T12023011111186258022700408351120313110516300000000000003920160000000000000000000000000000000261122222000000012219012 -T2202301111118625801219790423WTT@0PY@P2222212222225012212110471323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862580120130412WTT@@9ZP#22122212204304100000050120130412WT@0Y0YT022122212204304100000050 -T12023011111186263621700406141120512111116300000000000008880990000000000000000000000000000000000222122000000002229072 -T2202301111118626361219880104WT@Y9#0#02222212222223012211111750023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111862636120130314WTTTYP0@T12222122204301100000000120090309WT@09WBP022222122204305100000000 -T320230111111862636120190701WTT9Y99@@12222122204398100000000120160412WT@@9TB@Z22222112204398100000000 -T12023011111186266521700407751110423110835300000000000006460010000000000000000000000000000000000222222000000002229012 -T2202301111118626651219910726WTT#ZPYZ92222122222221011211910045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118626651219860902WTT0B#P#B2222121222221011207990025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862665120170726WT@0W#@PT22221212204398100000000120160421WT@9WZY@P22221212204301100000000 -T12023011111186269222000406211120213110611300000000200004780160000000000000000000000000000000000222222000000502219012 -T2202301111118626921219960908WTT00P0BB2222212222225012213110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111862692120200501WT@BP@WP#22222122204398100000000 -T12023011111186269324200402981120233120000300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111118626933219610226WT@#T090T2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862693120210412WT@#00YZB22221212206398100000000 -T12023011111186271023800413801120713111480300000000000009700050000000000000000000000000000000000222222000000002229012 -T2202301111118627101219930423WT@PB0Y#92122222222224012213120085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000889 -T320230111111862710120120912WT@P#@YWZ21222212204304100000000120110326WTTW99@WZ21222222204304100000000 -T320230111111862710120140907WT@PTZB0P21222222204302100000000120130313WTT#@TP@Y21222212204302100000488 -T320230111111862710420210202WTT#TB##Z21222222104398105450000420170121WT@#YBT@T21222222104398109140389 -T12023011111186280224500405941120333110740300000000000005280720000000000000000000000000000000000222222000000002229022 -T2202301111118628022219900905WTT9P09WW1222212222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111862802120150121WT@WW9PZP12222112204398100000000120120321WTT@9Z0BB12222112204302100000000 -T12023011111186281822000411551120213120000300000000000003960060000000000000000000000000000000000222222002000012219012 -T2202301111118628181219970718WT@YYBWBW2212222222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862818520190914WTT@PP##@22212212104398108170000 -T12023011111186284125200410141120213110585300000000001204780270000000000000000000000000000000000222222000000502219012 -T2202301111118628411219900713WTTW@YPB#2222212222225012210110283221011802000000000000000000000000000000000000000000000000000000000000010000000000000000000000 -T320230111111862841120140927WT@P#0ZWB22222112204398100000000 -T12023011111186289125600406521120213110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111118628911219890322WTT#P#B9T2222212222221012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862891120210124WT@ZTW0@#22222112204398100000000 -T12023011111186299825900402721120533110835300000000000006540020000000000000000000000000000000000222222000000002229022 -T2202301111118629982219930904WT@YYBT9P1222222222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118629982219930327WT@YYBT9P1222221222221022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111862998120130424WTTWWBPTY12222222204304100000000 -T320230111111862998120200921WTT#ZWYP#12222122204398100000000120170222WTTZPZZWP12222222204398100000000 -T12023011111186302622000405181120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118630261219790926WT@PP@P9#2222212222222011216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118630261219790923WT@P00@ZT2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111863026120120905WT@#PZ0Z922222112204303200000000 -T12023011111186317520600404491110212110611110570000000003570190000000000000000000000000000000000222222000001712219012 -T2202301111118631751219950924WT@@W9TZ@2221222222221012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111863175120190423WT@T#B0BP22212222204398100000000 -T12023011111186326524100400671120413110959300000000000007710370000000000000000000000000000000000222222000000002229012 -T2202301111118632651219820401WTT@WZWWP2122222222223012213110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000208 -T320230111111863265120080924WTTWZTTB#21222212204307100000121 -T320230111111863265120190721WT9TTTB9Y21222212204398100000033120110109WTTBP#TT@21222212204304100000121 -T12023011111186328520600404122120213210598300000000001005280180000000000000000000000000000000000222222000000002229032 -T2202301111118632851219670407WTT9@@0#Z2222122222224012211910293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111863285120090112WTTYTZ#ZZ22221212204307900000000 -T12023011111186329223500406851120213110598112710000160005280140000000000000000000000000000000000222222000000002229012 -T2202301111118632921219760423WT@W90WWT2222211222225012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111863292120180109WTTW9TY0B22222112204398100000000 -T12023011111186331324200409591120233120000300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111118633133219860526WT@YYPB0Z2222212222225012213110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000065 -T320230111111863313120220423WT@ZW@#0W22222112207398100000672 -T12023011111186336424200414351120233120000300000000000004170220000000000000000000000000000000000222222000000002229022 -T2202301111118633642219820726WT@#TY0YT1222212222215012212110006011089940000000000000000000000000000000000000000000000000000000000000275200010000000100000000 -T320230111111863364120050424WT@@Y0YBB12222112204311100000000 -T12023011111186338420600409001120233110188300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118633845219920423WTT#B@ZBT2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111863384120200323WT@#B@TY#22222112208398100000000 -T12023011111186340822700408491120233120000105000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111118634085219680704WT@ZZ9B#Z2221222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000961700000000000000000000 -T320230111111863408120120127WT@WYYZPZ12222212209303100000000 -T12023011111186349225600414551120313110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111118634921219870307WTTWY#Y#W2222212222223012211110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111863492120100924WT@TZWB#022222112204305100000000120090426WT@0PPP#022222112204305100000000 -T12023011111186351420600401131120333110740300000000002604170670000000000000000000000000000000000222222000000002229022 -T2202301111118635142219770402WTT#W@TPB2222212222215012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111863514120150402WT@0WP@ZT22222122204301100000050420130713WTT@9#T9Z22222112104301109000050 -T12023011111186360024700401011120312110724300000000000005380410000000000000000000000000000000000222222000001162219012 -T2202301111118636001219810407WT@W0Y@#W2222212222223012208110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000116 -T320230111111863600120160507WT@ZBYWBP22222112204301100000000120060904WT@#Y0Y9Y22222112204311100000000 -T12023011111186406223500407612120523211116300000000000008880030000000000000000000000000000000000222222000000002229032 -T2202301111118640621219710213WT@9#PYYY2222212222222011212210045622011800000000000000200001000000000000000000000000000000000000030000000000000000000000000000 -T2202301111118640621219660924WT@9TPY9W2222211222222011212290045622011800000000000000190001000000000000000000000000000000000000030000000000000000000000000000 -T320230111111864062120050113WT@0T##@922222122209311200000000 -T320230111111864062120070427WTTWPW0BW22222122209309200000000120050909WTTZPY0Y022222112209310200000000 -T12023011111186411222000405181120213110611113150000003503160130000000000000000000000000000000211122222000000012219012 -T2202301111118641121219990726WT@#BZ@YY1222212222221012211110303021011728000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864112120200927WT@0T9@0@22222112204398100000000 -T12023011111186424823500411471120313110835300000000001406540180000000000000000000000000000000000222122000000002229012 -T2202301111118642481219970101WT@Y#9@##2222212222221012216110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864248120210113WTTW#PT0012222122204398100000000120170427WT@Z@#@9922222112204398100000100 -T12023011111186432122000405841120312110740300000000000005280290000000000000000000000000000000000222222000000002229072 -T2202301111118643212219690923WT@#WP9Z#2222212222212012209190740013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118643211219670423WT@9Y9TPP2222211222222022209111770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864321120100721WT@#WZT#W22222112204306100000000 -T12023011111186440824200403941120233110446300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118644083220010701WT@#0@BW02221222222211012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111864408120210118WTT0Y#Y@#22212212207398100000000 -T12023011111186455823500410671120523111193300000000300008880020000000000000000000000000000000000222222000000002229012 -T2202301111118645581219760223WTTZWZT9Z2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118645581219830504WT@9T#Y902222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864558120050404WTTP0YZZ#22222112204309200000000 -T320230111111864558120140127WTTWWW@Z922222112204302200000000120070218WTTY@WTBP22222122204308200000000 -T12023011111186465720300404641120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111118646571219970423WTTPTY90P2122212222221012213110105021011730000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864657120220102WTTZBZT#W22222122204398100000000 -T12023011111186478221700406141120233120000300000000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111118647823219710312WTTY#W@ZP2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000477000000000000000000000 -T320230111111864782120120327WT@0WBBZT22222122206398100000000 -T12023011111186480822000402321120413110939300000000000007710180000000000000000000000000000000000222222000000002229012 -T2202301111118648081219940901WTT@Y0B9#1222222222221012206210075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864808120130704WT@ZPYTBT12222222204398200000000 -T320230111111864808120210923WTTPWBPW012222222204398100000000120180204WTTWPYPZB12222212204398200000000 -T12023011111186488024200409732120423211034300000000010007710110000000000000000000000000000000000222222000000002229032 -T2202301111118648801219830918WTTTPWBY92222212222222011298290124821011940000000000000000000000000000000000000000000000000000000010000000100000000000000000000 -T2202301111118648801219810302WTTWP@TZ92222211222222021298290124823011800000000000000000000000000000000000000000000000000000000010000000000000000000000002000 -T320230111111864880120180921WT@#PZT9B22222112204398200000000120150923WTT0@ZZZW22222112204301200000000 -T12023011111186488322000406191120423110959300000000030007710150000000000000000000000000000000000222222000000002229012 -T2202301111118648831219930412WTTBT09YT2222211222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118648831219950522WT@T###9B2222212222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864883120210704WTT@9BWWT22222122204398100000000120180527WTT0BYPW#22222122204398200000000 -T12023011111186488522900406481120213110598300000000000005280310000000000000000000000000000000000222222000000002229012 -T2202301111118648851220010524WT@9WWY#Y2222212222221012212110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864885120200913WTTB@W09#22222122204398100000000 -T12023011111186489325600411521120513110516300000000036001320310000000000000000000000000000000000222222000003962219012 -T2202301111118648931219940727WT@BPBBT01222221222221012298290134721011818000000000000000000000000000000000000000000000000000000000000127700000000000000000000 -T2202301111118648932219910927WT@YYBT9P1222222222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111864893420120527WT@YYBT9P12222222204303900000000 -T320230111111864893120190307WTTPY#WPZ12222222204398100000000420170126WT@YYBT9P12222212204398900000000 -T12023011111186500324200414851120213110587300000000000001490150000000000000000000000000000000000222222000003792219012 -T2202301111118650031220020114WTT9YWWP@2221222222221012212120124821011808000000000000000000000000000000000000000000000000000000000000075600000000000000000000 -T320230111111865003120200702WT@YT09##12212212204398100000000 -T12023011111186507422000412691120312110781127160000015006540210000000000000000000000000000000000222222000000002229072 -T2202301111118650741219800326WT@B9YZTP1222212222221012213110930023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865074120210118WTTTTZWZW12222122204398100000000120140923WT@ZPBT@Y12222222204398100000000 -T12023011111186509222000404842110632211269300000000000010090990000000000000000000000000000000000222222000000002229021 -T2202301111118650921219770718WT@@Z#9PT2222212222223012212111080023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865092120050107WT@9TPYTB22222112204310100000000 -T320230111111865092120110409WT@Y@YPZB22222122204305100000000120060914WT@W9ZPPW22222112204310100000000 -T320230111111865092420190118WT@##9#B@22222112104398109140000120150301WTTBZ@P##22222112204301100000000 -T12023011111186510024100402401120233110604300000000000004170710000000000000000000000000000000000222222000000002229022 -T2202301111118651003219630722WTTB9@ZBZ1222222122214012209110006013069900000000000000000000000000000000000000000000000000000000000000000000000807012700000000 -T320230111111865100120100118WTTTZ#@9T12222222206306100000000 -T12023011111186513524200404891120313110835300000000040004180020000000000000000000000000000000000222222000002362219012 -T2202301111118651351219900926WT@TP0@#B2222212222221012213110035721011817000000000000000000000000000000000000000000000000000000000000094200000000000000000000 -T320230111111865135120210412WT@0Z#YWZ22222122204398100000000120190227WT@0BZW9@22222122204398100000000 -T12023011111186517120800405391120213110582300000000031404680170000000000035010000000000000000000222222000000602219012 -T2202301111118651711219700409WT@YZ#Z092222212222225012214110580221011915000000000000170001000000000000000000000000000000000000050000012000000000000000000000 -T320230111111865171120070907WTTZP0ZZZ22222122204309100000000 -T12023011111186532821000403301120313110786300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118653281219890418WT@@ZYWW#2222212222221012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865328120210907WTTW00@ZP22222112204398100000000120200424WT@Y#PB@022222122204398100000000 -T12023011111186534724700406701120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118653473219740712WT@P@PBZT2222212222223012212120025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000756 -T320230111111865347120080112WTTTP09P022222122207308100000000 -T12023011111186535822000400811110213110560300000000000004750250000000000000000000000000000000000222222005200012219012 -T2202301111118653581219880423WT@@B0Y@W2222222222221012216120303023010900000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111865358120210123WT@WP9#Y#22222212204398100000000 -T12023011111186549123700414331120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111118654911219690727WT@W@9PZ91222212222225012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865491120110207WT@WBWWTP12222212204304100000000 -T12023011111186549622000413731120213110611300000000000005280240000000000000000000000000000000000222222000000002229072 -T2202301111118654961219660427WT@W@WZ@P2222212222221012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865496120060212WTTBB00Z@22222112204310100000000 -T12023011111186551624200404891120312110792104470000000106540740000000000000000000000000000000000222222000000002229072 -T2202301111118655161219780918WT@#9#0WW2221222222221012213111060023011800000000000000000000000000000000330000000000000000000000000000000000000000000000000000 -T320230111111865516120130509WT@P@PZZZ22212212204302100000000120090423WTTZZTY0T22212212204307100000000 -T12023011111186552524200414351120613111359300000000000010090370000000000000000000000000000000000222222000000002229072 -T2202301111118655251219890318WTT#@B09Z2222212222221012212110990023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865525120090301WT@PYYPZZ22222112204305100000000 -T320230111111865525120160126WT@T0W#YB12222122204398100000000120110905WT@09ZYP922222122204304100000000 -T320230111111865525120220518WTTP9P90022222222204398100000000120200914WTT0PZYYB12222222204398100000000 -T12023011111186553022700401571120433110788300000000050006210140000000000000000000000000000000000222222000000332219022 -T2202301111118655302219890504WT@YZ0##T1222212222223012212910006011079904000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111865530120160312WTTYBWWPW12222122204398100000034 -T320230111111865530120210418WT@P@@P#@12222112204398100000033120180713WTTWT@ZWT12222112204398100000033 -T12023011111186554122500410151120313110766300000000000006540030000000000000000000000000000000000222222000000002229072 -T2202301111118655411219800507WTT9Z@W9W2222212222221012216110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865541120200212WT@@TWT0B22222112204398100000000120150118WTTW@@ZBZ22222112204398100000000 -T12023011111186571024100410041120513111116300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111118657101219960918WTTW#9PP92222212222225012216110114923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865710120160223WT@WTBYTP22222122204398100000000120150214WTT9PY@#Z22222122204301100000000 -T320230111111865710120220426WTT#9ZPP#22222122204398100000000120200526WT@T0BTW022222112204398100000000 -T12023011111186575122000410221120323110719300000000012006540030000000000000000000000000000000000222222000000002229012 -T2202301111118657511219750424WT@ZT@P9Y2222212222222011213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118657511219770209WT@0WBBB92222211222222021213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865751120080408WT@@PTBBB22222122204307200000000 -T12023011111186587022000409871120212110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111118658701219920921WTT9Y9YWY2122222222221012211120124823010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111865870120130727WTT9YYPYB21222212204301100000000 -T12023011111186599023500400891120323110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111118659901219930927WT@9TPY9W1222221222221011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118659901219940701WT@9TPY9W1222222222221021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111865990120160913WT@9TPY9W11222222204398200000000 -T12023011111186606424200414851120212110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111118660641220000701WT@0@YZZ02222222222221012212110174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111866064120220226WT@0@0ZW022222122204398100000000 -T12023011111186607725200407301120213110598300000000000005280410000000000045004000000000000000000222222000000002229012 -T2202301111118660771219970323WTT0@TWZ#2222212222221012210110411923011800000000000000000003000000000000000000000000000000000000280000000000000000000000000000 -T320230111111866077120190926WTTPY@Z9P22222122204398100000000 -T12023011111186611921000403201120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118661192219810108WTTWY#ZT01222212122215012216110980013109900000000000000000000000000000000000000000000000000000000000000000000000444049000000000 -T320230111111866119120050309WT@ZZ0ZP#22222112204309100000000 -T12023011111186631124200404891110233120000300000000000001610010000000000000000000000000000000000222222000000002229021 -T2202301111118663113219940205WT@W##TT@2222122222221012212110006011069940000000000000000000000000000000000000000000000000000000000000516000000000000000000000 -T320230111111866311120120402WTTZ9PPP922221212207304100000000 -T12023011111186632620800405391120433120000300000000000006540080000000000000000000000000000000000222222000000002229022 -T2202301111118663263219740418WT@Z9YTP#2222212222222012298110006011069999000000000000000000000000000000000000000000000000000000000000540000000000000000000000 -T320230111111866326120080413WT@TZ0@#B22222122209309100000000 -T320230111111866326120130204WTTTW@#P#22222112209303100000000120090427WT@#@@0@T22222112209307100000000 -T12023011111186634822000407411120323110766300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111118663481219930718WTTTB00TT2222212222222011214290124823011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T2202301111118663481219940726WTT@@T9BB2222211222222021212290124823011800000016000200000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111866348120170323WT@W9T9ZT22222112204398200000000 -T12023011111186658022500410151120323110835300000000000106540080000000000000000000000000000000000222222000000002229012 -T2202301111118665801219760723WTTYBTPT02222211222221011212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118665801219820112WTT099#W#2222212222221011212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111866580120200404WT@ZYB@0Y22222112204398100000000 -T12023011111186669625800405801120332110740300000000000005280870000000000000000000000000000000000222222000000002229022 -T2202301111118666962219850426WTT#W0Z0Y1222222222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111866696120170407WTTWB000@12222212204398100000000120140314WTT#0ZB#Z12222222204398100000000 -T12023011111186681425000409431120333110740300000000008705280730000000000000000000000000000000000222222000000002229022 -T2202301111118668143219630407WT@#B9BPY2222212222215012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111866814120120423WT@P9#BWW22222112207302100000000120080402WT9TTZBTB22222112207306100000000 -T12023011111186684824200403941120213110611300000000000005010050000000000000000000000000000000000222222002600012219012 -T2202301111118668481219740927WT@TT@PZ02222122222225012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111866848120060101WTTB@YYB#22221212204310100000000 -T12023011111186694421400408021120233110374104970000023004070510000000000000000000000000000000000222222000000102219022 -T2202301111118669442219790912WT@YYBT9P1222222222221012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000010 -T320230111111866944120090327WTTB0#9@912222222204306100000215 -T12023011111186695220600400871120813111510300000000160011650030000000000000000000000000000000000222222000000002229012 -T2202301111118669522219860218WT@YYBT9P2222211222222012215990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118669521219850212WT@P@B9TP2222212222222022215290045621011818000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111866952120070312WT@P#@YPP22222112204309200000000120050213WTTW0ZTBY22222112204312200000000 -T320230111111866952120140512WT@Z00TZB22222122204303200000000120110222WT@#B@WY022222112204306200000000 -T320230111111866952120210427WTTYZ9#PW22222112204398200000000120160312WTTZT@0YP22222122204398200000000 -T12023011111186695424700409321120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118669541220020121WTT@WT#@Z2222212222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111866954120210513WT@9BP##T22222122204398100000000 -T12023011111186699322000405841120613111434300000000000008880170000000000000000000000000000000000222222000000002229012 -T2202301111118669932219740423WTTP@BYP@2212221222212012298290164413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118669931219820112WT@B#9BBB2212222222222022298290184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111866993120080408WT@WB#0T@22122212204308200000000120060123WTTWW@##T22122222204310200000000 -T320230111111866993120160126WTT00T#9P22122222204301200000000120110109WTTW900ZT22122212204305200000000 -T12023011111186702722000411971120412110939300000000020007710130000000000000000000000000000000000222222000000002229012 -T2202301111118670271219740404WT@B0@PBW2221221222223012214110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867027120050701WTTYZB#0W22212222204312200000000 -T320230111111867027120100912WTTP#@WW@22212212204306200000000120070113WT@TYTBB#22212212204309200000000 -T12023011111186703924200404891110212110611105370000000004930150000000000000000000000000000000000222222000000352219072 -T2202301111118670391219870501WT@0#BZZ02222212222221012212110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000874 -T320230111111867039120120404WTTPP9##W22222112204304100000000 -T12023011111186706620600414871120413110939300000000000507710130000000000000000000000000000000000222222000000002229012 -T2202301111118670661219930501WTTZZ@9W92222212222225012208120144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867066120130321WT@@9BTPT22222122204301100000000 -T320230111111867066120210112WTT##TYPW22222122204398100000000120200701WTTB@BZB#22222112204398100000000 -T12023011111186717420800405391110213110611300000000000004420200000000000000000000000000000000308222221000000212219072 -T2202301111118671741219900514WTT#YZPW02122222222224012212110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867174120220727WT@9TPY9W12222222204398100000000 -T12023011111186718422000410051110412111034300000000000001440010000000000000000000000000000000000222222000000002229072 -T2202301111118671841219860705WTT@WYT901222212222221012206110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000130 -T320230111111867184120070312WT@BZY0P912222112204308100000000 -T320230111111867184120180412WTTW@BT#@12222112204398100000000120110918WT@BZ@Y#Y12222112204303100000000 -T12023011111186726423500410671120113110376300000000070004170070000000000000000000000000000000000222222000000002229012 -T2202301111118672641219980212WTTPYP@Z#2222222222221013212190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000833 -T12023011111186727224200410001120313110835300000000000004440180000000000000000000000000000000000222222000002102219012 -T2202301111118672721219770224WT@9#0ZB02222212222221012216110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867272120120312WT@@0BYBW22212112204303100000050120070312WTT#Z9B#022212122204308100000050 -T12023011111186732224200414851120213110599300000000000003160680000000000000000000000000000000211122222000000012219072 -T2202301111118673221219860718WT@@WTBZZ2222222222221012212110630023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867322120050924WTT@YZ0YP22212212204310100000000 -T12023011111186733921000405411120313110835300000000020006540300000000000000000000000000000000000222222000000002229012 -T2202301111118673391219970401WT@#@9YP@2222212222221012211110283223010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111867339120200204WTTPBY00Z22222112204398100000000120160223WTT9PBBW922222122204398100000000 -T12023011111186735724200414351120523111116300000000000008880090000000000000000000000000000000000222222000000002229012 -T2202301111118673571219850913WT@Z0PZTT2222122222221011212190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118673571219850704WTT0BZ#@T2212121222221011212190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867357120140524WTTT#P#@P22121222204398100000000 -T320230111111867357120190901WTT@B9T9Z22121212204398100000000120170907WTT#B@@WY22121222204398100000000 -T12023011111186737324200414721120323110835300000000000006540390000000000000000000000000000000000222222000000002229012 -T2202301111118673731219830421WT@#9##YT2222211222222011213190421823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000528 -T2202301111118673731219850724WT@Y9BB@01222212222222021213190481221011939000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867373120140912WTT@TBP@#22222112204302100000000 -T12023011111186740125900402121120233110247300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111118674013219760404WTTZB0ZP@2222212222225012213110680013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867401120210723WT@9WYW##21222212206398100000000 -T12023011111186749523700414331120213110618300000000000005280040000000000000000000000000000000000222222000000002229072 -T2202301111118674951219880309WT@TBWZ#B2222212222221012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867495120140112WTTTW9T#B22222122204301100000000 -T12023011111186755224200403431120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111118675521219800312WT@@YBW0P1222211222223012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867552120150402WT@YTY9TP12222212204302100000000 -T12023011111186769625600414551120213110611300000000000005280660000000000000000000000000000000000222222000000002229072 -T2202301111118676961219830213WTTZTB@9@2222212222221012211110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867696120120718WT@P9Y0@Y22222112204303100000050 -T12023011111186780320600404491120513111211300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111118678031219860121WT@Z@T#BT2222212222225012216110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867803120120214WT@WYZY9022222112204305100000000120090127WTT#9YTYT22222112204307100000000 -T320230111111867803120160923WT@0#Y00T22222122204301100000000120160923WTT@#TYZT22222112204301100000000 -T12023011111186780423500405271120323110611300000000000005560100000000000000000000000000000000000222222000000002229012 -T2202301111118678041219740318WTTPPZ#902222212222223011212210114923011800000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T2202301111118678041219740923WT@@WW9Z92222211222222021215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867804120060721WT@B#T0#P22222122204309200000000 -T12023011111186781722000405841120632111412300000000000008880990000000000000000000000000000000000222222000000002229022 -T2202301111118678172219860114WT@9YZWTY2221222222213012216110670013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111867817120060507WT@YY0@Z912212222204310100000000 -T320230111111867817120090413WTT0PTP0022212212204307100000000120070722WT@Z9TW#P22212212204308100000000 -T320230111111867817120180912WTT@PPYYT22212212204398100000000120120413WTT@0PBZB12212222204304100000000 -T12023011111186786522000406271120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111118678651219900301WT@#PPP#B2222212222221013216190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111186794522700413181110422110939300000000000007710040000000000070001000000000000000000222222000000002229012 -T2202301111118679451219950901WTTYWWTB@2222211222222011212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118679451219980726WT@T@PTWP2222212222222021211190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111867945120200714WTT0P@T@B22222122204398100000000120190507WTT#W9TTP22222122204398100000000 -T12023011111186796322000409871120213110598300000000050005280030000000000000000000000000000000000222222000000002229012 -T2202301111118679631219760423WT@PYP9YY2221222222221012210210045621011800010000000000000000000000000000010000000000000000000000000000000000000000000000000000 -T320230111111867963120140212WTTBW@9BB22212212204303100000000 -T12023011111186801323900403801120333110740300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111118680133219620326WTTYWWZBW2222212212225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000958 -T320230111111868013120140123WT@0@#@PZ12212212206301100000000120130701WT@WBYTYP12222122206301100000000 -T12023011111186802020900411721120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111118680203219680313WT@TZ9TY02222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111868020120190712WTTPYWB@@22222112206398100000000 -T12023011111186803424200407271120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118680342219760427WT@W999@#2212222222211012211210006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111868034120170107WTTPY0ZP#22122222204312100000050 -T12023011111186809925900400311110313110740300000000000000670010000000000000000000000000000000000222222000000002229012 -T2202301111118680991219790208WT@#0#B@Z1222212222223012203210025821011807000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111868099120080513WT@ZZP0TW12222122204309100000000120040721WT@@@#TTW12222122204312100000000 -T12023011111186813724700405901120213110516300000000005005280320000000000000000000000000000000000222222000000002229012 -T2202301111118681371219950421WTTZPBB002222212222221012212110392121011900160007000000000000000000000000170000000000000000000000000000104400000000000000001321 -T320230111111868137120130404WTTB9TB@B22222122204302100000000 -T12023011111186832325900402631120233110557300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111118683233219740723WTTPBZWWP2222212222222012212110243613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111868323120210718WTTW0TBB#22222122209398100000000 -T12023011111186834224700408361120313110785300000000001901040210000000000000000000000000000000000222222000005502219012 -T2202301111118683421219940514WTTZ@YWY92222212222221012216110213921011818000000000000000000000000000000000000000000000000000000000000109800000000000000000000 -T320230111111868342120150318WTT#Z@TB@22222122204398100000000120140512WTT@0@#0#22222112204302100000000 -T12023011111186843623500408281120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118684365219780926WT@WT@W9@1221222122213012213110006013109900000000000000000000000000000000000000000000000000000000000000000000000843009100000000 -T320230111111868436120130418WTTT9WB9#22212122208302100000000 -T12023011111186862123500410671120212110611300000000025005280460000000000000000000000000000000000222222000000002229072 -T2202301111118686211219720108WTTYTT#B02222212222225012216121090023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111868621120110201WTT9@0Y9022222112204305100000000 -T12023011111186866425900407561120533111032300000000000007710030000000000000000000000000000000000222222000000002229022 -T2202301111118686642219930323WT@YYBT9P1222222222223012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111868664120140102WTT##BYT012222222204301100000000120120407WT@T#9BTZ12222212204303100000000 -T320230111111868664120180907WT@ZZZZ@Y12222112204398100000000120150126WTTPP@0W912222212204398100000000 -T12023011111186873424200407311120213110557300000000030005280020000000000000000000000000000000000222222000000002229012 -T2202301111118687341219880109WT@W0WW#92222212222223012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111868734120100312WTT0YT##@22222112204305100000186 -T12023011111186890222000406191120212110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111118689021219940727WTT9P@@@T2221222222221012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000007330 -T320230111111868902120210723WT@0WTWT@22212212204398100000050 -T12023011111186891722000407411110212110516300000000000001360090000000000000000000000000000000000222222000003922219072 -T2202301111118689171219760104WT@Y0Z9#Y2222212222221012212110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111868917120060923WTTBZ99P022212112204311100000000 -T12023011111186895124700406701120233120000300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111118689515219710905WTTBY0YZ@2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000412400000000000000000000 -T320230111111868951120110923WTT#P9@9921222222209303100000000 -T12023011111186905622900405641120313110740113430000000003960190000000000000000000000000000000132222122000000002229012 -T2202301111118690561219940421WT@#Y9B091222222222221012211120293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869056120170712WTTP0YP0#12222222204398100000000420140702WT@90ZTWT12222212104301109140000 -T12023011111186907722000407791120433110376300000000000003960030000000000000000000000000000000000222222000000212219022 -T2202301111118690772219920223WT@YYBT9P1222222222221012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118690772219820227WT@YYBT9P1222221222221102205990006013079900000000000000000000000000000000000000000000000000000000000000150000000000000000000000 -T320230111111869077120220323WT@0#B@B012222212204398100000000420160323WT@YYBT9P12222222204398900000000 -T12023011111186909824200404701120213110598300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111118690981220000927WTTBZWBYT2122222222221012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869098120190327WT@TP#ZYW22212212204398100000000 -T12023011111186923724700408302120213210611300000000000005280050000000000000000000000000000000000222222000000002229032 -T2202301111118692371220000913WT@9TPY9W2222212222223012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869237120200702WT@9TPY9W22222122204398200000000 -T12023011111186925522000406191120513111116300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111118692551219870307WT@9BBY#@2222212222223012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869255120090211WTT#Y#PYT22222122204307100000000120080218WT@90@9PW22222122204309100000000 -T320230111111869255120150927WTTB#P9W022222112204398100000000120120423WT@BT9P#B22222122204304100000000 -T12023011111186928722700408351120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118692873219640504WTT990Z9P2222212222222012213110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869287120060712WTTT00Y0B22222122207310100000000 -T12023011111186930121000411361120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111118693011220010409WT@YYP@@Y1122222222221012210110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869301120220113WT@Z@WPB#11222222204398100000000 -T12023011111186932622000410051120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111118693261219980505WTTZ#Z#Z@2221222222223012216210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869326120210718WTT#Y0PTP22222212204398100000050 -T12023011111186933422000410051110333110516300000000020000400170000000000000000000000000000000000222222000004882219021 -T2202301111118693342219830904WT@YYBT9P1222212222224012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869334120210511WTTP9##P#12122212204398100000350120120922WTTP0BPYT12222112204305100000000 -T12023011111186933725900406841120512111116300000000050002550390000000000000000000000000000000000222222000006332219042 -T2202301111118693371219900712WT@Z0@WYW2122222222221012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111869337120140723WT@##WBZY21222212204302100000299120120727WTTTW@BPW12222212204303100000299 -T320230111111869337120200927WTT##PT0W21222222204398100000000120180313WT@@Z@PY921222212204398100000000 -T12023011111186939422000403351120323110786300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111118693941219720523WTTZPB#@92222221222222011212290035722011900000000000000220002000000000000100001000000000000000000100000000000000000000000000000 -T2202301111118693941219760423WTTZY@PZZ2222222222222021212290035722011900000000000000220002000000000000100001000000000000000000100000000000000000000000000000 -T320230111111869394120060313WTTTPP@#022222222204310200000000 -T12023011111186964820800405391120213111119300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118696481219870312WTTTZZT0T2222212222223012213110065423010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111869648120160704WT@Z@Z9P022222112204398100000000 -T12023011111186978620600402142120233210361300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111118697863219760723WTT@PP0P@2222122222222012212910550511079942000000000000000000000000000000000000000000000000000000000000323500000000000000000000 -T320230111111869786120060323WTTZ0PYP922221212207309900000000 -T12023011111186981525600414951120523120000300000000040004980270000000000000000000000000000000000222222000003902219012 -T2202301111118698151219820201WTTZPWBWY1222212222222011203290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118698151219760713WTT9BZ@ZW1222211222222021203290045621011825000000000000000000000000000000000000000000000000000000000000155800000000000000000000 -T320230111111869815120070504WT@@@BPWT12222122204309200000000 -T320230111111869815120200927WTTY0#Z0@12222112204398100000000120100714WT@@@PPWZ12222112204305200000000 -T12023011111186984820600412681120213110611300000000000005280460000000000000000000000000000000000222222000000002229012 -T2202301111118698481219860113WTTTZ9TW#2222211222221012211110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869848120080501WT@Z0YWBP22222122204307100000000 -T12023011111186989823700414331120213110376300000000000003160910000000000000000000000000000000211122222000000012219072 -T2202301111118698981219760212WT@WP00TP1222222222225012216111180023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111869898120080701WTT9WYWZT12222222204306100000000 -T12023011111187004023300410111120212110584300000000000005030440000000000000000000000000000000000222222000000252219012 -T2202301111118700401219910204WTT@PYB0@2122212222225012212110441621011802000000000000000000000000000000000000000000000000000000000000010000000000000000000050 -T320230111111870040120170705WTT90WWPW21212112204398100000000 -T12023011111187004724200404891120212110598300000000000405280410000000000000000000000000000000000222222000000002229012 -T2202301111118700471219990701WT@TZ#Y@B2222212222221012211110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111870047120190727WT@W9ZYW#22222212204398100000000 -T12023011111187007022000409972120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111118700701219740918WT@9TPY9W2222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118700701219710907WT@BT09#T2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111870070120080913WT@9TPY9W22222112204308200000000 -T12023011111187008824700408701110313110704300000000000004430010000000000000000000000000000000000222222000000002229012 -T2202301111118700881219800512WTTZ#P@9@2222212222223012215210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111870088120160512WTTWW@0T022222122204301200000000120080312WT@W9TBW022222122204307200000000 -T12023011111187011723700414331120233110281114320000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111118701173219680127WT@#9#Z9Z1222222222221012209910006011079928000000000000000000000000000000000000000000000000000000000000205000000000000000000000 -T320230111111870117120200904WTTTT@@9Z12222212206398100000000 -T12023011111187054520600414161120213110560300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111118705451219840327WT@WY0TP92222211222221012211110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111870545120080724WT@TP0#0Z12222122204309100000000 -T12023011111187060424200402982120323210835300000000300006540030000000000000000000000000000000000222222000000002229032 -T2202301111118706041219920707WTT9W@T@W2222221222222011212290035723011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111118706041219950714WT@BPZPPY2222212222222021215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111870604120210907WT@YB00#W22222112204398200000000 -T12023011111187062824200410001120733111193300000000330008880020000000000000000000000000000000000222222000000002229022 -T2202301111118706282219840926WT@YYBT9P1222212222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118706282219770412WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111870628120070701WT@@PT9BT12222222204309100000000 -T320230111111870628120130427WTTWZW#@W12222222204304100000000120090718WT@BZBWZY12222222204306100000000 -T320230111111870628120200314WTT9@W9#Y12222212204398100000000120140926WT@YYBY9T12222222204303100000000 -T12023011111187070524200404701120213110611300000000000005280410000000000000000000000000000000000222222000000002229012 -T2202301111118707051219900718WTT0#TW0Z2222212222221012212110411921011933000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111870705120120104WT@900BTT22222112204305100000000 -T12023011111187071123500411471120412110939137590000002302590210000000000000000000000000000000000222222003804742219012 -T2202301111118707111219820411WT@T9B##Z2221222222221012216110501021011811000000000000000000000000000000000000000000000000000000000000094600000000000000001476 -T320230111111870711120080312WTT9WZPPB22212222204306100000000 -T320230111111870711120180913WTTZPTYW022212212204398100000000120160922WT@W#@0WT22212222204398100000000 -T12023011111187099920600414771120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118709993219580427WT@9BPYWZ1122222122214012210110580213069900000000000000000000000000000000000000000000000000000000000000000000000808012600000000 -T320230111111870999120100123WT@T@0BZ#11222112206306100000050 -T12023011111187120222000404841120312110740300000000266906540120000000000000000000000000000000000222222000000002229012 -T2202301111118712021219740712WT@0#P0#Y2222222222221012214110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111871202120070112WTT9BZ0P022222222204309100000000120040301WTTZ9@@#922222222204311100000000 -T12023011111187136422000411981120212110598300000000000005280590000000000000000000000000000000000222222000000002229072 -T2202301111118713641219960309WT@9YPT9Z1222212222221012213120610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000004758 -T320230111111871364120150711WT@PPTBZB12212222204398100000000 -T12023011111187140622000405841120212110611300000000127305280260000000000000000000000000000000000222222000000002229042 -T2202301111118714061219930912WTTYY00@P2221222222221012213210006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000001082 -T320230111111871406120210523WTT0@@TP#22212222204398100000000 -T12023011111187142620600400801120213110516300000000000000010030000000000000000000000000000000000222222000000002229012 -T2202301111118714261219940424WT@B0PBYW2222212222221012211110035711011700210000000000000000000000000000000000000000000000000000010000125600000000000000000000 -T320230111111871426120200124WT@WBTTPP22222112204398100000000 -T12023011111187145522000404841120233120000300000000008704170990000000000000000000000000000000000222222000000002229022 -T2202301111118714553219760723WT@PTTYYW1222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000585400000000000000000000 -T320230111111871455120060412WT@#T@Z##22222112209309100000000 -T12023011111187151320600414871120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118715132219930401WT@90P0T02222212222211012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111871513120130412WT@@Y0BP#22222112204303100000000 -T12023011111187159220600402131120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118715921219760309WTTTBWYPY2222221222223012212210035721011813000000000000000002000000000000000000000000000000000000200000000000000000000000000000 -T320230111111871592120050127WTT@PZ00T22222212204311200000000 -T12023011111187179722700401571120433110959300000000000006540320000000000000000000000000000000000222222000000002229022 -T2202301111118717973219950709WTT0P@9W91222212222221012213110006011069927000000000000000000000000000000000000000000000000000000000000192100000000000000000743 -T320230111111871797120080704WTTTZBWZ912222112207306100000000 -T320230111111871797120140726WT@9P#BY012222112207301100000000120110313WT@YT@PTY22222112207303100000000 -T12023011111187186220300408211120313110766300000000000006540460000000000000000000000000000000000222222000000002229012 -T2202301111118718621219960421WT@@B@ZZ02222212222221012212110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111871862120210404WTT9##0BZ22222112204398100000000120170112WT@YYY00@22222122204398100000000 -T12023011111187186322000408341120312110773300000000000006540410000000000000000000000000000000000222222000000002229012 -T2202301111118718631219720918WTT@BY0T#2221221222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111871863120160927WTTPYY0B021222212204301100000000120140921WTTWZWWB021222212204302100000000 -T12023011111187199420800414652120133210268300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118719945219730113WTTZYT#9W2222212222215013212110223813069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T12023011111187203422000409411120313110835300000000347103920300000000000000000000000000000000261122222000000012219012 -T2202301111118720341219810421WTT0BTTZB2222212222225012210110312923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111872034120070213WT@BW@T#022222112204310100000000120050424WT@B0T9@012222222204312100000000 -T12023011111187209522700408351120333110611300000000015005280260000000000000000000000000000000000222222000000002229022 -T2202301111118720952219880107WT@YYBT9P1222212222221012209910006013079900000000000000000000000000000000000000000000000000000000000000020000000000000000000000 -T320230111111872095120150911WT@@PWB@912222112204301100000000120060523WTTTT#TTP12222122204309100000000 -T12023011111187216422000409871120333120000300000000000005280400000000000000000000000000000000000222222000000002229022 -T2202301111118721643219730905WTTYY90BT2221222222222012216110253511069940000000000000000000000000000000000000000000000000000000000000594400000000000000000000 -T320230111111872164120190212WTTZPB##921222212206398100000000120180918WT@@#@P9Z21222212206398100000000 -T12023011111187216923500408281120233110511300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111118721693219720127WT@WZP@@B1222221222225012211110015913069900000000000000000000000000000000000000000000000000000000000000150500000000000000000000 -T320230111111872169120120502WTT@9@ZZ012222112206304100000000 -T12023011111187220424200402531120232120000300000000000002860990000000000000000000000000000000000222222000001312219022 -T2202301111118722043219540921WTT#Z0B0#2122222222225012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002000 -T320230111111872204120050404WTT#99W#@21222212206310100000149 -T12023011111187220722000411981120212120000300000000002005280090000000000000000000000000000000000222222000000002229072 -T2202301111118722071219830901WT@BT#90P2222212222225012216120920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111872207120040901WT@BWZWYT22212212204311100000000 -T12023011111187222622000408891120213110516300000000032000010400000000000000000000000000000000000222222000000002229012 -T2202301111118722261219930712WTTZB0YZ92221222222225012212910451511011700200000000000000000000000000000000000000000000000000000030000124600000000000000000000 -T320230111111872226120190904WTTTZBYP#22212222204312100000000 -T12023011111187233322000404842120423211034300000000100007710090000000000000000000000000000000000222222000000002229032 -T2202301111118723331219840512WT@W#W@T92222211222222011214290105023011800000000000000000000000000000000160001000000000000000000000000000000000000000000000000 -T2202301111118723331219880721WT@@BBZZ@2222212222222021214290105023011800000000000000000000000000000000380001000000000000000000000000000000000000000000000000 -T320230111111872333120170413WT@90WYYP22222122204398200000000120140226WTT#PYW@022222112204301200000000 -T12023011111187242824200406251120213110591300000000015705010070000000000000000000000000000000000222222000000272219012 -T2202301111118724281219900423WT@YPZ@PB2222212222221012212110085221010102000000000000000000000000000000000000000000000000000000000000010700000000000000000000 -T320230111111872428120220126WT@#@W@ZW22222122204398100000000 -T12023011111187247725600411701120212110611110040000007005280160000000000000000000000000000000000222222000000002229012 -T2202301111118724771219890301WTT@Z9YP@1222222222225012212120174323011400000000000000000000000000000000000000000000000000000000300000000000000000000000000000 -T320230111111872477120190713WT@YZ##TZ12222112204398100000000 -T12023011111187257621700406141120313110769300000000000000180080000000000000000000000000000000000222222000006362219012 -T2202301111118725761219850113WT@@TZBB#2222212222225012212120095121011901210000000000130000000000000000000000000000000000000000020000128500000000000000000000 -T320230111111872576120110302WT@W99YWY22222112204304100000000120070723WTTZ@WW0T22222122204310100000000 -T12023011111187264522000408341120213110557300000000000005280160000000000000000000000000000000000222222000000002229072 -T2202301111118726451219830523WT@#WTZWB2222222222223012216110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111872645120150427WTTPB#0@P22222212204302100000000 -T12023011111187269624100410041120713111304300000000000011650450000000000000000000000000000000000222222000000002229012 -T2202301111118726961219850912WT@0W9B0@1222212222223012207210441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111872696120090312WT@ZYY9BB12222222204306100000000120050313WT@YY9TY#12222212204310100000000 -T320230111111872696120150412WTT0T9Z#T12222112204301100000000120130327WT@YT#0#P12222212204302100000000 -T320230111111872696120190927WTTZ#0@YB12222112204398100000000120180427WT@W@#PWB12222122204398100000000 -T12023011111187286325000403231120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118728633219710423WTT@Z9W#B2222212222225012212111060011069933000000000000000000000000000000000000000000000000000000000000441700000000000000000000 -T320230111111872863120100313WT@W9Z##B22222112206305100000000 -T12023011111187291124200403941120213110611105080000000005280630000000000070014000000000000000000222222000000002229072 -T2202301111118729111219850912WTTZZTTW#2221212222225012213120830023011800000000000000000002000000000000000000000000000000000000250000000000000000000000000000 -T320230111111872911120160418WT@Z@WYP#22222222204398100000000 -T12023011111187298825600406521120513111116300000000000008880300000000000000000000000000000000000222222000000002229012 -T2202301111118729881219890513WT@09#0ZT2222122222223012209910283223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111872988120080127WTT9#WP0022221212204307900000000120060926WT@BWT@ZB22221212204308900000000 -T320230111111872988120220104WTTTTZZ@P22221212204398100000000120160301WTTTWPPB@22221222204398900000000 -T12023011111187299824200407311110213110962300000000000005280010000000000000000000000000000000000222222000000002229072 -T2202301111118729981219810305WT@90ZY9B2222212222221012207110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111872998120070911WT@BWZWPB22222122204310100000000 -T12023011111187316024200403941120313110835300000000000006540020000000000000000000000000000000000222222000000002229072 -T2202301111118731601219830112WT@9@0PT92122222222221012210111070023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111873160120200714WT@WZ0YY011222212204398100000000120180708WTTPPB0@Z11222212204398100000000 -T12023011111187317222000404841120213110599300000000000002370870000000000000000000000000000000290222122000000012219072 -T2202301111118731721219860527WTTYWPY#02221222222221012211120870023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111873172120150723WT@B9#@0@22212212204398100000000 -T12023011111187335223500404531120113110376300000000000004170030000000000000000000000000000000000222222000000002229072 -T2202301111118733521219790104WT@WT#BBP2222212222225013212190640021011930000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111187337425100407671120312110517300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118733741219780301WT@Y0##WY1222211222221012208290055523011400000000000000000000000000000000000000000000000000000000000000000000000000000012190000 -T2202301111118733742219810124WT@YYBT9P1222222222221012209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111873374120060704WTTB@WZY012222212204310100000000 -T12023011111187339121700406141120213110611300000000000003160090000000000000000000000000000000211122222000000012219012 -T2202301111118733911219910427WT@9WTZTY2222211222221012212110124823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111873391120120308WTTPTYYTW22222112204302100000000 -T12023011111187364522900404221120413110939300000000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111118736451219860212WT@9ZB0@P2222211222222012212110303023011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111873645120080924WTT9PB#TT22222122204307100000000 -T320230111111873645120180308WT@@0P@@922222122204398100000000120100902WTTWZ@0TZ22222112204306100000000 -T12023011111187372025900402721120513111137300000000000008880570000000000000000000000000000000000222222000000002229072 -T2202301111118737201219940408WTTYPWYW#1222212222223012210110610023011400000000000000000000000000000000000000000000000000000000190000000000000000000000000000 -T320230111111873720120150112WTTZ@W9#@12222112204398100000018120090121WTTY@YBW012222222204305100000018 -T320230111111873720120190512WTT9B0PP012222122204398100000018120170709WTT@99#0@12222212204398100000018 -T12023011111187376322000403891120233110570300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111118737633219770727WTT9ZPT9Z2221222222225012212110114913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111873763120150127WT@0T#0Y022212212206301100000000 -T12023011111187388620600406751120432110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118738862219610127WT@T0#0@#2221221222213012210120164413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111873886120050523WTTY0WWPY22212212204312100000000 -T320230111111873886120080123WTT9BB#TY22212212204308100000000120060727WTT#W@YYP22212212204311100000000 -T12023011111187395524200403941110213110524300000000020003740010000000000000000000000000000000000222222000000002229012 -T2202301111118739551219940527WTT##@#YT2222122222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111873955120150412WTT@#0B@Y22221212204301100000000 -T12023011111187401625900402831120213110610300000000000305010130000000000000000000000000000000000222222002600012219012 -T2202301111118740161219910713WTTB#TP092222212222225012211110204023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111874016120200401WT@W@#@9Z22222122204398100000000 -T12023011111187413421700406141120733111480137390000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111118741343219940113WT@WBP9P@2222212222221012210110105013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111874134120090108WT@9TPY9W22212112209307100000000120080104WT@9TPY9W22212122209308100000000 -T320230111111874134420190223WT@#@#@WT22222112204398100000000120100705WT@9TPY9W22212112209306100000000 -T320230111111874134420220902WT@TZ@PYW22222122204398100000000420200213WT@T0TWTP22222112204398100000000 -T12023011111187417322000411551120413110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111118741731219940423WT@PZ#0TT2221222222223012212110560423010100000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111874173120130408WT@@P#W9T22212212204302100000000 -T320230111111874173120220318WT@T@W@T#22212222204398100000000120190701WTTWPB0WT22212222204398100000000 -T12023011111187420924700410421120233120000300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111118742093219650914WTTYZ#B@#2222212222222012213110015913069900000000000000000000000000000000000000000000000000000000000000000000000000000000001745 -T320230111111874209120190102WTT090T9B22222112206398100000000 -T12023011111187433422000413731120213110598300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111118743341219930523WTTZZ0#W92221222222221012212110431723011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111874334120150518WT@0ZP##B22212212204302100000000 -T12023011111187442520600400801110213110611300000000000001530630000000000000000000000000000000000222222000003752219072 -T2202301111118744251219860313WT@9Z#@PY2222212222221012213110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111874425120070923WT@W0Y90922222122204307100000000 -T12023011111187445425200410591120233110516105770000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111118744542219680713WT@B09W9Z2221221222215012211110085213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111874454120150101WT@T0PY0022212222204302100000000 -T12023011111187451024700410421110313110835300000000000003050010000000000000000000000000000000000222222000000002229012 -T2202301111118745101219990401WTT0@#P@Y2222212222221012211110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111874510120190909WT@0T@Y@@22222112204398100000130120190909WT@PPYTTT22222112204398100000130 -T12023011111187453822000408891120522111116300000000000008880290000000000000000000000000000000000222222000000002229012 -T2202301111118745381219930207WTT#W@BT@2122222222221011212120303023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118745381219900418WT@W09Y9T2222211222221011212190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111874538120170926WT@@YPTZ922222122204398100000000 -T320230111111874538120190118WTT#Z@9TY22222112204398100000000120180712WTTBZTTYT22222112204398100000000 -T12023011111187453924200414851120212110611300000000000305280150000000000000000000000000000000000222222000000002229042 -T2202301111118745391220010114WTT#PPP9#2221222222221012212110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111874539120210713WT@PBY@#022212212204398100000000 -T12023011111187454024200403941120412110893300000000000007550320000000000000000000000000000000000222222000000162219072 -T2202301111118745401219740304WT@WY09PP2221222222223012212111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000015 -T320230111111874540120090323WT@0YYTYY22212212204305100000000 -T320230111111874540120180912WT@ZZZ9Z022212212204398100000000120120712WT@PW0YB922212212204303100000000 -T12023011111187455423900406231120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118745542219710412WT@ZT@#0T2222212222211012212121650013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111874554120080908WTT0@P90022222112204305100000000420060527WT@#YTBZP22222122104306109140000 -T12023011111187465024200414721120233120000124540000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118746503219860908WT@PTY0BZ2222212222225012212110045613069900000000000000000000000000000000000000000000000000000000000000239400000000000000000000 -T320230111111874650120200102WT@@9@ZYW22212212209398100000000 -T12023011111187467620600402131120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111118746761219950211WT@B9WYTB2222222222221013298190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111187472522600413251120333110598300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111118747252219960109WT@YYBT9P1222222222221012207920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111874725120220104WT@Y90@@#22222212204398100000000120210201WTTW9Y90P12222212204398100000000 -T12023011111187475122000411551120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118747513219540323WT@90YWWY1222212122224012206110006013069900000000000000000000000000000000000000000000000000000000000000000000001588000000000050 -T320230111111874751520070724WTTTPB@0#12212222106309106090000120050318WT@9B9WWB12212222206310100000000 -T12023011111187480020600404491120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118748002219960122WT@0@#TWZ2221212222211012212120392113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111874800120160408WT@TYYBYP22212212204398100000050120140924WTT9TTT0B22212122204302100000050 -T12023011111187485522000407231120213110599300000000000003160600000000000000000000000000000000211122222000000012219072 -T2202301111118748551219970704WTT#Y9Y#B2222212222221012211110610023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111874855120170124WTTZ@0#PT22212212204398100000000 -T12023011111187485724200403512120313210766300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111118748571219860709WT@9BP##B2222212222225012214210065423011800000000000000000000000000000000170001000000000000000000000000000000000000000000000000 -T320230111111874857120070918WT@Z#PTBP22222122204309200000000120060412WTTWPTYZT22222122204310200000000 -T12023011111187493122000406211110212110611300000000000002550010000000000000000000000000000000000222122000000002229012 -T2202301111118749311219820507WTTPTBZPW1222222222221012212120471323011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111874931120080418WT@TTP0B012222222204307100000000 -T12023011111187509924500405941120213110611300000000015004880280000000000000000000000000000000000222222000000402219012 -T2202301111118750991219760908WT@P#9#W92222212222223012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000040 -T320230111111875099120170122WTTZ9@@WZ22222122204398100000000 -T12023011111187512522000413141120313110815300000000000006540080000000000000000000000000000000000222222000000002229072 -T2202301111118751251219870711WTTWPZWP@2222212222221012216110860023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111875125120200408WT@Z0#@9012222112204398100000000120170313WT@W0TYTY12222122204398100000000 -T12023011111187517024700409381120332110704300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118751702219520923WTT990BZT2222221222212012213190810013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111118751702219660923WT@TPPTW#2222222222212022206191710013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111875170120040312WT@BYYTZ#22222212204311100000000 -T12023011111187519024200414721120113110740300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111118751901220010309WT@0ZYBT#2222212222221013211190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000040 -T12023011111187522625600411521120512111116300000000000008880880000000000000000000000000000000000222222000000002229072 -T2202301111118752261219840227WTTB9W@B02222212222225012211111600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111875226120090209WT@TZ00@W22222122204306100000000120070114WTTTY0BZY22222122204308100000000 -T320230111111875226120210312WTTBT#BPW22222122204398100000000120170904WT@#9ZYTB22222122204398100000100 -T12023011111187524322000411281120333110835300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111118752433219640512WT@W@0WY02222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111875243120130126WT@B9P@9922222112209302100000000120080212WTT#B@ZW#22222122209306100000000 -T12023011111187528522000405841120323110766300000000000006540180000000000000000000000000000000000222222000000002229012 -T2202301111118752851220000421WT@TY90Y#2221221222221011210190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118752851220010718WTT9WZYT@2221222222221011212190105023011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111875285120210212WT@9ZP#@@22212222204398100000000 -T12023011111187532923500411471120213110587300000000000005280190000000000000000000000000000000000222222000000002229072 -T2202301111118753291219860713WTT0P9YYW2222212222221012211110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111875329120070126WT@###YW022222112204308100000025 -T12023011111187537422000411281120232110493300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111118753742219850921WT@T0W##Y2222212122213012216111010013109900000000000000000000000000000000000000000000000000000000000000000000000640029400000000 -T320230111111875374120150904WTTP0@W##22222112204301100000000 -T12023011111187573923700414331120113110396300000000000004170130000000000070002000000000000000000222222000000002229012 -T2202301111118757391219980407WT@ZYYZY91222212222221013210110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111187580324200410001120213110611112270000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111118758031219950305WTTYB@0WY2222212222221012212120342623011400000000000000000000000000000000000000000000000000000000260000000000000000000000002203 -T320230111111875803120200421WT@BZ#PPZ22222122204398100000000 -T12023011111187581424200414021120313110776300000000000106540700000000000000000000000000000000000222222000000002229072 -T2202301111118758141219820718WT@PTZ0902221222222221012216111430023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118758142219580905WTTW@9ZWP2222211222215102206190006013089900000000000000000000000000000000000000000000000000000000000000000000000000088900000000 -T320230111111875814120090527WTTZBPW0W22212122204307100000000 -T12023011111187581624200403941120213110611300000000005005280070000000000000000000000000000000000222222000000002229012 -T2202301111118758161219980907WT@BB0BPW2222212222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111875816120220505WT@YW#YW022222112204398100000000 -T12023011111187584920600414161120213110598300000000000005280550000000000000000000000000000000000222222000000002229072 -T2202301111118758491219830901WT@WTP#P@2222212222221012211110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111875849120150709WT9TT@#WT22222122204398100000000 -T12023011111187594022000402321120312110835300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111118759401219920111WTT#99#T01222222222221012212110372321011816000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111875940120180127WT@YT@B#B12212212204398100000000120110711WTTBYWBZ@12222222204305100000000 -T12023011111187597822000400591120513111116300000000025008880040000000000000000000000000000000000222222000000002229012 -T2202301111118759781219840127WTTW#PB0Y1212222222223012212120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111875978120140126WTT@09Z#B12222122204301100000000120140126WTTT9WZB912222122204301100000000 -T320230111111875978120140126WTT0P09ZZ12222122204301100000000120110712WT@W9@@##12222122204304100000000 -T12023011111187614221700406141120313110835300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111118761421219690413WT@PWZB#01222221222225012216210431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111876142120060112WTT@TYB@@12222212204310100000000120050911WTT@@W#B012222212204311100000000 -T12023011111187623924700411201120433110900300000000000004500040000000000000000000000000000000000222222000002042219022 -T2202301111118762393219910427WT@999PZZ2222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111876239120100524WTTPZWT@B22222112207306100000000 -T320230111111876239120180718WT@@W#9ZY12222112207398100000120120120314WT@@WPT#@12222112207303100000120 -T12023011111187633324100410041110233110516300000000000003630450000000000000000000000000000000000222222000000542219021 -T2202301111118763332219860114WTTWPPBPT2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000039100000000 -T320230111111876333120110127WT@#@B@9Z22222112204305100000000 -T12023011111187636425100407171120513111199104320000033608880060000000000000000000000000000000000222222000000002229012 -T2202301111118763641219880901WT@#WYZT01222212222225012213110105021011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111876364120110411WT@Z0#PWY12212222204305100000000120080526WT@WP@PPB12212222204308100000000 -T320230111111876364120180914WT@#PZT#W12222122204398100000000120130126WTT#BWPBY12212212204303100000000 -T12023011111187637321700406141120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118763733219770724WTT@0Y0B92222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111876373120080407WT@YBY#9912222112209308100000000 -T12023011111187637423500411471120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118763742219840507WTT9TPWWZ2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111876374120050411WT@9YZTB922222122204310100000000 -T12023011111187640223500402711120333120000300000000000005280430000000000000000000000000000000000222222000000002229022 -T2202301111118764023219740227WTTT@T0W01212222222222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111876402120120305WTTBYB@TT12221222206302100000000120120418WTTW0B#@P12221222206303100000000 -T12023011111187641723800413801120623111375300000000000505090040000000000000000000000000000000000222222000005002219012 -T2202301111118764171219900504WT@@PBZ0#2222211222222011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000500 -T2202301111118764171219960421WT@W0Z9@B2222212222222021208190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111876417120160412WT@#ZW@TP22222112204301100000000120140124WTT9P0@Z022222112204301100000000 -T320230111111876417120200701WT@T9B#BW22222122204398100000000120170723WT@T99PBZ22222122204398100000000 -T12023011111187654123500404531120213110557300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111118765411219830126WTT@T#PPT2122222222225012213110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111876541120050911WT@T#0#0021222222204310100000000 -T12023011111187671422000405321120312110724300000000000006510130000000000000000000000000000000000222222000000032219072 -T2202301111118767141219830323WT@#W0WT92222212222221012216110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000002 -T320230111111876714120130322WTT#Z@90Y22221212204302100000000120110113WT@BYZ0Z922222112204304100000000 -T12023011111187681325900410241120313110835108250000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111118768131219890327WT@9#@PB#1222222222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111876813120210407WTTT9#B@Y12222112204398100000000120060714WTT@TPWZ912222122204308100000000 -T12023011111187685424700405901120722111480300000000006005760410000000000000000000000000000000384122222000002052219072 -T2202301111118768541219900427WTT##99#02222211222221011211190105023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118768541219910101WT@@Y#0BZ2222212222221011212110770021011813000000000000000000000000000000000000000000000000000000000000081500000000000000000000 -T320230111111876854120090908WTTPYYPZ@22222122204307100000000 -T320230111111876854120130423WTTP0ZWPW22222122204303100000000120120318WT@00T@BY22222122204303100000000 -T320230111111876854120210708WTT00B@0Z22222112204398100000000120170121WT@#YYZ0922222112204398100000000 -T12023011111187691524100402401120413111034300000000000007710150000000000000000000000000000000000222222000000002229072 -T2202301111118769151219870504WTTZP#9TB2222212222221012213120640021011700200000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111876915120130712WTT#P@#0Z22222112204302100000000 -T320230111111876915120200323WTT9TB@WP12222222204398100000000120170304WT@@YYB9012222112204398100000000 -T12023011111187704920800409061120213120000300000000190005280100000000000000000000000000000000000222222000000002229012 -T2202301111118770491219870721WT@PZ#P#B2222212222221012211110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877049120120922WT@B9TWPT22222112204303100000203 -T12023011111187709222000412691120312110740300000000080005280190000000000000000000000000000000000222122000000002229072 -T2202301111118770921219840724WT@B90TP@2221222222221012213120640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877092420130926WTTPTZY@@22212212104303109140000120090107WT@9W0B#W22212212204306100000000 -T12023011111187718522000409871120213110364300000000000003160150000000000000000000000000000000211122222000000012219012 -T2202301111118771851219910414WT@P99B#T2221221222221012211110194123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877185120120407WTT@@BY0W22212112204304100000000 -T12023011111187728221700406141120213110560300000000000005280370000000000000000000000000000000000222222000000002229012 -T2202301111118772821219950712WT@##W@#Y2222212222225012212110382223011700000000000000000000000000300001000000000000000000000000000000000000000000000000001975 -T320230111111877282120180718WT@YTYBZB22222122204398100000000 -T12023011111187729122000411981120213110611300000000000003160260000000000000000000000000000000211122222000000012219012 -T2202301111118772911220010413WTTY#WWZ02221222222221012211110322823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877291120200426WT@@@W9BB22212222204398100000000 -T12023011111187731425200410591120423111034300000000000004620200000000000000000000000000000000308122222000000012219012 -T2202301111118773141219910123WTTY#P0Z@2222212222221011211190213923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118773141219850513WTTTT#BW#1222211222221011212190213923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877314120180209WTTPPPPWP12222122204398100000000120140227WTTPTTWP#22222122204301100000000 -T12023011111187753124700413761110213110516300000000000001360010000000000000000000000000000000000222222000000002229012 -T2202301111118775311219820218WT@W#ZWPP2212221222221012212210184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877531120090724WT@9WBBTT22122222204307100000000 -T12023011111187755625900402121120213110611109340000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111118775561219870518WT@BP@W#@2221222222221012211110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877556120210307WTTBWBW0P22212212204398100000000 -T12023011111187756624700406701120333110822300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111118775662219870204WT@###Z9Z1222221122221012212210045613109900000000000000000000000000000000000000000000000000000000000000000000001810000000000000 -T320230111111877566120090904WTTYW#ZB912222112204307100000000120070927WTTTBPY@#12222212204309100000000 -T12023011111187765124700410421120213110611300000000002505280530000000000000000000000000000000000222222000000002229012 -T2202301111118776511219950102WTT#BPPY#2222212222223012212110540623011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111877651120170912WT@@0YTBP22222122204398100000000 -T12023011111187767820600400801120213110611300000000000002210450000000000000000000000000000000000222222000003072219072 -T2202301111118776781219830701WT@@9@WPT2222211222221012216110900023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877678120100118WT@P00@WT22222112204303100000000 -T12023011111187773025900402831120213110611109900000000008280180000000000000000000000000000000000222222000000002229012 -T2202301111118777301219930501WTT9#PTBZ1222222222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877730120220414WT@ZB@WP#12222212204398100000000 -T12023011111187780924700406741120213110611300000000002005280460000000000000000000000000000000000222222000000002229012 -T2202301111118778091219800927WTT@99Z@Z2221221222221012212110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877809120190402WT@0B@B9022212212204398100000000 -T12023011111187786324200414021120212110611300000000000005280670000000000000000000000000000000000222222000000002229072 -T2202301111118778631219830207WT@PY#ZB92222212222223012216110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111877863120120705WT@9@B#YZ22212112204304100000000 -T12023011111187790522700408351120233110553300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111118779053219650512WT@9PZWY02222212222222012212110134713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111877905120080324WTTT#BYYZ22222122206306100000050 -T12023011111187792025200410591120333120000300000000010004170990000000000000000000000000000000000222222000000002229022 -T2202301111118779203219730523WT@T#T@WW1222221222222012206910006011079945000000000000000000000000000000000000000000000000000000000000280000000000000000000000 -T320230111111877920420060108WTT0Y9ZY#12222222204310100000000120050901WTTTZP@BY12222212209311100000000 -T12023011111187806822000407412120323210766300000000000006540050000000000000000000000000000000000222222000000002229032 -T2202301111118780681219820514WTT#T@99@1221221222222011205290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118780681219880305WT@0YWW9Z2221222222222021205290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878068120190501WTT09@#YY12212222204398200000000 -T12023011111187808224200403941120233110516300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111118780823219580313WTTTZWZPT2222122122224012212110114913069900000000000000000000000000000000000000000000000000000000000000000000001057000000000000 -T320230111111878082120060427WTTZP@Z@Y22221212206309100000000 -T12023011111187810325200410141120412110939300000000000004620150000000000000000000000000000000308122222000000012219012 -T2202301111118781031219790126WT@PWTT0T2122222222223012216120342623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878103120050927WT@PPBTB022221122204311100000000 -T320230111111878103120210901WT@00T09B21222212206398100000000120060727WT@Y0B@YY22221112204309100000000 -T12023011111187811422600405051120313110811300000000000003920750000000000000000000000000000000261122222000000012219072 -T2202301111118781141219930422WT@BZY9@@1222212222221012209210740023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878114120170322WT@ZP0#ZW12222112204398100000000120120113WT@9WBYZ#12222112204304100000000 -T12023011111187823120800410781120413110939111990000000007710120000000000000000000000000000000000222222000000002229072 -T2202301111118782311219860126WTT0Z0YWT2222212222221012212110790023011800000000000000000000010001000000000000000000000000000000000000000000000000000000000000 -T320230111111878231120070113WT@T##P0Z22222112204305100000000 -T320230111111878231120180726WTTBZ9PZP22212222204398100000000120130907WTTZY0ZPT22222112204398100000000 -T12023011111187829324200407311120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111118782931219920408WTT#Z09BT2221222222221012212120105023010900000000000000000002000000000000000000000000000000000000030000000000000000000000000000 -T320230111111878293120200712WTTWY0@PP22212212204398100000000 -T12023011111187834622000406191120312110835126000000001506540430000000000000000000000000000000000222222000000002229012 -T2202301111118783461219900111WT@T#0@YP2221222222221012212210382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878346120200127WT@0T#0WW22222122204398100000100120180713WT@T@9WP#22212212204398100000000 -T12023011111187838921700406141120323110376300000000050003920900000000000000000000000000000000261122222000000012219072 -T2202301111118783891219900107WTT0ZTBWT2222212222222011212110900023010200000000000000000000000000000000000000000000000000000000000000000000000000000000002400 -T2202301111118783891219880713WTTW9WWZW1222211222222021216190352523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878389120100101WT@T##0PP22222112204305100000050 -T12023011111187839822000408561120212110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111118783981219990107WTTZT@TBB2221222222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878398120200713WT@BYBW@@22222112204398100000000 -T12023011111187841521400408021120433110835300000000000006540300000000000000000000000000000000000222222000000002229022 -T2202301111118784152219890512WT@YYBT9P1222212222224012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878415120070112WTT9@W#@Z12222122204309100000000 -T320230111111878415120130912WT@WPPBYT12222222204303100000000120100318WTT0#9#T912222212204304100000000 -T12023011111187849722000408891120413111034300000000000005780180000000000000000000000000000000192222122000000012219012 -T2202301111118784971219920409WT@0BT9BP2221222222221012216120283223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878497120140423WT@Y#P#P@22212212204302100000000 -T320230111111878497120220123WTTWZ##P@22212222204398100000000120160113WT@0ZY#Y#22212222204398100000000 -T12023011111187862820800405391120213110611300000000000505280680000000000000000000000000000000000222222000000002229072 -T2202301111118786281219800107WTT#YWP0P2222212222225012216120690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878628120170226WT@PP@#9#22222122204398100000000 -T12023011111187878622000406271120412110945300000000000007710140000000000000000000000000000000000222222000000002229012 -T2202301111118787861219910722WT@ZW0PPT2222212222225012215120154523010900000000000000000000000000000000000000000000000000000000000000000000000000000000003308 -T320230111111878786120150912WTTP#ZZY#22222122204302100000000 -T320230111111878786120200111WT@TBYT@T22222122204398100000000120170127WTTW#YTWB22222112204398100000000 -T12023011111187880922000414462120313210835300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111118788091220010322WT@BY900Y2222222222221012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111878809120190201WT@9TPY9W22221222204398200000000120150509WT@9TPY9W22221212204398200000000 -T12023011111187885424700408301120312120000300000000000003440990000000000000000000000000000000000222222000001842219072 -T2202301111118788541219780901WTTZPTZP02222212222221012216121380023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000183 -T320230111111878854120110908WT@@TTW9922222122204305100000000420100507WTTTPBPPZ22222112104306109140000 -T12023011111187901225900402831120313110835300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111118790121219900107WT@#90W@92222212222225012212110421823010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111879012120170223WT@BT0WP922222122204398100000000120090118WT@@0P0ZW22222112204306100000050 -T12023011111187920822000411981120512111141300000000000008880280000000000000000000000000000000000222222000000002229072 -T2202301111118792081219800421WT@9W#0PT1222222222225012212110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111879208120070927WT@TY90@@12222212204307100000000120060121WTTZ0T9B@12222212204307100000000 -T320230111111879208120130405WTT#09B@T12222112204302100000000120100213WTT9#W90W12222212204304100000000 -T12023011111187922220400409801120323110835300000000001506540160000000000000000000000000000000000222222000000002229012 -T2202301111118792221219840318WTTT0@YBP1122222222222011213190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118792221219820409WT@YZ9Y@W2222211222222021214190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111879222120130323WTTY@WZBP11222212204302100000000 -T12023011111187927322000403891120212110601300000000000005280460000000000000000000000000000000000222222000000002229012 -T2202301111118792731219970114WT@WB9WWW2221222222221012212110471323010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111879273120190108WTTWP#W#T22212222204398100000000 -T12023011111187950420800414651120233110516300000000000004170670000000000000000000000000000000000222222000000002229022 -T2202301111118795042219800123WT@ZW@TZW2222212222211012213120461413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111879504120050113WTTPZT9W922222222204310100000000 -T12023011111187957824900404261110312110835300000000000004000010000000000000000000000000000000000222222000000002229012 -T2202301111118795781219930923WT@PY9T0#1222222222221012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111879578120200104WTT#YWZP912222212204398100000000120150713WTT00BY@B12222212204398100000000 -T12023011111187974322000405321120232110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118797433219670121WT@#90WZ#2212222222221012211110095113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111879743120070702WT@@W0TWW22122212206309100000050 -T12023011111187977424200414721120213110524300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111118797741219920314WT@T#9P9T2222212222221012216110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111879774520170321WTTBYYT@B22222122104398106090000 -T12023011111187978320900411721110313110775300000000000000420010000000000000000000000000000000000222222000000002229012 -T2202301111118797831219790921WT@BWTZ@T2222212222221012216110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111879783120210307WTTTTB0T@22222122206398100000000120210307WTTB#Z9Z#22222112206398100000000 -T12023011111187981324200409731120413111034300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111118798131219810111WT@ZWY0P@2221221222223012213110105023011700000000000000000000000000270000000000000000000000000000000000000000000000000000002172 -T320230111111879813120110713WT@9PT#@B22212212204304100000000 -T320230111111879813120190312WT@0#@@WT22212222204398100000000120170326WTTBT00PY22212212204398100000000 -T12023011111187982420300412631120313110855300000000000006110130000000000000000000000000000000000222222000000432219012 -T2202301111118798241219850418WT@Z@9TPP2222212222221012211110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111879824120210527WTTZ0#W9Z22222112204398100000000120200104WT@B#0B9#22222122204398100000000 -T12023011111187982524700409321120412110939122980000002507710370000000000000000000000000000000000222222000000002229072 -T2202301111118798251219910111WTTTY#@#@2221222222221012216110790023011400000000000000000000000000000000000000000000000000000000320000000000000000000000000000 -T320230111111879825120090512WT@PTB#PW22212212204305100000000 -T320230111111879825120180324WT@#T###@22212222204398100000000120150212WT@YB@ZTP22212222204302100000000 -T12023011111188004725900402121120212110611300000000032305280350000000000000000000000000000000000222222000000002229072 -T2202301111118800471219860705WT@B0BZ##2222222222221012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111880047120160712WT@@@TW@Z22222112204398100000000 -T12023011111188011925900402721120413110942300000000000005140030000000000000000000000000000000000222222000002572219012 -T2202301111118801191219940301WT@0P999W1222212222223012212110550523011400000000000000000000000000000000000000000000000000000000020000000000000000000000000256 -T320230111111880119120160904WTTYP@PPW12222112204398100000000 -T320230111111880119120180327WTTW000WP12222112204398100000000120180327WT@W@#TY#12222122204398100000000 -T12023011111188017024700406741120613111339300000000000001990090000000000000000000000000000000000222222000008102219012 -T2202301111118801701219700324WTTB#B00T2222211222224012211110105021011931000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111880170120060714WTTWBPZZ921222212204309100000162 -T320230111111880170120120523WTTP9099Z21222212204304100000162120060714WTT#9#ZWW21222212204309100000162 -T320230111111880170120130126WTT0#BZ@@21222212204303100000162120130126WTT0WW@BB21222222204303100000162 -T12023011111188021225900402121120213110364300000000000003160280000000000000000000000000000000211122222000000012219012 -T2202301111118802121219950127WTT@PBZ0#2222212222221012211110392121010218000000000000000000000000000000000000000000000000000000000000123700000000000000000000 -T320230111111880212120120221WTT0Y99#P22222122204304100000000 -T12023011111188022324200404051120312110792300000000000006540940000000000000000000000000000000000222222000000002229072 -T2202301111118802231219590105WTTZ9#T#P2122221222221012214110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111880223120120911WT@#9T#ZP22212212204304100000000120100126WTTYPB00W21222212204306100000000 -T12023011111188028524700406702120523211199300000000085008880050000000000000000000000000000000000222222000000002229032 -T2202301111118802851219960324WTTTBY#@Y2222211222222011208290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118802851219980707WT@Y0#0@B2222212222222021206290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111880285120160226WTT#BZTZP22222122204398200000000 -T320230111111880285120200404WT@0T#T#T22222122204398200000000120180118WTTY0@Z9P22222122204398200000000 -T12023011111188028720800410751120233120000300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118802873219740124WTTZZWTWP2222212122222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001175000000000000 -T320230111111880287120150913WTT@##0##12222112206301100000000 -T12023011111188030020600414161120413111017300000000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111118803001219840918WT@TPB#WT2222212222221012214120204023010900000000000000000000000000000000000000000000000000000000160000000000000000000000000000 -T320230111111880300120100427WTTZZ#BTY22222112204306100000050 -T320230111111880300120150707WT@0WYYZ#12222122204398100000000120120924WT@#PZ#BZ22222112204304100000050 -T12023011111188040723500404531110213110516300000000000001530220000000000000000000000000000000000222222000000002229012 -T2202301111118804071219960305WT@#YZ#9Y2222222222221012212110144623011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111880407120190407WTT09ZTPY22221222204398100000000 -T12023011111188044922700413181120213110598300000000035705280040000000000000000000000000000000000222222000000002229012 -T2202301111118804491219700108WT@Z9Z#P@1222211222221012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111880449120050904WT@Z#YBWP22222112204311100000000 -T12023011111188046625900402831120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118804663219640204WTTW9BBBT1222222222222012210110015913069900000000000000000000000000000000000000000000000000000000000000265300000000000000000000 -T320230111111880466120060507WT@BBB9YY12222212206311100000000 -T12023011111188048522000413731120312110815300000000000006540470000000000000000000000000000000000222222000000002229072 -T2202301111118804851219950223WTTY0T@Z92221222222221012201110610023011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111111880485120180423WT@TPY9@@22212222204398100000000120140224WT@0ZB0TW22212222204301100000000 -T12023011111188050121400410861120233110516300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111118805013219640918WTTTBWWT92222212222225012216110095111069937000000000000000000000000000000000000000000000000000000000000228000000000000000000000 -T320230111111880501120130323WT@9BPT0P22222122206398100000000 -T12023011111188055520200409311120212110611300000000036504500090000000000000000000000000000000000222222000000782219012 -T2202301111118805551219810226WT@YW9#092222212222225012216110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000046 -T320230111111880555120110227WT@TZ9WB#22222122204304100000050 -T12023011111188072023500411471120312110740300000000000005280310000000000000000000000000000000000222222000000002229012 -T2202301111118807201219860412WTTZ#T9#B2222212222223012214110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111880720420160324WTTYZ@#0P22222112104398109140000120110908WT@B@YYY@22222122204304100000000 -T12023011111188072924500405781120233110516300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118807292219750718WTTZWYZWW2221221222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111880729120110114WT@PTT0BP22212222204305100000000 -T12023011111188079424100402401120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118807942219840427WTT90#@P@2222212222211012212110055513089900000000000000000000000000000000000000000000000000000000000000000000000000087400000021 -T320230111111880794120050927WTTZ@#TPT22222112204310100000025 -T12023011111188081920800411601120213110598300000000000005280360000000000000000000000000000000000222222000001262219012 -T2202301111118808191219900901WTTYTZ0Y#2222212222225012212110520823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111880819120220123WT@9TPY9W22212222204398100000000 -T12023011111188090523500411471120233110516300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111118809053219690312WT@9ZYZZB2222212222225012213110015913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000582 -T320230111111880905120200901WTTP0#BT922222112206398100000000 -T12023011111188092925100407671120313110740300000000000002500330000000000000000000000000000000166122222000000012219012 -T2202301111118809291219800212WTT#ZYBY92222211222221012213190520823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118809292219870212WT@@0WY##2212222122211012213190006013109900000000000000000000000000000000000000000000000000000000000000000000000881005300000000 -T320230111111880929520120313WTT9#9WTB22122112104302109140000 -T12023011111188098522000412231120212110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111118809851219790914WTTBP#BY@2221222222221012212110243623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111880985120210311WTTZ0@#ZP22212112204398100000000 -T12023011111188111922500405581120233110611300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111118811193219700912WT@W0Y@0B2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881119120190323WT@BBY9@P22222112206398100000000 -T12023011111188114620800410781120313110740103310000017404600430000000000000000000000000000000000222222000001942219012 -T2202301111118811461219830904WT@@WBWWY2222212222225012213120441621011807000000000000000000000000000000000000000000000000000000000000038700000000000000000000 -T320230111111881146120150408WT@@BYP@Z22212122204301100000000120080123WTT9##P9T22222122204308100000000 -T12023011111188115625000406021110213110611300000000000001870010000000000000000000000000000000000222222000000002229012 -T2202301111118811561219980726WT@00W##T1222222222221012212120045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881156120190112WT@#YB0#012222112204398100000000 -T12023011111188116324700406741120312110766300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111118811631219900111WT@#Z9@WP2222212222223012216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881163120130305WTT0##Z9912222112204302100000000120060926WT@@0TBP922222112204309100000000 -T12023011111188123520800414651120212110598300000000000205280510000000000000000000000000000000000222222000000002229012 -T2202301111118812351219850711WT@0YPYZW2222222222221012213110491123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111881235120080704WT@@TZYTP22222212204308100000000 -T12023011111188132524200407271120212110516300000000000004170400000000000000000000000000000000000222222000000002229012 -T2202301111118813251219950402WTTZ9@P@T2222212222221012211110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881325520140327WT@Y0TTW@22222122104302109140000 -T12023011111188132922000411981120333110493133320000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111118813293219810726WT@YYBT9P1222212222225012212910006011079939000000000000000000000000000000000000000000000000000000000000333200000000000000000000 -T320230111111881329120180722WT@09WY#Z12222212206398100000000120180421WTTY09@0T12222212206398100000000 -T12023011111188140222000413731120513112327300000000000007710560000000000000000000000000000000000222222000000002229012 -T2202301111118814021219890107WTT00ZZP@2221222222223012216120520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881402120060918WTTT00TW022212212205310100000000120050727WTT0@W@YY22212222205310100000000 -T320230111111881402120140914WT@W@ZZW022212222204302100000000420080104WT@9@PZYT22212212104309109140000 -T12023011111188142022900405641120213110611105620000008605280090000000000000000000000000000000000222222000000002229012 -T2202301111118814201219990104WTTYW#TW91222222222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881420120210511WTTP00@@T12222112204398100000000 -T12023011111188156723500408281120213110611300000000000003160270000000000000000000000000000000211122222000000012219012 -T2202301111118815671219910118WTTBZ0YZ#2222212222221012216110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881567120100926WT@Y00Z0922222112204307100000000 -T12023011111188161920600414771120332110740300000000000005280200000000000000000000000000000000000222222000000002229022 -T2202301111118816191219820322WT@P9T#Y@2222212222223012216120213923099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881619420130711WTT@B9#0P22222112104301109140000120120118WTT0@#TZ#22222122204303100000000 -T12023011111188164320500412201110333110835300000000000002040910000000000000000000000000000000000222222000003242219021 -T2202301111118816432219850527WT@ZZB0T92222212122213012210110164413109900000000000000000000000000000000000000000000000000000000000000000000000360052400000000 -T320230111111881643120120114WT@Y9YW0W22222122204303100000000120080127WTT@T@B0B22222112204306100000000 -T12023011111188164421700403821120213110611300000000000605280280000000000000000000000000000000000222222000000002229012 -T2202301111118816441219880412WT@TT@0YW2222122222221012212110283223011400000000000000000000000000000000000000000000000000000000600000000000000000000000000000 -T320230111111881644120080427WTTTZZ09W21222212204308100000000 -T12023011111188180220600404121120233110516300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111118818022219670904WT@0Y009T2122222222211012212110273313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111881802120110711WTTBW99T#21222212204306100000000 -T12023011111188182620600414161120523111136300000000000005370160000000000000000000000000000000000222222000003512219012 -T2202301111118818261219740426WTTWZT0TP2222211222222011212290174321011823000000000000000000000000000000000000000000000000000000000000140000000000000000000000 -T2202301111118818261219820312WT@9Z@@WW2222212222222021212290174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881826120040509WTTT#PTBY22222112204309200000000 -T320230111111881826120110522WTTY0W0#022222122204305200000000120060327WT@B00#@922222122204309200000000 -T12023011111188189625900402631120733111339300000000000008880990000000000000000000000000000000000222222000000002229022 -T2202301111118818962219870702WT@ZZP#@Z1222212222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118818962219710907WT@YYBT9P1222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111881896120060127WTTYZZ9BT12222212204308100000000 -T320230111111881896120100426WT@B@9W0W12222212204305100000000120090927WTTZZ9@WT12222212204306100000000 -T320230111111881896120200309WT@@PY9TT12222112204398100000000120140326WT@0BBZYT12222222204398100000000 -T12023011111188195222000409411120312110740110800000000003400990000000000000000000000000000000000222222000003142219072 -T2202301111118819521219910721WTT9WP9#P2221222222221012216121200021011700110000000000000000000000330004000000000000000000000000050000000000000000000000000000 -T320230111111881952120170927WT@Z@0YP922212222204398100000000120110105WTTY099ZY22212212204305100000000 -T12023011111188196120600400871110213110611300000000020004170010000000000000000000000000000000000222222000000002229012 -T2202301111118819611219990713WT@#9#9ZB2222212222222013213290025823011800000000000000000002000000000000000000000000000000000000280000000000000000000000000000 -T2202301111118819615220000422WTT@W#Y@P2222211222222023212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111188200023900403801120213120000125390000000004170220000000000000000000000000000000000222222000000002229012 -T2202301111118820002219850123WT@PWY0BP2222212222223012216110451513051400000000000000000000000000000000000000000000000000000000000000000000000000000000000808 -T320230111111882000120220512WTTT#Y@0P22222122205398100000000 -T12023011111188204420600402141120313110740300000000000504170120000000000000000000000000000000000222222000000002229012 -T2202301111118820441219910118WT@#P9PPZ2222212222225012213190213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118820442219890907WT@PTW0@W2222211122211102213190006013109900000000000000000000000000000000000000000000000000000000000000000000000830010400000000 -T320230111111882044520190304WTT@0B90T22222122104398108220000 -T12023011111188207624700409381120233120000300000000000003960550000000000000000000000000000000000222222002000012219022 -T2202301111118820763219650712WT@@ZYBPT2222212212222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000747 -T320230111111882076120140112WT@TZTYY022222122206398100000000 -T12023011111188220824700405831120233110446129780000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111118822083219950723WTTZ0ZB9Y2222212222222012211110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111882208120070912WTTPP#0P#22222122207310100000000 -T12023011111188224622000406191120213110598300000000200005280050000000000000000000000000000000000222222000000002229012 -T2202301111118822461219910709WTT@9PYWP2222212222222012215210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111882246120170413WT@##Z#0P12222112204398200000000 -T12023011111188226725100407671120533110600300000000030004310310000000000000000000000000000000000222222000000972219022 -T2202301111118822672219860722WT@YYBT9P1222222222221012203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118822672219800402WT@YYBT9P1222221222221022204990006011079930000000000000000000000000000000000000000000000000000000000000182700000000000000000000 -T320230111111882267420080122WT@YYBT9P12222212204308900000000 -T320230111111882267120160301WT@B090PT22222112204398100000000120150212WT@0T#Y@912222122204302100000000 -T12023011111188240024500410691120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118824003219720923WTTYWZY@02222212222223012212120960013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111882400120130704WT@TB@#@022222122206302100000050 -T12023011111188247022000400592120213210611300000000000005280050000000000000000000000000000000000222222000000002229032 -T2202301111118824701219870727WT@9TPY9W1222222222225012213910055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111882470120090913WT@9TPY9W12222222204307900000000 -T12023011111188248123500405981120313110611300000000300005280060000000000000000000000000000000000222222000000002229012 -T2202301111118824811219890908WT@PW0#@P2222212222223012214210075323011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T2202301111118824812219850405WT@YYBT9P2222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111882481120150523WT@9TPY9W22222112204301200000000 -T12023011111188252625600414551110232110540300000000000003760150000000000000000000000000000000000222222000002852219021 -T2202301111118825263219910707WTTZWP0W02122222222225012212110144611069907000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T320230111111882526120080302WT@B#YY0922222122207307100000216 -T12023011111188254525900402631120433110835300000000100006540140000000000000000000000000000000000222222000000002229022 -T2202301111118825452219950723WT@YYBT9P1222212222225012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111882545120140701WTT9BT#YZ12222212204302100000000 -T320230111111882545120190907WTTWPW0YB12222122204398100000000120160704WTT9Y@TYZ12222222204398100000000 -T12023011111188257724200414851120323110766300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118825771219750524WTTWW9TBW2222211222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118825771219720727WT@9P0Y0#2222212222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111882577120060427WTT#99ZBP22222122204310200000000 -T12023011111188257824100410041120113110376300000000000004170090000000000000000000000000000000000222222000000002229012 -T2202301111118825781220000114WT@YB0PTP2222212222221013212190095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111188258422000402371120212110591300000000008005280670000000000000000000000000000000000222222000000002229072 -T2202301111118825841219720227WTT9WT#YP2221222222225012213110680023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111882584120110118WT@#0@@ZZ22212212204304100000050 -T12023011111188274025900402831120233110516300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118827403219930913WTT9WZZ@02222211222221012212110006011069933000000000000000000000000000000000000000000000000000000000000237500000000000000000000 -T320230111111882740120070918WT@PWZZ9P22222112207307100000000 -T12023011111188275022900412731120313110855300000000001406540130000000000000000000000000000000000222222000000002229012 -T2202301111118827501219700304WT@YZP09W2222212222223012212110144623011400000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111882750120210212WT@0Z@9TW22222112206398100000000120040107WT@@TPPZZ22222122204311100000000 -T12023011111188295524700409321110213110611113230000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111118829551220010402WT@0@#Y0W2222112222221012216120025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111882955120190107WT@9T9@BT12221212204398100000000 -T12023011111188305820600407031120512111211300000000000008880780000000000000000000000000000000000222222000000002229072 -T2202301111118830581219930723WTTY90#0W2222212222221012216120790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883058120150305WTTW@#90@12222222204398100000031120130126WT@PP0ZZ012222122204302100000031 -T320230111111883058120200407WTTWYBWTT12222122204398100000011120190212WTT0YTTW012222122204398100000011 -T12023011111188306822000410051120433110835300000000000006540420000000000000000000000000000000000222222000000002229022 -T2202301111118830682219840727WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883068120050321WTT@WBT@Y12222112204310100000000 -T320230111111883068120180724WTTBY0ZW012222122204398100000000120080926WTTY09@0@12222122204307100000000 -T12023011111188307022000407241120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111118830701220000412WT@90#WBT2222212222225012298210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883070120210427WT@PW@TT@22222112204398200000000 -T12023011111188317722700403021110213110598111400000000005280210000000000000000000000000000000000222222000000002229012 -T2202301111118831771219980113WTTB@PW@Z2222212222221012212110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883177120190314WTTTWPWW@22222122204398100000000 -T12023011111188324325000414191120433110939300000000000003180360000000000000000000000000000000000222222000003362219022 -T2202301111118832433219690307WT@099PBW2222212222225012213120035711069995000000000000000000000000000000000000000000000000000000000000590900000000000000000414 -T320230111111883243120070727WT@T@ZTW922222112206308100000122 -T320230111111883243120130904WTTT#BZWZ21222212206302100000122120100702WTTW##W0#22222122206305100000122 -T12023011111188327523500404531120313110704300000000000006540370000000000000000000000000000000000222222000000002229012 -T2202301111118832751219810727WTT9Z0BWB2222212222225012212110382223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883275120220907WT@0Z9T@T22212212204398100000000120100423WT@YP#PP922222112204305100000000 -T12023011111188335925900402631120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118833593219460909WTTPP09WW2222212222213012212120134713069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111883359120080202WTT@BYTZB22222112206305100000000 -T12023011111188338320600414871120213110561300000000021505280020000000000000000000000000000000000222222000000002229012 -T2202301111118833831219810723WTTWYW@#Z2222212222221012213110035723010900000000000000000003000000000000000000000000000000000000200000000000000000000000000000 -T320230111111883383120060907WT@T00Y@B22222112204310100000000 -T12023011111188341523700414331120533111034300000000000007710180000000000000000000000000000000000222222000000002229022 -T2202301111118834152219770323WT@YYBT9P1222222222224012201910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883415120090926WTTY9##@#12222212204306100000000120050414WTTB#0Y@#12222212204311100000000 -T320230111111883415120210718WTT0T#0BZ12222212204398100000000120140105WT@ZYWB#P12222212204303100000000 -T12023011111188351224200409591120213110598118330000108305280040000000000000000000000000000000000222222000000002229012 -T2202301111118835121220000412WTTZ@PB902222212222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883512120180112WTTY0P9#T22212122204398100000000 -T12023011111188366525900403711120233120000300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111118836653219580526WTT@Z00902222212122222012213110006011069921000000000000000000000000000000000000000000000000000000000000153500002220000000000000 -T320230111111883665120100326WT@#9B9BB22222122206303100000050 -T12023011111188369920900411721120313110542300000000000003920520000000000000000000000000000000261122222000000012219072 -T2202301111118836991219730422WTTTB@0YB2222212222221012211110770023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883699120070707WT@TWBBWZ22222122204308100000000120050909WT@TTP9BW22222112204310100000000 -T12023011111188379523800413801120513111209300000000000008880050000000000000000000000000000000000222222000000002229072 -T2202301111118837951219860912WTTYPPB992222212222225012211111610023010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883795120090327WT@@BZZT#22222112204305100000000120050127WT@W9#90022222122204311100000000 -T320230111111883795120210727WT@T9@0Z922222112206398100000000120140326WTTZWW0W#22222122204301100000000 -T12023011111188380924900406031120213110598300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111118838091219970404WT@T0@##P1222222222221012210110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883809120160118WT@Y@#@PP12222222204398100000000 -T12023011111188382022000407241121023112113300000000000015390020000000000000000000000000000000000222222000000002229012 -T2202301111118838201219650105WT@#0ZW#92222211222222011298290045623011800000000000000000004000000000000000000000000000000000000340000000000000000000000000000 -T2202301111118838201219700527WT@0ZB9Y02222212222222021298290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883820120060421WT@YTPPY#21222222204398200000000120050407WT@PT00##22222112204398200000000 -T320230111111883820120090424WTTPP#ZT922222122204398200000000120070126WTT@PZZ9@22222122204398200000000 -T320230111111883820120130423WT@#@00WZ22222122204398200000000120110109WTT@@PBBP22222122204398200000000 -T320230111111883820120180211WT@#0YT9W22222122204398200000000120150323WT@BZ##YP22222122204398200000000 -T12023011111188383622000404841120413110939300000000000007710060000000000000000000000000000000000222222000000002229072 -T2202301111118838361219890923WT@Z9PYTT2221222222223012215120610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883836120070123WTTZWBPPP22212212204309100000000 -T320230111111883836120110705WT@#P@BZ@22212222204305100000000120080402WTTYZ@BTW22212212204308100000000 -T12023011111188386823500402711120213110599300000000048903160070000000000000000000000000000000211122222000000012219012 -T2202301111118838681219700123WTT@T00W92222211222221012212110154523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111883868120090123WTTZYWTPT22222112204307100000000 -T12023011111188390425900402121120433110846300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111118839043219730121WT@0Y9ZZP2222212222222012213110085211069949000000000000000000000000000000000000000000000000000000000000206100000000000000000000 -T320230111111883904420080708WTTWB9P0Z22222112204305100000000 -T320230111111883904120210918WT@P9@99#22222122208398100000000120190704WTTZP9BTT22222122208398100000000 -T12023011111188402921400408021120733111211300000000000008730240000000000000000000000000000000000222222000000002229022 -T2202301111118840292219900318WT@YYBT9P1222222222222012205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118840292219880424WT@YYBT9P1222221222222022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884029120090304WT@ZW0YTZ12222212204306100000000 -T320230111111884029120180708WT@WB0Z@@12222112204398100000000120100312WTTZ0YT@Z12222212204305100000000 -T320230111111884029120220724WT@P909#912222222204398100000000120210427WT@BBT@B#12222112204398100000000 -T12023011111188406724200403511120413111034300000000024006540030000000000000000000000000000000000222222000000002229012 -T2202301111118840671219880124WTT9@0@@92222211222223012212110055523011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111884067120080321WTTY@9ZW#22222112205308100000000 -T320230111111884067120160512WT@9YTT#W22222122204301100000000420140504WT@TT0Z#W22222122104303109140000 -T12023011111188410925600412851120313110699300000000000006540200000000000000000000000000000000000222222000000002229012 -T2202301111118841091219840523WT@BYB#Z#2222212222221012212120253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884109120130501WT@0BBP@Z22222112204302100000000120120404WT@@Z9TWZ22222122204303100000000 -T12023011111188411122000406951120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118841113219590901WTT0@#ZPT2222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884111120130104WT@Y#BW#Z22222122206303100000000 -T12023011111188412224200414851120313110611300000000000003920230000000000000000000000000000000261122222000000012219072 -T2202301111118841221219850723WTT9#9#Y02221122222221012210110850023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884122120150412WT@@0WYY#22111222204398100000000120080412WT@90B@ZT21211212204307100000000 -T12023011111188436622000400921120213110446300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111118843661220030924WT@#T9ZPT1222222222221012211110065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884366120220227WTT9#YZTW12222212204398100000000 -T12023011111188440322000405842110423210939300000000000001980010000000000000000000000000000000000222222000000002229032 -T2202301111118844031219910413WTTTY9@ZY2222221222222011215290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118844031219900727WTTWZW#ZB2222122222222021216290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884403120200721WTTPWT09B22221222204398200000000120180301WTTY0ZZZP22221222204398200000000 -T12023011111188445323500411471120512111116300000000000108880870000000000000000000000000000000000222222000000002229072 -T2202301111118844531219880218WT@Y#PBZ02222212222221012212120860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884453120120523WT@0BWBWW22222112204303100000000120080723WTT#YYY@W22222112204307100000000 -T320230111111884453120190412WT@B@W#Y#22212212204398100000000120150113WT@#0YY#B22212222204301100000000 -T12023011111188446620800409831120313110809300000000000304780040000000000000000000000000000000000221222000000502219012 -T2202301111118844661219800305WTTWP#ZZ#2222212222223012212110045621010104000000000000000000000000000000000000000000000000000000000000020000000000000000000300 -T320230111111884466420220113WT@YYBT9P22222112204398100000000120060109WT@B0@0YT22222122204311100000000 -T12023011111188450225900402831120212110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111118845021219850409WT@TW09PZ2222212222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884502120180208WTT99P0TB22222112204398100000000 -T12023011111188452022700408351120313110835101000000000206540150000000000000000000000000000000000222222000000002229072 -T2202301111118845201219850926WTTY9WW0T2222211222221012212110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884520120130713WT@T0WWPT22222112204302100000000120120723WTT0BTYPB22222112204304100000000 -T12023011111188452724200403431120213110611300000000015005280020000000000000000000000000000000000222222000000002229012 -T2202301111118845271219960423WT@TZYYYP2222212222221012212110025821011798000000000000000000000000000000000000000000000000000000000000322500000000000000000000 -T320230111111884527120180312WT@Z90@TB22212212204398100000000 -T12023011111188455925900402831120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118845593219750904WT@Y#BBTT2221222222225012216110015913069900000000000000000000000000000000000000000000000000000000000000540000000000000000000000 -T320230111111884559120060718WTT0Z0YYY22212222207311100000050 -T12023011111188460121000412411120233110470300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111118846013219890401WT@0Y9PT92122222222221012212110006011069933000000000000000000000000000000000000000000000000000000000000291200000000000000000000 -T320230111111884601120110721WT@@WT9WY22222222207302100000000 -T12023011111188463724200413921120312110766300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111118846371219880108WT@@#PWT02222212222221012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000001039 -T320230111111884637120210102WT@Z#WY#Z22222112204398100000000120140718WTTZ#Z@Y022222112204398100000000 -T12023011111188473725800401991120513110959104900000000000440600000000000000000000000000000000117122222000006102219072 -T2202301111118847371219930901WT@9@BWW@2222212222221012211110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884737120200223WTTWZYPTZ22222112204398100000000120170423WT@9@PT0B22222122204398100000000 -T320230111111884737120230407WTTP#9BZY22222122204398100000000120200223WTT#WTPYB22222122204398100000000 -T12023011111188474920800414151120423111034300000000050007710050000000000035001000000000000000000222222000000002229012 -T2202301111118847491219840123WTTB09TZ@1222221222222011216190114923011800000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T2202301111118847491219800427WT@W@T@B02222212222222021212190204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111884749120150122WTTB090Y@12222222204398100000000120140905WT@9P90TP12222122204302100000000 -T12023011111188481320600401641110413110939300000000150001010420000000000000000000000000000000000222222000000002229012 -T2202301111118848131219980112WTT9@W0092222212222221012211110600021011816000000000000000000000000000000000000000000000000000000000000109000000000000000000000 -T320230111111884813120130118WTT0@YBPY22222112204302100000000 -T320230111111884813120210405WT@9Z#TW912222112204398100000000120160701WT@Z9@YTZ22222112204301100000000 -T12023011111188501423700414331120213110548300000000040005280130000000000000000000000000000000000222222000000002229012 -T2202301111118850141219820312WT@@PBY#02222212222225012214110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885014120210413WTTB#PBBB22222122204398100000000 -T12023011111188505922000403891120633110598300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111118850592219850423WT@YYBT9P1222221222222012208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118850592219880721WT@YYBT9P1222222222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885059120190124WT@PTTPT#12222212204398100000000120180112WTT@0#TB#12222222204398100000000 -T320230111111885059420140123WT@YYBT9P12222222204302900000000420120327WT@YYBT9P12222212204303900000000 -T12023011111188525622000413681120213110376300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111118852561220020126WTTY90#PW2222212222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885256120210902WT@9Z@BZZ12222222204398100000000 -T12023011111188531125000401171110113120000300000000000003360010000000000000000000000000000000000222222000000002229012 -T2202301111118853111219890912WTTTBZBWZ2222212222221013216190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111188538022700408491120313110704113020000100006540290000000000000000000000000000000000222222000000002229072 -T2202301111118853801219840407WTT#ZTY##2222212222225012212110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885380120210113WTT##Z9PB22222122204398100000000120080107WTT@ZB0BP22222122204307100000000 -T12023011111188543622000405181120313110740114350000000006540610000000000000000000000000000000000222222000000002229072 -T2202301111118854361219940714WT@@P9BTP2221222222221012212110620023011800000000000000000000000000000000030000000000000000000000010000000000000000000000000000 -T320230111111885436120190402WTTP##0#022212222204398100000050120180507WT@BT9WTY22212222204398100000050 -T12023011111188546020600409821120213110631300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111118854601219970904WTTPZ#ZBZ2222212222225012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885460120150918WT@BBP9W922222112204398100000050 -T12023011111188554824200410211120333120000111710000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111118855483219590327WT@P#9WZB2221221222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885548120180208WTTWB90Y912222122206398100000000120160312WTTP#ZW#012212222206398100000000 -T12023011111188556524700409321120213110557300000000000305280270000000000000000000000000000000000222222000000002229072 -T2202301111118855651219810702WTT9BZ0Y92221222222221012212110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885565120130718WT@@WPT#W22212222204302100000000 -T12023011111188562225600413441120812111691113820000000012890120000000000000000000000000000000000222222000000002229012 -T2202301111118856221219870527WT@#T#WYT1122222222223012216110570323011400000000000000000000000000000000000000000000000000000000430000000000000000000000000000 -T320230111111885622120050427WTTBWY00T12222222204311100000000 -T320230111111885622120080202WTT@0BT#912222222204309100000000120060726WTTZW0ZBP12222212204308100000000 -T320230111111885622120140324WT@#Z9BWW12222222204302100000000120100718WT@Y0##0011222222204306100000000 -T320230111111885622120200907WT@WW@@9W11222212204398100000000120160702WTTBT@ZZZ11222212204398100000000 -T12023011111188564723500410671120233110516300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111118856472219790326WT@#0Z#ZW2222212222213012212110025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111885647120140401WTTT@9YP922212122204301100000000 -T12023011111188565825900402121120413110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111118856581219930912WT@TY@#P92222212222223012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885658120180927WT@9T@Z0T12222112204398100000000 -T320230111111885658120210727WTTP@TTBT12222122204398100000000120200426WTT000BWW12222122204398100000000 -T12023011111188575120600402141120333110634300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111118857513219750724WT@999YZ02222212222225012213120303011069986000000000000000000000000000000000000000000000000000000000000342500000000000000000000 -T320230111111885751120120104WT@@@9#WW22222122209302100000000120070704WT@0#BYW922222122207309100000000 -T12023011111188578022000411981120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118857803219590426WT@BZ9P002212222222221012215110006013069900000000000000000000000000000000000000000000000000000000000000120000000000000000000000 -T320230111111885780120040918WT@W#YB@Y21222212206311100000050 -T12023011111188585825600414971120413110939110150000000007710140000000000070007000000000000000000222222000000002229012 -T2202301111118858581219800404WT@ZYZBWY2122221222221012210110243623011800000000000000000004000000000000000000000000000000000000280000000000000000000000000000 -T320230111111885858120070413WTTYPYT@Y21222212204309100000000 -T320230111111885858120150327WT@ZWY9ZB22212212204398100000000120130918WT@W#TW9Y22212222204303100000000 -T12023011111188587224200409091120233120000300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111118858723219640712WTTB00#T02222122222223012213110006011069961000000000000000000000000000000000000000000000000000000000000667400000000000000000000 -T320230111111885872120070902WTTY@PWWP21221212207308100000000 -T12023011111188589724200414851120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118858973219560122WT@WZB00P2221222222222012213120006011069940000000000000000000000000000000000000000000000000000000000000452600000000000000000000 -T320230111111885897120070413WTT90TZBP11212222206310100000000120050721WT@0#Y@PZ21212212206311100000000 -T12023011111188590424200403941120213110557300000000000005280990000000000070017000000000000000000222222000000002229072 -T2202301111118859041219800412WTTT0B@WP2222212222223012212111150022011900000000000000300000000000000000000000000000000000000000180000000000000000000000000000 -T320230111111885904120060105WTT@BT@TT22222112204309100000000 -T12023011111188595820800414651120213110598300000000118705280050000000000000000000000000000000000222222000000002229012 -T2202301111118859581219740718WT@ZZYWWT2222212222223012214110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111885958120060724WTT@TYB#W22222122204309100000000 -T12023011111188603124700401281110312110798114720000000004750050000000000000000000000000000000000222222000000002229012 -T2202301111118860311219940422WT@W0BWPY2222212222221012211120065423010900000000000000000000000000000000000000000000000000000000000000000000000000000000000108 -T320230111111886031120180226WTTTTZT@P12222112204398100000000120120127WTTT@Y9@Z22212212204304100000000 -T12023011111188604325900406841120213110611300000000000005090180000000000000000000000000000000000222222000000192219042 -T2202301111118860431219880323WTT#9TZT#2122222222225012208110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111886043120220414WT@9@B90W21222212204398100000000 -T12023011111188608923700414331120213110611300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111118860891219820222WTT9WB#T#1222222222225012212110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886089120110927WT@@TT0PW12222122204305100000000 -T12023011111188609822700413181110213110557300000000000003860070000000000035001000000000000000000222222000001422219012 -T2202301111118860981219790323WTT#P@0@#1222212222221012213110253521011804000000000000000000000000000000000000000000000000000000100000024000000000000000000054 -T320230111111886098120070327WT@YTYB0Y12222222204308100000092 -T12023011111188617724200402501120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111118861773219760412WTTTW09#B2222212222222012298110006011069940000000000000000000000000000000000000000000000000000000000000537700000000000000000000 -T320230111111886177120080412WTTY@#09Z22222122207308100000000 -T12023011111188620523500407161120513111116300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111118862051219910226WTTZ0@9WZ2222122222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886205120140918WTT0Y#9T022221212204301100000000120130918WTT@P9TY022221222204302100000000 -T320230111111886205120220709WTT0PT#YZ22221212204398100000000120210704WT@Y@W9@922221222204398100000000 -T12023011111188620924700402991120213110517300000000048404940020000000000000000000000000000000000222222000000342219012 -T2202301111118862091219850901WTT#0@9T92222212222225012216110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000003206 -T320230111111886209120120427WT@0P9#TP22222122204305100000000 -T12023011111188624722000406191120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118862471219920309WT@PW@#BW2222122222221012212110105021011817000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886247120150501WTTWW9#ZW22221212204302100000000 -T12023011111188628624200409091120533110611300000000000002340140000000000000000000000000000000000222222000002942219022 -T2202301111118862862219890423WT@YYBT9P1222222222222012209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118862862219860121WT@YYBT9P1222221222222022209990006011079942000000000000000000000000000000000000000000000000000000000000261400000000000000000000 -T320230111111886286420070327WT@YYBT9P12222212204307900000000 -T320230111111886286120120421WTTZ@T#9Y22222212204304100000000120090122WT@B0TTBT12222122204305100000000 -T12023011111188638222000410051120423110939300000000358007710370000000000000000000000000000000000222222000000002229012 -T2202301111118863821219920921WT@9@Y9002222211222222011214290382221011800180000000000000000000000000000310000000000000000000000000000115500000000000000000849 -T2202301111118863821219910714WTT@W0ZZT2222212222222021216290382221011800180000000000000000000000000000230000000000000000000000000000115500000000000000000939 -T320230111111886382120170423WT@W#@WT@22222112204398200000000120130911WT@09YYB#22222112204303200000000 -T12023011111188650624700406491120323110835300000000464506540030000000000070002000000000000000000222222000000002229012 -T2202301111118865061219720923WT@ZZ#BB@2222211222222011216190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118865061219730727WTT9ZTBWT2222212222222021214190045623011800000000000000000002000000000000000000000000000000000000180000000000000000000000000000 -T320230111111886506120130723WT@@@PY@W22222222204302100000000 -T12023011111188653724200414721120312110598300000000000006010070000000000000000000000000000000000222222000000002229012 -T2202301111118865371220000113WT@PTZZZY2222212222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886537120220727WTTZBY9W@22222112204398100000000120190318WTTP99Y0B22222112204398100000000 -T12023011111188662320600402141120313110766300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111118866231219970326WT@B00PWZ2222122222221012212910194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886623120210923WTTWY#@TW22221212204398100000000120190927WT@P9#YT022221212204398100000000 -T12023011111188663024200414851120613111199300000000090608880030000000000000000000000000000000000222222000000002229012 -T2202301111118866301219860401WTT#P#9BW1222222222222012208210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118866302219680726WT@09WP@01222221222222022207990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886630120090401WT@P#TPPP12222212204306200000000120060327WTTTBZY9T12222222204308200000000 -T320230111111886630120220314WTT#9#TP#12222222204398100000000120150312WTTYYB0@912222212204398100000000 -T12023011111188671324200403511120213110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111118867131219980504WT@9PYYP92222211222221012210110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886713120170227WTTW0PBZ@22222112204398100000000 -T12023011111188679723700414331120333110516300000000346304170110000000000000000000000000000000000222222000000002229022 -T2202301111118867972219650905WT@YYBT9P1222211222225012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886797420120723WT@W#T#ZT12222212104302109000000120110926WT@9@Z@TB12222122204303100000000 -T12023011111188684124700406631120413110835300000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111118868411219850405WT@@99ZPB1222211222221012216190134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118868412219880708WT@YYBT9P1222212222225102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886841120150422WT@B09ZPT12222112204301100000000120140404WTTZ#0W0012222122204302100000000 -T12023011111188687520800414651120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111118868751219900122WT@TP0#TW2222212222221012213121130023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111886875120130904WTTW9B90022222212204302100000000 -T12023011111188689323500410671120233110376300000000150004170280000000000000000000000000000000000222222000000002229022 -T2202301111118868932219830301WT@YYBT9P2222222222221012214910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886893120200422WT@9WW0WZ22222212204398100000000 -T12023011111188695720600414871120213110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111118869571219960411WTTW9TWY92222212222221012213110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111886957120210101WTTZ0@BYZ22222112204398100000000 -T12023011111188700923900408291120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118870093219620321WT@0#TB#02122222122215012211110590113069900000000000000000000000000000000000000000000000000000000000000000000000681025300000000 -T320230111111887009120170314WTTW#WZ#Y21222212206398100000000 -T12023011111188703322000407411120233120000102600000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111118870333219660501WTT9P9B0W2222212222221012213110441611069920000000000000000000000000000000000000000000000000000000000000378400000000000000000000 -T320230111111887033120090921WTT00TB9#22222122206307100000000 -T12023011111188725025200410591120433110740300000000000404040580000000000000000000000000000000000222222000001242219022 -T2202301111118872502219720127WT@#TTWW91122222222212012216190690013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111118872502219570707WT@YYBT9P1222211222222022204990006011079901000000000000000000000000000000000000000000000000000000000000050000000000000000000000 -T320230111111887250120080427WT@T0W9TZ11222212204308100000000120050504WTTBYPTTW11222222204311100000000 -T12023011111188728125800413571120423111034300000000000007710050000000000090002000000000000000000222222000000002229012 -T2202301111118872811219910324WTT@@PZPY2222211222222011212190065423011800000000000000000004000000000000000000000000000000000000180000000000000000000000000000 -T2202301111118872811219900701WTT@P@PYZ2222212222222021212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111887281120170726WT@@W999#22222122204398100000000120160504WT@BPZWZW22222112204398100000000 -T12023011111188728624200410211120413111034300000000000007710260000000000000000000000000000000000222222000000002229012 -T2202301111118872861219930914WTTZPBZWT2221222222221012212110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000564 -T320230111111887286120160324WTTT09ZWW22212122204398100000000 -T320230111111887286120220127WTTT9B0W022222112204398100000000120180412WT@@00#BP22212212204398100000000 -T12023011111188732123700414331120633111388300000000000008880990000000000000000000000000000000000222222000000002229022 -T2202301111118873212219880421WTTPBTTBT2222212222213012208120065413089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111887321120050112WTTBWB@#Z22222122204311100000000 -T320230111111887321120100107WT@@BBWB912222222204305100000000120070322WTTZYY0PT12222122204308100000000 -T320230111111887321120130701WTTWW@W9T22222222204303100000000120120414WTTTW0YP922222112204304100000000 -T12023011111188743223700414331110333110611300000000000005280180000000000000000000000000000000000222222000000002229021 -T2202301111118874322219800505WT@YYBT9P1222222222221012208910114913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111887432120110709WT@YPPB9B12222112204306100000000120080913WTT99ZBZY12222222204309100000000 -T12023011111188754022000407091120212110611300000000000005010360000000000000000000000000000000000222222002600012219012 -T2202301111118875401219970924WTTZB@@9P2221222222221012216110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111887540120190408WT@TWY99T22212222204398100000000 -T12023011111188755424200402501120213110611300000000000205280110000000000000000000000000000000000222222000000002229012 -T2202301111118875541219960727WTTYY9TY02222212222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111887554120210307WTTTB09W#22222122204398100000000 -T12023011111188755924200414721120413110959300000000000007710330000000000000000000000000000000000222222000000002229072 -T2202301111118875591219900413WTT#9WZZ02222212222221012211110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111887559120140709WT@9BZ@#922212222204302100000007 -T320230111111887559120180304WTT#9#BY922212212204398100000000120170412WT@ZPT#9W22222122204398100000000 -T12023011111188756520800411601120333120000103500000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111118875653219710312WT@0#WB0W1222222222222012213120006013069900000000000000000000000000000000000000000000000000000000000000378400000000000000000000 -T320230111111887565120150326WTT0WYPTW12222212207398100000000120130107WT@TB@BYB12222212207304100000000 -T12023011111188762025600414951120212110611300000000000004640870000000000000000000000000000000000222222000000642219072 -T2202301111118876201219910723WT@YPWZTP2122212222221012209110910023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000063 -T320230111111887620120130121WT@PTBPP922222122204302100000050 -T12023011111188776924200414721110312110835300000000000001390010000000000000000000000000000000000222222000000002229072 -T2202301111118877691219810127WT@PPPW9W2221222222221012213111350023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111887769120100313WT@9YTW0P22222212204303100000172120050301WTT@BZTPT22212222204308100000000 -T12023011111188783920600404121120512111211300000000000008430030000000000000000000000000000000000222222004400012219072 -T2202301111118878391219960327WT@ZBTYT92221222222225012212110670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111887839120140423WT@@YTP#@22212212204398100000000120110923WTTW#@@ZB22212222204303100000000 -T320230111111887839120160412WT@09YBTT22212222204398100000000120150402WT@9##9#T22212222204398100000000 -T12023011111188790222000409991110313110705300000000000005690010000000000000000000000000000000000222222000000002229012 -T2202301111118879021219840423WT@T#WWTP2221222222223012212110471321011819000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111887902120160724WT@BPYPY@22212212204398100000000120140712WTTZZZZWP22212212204398100000000 -T12023011111188792224200414021120232110493300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118879223219460727WT@0090ZW2221222122224012216120075313069900000000000000000000000000000000000000000000000000000000000000000000000964000000000000 -T320230111111887922120120123WT@BBBYY@22212222206304100000000 -T12023011111188801122000403891120312110889300000000000005560950000000000000000000000000000000000222222000000002229072 -T2202301111118880111219900423WT@T#B#WW1222222222221012211110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888011120220712WTTB@0WYZ22122222204398100000000120100122WT@Z#TB0#22212222204305100000000 -T12023011111188801720600407031120313110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111118880171220010527WT@9ZP9WP2222212222223012212110045623010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111888017120210118WT@T@P@@@22221122204398100000000120200111WTT#TP00P22222112204398100000000 -T12023011111188815525100407671120313110766100500000019106540040000000000000000000000000000000000222222000000002229012 -T2202301111118881551219940312WT@00#@PY2222212222225012216110055521011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888155120190105WTT#9ZZ#922222112204398100000000120170709WTTYTTT#@22222122204398100000000 -T12023011111188818220800410751110323110785300000000000001790050000000000000000000000000000000000222222000000002229012 -T2202301111118881821219900709WT@9Y0Z@@2222122222222011212190075321011809000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118881821219830721WT@YZBP@02222121222222011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888182120120912WTT@P@BY022221212204304100000000 -T12023011111188820124200411401120233110470104700000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111118882013219770513WTT@@ZZB92222212222223012212120332711069935000000000000000000000000000000000000000000000000000000000000286900000000000000000000 -T320230111111888201120160413WT@P@@0ZY22222122206398100000000 -T12023011111188822022000406951120212110611120300000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111118882201220010311WTT9YB0YW2221222222221012209110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888220120200326WT@ZBTT#T22212212204398100000000 -T12023011111188833825100407671120533110835300000000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111118883382219950304WT@YYBT9P1222222222221012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118883382219900226WT@YYBT9P1222221222225022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888338120180908WTT@ZYYZT12222212204398100000000 -T320230111111888338120220202WT@Y#Z#TW12222112204398100000000120200905WT@P@9W9Z12222212204398100000000 -T12023011111188837225200410591120213110631300000000000105280210000000000000000000000000000000000222222000000002229012 -T2202301111118883721219910112WT@TZ9YZB2222211222221012210110253523011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111888372120170909WT@##Y0TZ22222122204398100000000 -T12023011111188844624700408301120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111118884461219880727WT@WW9#T02222212222221012211110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888446120210721WT@Z@T0@922222122204398100000000 -T12023011111188850720600414871120212110631300000000000005280660000000000000000000000000000000000222222000000002229072 -T2202301111118885071219790223WTT#9TTPZ2122222222223012212120670023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888507120170518WT@TTP9#Z22222112204398100000000 -T12023011111188857420600402131120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118885743219750927WT@00##BP1222222222225012213110610011069925000000000000000000000000000000000000000000000000000000000000167200000000000000000000 -T320230111111888574120150923WTT#ZZ0T922222122206398100000050120130307WT@B0@#PW22222122206398100000050 -T12023011111188857720600404121120312110835300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111118885771219740104WTTZ0B00W2222212222223012216110550523010900000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111888577120130512WT@BPTYYW22222112204303100000000120110121WT@W0PPW#22222112204304100000000 -T12023011111188870620800410751110313110557300000000000001890010000000000000000000000000000000000222222000000002229012 -T2202301111118887061219990118WTTZ#0ZZT2222212222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888706120220113WT@9TPY9W22222112204398100000000120200723WT@PW99PP22222112204398100000000 -T12023011111188873323500410671120213110516300000000001504170880000000000000000000000000000000000222222000000002229072 -T2202301111118887331219740118WT@#99WTW2222211222221012212110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888733520090912WT@TTBTY#22222122104306109140000 -T12023011111188886624700413761110422111034300000000000004390080000000000000000000000000000000000222222000000002229012 -T2202301111118888661219810404WTT0#BZ#@2222212222222011216190095121011812000000000000000000000000000000000000000000000000000000000000071600000000000000000000 -T2202301111118888661219780912WT@#PW9@92222221222222021216290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111888866120200318WTTZ0ZYB022222122204398100000000120170126WTT9@#P#Z22222122204398100000000 -T12023011111188887622000405181120212110536117350000000001450130000000000000000000000000000000000222222000003832219012 -T2202301111118888761219840927WTT@Z00002221222222225012212210134721011816000000000000000000000000000000000000000000000000000000000000076500000000000000000000 -T320230111111888876120190727WT@P@YYP@22212222204398100000000 -T12023011111188892624200403941120113110376300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111118889261220000907WT@YW00WP1222222222221013212190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111188894925900400311120333120000300000000000005280090000000000000000000000000000000000222222000000002229022 -T2202301111118889493219690718WT@#@9#P@1222221222222012202110025811069949000000000000000000000000000000000000000000000000000000000000473400000000000000000000 -T320230111111888949120170101WTTW99WW#12222222207398100000000120160123WTTZ#TPTY12222212207398100000079 -T12023011111188896224200403941120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118889622219730921WT@BBZ0#@2222212222211012209110940013089900000000000000000000000000000000000000000000000000000000000000000000000000081000000000 -T320230111111888962120090927WTTT@0#BY22212222204307100000000 -T12023011111188910325900405251120213110611104230000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118891031219870914WTT0W##PZ2222212222221012216110303023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111889103120140312WT@0@TW##22222122204301100000000 -T12023011111188917025900402721120313110542102870000180406540180000000000000000000000000000000000222222000000002229012 -T2202301111118891701219960304WT@Y#BYWT2222212222221012216110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000167 -T320230111111889170120210918WT@9@YPP#12222122204398100000000120170123WTTP00WYZ22222122204398100000000 -T12023011111188955524900403221120333110611300000000000004260060000000000000000000000000000000000222222000001022219022 -T2202301111118895552219780104WT@YYBT9P1222221222223012210910006011079915000000000000000000000000000000000000000000000000000000000000091100000000000000000000 -T320230111111889555120160713WT@9ZP0ZB12222112204398100000000120050311WTTBZT0@012222122204309100000000 -T12023011111188962822100406981120213110611300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111118896281219960108WTT@9PTZP2222212222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111889628120220401WT@@#0@@#22222122204398100000000 -T12023011111188967422000411281120233120000300000000000005280940000000000000000000000000000000000222222000000002229022 -T2202301111118896743219890123WT@09WBZZ2221122222221012214120006011069940000000000000000000000000000000000000000000000000000000000000721400000000000000000000 -T320230111111889674120090326WT@Z0W0@022112222207306100000058 -T12023011111188971622000407241110333110516300000000020002210250000000000000000000000000000000000222222000002382219021 -T2202301111118897162219710708WT@YYBT9P1222222222221012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111889716120110707WT@TPZ0B@12222222204304100000000120060413WTTTBT9Y912222212204308100000000 -T12023011111188973424200407431120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118897343219640423WTTBWBWZP2222212122222012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000404000000000000 -T320230111111889734120080421WTT99ZB#Y22222112207308100000000 -T12023011111188977922000410222110523211116300000000000002500010000000000000000000000000000000000222222000000002229032 -T2202301111118897791219760108WT@PBZY092222211222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118897791219830426WT@0TY@P@2222212222222021214290025821011816000000000000000000000000000000000000000000000000000000000000110000000000000000000000 -T320230111111889779120100909WT@PP0@T#22222122204306200000000 -T320230111111889779120170301WTTYWWWW@22222112204398200000000120120713WTTBWTP#022222122204303200000000 -T12023011111188981023500411471120533110835300000000020006540220000000000000000000000000000000000222222000000002229022 -T2202301111118898102219860221WT@YYBT9P1222212222222012204990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118898102219770718WT@YYBT9P1222211222222022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000750 -T320230111111889810120080907WT@@#@WY912222122204307100000000 -T320230111111889810120180718WTTT00TWB12222112204398100000000120120109WTTYBT@#@12222112204302100000000 -T12023011111188983422000413731120233110516300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111118898341219970314WT@T0B#WB1222212222221012210110204023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111889834520170523WT@0@BW0B12222212104398109140000 -T12023011111188984425900403551110333110376300000000200004170190000000000000000000000000000000000222222000000002229021 -T2202301111118898442219870723WT@YYBT9P1222212222222012210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118898442219840404WT@YYBT9P1222211222222022211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111889844120150702WT@BP@PBZ12222122204302100000000 -T12023011111188988524200408231120213110611300000000487305280310000000000000000000000000000000000222222000000002229012 -T2202301111118898851219870705WT@YZ0ZTW2222212222225012209110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111889885120210423WTT0T9BP922212222204398100000000 -T12023011111188995222000411321120212110516300000000000004170990000000000000000000000000000000000222222000000002229072 -T2202301111118899521219780113WT@#TBY##2221222222221012216121190023011800000000000000000000000000250004000000000000000000000000010000000000000000000000000000 -T320230111111889952520140913WTT0W0ZYT22212212104301109140000 -T12023011111188997425200407301120513111199300000000000008880390000000000000000000000000000000000222222000000002229072 -T2202301111118899741219890509WTTZTYTBZ2221222222225012213120620023011400000000000000000000000000000000000000000000000000000000390000000000000000000000000681 -T320230111111889974120110504WT@T#ZZTZ22222122204304100000000120090727WTT@#0TTP22222122204305100000000 -T320230111111889974120150905WT@#Y#0ZP22222122204301100000000120120304WT@#T#YWY22222122204303100000000 -T12023011111188998121700406141120523111121300000000000602600260000000000000000000000000000000000222222000006282219072 -T2202301111118899811219840318WT@#YW9T#2222211222222011212190890021011800210000000000000000000000000000000000000000000000000000040000125500000000000000000000 -T2202301111118899811219880312WTTW@Z9BY2222212222222021210190441623011800000000000000000000000000000000000000470000000000000000000000000000000000000000000000 -T320230111111889981120050124WT@90@ZWW22222112204311100000000 -T320230111111889981120090921WTTBYYB#P22222112204308100000000120060105WTTYT@B0T22222112204310100000000 -T12023011111189004225600411521120412111034300000000000007710830000000000000000000000000000000000222222000000002229072 -T2202301111118900421219820402WT@#PP#W02221212222225012216110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111890042120070721WTTBTW@TY22212222204308100000000 -T320230111111890042120170118WT@@BZBYY22222122204398100000000120120427WTT#9B#T@22222122204303100000000 -T12023011111189009922100409491120213110611300000000023405280300000000000000000000000000000000000222222000000002229012 -T2202301111118900991219860718WT@WTB#092222212222221012212110421823011400000000000000000000000000000000000000000000000000000000220000000000000000000000001228 -T320230111111890099120200101WT@@ZTTP#21222222204398100000000 -T12023011111189020022700408491120213110599300000000000003160090000000000000000000000000000000211122222000000012219012 -T2202301111118902001219970704WT@Z9@ZPT2222212222221012210110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111890200120180421WTTB#TYPB22222112204398100000000 -T12023011111189026523500402711120233110376300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111118902652219890127WTT#B@Z092222212222223012212210006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111890265120170523WTTYBZYT#12221222204398100000000 -T12023011111189036722000406211120212110598110860000000205280540000000000000000000000000000000000222222000000002229012 -T2202301111118903671219940113WTT#WWW0Y1221212222221012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111890367120170512WT@W00BYT11222222204398100000000 -T12023011111189038224700408091120313110740300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111118903821219970722WT@#9Y@PB2221221222221012211190065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118903822219970526WT@P0PBB01222212222211012212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000005600000000 -T320230111111890382520220409WT@P#Y#T@12222122104398106090000 -T12023011111189039420600414771120422110939300000000000007710220000000000000000000000000000000000222222000000002229012 -T2202301111118903941219860924WTTTBY@9W2222212222222011212190441623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118903941219810227WT@YT9BYB2222211222222021216290223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111890394120130126WTTW9#B9#22222112204304100000000120110907WT@#YBTBT22222122204305100000000 -T12023011111189040524700402991110322110608300000000000000890010000000000000000000000000000000000222222000000002229012 -T2202301111118904051220020309WTT#@ZYZB2222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000153 -T2202301111118904051219950414WTTY9TBPW2222211222222021216290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000153 -T320230111111890405120230423WT@Z0PBP922222112204398100000000 -T12023011111189060322000408891120513111199300000000090008880110000000000000000000000000000000000222222000000002229012 -T2202301111118906031219970324WTTZ90T@#2221212222221012211110124823010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111890603120180912WTTY#TPZ022212122204398100000000120160711WTT0ZB#BP22212112204398100000000 -T320230111111890603120200324WTTWT@@WP22212122204398100000000120190214WTTZPYY@022212122204398100000000 -T12023011111189063422000402321120332110670300000000000005280270000000000000000000000000000000000222222000000002229022 -T2202301111118906345219840926WTT@@WT#B2221222222221012212110312913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111890634120060323WT@0Y#W0T12222112208309100000323120050412WTTB##ZT012222112208311100000323 -T12023011111189068725900402831120333120000300000000000005280400000000000000000000000000000000000222222000000002229022 -T2202301111118906873219620712WTTPZZYZP2222211122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001863000000000000 -T320230111111890687120060308WT@W0##T922222112206309100000050120050113WTT@YP0TP22222112206310100000050 -T12023011111189078923900408291120233120000300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111118907893219800922WTT9B@WPZ2122222222225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111890789120050422WT@TWYBB@21222222207311100000000 -T12023011111189083721700406141120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111118908371219870204WTTWZ#ZW@1222212222221013212190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111189084324700413761120233110516300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111118908432219820104WT@YBBTYP2222211222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111890843120110323WT@#BTP@022222112204303100000000 -T12023011111189085122000414461120312110740300000000000500010130000000000000000000000000000000000222222000000002229012 -T2202301111118908511219820413WTTT@#ZYW2222212222223012212110134711011800210000000000000000000000000000000000000000000000000000070000138500000000000000000000 -T320230111111890851420090704WT@Y9TB@022222112104306106710000120070226WT@@TZ90P22222122204309100000000 -T12023011111189097124700406741120233120000106580000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111118909713219600402WTTZ@WYY@2222212122224012213110015911069933000000000000000000000000000000000000000000000000000000000000227500001146000000000000 -T320230111111890971120120407WT@0#WWTY12222122206303100000050 -T12023011111189098224500405941120232110516300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111118909822219870408WTTBY9PZZ2222212222211012214110461413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111890982120200127WTTZP#00B22222122204398100000000 -T12023011111189121124200414851120233110611300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111118912113219670113WTTYZ0P##2222122222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891211120160218WTT9@YZ0W22221212207398100000000 -T12023011111189123122000400811120533111116300000000000007710410000000000000000000000000000000000222222000000002229022 -T2202301111118912313219580504WTTW#9Z##2212222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891231120120407WT@0W@P@022122222206304100000000120050427WT@T9PPBB22122222206311100000000 -T320230111111891231120160914WTT0B9ZTZ22122222206398100000000120130318WTTT@#9WZ22122212206302100000000 -T12023011111189124222700408351120233110536300000000000004170980000000000000000000000000000000000222222000000002229022 -T2202301111118912423219520421WT@9W@9P@1222221122222012212110790013069900000000000000000000000000000000000000000000000000000000000000000000001068000000000000 -T320230111111891242120140223WT@Y@ZYYT12222212206302100000000 -T12023011111189131424200402501120533120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118913143219770118WTTPPY0BW2222212222223012212120006011069948000000000000000000000000000000000000000000000000000000000000518500000000000000000000 -T320230111111891314120080411WTTY9P9@@22221222209308100000000120060204WT@TBWZT922221222209310100000000 -T320230111111891314420140907WTT0W9P@#22221212204302100000000420130426WT@BPYYT022221222204303100000000 -T12023011111189132825900402831120213110611108440000000005280090000000000070001000000000000000000222222000000002229012 -T2202301111118913281219970723WT@YYBP@W1222212222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891328120210107WT@@Z00#B12222122204398100000000 -T12023011111189136523900406231120212110598300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111118913651219840904WTTZZ99W02222212222225012214110213923010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891365120060908WT@ZP#@BW22222122204310100000050 -T12023011111189141624900404261120313110727300000000015106540060000000000000000000000000000000000222222000000002229012 -T2202301111118914161219810207WTTYZYT992222211222225012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891416120080721WT@0@##9B22222122204306100000000120050713WT@@9B@B922222122204310100000000 -T12023011111189142925200400391120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111118914291219900704WT@90ZYYB2222211222221012211110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891429120180902WTT@#YT#W22222112204398100000000 -T12023011111189148924200403941120432110939300000000000005280600000000000000000000000000000000000222222000000002229022 -T2202301111118914892219760912WT@P@@T992222212222213012208110402013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111891489120100704WT@B#0BZ@22222122204306100000000 -T320230111111891489120160213WTTP@9Z@022212212204398100000000420110713WTT99PP@@22222112104303109140000 -T12023011111189152125200407301120312110835107010000000005870280000000000000000000000000000000000222222000000672219012 -T2202301111118915211220010323WT@@9Z#B02222122222221012211110293121011803000000000000000000000000000000000000000000000000000000000000013300000000000000000000 -T320230111111891521120200112WTTWW0YBZ22222112204398100000000120160312WT@@PB@Y#22221212204398100000000 -T12023011111189154924200410001120713111480300000000000007710290000000000000000000000000000000000222222000000002229072 -T2202301111118915491219920721WT@YT@T0P2222212222225012213110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118915492219880321WT@T@9BWT2221221222211102211190006013089900000000000000000000000000000000000000000000000000000000000000000000000000003100000000 -T320230111111891549420100118WT@TYTPT@22222212104306109140000 -T320230111111891549120210301WTTP##@P@22222112204398100000000120190121WT@PZBBZ922222222204398100000000 -T320230111111891549420170213WTTT9PY9@22222222104398109140000120120418WT@#TT#PT22222212204305100000000 -T12023011111189159020800414651120432110939300000000000006020990000000000000000000000000000000000222222000000522219022 -T2202301111118915902219820723WTT#B0WZT2222212222211012216110840013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111891590120070111WT@0BY#PB22222112204309100000054 -T320230111111891590120090912WTT##BY9B22222122204307100000000120080907WT@9@9WYP22222122204308100000000 -T12023011111189162024200403941120213110376300000000250006160150000000000000000000000000000000211122222000000002229012 -T2202301111118916201219930105WT@@ZTZ0B2222212222221012212110372323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891620120110401WT@T0WY#912212212204305100000000 -T12023011111189165125200410141120313110835300000000021706540170000000000000000000000000000000000222222000000002229012 -T2202301111118916511219810907WTT0TYZ@#2222212222225012212120204023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111891651120080918WTT@@#Z@022222112204308100000000120060227WTT99P#YP22222122204310100000000 -T12023011111189168424700408092120423210959300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111118916841219780927WTTYY9P#92221221222222011212290035721011824000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118916841219860112WTT0Y9P#@2222222222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891684120180107WT@ZWBW@T22212222204398200000000120070423WTTTBWW@#22212222204309200000000 -T12023011111189169725900406081120233120000300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111118916973219920122WT@WBBWZ91222222222222012211110006011069937000000000000000000000000000000000000000000000000000000000000293900000000000000000000 -T320230111111891697120130904WTTP0YY##12222122207303100000000 -T12023011111189181320600401641120213110611300000000035005280080000000000000000000000000000000000222222000000002229012 -T2202301111118918131219820101WTTPBT@#W2222211222225012213110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111891813120060423WT@#9WY0Y22222122204310100000000 -T12023011111189182020600407032120433210904300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111118918203219940304WT@@TY@YW2222211222222012213210075311069917000000000000000000000000000000000000000000000000000000000000247600000000000000000000 -T320230111111891820120070401WT@BYW0W@22222112209306200000000 -T320230111111891820420200112WT@900BWW22222122204398200000000420190118WTTYZZZ#@22222112204398200000000 -T12023011111189190025900403551120113110376300000000254804170040000000000000000000000000000000000222222000000002229012 -T2202301111118919001219990323WTT@9ZB9#1222222222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111189191722700408351120333120000300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111118919173219540907WT@B9@YTW2222212122224012212120006013069900000000000000000000000000000000000000000000000000000000000000000000001867000000000000 -T320230111111891917120190507WTTPZTB9012222122209398100000000120170727WTT0B@W9P12222122209398100000000 -T12023011111189200824900403221120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118920082219850327WTTY99#9Y2222212222211012211110293113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111892008120080711WT@BYWWB922222112204305100000050 -T12023011111189217225900406841120323110740300000000044703920030000000000000000000000000000000000222222000002622219042 -T2202301111118921721219960512WTT#ZW@0B2122221222221011212110006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T2202301111118921721220010107WTT#BWBW@2122222222221011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000242 -T320230111111892172120200112WT@#WY0T@21222222204398100000179 -T12023011111189226220600402141120233120000104060000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111118922623219740926WTT0TB0992222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000395600000000000000000000 -T320230111111892262120140518WTTZW0@Z@22222112206301100000000 -T12023011111189230620800410751120313110815300000000002502800060000000000000000000000000000000000222222000003742219012 -T2202301111118923061219890118WT@@WP0@02222212222223012212110065421011813000000000000000000000000000000000000000000000000000000000000074700000000000000000000 -T320230111111892306120180702WTTW@0@T#22222112204398100000000120130713WTTTYTYBP22222112204302100000000 -T12023011111189248420600414871120623111395300000000008010090120000000000000000000000000000000000222222000000002229012 -T2202301111118924841219830707WTTT@9PT01222212222222011211190471323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118924841219850318WTTZ@ZWWT2222211222222021212190303023011900000000000000000000000000390004000000000000000000000000030000000000000000000000000000 -T320230111111892484120110401WTTBWZ0PT12222112204304100000000120050127WTTW#PTPY12222112204309100000000 -T320230111111892484120150324WTTY0PZZT12222112204398100000000120130902WTT000BWT12222112204302100000000 -T12023011111189260320600402131120413110939300000000000207710020000000000000000000000000000000000222222000000002229012 -T2202301111118926031219990226WTTPWZTP92222212222221012212110035721011734000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111892603120180218WTTB#@TP922222112204398100000000 -T320230111111892603120210527WT@0#WBW#22222122204398100000000120190404WT@ZBPY@W22222122204398100000000 -T12023011111189261720600414771120412110956300000000000007710270000000000000000000000000000000000222222000000002229012 -T2202301111118926171219950313WTT0Z@WPZ2222212222221012213110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111892617120130104WTT9B@@TB22222122204302100000000 -T320230111111892617120210205WTTZ99W@#12222122204398100000000120160126WT@YWZ@Z022222212204398100000000 -T12023011111189280222000405841120213110638113000000000003160470000000000000000000000000000000211122222000000012219012 -T2202301111118928021219980907WT@T@Z9ZP2221222222221012216120481223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111892802120180505WT@WZZW0W12212222204398100000000 -T12023011111189290325900402831120213110608300000000001105280050000000000000000000000000000000000222222000000002229012 -T2202301111118929031220020123WT@90@@0T2222212222221012210110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111892903120210205WTT0#TT0T22222122204398100000000 -T12023011111189293325600413441120113110376300000000000003120070000000000000000000000000000000104222122000000012219012 -T2202301111118929331219910412WT@YYTBWW2222212222221013212120085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111189297122000412971120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111118929711219750127WT@@Z@Y0W1222222222223012208121000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111892971120080223WT@P0TYZ#12222222204309100000000 -T12023011111189300220800411931120233120000300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111118930023219630121WTT@P#WTT2222212222225012215110006013069900000000000000000000000000000000000000000000000000000000000000544100000000000000001400 -T320230111111893002120160401WT@Y#BZBY22212222209398100000000 -T12023011111189310522000403891120413110939138220000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111118931051219870712WT@Y@WZZ@1222211222223012211110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893105120160412WTTWY#PZ022212212205398100000000 -T320230111111893105120200701WTTP#WP#922222112204398100000000120190427WT@YTYPP#22222122204398100000000 -T12023011111189323022700407491120433110893300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111118932303219930909WT@BWWWZ#2222212222225012216110006013069900000000000000000000000000000000000000000000000000000000000000391300000000000000000000 -T320230111111893230420140407WT@#B0TWY22222122204303100000415 -T320230111111893230120210218WT@WB0W@922222112208398100000000420170427WT@9W#99922212222204398100000000 -T12023011111189333520600412681120213110281300000000025002220540000000000000000000000000000000148122222000000472219012 -T2202301111118933351219920709WT@90ZZZW2222212222223012212110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000046 -T320230111111893335520150918WTT#@TZ@022222112104301109140148 -T12023011111189342724700405831120233120000300000000000004170330000000000000000000000000000000000222222000000002229022 -T2202301111118934273219920221WT@T0Y9@#2221222222221012212110382211069940000000000000000000000000000000000000000000000000000000000000740600000000000000000000 -T320230111111893427120110323WTTW#BBWB22212222207305100000000 -T12023011111189343023500402711120333120000300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111118934303219720107WTT0PWT#B2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893430120180704WT@TPZ##Y22222122206398100000000120120427WTTTPPT9Z22222122206304100000000 -T12023011111189343525900406081120433110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118934352219880314WTTPWB9YB1222222122211012212190015913109900000000000000000000000000000000000000000000000000000000000000000000000481045300000000 -T2202301111118934352219810513WT@YYBT9P1222221222221102205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893435420100723WTTPYZ#YP12222222104303109140000120080326WT@@#Z@B@12222212204305100000000 -T12023011111189348725600411521120212110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111118934871219820918WT@PT9W#Y2222212222225012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893487120050926WT@@0Y9W#22222112204310100000000 -T12023011111189351124200407431110233110540300000000000001210250000000000000000000000000000000000222222000002282219021 -T2202301111118935113219660112WTTWPW@9@2221222222211012212110015913069900000000000000000000000000000000000000000000000000000000000000000000000000113300000000 -T320230111111893511120170707WT@BZP90T22212222206398100000000 -T12023011111189352925900402121120233110516300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111118935293219600404WT@T#ZZZ02222212222215012212110770013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111893529120070922WT@PTYPBY22222122206309100000000 -T12023011111189374320600414771120213110611300000000000004550360000000000000000000000000000000000222222000000002229012 -T2202301111118937431219920421WT@@YB0@02222212222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893743120200422WT@WW#9B022222112204398100000000 -T12023011111189375422000407791120212110598300000000085505280130000000000000000000000000000000000222222000000002229012 -T2202301111118937541219720427WT@B#PZZZ2221222222221012213120213923010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893754120090504WT@9YBP#Y22212222204308100000000 -T12023011111189376321700407751120213110516300000000000004170670000000000000000000000000000000000222222000000002229072 -T2202301111118937631219750501WT@@W9PZ#2222212222225013213110750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118937635220040318WTT0ZBB@Z2222212222211043210190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T12023011111189378020800410781120433120000300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118937803219780413WTT#WT09@2222122222221012214110006011069940000000000000000000000000000000000000000000000000000000000000404200000000000000000000 -T320230111111893780120080114WT@W@WY0W22221212207307100000000 -T320230111111893780120140307WT@00BTBZ22221212207301100000000120090401WT@ZZBZ#922221222207305100000000 -T12023011111189383423700414331120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111118938341219870227WTTWTB#WT2222211222222011212290065423011800000000000000000000000000000000100000000000000000000000000000000000000000000000000000 -T2202301111118938341219900426WTTZ0YB092222212222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893834120170305WT@0T@0@022222112204398200000000120150709WTT0Y@YB022222212204301200000000 -T12023011111189386124200407311120233110611300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111118938613219930104WT@TT9@0B2222212222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893861120170311WT@P0P#WP22222122209398100000000 -T12023011111189398022000410051120423110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111118939801219860702WTT@@P0@02222211222222011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118939801219970304WT@Z9Y@9Z1222212222222021212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111893980120210321WT@P@W0BZ22222112204398100000000120180713WTTB00BWT22222122204398100000000 -T12023011111189421824200400491120232110516300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111118942182219850912WTTZWWZBW2222212122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000559037500000000 -T320230111111894218120140402WTTW@0@@@22222122204398100000000 -T12023011111189428020600411641120513111116300000000005707710720000000000000000000000000000000000222222000000002229072 -T2202301111118942802219850112WT@W#T9YZ2222212222212012211190650013089900000000000000000000000000000000000000000000000000000000000000000000000000083800000000 -T2202301111118942801219810704WTTZWPWWW2222211222222022212190730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111894280120050727WTT9#0P0B22222122204308100000000 -T320230111111894280120110123WTTP9@P@022222112204303100000000120070323WT@#YW00022222122204306100000000 -T12023011111189434525900406081120233110376300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118943452219740408WT@YYBT9P1222222222221012206910006011079907000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T320230111111894345120080527WT@W9TW#@12222212204309100000000 -T12023011111189434922000407241120213110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111118943491219880122WT@@BPZTP2222222222221012216110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111894349120090711WT@TPP#YZ22222122204306100000000 -T12023011111189435220600406751120533111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111118943522219770408WT@YW@#@@2222212122212012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000631038000000000 -T2202301111118943522219810201WT@TZB#T#2222212222212022212190890013089900000000000000000000000000000000000000000000000000000000000000000000000000038000000000 -T320230111111894352120060907WT@BTTYBY22222222205310100000000 -T320230111111894352120090723WTTP9Z0T#22222112204306100000000120090409WTTTZPY9Y22222112205307100000000 -T12023011111189436222000400431120213110611300000000008005280880000000000000000000000000000000000222222000000002229072 -T2202301111118943621219710707WTTW@T#Y02212222222225012214110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111894362120100723WTT@W000P22122212204305100000000 -T12023011111189455420800404431120313110835300000000000006540370000000000000000000000000000000000222222000000002229012 -T2202301111118945541219850914WT@Z0Z@ZB1222212222221012211110560423011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111894554120170327WTTPT999@12222122204398100000000120050407WT@TB@PPY12222112204310100000000 -T12023011111189481022000406831120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118948101219800118WTT0WY0ZZ2222211222225012214110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111894810120150708WTTTTWZB#22212122204301100000000 -T12023011111189490020800410781120213110301300000000099502340390000000000000000000000000000000211122222000000832219012 -T2202301111118949001219820326WTTZBBB@B1222212222221012213110392123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111894900120120513WTTTYB#PY22222212204306100000000 -T12023011111189492920400409801120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111118949291219830302WT@#WP@TP2222212222225012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111894929120100123WT@@TT@9Y22222122204306100000000120090412WTTWW##BW22222112204307100000000 -T12023011111189493721000403301120213110557300000000001105280160000000000000000000000000000000000222222000000002229012 -T2202301111118949371220020701WT@0@0ZW92222212222221012211110174323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111894937120220512WT@9BPBT#22212122204398100000000 -T12023011111189496824200408391120213110611112770000000004590030000000000000000000000000000000000222222000000002229012 -T2202301111118949681219970902WT@TYYPTY2222212222223012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000008197 -T320230111111894968120180707WT@@#WW0P12212122204398100000000 -T12023011111189498720800414151120313110766300000000000006540040000000000000000000000000000000000222222000000002229072 -T2202301111118949871219820905WTT@#@B0T1122222222221012213110610023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111894987120160113WT@#@W#W011222222204398100000000120090912WTTPTW@@P11222212204307100000000 -T12023011111189502124700409381120233110446300000000000003760270000000000000000000000000000000000222222000000412219022 -T2202301111118950213219870918WT@9#Y@YP2122222222223012211110550513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000300 -T320230111111895021120140721WT9TT@WB#21222222207398100000131 -T12023011111189505825900402831120213110611300000000000005280300000000000000000000000000000000000222222000000002229072 -T2202301111118950581219820312WTT0P#W@Z2222212222221012211111320023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111895058120180312WTTP@BWZ#12222112204398100000000 -T12023011111189506525000414191120213110611300000000020005280090000000000000000000000000000000000222222000000002229012 -T2202301111118950651219860408WTT0#0YP@2222112222221012212110105021011800010007000000000000000000000000160000000000000000000000000000020800000000000000000315 -T320230111111895065120050921WTTYP9#9B12221112204310100000050 -T12023011111189511522000403351120313110766300000000132206540050000000000000000000000000000000000222222000000002229012 -T2202301111118951151219920421WTT0W00T@2222212222221012213120154523011800000000000000000000000000260002000000000000000000000000040000000000000000000000001362 -T320230111111895115120150423WTTPP#ZT#22222222204302100000000120080302WTTYY@@#T22222122204308100000000 -T12023011111189512622000403481120213110384300000000000803160150000000000000000000000000000000211122222000000012219012 -T2202301111118951261219930307WTTY#BB9Y2222212222221012212110164423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111895126120160523WTTZW9YW@22222112204301100000000 -T12023011111189523423500410671120113110376300000000287904170030000000000000000000000000000000000222222000000002229012 -T2202301111118952341219990305WT@TPTTW@1222222222221013212190045623011900000000000000300000000000000000000000000000000000000000010000000000000000000000000000 -T12023011111189552624200410211120233110552300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111118955263219500709WTTT0#@#P2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000501000000001043 -T320230111111895526120100705WT@B#Z@PY12212212209306100000050 -T12023011111189560920600414771120312110740300000000000800260080000000000000000000000000000000000222222000006282219012 -T2202301111118956091219710223WT@@9#TZY2221222222223012212110342621011800210000000000000000000000000000000000000000000000000000090000125500000000000000000000 -T320230111111895609120090408WT@ZY9B9912212212204308100000000120060326WT@YBW##012212212204310100000000 -T12023011111189562624200403941110113110347300000000000001070010000000000000000000000000000000000222222000000002229012 -T2202301111118956261220000324WT@090@Y#1222212222221013212190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111189566725200414061110413110897300000000000006960010000000000000000000000000000000000222222000000002229012 -T2202301111118956671219970108WT@90YYBW2222212222223012210110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111895667120180312WTTYBY#TT22222122204398100000000 -T320230111111895667120220412WT@@ZT@WY22222112204398100000000120200427WT9TTTB@B22222122204398100000000 -T12023011111189569822000408891120623111339300000000000009840040000000000000000000000000000000000222222000000252219072 -T2202301111118956981219860304WTTBT#9PB2221222222222011213111210023010900000000000000000000000000000000000000000000000000000000010000000000000000000000001383 -T2202301111118956981219650405WT@TY9PBY2222211222222021212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111895698120110113WT@Y#Z@9B22212212204305100000000120080123WTTYTZ90Z22212222204307100000000 -T320230111111895698120160523WTTBBZBB922212212204398100000000120120701WT@WB#WWT22212222204304100000000 -T12023011111189580923500410671120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118958091219860718WTTZZYTT@2222212222222012215210055523011800000000000000000000000000000000200002000000000000000000290000000000000000000000000000 -T320230111111895809120130413WTT@YB#BB22222112204303200000000 -T12023011111189581325900407561120613111395300000000000003760180000000000000000000000000000000000222222000006332219012 -T2202301111118958131219890305WTTT@W@@02122222222221012210110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111895813120080305WTTT9@YY#21222212204308100000269 -T320230111111895813120140424WT@#YP0Z@21222222204302100000269120100921WT@PPY#T921222212204307100000000 -T320230111111895813120220307WTT09#ZW021222222204398100000000120160109WTTT9PWT#21222212204301100000000 -T12023011111189585222000405841120212110598300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111118958521219800401WT@Z9Y#9T2222212222221012212112000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111895852120050123WT@@@Y99Y12222122204310100000000 -T12023011111189592922000407411110413110827300000000000005220010000000000000000000000000000000000222222000000002229012 -T2202301111118959291219920726WTT#Z#YPT2222212222222012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111895929120150309WT@#Y@@0@22222112204301100000000 -T320230111111895929120200102WTTP#B90T22222112204398100000000120170208WT@90Z#9022222112204398100000000 -T12023011111189615122000405321120212110611300000000000005280550000000000000000000000000000000000222222000000002229012 -T2202301111118961511219910123WT@9YYZB02221212222221012216120580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111896151120120326WTTZY9YZP22212122204302100000000 -T12023011111189617221700403821120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111118961723219610112WTTPWY@P@2222212122225012212120015913069900000000000000000000000000000000000000000000000000000000000000000000001362000000000000 -T320230111111896172120220905WTT@#WZB#22222112206398100000000 -T12023011111189635322100401271120332110740300000000000005280320000000000000000000000000000000000222222000000002229022 -T2202301111118963533219600121WTTZTTP@92122212122214012212110580213069900000000000000000000000000000000000000000000000000000000000000000000000406052800000000 -T320230111111896353120080323WT@9TYPZ022222122206307100000000120050312WT@TP#YTB22222112206310100000000 -T12023011111189645420800405141120213110611300000000000004030320000000000000000000000000000000000222222000001252219012 -T2202301111118964541219830707WT@W90BZ02222212222223012212110332721011808000000000000000000000000000000000000000000000000000000310000050000000000000000004704 -T320230111111896454120090201WT@W@T#@022222122204307100000000 -T12023011111189653722000414461120313110820105000000000003030290000000000000000000000000000000000222222000003512219012 -T2202301111118965371219880901WT@@PW@ZW2222212222225012216220461421011726000000000000000000000000000000000000000000000000000000000000070100000000000000000000 -T320230111111896537120220324WTTYPT9B#22222112204398100000000120170118WTTZ9TZ#W12222122204398100000000 -T12023011111189660020200409311110423110962300000000060602940010000000000000000000000000000000000222222000004772219012 -T2202301111118966001219820723WTTPY9WTZ1222211222222011211190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118966001219860726WTT99ZZTZ1222212222222021212190025821011821000000000000000000000000000000000000000000000000000000000000095200000000000000000000 -T320230111111896600120120701WTTWZ0Z9Z12222122204303100000000120100713WT@BBPBTY12222122204305100000000 -T12023011111189660625900402721120413120000117600000005007710040000000000000000000000000000000000222222000000002229012 -T2202301111118966061219990527WTTPBYB9T1222222222223012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111896606120170127WT@ZBYY9B12222212204398100000000 -T320230111111896606120220123WT@WP#PW#12222212204398100000000120180323WTT#0WZYW12222212204398100000000 -T12023011111189668824100413561120433110835101650000000006540200000000000000000000000000000000000222222000000002229022 -T2202301111118966882219770901WT@YYBT9P1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111896688120070318WTT99TPZT12222112204308100000000 -T320230111111896688120160218WT@#T@#0Z12222112204398100000000120090407WT@BB9Y##12222112204307100000000 -T12023011111189672524200414851120313110777300000000023406540040000000000070003000000000000000000222222000000002229012 -T2202301111118967251219920714WT@Y00Y9P2212222222225012212110204023011400000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T320230111111896725120190927WTT@YB0ZT12221222204398100000471120160204WT@ZYB#@022221212204398100000000 -T12023011111189682820600414871120533110611300000000030005280020000000000000000000000000000000000222222000000002229022 -T2202301111118968282219860904WT@YYBT9P1222221222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118968282219940404WT@YYBT9P1222222222221102209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111896828120060905WT@@W0YYY12222222204310100000000 -T320230111111896828120220409WTT#YB#Z012222212204398100000000420150901WT@YYBT9P12222212204302900000000 -T12023011111189684122000411281120612111339133540000000007710970000000000000000000000000000000000222222000000002229072 -T2202301111118968411219900112WT@BTYZ#P2122222222221012212121000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111896841420070309WT@#BTY@B12221222104308109140000 -T320230111111896841120160102WTT#0PZW922212212204398100000000420090309WTTTP@YW@21222212104306109140000 -T320230111111896841120220423WT@W9@0Z@21222212204398100000000120180912WT@@T009@21222212204398100000000 -T12023011111189687724200404281120313110779300000000009000720070000000000000000000000000000000000222222000005822219012 -T2202301111118968771219890712WT@9TW9PP2222212222223012216110085221011817000000000000000000000000000000000000000000000000000000000000116300000000000000000000 -T320230111111896877120210401WTTPYB#Z@22222122204398100000000120150307WT@0Y9Y9T22222122204398100000000 -T12023011111189695125600400661120413111034126090000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111118969511219990727WTT#PWTP92222212222221012211110035723011800000000000000000000000000000000000000210001000000000000000000000000000000000000000000 -T320230111111896951120140721WTTP99ZY022222112204301100000000 -T320230111111896951120210907WT@B@ZY#W22222222204398100000000120190102WT@TW#WBW12222112204398100000000 -T12023011111189709720600411031120323110791300000000400006540020000000000000000000000000000000000222222000000002229012 -T2202301111118970971219900927WTTP@0BZB2222212222222011213290035721011936000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118970971219840321WTTP009BB2222211222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897097120120921WTTP9BB9022222112204303200000000 -T12023011111189726123500404532120313210766300000000000006540040000000000000000000000000000000000222222000000002229032 -T2202301111118972611219970713WT@9TPY9W1222212222221012205210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897261120180913WT@9TPY9W22222112204398200000000120140126WT@9TPY9W12222112204303200000000 -T12023011111189726925000414191120623111434300000000000010090440000000000000000000000000000000000222222000000002229072 -T2202301111118972691219890709WTT#WZYPY2222212222222011212110800023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118972691219810518WTTYBYZ@@2222211222222021212190640023011800000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111897269120130312WT@0#B@W@22222122204302100000000120120507WTT#WPW@W22222222204304100000000 -T320230111111897269120190105WT@BWY#Y022222112204398100000000120140318WTT#@@PBB22222112204301100000000 -T12023011111189728720800411931120333110740300000000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111118972873219580318WTTZYZZYY2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001064000000000049 -T320230111111897287120080921WT@9PTT@Z22222122206308100000000120070513WT@0P@B0B22222122206309100000000 -T12023011111189732822600405051120323110786300000000000006540270000000000000000000000000000000000222222000000002229012 -T2202301111118973281219910727WT@T9W9#B2222212222221011211190174323011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111118973281219850318WT@Z0ZP@W2222211222221011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897328120210923WTT0T#9T922222112204398100000000 -T12023011111189734425200407301120313110740300000000400006540340000000000035001000000000000000000222222000000002229012 -T2202301111118973441219830902WTTZTB9P92222212222221012216110402021011700170000000000080000000000000000000000000000000000000000000000100400000000000000001727 -T320230111111897344120170412WT@9PT@W012222122204398100000000120150308WT@T#0BBT12222122204301100000000 -T12023011111189746320800411931120412110939300000000000007710330000000000000000000000000000000000222222000000002229072 -T2202301111118974631219880522WT@WTZT@B2221222222221012211110950023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897463120070901WT@TWWZ9Y22212212204309100000000 -T320230111111897463120090313WT@@Y##YW22212212204306100000000120080718WT@BY9Z@Y22212212204308100000000 -T12023011111189762920600400802120323210835300000000002006540270000000000000000000000000000000000222222000000002229032 -T2202301111118976291219690423WTT00#PZ@2222121222222011208990283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118976291219760424WT@#90B0Y2222122222222021209990273323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897629120050913WTT#ZB0@T22221212204311900000000 -T12023011111189764124700413761120213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111118976411219830323WTTBTWTZT2222212222222012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897641120110327WT@9P9Z9022222112204305200000000 -T12023011111189767123500407161120523111171300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111118976711219910423WT@P@#0902222212222222011214210114923011900000000000000200000000000000000100001000000000000000000050000000000000000000000000000 -T2202301111118976711219860909WT@@T9#P92222221222221021211290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897671120140301WT@PYZ@Y022222122204301200000000 -T320230111111897671120200127WTTWYTW0#22222122204398200000000120180927WTTZ@P#9Z22222122204398200000000 -T12023011111189776324200411401120323110722300000000000006540520000000000000000000000000000000261222221000000002229012 -T2202301111118977631219830911WTTBT9#9T2222211222222011216190204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118977631219820423WTT9P##Z01222212222222021212110530723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897763120090322WT@@ZB###12222122205306100000000 -T12023011111189777023700414331120233110376300000000004004170040000000000000000000000000000000000222222000000002229022 -T2202301111118977702219790727WT@YYBT9P1222212222224012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897770120080222WTTZ#W#WY12222112204308100000000 -T12023011111189782122700408491110213110516300000000000002040010000000000035001000000000000000000222222000000002229012 -T2202301111118978211219980426WT@00Z#0#2222211222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111897821120200109WT@P9Y0T022222122204398100000000 -T12023011111189782323500407161120233110536300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111118978232219990218WT@9TZTBZ2122222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111897823120210401WT@WYPTY921222222204398100000000 -T12023011111189800023500410671120233110478300000000000002130210000000000000000000000000000000000222222000002042219022 -T2202301111118980003219850713WT@W@YZT92222212222223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898000120070501WT@W0B9WZ22222112207309100000222 -T12023011111189801920800414151120213110611300000000000005280640000000000000000000000000000000000222222000000002229072 -T2202301111118980191219710401WTT0#T#PZ2222212222225012211110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898019120070721WT@9#@0W@22222122204307100000000 -T12023011111189807324700413761120623111395300000000000010090030000000000000000000000000000000000222222000000002229012 -T2202301111118980731219820713WT@YB9WP92222211222222011213190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118980731219770712WTTBW9WZ#2222212222222021214190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898073120080204WT@BPZB#Y22222122204308100000000120050708WT@09WT0022222122204310100000000 -T320230111111898073120140321WT@TZTBWB22222112204301100000000120100226WTTB#B0WB22222112204306100000000 -T12023011111189812121000403201120213110599300000000000003160180000000000000000000000000000000211122222000000012219012 -T2202301111118981211219900405WTTZ9YZZ@2122222222225012212110184223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898121120210724WT@9TPY9W22222112204398100000000 -T12023011111189830022000413682120213210598300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111118983001219830323WT@9TPY9W1222222222221012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898300120100518WT@9TPY9W12222222204305200000000 -T12023011111189834522000414501120313110766300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111118983451219920702WTT9PYY9B2222212222221012212110204023010900000000000000000000000000000000000000000000000000000000020000000000000000000000001595 -T320230111111898345120220218WT@T0Z@YZ21222212204398100000000120210501WTTBZP9YY22222112204398100000000 -T12023011111189834624200414721120213110598116940000001305280280000000000000000000000000000000000222222000000002229012 -T2202301111118983461219800514WTTTTB0P#1222212222221012212110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898346120140414WTTZ0WWPZ12222122204302100000000 -T12023011111189838824200402501120313110855300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111118983881219910512WTTBZB#WY2212222222221012212110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898388120220918WT@Y0#YY#22112112204398100000000120200321WT@WYP#ZB22112112204398100000000 -T12023011111189843320600414871120333110835300000000000005280540000000000000000000000000000000000222222000000002229022 -T2202301111118984333219720512WT@BPZBYY2222212222225012215110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898433120150422WTTZZ@9WT22222122206302100000000120120112WT@9B09#T22222122206304100000000 -T12023011111189849122000407411120423110987300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111118984911219920112WT@BZ@WB#2222212222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000001000 -T2202301111118984911219920127WT@ZPW#9#2222211222222021215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898491120210313WT@Y#P#TZ22222112204398200000000120170911WTTZY@0B922222112204398200000000 -T12023011111189850222000406952120213210598300000000000005280030000000000000000000000000000000000222222000000002229032 -T2202301111118985021219700911WTT@P@BPB2222222222224012212910045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898502120140109WTTBTPZ9922222212204302900000000 -T12023011111189855624200414351120313110835300000000000006540420000000000000000000000000000000000222222000000002229072 -T2202301111118985561219880705WTT0WTTZB2221222222221012212110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898556120130707WTTT90YB@22212222204302100000000120090727WT@YP9P@@22212222204306100000000 -T12023011111189857024200404891120212110548300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111118985701219760326WT@@@B#PW1222222222221012213211030023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898570120070412WTTPYW0PW12222212204309100000050 -T12023011111189858620800410782120622211339300000000000010090840000000000000000000000000000000000222222000000002229062 -T2202301111118985861219840713WT@BZZB0Z2221222222223011216110990023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118985861219820326WTTWZ#PZB2221221222223011212190293123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898586120140123WTTZ9YW9Z22212122204301100000000120130202WT@ZT0TBY22212122204302100000000 -T320230111111898586120220927WT@09PB@@22212212204398100000000120190713WTT@WBTTY22222212204398100000000 -T12023011111189862222000407792120323210835300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111118986221219970727WT@9TPY9W1222222222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118986221219900723WT@9TPY9W1222211222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898622120210921WT@9TPY9W12222112204398200000000 -T12023011111189862324700406701120212110611300000000000005280440000000000000000000000000000000000222222000000002229072 -T2202301111118986231219890918WT@YTTZT#2222212222221012212111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898623120130707WTTT0@ZY022222112204302100000000 -T12023011111189868124200404701120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111118986811219780713WTTBB@9ZP2222212222225012216110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898681120060326WT@W#W9Y922222112204309100000000 -T12023011111189874323800413801120333110376300000000004204170020000000000000000000000000000000000222222000000002229022 -T2202301111118987432219880118WT@YYBT9P1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898743120180318WT@9PWYWT12222222204398100000000420110712WT@YYBT9P12222222204304900000000 -T12023011111189879922700408351120212110557300000000020005280490000000000000000000000000000000000222222000000002229072 -T2202301111118987991219780311WTT0PTW@P2222212222223012213110880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898799120060401WT@ZB90TT12222222204311100000000 -T12023011111189891721000411361120212110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111118989171219970123WT@#0Z9PY2122222222221012211110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898917120180104WTTB#@0B021222222204398100000000 -T12023011111189896524700411201120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111118989653219650402WTTYWZ0BP2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000519800000000000000000000 -T320230111111898965120090504WT@T9BZP@22222112206306100000050120070308WT@#Z0YBT22222122206307100000050 -T12023011111189896925900406081120333110598300000000300005280350000000000000000000000000000000000222222000000002229022 -T2202301111118989692219810705WT@YYBT9P1222212222223012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111898969120110921WTTBY9W9012222112204306100000000120070321WT@ZB@TZ012222122204308100000000 -T12023011111189915520800409061120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111118991553219610127WT@W@0P002222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001548000000002151 -T320230111111899155120090324WTT@BWZ0922222112206306100000000 -T12023011111189918925000409431110333110306300000000000003910010000000000000000000000000000000000222222000000002229021 -T2202301111118991893219700524WTTT90TYP2222212222225012213120035711069901000000000000000000000000000000000000000000000000000000000000202300000000000000000000 -T320230111111899189120220727WT@9TPY9W22222122207398100000000120080504WTTBPWB@P22222122207309100000615 -T12023011111189923024700408091120312110740300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111118992301219910314WTTTP9#YZ2221222222223012212110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899230120200714WT@#0WZYW22212222204398100000110120170318WT@@WZ0@021212212204398100000110 -T12023011111189926420600401981120233120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111118992643219850524WTTWP0BPZ2222222222225012216110134713069900000000000000000000000000000000000000000000000000000000000000430000000000000000000000 -T320230111111899264120140726WTT0#Y#0922212212207302100000000 -T12023011111189928822000407411120323110740300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111118992881219950712WTTZ9BW0T2212222222223011212210035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118992881219810921WT@W#ZBPY2212221222222021210290035721011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899288120170304WT@BYZPY922122212204398200000000 -T12023011111189934523700414331120312110784300000000000006540780000000000000000000000000000000000222222000000002229072 -T2202301111118993451219980904WT@W0PPZ91222212222221012216110790023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899345120170923WT@0@BZP912222122204398100000000120150723WTT0TBW9#12222122204301100000000 -T12023011111189935824200404051120213110611300000000000605280350000000000000000000000000000000000222222000000002229012 -T2202301111118993581219950714WTT#9Y0Z02222222222221012210110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899358120180418WT@BBYPP922222122204398100000000 -T12023011111189937224200404421120523111116300000000020008880090000000000000000000000000000000000222222000000002229042 -T2202301111118993721219850404WTT#W0#ZP2222212222222011213290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118993721219820102WT@Z9WY#W2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899372120060212WT@9TPY9W22222122204309200000000 -T320230111111899372120190914WT@ZT9P9Z22222112204398200000000120110207WT@P0ZWWW22222112204304200000000 -T12023011111189947622000400461120213110598300000000006005280030000000000000000000000000000000000222222000000002229012 -T2202301111118994761219880123WTTW@0YW#2222212222221012212110045623010900000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111111899476120150413WT@#9@TB922222122204398100000000 -T12023011111189948024200409091120333110611300000000000005280820000000000000000000000000000000000222222000000002229022 -T2202301111118994802219820712WT@YYBT9P2222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899480120100913WT@#T0#W912222222204306100000000120070418WT@00ZP#B12222222204309100000000 -T12023011111189965325900402631120233110376300000000000004170780000000000000000000000000000000000222222000000002229022 -T2202301111118996532219920202WT@YYBT9P1222221222225012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000752 -T320230111111899653120110113WT@0Y0WWP12222212204305100000000 -T12023011111189967723900408801120333120000300000000000005280980000000000000000000000000000000000222222000000002229022 -T2202301111118996773219650107WTT@WB9Z@2222212222222012210110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899677120110711WTTYB9BW921222222206304100000000120110711WTTB0#WY#21222222206303100000000 -T12023011111189973625100407671120333120000300000000000005280540000000000000000000000000000000000222222000000002229022 -T2202301111118997363219630423WTTTBY#0W2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899736120150313WTT0PZ0W#22222112206398100000000120130421WTTBPTYBW22222122206303100000000 -T12023011111189976725900402721120233110516300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111118997672219910927WT@TYWWPT1222222222213012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111899767120170227WT@BZT0TP12222222204398100000000 -T12023011111189977725900406841120733110611300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111118997772219890421WT@YYBT9P1222222222221012203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118997772219880908WT@YYBT9P1222221222221022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899777420080908WT@YYBT9P12222212204308900000000 -T320230111111899777120200311WTTTWBWW@12222122204398100000000120160718WT@ZYBWYZ12222222204398100000000 -T320230111111899777420130404WT@YYBT9P12222222204303900000000420110726WT@YYBT9P12222212204306900000000 -T12023011111189980022900405641120433110893300000000000006540260000000000000000000000000000000000222222000000002229022 -T2202301111118998003219590404WTTYBWTBP1222221122222012209110006013069900000000000000000000000000000000000000000000000000000000000000000000001017000000000000 -T320230111111899800120060923WTTPBPZWY12222112206309100000000 -T320230111111899800120140922WTTB0TT9Z12222222206301100000000120100901WTTP@WT0@12222122206307100000000 -T12023011111189983424200403942120723211480300000000126811650100000000000000000000000000000000000222222000000002229032 -T2202301111118998341219790224WT@9TPY9W2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118998341219800308WTTP0YZBB2222212222222021212290352523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899834120070407WT@9TPY9W22222112204310200000000 -T320230111111899834120090523WTTZPWZ0#22222112204308200000000120080514WT@9TPY9W22222112204309200000000 -T320230111111899834120200227WTT9W@ZYY22222112204398200000000120170727WT@9TPY9W22222122204398200000000 -T12023011111189990525000414192110423211034300000000000002980010000000000000000000000000000000000222222000000002229032 -T2202301111118999051219850908WT@9TPY9W1222221222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111118999051219910401WT@9TPY9W1222222222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111899905120190123WT@9TPY9W12222212204398200000000120130418WT@9TPY9W12222212204304200000000 -T12023011111189994920600414771110213110631300000000000001020010000000000000000000000000000000000222222000000002229012 -T2202301111118999491220010512WTT0PWBZB2122222222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000667 -T320230111111899949120200705WTTY#ZP#P21222212204398100000000 -T12023011111190003124100402401120213110598300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111119000311219770213WT@B@WZTY2222212222225012214110293123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111900031120080127WTT0@B0P#22222112204307100000000 -T12023011111190029123500407611120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119002913219650123WT@P9#9Y92222212222222012210110085213069900000000000000000000000000000000000000000000000000000000000000101100000000000000000000 -T320230111111900291120050102WTTZPWBBP12222122206311100000000 -T12023011111190037524700401281120233120000300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111119003753219630307WT@@BWZW02222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000150500000000000000000000 -T320230111111900375120120307WTTW0YZ9Y22222122206303100000000 -T12023011111190050720600402131110512110939300000000000005760010000000000000000000000000000000000222222000000002229072 -T2202301111119005071219850927WTT9Y#ZWW2222212222223012211110640023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000060 -T320230111111900507120070927WTTTZ9ZBT22222112204308100000000120050701WT@W9T@ZY22222112204309100000000 -T320230111111900507120220307WT@#0@0B022222112204398100000000120120127WTTW9#9ZY22222112204303100000050 -T12023011111190054720800410781120232110516300000000001504170190000000000000000000000000000000000222222000000002229022 -T2202301111119005471219870107WT@@Y0PZY2222212222221012210110690023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111900547520090707WT@ZYP09W22222112104307107300000 -T12023011111190054924200407431120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119005492219790409WTT9B9@Z#2221222122211012212120006011109908000000000000000000000000000000000000000000000000000000000000059800000758007900000000 -T320230111111900549120160521WTTP@YYP022212212204398100000000120100127WTT@B@Z9T22212222204306100000100 -T12023011111190059024500414001120423111032300000000000007710170000000000000000000000000000000000222222000000002229012 -T2202301111119005901219890418WT@BPZ9PP2222212222221011211110520823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119005901219890324WTTZ9#TTT1222211222225011212190164421011821000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111900590120150112WT@#BYBW912222112204301100000000120110407WT@T9P9YB12222122204306100000000 -T12023011111190077224200403941120232110516300000000000004170760000000000000000000000000000000000222222000000002229022 -T2202301111119007722219840414WTT9ZBP#02222212222211012211110253513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111900772120160923WTT@TBYY@22222122204398100000000 -T12023011111190083222000408341120212110611300000000000005280590000000000070009000000000000000000222222000000002229012 -T2202301111119008321219830707WTTZ#9@T92221221222225012212110590123011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111900832120060127WT@TT90YB12222112204310100000050 -T12023011111190088222000404841120213110610300000000000002900420000000000000000000000000000000211122222002600012219012 -T2202301111119008821219950512WT@YZ0#0P2222212222221012209110481223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111900882120150309WT@9YTZW922222112204398100000000 -T12023011111190092124200407311110233110306300000000000001400010000000000000000000000000000000000222222000000002229021 -T2202301111119009213219920407WT@YTB@P@2222212222223012212120382211069938000000000000000000000000000000000000000000000000000000000000327600000000000000000000 -T320230111111900921120170913WT@99@YWB12222112207398100000250 -T12023011111190096722000409411120732111480300000000000010090380000000000000000000000000000000000222222000000002229022 -T2202301111119009672219800423WT@9BZ@PP2221222222215012208110114913089900000000000000000000000000000000000000000000000000000000000000000000000000091400001500 -T320230111111900967120100421WT@#99@0B22212212204306100000016120080702WTTTZPTBY22222212204308100000016 -T320230111111900967120130313WT@@WBTPT22212212204302100000016120120404WT@W00PW@22212222204304100000016 -T320230111111900967120190726WT@TZYWP@22212212204398100000016120150921WT@0TBPT022212212204301100000016 -T12023011111190108620800404431120523111124300000000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111119010861219850123WT@BTZ#ZB2222212222222011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119010861219840109WT@0B@PP#2222211222222021212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111901086120060902WT@90T#Z#22222122204308100000000 -T320230111111901086120090923WTTW#B0#W22222122204305100000000120080408WTT@@WTWZ22222112204306100000000 -T12023011111190112020800409831120413110939300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111119011201219970418WT@0ZWB@@2122222222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111901120120150701WT@#9BY0P11222212204398100000000 -T320230111111901120120210507WTTBTZ09B21222222204398100000000120170121WT@TZYY9Y11222222204398100000000 -T12023011111190118222500410151120313110826300000000000006540720000000000000000000000000000000000222222000000002229072 -T2202301111119011821219850926WTT9Z#0@Y2222212222225012213111130023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111901182120070923WT@0#PZ@#22222112204308100000000120050501WTTW9BBP#22222122204309100000000 -T12023011111190126620600400801120432110939300000000000005280650000000000000000000000000000000000222222000000002229022 -T2202301111119012662219780727WT@P#PYW#2222212222215012216111150013089900000000000000000000000000000000000000000000000000000000000000000000000000040200000000 -T2202301111119012662219740401WTTT@ZY0Y1222211122211102214190075313109900000000000000000000000000000000000000000000000000000000000000000000000586040200000000 -T320230111111901266120090724WTTPBPP0W12222112204308100000000120080923WTTY0@BYY12222122204309100000000 -T12023011111190132822000408891120422111034300000000197607710100000000000000000000000000000000000222222000000002229012 -T2202301111119013281219870901WTT9TW9#92222221222222011216290114923011800000000000000000000000000130000050001000000000000000000000000000000000000000000000000 -T2202301111119013281219870523WTTTWZ0YY2222212222222021215290114923011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T320230111111901328120180723WT@@PYB9W22222112204398200000000120150723WTT#@9YY@22222112204302200000000 -T12023011111190134825600406521120212110610300000000000105010300000000000000000000000000000000000222222002600012219012 -T2202301111119013481219950418WT@@@B0@B2222212222221012211110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111901348120180923WTT#Z@P@@22212212204398100000000 -T12023011111190153424500405781120512111034300000000000007710030000000000000000000000000000000000222222000000002229012 -T2202301111119015341219930113WTT@WBYYZ2222212222222012212110045623011900000000000000220000000000000000000000080001000000000000010000000000000000000000000000 -T2202301111119015342219890512WT@YYBT9P2222221222222102201990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111901534120090504WT@0WY9P@12222122204307100000000 -T320230111111901534120160912WT@WBY@Y@12222122204398100000000120130213WT@90T9BZ22222112204303100000000 -T12023011111190174922700408351120213120000300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111119017491219740901WTTYY0@Y02221221222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111901749120140727WTT#P@9BP22212222204398100000000 -T12023011111190177320600402141120413110939300000000011707710200000000000000000000000000000000000222222000000002229012 -T2202301111119017731219870918WT@BZ#P092222122222221012212910382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111901773120060426WTT0B09#B22221222204309100000000 -T320230111111901773120210327WTTZPW#@022221212204398100000000120160209WT9TTTZ#P22221222204398100000000 -T12023011111190179420600400871120233110493300000000000000970680000000000000000000000000000000000222222000003202219022 -T2202301111119017942219740401WTT0W9@T02222211222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111901794120140707WT@WPBTWZ22222112204301100000320 -T12023011111190179724200414721120312110766300000000000006540330000000000000000000000000000000000222222000000002229072 -T2202301111119017971219910418WTT#0#PW#2222212222223012211110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111901797120210518WT@9PT9@Y22222122204398100000000120110226WT@YTPPYP22222212204302100000000 -T12023011111190189820600414871110333110675300000000000002210010000000000000000000000000000000000222222000000002229021 -T2202301111119018983219810123WTTB9TY#@2222212222222012212110253513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000080 -T320230111111901898120180304WT@ZZY9P021222212206398100000000120170113WTTY#B9PT21222222206398100000000 -T12023011111190192523900406231110213110611300000000000003230300000000000000000000000000000000000222222000002052219012 -T2202301111119019251219990413WTT0P#WYP2222212222221012211110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111901925120200727WT@0YB@Y912222112204398100000000 -T12023011111190202825900405251120213110516300000000000002850230000000000000000000000000000000000222222000001322219012 -T2202301111119020281219940426WTTPPZTYY1222212222221012213110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000131 -T320230111111902028520210426WTTY@TZYZ12222112104398109140381 -T12023011111190211222000410051120213110611300000000000003160320000000000000000000000000000000211122222000000012219012 -T2202301111119021121219980412WTT9PB99Z2221222222221012212110332723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111902112120180108WT@TTY@#022212222204398100000000 -T12023011111190216522000410052120423211034300000000000007710100000000000000000000000000000000000222222000000002229032 -T2202301111119021651219930523WT@@TB@Z#2222211222222011214290065421011940000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111119021651219950126WT@WZY@9W2222212222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111902165120210414WTT9YZW@W22222112204398200000000120190223WT@9B0Y9P22222112204398200000000 -T12023011111190217920600414831120233110611112180000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119021793219760914WTTY#BTZW2122222222225012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000208 -T320230111111902179120200923WTTBB9@WT21222222206398100000000 -T12023011111190225921700406141120433110929300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119022592219830312WTTBWPTWB2222212222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111902259120060211WTT@BPP0#22222122204308100000025 -T320230111111902259420090907WTTT9P0@P22222112104305109140000420090907WTTZBP9B@22222112104303109140000 -T12023011111190227920900411721110412111015300000000000002700130000000000000000000000000000000000222222000002512219012 -T2202301111119022791219890402WT@BZ0@P02222212222221012213110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111902279120080421WTTZ@Z0T022222112204307100000000 -T320230111111902279120150305WT@0#PTB@22222112204398100000125120110513WT@@9PBWZ22222122204305100000000 -T12023011111190245124700408301120332110376300000000078704170800000000000000000000000000000000000222222000000002229022 -T2202301111119024512219700226WT@YYBT9P2222222222221012208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119024512219650708WT@YYBT9P1222221222221102207990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111902451120060308WTTP##PWP12222222204309100000000 -T12023011111190249320800414651120812111691300000000000012890990000000000000000000000000000000000222222000000002229012 -T2202301111119024931219780713WTT9TB#TW1222222222225012209220421823010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111902493120050408WT@@9WY#@12222222204311100000000 -T320230111111902493120110123WT@@999#912222212204304100000000120070304WTT0W9TY@12222222204308100000000 -T320230111111902493120150727WT@PY9#Y#12222212204301100000000120140407WTTW0ZT#@12222222204302100000000 -T320230111111902493120190427WT@WY#Z@012222222204398100000000120170711WT@Z0Z90012222222204398100000000 -T12023011111190258324900404261120432110839107550000000006540040000000000000000000000000000000000222222000000002229022 -T2202301111119025833219970527WTT@T@YPY2222212222222012212110114911069932000000000000000000000000000000000000000000000000000000000000327000000000000000000000 -T320230111111902583120160723WTTT@PWYW22222212207398100000000 -T320230111111902583120220912WT@##@0TW22222122207398100000000120190308WTTBYTZB912222112207398100000000 -T12023011111190266322000402371120312110803115960000000003270840000000000000000000000000000000261122222006500012219072 -T2202301111119026631219970923WT@Z0B@002221222222221012209110840023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111902663120190727WTTBTP@#P22212222204398100000008120160723WT@W@BBPY22212212204398100000008 -T12023011111190270322000413731120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119027032219870527WT@#Z9WT#2222122222211012210110154513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111902703120110407WT@YWW#@022221212204304100000000 -T12023011111190272524700408361120233120000300000000000004170820000000000000000000000000000000000222222000000002229022 -T2202301111119027253219790923WTTBP9YT92222212222222012210110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000369 -T320230111111902725120130413WTTW#W#ZW22222122206302100000000 -T12023011111190274220600400801120233120000300000000030004170320000000000000000000000000000000000222222000000002229022 -T2202301111119027423219700204WTTT0@TWB2222212222221012214110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111902742120060309WTTYZP#T#22222122207308100000000 -T12023011111190274420600400871120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111119027443219770412WTTBWTWYT2221222222223012212110372311069919000000000000000000000000000000000000000000000000000000000000271800000000000000000000 -T320230111111902744120130913WTTBT00T#22212222206303100000000 -T12023011111190303121100402261120233110516300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111119030315219460127WT@W0WY#T2222212122225012212110006013109900000000000000000000000000000000000000000000000000000000000000000000001005000000000000 -T320230111111903031120050902WT@#@Y9T912222112209311100000000 -T12023011111190303725600411521120233120000104870000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111119030373219730218WTT9@@#@P2222212222222012213110006011069940000000000000000000000000000000000000000000000000000000000000320600000000000000000000 -T320230111111903037120160123WT@#Z99YZ21222222206398100000000 -T12023011111190306124200402981120413110704300000000000007710490000000000000000000000000000000000222222000000002229012 -T2202301111119030611220010414WT@Y0#Z0P1222222222221012211110491121011818000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903061120180112WTT00P9YT12222212204398100000000 -T320230111111903061120220927WT@WYPBBY12222212204398100000000120200122WTTY0W9P912222212204398100000000 -T12023011111190323622000403531120433110741300000000004005210040000000000000000000000000000000000222222000001332219022 -T2202301111119032362219860104WT@YYBT9P1222222222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000250 -T320230111111903236120040527WT@#9WPZW12222222204311100000000 -T320230111111903236120080711WTTPTBY0@12222222204307100000000120060704WT@0PPYPP12222212204309100000000 -T12023011111190325524200414021120413111034113820000000007710270000000000000000000000000000000000222222000000002229012 -T2202301111119032551219960912WTTZ#T90T2222212222221012212110233723011800000000000000000000000000000000070000000000000000000000000000000000000000000000000000 -T320230111111903255120170127WT@W0YTYY22222112204398100000000 -T320230111111903255120200318WTT9ZZ@YZ22222112204398100000000120180326WT@#9PY@#22222122204398100000000 -T12023011111190326222000408341120232110536300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119032622219700105WT@B@W@@W2122222222215012212110124813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111903262120100727WT@9#9P#B21222222204305100000000 -T12023011111190329223500402711110523111174300000000030006380010000000000000000000000000000000000222222000002502219012 -T2202301111119032921219750923WT@Y09#TY2222211222222011215290025821011816000000000000000000000000000000000000000000000000000000000000100000000000000000000000 -T2202301111119032921219890209WT@B#@9P@2222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903292120120723WTTTP#T0Z22222112204304200000000 -T320230111111903292120170427WT@@PBW0W22222112204398200000000120140927WTTP9YZ@@22222122204301200000000 -T12023011111190331820600404121120412110962300000000000004160750000000000000000000000000000000277122222000000782219072 -T2202301111119033181219890221WT@9Y00B#1222222222221012212110760021011805000000000000000000000000000000000000000000000000000000000000030700000000000000000000 -T320230111111903318120170418WTTYW0@TZ11222212204398100000000 -T320230111111903318120190414WT@T@9@#011222212204398100000000120180421WT@WT9@0Z11222212204398100000000 -T12023011111190335722000413732120323210766300000000005906540070000000000000000000000000000000000222222000000002229032 -T2202301111119033571219930702WT@#PPP#Y2222221222222011212290085223011800000000000000000000000000190000000000000000000000000000000000000000000000000000000000 -T2202301111119033571219950912WTTY@BZBZ2222212222222021212290085223011800000000000000000000000000190000000000000000000000000000000000000000000000000000000000 -T320230111111903357120210401WT@P#W#PY22222122204398200000000 -T12023011111190346420600402141120213110598300000000000005280710000000000000000000000000000000000222222000000002229072 -T2202301111119034641219910323WT@0#YTY02222212222221012209110920023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903464120180918WTTW##@9T22222122204398100000000 -T12023011111190347224200400961120423111034300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111119034721219790527WT@0T9TZ02222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119034721219930712WTT9PW9T@2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903472120180927WTT#TP9P@22222112204398200000000120160424WT@ZWBYZ#22222122204301200000000 -T12023011111190352722500410151120513111116300000000092402660990000000000000000000000000000000000222222000002622219012 -T2202301111119035271219870904WTT@TWB@92122221222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111903527120170704WTT0#PYB921222222204398100000149420160718WTT9P0BP@21222212104398109140149 -T320230111111903527420150121WT@ZT#00#21222222104301108470149420140307WT@PZ0WPW21222212104301109140149 -T12023011111190358022000409211120313110786115290000000306540020000000000000000000000000000000000222222000000002229012 -T2202301111119035801219870201WT@9TPY9W1222212222222012212220035723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903580120210118WTTZWY@#Y12222122204398100000000120090118WT@9TPY9W12222112204307200000000 -T12023011111190362522000407231120313110740300000000000000010080000000000000000000000000000000000222222000000002229012 -T2202301111119036251219670121WTTWZPTB92221222222223012212120085211011800200000000000000000000000000000020000000000000000000000000000160700000000000000000000 -T320230111111903625120080501WT@9##@B022212222204307100000000120050327WTT@PYBWW22212212204308100000000 -T12023011111190365520600400871120213110611105860000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111119036551219950721WTTTWPTP92222211222223012216110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903655120180504WT@YBTPT#22222122204398100000000 -T12023011111190369622000407241120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119036963219590907WT@00@9YP2222122222222012298120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903696120200408WTTP#@TPB22221222206398100000000 -T12023011111190376825800402241120333120000121150000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111119037683219820901WTTPP@W0T2122222222221012214110006013069900000000000000000000000000000000000000000000000000000000000000470700000000000000000000 -T320230111111903768420160314WT@ZZY@BZ11222222204398100000672120090323WT@#9BBB921222222209305100000000 -T12023011111190381125600404041110333120000300000000000002550010000000000000000000000000000000000222222000000002229021 -T2202301111119038113220020204WTT#TWPW@2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T320230111111903811420180718WT@YYBT9P22122122204398100000000120090418WT@@YP#TZ22212112208307100000000 -T12023011111190382522000412971110233110611300000000000002820010000000000000000000000000000000000222222000000002229021 -T2202301111119038253219670226WT@BTZPW@2221222222221012212110164413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903825120140418WTTYP#0#922212212206302100000000 -T12023011111190389525600414951120313110760300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111119038951219860707WT@#WWZPY1222222222223012213110194123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111903895120220318WT@T@PZ0912221222204398100000000120070527WTT9Y0P9@12221222204309100000423 -T12023011111190390422000411131110213110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119039041219940114WT@PTB0B#2221221222221012210110382223011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111903904120150113WTTW9@PPW22212112204301100000000 -T12023011111190394524200402501120423110949300000000191302220090000000000000000000000000000000000222222000005492219012 -T2202301111119039451219950127WT@@Z9W@T2222212222222011212190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119039451219970326WTT9W9YY@2222211222222011216190134721011817000000000000000000000000000000000000000000000000000000000000109700000000000000002002 -T320230111111903945120190726WTT0P9#TY22222112204398100000000120160513WT@##YPW022222112204398100000000 -T12023011111190401422000408891120523111116300000000000000010040000000000000000000000000000000000222222000000002229012 -T2202301111119040141219820712WT@PBYYZ92222212222222011215210045613011800000000000000000000000000000000000000000000000000000000350000000000000000000000000000 -T2202301111119040141219820312WTT@TZPWT2222211222222021213210045611011900400000000000000000000000000000000000000000000000000000000000272800000000000000000000 -T320230111111904014120050726WT@@T99Z@22222112204310200000000 -T320230111111904014120160405WT@@YBBYW22222122204301200000000120080426WT@TBZTT@22222122204308200000000 -T12023011111190408224200413921120213110598300000000180005280530000000000000000000000000000000000222222000000002229012 -T2202301111119040821219930412WTTZ#W@PT2222211222223012212110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904082120160321WT@YYWYZ#12222112204398100000000 -T12023011111190421524200408391120333110740300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111119042153219680418WT@B@09ZB1222222222223012209220006013069900000000000000000000000000000000000000000000000000000000000000000000000000000016570000 -T320230111111904215120190907WT@0Z9BPW12222122209398100000000120170304WT@009BZ@12222112206398100000000 -T12023011111190422224200404281120312110796300000000003706540640000000000000000000000000000000000222222000000002229072 -T2202301111119042221219780923WT@WY0PYW2222221222221012213110710021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904222120160323WTTT#Z@W#22222222204398100000000120100112WTT@BWB0Z22222222204305100000000 -T12023011111190424224700408091120423110893300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111119042421219780404WTTP@0Y992222212222222011214290065421011935000000000000000000000000000000000000000000000000000000000000304900000000000000000000 -T2202301111119042421219640304WTTPBTYP02222211222222021215290065421011939000000000000000000000000000000000000000000000000000000000000285100000000000000000000 -T320230111111904242120070405WTTPT0@ZT22222122204309200000000120040107WTTPW#TP@22222212204311200000000 -T12023011111190428322000405321120212110611300000000035005280120000000000000000000000000000000000222222000000002229012 -T2202301111119042831219740707WTT9BWWY92222212222225012214110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904283120090104WTTYYB@@B21222222204306100000000 -T12023011111190430924600404751120213110598300000000025305280040000000000000000000000000000000000222222000000002229012 -T2202301111119043091220000727WT@Z#TBYP2222212222221012211110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904309120220418WTT#YY@YZ22222112204398100000000 -T12023011111190432222900405641120412110760300000000000004620440000000000000000000000000000000308122222000000012219072 -T2202301111119043221219750227WT@PZZT9T2222212222223012216110980021011800210000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111904322120070905WT@Z0##TW22222112204308100000000 -T320230111111904322120110418WTT#TY##022222122204305100000000120080726WTTYW##YP22222122204307100000000 -T12023011111190435024200414351120313110835300000000000006540700000000000000000000000000000000000222222000000002229072 -T2202301111119043501219810423WT@9TWWZ#1222212222223012216111280023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904350120200226WT@BWZ@W#12222112204398100000000120060227WT@PZBP#W12222122204311100000000 -T12023011111190435624700402991120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119043561219820326WT@Y@TP#92222212222225012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904356120120911WT@ZPY@PP22222122204304100000000 -T12023011111190440021000408061120112110376300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111119044001220000102WTTTYPB@W2222212222221013210190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111190448023500411471120233120000300000000001704170030000000000000000000000000000000000222222000000002229022 -T2202301111119044803219750927WTTYYPZBY2222212222225012212110312911069940000000000000000000000000000000000000000000000000000000000000278500000000000000000000 -T320230111111904480120200112WT@@@BZZ#22222112206398100000000 -T12023011111190454724200414721120213110611300000000000003740410000000000070002000000000000000000222222000001542219012 -T2202301111119045471219950922WT@9#ZWZ#2221222222221012216110421821011805000000000000000001000000000000000000000000000000000000220000030600000000000000000034 -T320230111111904547120150712WTTBZTPY022222212204301100000148 -T12023011111190455922000409871110213110453300000000000005280070000000000035005000000000000000000222222000000002229012 -T2202301111119045591219770527WTT9##P092222212222225012213110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904559120080413WTTTPYPYW22222112204307100000000 -T12023011111190456520300411111120233120000107040000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111119045653219660301WT@WTPT902222212222222012210110006013069900000000000000000000000000000000000000000000000000000000000000200000000000000000000000 -T320230111111904565120180723WT@W#90#W21222212206398100000000 -T12023011111190458024200410531120323110835300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111119045801219900326WT@B@0P992222211222222011212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119045801219940918WT@Y0ZBBP2222212222222021212290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904580120190701WT@BBP#9@22222112204398200000000 -T12023011111190469222900410121120533111116300000000000005280850000000000000000000000000000000000222222000000002229022 -T2202301111119046922219830724WT@Y0YZPW2222222222211012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000051700000000 -T2202301111119046922219830302WT@@99BPT1222221122211102212190006013109900000000000000000000000000000000000000000000000000000000000000000000000694024000000000 -T320230111111904692420070713WTTZW09P@22222212104309105170000 -T320230111111904692120190101WTTZ#YZBW12222212204398100000000120140726WT@Y@PWBB22222222204301100000000 -T12023011111190477920600400871120212110516300000000000004170540000000000000000000000000000000000222222000000002229072 -T2202301111119047791219910101WTTTBZTW@2222212222221012211110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904779520180111WT@00ZP9B22222122104398109140000 -T12023011111190485520600400801120533111116300000000000005910090000000000000000000000000000000000222222000000632219022 -T2202301111119048552219780307WT@WWP@@02222212122213012209110362413109900000000000000000000000000000000000000000000000000000000000000000000000063077900000000 -T320230111111904855120060304WTTTWPYTZ22222122204308100000000120050321WTTBPTBT922222122204309100000000 -T320230111111904855420130408WT@ZWTZP@22222122104303108710063120120413WTT#Y@BWP22222112204304100000063 -T12023011111190487422700401571120513111116300000000020006540990000000000000000000000000000000000222222000000002229012 -T2202301111119048741219840418WT@##0#W01222222222221012212210332723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111904874120060724WTTB0#BYT22222122204309100000079420050404WT@#YB##Y22222212104310108810079 -T320230111111904874120090904WT@W0P0ZY12222222204307100000000420080926WTTT#WTYT12222212104307109140000 -T12023011111190510024700401011120313110740300000000000705280220000000000000000000000000000000000222222000000002229012 -T2202301111119051001219860305WT@@@T@#T2222212222221012212110510921011815000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905100420090209WT@BPZTYP22212112209308100001672120080921WTTB#BY9#22222112204308100000256 -T12023011111190512622700408351120213110446300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111119051261220020112WT@YTT9B02222212222221012211110223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905126120210101WTTTBYBP922222112204398100000000 -T12023011111190527424200407312120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111119052741219750924WT@9TPY9W2222211222222011298290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119052741219770123WT@9TPY9W2222212222222021298290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905274120110927WT@9TPY9W22222122204398200000000 -T12023011111190531025900406651120533110835300000000075006540190000000000000000000000000000000000222222000000002229022 -T2202301111119053102219860421WT@YYBT9P1222212222221012208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119053102219830101WT@YYBT9P1222211222221102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905310120060924WT@W#@9YY12222212204310100000000 -T320230111111905310120120404WT@TTYZ#912222222204304100000000120080921WT@@9W@Y#12222122204307100000000 -T12023011111190534220600402131110513111116300000000000000680010000000000000000000000000000000000222222000000002229012 -T2202301111119053421219880427WTT@TY0B@2222212222225012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000043 -T320230111111905342120130224WTTWYZWWP22222122204303100000199120120226WTTBWY@P922222112204305100000199 -T320230111111905342120190204WTTPTPYYP22222112204398100000199120160205WTTBBBTZY22222112204301100000199 -T12023011111190558920300410341120213110598300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111119055891219880902WT@#TBY#Y2222212222225012212120243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905589120080323WTT0Z0W#922222122204307100000000 -T12023011111190559624900404261120213110376300000000999904880020000000000000000000000000000000000222222000000002229012 -T2202301111119055961220010423WT@BYZWPW2222212222221012216110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905596120230412WT@9TPY9W22222122204398100000000 -T12023011111190564022000407411120423111034300000000016507710060000000000000000000000000000000000222222000000002229012 -T2202301111119056401219880907WTT@TZ9W02212221222222011214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119056401219960907WT@YT0YPZ2222222222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905640120200201WT@T0T@YW22221212204398100000000120170323WTTT0BBB922122222204398100000000 -T12023011111190566024700413762120523211199300000000000008880110000000000000000000000000000000000222222000000002229032 -T2202301111119056601219850321WT@9TPY9W2222211222222011212290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119056601219880926WTTTZ0#PT2222212222222021212290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905660120050902WT@9TPY9W22222112204310200000000 -T320230111111905660120100927WT@B#TWTW22222122204306200000000120080904WT@9TPY9W22222122204307200000000 -T12023011111190581524700406491120213110611300000000050004060070000000000000000000000000000000000222222000001222219012 -T2202301111119058151219900204WTTYTYWTB1221212222221012216110144621011808000000000000000000000000000000000000000000000000000000000000048700000000000000000000 -T320230111111905815120140313WT@WPB@@#12222122204302100000000 -T12023011111190590124700409381120333120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119059013219700307WTTTTZT0Z1222222222222012216110124811069937000000000000000000000000000000000000000000000000000000000000144400000000000000000000 -T320230111111905901520100313WTTTTWTPY21222112106306109140000120090927WTT#W0YPZ11222122206308100000050 -T12023011111190599224200401241120333120000300000000000005280310000000000000000000000000000000000222222000000002229022 -T2202301111119059923219770126WT@#Z#9BY2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111905992120140701WT@0YPB9#22222212206301100000050120130123WTTY999YT22222212206303100000050 -T12023011111190599624500405941120233110516300000000000504170990000000000000000000000000000000000222222000000002229022 -T2202301111119059962219700208WT@Z@Z@PT2222212222215012213110421813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111905996120090226WTTPB@Z@Y12222112204306100000000 -T12023011111190609320600402131120433110939300000000000005280370000000000000000000000000000000000222222000000002229022 -T2202301111119060932219900327WT@BZPPP@2222212222211012210190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111119060932219980108WT@9P#TZ92222211222211102212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111906093120210727WT@TB@Z@P22222122204398100000000120190726WTT09YW#B22222122204398100000000 -T12023011111190610620600400871120212110565112180000002003590230000000000000000000000000000000000222222000001692219012 -T2202301111119061061219910913WTT@W#Y0T2222212222221012212110303023011400000000000000000000000000000000000000000000000000000000000000067500000000000000000000 -T320230111111906106120210511WT@0T@P9@22222122204398100000000 -T12023011111190613124700405901110213110611109520000015004420010000000000000000000000000000000000222222000000002229012 -T2202301111119061311219880321WT@Y9PBZP2222212222223012216110025821011804000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906131120190423WTTB@#Y@012222112204398100000000 -T12023011111190615322000410051120523111136300000000000008880020000000000000000000000000000000000222222000000002229012 -T2202301111119061531219870112WT@Y@#WBP2222212222222011298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119061531219870111WT@9@YBY92222211222222021298290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906153120090205WTTYPPTW922222112204398200000000 -T320230111111906153120140401WTTWBTBTY22222122204398200000000120110513WTTPTPPY#22222112204398200000000 -T12023011111190617824200402501120513111116300000000005004620050000000000000000000000000000000000222222000004262219012 -T2202301111119061781219770424WT@9PBT9W2221222222221012215210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906178120080122WT@#YB#W@22212222204307100000142120060711WTTYYT9PP22212212204309100000142 -T320230111111906178120150723WT@BTW00T22212212204301100000000120080122WTT90YPYP22212222204307100000142 -T12023011111190629124200409731120213110631300000000000003960020000000000000000000000000000000132222122000000002229012 -T2202301111119062911219980711WT@@PT@T@2221222222221012211120035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906291120220304WT@TPWZYP22212222204398100000000 -T12023011111190631824200408391120233120000300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111119063185219880904WTTP99W#02222211222222012212110006011069937000000000000000000000000000000000000000000000000000000000000662500000000000000000000 -T320230111111906318120200327WT@B00PBY22222122209398100000000 -T12023011111190635322000404841120213110493300000000000004170410000000000000000000000000000000000222222000000002229072 -T2202301111119063531219890504WT@WZPW9P2222212222221012212110640023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111906353520140114WT@PY0P@Z22222122104303103350599 -T12023011111190636823500409141120323110704300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111119063681219720418WT@0#0#ZY2222212222222011212290114923011800000000000000190000000000000000000000000000000000000000030000000000000000000000000000 -T2202301111119063681219750127WT@T9P9#P2222211222222021212290114923011800000000000000200000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111906368120090404WTTPY#09@22222122204307200000000 -T12023011111190640425600414951120513111116112270000000008880420000000000000000000000000000000000222222000000002229012 -T2202301111119064041219970907WTT#9ZTTP2222212222222012211120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906404120160304WTT@P0#Z922222122204398100000000120140226WT@9#TBZB22222112204302100000000 -T320230111111906404120220922WT@ZYB#TY22222112204398100000000120180307WTTZBYT9T22222122204398100000000 -T12023011111190644420600414771120213110538300000000000003030040000000000000000000000000000000000222222000002252219012 -T2202301111119064441219860424WTTBP#W@Y2222212222225012216110421821011815000000000000000000000000000000000000000000000000000000000000090000000000000000000000 -T320230111111906444120080512WT@T#B#W022222122204308100000000 -T12023011111190656220600400801120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119065622219850908WTTBB9@0T2222212222215012209110045613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111906562120120301WTTWBWPY922222112204302100000000 -T12023011111190656320800410781120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119065632219740709WTTZZZ00T2222211222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111906563120070923WTTWY9BYB22222112204309100000000 -T12023011111190668324700404541120423111034300000000000006460070000000000000000000000000000000000222222000001252219012 -T2202301111119066831219850323WT@9TPY9W2222222222222011214290085223011800000000000000000000000000000000000000000000000000000000000000050000000000000000000000 -T2202301111119066831219830123WTTB9TPZZ2222211222222021216290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906683120160313WT@WTY0TW22222112204398200000000120120926WT@ZW9##@22222122204305200000000 -T12023011111190669122000412691120232110516118330000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111119066912219890105WT@0@Z#0Y2221222222211012212110144613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111906691120200202WT@0WP99B22212212204398100000000 -T12023011111190675821000411361120212110611300000000004805280130000000000000000000000000000000000222222000000002229012 -T2202301111119067581219990914WTTBZYYTZ2222212222221012208110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906758120220513WT@ZBTTP022222122204398100000000 -T12023011111190675923900400641120323110740300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111119067591219790909WT@#0ZYTT2222211222225011212110184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119067591219680127WTT@@@9TP2222212222223021216190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906759520100922WTTT0BBZ022222112104305106090200 -T12023011111190687824100414321110312110835114960000042003160340000000000000000000000000000000000222222000000002229012 -T2202301111119068781219820527WTTTWB#PB1222212222221012212210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906878120180511WTT@@YTYP12222122204398100000000120060427WT@ZPW0PY12222122204309100000000 -T12023011111190688223500404531120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111119068821219880711WTT@0ZY@W2222222222222011298290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119068821219890309WT@#9WZWT2222211222222021298290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111906882120210901WTT0@ZWY@22222122204398200000000120140327WT@WYWBPW22222212204302200000000 -T12023011111190689024700406701110213110631300000000000000170010000000000000000000000000000000000222222000000002229012 -T2202301111119068901220030427WTT9P@WP#2222212222222013216290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000153 -T2202301111119068905220000104WT@0BBP#@2222211222222023213290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000153 -T12023011111190693725200414061120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111119069371220000413WT@ZZYB@@2222212222225013212190105023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111190699520600414161120233120000300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111119069953219820321WTTZ#@B902222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000546000000000000000000000 -T320230111111906995120090422WTTZ9BT0T22222112207307100000050 -T12023011111190703224200405921120213110611300000000000105280640000000000070031000000000000000000222222000000002229072 -T2202301111119070321219750112WTTPP0Y9T2221222222221012215110650023011400000000000000000000000000000000000000000000000000000000220000000000000000000000000000 -T320230111111907032120070102WT@9TTBW#22212112204308100000050 -T12023011111190706124200405921110213110516111620000000001310010000000000000000000000000000000000222222000000002229012 -T2202301111119070611219980318WT@B9TZPZ2222212222221012216110075321011802000000000000000000000000000000000000000000000000000000000000015100000000000000000000 -T320230111111907061120190712WT@YPZ@ZB22222112204398100000000 -T12023011111190718724200401241120233120000100810000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111119071873219680418WT@9P@#W@2221212222225012212110006011069940000000000000000000000000000000000000000000000000000000000000810300000000000000000000 -T320230111111907187120150905WTT@9BWPY22222122209398100000000 -T12023011111190718824500405781120313110835300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111119071881219900414WTTTPYP#92122221222221012210110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111907188120210913WT@PYWT0922222112204398100000000120190321WT@PPWBW021222222204398100000000 -T12023011111190723122700408351120212110576300000000000005280700000000000000000000000000000000000222222000000002229072 -T2202301111119072311219860727WT@ZPP#@B1222222222221012210110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111907231120060723WT@YTT@B@12222222204311100000050 -T12023011111190724721700406141120313110835300000000000606540220000000000000000000000000000000000222222000000002229012 -T2202301111119072471219930923WT@0#9Z9#2222212222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111907247120180927WT@TW9YBP12222112204398100000000120160301WTT9B@BBB22222122204398100000000 -T12023011111190724922000409991120233110536300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111119072492220020927WTTBWP0#B2221222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111907249120190918WTT0B9WW#22212212204398100000000 -T12023011111190726222000410051120423110939300000000002007710040000000000000000000000000000000000222222000000002229012 -T2202301111119072621219940212WTT09TP902222212222222011211290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119072621219900707WTTY@@PB92222211222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111907262120200418WT@T##@WY22222122204398200000000120160104WTT99T@WT22222112204398200000000 -T12023011111190739320600414771120632111312300000000000008880860000000000000000000000000000000000222222000000002229022 -T2202301111119073932219680323WTT0PTWPB2222221222212012212110065413089900000000000000000000000000000000000000000000000000000000000000000000000000063000000000 -T320230111111907393120060301WTT@@@00922222112204308200000000 -T320230111111907393120090118WT@909ZPT22222112204304200000000120070312WT@WT@TYT22222122204307200000000 -T320230111111907393120210323WT@#P9ZZ@22222222204398100000000120160308WTT9YT@Y922222222204398100000000 -T12023011111190740023500410671120213110631300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111119074001220010727WTTP@Y09#1221222222221012212120045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111907400120220114WT@0#WWZ#12212212204398100000000 -T12023011111190756725900402631120212110611300000000005005280380000000000000000000000000000000000222122000000002229072 -T2202301111119075671219810909WT@B##WW91222212222221012213110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111907567120140304WTTPW9ZY@12222122204302100000000 -T12023011111190759525900402831120212110611300000000000005280150000000000000000000000000000000000222222000000002229072 -T2202301111119075951219770904WTT@0Y@WW1222222222221012213111530023011400000000000000000000000000000000000000000000000000000000300000000000000000000000003609 -T320230111111907595120180301WT9TT@9W912212222204398100000000 -T12023011111190773522000400921120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119077353219590301WTTB@00#@2221222122211012213110930013069900000000000000000000000000000000000000000000000000000000000000000000000691024300000000 -T320230111111907735120210309WTT0WB9YP12212212206398100000024 -T12023011111190776422000407242120323210776300000000000006540140000000000000000000000000000000000222222000000002229032 -T2202301111119077641219750401WTT@PZP@P2222212222222011215290154522011900000000000000210001000000000000120001000000000000000000030000000000000000000000001500 -T2202301111119077641219690518WT@Y@900T2222211222222021215290154523011800000000000000000000000000000000120001000000000000000000000000000000000000000000000000 -T320230111111907764120110223WTTPWB9YT22222122204304200000000 -T12023011111190781022000402321120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111119078101220020302WT@B009Z@1222222222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111907810120210727WT@T@9B@W12222212204398100000000 -T12023011111190784522000414461110213110493300000000000001950010000000000000000000000000000000000222222000000002229012 -T2202301111119078451220040326WT@P9TYZ#2222222222222013212290025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000153 -T2202301111119078455220020413WTT@Y#ZYB2222221222222023212290006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000153 -T12023011111190797424200408571120212110611108920000001105280410000000000000000000000000000000000222222000000002229012 -T2202301111119079741219970414WTT#P#YZ#2221222222221012211110510921011700210000000000000000000000000000000000000000000000000000010000136400000000000000000000 -T320230111111907974120190304WTT0PBP@@22212222204398100000000 -T12023011111190801720600407031120213110611300000000000004170590000000000000000000000000000000000222222000000002229012 -T2202301111119080171219870713WTTTPP#T@2222212222221012212110600021011700210000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111908017520190702WT@W0#00922222122104398104340000 -T12023011111190836620800414151120233120000300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111119083663219660118WT@Z9ZWP02222212222222012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111908366120150227WTTBPWPZP22222122206398100000050 -T12023011111190838324200410211120233110516300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111119083833219540113WT@TTPPWY2222211122213012212120045613069900000000000000000000000000000000000000000000000000000000000000000000000486044800000000 -T320230111111908383120100212WTT@ZWPY@22222112206306100000000 -T12023011111190838422000405841120333120000105740000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119083843219760718WTTYBPTW02222212222225012216110006011069940000000000000000000000000000000000000000000000000000000000000381300000000000000000000 -T320230111111908384120140301WTT9P@WZZ22212212206398100000000120100112WTTW90W0922222112206304100000000 -T12023011111190841521100402261120233110518300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119084152219830126WT@WY@P0W2222212222214012214110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111908415120090902WT@W@W@0Z22222122204307100000000 -T12023011111190844725900402121120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119084472219810407WTT#YBT##1222222222215012212110293113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111908447120100326WT@BZT0B012222222204304100000000120060112WTTP@00ZZ12222222204309100000000 -T12023011111190860024100402401120333110740300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111119086002219900912WTTT@YZ@Z2222212222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111908600120110507WT@TWWP9922222112204305100000000120090913WT@BB09@Z22222112204306100000100 -T12023011111190865424200404421120313110835300000000000006540580000000000000000000000000000000000222222000000002229042 -T2202301111119086541219820705WT@T@YT@B2222212222221012212110283221011721000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111908654120180307WT@0Z@##P12222122204398100000000120170922WT@BZ##B@12222112204398100000000 -T12023011111190878822000408891120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119087883219750921WTTY@#W9Z2221222222221012213110720011069943000000000000000000000000000000000000000000000000000000000000721500000000000000000000 -T320230111111908788120100526WT@TP0T#W22212212206305100000000 -T12023011111190903620600402141120212110515300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111119090361219950412WT@TT9B0Z1222212222221012216110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111909036120140204WTTY@Z9YY12222122204302100000000 -T12023011111190926824700409381120412110939300000000000007710200000000000000000000000000000000000222222000000002229012 -T2202301111119092681219870401WTT#ZZP9@2222212222221012211110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111909268120110401WTTZZ#WWB12222112204305100000000 -T320230111111909268120140411WTTB#B99Z12222122204302100000000120130421WTTZW0#Z022222122204303100000000 -T12023011111190930922900410121120213110548300000000006005280040000000000000000000000000000000000222222000000002229012 -T2202301111119093091219690423WT@YY#BB@2222212222225012212120055523011400000000000000000000000000000000000000000000000000000000190000000000000000000000000000 -T320230111111909309120100926WT@Y9T9WW22222112204307100000000 -T12023011111190940722000402321120312110753136870000002204490270000000000000000000000000000000000222222000002052219012 -T2202301111119094071219800324WTTTP9P#B2212222222223012212110283221011707000000000000000000000000260000000000000000000000000000000000040800000000000000007924 -T320230111111909407120200727WTTZ@999@22122222204398100000000120170713WT@@BTTTT22122212204398100000000 -T12023011111190948624700406741120213110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111119094861219900421WTTYY9@Z92222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111909486120160408WTTBBZ0@Z22222112204301100000000 -T12023011111190955723500410671120333110763300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119095572219800513WT@P#P#B02222212222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111909557120100912WT@@BW0YB22222122204307100000000420090126WT@TWW#W#22222122104308109140000 -T12023011111190959723100408861120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111119095971219950507WTTWZ0YWP2222212222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111909597120180323WTTW#BB0Y22222122204398100000050 -T12023011111190962324200414721120333110835300000000000005280550000000000000000000000000000000000222222000000002229022 -T2202301111119096233219840727WT@0@#Y9B1221222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111909623120190109WT@#BZP0Z12212222207398100000000120090418WT@TP#YPP12212222207308100000000 -T12023011111190963224700409381120213110576300000000000004710340000000000000000000000000000000000222222000000572219012 -T2202301111119096321219840912WT@@9P@PB2222212222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000056 -T320230111111909632120050413WT@99PTB912222112204309100000050 -T12023011111190965322700408492120323210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111119096531219860308WT@9TPY9W1222222222222011214210035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119096531219930323WT@9TPY9W1222221222222021216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111909653120120421WT@9TPY9W12222222204304200000000 -T12023011111190986020600414161110113110376300000000000303760030000000000000000000000000000000000222222000000412219012 -T2202301111119098601219940407WTTWZWP#B2222222222221013216190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111190994525600411701120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119099453219670727WTTTZZT@92222212222225012212110372311069942000000000000000000000000000000000000000000000000000000000000564800000000000000000000 -T320230111111909945120070412WT@@ZYY@W22212122206309100000000 -T12023011111190994623500410672120313210766300000000000006540050000000000000000000000000000000000222222000000002229032 -T2202301111119099461219840326WT@9TPY9W2222222222225012208210065423011400000000000000000000000000000000000000000000000000000000290000000000000000000000000000 -T320230111111909946120070727WT@9TPY9W22222222204310200000000120060408WT@9TPY9W22222222204311200000000 -T12023011111190996320800409831120533111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119099633219570408WT@09ZZ0#2222212122224012212110105013069900000000000000000000000000000000000000000000000000000000000000000000001294000000000000 -T320230111111909963120110412WT@90Z@BZ12222222206303100000000120080223WT@0PP#YT22222222206306100000000 -T320230111111909963120190105WTTYZTWBB12222112206398100000000520140923WTTBY9B#P12222212106301109140000 -T12023011111190998824200414721120212110493300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111119099881219720105WTTP0#@002222212222221012210111550023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111909988120120721WTT#Y0PPY22212222204303100000050 -T12023011111191010724700406741120433110893300000000000006540630000000000000000000000000000000000222222000000002229022 -T2202301111119101073219920401WT@BTWZYZ2221222222221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111910107120080107WT@YPPPB022212222207307100000000 -T320230111111910107120120918WTTZPB@PP22212222207304100000000120090124WTTZ#TTPP22212212207305100000000 -T12023011111191012322000411282120523211116300000000000008880100000000000000000000000000000000000222222000000002229032 -T2202301111119101231219870923WT@@BWP9B2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119101231219890923WTTT#PZYT2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111910123120110713WTTZ#PP9W22222112204303200000000 -T320230111111910123120200121WT@00YBYW22222112204398200000000120140701WT@ZW@0WW22222112204302200000000 -T12023011111191014222000404841120232110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119101422219700726WT@Z#WZ@T2221222222211012210111280013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111910142120050904WTTW#@W#022212222204311100000000 -T12023011111191018324500404151120213110604111990000061105280560000000000000000000000000000000000222222000000002229012 -T2202301111119101831219900405WT@WP@PWY2222212222221012213110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000001980 -T320230111111910183120180209WTT#WZY0B22222122204398100000000 -T12023011111191018724200403511120232110516300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111119101873219640221WT@WT0@BP2222212122213012212110402013069900000000000000000000000000000000000000000000000000000000000000000000000661027300000000 -T320230111111910187120090123WT@BBBW@#22222112206307100000000 -T12023011111191028624200414021120613111339300000000000006050240000000000000000000000000000000403122222000000012219072 -T2202301111119102861219890423WT@B#@BTB2221222222221012211110860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111910286120060107WT@YTTPTB22212222204309100000000 -T320230111111910286120110904WTTPP9#0#22212212204304100000000120080418WTTB9Y@T022212212204307100000000 -T320230111111910286120190202WT@WWW#PY22212212204398100000000120170318WTTWWPBPW22212222204398100000000 -T12023011111191030225900402831120313110740300000000000006540660000000000000000000000000000000000222222000000002229012 -T2202301111119103021219670918WT@TY9BWW2222212222225012212110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111910302120110705WT@Z#9PT022222122204304100000700120080923WT@P@BTZY22222122204308100001000 -T12023011111191048824200403941120233110376300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111119104882219920905WT@YYBT9P1222221222223012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111910488120170704WTT9#PZ@@12222212204398100000000 -T12023011111191064322700413181120332110740300000000010005280420000000000000000000000000000000000222222000000002229022 -T2202301111119106431219860918WT@YYWPTY2222212222221012213110431723099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111910643120140427WTTT9YP@T22222122204302100000000420110421WTTBY0Z9#22222122104304109140000 -T12023011111191066525900402831120213110376300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111119106651219820404WT@PYB#@W2222212222221012214110095123011400000000000000000000000000000000000000000000000000000000300000000000000000000000000000 -T320230111111910665120210926WT@##9YB#22222112204398100000000 -T12023011111191090522000412971120213110376300000000000003160180000000000000000000000000000000211122222000000012219012 -T2202301111119109051219870907WTTY#WY#Y2221222222221012214110194123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111910905120070327WTTT#YY0B22212222204308100000000 -T12023011111191091124500405941120233110376300000000030004170090000000000000000000000000000000000222222000000002229022 -T2202301111119109112219990402WT@YYBT9P1222222222221012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111910911120170213WTTPWW9T@12222212204398100000000 -T12023011111191103121000405411120213110516300000000010000010350000000000000000000000000000000000222222000000002229012 -T2202301111119110311219810418WTTY99PW92222211222225012212110342611011800210000000000000000000000000000000000000000000000000000150000131000000000000000000000 -T320230111111911031120090201WTT0WYY0P22222112204306100000000 -T12023011111191103324600411871120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111119110335219880704WT@Z0#99B2222212222222012210110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911033120220104WTT0@ZYB022222122208398100000000 -T12023011111191103720600400801120213110516300000000000000010280000000000000000000000000000000000222222000000002229012 -T2202301111119110371219860304WTTY9@90Y2222211222221012212120342611011800210000000000000000000000000000000000000000000000000000170000125600000000000000000000 -T320230111111911037120140726WT@Z@TZ9#22222112204301100000000 -T12023011111191110322000408561110423110939300000000000000240010000000000000000000000000000000000222222000000002229012 -T2202301111119111031219870323WT@#TBPY02222212222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119111031219860408WT@9TY0#T2222211222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911103120140909WTTB90Y9Y22222112204301200000000120110512WTT@P00YZ22222122204305200000000 -T12023011111191113025900405231120313110796300000000000004730110000000000000000000000000000000157222122000000242219012 -T2202301111119111301219840926WT@YB90ZB1222222222225012212220134723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000022 -T320230111111911130120080421WT@ZPY90@12222212204308100000000120060513WTTY90BZZ12222222204310100000000 -T12023011111191121020600400871120212110611300000000000005280410000000000000000000000000000000000222222000000002229072 -T2202301111119112101219950926WTTBTP@PW2222222222221012209110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911210120110909WTT#@9@BY11222222204302100000000 -T12023011111191121521000405411120313110766300000000081803920050000000000000000000000000000000261122222000000012219072 -T2202301111119112151219770909WT@9Z0@TP2222212222224012216110750023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911215120100923WTT@WB#9Y12222212204306100000000120090904WT@@ZT#0P12222222204307100000000 -T12023011111191122524100414051120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111119112251219770518WTT99BBY92222212222223012208111140023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111911225120040327WTTZY9#YP22222122204310100000054 -T12023011111191130224700408301120212110611300000000283205280490000000000000000000000000000000000222222000000002229012 -T2202301111119113021219820923WTTBTWPW92222222222225012212110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911302120140701WTT9B9W9W22222122204398100000000 -T12023011111191134724900404261120213110598108250000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111119113471219970313WT@BY0YZP2222212222221012212110273323011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111911347120200701WTTZB@BB022222112204398100000000 -T12023011111191136821700407751120313110826300000000000003920160000000000000000000000000000000261122222000000012219072 -T2202301111119113681219880711WT@0B@B##2222212222221012212110890023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911368120170124WT@TPY9ZW22222122204398100000000120130404WT@#ZPTW#22222112204303100000000 -T12023011111191140523700414331120422110939300000000000007710220000000000000000000000000000000000222222000000002229012 -T2202301111119114051219950711WT@Y##@TT2222212222222011212110233723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119114051219960714WT@#TZ#BW1122221222222021212190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911405120200123WT@BZPWYT12222112204398100000000120190727WTTT@WWYB12222112204398100000000 -T12023011111191144822000407411120213110598105500000200005280030000000000000000000000000000000000222222000000002229012 -T2202301111119114481220000212WTT0WT0TB1221222222221012212110045623010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111911448120190414WTTWZ99W@12212212204398100000000 -T12023011111191147825900402831120333110776300000000000005280390000000000000000000000000000000000222222000000002229022 -T2202301111119114783219880723WT@PY#WP92222212222221012212110850013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911478120130413WT@B0WZZW12222112207301100000050120100127WTT@@W@9P22221222207307100000050 -T12023011111191150320600400801120233120000300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111119115033219710527WT@Z0W#@92222211222222012214110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000924 -T320230111111911503120210107WT@9TPY9W11222222208398100000000 -T12023011111191151622000413731120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111119115161219930527WTTBTYWW92222212222222011212290114923011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T2202301111119115161219860402WTTW@ZW092222211222222021212290114921011820000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911516120200113WT@PTTW#W22222112204398200000000120160311WTT9@#@9Z22222112204398200000000 -T12023011111191154023500411471120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119115401219860721WTTBY#W##2222212222221012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911540120170711WT@9#0P#Y22222112204398100000000 -T12023011111191155722700413181120632111339300000000000005280810000000000000000000000000000000000222222000000002229022 -T2202301111119115572219680904WTTW0@W9Z2222211222212012216110233713089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111119115572219800312WTTYT99BT2222212222212022212190510913089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111911557120080413WTT@Y@ZB#22222122204307100000000420050427WT@T#YW@Z22222112104310109140000 -T320230111111911557120180718WT@ZW#T0922222122204398100000000420110523WT@TZWTYB22222122104304109140000 -T12023011111191160820600402141120213110611300000000000003990100000000000000000000000000000000000222222000001292219072 -T2202301111119116081219910913WT@B0T0@B2222212222221012212110710023011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111911608120100311WT@TYPZZT22222112204304100000000 -T12023011111191162122000407831120423111009300000000000007710160000000000000000000000000000000000222222000000002229012 -T2202301111119116211219830318WTTYWWZTB2222212222222011214190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119116211219840418WTT#@@Y#Y2222211222222021214190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911621120190122WTTB#BWY022222112204398100000000120190122WT@9PWPT#22222112204398100000000 -T12023011111191169623800413801110513111211300000000000000240010000000000000000000000000000000000222222000000002229012 -T2202301111119116961219890207WT@TYPYT@1222212222221012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911696120170302WTTY#TYY#12222122204398100000000120170302WTTW0P@9B12222122204398100000000 -T320230111111911696420080401WT9TT99@T12222112104308109140000120060323WTTZT9T#W11222212204309100000000 -T12023011111191170624200413921120323110634300000000002006540540000000000000000000000000000000000222222000000002229012 -T2202301111119117061219870701WT@@YB9@92222212222222011216110471323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119117061219860721WT@0Z0@Z#2222211222222021212190342623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911706120120121WTT@#T@9P22222122204305100000000 -T12023011111191175320600401641120433110893300000000000005280680000000000000000000000000000000000222222000000002229022 -T2202301111119117533219760902WTT09BPWB2222212222222012212110164411069929000000000000000000000000000000000000000000000000000000000000280400000000000000000000 -T320230111111911753520130513WTTYZ@@TY22222112106303109140000 -T320230111111911753120170413WT@BTY09W22222122206398100000000120160504WT@BPZ@WB22222112206398100000000 -T12023011111191176322000406191120312110835300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111119117631219880104WT@BB0ZWB2212212222221012211110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911763120150913WTTW9TZWT22112122204302100000000120080321WT@9T0@B922112112204308100000000 -T12023011111191194925900402831120333110835300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119119491219750509WT@#@WZ0@2222211222221012208111550023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111911949120110213WT@00T@0P22222112204304100000000120100226WT@ZWZ#Y022222122204305100000000 -T12023011111191197825900414481120333120000300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111119119783219580108WT@099WY#2222211122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001708000000003904 -T320230111111911978120140221WT@0Y#Y9922222122206302100000000120070223WTTZZZ@PZ22222122206308100000000 -T12023011111191200225100407671120433110846300000000000006540060000000000000000000000000000000000222222000000002229022 -T2202301111119120023219640724WTT@@PPZ92122222222223012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912002120150105WTTWZTP0021222222206398100000000 -T320230111111912002120220111WT@PYP#P@21222212206398100000000120170909WT@@WY@9W21222222206398100000000 -T12023011111191203921700409521120423110493300000000000003920640000000000000000000000000000000261122222000000012219072 -T2202301111119120391219800923WTTYBYY9Y2222212222222011213111020023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119120391219780701WTTT09#BB2222211222222021212190164423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912039120120105WTT@Z@B9#22222112204304100000000420100202WT@BZ0W@B22222112104306109140000 -T12023011111191225520600407032120233210147300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111119122553219900227WTT@@TPTB2222222222221012212910015911079944000000000000000000000000000000000000000000000000000000000000378800000000000000000000 -T320230111111912255120100526WT@BWYWTZ22221212207305900000000 -T12023011111191228320800414651120233110541300000000000003960980000000000000000000000000000000000222222002000012219022 -T2202301111119122833219770113WTT9#@B@W2222212222223012213110960013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912283120210123WT@00BB0W22222122206398100000000 -T12023011111191236425000402561120213110376300000000000003150140000000000000000000000000000000210122222000000032219072 -T2202301111119123641219820423WTTZYW9ZW2222212222221012212110610023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000001 -T320230111111912364120060713WTTWTZ@WB22222122204310100000000 -T12023011111191246622000400591120423111034300000000000007710160000000000000000000000000000000000222222000000002229012 -T2202301111119124661219900401WTT@WW9#T2222211222222011212190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119124661219840907WT@PYPB0B2222212222222011213110204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912466120200218WT@#YWB#P22222122204398100000000120100101WT@ZZ#YWT22122112204307100000000 -T12023011111191250220600402141120233110570300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119125023219600324WT@99WZP@2221222222215012216110025813069900000000000000000000000000000000000000000000000000000000000000000000000000090400000000 -T320230111111912502120110226WT@#ZZZBZ22212222206303100000000 -T12023011111191267820600400871120213110611300000000000205280230000000000070010000000000000000000222222000000002229012 -T2202301111119126781219700904WT@YY99W02222211222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912678120080201WT@9B@#Y022222112204307100000000 -T12023011111191273125900406651120333110517300000000000005280250000000000000000000000000000000000222222000000002229022 -T2202301111119127312219860724WTTBT099B1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912731120100713WTTBTTPY012222212204306100000000120070908WTT0T09TY12222212204309100000000 -T12023011111191284625100407671120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111119128461219930427WTTB#@0TW1222222222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912846120220714WT@WZY0BY12222112204398100000000120210302WT@9TPY9W12222112204398100000000 -T12023011111191286024700413761120213110598100300000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111119128601219960427WTT@W99@W2222212222221012212120065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912860120200207WTTZBYW@022222122204398100000000 -T12023011111191288623500402712120523211136300000000000008880020000000000000000000000000000000000222222000000002229032 -T2202301111119128861219830226WTT9@@ZZ92222211222222011214290035723011800000000000000000001000000000000000000000000000000000000150000000000000000000000000000 -T2202301111119128861219900724WT@PBW#@B2222212222222021215290035723011800000000000000000001000000000000000000000000000000000000140000000000000000000000000000 -T320230111111912886120120908WTTBWZBTY22222122204304200000000 -T320230111111912886120160513WT@0W0PZ022222122204301200000000120140726WT@ZT#PTB22222122204302200000000 -T12023011111191290022000405181120512111137129290000000008880480000000000000000000000000000000000222222000000002229012 -T2202301111119129001219920402WTTP@Y#@B2221222222221012212120530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912900120120121WTTTZBZ9@22212212204305100000000120100318WTTTY@B#022212222204306100000000 -T320230111111912900120180718WTTBYWB#Y22212222204398100000000120160427WT@PW@ZZ922212222204398100000000 -T12023011111191299322700413181120233110376300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111119129935219800412WTTW90Z@W1222222222222012213110144613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111912993120050305WT@#TT#B#12222122209310100000000 -T12023011111191299420800410781120433111114300000000000004990170000000000000000000000000000000000222222000000002229022 -T2202301111119129943219830123WT@ZY#Y9P2222212222225012213110431711069936000000000000000000000000000000000000000000000000000000000000325200000000000000000000 -T320230111111912994420050527WT@P0BY#@22222122204311100000000 -T320230111111912994120070126WT@9W99YZ11222212207309100000000120060227WT@PB#9W011222222209310100000000 -T12023011111191303422000400581120412110939300000000383907310400000000000000000000000000000000000222222000000402219012 -T2202301111119130341219880407WT@##@TT01222222222223012211110580223011400000000000000000000000000000000000000000000000000000000200000015900000000000000000333 -T320230111111913034120090923WT@PZ@0WZ12222212204304100000000 -T320230111111913034120170926WTTWTZT#012222222204398100000000120110327WT@TZ9#Z012222212204301100000000 -T12023011111191305124200411401120423110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111119130511219920921WTTZTW@#02222212222223011212110114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119130511219910904WT@Z0WW@P2222211222222021212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111913051120190507WT@0PZZ0922222122204398100000000120160307WT@PP0@BW22222122204398100000000 -T12023011111191313125900402831120433110939300000000000006540720000000000000000000000000000000000222222000000002229022 -T2202301111119131313219690223WTTTT@#Y@2221222222211012212110114913069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111913131120130104WTT99ZZ9922222122206301100000000 -T320230111111913131120160126WTT@0T0T#22222112206398100000000120140313WTTP#ZP9@22212212206398100000000 -T12023011111191319322000409411120233110423300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111119131932220000201WT@B#WWPY1122222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000087400000000 -T320230111111913193120210908WT@Y#WP#Z12222222204398100000000 -T12023011111191338925000403231120213110376300000000000003160110000000000000000000000000000000211122222000000012219012 -T2202301111119133891219880708WTTZWWY@T2222212222225012212110124823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111913389120080222WTT9Y9YPZ22222122204308100000050 -T12023011111191343424500407641120712111480300000000065711650620000000000000000000000000000000000222222000000002229072 -T2202301111119134341219880301WTT@YZPZB2222212222225012208110640023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111913434120110426WTTZYT9Z022222112204306100000033120060727WT@YBY@ZY22222112204311100000033 -T320230111111913434120200914WT@#9TWP012222112204398100000000120130126WT@#W#9Z@22222122204304100000033 -T320230111111913434120220414WT@W#Z#PP12222222204398100000000120220414WT@P@TBB012222112204398100000000 -T12023011111191355725900402721120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111119135571219980726WTTYYYWZB1222211222221012298110065423011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111913557120200912WT@0WPWZZ12222122204398100000000 -T12023011111191359322000410221120333110697126790000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111119135933220010707WTTBW0BT@2222222222221012216110006011069940000000000000000000000000000000000000000000000000000000000000291200000000000000000000 -T320230111111913593120150721WTTTZZ09P22222112207398100000000120140101WT@0##@9Y22222112207302100000000 -T12023011111191361020600400871120212110595300000000000205280240000000000000000000000000000000000222222000000002229012 -T2202301111119136101219980911WT@ZB#YTW2222212222225012209110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111913610120180223WT@Z0T09Y22222112204398100000261 -T12023011111191366020600401561120213110598300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111119136601220000518WTTB99@W92222212222221012216110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111913660120220421WT@@ZYP@P22222112204398100000000 -T12023011111191396822000411282120323210724300000000000006540100000000000000000000000000000000000222222000000002229032 -T2202301111119139681219820321WTT0BYY@P2222212222222011212290114923011800000000000000000000000000000000050001000000000000000000000000000000000000000000000000 -T2202301111119139681219790208WT@WTWTZ02222211222222021212290114923011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T320230111111913968120050507WT@YPB0PW22222112204310200000000 -T12023011111191418724700401011120612111339300000000000010090150000000000000000000000000000000000222222000000002229072 -T2202301111119141871219900709WT@TW09ZZ1222212222225012211110750021011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111914187120080109WTTB0B@B912222122204307100000000 -T320230111111914187120150422WTT0W@P#912222112204301100000000120100226WTT@WZZ#Y12222122204306100000000 -T320230111111914187120210413WT@@PBP#B12222122204398100000000120160223WT@TP9P0B12222212204398100000000 -T12023011111191420121000403201120423110939300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111119142011219840411WT@ZWWBBT2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119142011219830312WT@WBZPB@2222211222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111914201120100108WTTBP09YY22222112204306200000000120060523WT@T9@PP#22222112204310200000000 -T12023011111191429020300400971120233120000300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111119142903219680923WT@@B@PTP2222212222225012212110402013069900000000000000000000000000000000000000000000000000000000000000344300000000000000000000 -T320230111111914290120070301WTTT0#Y9T22222122206308100000000 -T12023011111191432520600407031120212110611300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111119143251220010724WTT#PY@B@2222212222221012211110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111914325120210423WTTBBYZ@Y22222112204398100000000 -T12023011111191432723700414331120333120000300000000000005280140000000000000000000000000000000000222222000000002229022 -T2202301111119143273219760407WTTYZP#PP1222212122225012212110520813069900000000000000000000000000000000000000000000000000000000000000000000001360000000000000 -T320230111111914327120200513WT@BY9WY022222122206398100000000120180327WT@#B#0#@12222122206398100000000 -T12023011111191451420600407031120213110611300000000051805280070000000000000000000000000000000000222222000000002229012 -T2202301111119145141219930904WT@B@ZP#92222222222221012213120085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111914514120210207WT@00PZ@#21222212204398100000000 -T12023011111191454320600401561120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119145432219900512WT@0T@9WW2222211222211012209110461413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111914543120110507WTTZ909PT22222112204305100000000120080412WT@#BYTBW22222112204307100000000 -T12023011111191460021000408061120213110611300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111119146001219920323WT@TZ0Z##2222212222221012211110550523011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111914600120170407WTTZYZZYB22222112204398100000000 -T12023011111191468022000408891120213110548300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111119146801219960912WT@YZ9TPB2221221222221012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111914680120140922WTT0990##22222212204301100000000 -T12023011111191479221000403201120233120000300000000000004170950000000000000000000000000000000000222222000000002229022 -T2202301111119147923219520322WT@WZYWZ@2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000015000002080000000000000 -T320230111111914792120100314WTTZ@0B#W22222112206306100000000 -T12023011111191495323300410111120513111199300000000000008880060000000000000000000000000000000000222222000000002229012 -T2202301111119149531219860714WTTPZTBZZ2222211222224012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111914953120090712WT@P@WY#B22222122204306100000000120080512WT@T99BY#22222112204308100000000 -T320230111111914953120170727WT@0WZB@W22222112204398100000000120140404WTTPZP9T922222122204302100000000 -T12023011111191497025900406651120333120000118650000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119149703219570924WT@0YPYW92222212222223012213110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111914970120210904WTT@B99WB22212122206398100000000120200404WTTTY@P#922212122206398100000000 -T12023011111191504724700406702120323210766300000000000206540020000000000000000000000000000000000222222000000002229032 -T2202301111119150471219900907WT@@#TPW@2222212222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119150471219850904WT@9TZ#9Y2222211222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111915047120130913WT@9TPY9W22222122204302200000000 -T12023011111191515925900402631120312110766118630000000006540450000000000000000000000000000000000222222000000002229012 -T2202301111119151591219930518WT@BW#WPZ1222212222221012212110461423011700000000000000000000000000410000000000000000000000000000000000000000000000000000000000 -T320230111111915159120200101WT@P@W9WT22222122204398100000000120190401WT@#BWZZ022222112204398100000000 -T12023011111191518624200405921120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119151863219390907WTT0@99Z91222222122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002066000000000000 -T320230111111915186120050426WT@99T@TT12222212206311100000000 -T12023011111191526920600402131120213110611300000000000003160130000000000000000000000000000000211122222000000012219012 -T2202301111119152691219890111WT@0ZY09Y2222211222221012211110184223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111915269120110312WTT#ZP#0B22222112204304100000000 -T12023011111191536422000405841120323110835300000000002506540030000000000000000000000000000000000222222000000002229012 -T2202301111119153641219950905WT@B9@9#B2222212222222011212210114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119153641219880923WT@090TBT2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111915364120170204WT@#9Z#Z022222112204398100000000 -T12023011111191549922000407231120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111119154991219830121WTT#BPY902222212222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111915499120140711WT@WTB@YW22222122204398100000000120120313WTTZW90P022222122204302100000000 -T12023011111191551423500411471120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119155142219900313WTT0#9@Z@2222212222211012203190134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111119155142219850413WT@YTWPTW2222211222211102209190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111915514120150123WT@9P#@0022222112204301100000000 -T12023011111191552122000413731120233120001300000000000008340870000000000000000000000000000000000222222000000002229022 -T2202301111119155213219860723WT@Z0PB#02221221222225012216110105013069900000000000000000000000000000000000000000000000000000000000000640000000000000000000000 -T320230111111915521120090707WT@9BBYB922212222207307100000000 -T12023011111191560120600412561120213110611300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111119156011219820407WT@0Y#Z9Y2122221222222012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000140 -T320230111111915601120210302WT@ZZ#90T21222222204398100000000 -T12023011111191575624700406701120522111116300000000000008880080000000000000000000000000000000000222222000000002229012 -T2202301111119157561219820126WTTW@0B9Y2222212222221011216110520823011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111119157561219680727WTT#Y9PT#2222211222224011212190243623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111915756120050704WTTY9T#PY22222122204311100000100 -T320230111111915756120210127WT@PT#B@T22222112204398100000000120200423WTTYTTTYP22222122204398100000000 -T12023011111191582924100414321120513110354300000000000008880250000000000000000000000000000000000222222000000002229012 -T2202301111119158291219780304WT@9TPY9W1222222222225012203910243623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111915829120110322WT@9TPY9W12222222204303900000000120110322WT@9TPY9W12222222204303900000000 -T320230111111915829120190726WTTY@B9TB12222222204398100000000120160301WT@9TPY9W12222222204398900000000 -T12023011111191609420600402141120513111034300000000004507710210000000000000000000000000000000000222222000000002229012 -T2202301111119160942219890308WT@YYBT9P2222212222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119160941219880102WT@0@####2222211222222022212190421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111916094120120307WTT@99WW022222112204302100000000 -T320230111111916094120150326WT@909B9T22222112204398100000000120130327WT@@9T@Y022222122204301100000000 -T12023011111191612623500414281120213110611300000000000205280120000000000000000000000000000000000222222000000002229012 -T2202301111119161261219790907WT@YP@YYB1222212222225012213110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111916126120140927WT@WTBB9B12222122204301100000000 -T12023011111191624020600400871120213110611300000000000005280350000000000000000000000000000000000222222000000002229012 -T2202301111119162401219860722WTTTZ#TPY2222212222223012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111916240120060321WTTTYYWZT22222112204304100000000 -T12023011111191627322000404841120513111211300000000000007710320000000000000000000000000000000000222222000000002229072 -T2202301111119162732219790704WTT@9PP992221222222225012213110690013051400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111916273120110105WTTPZ@TP@22212212204305100000000120100122WT@P@TTPZ22212212204306100000000 -T320230111111916273120140927WT@PYYPYY22212212204302100000000120130421WT@9B@WWY22212222204304100000000 -T12023011111191632922000407831120213110611300000000000005280190000000000000000000000000000000000222222000000002229012 -T2202301111119163291220010305WT@9TP0BP2221222222221012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111916329120210109WT@Y9@WZP22212212204398100000000 -T12023011111191637920600400871120213110611300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111119163791220010901WTTWWWB#Y2222212222222013212290045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119163795219980223WT@WBTPWP1222211222222023212290006011069945000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111191640322000403891120413111034300000000050007710360000000000035002000000000000000000222222000000002229012 -T2202301111119164031219930914WTT#TP0PT2222122222225012216110332723011800000000000000000001000000000000000000000000000000000000030000000000000000000000000000 -T320230111111916403120170205WT@#W99YZ22221222204398100000000 -T320230111111916403120190727WTTPWW9TY22221212204398100000000120180902WT@#PT@#P22221222204398100000000 -T12023011111191643423500404821110233110306300000000000002950010000000000000000000000000000000000222222000000002229021 -T2202301111119164343219970412WTTZ9@@#W2221212222221012298110006011069933000000000000000000000000000000000000000000000000000000000000321000000000000000000000 -T320230111111916434120050711WTTBBZZY@21212112207309100000000 -T12023011111191649224200414851120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111119164921219770412WTTT9P#T#2222212222222012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111916492120110327WTTB00@TZ22222122204304200000000 -T12023011111191655022000412971120312110835142760000015006540050000000000000000000000000000000000222222000000002229012 -T2202301111119165501219910918WT@TTWTYT2222222222221012216110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000001268 -T320230111111916550120220921WTTPP9@YW22222212204398100000000120200218WT@#ZZ@YZ22222222204398100000000 -T12023011111191661123500411471120213110611300000000110003250060000000000000000000000000000000000222222000002032219012 -T2202301111119166111219890112WTTWB0BYT2222212222221012213110065421011813000000000000000000000000000000000000000000000000000000000000080800000000000000000000 -T320230111111916611120160501WT@0P9P@022222122204398100000000 -T12023011111191665525200407301120213110611300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111119166551219960727WTT#BY@Y#2222212222223012209110075323010100000000000000000000000000000000000000000000000000000000370000000000000000000000000000 -T320230111111916655120220327WT@9TPY9W22222122204398100000000 -T12023011111191677824700409321110213110576300000000000003910010000000000000000000000000000000000222222000000002229012 -T2202301111119167781219930404WTTP000ZP2222212222221012216110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111916778120220318WT@@9#9@B12222112204398100000000 -T12023011111191681424200414851120233110611300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111119168145219690913WT@@0TZB92222212122225012212120006013109900000000000000000000000000000000000000000000000000000000000000000000001244000000000000 -T320230111111916814120120704WT@9TYW9B22212222209304100000000 -T12023011111191700325600403771120233110516300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111119170033219710701WT@@YZ9ZP2222212222225012209110065413069900000000000000000000000000000000000000000000000000000000000000137600000000000000000000 -T320230111111917003120080701WTTY#0#T@22222112206306100000050 -T12023011111191738325000413201120333120000300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111119173833219670911WT@BTBW0Y2222212222222012216110223811069941000000000000000000000000000000000000000000000000000000000000437800000000000000000000 -T320230111111917383120220213WT@9TPY9W21222222208398100000000120190404WT@PT0@YZ22222112208398100000000 -T12023011111191745421200413221120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119174543219400105WTTTYPW##2222212122224012212110006013129900000000000000000000000000000000000000000000000000000000000000000000001875000000000000 -T320230111111917454120060723WTT#Z#TBP22222112206309100000000120060723WT@TTBZP022222112206309100000000 -T12023011111191746420800405141120313110740300000000000205280140000000000000000000000000000000000222222000000002229012 -T2202301111119174641219830522WT@#BW##W2222212222221012213110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111917464420120127WT@0@BBW#22222112104304108840000120060701WT@B@@ZTP22222122204310100000000 -T12023011111191746724700409321120213110548300000000030005280060000000000000000000000000000000000222222000000002229012 -T2202301111119174671219750412WT@P@ZB@#1212222222225012213110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111917467120060107WT@P0W9YW12221212204310100000000 -T12023011111191747322000407241120313110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111119174731219860905WT@#@90P92222212222225012213210035723011800000000000000000002000000000000000000000000000000000000240000000000000000000000000000 -T320230111111917473120100901WT@P#0ZZW22222122204306200000000120100901WT@0T@BW922222112204306200000000 -T12023011111191752320600409771120213110611300000000237705280310000000000000000000000000000000000222222000000002229072 -T2202301111119175231219660113WTTPTTTYB2222212222225012215110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111917523120080927WTTPZY##T22222112204307100000000 -T12023011111191756424100402401120333110740300000000000005280950000000000000000000000000000000000222222000000002229022 -T2202301111119175643219710911WT@@T0#9W2222212222225012210110312911069940000000000000000000000000000000000000000000000000000000000000258000000000000000000000 -T320230111111917564120120402WTTT@Y9@#22222122206304100000000120100401WT@WY#PBZ22222122206306100000000 -T12023011111191761922000406191120332110740300000000000005280440000000000000000000000000000000000222222000000002229022 -T2202301111119176193219820727WTTW#W@T92221222222211012210110174313069900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111917619120160227WTTT0Z0Z022212212209301100000050120100704WT@W9@WW#22212222209306100000050 -T12023011111191771922000404691120212110306300000000000003160550000000000000000000000000000000211122222000000012219072 -T2202301111119177191219910113WT@YW0#T#1221212222221012210110640023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111917719120070527WT@PBP0#022222212204308100000000 -T12023011111191775925600411701120213110611300000000055605010380000000000000000000000000000000000222122002600012219012 -T2202301111119177591219900327WT@ZWTPBZ2222212222221012216110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111917759120120112WTT0TYBYW22222212204303100000000 -T12023011111191783022700413181120213110576300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111119178301219960718WT@YBBP##2222212222221012212110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111917830120190107WT@@00##@11222212204398100000050 -T12023011111191790125900402722120213210598300000000000003280030000000000000000000000000000000000222222000002002219032 -T2202301111119179011219970105WT@9TPY9W1222222222221012207920006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000200 -T320230111111917901120150113WT@9TPY9W12222212204301900000000 -T12023011111191803722000412231120212110611300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111119180371219810104WTT9PWW#W2221222222221012212110441623011800000000000000000000100001000000000000000000000000000000000000000000000000000000002056 -T320230111111918037120100923WT@@B@T#B22212222204304100000000 -T12023011111191808124600411871120213110516114720000000004170060000000000000000000000000000000000222222000000002229072 -T2202301111119180811219820304WTT090BTZ2222212222223012211111270023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918081520190708WTT9WT0P912222122104398106710000 -T12023011111191809420800405391120312110785108330000000006540670000000000000000000000000000000000222222000000002229072 -T2202301111119180941219770718WTT@W#TZB2222122222221012216110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918094120150204WT@09@0#Z22221222204302100000000120120223WT@9TWT@P22222112204304100000000 -T12023011111191814324200403511120512111116300000000000008880080000000000000000000000000000000000222222000000002229072 -T2202301111119181431219820404WTTT#ZB#02221222222221012212121280023011400000000000000000000000000000000000000000000000000000000000000000000000000000000001658 -T320230111111918143120100526WTTB@W9P022212122204305100000000120080918WT@B9Z0P022212122204307100000000 -T320230111111918143120130227WTTT0BYZ#22212112204302100000000120110323WT@PP#PT922212122204303100000000 -T12023011111191818022900405641120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119181803219590701WTTTWYW0Y1222212222221012211120006011069932000000000000000000000000000000000000000000000000000000000000247100000000000000000000 -T320230111111918180120080907WTTP#T@T@12222212206308100000100120050513WT@T0P#@#12222212206310100000000 -T12023011111191823720600402131120213110611300000000007000710120000000000000000000000000000000000222222000004572219012 -T2202301111119182371219970114WTT@P9@Z@1222212222221012212110184221011813000000000000000000000000000000000000000000000000000000000000091300000000000000000000 -T320230111111918237120150102WT@TPZ#Z012212212204301100000000 -T12023011111191824125900402831120213110598300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111119182411219910427WT@ZYT@BY1222221222225012210110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918241120190407WT@009YYW12122222204398100000000 -T12023011111191831420800410781120313110766123860000000006540470000000000000000000000000000000000222222000000002229012 -T2202301111119183141219990727WTTWTYWZ@2222212222221012210110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918314120210921WT@ZB@P#022212122204398100000000120180323WTT@B#@9T12222112204398100000000 -T12023011111191833324200414721120213110591300000000000003140020000000000000000000000000000000000222222000002142219012 -T2202301111119183331219970301WTT9PYPPZ1222222222221012212110035721011823000000000000000000000000000000000000000000000000000000000000042700000000000000000000 -T320230111111918333120160912WTT9W90Z912222112204398100000000 -T12023011111191850125000413201120723111480300000000000011650030000000000000000000000000000000000222222000000002229012 -T2202301111119185011219850926WT@#9W0@@2222211222222011211290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119185011219860911WT@@0ZZ0W2222212222222021211290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918501120080327WTTYZ9TBW22222112204309200000000 -T320230111111918501120130123WT@PWPYYB22222122204303200000000120110923WTTB#0B@B22222112204305200000000 -T320230111111918501120170408WTT900BBY22222112204398200000000120150409WT@T9@9##22222112204301200000000 -T12023011111191853121000404881120213110370300000000000001220020000000000000000000000000000000000222222000004062219012 -T2202301111119185311219880704WTT#ZTW@Z2222212222223012211110075321011730000000000000000000000000000000000000000000000000000000000000081000000000000000000000 -T320230111111918531120210727WTTZB#WW@22222122204398100000000 -T12023011111191854320600414251120312110542300000000000003920180000000000000000000000000000000261122222000000012219012 -T2202301111119185431219900226WTT@PW@0Z2222211222221012211110253523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918543120120227WTT#TPZ@@22222112204303100000000120080426WTTTBBPBW22222112204307100000000 -T12023011111191855322000406271120213110611300000000050005280270000000000000000000000000000000000222222000000002229012 -T2202301111119185531219690212WTT0#B0ZZ2222212222225012216120213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918553120060107WTTW#9#TT12212222204309100000000 -T12023011111191859220200410361120313110830300000000000003590060000000000000000000000000000000000222222000002952219012 -T2202301111119185921219800514WT@WB0YW92222212222223012216110065421011819000000000000000000000000000000000000000000000000000000010000117900000000000000000000 -T320230111111918592120130418WT@9TPY9W22222122204304100000000120100126WTT@#P9P022222112204307100000000 -T12023011111191860024200404701120313110835300000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111119186001219860424WTTWY9W9P2122222222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918600120210126WTTYY0#YY21222222204398100000000120190908WTTZ#BTW#21222212204398100000000 -T12023011111191862320600414771110523111116300000000000001890010000000000000000000000000000000000222222000000002229012 -T2202301111119186231219830307WTTT0YP9P2222212222222011214190184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119186231219800305WT@PYZ9Y#2221221222222021213190025821011801000000000000000000000000000000000000000000000000000000000000087200000000000000000000 -T320230111111918623120070211WTTW0ZPZZ22212122204310100000000 -T320230111111918623120130401WTTT9BZ@022212112204304100000000120110401WT@9#0YPP22212112204306100000000 -T12023011111191870324500403051120433110893300000000000006540070000000000000000000000000000000000222222000000002229022 -T2202301111119187033219560521WTTZWYPY02222212122222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001354000000000000 -T320230111111918703120080723WTT0Z@Z@Z22222112206306100000000 -T320230111111918703120140221WTT#BB9YT22222122206301100000050120110123WTTT#Z09W22222122206304100000000 -T12023011111191870420600402141120313110817300000000000006540200000000000000000000000000000000000222222000000002229072 -T2202301111119187041219750105WTTPTB0#P2222212222221012212110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918704120200314WTTPTP@9#22222112204398100000000120150126WT@0ZB@9B22222112204301100000000 -T12023011111191879922100409491120232110516300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111119187993219600226WTTTTTTP@2222122122213012211110660013069900000000000000000000000000000000000000000000000000000000000000000000000519041500000000 -T320230111111918799120160727WTT@ZZ0W@22221222207398100000000 -T12023011111191883323900408801120512111116300000000000208880180000000000000000000000000000000000222222000000002229012 -T2202301111119188331219920512WT@@9Y#W02222212222225012216110461423011800000000000000000000000000190000000000000000000000000000000000000000000000000000000000 -T320230111111918833120140308WTTWYPBBY22222112204302100000000120120322WT@#Y@09P22222112204303100000000 -T320230111111918833120180714WT@YTY@@T12222122204398100000000120160109WTT@YB90012222212204398100000000 -T12023011111191887124200403941120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111119188711219870721WTTTYTZT02222212222223012214210085223011800000000000000000001000000000000000000000000000000000000030000000000000000000000000000 -T320230111111918871120170108WT@BYB#@Y22222112204398200000000 -T12023011111191892224900404261120413110991119200000500005960100000000000000000000000000000000000222222000001752219012 -T2202301111119189221219860107WT@@BBZ#92222212222221012216110204021011703000000000000000000000000220004000000000000000000000000220000035000000000000000000000 -T320230111111918922120140123WT@@Y900912212112204303100000000 -T320230111111918922120210127WTTPW#@P#12222112204398100000000120170712WT@ZTPWYW12212112204398100000000 -T12023011111191894920700402051120313110598300000000000005880060000000000000000000000000000000000222222000000002229012 -T2202301111119189491219980926WT@ZP@BTW1222212222221012216110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918949120220723WT@9TPY9W12222112204398100000000120210909WTTTWBT#012222112204398100000000 -T12023011111191895520300400971120333110704300000000000005280970000000000000000000000000000000000222222000000002229022 -T2202301111119189553219670422WTT@9TW0Y2222212122215012212110970013069900000000000000000000000000000000000000000000000000000000000000000000000630030400000000 -T320230111111918955120100927WT@ZWZ9@922222112206305100000000120080202WTT9#9T@Y22222112206307100000000 -T12023011111191895723500408282110213210559300000000000004760010000000000000000000000000000000000222222000000002229032 -T2202301111119189571219700318WTT@9YB@#2222122222223012203910055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918957120080304WTT#Z0YP@22221212204308900000000 -T12023011111191896925600414551120113110376300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111119189691220000121WT@T9Y@TT2222212222221013212190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111191897125900403711110323110670300000000000002950090000000000000000000000000000000000222222000000002229012 -T2202301111119189711219800208WT@0BP0YT2222212222221011212190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119189711219730421WT@Y09PZ#2221211222221011211190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918971120120112WTTTWWZP022222212204303100000000 -T12023011111191899722600411371120733111199300000000225008880030000000000000000000000000000000000222222000000002229022 -T2202301111119189972219940412WT@YYBT9P1222212222222012210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119189972219880927WT@YYBT9P1222221222222022209990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111918997120100914WT@0B0YZT12222222204304100000000 -T320230111111918997120150501WTT##T0B@12222212204398100000000120120913WTTYBY0Z#12222212204303100000000 -T320230111111918997120220212WTT#0W@WY12222212204398100000000120190912WT@BW##B012222212204398100000000 -T12023011111191938924200414852110232210210300000000000000260010000000000000000000000000000000000222222000000002229021 -T2202301111119193893219600111WT@TY#0PW2222212222222012216110352511069923000000000000000000000000000000000000000000000000000000000000206500000000000000000000 -T320230111111919389120140726WT@9TPY9W22222122206302200000000 -T12023011111191940322000414461120213110599300000000000003160210000000000000000000000000000000211122222000000012219012 -T2202301111119194031219920507WTT9B@YZB1222222222221012212110223823010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111919403120200514WT@9PP#WZ12222212204398100000000 -T12023011111191942925900402831120313110766300000000000006540350000000000000000000000000000000000222222000000002229012 -T2202301111119194291219910304WT@TWZW#T1222212222221012212110352523010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111919429120090312WT@PWZW#W12222222204306100000000120070907WT@#W9@W912222222204308100000000 -T12023011111191943423500411471120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111119194341219940504WT@0PTZZ02222212222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111191944320600411031120212110598300000000100005280600000000000000000000000000000000000222222000000002229072 -T2202301111119194431219670126WTTWPBTBZ2222212222225012216110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111919443120090918WTT9BZTWB22222122204306100000000 -T12023011111191953924200414721120233110376300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119195392219970312WT@YYBT9P1222222222223012212920006011079924000000000000000000000000000000000000000000000000000000000000161600000000000000000600 -T320230111111919539120200402WTTWY0T0012222222204398100000000 -T12023011111191956320800414151120513111199300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111119195631219910102WTTY0B@T@2222211222223012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111919563120100112WT@WBZBPY12222112204306100000000120070727WTT@90@@#12222112204308100000000 -T320230111111919563120190207WT@TYYBZ912222112204398100000000120170726WT@#ZP0PP12222112204398100000000 -T12023011111191958420800411991120213110611300000000010004790620000000000000000000000000000000000222222000000492219072 -T2202301111119195841219930327WT@@Z#T#@2222212222221012212110630021011802000000000000000000000000000000000000000000000000000000450000009700000000000000000000 -T320230111111919584120180223WT@WPZ@WT22222112204398100000000 -T12023011111191960022000411981120332110740300000000000001150990000000000000000000000000000000000222222000004132219022 -T2202301111119196003219590522WTTPPB9092221222122225012216120233713069900000000000000000000000000000000000000000000000000000000000000000000001201000000000000 -T320230111111919600120120327WTTZ@ZZ0Y22212222206304100000413120070312WT@WWY99@22212222206309100000000 -T12023011111191964425200407301120313110766300000000050003920130000000000000000000000000000000261122222000000012219012 -T2202301111119196441219640702WTTBY@ZZ02222211222223012213110233723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111919644120120305WT@Y@W0ZB22222112204302100000000120100708WTT00#ZZ922222122204304100000000 -T12023011111191964620600412681120213110598300000000007005280090000000000000000000000000000000000222222000000002229012 -T2202301111119196461219810709WTTZBZB0P2222212222225012212120105023010900000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111919646120180513WT@0P##Y#22222122204398100000000 -T12023011111191965520400409801120233110516300000000000001560310000000000000000000000000000000000222222000002612219022 -T2202301111119196553219790104WT@Y0BBZ92222212222221012216110006011069904000000000000000000000000000000000000000000000000000000000000252900000000000000000000 -T320230111111919655120100213WTTY9P##P22222112207306100000283 -T12023011111191969924200403511120313110542300000000000003920090000000000000000000000000000000261122222000000012219012 -T2202301111119196991219730414WTTPB00YZ2222211222221012212110105023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111919699120100104WTT@B0#PP22222212204304100000000120070724WT@ZZYYWB22222222204308100000000 -T12023011111192004524700409381120312110766300000000082706540990000000000000000000000000000000000222222000000002229072 -T2202301111119200451219780223WT@9B@BY92222212222223012216111130023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920045120130104WT@ZYT@B922222122204302100000000120120409WT@YPY#TZ22222122204304100000000 -T12023011111192009422600405051120313110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111119200941219990223WTT#0@ZZP1222221222221012209110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920094120180702WTTT0YZY@12222212204398100000000120160501WT@9#WBPT12222222204398100000000 -T12023011111192015320600414871110313110740300000000030004000260000000000000000000000000000000000222222000002702219012 -T2202301111119201531219900512WTTWPYP#T2222212222221012212120421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920153120190713WT@9#ZZPZ22222122204398100000000120130323WT@W9TTP922222122204302100000000 -T12023011111192017820800411991120313110835108470000035006540290000000000000000000000000000000000222222000000002229012 -T2202301111119201781219910311WT@YPB#Z@2222212222225012216110520821011816000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111920178120210304WT@9P0Y##12222122204398100000000120110514WTT0#090W21222212204304100000000 -T12023011111192019024700405901120313110766120540000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111119201901219940101WTT#0TW9@2222212222222012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920190120180901WTTBZBPPW12212212204398100000000120140723WTTPBPW@Z12222112204301100000000 -T12023011111192023024200409731120213110598300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111119202301219950405WTT00@#B@2222212222221012212210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920230120140512WTT9YTZ@922222122204305200000000 -T12023011111192027423700414331120623111268300000000300010090050000000000000000000000000000000000222222000000002229012 -T2202301111119202741219740914WT@T09#TP2222211222222011208290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119202741219760923WTTZ##0TT2222212222222021208290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920274120080912WT@#PZ#PY22222112204308200000000120060213WTTWB@#P@22222122204309200000000 -T320230111111920274120120127WTT@PW#PZ22222122204304200000000120100121WTTP99BT022222112204306200000000 -T12023011111192030524500403051120213110611300000000071305280200000000000000000000000000000000000222222000000002229012 -T2202301111119203051219980322WT@ZTYBPY2222212222221012216110213923011400000000000000000000000000000000000000000000000000000000350000000000000000000000001329 -T320230111111920305120140323WTT90Z0Y#22222122204302100000000 -T12023011111192033425900402831120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119203342219750107WT@BT@Y#Z2222212222211012211110580213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111920334120070407WT@Y@BBBB12222122204309100000050 -T12023011111192033820600402131120233120000300000000004504170400000000000000000000000000000000000222222000000002229022 -T2202301111119203383219840707WTT9TT0Y#2222212212222012298110006013079900000000000000000000000000000000000000000000000000000000000000667300000000000000001168 -T320230111111920338120080413WTT9WYBBY21222122209309100000050 -T12023011111192034922000412011110413110939188160000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111119203491219950923WTT#YYTY02221222222225012212120233723011800000000000000000000000000000000000000150000000000000000000000000000000000000000000000 -T320230111111920349120170518WTT#TBZ0W22212222204398100000000 -T320230111111920349420200322WT@W#@9#B21222212104398107880287120190726WTTWT#YB@21222212204398100000100 -T12023011111192036020800405391120212110611300000000000005280960000000000000000000000000000000000222222000000002229072 -T2202301111119203601219750309WT@9P#BW#2222212222221012213110960023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920360120080422WT@PYP#Y#22222122204307100000000 -T12023011111192041520600409821120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111119204151219960111WTTWZZ@#@2222212222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111192053924200411401120113110396300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111119205391220010311WTT@WWWYW2222212222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111192057822000407241120413110939300000000001507710040000000000000000000000000000000000222222000000002229012 -T2202301111119205781219960718WTTY#Y@ZY2222122222223012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920578120160312WT@@YT#T022221222204398100000000 -T320230111111920578120180318WT@ZTBP@W22221212204398100000000120170323WT@T9WTP022221222204398100000000 -T12023011111192073523900408801120213110516300000300000000010450000000000000000000000000000000000222222000000002229012 -T2202301111119207351219990904WTTY#0ZT#2222212222221012212110451511011711110000000000000000000000000000000000000000000000000000030000136100000000000000000000 -T320230111111920735120190204WTT9@PY9022222112204312100000300 -T12023011111192074022000407241120413110761300000000000003870940000000000000000000000000000000308122222000000762219072 -T2202301111119207401219840504WTT#WT@T02221222222221012212110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920740120050701WT@ZYZ#@Y22212222204310100000000 -T320230111111920740120120101WT@#@Z0WP22212222204303100000000120090101WTT99WZZY22212222204307100000000 -T12023011111192077025200407301120333110611300000000000005280610000000000000000000000000000000000222222000000002229022 -T2202301111119207702219860104WT@YYBT9P1222222222221012205910035713079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920770120120911WTT0@BP0@12222122204304100000000120080118WTT#0W99912222222204307100000000 -T12023011111192079724200407311120313110835300000000002005880230000000000000000000000000000000000222222006500012219012 -T2202301111119207971219890224WT@YBP@BP2222212222225012216110243623010900000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111920797120120324WTTZB0TP#22222112204303100000000120110512WTT9#ZZT#22222112204305100000000 -T12023011111192082624100402401120413111034300000000001404620030000000000000000000000000000000308122222000000012219072 -T2202301111119208261219920109WTT9#ZP0#1222212222223012211110770023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920826120100926WT@@ZT0T@12222122204305100000000 -T320230111111920826120150721WTTBTW0Z@12222112204398100000000120140427WT@##WZPT12222122204302100000000 -T12023011111192084220800405141120333110826300000000000006540760000000000000000000000000000000000222222000000002229022 -T2202301111119208421219780914WTT#9#YWZ2222212222225012213110770023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111920842120110524WTTPT#TWW22222112204305100000000120110524WT@@ZB@0#22222112204305100000000 -T12023011111192099524600411871120232110516300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111119209952219810112WTTY#TTY92222212222213012211110920013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111920995120090123WTTBWTB@Y12222122204307100000000 -T12023011111192105924700410421120233120000300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111119210593219590414WT@9TTP9W1222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000734000000004500 -T320230111111921059120060301WTTBP9#PT12222112206309100000050 -T12023011111192109422000410052120323210766300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111119210941219910918WT@9TPY9W1222222222222011214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119210941219980427WT@9TPY9W1222221222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111921094120210122WT@9TPY9W12222112204398200000000 -T12023011111192116020600400872120422211034300000000000007710050000000000000000000000000000000000222222000000002229032 -T2202301111119211601219890226WT@0YB9P02222211222225011215210065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119211601219920721WT@YZT@B02222212222225011213290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111921160120120327WTTZT#0ZZ22222112204304200000000120070523WTT@ZPP@B22222122209310200000000 -T12023011111192121320600402141120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119212131219800322WT@W9#0P#2222212222225012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111921213120100409WTTYTZZBB22222112204307200000000 -T12023011111192121822000410051120233110539300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119212183219800923WTT#@TTW@2222212222221012212110006011069911000000000000000000000000000000000000000000000000000000000000104000000000000000000000 -T320230111111921218120130323WT@#WP#0P22222122207302100000000 -T12023011111192121922600405051120213120000300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111119212191220010702WTT@#@00W1222222222221012216110124823011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111921219120170413WT@0W9WB#12222122204398100000464 -T12023011111192125025800408081120233120000300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111119212503219750402WTTBTB#BP2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000324700000000000000000000 -T320230111111921250120060301WT@@B99YZ12222112207307100000000 -T12023011111192127422000410051120212110611300000000000005280310000000000000000000000000000000000222222000000002229012 -T2202301111119212741219970111WTT0PTZ0P2221222222221012209110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111921274120160923WT@ZYYYTT22212222204398100000000 -T12023011111192137023700414331120233110376108710000033004170050000000000000000000000000000000000222222000000002229022 -T2202301111119213702219990912WT@YYBT9P1222212222223012212910006011079941000000000000000000000000000000000000000000000000000000000000268600000000000000000000 -T320230111111921370120180408WTTY#9WYP12222122204398100000000 -T12023011111192154924700405831120213110576300000000190005280150000000000000000000000000000000000222222000000002229012 -T2202301111119215491219850402WT@T#BBBP2222211222225012213110164423011400000000000000000000000000000000000000000000000000000000020000000000000000000000000050 -T320230111111921549120080127WT@9TYWB#22222112204308100000000 -T12023011111192155524700409381120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111119215551219890426WTT#YP@WB2222212222221012212110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111921555120210923WTT@ZY0ZP22222122204398100000000 -T12023011111192172825200410591120333120000300000000000005280340000000000000000000000000000000000222222000000002229022 -T2202301111119217283219630122WT@@@BY0W2222212222222012208110006013069900000000000000000000000000000000000000000000000000000000000000363500000000000000000000 -T320230111111921728120080123WT@0TT@9B22222112206308100000000120060414WTTPT0WB922222122206310100000000 -T12023011111192175122700407441120233110507300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111119217513219950305WTTWWTT9P2222212222223012212110006011069930000000000000000000000000000000000000000000000000000000000000187200000000000000000000 -T320230111111921751120070926WT@YZ9@@Z22222112207309100000000 -T12023011111192179424200402501120233120000300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111119217943219530908WTTBT0BYY2221212122222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000002352000000003100 -T320230111111921794120050907WTT#Y0@#@12212222206311100000000 -T12023011111192181722000411551120212110598300000000000004750480000000000000000000000000000000000222222005200012219012 -T2202301111119218171219770502WTTP@9T9P2222212222225012212220560423010900000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111921817120110426WTT9B#PP@22212212204305100000000 -T12023011111192183122000400461120213110588300000000000001840260000000000000000000000000000000140122222002601782219012 -T2202301111119218311219750424WT@Y90W0P2221221222223012212110273323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111921831120080727WT@09T##Z22212222204306100000227 -T12023011111192186225900402121120523111199300000000000308880080000000000000000000000000000000000222222000000002229012 -T2202301111119218621219800311WTTTZ#TY#2222211222221011210190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119218621219970918WTT#YPBZ02222212222221011211190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111921862120170721WT@TPWBW@22222122204398100000000 -T320230111111921862120210923WTT@0@W@T22222122204398100000000120190512WTT@T@TPP22222122204398100000000 -T12023011111192199421700406141120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111119219941219870726WT@BW#P#P1222221222221012211110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111921994120190312WTT@TT##@12222212204398100000000 -T12023011111192202325900406081120233110516300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111119220233219610401WT@BWZ#0@2122222122211012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000571027100002857 -T320230111111922023120110422WT@WBYWT#21222212209305100000121 -T12023011111192213025900406081120232120000300000000000001660990000000000000000000000000000000000222222000002512219022 -T2202301111119221303219680727WT@#0T0#@2122222222225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000131 -T320230111111922130120080121WTTWZ@ZZ#21222212207307100000251 -T12023011111192228124700403421120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111119222811220000113WT@PBTP@Z2221222222221013211190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111192234424700406701120323110766300000000050006540040000000000000000000000000000000000222222000000002229012 -T2202301111119223441219810908WT@9PB@TT2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119223441219810927WT@#PZZ0Y2222212222222021215290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111922344120170526WTT0#WYY022222122204398200000000 -T12023011111192237122000409871120113110376300000000000004170030000000000000000000000000000000000222222000000002229072 -T2202301111119223711219830304WT@09WZTB2221222222221013212210880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111192264222000409871120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119226423219470704WT@#T@TWZ2221222122221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001284000000000000 -T320230111111922642120050223WT@#WPZBW22212222206310100000000 -T12023011111192266021000411361120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119226602219740426WTTBB#0WP2222212222211012211110382213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111922660120070323WT@Y@W90B22222122204306100000000 -T12023011111192288924200404701120213110557300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111119228891219830702WTT9#TB0P2221222222225012211110411921011935000000000000000000000000000000000000000000000000000000000000230000000000000000000000 -T320230111111922889120040121WTTTZ#YB022212222204312100000000 -T12023011111192291723500411471120213110598300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111119229171219890718WT@PB0YYP2222212222223012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111922917120220926WT@WTWP9@22222122204398100000000 -T12023011111192300520800414651120213110611300000000001205280450000000000000000000000000000000000222222000000002229072 -T2202301111119230051219780923WT@B0WBZ@1222222222221012212110620023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923005120080114WTT#9TTYY22222122204308100000000 -T12023011111192324821400408021120633120000300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111119232483219940718WT@PW0Z@Y1222212222221012211110006011069943000000000000000000000000000000000000000000000000000000000000419400000000000000000000 -T320230111111923248120080314WT@ZPWTBY12222122208307100000033 -T320230111111923248420120323WT@909TY012222112204303100000000420090327WTTY@0Y9012222112108306105173922 -T320230111111923248420180114WTTY#@YT912222112204398100000000120130509WT@Y990PP12222122208302100000033 -T12023011111192326120600407031120313110766300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111119232611219860123WT@Y0WW002222222222221012213110164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923261120220127WT@P0Z@PP22222212204398100000000120120312WTT#9BWTP22222212204302100000000 -T12023011111192348723500410671120113110235300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111119234871220030526WT@PP0W9Y2222122222221013212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111192359721000408061120513120000300000000000005320350000000000000000000000000000000355122222000000012219012 -T2202301111119235971219880113WTTZTBY@W2122222222221012212120451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923597120120526WTTWP#90#21222222204304100000000120070212WT@90Y9T#21222222204309100000000 -T320230111111923597120150426WTT#ZBPPP21222222204301100000000120150426WT@@TZ99Y21222222204301100000000 -T12023011111192366923500407161110323110396300000000000001530010000000000000000000000000000000000222222000000002229012 -T2202301111119236692219700505WT@#BPWB92222211222222011216290015913051800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119236691219800218WTTPTZTB92222212222222021213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923669120100927WTTP9#P0#22222122204305200000000 -T12023011111192370723500410671120213110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111119237071219970312WT@YY@Y@W2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923707120190123WT@W@WW0022222122204398100000000 -T12023011111192372722000410051120312110814300000000000003920650000000000000000000000000000000261122222000000012219072 -T2202301111119237271219950926WT@@WB@@Z1222222222221012211110660023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923727120180723WTT##9Y#B12222112204398100000000120180411WT@WZZ9BB12222112204398100000000 -T12023011111192375822000412691120213110619300000000400005280140000000000000000000000000000000000222222000000002229012 -T2202301111119237581219750901WT@TZW09Z2222212222225012213110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923758120090105WT@9@Z0T@12222112204308100000000 -T12023011111192385124200403511120313110776300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111119238511219880423WTT#0#9PB2222212222221012209110520823011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111923851120120227WTTBTY#PY22222122204303100000000120090112WT@Y99TTT12222212204305100000000 -T12023011111192394224200414021110213110516300000000000502040030000000000035001000000000000000000222222000000002229012 -T2202301111119239421219920122WT@TZTYW@2222212222221012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923942120120307WTTYZW@YY22222112204302100000000 -T12023011111192397124700409321120233110376300000000000004170340000000000000000000000000000000000222222000000002229022 -T2202301111119239712219680713WT@YYBT9P1222222222221012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111923971120050302WT@9TP0W#12222212204311100000000 -T12023011111192400122700401571120413110951300000000000007710550000000000000000000000000000000000222222000000002229072 -T2202301111119240011219900113WT@ZB90#W1122222222223012208111280023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111924001120060112WTT@WZWWW21222222204309100000000 -T320230111111924001120160709WTTTT#@9Z21222222204398100000162120080501WTTZ@0TBP21222222204307100000000 -T12023011111192423924200414021120213110598300000000364905280060000000000000000000000000000000000222222000000002229012 -T2202301111119242391220000922WTT#P@W@Y2222212222223012211110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111924239120210727WTT9Z#ZW022222212204398100000000 -T12023011111192438323500405271120333110740300000000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111119243833219620409WTTWTPYB02122222122215012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000771016300000000 -T320230111111924383120110905WT@PT#YZ@21222222206306100000000120060713WT@P@BPT#21222212206310100000000 -T12023011111192454824700408301120532111116300000000000006540180000000000000000000000000000000000222222000000002229022 -T2202301111119245483219670212WTT00#TTY2222212222225012212120035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111924548120180922WT@9Y9YBT22222122206398100000000120150708WTTB#YW0W22222112206398100000000 -T320230111111924548520140423WTTWWZ@WY22222122106301107670000120120123WTT@YW9P#22222122206301100000000 -T12023011111192455325000414191120323110766300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111119245531219950126WTTPY9Z@T2222212222221011213210124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119245531219940518WTT9B0Y##2222211222222021216290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111924553120210405WT@#@Y9#Z22222122204398100000000 -T12023011111192456623500405981120523111181300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111119245661219840718WTTYBB@9Z2222211222222011213290114923011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T2202301111119245661219880902WT@P0B0TT2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111924566120060927WT@TZW@9Z22222112204309200000000 -T320230111111924566120190105WTT#P#W9W22122112204398200000000120080321WTTZ#0P0Y22222122204306200000000 -T12023011111192460925800408261120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119246092219600507WT@TP0PZ02222212222211012212111490013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111924609120040321WT@B0Y9PB22222122204310100000000 -T12023011111192461624100414051120313110835300000000000002950100000000000000000000000000000000000222222000000002229012 -T2202301111119246161219900502WT@@T0Y#Y2222212222223012216110105023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111924616120160907WTT#W9WY922222112204398100000000120140227WTTBBBPZP22222112204302100000000 -T12023011111192464120800405141120313110781300000000000506540070000000000000000000000000000000000222222000000002229012 -T2202301111119246411219940913WT@W90TT02222212222223012213110194121011720000000000000000000000000000000000000000000000000000000000000000000000000000000003698 -T320230111111924641120180418WTT@PTBPP22212212204398100000050120160112WTTWPP@@922212212204398100000050 -T12023011111192475724700409381120313110766117460000001506540120000000000035001000000000000000000222222000000002229012 -T2202301111119247571219890423WTT#W@ZY02222211222221012211110134721011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111924757120200109WTT#PB0P922222122204398100000000120180905WTTZTYW0@22222112204398100000000 -T12023011111192480323300401481120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111119248033219800201WTTT0TPWT2122222222221012298110322811069940000000000000000000000000000000000000000000000000000000000000478500000000000000000000 -T320230111111924803120190114WTT0TT#T921222212206398100000000 -T12023011111192480725900402831120233110536300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119248072219800721WTTPWTY9T2222212222211012212110900013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111924807120080327WTT0B9PWW22222122204307100000000 -T12023011111192511222000411982110313210740300000000000001020010000000000000000000000000000000000222222000000002229032 -T2202301111119251121219840305WT@9TPY9W1222222222221012214910006021011820000000000000000000000000000000000000000000000000000000000000120000000000000000000000 -T320230111111925112120130502WT@9TPY9W12222222204303900000000120080904WT@9TPY9W12222222204307900000000 -T12023011111192513322000410051120213110598118330000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111119251331219970418WTT@9WW9Z2222212222222012211120233723010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111925133120200527WTTZTB0TP22222112204398100000000 -T12023011111192518624700405831120622111339300000000000010090730000000000000000000000000000000000222222000000002229072 -T2202301111119251861219800423WTTT@B9ZY2122212222221011213111330023011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111119251861219730923WT@@BY9Y92222211222225011216190900023011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111925186120100902WT@WYY0PP21222122204305100000000120040412WTT9P@YB@21222112204312100000000 -T320230111111925186120130512WT@9Z0TZZ21222112204302100000000120120518WT@WWPZ9B21222122204303100000000 -T12023011111192522520600414771120213110611300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111119252251219950411WTT0B#9P02222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925225120100308WT@YPYPTB21222222204305100000000 -T12023011111192524620600401641110233110516300000000000000130010000000000000000000000000000000000222222000000002229021 -T2202301111119252463219590723WT@BTT0TB2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001415000000000999 -T320230111111925246120170413WTT9W@00B22222122206398100000000 -T12023011111192526124200402501120423111034300000000000907710030000000000070003000000000000000000222222000000002229012 -T2202301111119252611219910901WTT@ZP9#02222212222222011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119252611219900907WTTTWBZZY2122221222222021212190045621011819000000000000000002000000000000000000000000000000000000300000000000000000000000000000 -T320230111111925261120170312WTT#WPBP922222112204398100000000120130923WT@9TTWB921222212204304100000000 -T12023011111192527225900406651120213120000300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111119252721220010412WT@@P99BP2222212222221012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925272120210714WTTTZ@@PB22222112204398100000000 -T12023011111192533623500411471120812111691300000000235011650470000000000000000000000000000000000222222000000002229072 -T2202301111119253361219780712WT@ZZT@@B2222211222222012209290800023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119253361219820901WTT9BPZB92222212222222022209290800023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925336120100714WTT@TZTPZ22222112204306200000000120080512WT@@TWZWZ22222122204308200000000 -T320230111111925336120170101WTTPZ@B9@22222112204398100000000120130926WT@B#TY@Z22222112204303200000000 -T320230111111925336420060205WT@B@0@T#22222112104310209140000120040126WTT0####B22222112204311200000000 -T12023011111192545422700403021120433110950300000000000006540610000000000000000000000000000000000222222000000002229022 -T2202301111119254542219880104WTTYWWYBP2222211222213012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111925454120080423WTT9ZYZT@22222122204307100000033 -T320230111111925454120140911WT@@BWY#P22222112204398100000033120110312WTTP@0PW922222122204303100000033 -T12023011111192550023500411471120423110835300000000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111119255001219930101WTTBZ#TT@2222212222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000400 -T2202301111119255001219890405WT@@PB0P@2222211222222021211290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925500120200409WTTTT@T0@22222122204398100000000420140912WTTP9@Z0Y22222112204301900000000 -T12023011111192550124200410211120313110835300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111119255011220010711WT@0YZ#BW2221222222221012212110154523011400000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111925501120200204WTT9Z99@022212212204398100000000120170907WTTP9@Z@#22212212204398100000000 -T12023011111192551123700414331120413110939300000000000007690100000000000000000000000000000000000222222000000022219012 -T2202301111119255111219940312WTTW##TT02222212222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000001 -T320230111111925511120140914WT@0PZ0T912222112204302100000000 -T320230111111925511120220724WTTTBP09P22222112204398100000000120180327WTT#@@BPZ22222122204398100000100 -T12023011111192556222700401571120213110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111119255621219820118WTT09Z@Y02222212222221012216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925562120070923WTT#BZ0Y#22222122204309100000000 -T12023011111192557820600402141120623111339300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111119255781219880123WTT##00Z02222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119255781219860413WT@ZZ0YT02222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925578120130927WTTPP#BT#22222122204398200000000120100927WT@9TPY9W22222112204398200000000 -T320230111111925578120190321WT@9TPY9W22222112204398200000000120150113WTT@WB9WW22222122204398200000000 -T12023011111192558125200407301120313110835300000000020006540540000000000000000000000000000000000222222000000002229012 -T2202301111119255811219990721WT@Z#Y9BP1222222222221012216110550523011800000000000000000000000000000000340000000000000000000000000000000000000000000000000000 -T320230111111925581120190724WTTW0BB@T12222212204398100000000120150909WTT#YP9W@12222212204302100000000 -T12023011111192562023500408281120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111119256201220010704WTT0BY9@W2222122222223012210910085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925620120190918WT@PBTZBW22221222204398100000000 -T12023011111192569924200414021110213110516300000000000003570010000000000000000000000000000000000222222000000002229012 -T2202301111119256991219730527WT@T9PPT@2222122222225012213110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925699120120302WTT99#Y9W22221222204304100000000 -T12023011111192576822900405641120522111199300000000000008880670000000000000000000000000000000000222222000000002229072 -T2202301111119257681219890307WTTTZ9YZ@2222212222221011208110680023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119257681219940202WT@ZYTYPB2222211222221011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925768120090322WT@PPW@9Y22222112204305100000000 -T320230111111925768120180321WTTPY0Y9W22222112204398100000000120120926WTTPWBW@Z22222112204303100000000 -T12023011111192585321000403201120513111169300000000000008880630000000000000000000000000000000000222222000000002229012 -T2202301111119258531219900901WTTBY@T0Z1222222222225012216110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925853120180127WT@0ZW0@Y12222212204398100000050120150307WT@P0BYZB22222212204398100000050 -T320230111111925853120220701WT@9TP@9W12222222204398100000000120200412WTT9ZTT9912222222204398100000000 -T12023011111192586824200407271120233110557300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119258683219790909WT@TP0YPP2222212222221012212121750013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925868120180423WTT0PWZ0022222122206398100000000 -T12023011111192589322000408891120212110611300000000000005280180000000000000000000000000000000000222222000000002229072 -T2202301111119258931219740214WT@PWZ9@Y2221222222221012211110660023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111925893120070113WTT@Z90ZW22212222204310100000000 -T12023011111192590722000410221120423111034300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111119259071219940113WT@9Y9YWZ2222211222222011215290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119259071219950307WT@9TPY9W2222212222222021215290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111925907120210926WT@9Y9BZB22222122204398200000000120190126WTTYYTTZ022222122204398200000000 -T12023011111192596625600411521120713111480127270000126308040180000000000000000000000000000000000222222000003612219012 -T2202301111119259661219880323WTTYZWBZT1222212222223012216110342621011808000000000000000000000000000000320000000000000000000000000000072100000000000000000000 -T320230111111925966120120207WTT@9PBBP12212222204304100000000120060927WTT@B@Z#B12212212204310100000000 -T320230111111925966120160212WTTYPWZ0P12212122204398100000000120130404WTTWB##P912212212204303100000000 -T320230111111925966120210411WTT@W@0TW12222122204398100000000120190712WT@@@BY@T11222222204398100000000 -T12023011111192624320600407031120233120000104060000038004170580000000000000000000000000000000000222222000000002229022 -T2202301111119262433219720213WTTZ#ZBPZ2222212222222012212110006011069940000000000000000000000000000000000000000000000000000000000000410700000000000000000000 -T320230111111926243120140105WT@0BP#B#22222112207302100000000 -T12023011111192626120800404431120333120000300000000000005280630000000000000000000000000000000000222222000000002229022 -T2202301111119262613219620526WT@9Y09TY1222212222223012213210006013069900000000000000000000000000000000000000000000000000000000000000279400000000000000000000 -T320230111111926261120090326WTTZTPW@#12222112206307100000000120070307WTTWBBZ0@12222112209309100000000 -T12023011111192642524200414021120313110768300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111119264251219790411WT@0ZZB@Z2221221222225012212110124823011400000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111926425120080201WTT@#ZWT#22212222204308100000000420080201WT@Y@T@Y@22212212104308105030431 -T12023011111192648520600414771120433111034300000000000006540490000000000000000000000000000000000222222000000002229022 -T2202301111119264852219870218WT@@0#0TW2122222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000043 -T320230111111926485120120927WTTBTT@PP21222212204303100000000 -T320230111111926485120190901WT@PZP0@#22222122204398100000000120140118WTT9W@WW#21222222204398100000000 -T12023011111192655820800411991120233120000300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111119265583219900407WTTYY9WW92221222222222012216120105013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111926558120120518WT@TTB9#W22212212207301100000000 -T12023011111192666520800411931120213110611300000000000005280290000000000000000000000000000000000222222000000002229012 -T2202301111119266651219950109WTT0W0##@2222212222221012211110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111926665120190413WTTT#B0P922222112204398100000000 -T12023011111192670424700401011120212110299300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111119267041219820923WTTWPT0B@2222212222225012209110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111926704120070907WTT9@PT0@22222112204308100000000 -T12023011111192671620600409771120413110939300000000000003020140000000000000000000000000000000000222222000004692219012 -T2202301111119267161219840421WTTZP0WBB2222212222223012212120194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000468 -T320230111111926716120060327WT@@BBBW#22222122204309100000000 -T320230111111926716120130709WT@@9PZBT22222122204302100000000120090907WTT9YBT9022222122204307100000000 -T12023011111192680720800411601120313110835300000000010005280510000000000000000000000000000000000222222000000002229012 -T2202301111119268071219970118WTTP#0@Y@2122212222223012212120520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111926807420180113WT@09T#@P22222112104398109140000120160921WT@WWZ9TB21222122204398100000000 -T12023011111192683122900406481120213110618300000000020505280020000000000000000000000000000000000222222000000002229012 -T2202301111119268311219870226WT@TY@TPY2222212222223012212120035723010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111926831120190101WTT#ZBZ#922222122204398100000000 -T12023011111192684324200410001120413110939300000000000006540440000000000000000000000000000000000222222000000002229012 -T2202301111119268431219980104WTTPZPZ9@2221222222222012211110431723011800000000000000000000000000000000270001000000000000000000000000000000000000000000000000 -T2202301111119268432219860101WTTZ000@@2221221222212022212190015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111926843120220523WTTBB@TB#22212222204398100000000120180526WTTZ0TWY@22212222204398100000000 -T12023011111192686623500411471120233110611300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111119268663220020423WT@B#PW@@2222221222221012212210055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111926866120070423WT@B@TZ0022222212207309200000000 -T12023011111192697422000409871120333110740300000000000005280230000000000000000000000000000000000222222000000002229022 -T2202301111119269742219940312WTTZZ0ZB02221222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111926974120200227WT@0YW9ZZ22212222204398100000000120140524WT@PZ09WT22212222204301100000000 -T12023011111192698423500405981120212110470300000000005304170700000000000000000000000000000000000222222000000002229072 -T2202301111119269841219770301WTTYB#@YP2221222222225012212111760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111926984520060704WT@9@W#B922212222104310109140000 -T12023011111192699622000405181120213110611115830000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111119269961219870712WT@#Y#PY@1222222222221012215120144623010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111926996120190307WT@Y9#Z#Y22212212204398100000000 -T12023011111192699724100412771120313110835300000000000006540230000000000000000000000000000000000222222000000002229012 -T2202301111119269971219990723WTTB##@Z@1222212222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111926997120200912WTTTTZ@#912222122204398100000000120180408WT@PB#9P#12222212204398100000000 -T12023011111192707522000408341120623111339300000000200010090040000000000000000000000000000000000222222000000002229012 -T2202301111119270751219840727WTTBW0YPP2222211222222011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119270751219840313WT@PYPBP92222212222222021215290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927075120100701WT@YYT00W22222112204306200000000120090423WT@Y9WW9P22222112204308200000000 -T320230111111927075120180412WT@#P@P9922222112204398200000000120150101WTT#WBB#Z22222112204301200000000 -T12023011111192721222000403351120313110766300000000033306540050000000000000000000000000000000000222222000000002229012 -T2202301111119272121219950926WT@0WP00P2222222222221012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927212120190714WT@##@YWZ22212212204398100000000120180411WTTTPPZ0922222222204398100000000 -T12023011111192722822000407791120213110611106960000000105280190000000000000000000000000000000000222222000000002229012 -T2202301111119272281219990714WTT00PP9P2222212222221012212120194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927228120210414WT@Z99BT022222122204398100000000 -T12023011111192727122000407241120333110740119000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119272712219770409WTTPYZPY#1222222122211012210110006013109900000000000000000000000000000000000000000000000000000000000000000000000367056700000000 -T320230111111927271120180426WTTBY#ZZ022212222204398100000000120150304WT@PBP90922212212204398100000148 -T12023011111192730124200402501120213110598300000000054505280400000000000000000000000000000000000222222000000002229012 -T2202301111119273011219780423WT@#PYBWB2222212222221012216110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927301120120926WTTP9Y#@022222122204304100000000 -T12023011111192738424700408091120333110740300000000000005280350000000000000000000000000000000000222222000000002229022 -T2202301111119273842219900404WTTBZYBW#2222212222211012212110840013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111927384120200311WTT0#TWZ#12222112204398100000000120120212WT@0#0TZP12222122204303100000000 -T12023011111192741120600409771120213110598300000000000005280780000000000000000000000000000000000222222000000002229072 -T2202301111119274111219900723WTT#@@P0#2222212222225012212110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927411120210118WT@YYBTP922222112204398100000000 -T12023011111192743024100402401120333120000300000000000005280940000000000000000000000000000000000222222000000002229022 -T2202301111119274303219710113WT@PT#@9P2222212222222012216110105013069900000000000000000000000000000000000000000000000000000000000000439600000000000000000000 -T320230111111927430120110404WTTY#TP9W12222212206305100000000120080313WTTZ9#YBY12222222206306100000000 -T12023011111192743122000414461120412110934300000000000007710810000000000000000000000000000000000222222000000002229072 -T2202301111119274311219810113WT@W@ZY0T2221222222223012212110820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927431120110114WTTT#Y@9P22212222204306100000000 -T320230111111927431120150904WT@9W0B9922212212204398100000000120120714WT@#W0WY#22212212204303100000000 -T12023011111192749020300400971120233110470300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111119274903219820326WTT0Y9ZY02222212222223012213110114913069900000000000000000000000000000000000000000000000000000000000000000000000000000000001917 -T320230111111927490120060327WT@T99T#P22222122207308100000000 -T12023011111192749421700406141120213110516300000000006200010110000000000000000000000000000000000222222000000002229012 -T2202301111119274941220000227WTTB0WPBY2222212222221012212110124811011700210000000000000000000000000000000000000000000000000000000000125600000000000000000000 -T320230111111927494120210927WT@@BBW@Z22222122204312100000000 -T12023011111192756725900403711120433110939300000000000006540090000000000000000000000000000000000222222000000002229022 -T2202301111119275673219640313WTTZT@#@92222212122224012212110223813069900000000000000000000000000000000000000000000000000000000000000000000000806000000000000 -T320230111111927567120050318WTTZ0WPTP12222122206311100000000 -T320230111111927567120160702WT@T@W0ZT12222122206398100000000120120912WT@TTBB9Z22222122206304100000000 -T12023011111192760221200400681120213110446300000000045005280120000000000000000000000000000000000222222000000002229012 -T2202301111119276021219890123WTT90BT#T1222212222221012212110520821011818000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927602120200127WT@BB90##12222122204398100000000 -T12023011111192765324700405901120423110939300000000530007710100000000000000000000000000000000000222222000000002229012 -T2202301111119276531219870423WT@Y0ZB9Y2222222222223011214210105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119276531219880411WTTPPT9YW2222211222222021215290075321011818000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927653120160104WT@ZY0T9922222212204398200000000120120123WTTYP@P0022222212204303200000000 -T12023011111192774022700413181120212110611300000000030005280190000000000070004000000000000000000222222000000002229072 -T2202301111119277401219840513WTTTZWBPP2221222222221012213110840023011900000000000000300000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111927740120110223WTTW9T0@T22212222204305100000000 -T12023011111192784324200410711110233120000300000000000002820010000000000000000000000000000000000222222000000002229021 -T2202301111119278433219600907WT@ZP9BWY2222212122222012298910006013079900000000000000000000000000000000000000000000000000000000000000000000002318000000000000 -T320230111111927843120170311WTT##T@PB22222122206398100000000 -T12023011111192792420800407301120213110598300000000000005280100000000000000000000000000000000000222222000000002229072 -T2202301111119279241219910709WT@W@Y#@02222212222221012211110730023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927924120220426WTTBPZPY#22222112204398100000000 -T12023011111192792922000404691120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111119279291219700305WT@9#ZT@W2221222222223012212120075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927929120130426WT@WWBT#Z22212222204303100000000 -T12023011111192794423900403801120212120000300000000000005280210000000000000000000000000000000000222222000000002229012 -T2202301111119279441219850121WT@0Z0@@Y2222212222221012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111927944120170113WTTZ0W#@@22212122204398100000000 -T12023011111192794523500407161120233120000300000000003404170650000000000000000000000000000000000222222000000002229022 -T2202301111119279453219660526WT@ZBP0Y02222212222222012212120006011069924000000000000000000000000000000000000000000000000000000000000337300000000000000000000 -T320230111111927945120090912WT@YTW9@022222112206307100000000 -T12023011111192796322000403891120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119279633219480723WT@YBT##B2221222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001200000000001020 -T320230111111927963120080318WT@@0P0T921222212206308100000000 -T12023011111192797620800404431120333110740300000000000005280370000000000000000000000000000000000222222000000002229022 -T2202301111119279763219580923WTT@0W@@Z2222212122215012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000614031900000000 -T320230111111927976120200113WT@9BW0ZP22222122206398100000000120190518WTTPPPPBY22222112206398100000047 -T12023011111192798625900402831120523111116300000000000004420160000000000000000000000000000000301122222000000282219012 -T2202301111119279861219940927WTTYZ#P992222212222221011212110392123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119279861219890712WTTZ9Y99T2222211222221011212190372323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000033 -T320230111111927986420120326WT@0WPP#@22222122109303108670353 -T320230111111927986120170307WTT@#9ZTZ22222122204398100000000120150904WTT#9#PP022222122204301100000000 -T12023011111192806122500410151120513111116300000000000007710270000000000000000000000000000000000222222000000002229012 -T2202301111119280612219870927WT@@ZP#092222212222212012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T2202301111119280611219920321WT@9TT9Y02222211222222022212190283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111928061120100918WTT@TY@@Z22222112204306100000000 -T320230111111928061120140312WT@W#W@TP22222112204302100000000120120426WTTYZB9TZ22222112204304100000000 -T12023011111192811522700413181120312110670300000000001205280070000000000000000000000000000000000222222000000002229012 -T2202301111119281151219650407WTT@TTY9B2222211222222012212190283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119281152219740412WT@0WW9WP2222212222212022212190204013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111928115120050927WT@YT@TZT22222122204309100000000 -T12023011111192813822000413731120313110766300000000000006540400000000000000000000000000000000000222222000000002229072 -T2202301111119281381219780327WTTTZ0WT02221222222221012216111390023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111928138120120504WTT##0YTT22212212204302100000000120110422WTTYT0Z#T22212222204304100000000 -T12023011111192834725900406651120413111034300000000529307710080000000000000000000000000000000000222222000000002229012 -T2202301111119283471219940112WTTW0@YZW2222212222221012209110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111928347120120104WTT#9BPB#12222122204304100000000 -T320230111111928347120200704WTTTTZWYP12222122204398100000000120160413WTTZ0TBTP12222112204398100000000 -T12023011111192834822000405841120212110516300000000000000010110000000000000000000000000000000000222122000000002229012 -T2202301111119283481219980121WTTWW9BPB1222212222221012212110124811011700200000000000000000000000000000000000000000000000000000000000136400000000000000000000 -T320230111111928348120170907WTT0WBT@912222112204312100000000 -T12023011111192835120600402141120212110611112180000000005280290000000000000000000000000000000000222222000000002229012 -T2202301111119283511219870707WT@TTWPYY2222212222225012212110402023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111928351120200918WTTY0@B0B22212222204398100000000 -T12023011111192837824200410531120233120000300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111119283783219790307WT@YYZP@T2222222222222012212110055513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111928378120190713WT@ZYY0PW21222212207398100000000 -T12023011111192845723500400892110323210740300000000000002530010000000000000000000000000000000000222222000000002229032 -T2202301111119284571219890923WTTZ09#BB2222212222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119284571219940307WTTP#@YW92222211222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111928457120200911WTTWP99Z022222112204398200000000 -T12023011111192847321000412411120313110766300000000000006540060000000000000000000000000000000000222222000000002229072 -T2202301111119284731219700412WTTZ9#Y0P2122212222225012213110680023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111928473120090701WTT0YPBTW22222112204307100000000120050327WT@PWWWY@22222122204311100000000 -T12023011111192851821000411361120312110740300000000009505280500000000000000000000000000000000000222222000000002229012 -T2202301111119285181219720426WTT#B0ZBP2222212222225012216190540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119285182219650427WTTBP9YPP2222211222211102216190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111928518120060721WT@YZB@YT22222122204309100000000 -T12023011111192860424700413761120212110598117460000000105280150000000000000000000000000000000000222222000000002229012 -T2202301111119286041219990907WTTW@#BYZ2222212222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111928604120210514WTTYZ0#W@22222212204398100000000 -T12023011111192864225100402211120413111017300000000000307710580000000000000000000000000000000000222222000000002229012 -T2202301111119286421219890922WT@0WZ90Z1222212222221012298210590123011400000000000000000000000000000000000000000000000000000000330000000000000000000000000100 -T320230111111928642120080113WT@@Z#P0P12222122204307200000000 -T320230111111928642120170207WTTPZZZPZ12222122204398100000000120130122WTT#Z@90Z12222122204302200000000 -T12023011111192872124200403941120113110376300000000000004170070000000000000000000000000000000000222222000000002229012 -T2202301111119287211219990113WT@TZP0ZW2222212222221013212190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111192873421700406141120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119287342219720922WT@WTZPBB2222212222215012212120510913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111928734120070727WTT9ZP0PB22222112204307100000000 -T12023011111192875422000406271120233110516300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111119287543219990418WTTBYY#@#2222222222221012216210075311069913210000000000000000000000000000000000000000000000000000000000247500000000000000000000 -T320230111111928754120050101WT@#T#YW@22222212207310200000000 -T12023011111192896124200403941120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119289612219780701WTTYWT9T92222212222215012212110431713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111928961120110923WTT0YPZ#W22222222204305100000000 -T12023011111192908320600400871120423110969300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111119290831219900307WTTWZPZ#92222212222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119290831219860401WTTBT09YY2222211222222021212290065421011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929083120170723WTT909Y#Y22222112204398200000000120120709WT@P0BP@T22222122204302200000000 -T12023011111192914124700413761120233110611300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111119291413219680714WT@0P@0PP2222212222225012212120194113069900000000000000000000000000000000000000000000000000000000000000086500000000000000000000 -T320230111111929141120080705WT@B9B0Y@22222122206308100000000 -T12023011111192921024200414021120313110766300000000000006540310000000000000000000000000000000000222222000000002229012 -T2202301111119292101219880126WT@9TPY9W1222222222223012212210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929210120140707WT@ZW#B0Y12222212204398100000000120100404WT@BY0@@Y12222222204305100000000 -T12023011111192927621000408061120333120000300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111119292763219970714WTTYTBP@Y1222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000369700000000000000000000 -T320230111111929276120070901WT@BW90WB12222122207308100000000120070901WT@TWYW#012222122207308100000000 -T12023011111192930222000408811120312110835119750000100006540280000000000000000000000000000000000222222000000002229012 -T2202301111119293021219940423WT@P@Z#PB2221222222223012216110283221011817000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929302120220512WTT@Z#@Y022212212204398100000000120170118WTT0W@ZYY22212212204398100000000 -T12023011111192931022000407412120423211034300000000000007710080000000000000000000000000000000000222222000000002229032 -T2202301111119293101219870214WT@P@BZ902222211222222011212290095123011800000018000200000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111119293101219930902WT@9TPY9W1222212222222021211290095123011800000012000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111929310120170509WT@9W#@#P12222112204398200000000120150112WT@@#W##T12222112204398200000000 -T12023011111192933722000405181120213110598104670000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111119293371219920423WT@Z@TBY@2222212222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929337120200421WT@0#ZTWW22222122204398100000000 -T12023011111192937720200409312120823211691300000000000009660170000000000000000000000000000000322222122000000012219032 -T2202301111119293771219980908WT@ZW#BY#2222212222222011212120253521011944000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119293771219960923WTT90TWYB2222211222222021212190105021011826000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929377120150111WTT9YP##Z22222122204301100000025120140323WTT9PZ#W#22222112204301100000025 -T320230111111929377120170405WT@P9BB0#22222122204398100000025120160212WTT@Y0W@@22222112204398100000025 -T320230111111929377120220124WTTZT@#@P22222122204398100000000120180913WTTY#P9YW22212212204398100000000 -T12023011111192942524200414721120213110598300000000000005280350000000000000000000000000000000000222122000000002229012 -T2202301111119294251219980321WT@TYBZP#2221222222221012212110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929425120160723WT@@Y@WP@22212212204398100000000 -T12023011111192944224700405831110313110786119510000000006540010000000000000000000000000000000000222222000000002229012 -T2202301111119294421219940427WTTP@@#0Z2222212222223012214120164423010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111929442120220409WTTZ09BWT22212122204398100000000120180923WT@9BZT9T22222122204398100000000 -T12023011111192952423500402291120233110578300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111119295243219730518WTTYWYZZ@2221222222213012212110860013069900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111929524120190126WTT@T@ZPB22212222207398100000000 -T12023011111192963724200414721120312110724300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111119296371219810424WTT0Z0TW#2122221222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929637120120111WTT0@0YYP22212212204303100000000120060327WTTZ0WWZ022212212204309100000000 -T12023011111192965520600402141120213110364300000000025003160360000000000000000000000000000000211122222000000012219012 -T2202301111119296551219790121WTTZT90W02222212222221012212110362423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929655120080914WTTZW9BPY22222122204306100000000 -T12023011111192966821000405411120233110516300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111119296682219780122WTT#YYWTT2222212122211012216110930013109900000000000000000000000000000000000000000000000000000000000000000000000776015800000000 -T320230111111929668120100311WTT09Z@WP22222122204305100000000 -T12023011111192978822000407241120213110598300000000003005280090000000000000000000000000000000000222222000000002229012 -T2202301111119297881219830713WT@W9TWWP2221222222221012216120105023010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111929788120220924WT@Y0YZ9022212222204398100000000 -T12023011111192981024100402401120213110611108330000007005280150000000000000000000000000000000000222222000000002229012 -T2202301111119298101219820301WT@ZYZ#091222211222221012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929810120180927WTT#YTPZ012222112204398100000050 -T12023011111192986522000400591120212110611300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111119298651219790921WT@@TPYB@2222212222225012212111480023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111929865120070721WTT@@ZBYP22222122204308100000000 -T12023011111192995025600406521120313110740300000000000005280730000000000000000000000000000000000222222000000002229072 -T2202301111119299501219900327WT@9TT#P#2222212222223012212110710021011700200000000000000000000000000000310000000000000000000000000000120700000000000000002231 -T2202301111119299502219670424WTT#WYB@92222211222213102212190820013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111929950120170907WT@ZYWT0T22222212204398100000000 -T12023011111193002724200403941120413111034300000000000005780360000000000000000000000000000000192222122000000012219012 -T2202301111119300271219870214WTTTTZ9B@1222212222225012212220372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111930027120050507WT@00BYTY12222122204309200000000 -T320230111111930027120110718WT@TT#WB@12222122204302200000000120080918WTTZ@W9P912222112204306200000000 -T12023011111193003124100402401120233120000300000000000004170780000000000000000000000000000000000222222000000002229022 -T2202301111119300313219540723WT@PWW#992222212122222012212110006011069917000000000000000000000000000000000000000000000000000000000000226600001509000000000000 -T320230111111930031120120213WT@Y0#9#W22222112206304100000000 -T12023011111193010122000402371120213110446300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111119301011220020512WTTP9W@#92221212222221012210110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111930101120200904WT@9BWTP#22212222204398100000000 -T12023011111193013020600400871120313110835109900000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111119301301219860409WTT9B9Y0P2222211222225012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000071 -T320230111111930130120160424WTTTZB@#W22222122204398100000299120140421WTTBBPYP922222222204302100000299 -T12023011111193022425600411701120333120000300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111119302243219760411WTTWB9Y@@2211222222221012298910015913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111930224120180709WT@PBWP9921222212209398100000000120130723WTT@PB##W21212212209302100000000 -T12023011111193033324700405901120233120000300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111119303333219930413WT@0@Y0PY1222211222222012216110006013069900000000000000000000000000000000000000000000000000000000000000430000000000000000000000 -T320230111111930333120070413WTTZ#Y@@Z12222122207308100000000 -T12023011111193033724100402401120313110611300000000000001920290000000000000000000000000000000235222122000002272219072 -T2202301111119303371219870326WT@T@@B#@1222212222221012212120830021011201000000000000000000000000000000000000000000000000000000000000045000000000000000000000 -T320230111111930337120130423WTT#9#Z0Z22222122204302100000000120120526WTTTWT@BW12222122204304100000000 -T12023011111193034022700408491110313110740300000000000004850010000000000070001000000000000000000222222000000842219012 -T2202301111119303401219920426WTTBT#0##2222211222221012212110025822011900000000000000300000000000000000000000000000000000000000020000000000000000000000001543 -T320230111111930340120150927WTTW9T@@B22222112204302100000000120110118WT@0P@ZZY22222112204305100000000 -T12023011111193043620600400871110113110281300000000000000800010000000000000000000000000000000000222222000000002229012 -T2202301111119304361219950111WT@Z#TYZZ2222212222221013212190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111193046023500411471120523111136300000000000008880020000000000000000000000000000000000222222000000002229012 -T2202301111119304601219890709WT@9TPY9W2222222222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119304601219870505WT@9TPY9W2222221222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111930460120080412WT@9TPY9W22222212204308200000000 -T320230111111930460120140107WT@9TPY9W22222222204305200000000120130404WT@9TPY9W22222212204305200000000 -T12023011111193052822000401711120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119305283219540223WT@WP#P#B2221222122221012212110006011069927000000000000000000000000000000000000000000000000000000000000280700001721000000000779 -T320230111111930528120060701WT@WP@90Y22212222206311100000000 -T12023011111193054824700405831120412110956300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111119305481219830418WTT9TT09T2222212222221012211111040023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111930548120050913WTTZZ#BWZ22222122204309100000000 -T320230111111930548120140726WTTTW##PB22222112204398100000000120070123WTTBYBY0P22222112204308100000000 -T12023011111193082621000411841120733111034300000000000007710160000000000000000000000000000000000222222000000002229022 -T2202301111119308262219870426WT@YYBT9P1222221222222012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119308262219900714WT@YYBT9P1222222222222022298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111930826120070726WTTTTY#P912222222204308100000000 -T320230111111930826120210127WTT#BTWZT12222122204398100000000120190121WT@W@TY9Y12222222204398100000000 -T320230111111930826420150413WT@YYBT9P12222212204302900000000120100726WTT9@TZW012222212204306100000000 -T12023011111193088620600402131120412110939300000000000006540620000000000000000000000000000000000222222000000002229072 -T2202301111119308861219890912WTTW#00T@2222211222221012212190630023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111119308862219880305WTT@#9Z9W2222212222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111930886120170213WTT#9Y00B22222122204398100000000120110713WT@WYP9P922222122204304100000000 -T12023011111193089020600402141120212110611300000000042105280590000000000000000000000000000000000222222000000002229072 -T2202301111119308901219880427WT@ZWZYTW2222212222221012213110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111930890120140226WTTZP@9PZ22222112204301100000000 -T12023011111193097622000411281120312110769300000000082506540520000000000000000000000000000000000222222000000002229072 -T2202301111119309761219750123WT@PYZB#T1222212222225012212110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111930976120090926WT@TZT0@B12222122204307100000000120080127WTTBP@#B012222122204309100000000 -T12023011111193098422000411281120423110939300000000100007710060000000000000000000000000000000000222222000000002229012 -T2202301111119309841219890421WT@T9#9WZ2222221222222011212290055523011800000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T2202301111119309841219950323WTT0YT99Z2222222222222021212290055523011800000000000000000000000000000000000000000000000000000000280000000000000000000000000000 -T320230111111930984120170913WT@@Z0Z0B22222222204398200000000120160201WTT#PZPTW22222212204398200000000 -T12023011111193107320800411991120232110516300000000000004170190000000000000000000000000000000000222222000000002229022 -T2202301111119310732219800223WT@WYB0Z@2221222122215012216110870013109900000000000000000000000000000000000000000000000000000000000000000000000917001700000000 -T320230111111931073120050502WTTWW@@TT22222112204310100000050 -T12023011111193109225200412081120233110493300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111119310923219560412WT@#0B@BB2222211122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000847000000000000 -T320230111111931092120160527WT@Y9PZB922222122206301100000000 -T12023011111193111723800413801120433110722300000000000004920090000000000000000000000000000000000222222000000002229022 -T2202301111119311172219880326WTTT@Y#Y@2222212222213012211120293113089900000000000000000000000000000000000000000000000000000000000000000000000000088900000000 -T320230111111931117120050907WT@BYB#PZ22222122204312100000000 -T320230111111931117120200713WT@B99BYP12222112204398100000000420090723WT@WTPP9#12222122204305100000000 -T12023011111193116924200414721120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119311693219720724WT@#9PY@W2221222222211012211110006011069934000000000000000000000000000000000000000000000000000000000000291400000000080600000000 -T320230111111931169120090202WTT@Y9B9B22212222206305100000000 -T12023011111193117425000406021120233110519300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111119311742219910113WT@9Z00##2222212222211012212110810013089900000000000000000000000000000000000000000000000000000000000000000000000000067000000000 -T320230111111931174120110301WT@TBW0#@22222112204304100000050 -T12023011111193121124200410531120233120000300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111119312113219720523WTTZ90#TZ2222212222222012213110006011069936000000000000000000000000000000000000000000000000000000000000319300000000000000000000 -T320230111111931211120190712WTTZPPZ@W22222122206398100000000 -T12023011111193130424200414851120423111034300000000071607710020000000000000000000000000000000000222222000000002229012 -T2202301111119313041219720412WT@#B0#9T2222211222222011213110105021011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119313041219790914WT@ZWZZ@02222212222222021212190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931304120060413WT@YBYTB922222112204311100000000120040304WT@9YZW9022222122204312100000000 -T12023011111193136321000403201120513111116300000000000007710450000000000000000000000000000000000222222000000002229012 -T2202301111119313631219950104WTTT0YWP02122222222221012209120451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119313632219960423WTTYTYBBT2222211222211102211190035713089900000000000000000000000000000000000000000000000000000000000000000000000000007200000000 -T320230111111931363120120127WTT@T#9@#21222222204304100000000 -T320230111111931363120200718WTTT@#00Y22222122204398100000000120170923WT@Y0PPPY22222112204398100000000 -T12023011111193146223500404531120423111034300000000008007710070000000000000000000000000000000000222222000000002229012 -T2202301111119314621219860705WT@ZWTWYW2222212222222011212290085223011800000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T2202301111119314621219830107WT@@#ZP9@2222211222222021213290085223011800000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T320230111111931462120160318WTTZBBPP922222122204398200000000120130401WT@0BYW0B22222122204302200000000 -T12023011111193146724100408431120433110939300000000000005280820000000000000000000000000000000000222222000000002229022 -T2202301111119314671219740501WT@ZZB0PW2222212222225012212111430023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119314672219760309WT@T009ZT2122221222211102212190910013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111931467420120227WT@Y#W@PW22222112104304109140000120100427WTTZ9BTTW22222122204306100000000 -T12023011111193155925900402231120333110376300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111119315592219910402WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119315592219900923WT@YYBT9P1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931559120180423WTT@@PTWW12222222204398100000000 -T12023011111193159621700407751120213110364300000000000003160220000000000000000000000000000000211122222000000012219072 -T2202301111119315961219920402WT@T@T@PW1222211222221012205110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931596120110707WTTZ0WYW912222122204304100000000 -T12023011111193160825900406841120632111268300000000000005890140000000000000000000000000000000000222222000000652219022 -T2202301111119316083219550201WT@WYPWPB2122222122223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001103000000000299 -T320230111111931608120080914WTTBZ0TY@21222222206308100000071 -T320230111111931608120210104WTTZZ@#Y@21222212206398100000000520190109WTTB0W@@021222222106398109140000 -T320230111111931608520190109WTTWY#@0#21222222106398109140000120100323WT@@PWT0#21222222206305100000000 -T12023011111193161024100402401120333110537300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111119316102219960918WT@YYBT9P1222212222221012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931610420180914WT@T00TP@12222112104398109140000120130308WT@BBBZ0#12222112204302100000000 -T12023011111193167624700406701120723111480300000000000011650120000000000000000000000000000000000222222000000002229012 -T2202301111119316761219820902WT@9TPY9W2222211222222011216290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119316761219890908WT@9TPY9W2222212222222021216290105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931676120090212WT@9TPY9W22222112204305200000000 -T320230111111931676120130405WT@9TPY9W22222122204302200000000120100726WT@9TPY9W22222112204304200000000 -T320230111111931676120210218WT@9TPY9W22222122204398200000000120190313WT@9TPY9W22222122204398200000000 -T12023011111193173325000406021120213110611300000000010005280120000000000000000000000000000000000222222000000002229012 -T2202301111119317331219780105WT@Y#YYPB2222211222221012213110134723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931733120220404WT@@B0PZT22222112204398100000000 -T12023011111193173920600414871120213110611300000000000805280120000000000000000000000000000000000222222000000002229012 -T2202301111119317391219840901WT@PW9TW92122221222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931739120060112WTTWZ##@W21222222204309100000000 -T12023011111193175525800413571120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119317551219830707WTT0P09ZT2222211222225012208110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931755120080722WTTB##9YW22222122204306100000000 -T12023011111193182222000407241120413111034300000000000007710190000000000000000000000000000000000222222000000002229012 -T2202301111119318221219880208WTTZWBB0#2222212222221012211110402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931822120050913WTTPWTPTB22212222204311100000000 -T320230111111931822120190404WT@#PZ09P22212222204398100000000120160723WT@Y9@@0@22222112204301100000000 -T12023011111193192422000407412120423210939300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111119319241219920513WT@9TPY9W2222212222222011212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119319241219870909WT@9TPY9W2222211222222021212290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931924120160713WT@9TPY9W22222112204301200000000120140907WT@9TPY9W22222112204304200000000 -T12023011111193197922000407242120423210893300000000000007710100000000000000000000000000000000000222222000000002229032 -T2202301111119319791219800427WT@BT0Z#T2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119319791219840422WT@@YP00Z2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111931979120130914WTTYWY09W22222122204302200000000120080321WTTPBWBWT22222112204306200000000 -T12023011111193205022000408451120212110611300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111119320501219870204WT@@W0T@B2121222222225012213120194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932050120070527WTTWY#P0921212222204310100000000 -T12023011111193214025900402831120233110516300000000006404170890000000000000000000000000000000000222222000000002229022 -T2202301111119321403219580227WT@P@ZPTB2222211122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002024000000000000 -T320230111111932140120130121WTT9TYYY#22222112206303100000050 -T12023011111193215921000411361120312110740120280000000006540500000000000035010000000000000000000222222000000002229012 -T2202301111119321591219870107WTT#ZB##02222212222225012216110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932159120180701WTTW@P0B922212112204398100000468120120213WT@#PP9Y022212112204304100000000 -T12023011111193220825600411521120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119322082219820723WT@0WZP#Y2222212222211012212110540613089900000000000000000000000000000000000000000000000000000000000000000000000000090400000000 -T320230111111932208420170512WTT@0990W22222112104398109140100120050323WTTT9TT0P22222122204310100000000 -T12023011111193223925100407671120213110597300000000100705280160000000000000000000000000000000000222222000000002229072 -T2202301111119322391219840421WTTPB#WYP2222212222225012212110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932239120050918WTTZ00P@P22222112204312100000050 -T12023011111193224124600411871120233120000300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111119322413219930918WT@@WWZWB2212222222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932241120170113WTT9@#T9922122212207398100000000 -T12023011111193236322000404841120213110598300000000000105280080000000000000000000000000000000000222222000000002229012 -T2202301111119323631220010327WT@ZWPB0B2222212222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932363120220212WT@WW9BZ922212212204398100000000 -T12023011111193250424700409321120323110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111119325041219980413WT@@0TYP02222212222222011216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119325041219990326WTTT#0@9T2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111932504120200127WT@PZ9WT022222122204398200000000 -T12023011111193251224700408301120312110740300000000000005280310000000000000000000000000000000000222222000000002229072 -T2202301111119325121219890112WTTPPW@0@2222212222221012212110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932512420150105WTT09Y90B22222112104398109140015120080912WTTPTBTB922222122204308100000050 -T12023011111193258025900406841120432110832300000000000006540030000000000000000000000000000000000222222000000002229022 -T2202301111119325802219880121WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932580120050413WT@0TZ9W012222212204312100000000 -T320230111111932580120140912WT@P@0YY#12222212204303100000000120060221WTT@#P@9W12222222204310100000000 -T12023011111193260624200414721120113110376300000000001704170040000000000000000000000000000000000222222000000002229012 -T2202301111119326061219980705WTTY90ZPZ2222122222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111193263524700409322120333210670300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111119326353219640926WTT#9@#9Y2222122222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932635120090218WTTZZ909Z22221222207304900000000120090218WTTP#PYTP22221222207306900000000 -T12023011111193269325600400661120313110835126090000000006540210000000000000000000000000000000000222122000000002229012 -T2202301111119326931219980222WT@PYTTZ#2222212222221012212120204021011722000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932693120210201WTT900B@W22222112204398100000000120190221WTTZY@9#922222122204398100000000 -T12023011111193272922000404841120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111119327291219990305WT@Y#@Z#B2221222222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111932729120220111WT@B9#99B12212212204398100000000 -T12023011111193282024200403511120432110939300000000000006540050000000000000000000000000000000000222222000000002229022 -T2202301111119328202219760911WT@YYP@YZ2222121122212012212110045613109900000000000000000000000000000000000000000000000000000000000000000000000576035800000000 -T320230111111932820120060323WT@#@9#W922221222204309100000000 -T320230111111932820120120407WT@90@B9Z22221222204304100000000120090901WT@PZ9BWZ22221212204307100000000 -T12023011111193284520600402141120333120000300000000000005280310000000000000000000000000000000000222222000000002229022 -T2202301111119328453219910305WTT#Z0T@Y2222212222222012212110006011069941000000000000000000000000000000000000000000000000000000000000445600000000000000000000 -T320230111111932845120130714WTT#9PP#922222122207302100000000120110227WTT#0B9#T22222112207305100000000 -T12023011111193288922000402321120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119328893219450921WTTW@Y0ZW1222212122214012212110382213069900000000000000000000000000000000000000000000000000000000000000000000000299063500000000 -T320230111111932889120080113WT@0W9ZB@12222112206307100000000 -T12023011111193305823500406851120213110606300000000000005280840000000000000000000000000000000000222222000000002229072 -T2202301111119330581219710304WT@P#WT#02222122222221012208910940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111933058120190901WT@9B0ZT@22221212206398100000000 -T12023011111193307720600414831120232110553300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111119330772219840204WTT0Z##@#2222211122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000638029600000000 -T320230111111933077120130726WTTT0009Y22222122204302100000050 -T12023011111193315424700408301120233110517300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111119331543219720127WT@ZTB@9P2222212222223012209110810013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111933154120120318WTTT@BTTZ22122222206302100000000 -T12023011111193317725600411521110312110794300000000000004590600000000000000000000000000000000000222222000000692219072 -T2202301111119331771219880526WTTYY@9PB2222212222223012213110980023011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111933177420130507WTTBYYP#P22222112104398109140000120070323WTTTZY0#922222122204308100000000 -T12023011111193322024200414351120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119332203219640523WTTB0ZBP@2222212122225012213110154513069900000000000000000000000000000000000000000000000000000000000000000000001826000000000000 -T320230111111933220120050404WT@@Y@BW#22222112206310100000000 -T12023011111193329525800408081110413110960300000000000002360100000000000000000000000000000000000222222000000692219012 -T2202301111119332951219920912WTT#WZP@T2222212222222012211110114921010906000000000000000000000000000000000000000000000000000000000000031900000000000000000000 -T320230111111933295120140108WTT9Y#@9@22222122204302100000000 -T320230111111933295120170407WT@##P9ZY22222122204398100000000120150318WTT@B0YZP22222122204398100000000 -T12023011111193331325600414551120233120000300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111119333135219880704WT@YB@W@02222212222222012212110372313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111933313120050324WT@#P@0YP22222112209310100000000 -T12023011111193359324700406701120233120000105570000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111119335933219660126WT@ZW9Y0@2222211222223012215110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111933593120170207WTTYZB@T022212212206398100000000 -T12023011111193360124200407311120313110766300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111119336011219970505WT@BYTW002222212222223012216120085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111933601120200513WT@00B#WY22222122204398100000000120160322WT@PYY@T022222112204398100000000 -T12023011111193377924200402981120323110766300000000060006540040000000000000000000000000000000000222222000000002229012 -T2202301111119337791219930324WT@PYZZBW2222212222222011212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119337791219920423WT@9TPY9W2222211222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111933779120130923WT@9TPY9W22222112204304200000000 -T12023011111193398220600407031120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119339821219880712WTT9@@9BB2222211222225012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111933982120200104WTTBPW#B922222122204398100000000 -T12023011111193406025900403711120313110766300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111119340601219860211WT@99WYZZ2222211222225012212110164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111934060120150927WT@WWYP@B22222112204398100000000120120404WT@W0BP@922122122204304100000000 -T12023011111193407320300408521110313110832300000000002001050030000000000000000000000000000000000222222000001072219012 -T2202301111119340731219870101WTTT@0B#P2222212222223012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111934073120140718WTTYPBTYW22222112204398100000000120060902WT@@9W@TY22222112204311100000000 -T12023011111193408424200408571120323110766300000000089506540110000000000000000000000000000000000222222000000002229012 -T2202301111119340841219990705WT@YZ0YW92222212222222011214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119340841219930418WTTYY0@@P2222211222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111934084120180324WTTP0B@0022222112204398200000000 -T12023011111193415220800405391120233120000300000000200004170990000000000000000000000000000000000222222000000002229022 -T2202301111119341523219580911WTTWBY9#@2222212222225012213110352513069900000000000000000000000000000000000000000000000000000000000000000000000000000000003182 -T320230111111934152120080713WTT@BZPWP22222122206307100000000 -T12023011111193418225200400391120233110516300000000000004170940000000000000000000000000000000000222222000000002229022 -T2202301111119341822219880911WT@9WZPPP2222212122211012212110055513109900000000000000000000000000000000000000000000000000000000000000000000000354058000000000 -T320230111111934182120130126WT@ZTP@W#22222122204303100000050 -T12023011111193418824200410001120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119341883219470208WT@P@BW9Z2221222122223012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001758000000000000 -T320230111111934188120100707WT@T@TYTY22212222206304100000000 -T12023011111193419322000411551120212110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111119341931219880727WTT#T0#9Y2221222222223012211110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111934193120180107WTT#YWW#T22212222204398100000000 -T12023011111193437025900400311120413110939300000000002004660560000000000070005000000000000000000222222000003052219012 -T2202301111119343701219900321WT@#T0WYW1222212222221012212110570321011710000000000000180002000000000000000000000000000000000000060000060900000000000000000000 -T320230111111934370120080312WTT0#PPBZ12222122204308100000000 -T320230111111934370120200913WTT@Z9#PP12222212204398100000000120100401WTTYT@@@912222122204307100000000 -T12023011111193445020600401561120513111116300000000001004920090000000000000000000000000000000000222222003802412219012 -T2202301111119344501219850727WT@P@Y9Z@2222212222223012212110095121011935000000000000000000000000000000000000000000000000000000000000048000000000000000000000 -T320230111111934450120090101WT@YP0BY@22222122204307100000817120070712WT@#0Y@P922222122204309100000000 -T320230111111934450420120223WTTYWW0#Y22222122104304108280000120090412WTT#YWBZT22222112204307100000000 -T12023011111193455422000408451120313110740300000000000005010170000000000000000000000000000000000222222002600012219012 -T2202301111119345541219870527WTTYW@YPZ2222212222225012215120184223010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111934554120210927WTTBWZYBP22222122204398100000000420110404WT@ZWPWY922222112104304104830000 -T12023011111193457025900402831120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119345701219980712WTT9Z@0@W2122222222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000006 -T320230111111934570120200701WTT99ZTBT11222212204398100000000 -T12023011111193462524200409481120233110484300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111119346253219840301WTTZZ#0PZ2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111934625120190304WTTBBZTYB22222112207398100000000 -T12023011111193468220600402131120232110516300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111119346823219740721WT@ZB0PY#2222212122213012207110362413069900000000000000000000000000000000000000000000000000000000000000000000000796006700000000 -T320230111111934682120140421WT@#ZW0YB22222112206302100000000 -T12023011111193476722000414501120323110766300000000010003920450000000000000000000000000000000261122222000000012219012 -T2202301111119347671219830308WT@T#T0ZT2222212222221011212110362423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119347671219780712WT@90W9Y#2222211222221011212190283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111934767120170901WT@TT0@#922222122204398100000000 -T12023011111193477023500410671120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111119347701219620122WT@9B0Z#W2222212222223012214210114923011800000000000000000000000000000000210002000000000000000000280000000000000000000000000000 -T320230111111934770120070123WTTZ@B0#T22222122204308200000000 -T12023011111193478820600404491120233120000300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111119347883219620723WTT0#BZYY2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000733100000000000000000000 -T320230111111934788120210512WTTT#@BYT22222122206398100000000 -T12023011111193479323500409141120433110939300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119347932219840408WTT#TTTZ@2222212222211012210110600013089900000000000000000000000000000000000000000000000000000000000000000000000000081300000000 -T320230111111934793420050908WT@Y#WYZT22222112204311100000000 -T320230111111934793120100701WT@TYZB@@22222112204306100000000420090907WTT##WWPB12222112104308109140000 -T12023011111193483824700411201120712111480300000000000011650020000000000035002000000000000000000222222000000002229012 -T2202301111119348381219900312WT@ZZZ##P1222222222221012211110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111934838120100421WT@Z@W0WZ12222122204306100000415120090411WTTW#ZZPP12222212204307100000415 -T320230111111934838120110327WTTPZW0YT12222222204304100000415120110327WTTP#TPBZ12222222204304100000415 -T320230111111934838120150913WT@ZBZ9#Y12222222204398100000415120130321WT@PZB0ZB12222212204302100000415 -T12023011111193489722000409411120212110516300000000060000010070000000000000000000000000000000000222222000000002229012 -T2202301111119348971219730727WTT9YZ@T92221222222225012212110075311011900210000000000140000000000000000000000000000000000000000020000138200000000000000000000 -T320230111111934897120050318WT@WBPYWZ22212222204311100000000 -T12023011111193514522000407411120213110376300000000008003160140000000000000000000000000000000211122222000000012219012 -T2202301111119351451219790113WTT@9BTBT2222211222221012212110243623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935145120160504WTTY#Y0ZP22222112204398100000000 -T12023011111193518524200404891120313110835300000000071706540050000000000000000000000000000000000222222000000002229012 -T2202301111119351851219880318WT@B#PB@02222212222221012212110273323011700000000000000000000000000390003000000000000000000000000000000000000000000000000000000 -T320230111111935185120190509WT@PP9WTW22222112204398100000000120120327WT@P0#YY@22222122204303100000000 -T12023011111193523822000409991120212110611300000000000003160060000000000000000000000000000000211122222000000012219012 -T2202301111119352381219800507WTTB#BYW91222221222221012212110411923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935238120200126WT@0Z@@#T12222122204398100000000 -T12023011111193535621700406141120213110611300000000000005280290000000000000000000000000000000000222222000000002229012 -T2202301111119353561219860905WT@WZ9P9#2222212222223012210120342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935356120110901WT9TT@TTB22222122204303100000000 -T12023011111193539522000407241120313110835113220000000006540380000000000000000000000000000000000222222000000002229012 -T2202301111119353951219990123WT@Y0WBZT1222222222221012211120392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935395120190726WT@#9@BZ@12222222204398100000000120150227WTTTTYY0T12222212204302100000000 -T12023011111193553122000409871120612111339300000000000010090320000000000000000000000000000000000222222000000002229012 -T2202301111119355311219920423WT@0ZP99B2221222222222012203210312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935531120120418WT@0T#WT@22212212204305100000000 -T320230111111935531120160313WT@T@#@PP22212222204398100000000120150527WT@B#B@WP22212222204302100000000 -T320230111111935531120210312WT@YT@9ZB22212212204398100000000120190127WTTPZ#PBY22212222204398100000000 -T12023011111193553220600407031120233110516300000000000004170900000000000000000000000000000000000222222000000002229022 -T2202301111119355322219890327WTT9@9#9@2221221222211012211120441611089947000000000000000000000000000000000000000000000000000000000000348900000000091400000000 -T320230111111935532120160727WT@BP9W@Z22212212204398100000000 -T12023011111193557020900411721120413110939300000000025007710170000000000000000000000000000000000222222000000002229012 -T2202301111119355701219940223WT@9ZWPB92222212222225012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935570120140113WT@BPT0B922222122204301100000100 -T320230111111935570120220427WT@0Y0##@12222122204398100000120120170321WTTPY9@Z022222122204398100000100 -T12023011111193567424700408361120413110939300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111119356741219830926WTTBPW#T@2222212222221012212110372323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119356742219820327WTT00@9PP2222211222213102210190085213089900000000000000000000000000000000000000000000000000000000000000000000000000060900000000 -T320230111111935674420220112WTTBTP@#W22222212209398100000000120070411WT@#WWBYP22222122204308100000000 -T12023011111193568325600411701120313110835300000000001606540320000000000000000000000000000000000222222000000002229012 -T2202301111119356831219950404WTTTYBWZP2222212222221012212110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935683120210409WT@@9PB@B22222122204398100000000120170418WTTTY9@W022222122204398100000000 -T12023011111193569524200404421120213110598300000000410005280340000000000000000000000000000000000222222000000002229042 -T2202301111119356951219860926WT@BWYTZW2222212222221012208110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935695120050102WT@P9BZ#P12222122204310100000000 -T12023011111193570722600405051110233110396300000000002004170010000000000000000000000000000000000222222000000002229021 -T2202301111119357072219880308WT@YYBT9P1222221222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935707120160902WTTPBWZ@012222112204301100000000 -T12023011111193580222000408812120323210835300000000000006540110000000000000000000000000000000000222222000000002229032 -T2202301111119358021219900709WT@9TPY9W2222211222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119358021219910226WT@9TPY9W2222212222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111935802120150913WT@9TPY9W22222122204312200000000 -T12023011111193595620600406751120413111034122940000001307710150000000000000000000000000000000000222222000000002229012 -T2202301111119359561219810418WT@T@YPZW2122222222223012212110283221011700210000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111935956120160227WT@WZT0T@22212222204301100000000 -T320230111111935956120200414WTTWY#0#@22222112204398100000000120180318WT@#WZ@0@22222122204398100000000 -T12023011111193611222000414461120423110954300000000124502510060000000000000000000000000000000000222222000005202219012 -T2202301111119361121219710923WTT#@P@Y92222211222222011209290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119361121219780222WT@90TP@Y2222212222222021298290065421011800170000000000000000000000000000000000000000000000000000000000103800000000000000000000 -T320230111111936112120120208WTTP@BT@B22222122204304200000000120060212WTTP#WY@W22222112204309200000000 -T12023011111193639122000402181120233120000300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111119363913219790201WTTB@ZY#92222222222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111936391120200313WT@09ZWBY22212222209398100000000 -T12023011111193654122000409991120113110376300000000001504170060000000000000000000000000000000000222222000000002229012 -T2202301111119365411219880923WTTT0P0Y@2222212222225013212190124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111193663025900402631120333110611300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111119366302219970308WTT@TT09W1222212222221012216910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111936630120170223WTT@T@ZB@12222122204398100000000120160401WTTZ00@#Y12222112204398100000000 -T12023011111193664923500407161120213110618117460000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119366491219990927WTT9Y00T92222212222221012212120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111936649120210312WTTY0B#T@22212112204398100000000 -T12023011111193673820500413621120313110766300000000002006540050000000000000000000000000000000000222222000000002229012 -T2202301111119367381219940518WT@@Y@YW92222212222225012216110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111936738120150718WTT0W9PZB22222112204398100000000120140512WTT0BYPP022222112204302100000000 -T12023011111193690024200414351120313110706300000000000003920180000000000035012000000000000000261122222000000012219012 -T2202301111119369001219900304WT@090BY02222211222221012212110382223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111936900120170407WT@@0TT@#22222122204398100000000120110201WTTBTB99922222122204305100000000 -T12023011111193694022000413691120233110611300000000000001620040000000000000000000000000000000054222122000002012219072 -T2202301111119369401219680923WTTB@YYPT1222222222213012212121180023089900000000000000000000000000000000000000000000000000000000000000000000010000000100000200 -T320230111111936940520060724WTTTPZ#ZY12222222104307108660000 -T12023011111193698822000400811120213110631106960000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111119369881219940202WT@#YB0Y@2221222222221012211110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111936988120150907WTTZPWWW922212222204398100000000 -T12023011111193724021000403411120233120000300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111119372405219860202WT@0BZ#BZ2222212222222012212110095111069930000000000000000000000000000000000000000000000000000000000000178800000000000000000000 -T320230111111937240120200413WT@@#@WT#22222112209398100000000 -T12023011111193731024700408301120213110598300000000000505280120000000000000000000000000000000000222222000000002229012 -T2202301111119373101219920324WTTYZ#@@@2222212222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111937310120150227WTTZY##@922222112204398100000000 -T12023011111193735125900408111120333110611300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119373512219710401WT@YYBT9P1222212222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111937351120070427WTTZZ0#B@12222122204309100000000120050923WT@0YY90Z12222122204310100000000 -T12023011111193737222000404841120312110788126000000000006540610000000000000000000000000000000000222222000000002229072 -T2202301111119373721219910901WTT0Z#Y092222212222221012212110620023010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111937372120190912WTTWTB@Y022212222204398100000000120180927WTTY#T9B022212222204398100000000 -T12023011111193745623300410111120433110939300000000000006540440000000000000000000000000000000000222222000000002229022 -T2202301111119374562219830718WT@@PBT##2222211122213012204120293113109900000000000000000000000000000000000000000000000000000000000000000000000669009000000000 -T320230111111937456120050524WT@9TYTY912222112204308100000050 -T320230111111937456120080323WTT@9WPYP12222112204304100000050120070707WT@T0W0PZ12222112204305100000050 -T12023011111193746522000407961120413110939300000000000005780050000000000000000000000000000000192222122000000012219012 -T2202301111119374651219910501WT@@Y###P2222222222221012211120174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111937465120110418WTT@0WBYY12222212204305100000000 -T320230111111937465120210323WTT9B@9@#12222212204398100000000120160312WTT0#PY9912222222204398100000000 -T12023011111193750024700407521120213110611300000000122505280350000000000000000000000000000000000222222000000002229012 -T2202301111119375001219960901WT@@0B9WT2222212222221012216110362423011400000000000000000000000000000000000000000000000000000000200000000000000000000000000721 -T320230111111937500120200118WTTZ@09BP22222122204398100000000 -T12023011111193758020800414651120312110740300000000005006540050000000000000000000000000000000000222222000000002229012 -T2202301111119375801219890412WTT@09T#Y2222222222225012216110065423010100000000000000000000000000160002000000000000000000000000000000000000000000000000000000 -T320230111111937580120220201WT@YTBP@022212222204398100000050120100422WTT0YZW#922222222204305100000050 -T12023011111193764120600407031120213110611300000000000002710290000000000000000000000000000000181122222000000762219012 -T2202301111119376411219990926WT@#9P#WY2222212222221012216110273321011805000000000000000000000000000000000000000000000000000000030000030000000000000000002252 -T320230111111937641120180313WTT@@@BZZ12222122204398100000000 -T12023011111193775723500404531120412110939134920000000007710920000000000000000000000000000000000222222000000002229072 -T2202301111119377571219920205WT@Z#PZW02221222222221012210120930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111937757120120302WT@Y0YBTY22212122204304100000050 -T320230111111937757120210308WTTZZPZ0Z22212222204398100000000120210308WTT@ZPY#T22212222204398100000000 -T12023011111193776623500407161120512111199300000000000008880310000000000000000000000000000000000222222000000002229012 -T2202301111119377661219880426WT@9PTZBY2222212222221012211110312923010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111937766120150126WTT@#9WB#22222112204301100000000120100907WT@#@9BTB22222112204306100000000 -T320230111111937766120220409WTTYTT@T012222122204398100000000120200412WT@0PWZ0012222112204398100000000 -T12023011111193778224600411871120213110611300000000000005280150000000000070005000000000000000000222222000000002229012 -T2202301111119377821219870121WTTZY0TP02222211222223012211110223823011800000000000000000002000000000000000000000000000000000000310000000000000000000000000000 -T320230111111937782120150327WT@WT90PW22222112204398100000000 -T12023011111193783224700413761120313110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111119378321219860504WTT#9#PWZ2222212222223012215210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111937832120160702WT@ZZTB#T22222122204398200000000120050207WTTTP9PZZ22222112204311200000000 -T12023011111193784222000411981120113110376300000000012004170020000000000105002000000000000000000222222000000002229012 -T2202301111119378421219930401WT@BY0PT02222212222221013214190025821011937000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T12023011111193786520600406751120613111339300000000000008880150000000000000000000000000000000000222222000000002229012 -T2202301111119378652219910926WTTZP@ZTT2222212222215012212110006011089917000000000000000000000000000000000000000000000000000000000000124600000000091400000000 -T2202301111119378651219740127WT@PWT@BZ2222211222223012212190075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111937865120160713WT@#BBZ#Y12222122204398100000000120050408WTTWBWZBB22222122209311100000000 -T320230111111937865120210204WTTBBBYPT22222112204398100000000120190114WT@@9@PZB22222122204398100000000 -T12023011111193786723700414331120233120000300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111119378673219630705WTTTBW00P1222212222221012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111937867120210902WTTBTBBW@12222112206398100000000 -T12023011111193787822900405641120213110611300000000000003960720000000000000000000000000000000132222122000000002229072 -T2202301111119378781219880312WTT9YP#PY2222212222221012212120730023011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111937878120150104WTTBPT@ZB22222122204301100000000 -T12023011111193794325600413441120312110376300000000000004170990000000000000000000000000000000000222222000000002229072 -T2202301111119379431219870523WTT@0ZTPP2222212222221012216111050023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111937943520170924WTT9TW0@022222112104398109140000520160402WTTY#@ZY#22222112104398109140000 -T12023011111193795022000413731110113110376300000000000002690150000000000000000000000000000000000222222000001902219012 -T2202301111119379501219930713WT@WYB9YB1222222222221013216110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111193814422000407231120233110376300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111119381442220010407WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111938144120210401WT@W0Y#BB12222212204398100000000 -T12023011111193820021000414221120213110611300000000000005280630000000000000000000000000000000000222222000000002229072 -T2202301111119382001219900723WTTWWWTBW2222212222221012216120640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111938200120220918WT@99099T22222112204398100000000 -T12023011111193825524200409731120213110516300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111119382551219710108WT@#@900Z2222212222225012213110035721011900200000000000000000000000000000160000000000000000000000000000119300000000000000000000 -T320230111111938255120140527WT@Z9@T#022212122204302100000000 -T12023011111193832125900402831120213110599300000000000003160180000000000000000000000000000000211122222000000012219012 -T2202301111119383211219850421WT@@T0TT02222212222221012212110194123011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111938321120200412WT@YTZBYT22222112204398100000000 -T12023011111193838320300400971120213110516300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111119383831220030708WTTP#Y00#2222212222221012211110134723010100000000000000000000000000000000000000000000000000000000000000136400000000000000000000 -T320230111111938383120220202WTTZ0BP9P22222122204398100000000 -T12023011111193869624100402401120313110800300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111119386961219810309WTT#T00BT1222222222221012216111610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111938696120080713WTT9W@@@Z12222122204307100000277120040107WTTPW0P#B12222222204311100000000 -T12023011111193870022000407791120233120000300000000000004170850000000000000000000000000000000000222222000000002229022 -T2202301111119387003219680712WT@TWWYZW2222212222225012212120006011069940000000000000000000000000000000000000000000000000000000000000591600000000000000000000 -T320230111111938700120090227WT@0YT@PT22222222206306100000000 -T12023011111193880623500405271120523111145300000000000005860070000000000000000000000000000000000222222000003022219012 -T2202301111119388061219790113WTT#Y9YTW2222211222222011215290085221011820000000000000000000000000000000000000000000000000000000000000120600000000000000000000 -T2202301111119388061219820718WTTT90TTW2222212222222021214290085223011800000000000000200000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111938806120140126WTTYZ9ZZ@22222112204302200000000 -T320230111111938806120190409WT@W9TZ9Z22222112204398200000000120160913WTTT##W0B22222112204398200000000 -T12023011111193881323500410671120412110971300000000060707710340000000000000000000000000000000000222222000000002229072 -T2202301111119388131219850123WT@0PYB@B2221122222221012212110950023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111938813120050722WT@TT#PWW22211212204310100000000 -T320230111111938813120110701WT@BZ9T9@12211222204303100000000120070901WT@YTYPTW22211222204308100000000 -T12023011111193886524700406491120413110939300000000000007710470000000000000000000000000000000000222222000000002229012 -T2202301111119388651219930714WT@W9#@TB2222212222221012212110124823010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111938865120140312WT@Z@B09@22222222204398100000000 -T320230111111938865120200921WTTTTYTZ#22222122204398100000000120180924WTTB#P0Z922222212204398100000000 -T12023011111193887122700407491120213110611300000000000205280110000000000000000000000000000000000222222000000002229012 -T2202301111119388711219980323WTT@WPZ##2222212222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111938871120220326WT@ZBW@0B22222122204398100000000 -T12023011111193888920600414251120312110704300000000000006540990000000000000000000000000000000000222222000000002229072 -T2202301111119388891219800212WTTZY0Z##2222212222223012216121780023010900000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111938889120170213WT@0YPTY022222122204398100000000120090701WTT@0Z@Z922222122204305100000050 -T12023011111193898020900411721120233120000112180000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111119389803219750113WT@YWPPP#2222211222222012298110006013069900000000000000000000000000000000000000000000000000000000000000666600000000000000000000 -T320230111111938980120210522WT@YBT#PW12222112207398100000000 -T12023011111193901924500403051120213110599300000000007003160250000000000000000000000000000000211122222000000012219012 -T2202301111119390191219810121WTTBTBT#@2222212222225012212120263423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111939019120090513WTT90@0W022222122204307100000000 -T12023011111193910322000409871120623111339300000000000010090050000000000000000000000000000000000222222000000002229012 -T2202301111119391031219880723WT@0@TYTB2222211222222011212290065421011940000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T2202301111119391031219940108WT@WYBY@#2222212222222021212290065423011800000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111939103120140112WTTBP#00@22222112204301200000000120120213WT@TZ#PZZ22222122204304200000000 -T320230111111939103120190327WT@@@TWY022222112204398200000000120150322WT@P0TZBB22222112204301200000000 -T12023011111193915724700407521120413111034300000000000007320120000000000000000000000000000000000222222003800012219012 -T2202301111119391571219990524WTTBZ9@W#2222212222221012211110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111939157120160927WTT0B@@PP22222122204301100000000 -T320230111111939157120220709WTT@ZTZTP22222112204398100000000120180309WTTBYPPWP22222112204398100000000 -T12023011111193932222700408351120232110516300000000000004170790000000000000000000000000000000000222222000000002229022 -T2202301111119393222219710423WT@@0WTT#2221222222213012212210372313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111939322120050913WTTBYT#0P22222222204312200000000 -T12023011111193937523900405971120423110957300000000000007710170000000000000000000000000000000000222222000000002229012 -T2202301111119393751219920112WT@@YZPBZ2222212222221011211110263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119393751219890907WTTBW0ZPB2122221222221011208190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111939375120200423WT@Z##0Y921222112204398100000000120130111WT@ZZ9ZW922222112204398100000000 -T12023011111193938021700407751120213110548110200000001805280230000000000000000000000000000000000222222000000002229012 -T2202301111119393801219910918WT@@Z@@@92222212222221012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111939380120220902WT@ZTP@P#22222122204398100000000 -T12023011111193952222000403351120212110611300000000000003160130000000000000000000000000000000211122222000000012219012 -T2202301111119395221219760409WTTPY@#9Y2222212222221012214110471323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111939522120100126WT@PBZ#ZP12222112204305100000000 -T12023011111193953025900402121120213110516300000000000004170240000000000000000000000000000000000222222000000002229012 -T2202301111119395301219760424WTTY#YZ9T2222211222225012212110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111939530520180713WTT@BB0W922222112104398109140000 -T12023011111193966325100412821120213110611300000000000005280360000000000000000000000000000000000222222000000002229012 -T2202301111119396631219990914WT@@#9TY92222212222221012212120342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111939663120180321WT@BTWW9B22222112204398100000000 -T12023011111193970822000405321120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111119397081219900702WTT0Z99B02212122222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111193984424100414321120532110966300000000000007710530000000000000000000000000000000000222222000000002229022 -T2202301111119398442219860727WT@YYBT9P1222212222221012212920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111939844120130412WT@90YTP@12222112204303100000000120090123WT@0TB@@Z12222122204306100000000 -T320230111111939844120200523WT@PTTWT012222112204398100000000120160708WT@Y0#TB912222122204398100000000 -T12023011111194000623800413801120213110396300000000000404170020000000000000000000000000000000000222222000000002229012 -T2202301111119400062219980104WT@YYBT9P2222222222221012212210015913050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940006120220305WTT#WTWZT22212222204398100000000 -T12023011111194001020800411931120233110470300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111119400103219710507WT@BTY@ZZ2222212222225012216110253513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940010120130427WTTBBWT0W22222122207303100000000 -T12023011111194001820300400971120313110740300000000011103140080000000000000000000000000000000000222222000000002229012 -T2202301111119400181219790314WTTYZBZPZ2222212222221012212110095121011806000000000000000000000000000000000000000000000000000000000000042700000000000000000000 -T2202301111119400182219820112WTTYYBPWY2222211222211102212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111940018120200712WT@BZ#9ZT22222112204398100000000 -T12023011111194006623500408281120213110407300000000048505280130000000000000000000000000000000000222222000000002229012 -T2202301111119400661219770512WTTTW@Z0P1222222222225012216110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940066120170923WT@ZPY0TB12222112204398100000000 -T12023011111194028220600402131120523111116300000000000005320680000000000000000000000000000000355122222000000012219072 -T2202301111119402821219870201WTT09T9992222212222221011212110660023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119402821219860726WTT00BZWP2222211222221011212190312923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940282120060127WT@@PYYWT22222112204309100000000 -T320230111111940282120170318WTT999WZY22222122204398100000000120160124WT@09WT0W22222122204398100000000 -T12023011111194029123800413801120213110493300000000003505280050000000000000000000000000000000000222222000000002229012 -T2202301111119402911219740309WTTYBTZY@2222212222223012210110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940291120080923WTT@WY9WT22222112204308100000050 -T12023011111194052220600404351120213110560300000000000000600140000000000000000000000000000000000222222000004682219012 -T2202301111119405221219850304WT@YWTTBZ2222212222223012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940522120060214WT@@9@T#B22222122204311100000468 -T12023011111194054822000411551120213110364300000000000003160640000000000000000000000000000000211122222000000012219072 -T2202301111119405481219920104WT@0PZ0@T2221222222221012211110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940548120110909WT@YTB#ZB22212222204305100000000 -T12023011111194067624500405781120332110740300000000000005280330000000000000000000000000000000000222222000000002229022 -T2202301111119406761219780312WTTWP#0TB2222212222223012212110940023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940676420160522WTTBBW0YY22222112104398109140000120070927WTT@B99@T22222112204309100000000 -T12023011111194074020600414871120523110847300000000050008430150000000000000000000000000000000000222222004400012219012 -T2202301111119407401219760413WTT#Y9BZW2222122222222011212990223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119407401219780421WTT#YTTZZ2222221222222021212990223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940740120060918WTT9YPZB022222212204308900000000 -T320230111111940740120140124WT@ZT@WB022222222204303100000000120120522WT@@B090Z22222222204305100000000 -T12023011111194075822000408891120433110835300000000000006540350000000000000000000000000000000000222222000000002229022 -T2202301111119407582219800523WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940758120080712WTT@Z90@912222222204309100000000 -T320230111111940758120190112WTTZYZTPT12222222204398100000000120180923WT@B9YBPZ12222222204398100000000 -T12023011111194083525900402721120233110619300000000000003160900000000000000000000000000000000211122222000000012219022 -T2202301111119408351219750301WTTT0#Z0@1222212222221012212110910023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111940835120040318WTTY#T9#T12222122204311100000000 -T12023011111194102225900402121120213110611108250000087705280180000000000000000000000000000000000222222000000002229012 -T2202301111119410221219950504WT@9B#0ZT2222212222221012210110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941022120200322WTTPYZPT022222122204398100000000 -T12023011111194110324700408091120213110618109200000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119411031219940112WTT9Z00YP2221222222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941103120210313WT@YZYWZ#22212212204398100000000 -T12023011111194114820600404121120523110939300000000000008880040000000000000000000000000000000000222222000000002229012 -T2202301111119411481219970423WTTP#BTP#2222122222221011212990035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119411481219960124WTTYZZ9ZT2222121222221011212990035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941148120170702WTTT@9P0@22221222204398100000000 -T320230111111941148120210707WT@#WBZ9P22221222204398100000000120190112WTT#YY0Z022221212204398100000000 -T12023011111194115520300414741120532111116300000000000007710060000000000000000000000000000000000222222000000002229022 -T2202301111119411552219890924WT@0WPZ#@2122222222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000025 -T320230111111941155120130213WTTZZBZBY21222212204303100000000120060327WT@WZW#ZB21222222204309100000000 -T320230111111941155120190423WT@YP@@#Z21222222204398100000000120170907WTTZPBP0W21222222204398100000000 -T12023011111194120320800410781120233120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119412033219660404WTTYZBTB92222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000922000000000000 -T320230111111941203120170518WTTBTTW0B22222112206398100000000 -T12023011111194124425900402721120333110376300000000024004170020000000000000000000000000000000000222222000000002229022 -T2202301111119412442219680707WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119412442219610326WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941244120060912WT@BTWP0P12222222204310100000000 -T12023011111194127024200403941110213110516300000000000001530140000000000000000000000000000000000222122000000002229012 -T2202301111119412701219830518WTT0ZT0WY2222222222221012213120154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941270120120123WT@W@00@#22222212204304100000000 -T12023011111194146822000407411110233110306107340000000002550010000000000000000000000000000000000222222000000002229021 -T2202301111119414683219820714WT@9W9#P02221222222221012213110085211069914000000000000000000000000000000000000000000000000000000000000138400000000000000000000 -T320230111111941468120170727WT@##B0@T22212212207398100000000 -T12023011111194153920600407031120313110835300000000000006540450000000000000000000000000000000000222222000000002229012 -T2202301111119415391219820312WT@Z99WTY1222212222223012213110481223010900000000000000000000000000000000000000000000000000000000050000000000000000000000000000 -T320230111111941539120150211WTTZ@W#TY12222122204398100000000120100418WT@#Y9Y0P22222222204305100000000 -T12023011111194155224700408091120433110835300000000000005480830000000000000000000000000000000000222222000001062219022 -T2202301111119415522219900122WT@YYBT9P1222222222224012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941552120050724WTTZP9YZY12222222204309100000000 -T320230111111941552120210913WT@P#T9@@12222212204398100000000120210913WT@9BW@0T12222212204398100000000 -T12023011111194155823500405271120233120000300000000000003400990000000000000000000000000000000000222222000000772219022 -T2202301111119415583219540127WTTWWZB9Y2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001268000000000000 -T320230111111941558120060526WTT0PTPZY22222122206310100000102 -T12023011111194163525900402831120213110598300000000000005280780000000000000000000000000000000000222222000000002229072 -T2202301111119416351219870722WT@PP@B9P1222222222225012210120720023010900000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111111941635120220307WT@0WT#ZP12222212204398100000000 -T12023011111194165220600414161120412110893300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111119416521219910213WTTPZB9BB2222212222221012212111110023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111941652120100326WTTTZZT9W22222122204305100000000 -T320230111111941652120170121WT@B#@BZZ22222112204398100000076120120407WTT@B9BBP22222112204304100000023 -T12023011111194176022700408351120512111130300000000000008880230000000000000000000000000000000000222222000000002229012 -T2202301111119417601219960908WTTT9W9Y#1222222222223012210110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941760120190904WT@YY0ZTW12222222204398100000000120150912WT@@Z#TZW12222212204301100000000 -T320230111111941760120210302WTT9@@WWZ12222222204398100000000120200104WT@YB9##T12222212204398100000000 -T12023011111194189722000413731120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119418972219840714WT@9TY9PT2221222222211012210110451513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111941897120120121WTTTB#Y9022212212204304100000000 -T12023011111194193821000403301110213110611300000000000302210190000000000000000000000000000000000222222000003072219012 -T2202301111119419381219800401WT@0##BYZ2222212222225012209110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941938120060414WT@TTZW#T22222112204309100000000 -T12023011111194194621000408061120512111116300000000000208880080000000000035001000000000000000000222222000000002229012 -T2202301111119419461219850712WTTYWYWYW1222222222221012212110530721011937000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941946120100421WT@0T@T9012222212204306100000000120070905WTTY@0@@T12222212204309100000000 -T320230111111941946120130313WTT0Z9YT@12222222204302100000000120110911WTTP0##B@12222212204305100000000 -T12023011111194199025900403551120233110470300000000000004170670000000000000000000000000000000000222222000000002229022 -T2202301111119419903219600423WT@#BB0Z01222222222222012205210154513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111941990120050918WT@##9@BY12222212206310100000000 -T12023011111194202424200407311120333110740300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111119420243219690302WTT9@#Y992222212222221012212110600013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942024120200512WTT00WWBW21222122206398100000000120140504WT@PP#WY#21222122206302100000000 -T12023011111194209123500410671120113110376300000000000904170030000000000000000000000000000000000222222000000002229012 -T2202301111119420911219990505WTTT#W9B@2222212222221013211190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111194220424200413972120523211199300000000080008880090000000000000000000000000000000000222222000000002229032 -T2202301111119422041219900708WT@PTW#PY2222212222222011211290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119422041219780909WT@BT@Y#Y2222211222222021209290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942204120160921WTT00BB#Y22222112204398200000000 -T320230111111942204120210423WTT9TT0Y022222122204398200000000120180412WT@##TW@@22222222204398200000000 -T12023011111194222324500410691120213110611300000000002505280680000000000000000000000000000000000222222000000002229072 -T2202301111119422231219780127WT@WB@#P#2222211222221012209120690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942223120040107WTT0#0@YW22222112204311100000000 -T12023011111194225524900404261120322110802300000000000006540840000000000000000000000000000000000222222000000002229072 -T2202301111119422551219960504WTTBYB9Z02222211222221011209190154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119422551219940727WT@YP99TY2222212222225011212110780023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942255120210207WT@TP9YW922221222204398100000000 -T12023011111194228821400408021120633111029300000000050007710490000000000000000000000000000000000222222000000002229022 -T2202301111119422882219940127WT@YYBT9P1222212222222012202990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119422882219920123WT@YYBT9P1222211222222022298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942288120140514WT@@WBZYT12222112204303100000000120110712WT@T9@@@#12222112204305100000000 -T320230111111942288120220221WT@PTYBZB12222112204398100000000120170921WT@Z@YPTY12222112204398100000000 -T12023011111194230722000404842110323210740300000000000002530010000000000000000000000000000000000222222000000002229032 -T2202301111119423071219860701WT@@0Z@@T2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119423071219890326WT@9#@@BW2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942307120150318WT@W@W@0T22222122204301200000000 -T12023011111194232025600404161120423111034300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111119423201219890526WT9TT@TP02222212222222011212110223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119423201219810927WTT0Z###B2222211222222021212190223821011828000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942320120110914WTT9B@YW#22222112204304100000000120090113WT@0@B0BW22222112204307100000000 -T12023011111194233722000413961120333110611300000000000005280560000000000000000000000000000000000222222000000002229022 -T2202301111119423372219950224WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942337120200921WTT0Z#P0T12222122204398100000000120170714WT@Y0TYP#12222112204398100000000 -T12023011111194237124200410001120213110598300000000001105280230000000000000000000000000000000000222222000000002229012 -T2202301111119423711219990923WTT0WZTBZ2122222222221012212110243623011800000000000000000000000000000000110000000000000000000000000000000000000000000000000000 -T320230111111942371120190126WT@#00YW021222212204398100000000 -T12023011111194237622000407411120312110670300000000004506540740000000000000000000000000000000000222222000000002229072 -T2202301111119423761219750523WTT0ZTZ@W2222211222223012216210710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000002916 -T320230111111942376120100527WTTYB9@##22222122204305200000000120060313WT@TW009022222122204308200000000 -T12023011111194238422000414461120232120000300000000000004170480000000000000000000000000000000000222222000000002229022 -T2202301111119423845219890307WTT900#BP2221222222221012213110006011069956000000000000000000000000000000000000000000000000000000000000300900000000000000000000 -T320230111111942384120220423WT@0Z0T#T22212212208398100000000 -T12023011111194243423300407291120233110493300000000000004170860000000000000000000000000000000000222222000000002229022 -T2202301111119424343219760907WTTPPTZTP2222212222225012208110680013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942434120140918WTTW@W@TY22222112206301100000000 -T12023011111194251424200404281120312110802300000000000806540240000000000000000000000000000000000222222000000002229012 -T2202301111119425141219860407WTTZ9P99T2222212222225012216110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942514120130109WT@P9@TBT22222122204303100000000120080412WT@9@0Y0B22222112204308100000000 -T12023011111194260020800409831120333120000300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111119426003219630407WT@#PBT092222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942600120160124WTT@0WBT@22222112206398100000000120160124WT@#TBW9P22222122206398100000000 -T12023011111194263724200403941120713111490300000000000011650510000000000000000000000000000000000222222000000002229012 -T2202301111119426371219930407WT@B9@WY02221222222221012212110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942637120130122WTTY@PTBW22212222204302100000000120090927WTT@P0TY@22212222204306100000000 -T320230111111942637120150723WTT9BY#PP22212212204398100000000120140404WT@W#T09Y22212222204301100000000 -T320230111111942637120200514WTT9Y9@WZ22212222204398100000000120160324WT@P0#00@22212212204398100000000 -T12023011111194263823500404531120212110376300000000000005280060000000000000000000000000000000000222222000000002229072 -T2202301111119426381219790112WTT099#ZT2222212222223012213110880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942638120210724WT@9TPY9W22222212204398100000000 -T12023011111194276723500414281120333110611300000000007000730160000000000000000000000000000000000222222000004552219022 -T2202301111119427672219870127WT@YYBT9P1222222222221012209910006011079916000000000000000000000000000000000000000000000000000000000000116100000000000000000000 -T320230111111942767120130223WTT09@YYW12222212204303100000000120080102WTTWB0TZZ12222222204308100000000 -T12023011111194286322000407411120233110376123530000125904170040000000000000000000000000000000000222222000000002229022 -T2202301111119428632219950921WT@YYBT9P2222222222221012214910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111942863120220108WTT0Y@TWY12222112204398100000000 -T12023011111194287924200414851120523111133300000000002007000430000000000000000000000000000000000222222000001882219072 -T2202301111119428791219830212WT@ZBB9#P2212222222222011212110860021011939000000000000000000000000000000000000000000000000000000000000037500000000000000000000 -T2202301111119428791219800423WT@YWY#0@2212221222222021216290860023011800000000000000000000000000000000000000000000000000000000000000000000000000000000002279 -T320230111111942879120060427WT@YZ#W#022122212204310100000000 -T320230111111942879120190927WTTBT#0ZZ22221222204398100000000120130102WTT0YYBB922122222204302100000000 -T12023011111194308724200407431120513111181300000000030008880880000000000000000000000000000000000222222000000002229072 -T2202301111119430871219870401WT@T9Y9#92221222222225012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943087120080326WTTY#9PW922212222204306100000061120060401WTTT9#WWP22212222204309100000000 -T320230111111943087120180118WTTPYTP9W22222112204398100000000120110226WT@@###@B22212212204304100000000 -T12023011111194310420800410781120313110753300000000018006540270000000000000000000000000000000000222222000000002229012 -T2202301111119431041219840401WTTZ#ZBTY2222212222221012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943104120210307WTT@B0#YZ22222112204398100000000120190422WTT0#PYZ#22212222204398100000000 -T12023011111194319825200410591120213110560300000000000004490270000000000000000000000000000000000222222000000792219012 -T2202301111119431981219600326WT@B0B9@P2222212222225012216110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943198120150412WT@#T#9P#22222112206398100000086 -T12023011111194323124700409381120432110939300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119432312219790118WT@B0T@PY2221222122211012212120362413109900000000000000000000000000000000000000000000000000000000000000000000000593024900000000 -T320230111111943231420110321WT9TTTBB022212212104305109140000 -T320230111111943231120130726WTTYPZB9P22212212204303100000000420110321WT@B#Y##W22212222104305109140000 -T12023011111194329220800410751110213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111119432921219900312WT@B#YBBP2222212222221012212120065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943292120190313WT@YWT@9W22222112204398100000000 -T12023011111194336122000410051110232110470300000000000001740370000000000000000000000000000000000222222000000002229021 -T2202301111119433613219910727WTT9T0Z9Z2221222222225012212110550511069927000000000000000000000000000000000000000000000000000000000000251700000000000000000000 -T320230111111943361120070312WT@@BBB#P22212222207308100000810 -T12023011111194338525600414551120322110704300000000000006540300000000000000000000000000000000000222222000000002229072 -T2202301111119433851219830707WTTZZZ0@W2222212222222011209190700023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119433851219740723WT@@WW0Z@2222211222222021216190630023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943385120100312WT@WB#0T922222122204305100000000 -T12023011111194366221700403822120523211116300000000000008880040000000000000000000000000000000000222222000000002229032 -T2202301111119436621219880927WT@@BZY@B2222212222222011211290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119436621219830705WTT#W0PB92222221222222021216290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943662120080724WT@Z99PYP22222222204308200000000 -T320230111111943662120160707WT@TZ@B0P22222212204398200000000120100923WT@Z#T#0P22222212204306200000000 -T12023011111194377624200414022120622211395300000000076410090100000000000000000000000000000000000222222000000002229032 -T2202301111119437761219830226WTTYZTZYT2222211222222011211290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119437761219860101WTTBP0W#Z2222212222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943776120090404WT@Z#BB9922222112204307200000000120070404WT@0TTWB@22222112204308200000000 -T320230111111943776120150426WT@B#YWBY22222122204398200000000120110923WTT@YPPBZ22222122204304200000000 -T12023011111194378223300410111110413111034300000000020006960070000000000000000000000000000000000222222000000752219072 -T2202301111119437821219920107WTT9T9@W@2222212222221012216110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943782120120918WT@Z900#W22222112204303100000000 -T320230111111943782120160207WTTYZ@P#022222122204398100000000120150405WTT0T00@W22222122204301100000000 -T12023011111194380720600409771120423111034300000000000807240020000000000070002000000000000000000222222000000472219012 -T2202301111119438071219930401WTT0ZY0YY2122222222222011213190095121011804000000000000000000000000000000000000000000000000000000000000018700000000000000000208 -T2202301111119438071219970323WTT#Y###P2222211222222021212190095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943807120200722WTTZTB@0021222212204398100000000120200722WT@P#TBYW21222222204398100000000 -T12023011111194388822000404841120323110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111119438881219950918WT@P0Y9ZZ2221221222222011298290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119438881219930921WTT#@W#9T2221222222222021298290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943888120190423WTTWZ@T#922222222204398200000000 -T12023011111194389522600405052120423210939300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111119438951219790721WTT0@B@992222212222222011214290045623011800000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T2202301111119438951219720718WTTYB@BW#2222211222222021214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943895120150212WT@B#WT#B22222122204398200000000120140404WTTBY@B0T22222112204301200000000 -T12023011111194390020600409771120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119439003219670112WTT@TP0#P2222212122221012213110114913069900000000000000000000000000000000000000000000000000000000000000000000001250000000000000 -T320230111111943900120090101WTTZY@@@922222122207306100000000 -T12023011111194394225800405801120332110740300000000045005280120000000000000000000000000000000000222222000000002229022 -T2202301111119439425219560313WTTYZP#TY2221221122211012212110006013109900000000000000000000000000000000000000000000000000000000000000000000000737019700000000 -T320230111111943942120140512WTT@@ZT#Y21222212209303100000000120120101WT@P9ZWY021222212209304100000050 -T12023011111194397222000405841120323110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111119439721219860926WT@@@TYTP2222212222222011216210075323011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T2202301111119439721219780123WTTB09@#Y2222211222222021216290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111943972120070401WT@Y@BT9022222122204309200000000 -T12023011111194399524200407311120233120000300000000000004170770000000000000000000000000000000000222222000000002229022 -T2202301111119439953219770511WT@TW@P@B2222212222223012216110570313069900000000000000000000000000000000000000000000000000000000000000541600000000000000000000 -T320230111111943995120090507WT@#PTP#@22222122207307100000050 -T12023011111194401323500404821120313110835300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111119440131219790423WTT9@090Y2222212222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944013120130722WTTZ@WY#W22222122204303100000000120050904WT@#0#0#P12222122204310100000000 -T12023011111194412724700405901120312110281300000000000003160360000000000000000000000000000000211122222000000012219012 -T2202301111119441271220020523WTTYWWT@Y2222212222221012210110144623010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119441272219980526WTTTBB0@T2222211222211102211190006013089900000000000000000000000000000000000000000000000000000000000000000000000000078400000000 -T320230111111944127120200423WTT#9@BW922222122204398100000000 -T12023011111194414522000408891120823111691300000000000012890050000000000000000000000000000000000222222000000002229012 -T2202301111119441451219810708WTTT@@#YZ2212221222222011214290055521011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119441451219900726WTT@@@0002212222222222021298290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944145120120124WT@YP9BBT22122222204305200000000120110412WT@9TZZW022122212204306200000000 -T320230111111944145120180527WTTWPW9B#22122222204398200000000120160527WT@9ZB@P@22122212204302200000000 -T320230111111944145120210707WT@B09#0@22122212204398200000000120200527WTT9PPWTW22122222204398200000000 -T12023011111194421022000403891110213110611300000000000003740010000000000000000000000000000000000222222000000002229012 -T2202301111119442101219900313WTT@ZTBY91222212222223012211110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944210120150126WTT0ZY0WT12222212204301100000000 -T12023011111194421121700403821110213110481300000000000005280340000000000000000000000000000000000222222000000002229072 -T2202301111119442111219850226WTT00W99Z2222212222225012216110650021011812000000000000000000000000000000000000000000000000000000000000079200000000000000000000 -T320230111111944211120050718WTTZP99YB22222122204310100000304 -T12023011111194424125200407301120213110611300000000000005280470000000000000000000000000000000000222222000000002229012 -T2202301111119442411219860423WTTBP#W#Z2222222222221012212110481221011721000000000000000000000000000000120000000000000000000000040000000000000000000000000000 -T320230111111944241120220707WTT0W@YYY22222222204398100000000 -T12023011111194426424700409381120313110786300000000010006540030000000000000000000000000000000000222222000000002229012 -T2202301111119442641219890907WTTYB#B#02222212222221012209120392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944264120190313WT@YPPY#Y22222112204398100000000120080909WTT@PBWW@22222122204307100000000 -T12023011111194427024200404421120213110305300000000000002900130000000000000000000000000000000211122222002600012219012 -T2202301111119442701219880207WTTB@#W@P2222212222225012216110461423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944270120100313WTT0B@Y##22222122204305100000000 -T12023011111194433724700408301120213110598117460000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111119443371219890901WT@ZB00Z02222212222221012210110441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944337120210418WTTPZ99WZ22222112204398100000000 -T12023011111194438723500405981120413111034300000000000007710250000000000000000000000000000000000222222000000002229072 -T2202301111119443871219830312WT@YZZ#PP1222222222221012216110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944387120050418WT@9900B912222212204312100000000 -T320230111111944387120210921WTTTWTB@Z12222122204398100000000120200212WT@ZTBZBY12222122204398100000000 -T12023011111194445022000402371120213110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111119444501220010327WTTPYW@BT2222212222221012212110184223010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944450120190304WT@09@Y0W22222112204398100000000 -T12023011111194446724100402401120333110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119444672219800404WT@@TZBWY2222212222212012214110402013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111119444672219790914WTTTYZ@9W2222211222212022210190144613089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111944467120080321WTTWW@@Y922222122204307100000000 -T12023011111194466124700413761120213110598300000000000005280480000000000000000000000000000000000222222000000002229012 -T2202301111119446611219920307WTTB@#WWY2222212222221012213110491123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111944661120190107WTTYW09T022222112204398100000000 -T12023011111194467220600414771120113110376300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111119446721219930712WTTW@9PT#2222212222221013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111194467921700406141120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119446792219790922WT@9YW@9Y2222211222211012212110710013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111944679120120304WTTW@0ZWY22222122204302100000000120090927WTT09Y@9W22222112204307100000000 -T12023011111194470723500410671120423110939300000000000007710070000000000000000000000000000000000222222000000002229012 -T2202301111119447071219880723WTT0@Z##B2222212222222011214290085223011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T2202301111119447071219840423WTT#PYYYY2222211222222021214290085223011800000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111111944707120180404WT@YY@BW#22222122204398200000000120100918WTTYY#BYT22222122204306200000000 -T12023011111194475824200414021120332120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119447583219690322WTT9P9W0Z2221222222225012210121070011069924000000000000000000000000000000000000000000000000000000000000299200000000000000000000 -T320230111111944758120120307WTT@ZTYZT22212222206303100000000120050402WT@##P@P022212222206311100000000 -T12023011111194481620900411721120533111116300000000000006540780000000000000000000000000000000000222222000000002229022 -T2202301111119448162219800404WTTW9BBZW2222212222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111944816120190307WT@P#ZY#022222112204398100000000120140912WT@9B##0022222112204302100000000 -T320230111111944816420080712WTT0B#WY@22212112104308109140000120060423WTTWW@P@022212112204310100000000 -T12023011111194490524200409731120423110939300000000150007710040000000000000000000000000000000000222222000000002229012 -T2202301111119449051219870714WTTY9WWW@2222212222225011215290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119449051219870124WT@9TPY9W2222211222225021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111944905120150702WT@9TPY9W22222112204301200000000120100927WTT#YZ00B22222122204308200000000 -T12023011111194495225900403551120233110341300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119449523219560404WT@YYBT9P1222212222225012202910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000450 -T320230111111944952120070323WTTTY0YTT12222122206309100000000 -T12023011111194501523700414331120233110516300000000000004170800000000000000000000000000000000000222222000000002229022 -T2202301111119450152219910323WTT0YPPT@1222212222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111945015120160426WT@#9WW#012222112204398100000000 -T12023011111194503520800411931120313110835116160000285006540110000000000000000000000000000000000222222000000002229012 -T2202301111119450351219920427WTTZ@T9T#2222212222221012212110055521011729000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111945035120190927WTTZ#9WTW22222112204398100000000120170421WT@P00W#Y22222112204398100000000 -T12023011111194522920600414161120532111116300000000000007710700000000000000000000000000000000000222222000000002229022 -T2202301111119452292219860726WTTY##Y@T2221222122211012216111220011109907000000000000000000000000000000000000000000000000000000000000052500000511042300000000 -T320230111111945229120060312WT@ZTP@9Y22212222204309100000000120040327WT@##ZB0022212212204311100000000 -T320230111111945229120150101WT@Z0Y9W#22212222204301100000050120080321WTT0@W#T022212222204307100000050 -T12023011111194538520800411601120213110516300000000000005280430000000000000000000000000000000000222222000000002229072 -T2202301111119453851219850221WTTW0W#T02222212222221012216110660023010900000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111945385120040427WTT#9T@WB22222112204311100000000 -T12023011111194551524500405781120213110611300000000000005010110000000000000000000000000000000000222222002600012219012 -T2202301111119455151219750126WTT@ZTTP02222211222223012216110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111945515120060107WT@09@0BZ22222112204309100000000 -T12023011111194578422000413691120312110611300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111119457841219960327WTTB@9TT92221222222221012210110520823010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111945784120220709WTT@T#0@022212212204398100000000120190907WTTT0B0TT22212222204398100000000 -T12023011111194585923500411471120412111017113990000000007710280000000000000000000000000000000000222222000000002229072 -T2202301111119458591219870712WTT00YPYY2222212222221012212110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111945859120120904WT@PZ#90W22222112204304100000000 -T320230111111945859120220704WT@ZZYZTT22222112204398100000000120200727WT@YTBTBY22222122204398100000000 -T12023011111194591320600409771120433110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119459132219820712WT@WB@WPW2122222222215012213110600013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111945913120050902WT@@BTPW#11222222204311100000000 -T320230111111945913120090407WTT0#@ZZY11222212204307100000000120080914WT@T@0PP#11222212204307100000000 -T12023011111194594422000410051120312110835136040000000003140370000000000000000000000000000000000222222000003402219012 -T2202301111119459441219840124WT@PZYWWW1222222222225012216110560421011810000000000000000000000000000000000000000000000000000000010000068000000000000000000000 -T320230111111945944120210709WT@@@#BY012222222204398100000000120150727WTTPTY99T12122222204398100000000 -T12023011111194600620600401561120323110766300000000000006540250000000000035006000000000000000000222222000000002229012 -T2202301111119460061219800218WTT9Y0Z9Y2222212222222011212190204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119460061219810902WT@9P00TP2222211222222021212190144623011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111946006120200922WTTB#TYZB22222122204398100000000 -T12023011111194602222000407241120213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111119460221219900327WTT0W#@9Y2222212222225012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111946022120180102WTT#BY9BW22222112204398100000000 -T12023011111194611522700413181120233110516300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111119461153219760121WT@T@00BW2222212122211012213110680013069900000000000000000000000000000000000000000000000000000000000000000000000886004800000000 -T320230111111946115120100709WTT#W9YW922222122209304100000000 -T12023011111194627724700405831120212110611300000000000505280510000000000000000000000000000000000222222000000002229012 -T2202301111119462771219820922WT@ZP@YZ#2222212222221012216120520823011400000000000000000000000000000000000000000000000000000000110000000000000000000000001098 -T320230111111946277120180422WT@#ZTTTB22212112204398100000000 -T12023011111194650624200404891120213110611300000000000005280370000000000000000000000000000000000222222000000002229072 -T2202301111119465061219760426WT@Y#9PB01222212222225012212111790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111946506120050512WT@@T@YPZ12222112204311100000000 -T12023011111194653424700408091120313110835300000000050005460080000000000000000000000000000000000222222000001082219012 -T2202301111119465341219800105WTT099ZYZ2221222222225012213110095123011400000000000000000000000000000000000000000000000000000000000000021500000000000000000000 -T320230111111946534120080502WT@0Z9YYP22212112204309100000000120060112WT@YYZT0022212112204310100000000 -T12023011111194653824200413921120423111002300000000000007710100000000000000000000000000000000000222222000000002229012 -T2202301111119465381219830204WT@0BT9YZ2222211222222011211290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119465381219860107WTTBYW#902222222222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111946538120160902WT@9TPY9W22222122204301200000000120140111WT@9TPY9W22222112204302200000000 -T12023011111194660820600414831120313110835300000000000006540130000000000000000000000000000000000222222000000002229012 -T2202301111119466081219900418WTTP99#Z@2222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111946608120170526WTT#YPW#922222122204398100000000120150227WT@TT##B@22222122204398100000000 -T12023011111194661620600400872120323210835300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111119466161219930211WT@ZBT9WZ2222211222222011213290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119466161219910123WTTWB9BT@2222212222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111946616120180412WT@@@TYZ#22222112204398200000000 -T12023011111194663424200402981120233110493106510000000004170470000000000000000000000000000000000222222000000002229022 -T2202301111119466345219890427WTT@W#P9W2222212222222012212120006011069923000000000000000000000000000000000000000000000000000000000000161900000000000000000000 -T320230111111946634120150127WTTBPPTBY22222122209398100000000 -T12023011111194673425900402721120333110611300000000000005280490000000000000000000000000000000000222222000000002229022 -T2202301111119467342219880911WT@YYBT9P1222212222223012206920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111946734120160404WTTWPPB9012222112204398100000000120080902WT@W00Z#B12222122204307100000000 -T12023011111194681122600405051120213110631300000000015002370130000000000000000000000000000000290222122000000012219012 -T2202301111119468111219920226WTTWBP#TW2222212222221012212120491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111946811120160927WT@90YPWP22222112204398100000000 -T12023011111194686625900402721120233110235300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111119468663219770118WT@YYBT9P1222222222221012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111946866120100305WT@BY9TPT12222212207306100000000 -T12023011111194703320600414771110113110094300000000000000260010000000000000000000000000000000000222222000000002229012 -T2202301111119470331219860127WTTZP9ZZT2221222222221013211190580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111194705525600414551120232110516300000000000004170750000000000000000000000000000000000222222000000002229022 -T2202301111119470553219710327WT@@#YYZT2222212222225012210110124813069900000000000000000000000000000000000000000000000000000000000000000000000000000009720000 -T320230111111947055120100523WT@WBTTBP22222122206306100000050 -T12023011111194710120600414831120333110835300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111119471012219770712WTT#@PB#Z2222211222215012212110560413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111947101120130127WTT9@W90022222122204302100000000120100721WTT9Y#0YB12222122205306100000000 -T12023011111194719925200407301120213110521106750000086202400060000000000000000000000000000000000222222000002882219012 -T2202301111119471991219940721WT@Z00W@02222212222221012212110065421011720000000000000000000000000000000000000000000000000000000420000114800000000000000000000 -T320230111111947199120170107WT@@9@@YW22222122204398100000000 -T12023011111194740924200404701120213110611300000000000004170990000000000000000000000000000000000222222000000002229072 -T2202301111119474092219750427WTTW9Y#T02221222222225012212111080013051400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111947409120090127WT@ZBZPP#22212222204306100000000 -T12023011111194756924900404261120933111480300000000000010090040000000000000000000000000000000000222222000000002229022 -T2202301111119475692219900105WT@YYBT9P1222222222225012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119475692219880726WT@YYBT9P2222221222225102208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111947569420080707WTTBY@#9Z12222112104308109140050 -T320230111111947569120110901WTTZZ####12222112204305100000000120100201WTT9#0PTT12222122204306100000000 -T320230111111947569120160411WT@PWTTB#12222122204301100000000120130923WTT9BP0BZ12222122204304100000000 -T320230111111947569120200704WT@PB#T9Z12222112204398100000000120180923WT@@0@TP912222112204398100000000 -T12023011111194760725600400221120233110446300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111119476073219830427WT@0YZZWZ2222212222222012213120006011069948000000000000000000000000000000000000000000000000000000000000300000000000000000000000 -T320230111111947607120210905WT@9TPY9W22222112207398100000000 -T12023011111194762822000410052120623211359300000000000010090020000000000000000000000000000000000222222000000002229032 -T2202301111119476281219810224WT@9TPY9W2222211222222011214290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119476281219840402WT@9TPY9W2222212222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111947628120080311WT@9TPY9W22222122204308200000000120060912WT@9TPY9W22222112204310200000000 -T320230111111947628120160223WT@9TPY9W22222122204301200000000120100323WT@9TPY9W22222122204307200000000 -T12023011111194763720600407031120332110704300000000000005280070000000000000000000000000000000000222222000000002229022 -T2202301111119476373219560201WTT9000W@2122222122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001391000000000010 -T320230111111947637120110911WTT#ZTW@921222222206305100000010120090126WTT909Z#P21222212206307100000010 -T12023011111194765824200402981120333120000300000000000005280180000000000000000000000000000000000222222000000002229022 -T2202301111119476583219540312WT@TBZTYY2222212122222012210110006013069900000000000000000000000000000000000000000000000000000000000000000000001817000000000000 -T320230111111947658120180114WT@0@W@@#12222122206398100000000120160908WT@#BYYYW22222112206398100000000 -T12023011111194767625900408111120213110363300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111119476761220020421WTTZB00PZ1122222222221012210110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111947676120220212WTTY0TP#W21222212204398100000000 -T12023011111194770422000407411120723111480300000000000011650030000000000000000000000000000000000222222000000002229012 -T2202301111119477041219780423WTTYY@B9@2222221222222011212290045623011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111119477041219860102WTT@0Y#TY2222222222222021212290045623011800000000000000000000000000000000120002000000000000000000020000000000000000000000000000 -T320230111111947704120050123WT@PYTW#022222222204311200000000 -T320230111111947704120110318WT@YYTW@Y22222212204304200000000120070727WT@T00@Z922222212204309200000000 -T320230111111947704120160704WT@P#BZBZ22222222204398200000000120140112WT@BWPYP@22222222204303200000000 -T12023011111194796924700401011120233120000300000000000004170260000000000000000000000000000000000222222000000002229022 -T2202301111119479693219690127WT@BTPWTY2222212222225012216110006011069941000000000000000000000000000000000000000000000000000000000000359100000000000000000000 -T320230111111947969120050327WTTTPTW9P22222122207310100000050 -T12023011111194807521700407751120213110618111990000062205280490000000000000000000000000000000000222222000000002229072 -T2202301111119480751219810109WTT0BP0@Y2222212222221012212110870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948075120180923WTTT9@WB022222112204398100000000 -T12023011111194819025600412851120412110957300000000011207710580000000000000000000000000000000000222222000000002229012 -T2202301111119481901219880905WT@9Y#WWY2221222222221012212110590123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948190120180507WTT#TPTZ922212222204398100000000 -T320230111111948190120220912WT@#TP@ZT22212222204398100000000120220912WT@WYTT#922212222204398100000000 -T12023011111194822324200404052110523211116300000000000006300010000000000000000000000000000000000222222000000002229032 -T2202301111119482231219810718WTT0#T#0B2222211222222011215290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119482231219860505WT@99ZBT@2222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948223120120327WT@YT0WPB22222122204304200000000 -T320230111111948223120160727WT@Z99YPB22222112204398200000000120140923WT@9TW@WB22222122204302200000000 -T12023011111194827420600403591120313110799300000000000006540490000000000000000000000000000000000222222000000002229012 -T2202301111119482741219890409WTT@0Y0PW2222212222221012212110501023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948274120200327WT@YBY#P022222112204398100000000120170123WTTTYY#T#22222112204398100000000 -T12023011111194837224100413561120533110821300000000010002650100000000000000000000000000000000000222222000003892219022 -T2202301111119483722219840104WT@YYBT9P1222212222221012210910006011079910000000000000000000000000000000000000000000000000000000000000062200000000000000000000 -T2202301111119483722219810901WT@YYBT9P1222221222221102206990006011079910000000000000000000000000000000000000000000000000000000000000062200000000000000000000 -T320230111111948372120060701WT@YZ@Y0#12222122204309100000000 -T320230111111948372120170723WT@BBZZTZ12222112204398100000000120100301WTTBP@ZB912222222204305100000000 -T12023011111194843320800405391120232110599300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111119484335219850727WTTWPT0WP2222212122221012216110006013109900000000000000000000000000000000000000000000000000000000000000000000000991000000000000 -T320230111111948433120140913WT@Y@T#B@22222112209398100000000 -T12023011111194864524200402981120213120000300000000000005280690000000000000000000000000000000000222222000000002229072 -T2202301111119486451219800324WTTT@9Y9T2222212222221012211110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948645120050921WTT@BPWZY22222112204311100000000 -T12023011111194864720600414871120333110766300000000000006540140000000000000000000000000000000000222222000000002229022 -T2202301111119486471219840502WT@Y#TY@Z2222212222223012216110740023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948647120080101WT@YZWWZZ22222112204307100000000120050108WTT9T#PB921222222204311100000000 -T12023011111194865323500410672110313210832300000000000001050010000000000000000000000000000000000222222000000002229032 -T2202301111119486531219850314WT@9TPY9W1222212222221012298910006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948653120100723WTTTWPWPZ12222212204307100000000120060309WT@0T#TYT12222122204310100000000 -T12023011111194866223500407161120512111219300000000000008880050000000000000000000000000000000000222222000000002229072 -T2202301111119486621219900927WT@0B0W@92221222222221012211110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948662120150212WTT#Y9#0012222112204302100000000120090501WTT99PZ#Z12212212204308100000000 -T320230111111948662120210402WT@BP@Y0@22212212204398100000000120180224WTTPWYZP#22212212204398100000000 -T12023011111194875022000410051120212110376300000000000002900220000000000000000000000000000000211122222002600012219012 -T2202301111119487501219780227WTTYY00PZ2222212222225012212110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111948750120080218WT@BT0BPY22221212204307100000000 -T12023011111194877220600414161120212110631300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111119487721219720721WT@@PT@W#2222212222225012216120303023010900000000000000000002000000000000000000000000000000000000260000000000000000000000000000 -T320230111111948772120060726WTT0Y#PBP12222212204309100000000 -T12023011111194880821700407751120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119488083219770401WT@WT9B9Z2222212122221012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001125000000000000 -T320230111111948808120070312WTTB9Z@P922222112207308100000000 -T12023011111194892322000414501120213120000112670000153804170240000000000000000000000000000000000222222000000002229072 -T2202301111119489231219770504WTTTTZZYW2222212222225012212110970021011700200000000000000000000000000000290001000000000000000000000000133900000000000000000000 -T320230111111948923520180212WT@TTTZWY22222112104398109140000 -T12023011111194894821100402261120233110493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119489482219820312WTTZ00TPT2222212222213012212110670013089900000000000000000000000000000000000000000000000000000000000000000000000000060900000000 -T320230111111948948120100427WTT#WB#W#22222112204305100000000 -T12023011111194907924600411871120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119490792219800423WT@@TBTW92222212222215012211110144613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111949079120110313WT@W9BT0W22222112204304100000000 -T12023011111194909821000411361120213110450300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111119490981220040505WTTPT9BZ02122222222221012211110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949098120210713WTTT@09Y921222222204398100000000 -T12023011111194922020800414651120413110939300000000580007710070000000000000000000000000000000000222222000000002229012 -T2202301111119492201219810301WT@Z909@W2222212222225012216110085223010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111949220120110201WTTB@Y#B#22222112204306100000000 -T320230111111949220120130123WT@YZBZW022222112204304100000000120110201WT@@#90YT22222112204306100000000 -T12023011111194928121400408021120633120000300000000000008880080000000000000000000000000000000000222222000000002229022 -T2202301111119492813219690427WT@#B@P##1222212222221012212110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111949281120060502WTT9Z#@#B12222122207309100000000 -T320230111111949281120100226WT@Z0#PZZ12222112207305100000000120070718WT@9Z#0@T12222112207307100000000 -T320230111111949281120160918WTTWBTB@Y12222122207398100000000120120423WT@ZBB##012212212207302100000000 -T12023011111194933522000411281120333120000300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111119493353219690107WT@T0BTY01222212222223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949335120210407WTT90@#Z@22222222206398100000000120080923WTTBB0@T@22222122206307100000000 -T12023011111194935322000405841120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119493533219480923WTTPTW#Y92222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001623000000000000 -T320230111111949353120100923WT@#WWZ#Y22222112206306100000000 -T12023011111194936920800405391120313110766300000000100006540080000000000000000000000000000000000222222000000002229012 -T2202301111119493691219760908WT@Y0WBP92222212222225012213110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949369120070905WTT0PPBT@22222112204308100000000120040304WT@T9TZ0P22222122204311100000000 -T12023011111194941824500403051120413111002300000000000007710540000000000000000000000000000000000222222000000002229012 -T2202301111119494181219970408WT@00P@TB2222212222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949418120170712WTTZZ0Z0922222122204398100000000 -T320230111111949418120210921WTT@#TZBW22222122204398100000000120180112WT@P#90PB22222112204398100000000 -T12023011111194941924500402221120433120000300000000000006540050000000000000000000000000000000000222222000000002229022 -T2202301111119494193219810301WTT9ZPY@T2222212222222012209110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949419120080218WT@99@BB@22222122209308100000000 -T320230111111949419120180513WT@BPW#P#22222122209398100000000120100512WTTZYT0#Y22222122209306100000000 -T12023011111194944120800409831120213110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111119494411219890712WTTW0W9Z@2222212222221012216110164423011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111949441120210322WT@YPW##922222122204398100000000 -T12023011111194948925900402831120313110740300000000159604170060000000000000000000000000000000000222222000000002229012 -T2202301111119494891219820427WTTBY@9#P2222212222223012210110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949489520100118WT@#YTY#Y22222222104307109140000520060518WTTPTB9#W22222112104311109140000 -T12023011111194958020600404121120213110516300000000000004170980000000000000000000000000000000000222222000000002229072 -T2202301111119495801219910122WTTZ#00TY2122222222221012209111000023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949580520140312WT@Y@WPW022222222104301109140000 -T12023011111194964420600412681110313110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111119496441219840309WTT0Y9TZB2222211222225012212110421821011931000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949644120100509WT@Z#0@YP22222112204306100000000120060227WTT0YY9#P22222112204309100000000 -T12023011111194966624200404421120212110598300000000000005280030000000000000000000000000000000000222222000000002229042 -T2202301111119496661219880307WT@BT#YTB2222212222225012209110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949666120080124WT@TP9Y@922222122204308100000000 -T12023011111194994821700407751120212110611300000000040805280050000000000000000000000000000000000222222000000002229012 -T2202301111119499481219770912WTTZ@ZYBY2222211222221012210110065423011800000000000000000000120002000000000000030000000000000000010000000000000000000000000000 -T320230111111949948120150918WT@YWT@ZY22222112204301100000000 -T12023011111194997223500404531120213110618300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119499721220020205WT@W9WPW92222212222221012212110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949972120220207WT@#Y#@0P22222112204398100000000 -T12023011111194999322000400281120413110835300000000154606540030000000000000000000000000000000000222222000000002229012 -T2202301111119499931220000926WTT#ZZBPB1222222222222012212110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119499932219910426WT@YYBT9P1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111949993120210307WT@Y##@ZP12222222204398100000000120170707WT@WTT09Y12222222204398100000000 -T12023011111195010520600407031120313110835300000000000006540520000000000000000000000000000000000222222000000002229012 -T2202301111119501051219930313WT@BBT0002222122222221012212910441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111950105120150109WT@W#BPZZ22221212204301100000000120130122WT@TZ9Y@W22221212204302100000100 -T12023011111195011524700402991120212110611300000000000005280620000000000000000000000000000000000222222000000002229072 -T2202301111119501151219780504WTT@YTTB02222212222225012216110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111950115120040107WTT@PYBYT12222122204311100000000 -T12023011111195011924700406701120512111116114720000150008880510000000000000000000000000000000000222222000000002229012 -T2202301111119501191219840104WTT9W9BZ@2222212222225012212210481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111950119120140302WTT@0#TTT22222122204301100000000120080907WT@9P9@TT22222112204308200000000 -T320230111111950119120170321WTT9Z#Z9@22222122204398100000000120150318WT@@Z#T#B22222112204398100000000 -T12023011111195023825200410591120233120000300000000000004170880000000000000000000000000000000000222222000000002229022 -T2202301111119502383219600105WT@Z#WYYT2222211222222012213110006011069940000000000000000000000000000000000000000000000000000000000000649800000000000000000507 -T320230111111950238120150105WTTPP@ZWW22222112206302100000000 -T12023011111195030620600407031120523111116300000000006008880030000000000000000000000000000000000222222000000002229012 -T2202301111119503061219890524WT@#BW9TZ2222122222221011212990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119503061219910718WT@YB09@P2222221222221011212990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111950306120110112WTTTPT@0#22222212204305900000000 -T320230111111950306120210127WT@T9@#TZ22222222204398100000000120200413WT@TZZBBW22222212204398100000000 -T12023011111195036521700406141120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119503653219660902WTTBBB99W2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111950365120060414WTTPY0P9Z22222122206310100000000 -T12023011111195051822000408811120312110766300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111119505181219850101WTTYY9WP@2221222222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111950518120210723WTT9Y9@9Y22222212204398100000000120140123WTTT0BZTY22212222204301100000000 -T12023011111195052023500402711120613111339300000000000003180120000000000000000000000000000000212122222000004792219012 -T2202301111119505201219930309WT@T9P9ZB2222222222221012211910124821011816000000000000000000000000000000000000000000000000000000000000095600000000000000000000 -T320230111111950520120150707WTT9#@P#Z22221222204301100000000 -T320230111111950520120180118WT@#ZB09W22221222204398100000000120170426WT@#@@W@@22221212204398100000000 -T320230111111950520120190711WT@WT@@9Y22221212204398100000000120190711WTT#T@PBB22221212204398100000000 -T12023011111195053424200404701120433111034300000000027007710030000000000000000000000000000000000222222000000002229022 -T2202301111119505341219790423WT@YT0T@92121221222221012212210045623099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111950534120140407WTT9WZ@WB22212212204302100000000 -T320230111111950534120190926WTT9T#ZYP22212222204398100000000120170301WTTWBBTZY22212222204398100000000 -T12023011111195070220600409771120433110846300000000000006540080000000000000000000000000000000000222222000000002229022 -T2202301111119507023220010121WT@BBPZZ@1222212222221012211110006011069925000000000000000000000000000000000000000000000000000000000000172000000000000000000000 -T320230111111950702120050213WT@#0TWW@12222122207311100000000 -T320230111111950702120080527WT@0WYTTB12222112207308100000000120060223WT@TWTPZ@12222122207310100000000 -T12023011111195075122000408451120312110820300000000000003480490000000000000000000000000000000232122222000000742219072 -T2202301111119507511219860107WT@Y0P@B@2122222222225012216110810023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000029 -T320230111111950751120190118WTT9Y0BY921222222204398100000021120160713WTTYYYT@T21222222204398100000021 -T12023011111195088621000405411120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119508863219710102WTTWZB0TZ1222211122222012211110510913069900000000000000000000000000000000000000000000000000000000000000000000001066000000000000 -T320230111111950886120100112WT@TYWYPW12222112206306100000000 -T12023011111195093524700405901120233110516300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111119509353219660708WT@WP#W0B2222212222224012212110065411069931000000000000000000000000000000000000000000000000000000000000219900000000000000000000 -T320230111111950935120130518WTTPP#@W922222122206303100000000 -T12023011111195096924700409381120233120000300000000120004170110000000000000000000000000000000000222222000000002229022 -T2202301111119509693219870904WT@PP##0P2222212222222012213110006011069937000000000000000000000000000000000000000000000000000000000000747100000000000000000000 -T320230111111950969120110526WT@YBPZT022222122207304100000000 -T12023011111195097023300401771120233120000300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111119509703219530526WTTPB0PWY2222211112222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001689000000001407 -T320230111111950970120170309WT@#9W@0022212212206398100000000 -T12023011111195099022000412691120312110740300000000000006540480000000000000000000000000000000000222222000000002229012 -T2202301111119509901219860918WTTZ99ZPY1122212222221012213110491123011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111950990120120913WT@#P0PBT11222122204304100000050120110923WT@PWPZP011222122204305100000050 -T12023011111195099525600414951110523111116300000000000001430010000000000000000000000000000000000222222000000002229012 -T2202301111119509951219790427WTTYY@T0Z1222222222222011298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119509951219810201WT@W0YW0@1222221222222021202290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111950995120060102WTTTZPTYT12222222204311100000000 -T320230111111950995120180127WTTZ@@Y9012222222204398100000000120090107WT@Y#90@T12222222204307100000000 -T12023011111195106021400408021120233110445300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111119510605219880905WT@ZWPPB#1222222222222012212110105013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951060120070404WT@TZBBYP12222122208309100000000 -T12023011111195113722700413181120313110835300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111119511371219930912WTTW@0PTT1222212222221012212120085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951137120190421WT@YZ0#Y@12221222204398100000000120170421WTT@0T@TY12221222204398100000000 -T12023011111195122522000405841120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119512255219550923WT@BZ0ZYP2122222122224012212110006013109900000000000000000000000000000000000000000000000000000000000000000000001070000000000000 -T320230111111951225120210922WTT#BY9B#21222212209398100000000 -T12023011111195139022000404691110413111034116330000000507210500000000000035001000000000000000000222222000000002229012 -T2202301111119513901219920701WT@0YYZ0Y2222212222221012212120530723011400000000000000000000000000000000000000000000000000000000090000000000000000000000000000 -T320230111111951390120140423WT@P#BPPB22212122204303100000000 -T320230111111951390120160921WT@T@P9W#22222122204301100000000120150421WTTPTWZ9Z22222122204302100000000 -T12023011111195140924200414721120333110704300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111119514093219910204WT@YZWBBW1222212222221012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951409120160201WT@#0W@WW12222112207398100000000120140522WTTWTP#Y912222122207301100000000 -T12023011111195141022000402111120212110611300000000010805280280000000000000000000000000000000000222222000000002229012 -T2202301111119514101219870312WT@#WYZZ02222222222221012212110293123011800000000000000000000000000000000100000000000000000000000000000000000000000000000000000 -T320230111111951410120150421WT@ZPTY#922222112204398100000000 -T12023011111195142724200410531120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119514272219840112WTTYYWTTP2222211122215012211110006013109900000000000000000000000000000000000000000000000000000000000000000000000838009600000000 -T320230111111951427120090107WT@#@0WY022222112204306100000050 -T12023011111195143224700408091120332120000300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111119514325219900514WT@9TPPB#2222212222223012212110006011069918000000000000000000000000000000000000000000000000000000000000550000000000000000000000 -T320230111111951432120080723WT@P0TZBP22222112208309100000000120070927WT@TPTZWP22222122208309100000000 -T12023011111195156222000400591110213110493300000000000004760030000000000000000000000000000000000222222000000932219012 -T2202301111119515621219760122WT@Z0WBP@2222212222225012213110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951562120110926WTTYWZ0B022222122204306100000000 -T12023011111195159825900402831120233110557300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119515983219680104WT@#ZYYT01222212222222012216110520813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951598120140418WTTZ009ZZ22222112206302100000000 -T12023011111195161622000407412120623211395300000000000010090020000000000000000000000000000000000222222000000002229032 -T2202301111119516161219870422WT@T@@0#Z2222211222221011213290025823011800000016000200000000000000040002000000000000000000000000040000000000000000000000001000 -T2202301111119516161219860313WTTPYYZB#2222212222222021214290025821011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951616120100323WTTWWBY#022222122204306200000000120090927WTTW0009#22222122204307200000000 -T320230111111951616120220105WT@BYB9@B12222222204398100000000120140907WT@BT9PT022222122204302200000000 -T12023011111195164825900402721110213110598300000000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111119516481219990412WTTZP9PB01222212222221012211110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951648120220701WT@9TPY9W12222122204398100000000 -T12023011111195168925100407671120232110383300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111119516893219800908WT@Z0@@#T2222212222222012213110970013069900000000000000000000000000000000000000000000000000000000000000000000000000000007240000 -T320230111111951689120070427WTTZY#@#B22222122207310100000000 -T12023011111195169522000409971120232110517300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119516953219660218WT@Y99P0Y2212222222221012205210510913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951695120160413WT@#BBTZT22122212206301100000000 -T12023011111195178023500411471120413111034300000000000007710630000000000000000000000000000000000222222000000002229072 -T2202301111119517801219880413WTT#T0YZ02222222222221012212110720023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951780120070727WTTP@9PZ@22222222204308100000000 -T320230111111951780120150214WTTW9W99Z22222222204398100000000120090323WT@Z90PWZ22222212204305100000000 -T12023011111195184820600414161120513111199300000000279608880060000000000000000000000000000000000222222000000002229012 -T2202301111119518481219830323WT@WP0Y902222212222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951848120190922WT@0@PWTY22222122204398100000000120170513WTTT9ZY0Z22222122204398100000000 -T320230111111951848120220112WT@YZZTBZ22222122204398100000000120210109WTTBBB@WP22222122204398100000000 -T12023011111195188624700402991120432110893300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119518862219710401WTTZ##0902222212222215012214111280013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111951886120060423WTTP00TT@22222112204310100000000 -T320230111111951886120140318WTTT#WTZP22222112204301100000000120100112WTTW0P@0022222122204305100000000 -T12023011111195194522000405841120512110939132290000000008880280000000000000000000000000000000000222222000000002229072 -T2202301111119519451219930712WT@0B9TBB2221222222221012212210670023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951945120190902WTTY#00WP22212212204398100000000120140324WTT9Z@TY022212222204398100000050 -T320230111111951945120220723WTTBB#W#Z22212212204398100000000120200126WT@PP9W9@22212222204398100000000 -T12023011111195196224700409381120233110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119519623219660702WT@W#YT@P2222212222225012213120006013069900000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111951962120070913WTT#P#B@T22222122206309100000000 -T12023011111195196622000407241120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111119519661219980511WTT@9BB@#2221222222221012213110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111951966120220707WTT#####Y22212212204398100000000 -T12023011111195200921700406141120523111116300000000010008880090000000000000000000000000000000000222222000000002229012 -T2202301111119520091219960308WT@P#Y99B2222212222221011211190342623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119520091219970123WT@PT@PZZ2222211222221011209190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952009120160918WTTW@P##T22222112204398100000000 -T320230111111952009120190912WT@##9P#Y22222112204398100000000120180913WTTTZ@#PB22222112204398100000000 -T12023011111195204325900406841110313110740300000000000002040530000000000000000000000000000000257222221000001932219042 -T2202301111119520431219910512WTTTWT@P02122222222221012213110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000131 -T320230111111952043120160304WT@W#9ZBY21222212204398100000131120110511WT@0@9TYZ21222222204304100000000 -T12023011111195209925900406081120333110740300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111119520993219650901WTTYYZBTP2122222222223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000269 -T320230111111952099120160701WTT@#PTB@21222222206398100000000120130301WT@PZ0#YB21222212206398100000000 -T12023011111195216020600414771120532111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119521602219710923WTTP@9BTZ2222221222212012212110134713089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111119521602219760107WT@0#@0TT2222222222212022212190491113089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111952160120040313WTT9ZT#P@22222212204311100000000 -T320230111111952160120140111WTT@0BP#Z22222112204301100000000120110109WT@TYP@#@22222222204305100000000 -T12023011111195219924600411871120213110606300000000000305280490000000000000000000000000000000000222222000000002229072 -T2202301111119521991219920908WTTB09P0Z2222212222221012211111220023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111952199120110426WTTYZ9W9B22222122204305100000050 -T12023011111195224720800410781120313110761300000000500005000140000000000000000000000000000000000222222000001542219012 -T2202301111119522471219920927WTT@W#B901222222222223012213210263421010910000000000000000000000000000000000000000000000000000000010000061400000000000000002129 -T320230111111952247120150407WT@#BYT#912222112204301100000000120110318WT@09#ZTB12222122204304100000000 -T12023011111195226525600414551120523111199300000000000608880070000000000000000000000000000000000222222000000002229012 -T2202301111119522651219890727WT@P0W9TY1222211222221011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119522651219930712WT@@BZ9Y#2222212222221011212110372323011800000000000000000000000000060000000000000000000000000000000000000000000000000000000000 -T320230111111952265120120318WTTBTT#TT12222122205303100000000 -T320230111111952265120210927WT@Z90BYZ11222222204398100000000120140413WT@ZBZZZ012222112204302100000000 -T12023011111195239022000406211120213110599300000000000003160340000000000000000000000000000000211122222000000012219072 -T2202301111119523901219860926WTT@@Y0PW2222212222221012212120850023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952390120170427WT@YZ@@P@22222122204398100000000 -T12023011111195247825600414551110513111211300000000190801260260000000000000000000000000000000000222222000007622219072 -T2202301111119524781219900309WTTW90#P01222222222223012202210860023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000103 -T320230111111952478120120723WT@00PZY912222212204305100000000120110712WTTYT0ZWB12222212204306100000100 -T320230111111952478120180921WT@#Y#YT912222212204398100000000120140104WT@0Z#W9P12222222204304100000000 -T12023011111195248624200404891120213110610300000000000002900640000000000000000000000000000000211122222002600012219072 -T2202301111119524861219800527WT@Y9WP9B2222212222225012212110800023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952486120040307WTTYWW9WP22222112204310100000000 -T12023011111195253520800411931120312110796300000000000006540320000000000000000000000000000000000222222000000002229072 -T2202301111119525351219870423WT@@Z@WB01221222222221012209210930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952535120130421WT@9P#9PP22212222204302100000000120100723WTTWY@0@B12212212204306100000000 -T12023011111195255225200407301120313110717300000000000006540690000000000000000000000000000000000222222000000002229072 -T2202301111119525521219840905WT@@YTZZY2222212222221012212110700021011947000000000000000000000000000000000000000000000000000000000000372800000000000000000000 -T320230111111952552120120726WT@YW@#9Z12222122204305100000108120070322WT@Y9@0#@12222112204309100000000 -T12023011111195256125100407671120833111490300000000000011650090000000000000000000000000000000000222222000000002229022 -T2202301111119525612219750113WT@YYBT9P1222211222221012204910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952561120100927WT@0#ZZTB12222112204302100000000 -T320230111111952561120120327WT@90ZWTZ12222112204398100000000120110913WTTTYPY0#12222122204303100000000 -T320230111111952561120160322WT@ZPYTBB12222112204398100000000120140407WTT@WT@9B12222112204398100000000 -T320230111111952561120200107WTTBWY0@T12222122204398100000000120180308WT@0BYB9P12222112204398100000000 -T12023011111195256623500411471120213110611300000000000000420070000000000000000000000000000000211122222000002752219012 -T2202301111119525661219950102WTTY#BY0@2222211222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952566120140321WT@@ZYTZ#22122122204302100000000 -T12023011111195259225900402631120212110598300000000000003960040000000000000000000000000000000132222122000000002229012 -T2202301111119525921219990507WTTYZYWYZ2221212222221012212120055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952592120210711WTTW#@99922212112204398100000000 -T12023011111195260023500402291120333120000129430000000005280510000000000000000000000000000000000222222000000002229022 -T2202301111119526003219610307WTTW@99ZB2222211222222012214110006013069900000000000000000000000000000000000000000000000000000000000000891400000000000000000000 -T320230111111952600120180507WTT9Z#@0P22212222209398100000000120180507WTTWTYT##22212212209398100000000 -T12023011111195265223800407551120233110598300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111119526521219910321WTT00Y0YY2222212222223012213110065423099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952652120150407WTT0Y#0@P22212112204301100000000 -T12023011111195271122000408811120412110939300000000000004900590000000000000000000000000000000163222122000000012219012 -T2202301111119527111219930723WTT@#90P02121222222221012212120600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952711420090422WTTZ#@WB021212222104306106090000 -T320230111111952711120210905WT@W099Y922212222204398100000000120190102WTT90Z#BW22212212204398100000000 -T12023011111195295222700408351120213110611300000000000005280420000000000000000000000000000000000222222000000002229012 -T2202301111119529521219960109WT@P#ZZ092222212222221012212120441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111952952120190901WT@0TZPPT22222112204398100000000 -T12023011111195296421700407751120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119529642219700501WT@P0#Z9Z2222212122211012210110006013109900000000000000000000000000000000000000000000000000000000000000000000000837009700000000 -T320230111111952964120070924WTT0@@#WW22222122204308100000000120060118WT@9Z#WW#22222122204310100000000 -T12023011111195313020600414771120422110939300000000000406540740000000000000000000000000000000000222222000000002229072 -T2202301111119531301219920308WTT00TTTZ2222212222222011209190740023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119531301219840722WTTYZ0#992222211222222021212190700023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111953130120160126WT@9TBPW022222112204398100000000420140309WT@#Y@T@Y22222122104398109140000 -T12023011111195322520800414651120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119532252219770518WT@YP0@ZY2221222222211012216111420013089900000000000000000000000000000000000000000000000000000000000000000000000000080300000000 -T320230111111953225120070423WT@9W9ZZ#22212212204307100000000 -T12023011111195325624700408301120632111339300000000000008880990000000000000000000000000000000000222222000000002229022 -T2202301111119532562219890308WT@99Z9BW1222222222213012211120154513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111953256120070327WTT990P9T12222222204309100000000 -T320230111111953256120120318WT@PBW0@012222222204304100000000120100901WT@0P0P0Z12222212204306100000000 -T320230111111953256120200927WTT0#@TYW12222222204398100000000120150427WT@0BWYY#12222222204302100000000 -T12023011111195340823500410681120333110634300000000000005280310000000000000000000000000000000000222222000000002229022 -T2202301111119534083219960921WT@99#PTT2222212222222012211110362413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111953408120170923WT@WT9T9P22222112207398100000000120130207WT@#YZ@BB22222122207302100000000 -T12023011111195349723500402711120213110611300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111119534971219980721WT@@T@PZY2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111953497120210112WTTZZZ0BT22222122204398100000000 -T12023011111195353322000405701120412110939300000000000107600360000000000000000000000000000000000222222000000112219072 -T2202301111119535331219960407WT@BYBWPZ2221222222221012212110880023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000010 -T320230111111953533120120918WT@@BTWBW22212222204304100000425 -T320230111111953533120210323WTTW@09WW22212212204398100000000120170409WT@PZ#WZT22212212204398100000000 -T12023011111195357225200410591120233110493300000000020003750160000000000000000000000000000000000222222004100012219022 -T2202301111119535723219790721WTTZZ@ZYB2222212222221012211110006011069912000000000000000000000000000000000000000000000000000000000000075700000000000000000000 -T320230111111953572120060914WTTPYW9BB22222122207310100000050 -T12023011111195357525000409431110423110968300000000000002980010000000000000000000000000000000000222222000000002229012 -T2202301111119535751219830424WTT0@T#@Y2222212222223011212110025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119535751219880913WTTB9ZBT02222211222221011212190025823011800000000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111953575120140304WTT@BPBT022222122204398100000000120060109WTTWT@@0#22222112204308100000000 -T12023011111195363720600407031120213110493300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111119536371219970905WT@09PTPB2222212222221012211110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111953637120210223WTTYZT#9B22222122204398100000000 -T12023011111195364220600408181110212110631300000000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111119536421220040704WTTTT9#BT2222212222221012209110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111953642120220418WTTY#YP0P22222122204398100000000 -T12023011111195371422700401572120323210766300000000000006540120000000000000000000000000000000000222222000000002229032 -T2202301111119537141219960123WT@#0ZPT#2222211222221011212190006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119537141219870124WTT@YP0PB2222212222225011213110065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111953714120220102WT@9TPY9W22222122204398100000000 -T12023011111195384124700406741120813111786300000000000008870120000000000000000000000000000000000222222000004022219012 -T2202301111119538411219820707WTTZBBZYZ2222212222223012204210134721011810000000000000000000000000000000000000000000000000000000000000080400000000000000000000 -T320230111111953841120040721WT@B####B22222112204311200000000 -T320230111111953841120080904WT@9BWWZ022222122204308200000000120050922WT@0Y#YY022222112204310200000000 -T320230111111953841120090423WT@ZBZPTP22222122204306200000000120090423WT@@9BT0922222122204305200000000 -T320230111111953841120150423WTTW9TBP@22222112204301200000000120140412WTT9ZBYB#22222112204303200000000 -T12023011111195392322000407241120332110740300000000000005280520000000000000000000000000000000000222222000000002229022 -T2202301111119539232219610407WT@#ZP9W92222211222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111953923120070421WTT9WYY9B22222122204308100000000120040918WT@0Y@WP#22222122204310100000000 -T12023011111195394524200404281120713111480300000000000003900390000000000000000000000000000000000222222000007752219072 -T2202301111119539451219860314WT@W#0PY91222222222223012211110890021011824000000000000000000000000000000000000000000000000000000000000154800000000000000000000 -T320230111111953945120090212WT@#WBTBB12212212204307100000000120060923WTTW@ZPZ#12212212204310100000000 -T320230111111953945120120727WTT#ZPPPZ12212222204304100000025120110901WTT#PY#9W12212222204304100000025 -T320230111111953945120150423WT@TBBPWY12212222204301100000025120130127WTTP@#YYP12212222204302100000025 -T12023011111195394820600400801110213110516300000000000001650250000000000000000000000000000000193222122000004142219012 -T2202301111119539481219960304WTTYYZY@W2221212222221012209120194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111953948120200513WT@@@W09W12212212204398100000000 -T12023011111195396624700406701120423110893300000000000007710080000000000000000000000000000000000222222000000002229012 -T2202301111119539661219770913WTT#@Y9P92222211222222011213290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119539661219810504WT@PBWYPZ2222212222222021214290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111953966120100201WT@P9BWW@22222122204306200000000120070324WTTB9##Z@22222122204308200000000 -T12023011111195401721000405411120432110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119540172219910923WT@W99WWY2222222222213012212120144613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111954017120090212WTT@YYZ@Y22222222204307100000024 -T320230111111954017120160923WT@YPT0P022222212204398100000000120150413WT@YWZ@ZT22222212204301100000000 -T12023011111195410820600414871120413111032300000000030007710080000000000000000000000000000000000222222000000002229012 -T2202301111119541081219990904WTT@09ZBW2222212222221012211110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111954108120170221WT@Z9#90B22222112204398100000000 -T320230111111954108120220518WTTB0Z9#Y22222112204398100000000120190412WTTY#@W@922222122204398100000000 -T12023011111195414221000414221120513111116300000000000005320180000000000000000000000000000000355122222000000012219012 -T2202301111119541421219890927WT@PW@YT02222212222221012212120332723010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111954142120130326WTT0@990Y22222112204302100000000120120404WT@PPY#PY22222112207301100000000 -T320230111111954142120190724WTTT0B00Z12222122207398100000000120190512WTT@WBZ@Z22222122204398100000000 -T12023011111195416122000408892120623211339300000000000010090100000000000000000000000000000000000222222000000002229032 -T2202301111119541611219940113WT@@@YTP92222211222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000001000 -T2202301111119541611219920724WTT0ZB0WT2222212222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111954161120180913WT@PWBW0Z22222122204398200000000120160327WT@BPP9YW22222122204398200000000 -T320230111111954161120210723WT@T@9PW@22222112204398200000000120190911WT@W0WP#B22222122204398200000000 -T12023011111195419125600411701110413110939300000000000003480010000000000000000000000000000000000222222000000002229012 -T2202301111119541911219860126WT@#BBZPP2222212222223012212110025821011825000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111954191120090421WT@T0@9@922222122204307100000000 -T320230111111954191120140918WTTT@9ZWY22222112204302100000000120100118WT@W000P#22222122204306100000000 -T12023011111195430724200403511120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111119543073219510304WT@0TPP0P2222212122222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000001672000000000876 -T320230111111954307120140107WT@BTWPZT22222112206301100000000 -T12023011111195440622000411981120213110598300000000005505280060000000000000000000000000000000000222222000000002229012 -T2202301111119544061220000413WT@9T0BPT1222222222223012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111954406120190408WT@W@0Z##12222212204398100000000 -T12023011111195461022000403351120233110571300000000000004170430000000000000000000000000000000000222222000000002229022 -T2202301111119546103219570512WT@YPTPP92222212122224012212110105013069900000000000000000000000000000000000000000000000000000000000000000000001109000000000000 -T320230111111954610120090912WTTW@ZZ@W22122112206308100000000 -T12023011111195467724900404261120233110516300000000000003100230000000000000000000000000000000000222222000001072219022 -T2202301111119546772219650911WTTT9BBZ02222212122211012211111610013109900000000000000000000000000000000000000000000000000000000000000000000000845008900000000 -T320230111111954677120060718WT@B#0PT#12222122204311100000107 -T12023011111195481724700402991120213110611300000000020005280120000000000000000000000000000000000222222000000002229012 -T2202301111119548171219890323WTT#Z9PYY1222212222221012216110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111954817120220426WTTWY#@ZW12212112204398100000000 -T12023011111195484325900408111120532111136300000000000005200930000000000000000000000000000000000222222000002512219022 -T2202301111119548433219480421WT@9TTBZW2122222122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001032000000000483 -T320230111111954843120140112WTTZ9#ZZP21222222206301100000000120130301WT@W@T9#021222222206302100000269 -T320230111111954843120180718WTT#PTP9T21222222206398100000000120170127WTT0WPT9T21222212206398100000000 -T12023011111195486520600414871120313110835300000000318506540110000000000000000000000000000000000222222000000002229012 -T2202301111119548651219930912WTTT@Y#PZ2222212222221012216110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111954865120200111WT@YW0P9022222112204398100000000120200111WTTZ@B99#22222122204398100000000 -T12023011111195493222000412011120612111339300000000090010090250000000000000000000000000000000000222222000000002229012 -T2202301111119549321219930907WTTB@@P@@2221222222221012216110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111954932120120304WTTB#9P9922212222204304100000000 -T320230111111954932120150702WTTY9P0YY22212212204302100000000120130101WTTB0TPB@22212222204303100000000 -T320230111111954932120220907WTTZ0ZY#922212222204398100000000120210907WTTZPBP#@22212212204398100000000 -T12023011111195502822000406211120732111480300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111119550282219690327WT@#9Z@T92222221222212012212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111119550282219730912WTTT09@#Z2222222222212022212110840013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111955028120040312WT@TY0T9Z22222222204311100000000 -T320230111111955028120070301WTT00@Y##22222222204307100000000120060214WTT0B0B9@22222222204309100000000 -T320230111111955028120150407WTT9YW9B@22222212204398100000000420150407WT@YZ0P0@22222222104398109140000 -T12023011111195503822100401271120333110319300000000000005280020000000000000000000000000000000000222222000000002229022 -T2202301111119550383219790504WT@BW0#B02222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000199300000000000000000000 -T320230111111955038120210226WTTWPYPW022222112207398100000000120190711WT@Z#P@P922222122207398100000000 -T12023011111195512024200401241120213110598104970000000005280060000000000070026000000000000000000222222000000002229072 -T2202301111119551201219810721WTT099TZP2222212222225012213110900021011820000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111955120120140422WTT##YT@@22222112204301100000000 -T12023011111195512222000406191120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119551223219640926WT@#TTBT92222212222222012210120025813069900000000000000000000000000000000000000000000000000000000000000412900000000000000000000 -T320230111111955122120060927WTTWWTY9P22222122207310100000000 -T12023011111195513924700408091120323110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111119551391219900205WTTP99T#92222211222222011213290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119551391219870408WTTP#T0@T2222212222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111955139120200914WT@WP9Z#W22222112204398200000000 -T12023011111195514522000406211120333110611300000000000004910070000000000000000000000000000000000222222000000372219022 -T2202301111119551452219700304WT@YYBT9P1222222222221012209920006011079911000000000000000000000000000000000000000000000000000000000000065000000000000000000000 -T320230111111955145120070409WT@Y0Y#P012222222204309100000000120040721WT@PP99Z#12222222204311100000000 -T12023011111195516125900410241120613111199300000000150008880580000000000035004000000000000000000222222000000002229012 -T2202301111119551611219840327WTT@@P9#Z1222222222222012212210045621011750000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119551612219840707WT@YYBT9P1222221222222022205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111955161120110207WTTB#YYY@12222212204303100000000120060327WT@Y#0PZ#12222212204308100000000 -T320230111111955161120180901WTTZ#TZT912222222204398100000000120120923WT@TWWTZ912222212204302100000000 -T12023011111195517024200407311120213110611300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111119551701219910104WTT9Z0TZ@2222212222224012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111955170120210402WTTW@9YP@22222122204398100000000 -T12023011111195526020300401721110433120000300000000000006540240000000000000000000000000000000000222222000000002229021 -T2202301111119552603219770118WTTPZZ@#92222212222222012216110461411069980000000000000000000000000000000000000000000000000000000000000309600000000000000000000 -T320230111111955260120120726WT@0P#ZWP22222122206303100000000 -T320230111111955260120190418WT@#P0T@T21222222206398100000000120160304WT@#B#9Z021222212206398100000000 -T12023011111195526922000410051120233120000300000000020004170990000000000000000000000000000000000222222000000002229022 -T2202301111119552693219690913WTTWW@T@02221212222221012214110006013069900000000000000000000000000000000000000000000000000000000000000462900000000000000000000 -T320230111111955269120050102WTT##Y0B022212212206311100000000 -T12023011111195530022700408351120213110543300000000005004200050000000000000000000000000000000000222222000001082219012 -T2202301111119553001219900326WTTT@TBP02222212222223012209110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111955300120210112WTTWZPZ0Y22222112204398100000231 -T12023011111195547824700410421120213110557300000000002000010140000000000000000000000000000000000222222000000002229012 -T2202301111119554781219690301WTT#99@TW1222211222225012216110134711011800200000000000000000000000000000000000000000000000000000000000124600000000000000000000 -T320230111111955478120090922WTTWWT0B#12222112204308100000000 -T12023011111195552524700406741120423110893300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111119555251219750323WT@@YZ9#02222221222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119555251219790122WT@YWW#Z02222222222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111955525120090726WT@TYWZWZ22222212204305200000000120060321WTT909@Z@22222222204307200000000 -T12023011111195560925900403711120213110611300000000000002820290000000000000000000000000000000188122222000000582219072 -T2202301111119556091219860218WTTTBYW@T2222212222225012210110640021011204000000000000000000000000000000000000000000000000000000000000022500000000000000000000 -T320230111111955609120060312WT@ZYPWBB22222122204309100000050 -T12023011111195561224200403941120332110704300000000000004710920000000000000000000000000000000000222222000000572219022 -T2202301111119556123219610912WTT0PTWWP2222212222215012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111955612120100323WTTP#PBBZ22212222206304100000062120050104WTTZWZTW#22221212206309100000000 -T12023011111195563322000413731120333110740300000000000005280640000000000000000000000000000000000222222000000002229022 -T2202301111119556332219960914WTTZWBTPZ2221221122211012210110025813109900000000000000000000000000000000000000000000000000000000000000000000000261067300000000 -T320230111111955633120190718WTTBWZBZB22212212204398100000000120170908WTTY0WT0Z22212222204398100000000 -T12023011111195574022700408351120313110835300000000000001870070000000000000000000000000000000000222222000004672219012 -T2202301111119557401219910921WT@Y0@#@@2222212222221012212110085221011710000000000000110001000000000000000000000000000000000000010000093300000000000000000000 -T320230111111955740120190318WT@0Z099T22222112204398100000000120170118WTTTP0BWB22222122204398100000000 -T12023011111195575725900402631120413111034300000000000007710140000000000000000000000000000000000222122000000002229012 -T2202301111119557571219920407WT@ZT09BY2122222222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T320230111111955757120140901WT@WW#B9B21222212204398100000000 -T320230111111955757120220209WT@WTY9ZY21222222204398100000000120180918WTT#99#0Y21222222204398100000000 -T12023011111195589422000403891120333110704300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111119558943219740904WTT90@ZY#2221222222221012216110920011069919000000000000000000000000000000000000000000000000000000000000136400000000000000000000 -T320230111111955894120150411WT@@PWZ9T22212222206301100000050120120322WT@PBTTYY22222212206303100000050 -T12023011111195594222000406191120512111116300000000000004170410000000000000000000000000000000000222222000000002229072 -T2202301111119559422219840927WTT0Z@ZBB1222222222221012216110740011051747000000000000000000000000000000000000000000000000000000000000378800000000000000000000 -T320230111111955942120210709WTT00Z##B12222222209398100000000420130118WTT@90W#012222222204302100000000 -T320230111111955942420110414WTTZ@0ZT@22222212204305100000000420080924WTTYYY@0#12222222204308100000000 -T12023011111195597924700405831120313110766300000000000006540080000000000000000000000000000000000222222000000002229012 -T2202301111119559791219900326WT@@0@W@W1222222222223012216120095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111955979120140724WTTBZ#@BT12222212204398100000000120110105WT@PW#9#B12222222204304100000000 -T12023011111195606525900406841120313110724300000000000503920100000000000000000000000000000000261122222000000012219042 -T2202301111119560651219800213WTTPW@ZZB1222222222222012213110006023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111956065120080523WTTZP##WB12222222204308100000000120060921WTTT#9@T912222222204310100000000 -T12023011111195613920600409771120313110766300000000000006540490000000000000000000000000000000000222222000000002229012 -T2202301111119561391220010712WTT#PZ@0P2222212222221012216110283223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111956139120220214WTTPY9#@922222122204398100000000120170712WT@0BTWZ022222112204398100000000 -T12023011111195614922000405841120332110835300000000000005840280000000000000000000000000000000000222222003200382219022 -T2202301111119561491219860918WT@@#WYT92222112122221012210110283223109900000000000000000000000000000000000000000000000000000000000000000000010001000000000036 -T320230111111956149120160409WT@YZP0B012221112204301100000000120110127WTTZ@BYTP22221122204305100000100 -T12023011111195624225600413441120532111116300000000000007710910000000000000000000000000000000000222222000000002229022 -T2202301111119562422219810907WT@BZ#BBT1222222222213012210110025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111956242120100402WT@YPYY9W12212212204305100000000120080301WTTZBZ90Y12212212204305100000000 -T320230111111956242120140305WTTWWBBWP12212222204301100000000120110722WTTW9WBBZ12212212204303100000000 -T12023011111195629422000411552120313210793118400000000001520100000000000000000000000000000000000222222000005022219032 -T2202301111119562941219850523WTTPWP@B02222122222223012212210114921011811000000000000000000000000000000140001000000000000000000000000100400000000000000000000 -T320230111111956294120200408WTT#0PZ0P22221212204398200000000120170911WTTB0TZYP22221212204398200000000 -T12023011111195631022000412971120333110376113000000001304170240000000000000000000000000000000000222222000000002229022 -T2202301111119563102219940104WT@YYBT9P1222222222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111956310120190713WTT0ZZ@BT12222222204398100000000420120718WT@YYBT9P12222212204301900000000 -T12023011111195631522700408351120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111119563151219910713WTT0T0@0Z2222211222221012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111956315120170318WT@PYWBBT22222112204398100000000 -T12023011111195647425000403231120513111116149390000001004000550000000000000000000000000000000000222222000004882219012 -T2202301111119564741219920414WTTYTYTT#2222212222225012212110481221010100150000000000000000000000000000030000000000000000000000020000097500000000000000000000 -T320230111111956474120160912WT@B0PTW#22222122204398100000033120110727WT@#ZTTY#22222112204304100000100 -T320230111111956474120220208WT@ZZWYYB22222112204398100000000120190118WTTWZ##PB22222122204398100000000 -T12023011111195656322000406271120312110740126910000250006540080000000000000000000000000000000000222222000000002229012 -T2202301111119565631219930901WTTP9@#WB2212222222223012215110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000004500 -T320230111111956563120200718WTT#TB00#22222222204398100000198120190727WT@TYP0ZP22222222204398100000198 -T12023011111195674522000412231120412110977124990000073207710550000000000000000000000000000000000222122000000002229012 -T2202301111119567451219950912WT@BB9P0W2221222222221012209110560423011800000000000000000000000000110000000000000000000000000000000000000000000000000000000000 -T320230111111956745120130112WTTYTP0BB22212212204303100000000 -T320230111111956745120180123WT@Y@#ZY#22212222204398100000000120180123WT@WW9YBT22212212204398100000000 -T12023011111195675720400400211120213110598300000000000005280470000000000000000000000000000000000222222000000002229072 -T2202301111119567571219910904WT@00@ZWB2221212222225012210110760023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111956757120210127WTT#TB0YW22222122204398100000000 -T12023011111195681424200403511120233120000300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111119568143219910304WTTTWPZ@02222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000586900000000000000000000 -T320230111111956814120220527WT@9TPY9W22222112207398100000000 -T12023011111195686525000414191120433110835300000000000006540190000000000000000000000000000000000222222000000002229022 -T2202301111119568652219880909WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111956865120060326WT@9WY@@Z12222212204309100000000 -T320230111111956865120130205WTTYPTY0@12222212204303100000000120070721WTTT9P#Y012222222204309100000000 -T12023011111195695724200409731120523111116300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111119569571219920314WTTT@W0@92222211222222011212290114923011800000000000000000000000000000000060001000000000000000000000000000000000000000000000000 -T2202301111119569571219940127WT@9TPY9W2222212222222021214290114923011800000000000000000000000000000000060001000000000000000000000000000000000000000000000000 -T320230111111956957120150427WTTBZBTZZ22222122204398200000000 -T320230111111956957120200107WTT@#Z#TY22222122204398200000000120170721WTT#BZ#BP22222112204398200000000 -T12023011111195702423500410671120233110611300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119570243219660118WT@T@P@#B2222211222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111957024120210304WTTWT#0ZB22222122206398100000000 -T12023011111195707824900404261120233110470300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111119570785219940312WTTB#@TYT1222212222221012212110006011069940000000000000000000000000000000000000000000000000000000000000378800000000000000000000 -T320230111111957078120070504WT@TZB#TY12222222209308100000050 -T12023011111195714323500411471120213110611300000000000005280400000000000000000000000000000000000222222000000002229012 -T2202301111119571431219860127WTTZ9B09B1222212222225012212120481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111957143120080907WTTYWZY0922222112204307100000000 -T12023011111195739724700408301120113110301300000000000003960130000000000000000000000000000000000222222002000012219012 -T2202301111119573971219980704WT@WWP@W#2222212222221013211110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111195746925900402721120312110740300000000000000260360000000000000000000000000000000000222222000006282219012 -T2202301111119574691219880918WT@@#0T901222212222221012212110362421011800210000000000000000000000000000030001000000000000000000000000125500000000000000000000 -T320230111111957469120130211WT@Y#Y0PY12222112204302100000000120080312WT@PTY#Y#12222112204306100000000 -T12023011111195751822000411282120423211034300000000000007710100000000000000000000000000000000000222222000000002229032 -T2202301111119575181219880912WT@Z0PY@B2222212222222011214290114923011800000017000200000000000000000000190001000000000000000000060000000000000000000000000000 -T2202301111119575181219870405WT@0W0#B#2222211222222021211290114923011800000017000200000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111957518120110326WT@9TPY9W22222112204304200000000120090727WT@9TPY9W12222112204306200000000 -T12023011111195754522700403021110113110281300000000000001880010000000000000000000000000000000000222222000000002229012 -T2202301111119575451220030727WT@BY0YTB1222222222221013211190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111195760523500414281120313110835300000000045803920060000000000000000000000000000000261122222000000012219012 -T2202301111119576051219900313WTTZB@0YW2222222222223012216110075323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111957605120170713WTT0T#0#T22222112204398100000000120150307WTT#90#BT22222122204398100000000 -T12023011111195768023500407162110923211901300000000000008670010000000000000000000000000000000000222222000000002229032 -T2202301111119576801219790711WT@#YZBB#2222212222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119576801219780904WT@T@ZYZ92222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111957680120060407WT@WTBPBP22222112204310200000000 -T320230111111957680120090401WT@Y@9T@022222122204307200000000120070223WTT@WT@@W22222122204309200000000 -T320230111111957680120150505WTT0@B@Z922222122204301200000000120100727WT@@9#TP@22222112204306200000000 -T320230111111957680120180904WTT@B@@#W22222122204398200000000120160412WTT00T@Z#22222122204398200000000 -T12023011111195777923900408801120413110939300000000000000890040000000000000000000000000000000000222222000006822219012 -T2202301111119577791219890114WTTWB@9@#2222212222221012209110085221011800110000000000000000000000000000000000000000000000000000160000136400000000000000000000 -T320230111111957779120080514WTTBB0#TB22222112204309100000000 -T320230111111957779120130418WT@WB0P9022222122204304100000000120090127WT@PBYWW#22222122204308100000000 -T12023011111195779620600400801120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111119577961219790422WT@9WW@0W2222122222223012212910065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111957796120060326WT@#Y0PZP22221222204309900000000 -T12023011111195800725900402721120233110557300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111119580075219670727WTTZPBTT01222212222224012203210006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958007120080121WTTP###P912222212209303100000000 -T12023011111195810025900402721120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119581002219820107WTTT0Z9PZ2222211122211012211110006013109900000000000000000000000000000000000000000000000000000000000000000000000494044000000000 -T320230111111958100120050702WT@@WZY@B12222112204310100000000 -T12023011111195810624200414851120213110599300000000000002380110000000000000000000000000000000158122222000001322219042 -T2202301111119581061219950123WT@WPYZTY1122222222221012211110006023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111958106120210114WTT#PT0WW21222222204398100000000 -T12023011111195816725900402721120333110557109990000100005280070000000000000000000000000000000000222222000000002229022 -T2202301111119581672219780423WT@YYBT9P1222222222225012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958167120170712WTTBWW@0B12222212204398100000000120150907WTT@Y9BYT12222222204301100000000 -T12023011111195820524700401281120233110495300000000000004170370000000000000000000000000000000000222222000000002229022 -T2202301111119582053219760504WT@9#P99#2222212222225012216110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000546 -T320230111111958205120050307WTT90Z9TW22222112207310100000000 -T12023011111195824722000412971120232110516300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111119582472219770423WT@BPYZ9Z2221222222215012205210134713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111958247120080718WT@@TWW@922212212204306200000000 -T12023011111195840923900406231120322110783300000000000006540160000000000000000000000000000000000222222000000002229012 -T2202301111119584091219920904WT@@WYWB#2222211222221011212190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119584091219930727WT@0ZYYB@2222212222221011212190362423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958409120210308WTTYW9T9Z22222112204398100000000 -T12023011111195841422000405841120412111034300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111119584141219900913WTTWP9YB92122222222221012211111200021011822000000000000000000000000000000000000000000000000000000000000145400000000000000000000 -T320230111111958414120100922WT@#9W@P921222212204305100000000 -T320230111111958414120130904WTTBPZ@0T21222222204303100000000120100922WTTBTYZP#21222222204305100000000 -T12023011111195842723500402712120423211034300000000022007710070000000000000000000000000000000000222222000000002229032 -T2202301111119584271219770312WT@0YZ#ZZ2222212222222011215290085223011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111119584271219730111WTT09BP@B1222211222222021213290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958427120130321WTTWY#0@P22222122204302200000000120110227WT@T#P@WB22222112204304200000000 -T12023011111195842824700402991120412111034300000000000007710110000000000000000000000000000000000222222000000002229012 -T2202301111119584281219880123WTTZPP00B2222212222223012212210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958428120090526WT@WWZPW#22222122204305200000000 -T320230111111958428120170204WTTB0BZPY22222122204398200000000120140309WTT9YY9Z#22222122204301200000000 -T12023011111195845520600400871120313110835300000000000505270390000000000000000000000000000000000222222000000012219012 -T2202301111119584551219790223WT@YZYTW@2222212222221012213110402023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111958455120110727WTTW9BPYW22222122204305100000000420060718WT@#9W#B#22222112104309108220050 -T12023011111195848625200414061120213110611300000000050005280040000000000000000000000000000000000222222000000002229012 -T2202301111119584861219800114WT@@TYT@Z2222211222221012212110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958486120150209WT@TW9WBW22222122204301100000000 -T12023011111195852725000406021120213110611300000000000003160140000000000000000000000000000000211122222000000012219012 -T2202301111119585271219730912WTT#YWB#91222222222221012206110352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958527120090512WTTTPBWT@22222222204305100000000 -T12023011111195873722000402321120312110835139420000000006540390000000000000000000000000000000000222222000000002229012 -T2202301111119587371219920927WT@WP#TP@2221222222221012212110402023010900000000000000000000000000000000220000000000000000000000000000000000000000000000000718 -T320230111111958737120210323WTTY0ZPP@22212222204398100000000120190312WTTYZWBBZ22212212204398100000000 -T12023011111195878422100410901120323110376300000000000003920060000000000000000000000000000000261122222000000012219012 -T2202301111119587841219910705WT@BPTZZ92222212222222011216190362423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119587841219910714WT@WYBY0T2222211222222011210190184223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958784120120401WT@9WTY9B12222122204304100000000 -T12023011111195894322600405051120313110776300000000000006540330000000000000000000000000000000000222222000000002229072 -T2202301111119589431219820423WT@PB9YPY1222212222221012210111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111958943120110927WTTW00T@T12222122204304100000000120090322WTTB#0TPT12222222204305100000000 -T12023011111195901122000408811120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119590112219730926WT@999T@B2212222222211012210111100013089900000000000000000000000000000000000000000000000000000000000000000000000000078900000153 -T320230111111959011120150223WT@YP#9ZW22122222204398100000000 -T12023011111195911520600409001120413110944300000000000007710330000000000000000000000000000000000222222000000002229012 -T2202301111119591151219890326WTTW9P9P02222212222223012216120332723011400000000000000000000000000000000000000000000000000000000070000000000000000000000000000 -T320230111111959115120080207WT@TY@Y@022222122204308100000000 -T320230111111959115120140211WTT0ZP@T@22222112204302100000000120100301WT@9P#W@022222112204304100000000 -T12023011111195915824200406011120213110493300000000000405280170000000000000000000000000000000000222222000000002229012 -T2202301111119591581219710311WT@PWWT#W2222122222223012213120471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111959158120070323WT@0T9BP@22122222204309100000000 -T12023011111195922125600414551120432110893300000000000006540850000000000000000000000000000000000222222000000002229022 -T2202301111119592213219570518WT@Y##ZTT2222212122213012212110233713069900000000000000000000000000000000000000000000000000000000000000000000000334060000000000 -T320230111111959221120120308WTT9Y9ZY#22222112206304100000000 -T320230111111959221120160924WT@#@P@0P22222122206398100000000120140714WT@@9ZP#B22222112206303100000000 -T12023011111195924823700414331110633110939300000000000505060520000000000000000000000000000000000222222000000002229021 -T2202301111119592482219860714WT@YYBT9P1222212222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119592482219820504WT@YYBT9P1222211222221102298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111959248120070127WTTPWYTYW12222122204310100000000420050711WT@#W9#PZ12222112104311109140000 -T320230111111959248120170407WT@ZBP9BZ12222112204398100000000120090911WT@Z9W@B012222112204308100000000 -T12023011111195945425600411521120433110611300000000000005280420000000000000000000000000000000000222222000000002229022 -T2202301111119594542219900927WT@YYBT9P1222212222221012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119594542219870326WT@YYBT9P1222211222221102212990006011079911000000000000000000000000000000000000000000000000000000000000063100000000000000000000 -T320230111111959454120200923WTT@PYBYP12222112204398100000000120190904WT@0T#T9P12222112204398100000000 -T12023011111195952822000410221120312110516300000000000003160590000000000000000000000000000000211122222000000012219072 -T2202301111119595281219770701WT@YBW9WW2212212222221012216111230023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111959528420100527WT@PZPW0B12222112104305109140000120050404WTT#ZBZZW22122122204310100000000 -T12023011111195955125600412851120212110516112830000040004170340000000000000000000000000000000000222222000000002229012 -T2202301111119595511219880114WTTZZ@YBZ2222212222225012214110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111959551520190912WT@TBZBP#22222112104398109140000 -T12023011111195957424200410211120723111490300000000000011650090000000000000000000000000000000000222222000000002229012 -T2202301111119595741219930418WT@#B@0PW2221221222221011212190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119595741219920923WT@9YZP0T2221222222221011212110055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111959574120130727WT@B99@##22212212204302100000000 -T320230111111959574120160109WTT@P#Z0#22212212204398100000000120150405WT@Z09B@B22212212204301100000000 -T320230111111959574120210122WTTYZ#WPT12212212204398100000000120200127WT@@TWW@022212212204398100000000 -T12023011111195970121700406141120313110779300000000387800750030000000000000000000000000000000000222222000005792219012 -T2202301111119597011219940709WT@B9ZW@Y2222212222221012211110134721011818000000000000000000000000000000000000000000000000000000000000115700000000000000000000 -T320230111111959701120160704WT@WZ#Y0922222122204398100000000120140104WTT0#TB9022222112204398100000000 -T12023011111195973525900402121120333120000300000000004805280240000000000000000000000000000000000222222000000002229022 -T2202301111119597355219910304WTT@PZ9Z@2222212222221012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111959735120060913WTT#P90W922222122209308100000000120050427WT@BB#B#Z22222112209310100000000 -T12023011111195981822000406271120213110611300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111119598181219800912WTTZYPP0Y2222212222221012212110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111959818120070927WT@PW0@BT22222122204309100000000 -T12023011111195986224700408301120322110740300000000000005280870000000000000000000000000000000000222222000000002229072 -T2202301111119598621219760721WTTBY9@Y01222222222222011210110990023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119598621219810212WTTT0ZZ#Z2222211222222021211190660023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111959862520090123WTT#WZZ9W12222112104306109140000 -T12023011111196001122000404841120323110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111119600111219880105WT@9TPY9W2222211222221011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119600111219940102WT@9TPY9W2222212222221011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960011120190902WT@9TPY9W22222122204398200000000 -T12023011111196002824700409381120212110557300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119600281219820707WT@W@TZ9#2222212222223012212120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960028120120427WTT@@@Z0T12222122204305100000000 -T12023011111196003424700411201120212110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111119600341219820907WT@P9Z0W92122221222221012212110154523010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960034120190118WTT09@ZZZ22222112204398100000000 -T12023011111196007925600412851120313110835300000000000106540200000000000000000000000000000000000222222000000002229012 -T2202301111119600791219620426WT@YPBTZW2222212222225012212110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960079120090727WT@TPBB@B12222222206308100000000120070407WT@Z#0BZP12222212204308100000000 -T12023011111196015224200402501120423111034300000000000106540060000000000000000000000000000000000222222000000002229012 -T2202301111119601521219710918WTT90B0YZ2222212222222011212190303023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119601521219670118WTTPWWWTZ2222211222222021213190303023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960152420090709WT@#Y00W#22222112104305109140000120060904WT@B09#PB22222112204309100000000 -T12023011111196048724700401281120412110939300000000000007710270000000000000000000000000000000000222222000000002229072 -T2202301111119604871219860709WTT#9ZPB02222212222221012213120880023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000100 -T320230111111960487120050313WTTT@ZW0922222112204310100000000 -T320230111111960487120120926WTTPWZP#922222112204304100000000120080405WTT#PZTB922222112204308100000000 -T12023011111196053222000409991120312110704300000000128905280080000000000070004000000000000000000222222000000002229012 -T2202301111119605321219840423WTTBZYYZ@2221222222223012216110471323011400000000000000000000000000000000000000000000000000000000290000000000000000000000000000 -T320230111111960532120210204WTTY@Y0WP22212222204398100000000420140701WTT#0PZPW22212212104398107970000 -T12023011111196054725900402831120213110611300000000000003960370000000000000000000000000000000132222122000000002229012 -T2202301111119605471219930213WT@YY90BY1122222222221012212120451523010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960547120130927WT@PYW#B911222212204303100000000 -T12023011111196062125900406081120513111116300000000203808880170000000000000000000000000000000000222222000000002229042 -T2202301111119606211219970504WTTYZ0PBP1222222222221012212110006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960621120150723WTT0YB#P#12222222204398100000000120120207WT@00Y@WP12222222204303100000000 -T320230111111960621120210923WT@9YTPBZ12222112204398100000000120170313WTT99#W@012222112204398100000000 -T12023011111196072923700414331120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119607293219800701WT@@ZT9#B2222212222222012212110114913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960729120090404WTT#ZW#9W12222122207307100000000 -T12023011111196081420200409311120333110611300000000000003710030000000000000000000000000000000000222222000001572219022 -T2202301111119608142219850123WT@YYBT9P1222222222221012208920006011079912000000000000000000000000000000000000000000000000000000000000080000000000000000000000 -T320230111111960814120070901WT@9@PP@Y12222222204308100000000120060908WTTZ@T@0#12222222204310100000000 -T12023011111196082922700401571120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111119608291219730407WT@TB@0B@2222211222225012216110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960829120060312WTTW#ZWPB12222112204309100000000 -T12023011111196088224700406741120213110598108550000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111119608821219940326WT@BYW0@02222212222223012214210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960882120190102WT@WBPWWB22222112204398200000000 -T12023011111196089725200407302120313210835300000000000006540130000000000000000000000000000000000222222000000002229032 -T2202301111119608971219890724WT@9TPY9W1222212222221012212220134723010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960897120140413WT@9TPY9W12222222204398200000000120110101WT@9TPY9W12222212204303200000000 -T12023011111196099520600414161120213110611300000000000005280600000000000000000000000000000000000222122000000002229072 -T2202301111119609951219820318WT@P@90#Z2222212222225012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960995120100426WT@@TBZTY12222122204305100000050 -T12023011111196099823500411471120213110611300000000000005280290000000000000000000000000000000000222222000000002229012 -T2202301111119609981219830214WTT#ZTY0@1222211222223012212110303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111960998120080407WT@ZBT@0B12222212204308100000000 -T12023011111196108824100402401120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119610882219820312WT@9#TZ0Z2222212222213012212110600013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111961088120080704WTTTZ00BP12222212204307100000000120060104WT@PTY@W912222212204310100000000 -T12023011111196109022000411551120313110835300000000000002940680000000000000000000000000000000359222122000000012219072 -T2202301111119610901219750723WT@PTWYYT2212222222221012211220670023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961090120150412WT@0PZ@W@22122212204398100000100120140401WTTTBZWPY22122222204302100000000 -T12023011111196116323800413801120313110760300000000002505280450000000000000000000000000000000000222222000001262219012 -T2202301111119611631219880112WTTY9W0#@2222212222225012216110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000125 -T320230111111961163120110423WT@ZP@ZTB22222122204306100000100120080423WT@YBWP#P22222112204309100000000 -T12023011111196122924200404891120312110740112660000003505280260000000000000000000000000000000000222222000000002229012 -T2202301111119612291219720122WT@#BW@W02222112222225012212110263421011801000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961229120170404WTT90ZY#W22222122204398100000000420150313WT@@B#Z@012221212104301109140000 -T12023011111196123720600400872120333210670300000000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111119612373219770104WTT9Y@00#1222122222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961237120130307WTTZWW99@22221212207302900000000120070421WTT9Z#@TB22221222207309900000000 -T12023011111196135625900402121120213110611300000000000005280180000000000000000000000000000000000222222000000002229012 -T2202301111119613561219890112WT@ZB#W#B2222212222221012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961356120210108WTT0Z#WY012222112204398100000000 -T12023011111196140424200404891120213110611108900000000005280690000000000000000000000000000000000222222000000002229072 -T2202301111119614041219750721WTT9@YY0W2221222222221012216110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961404120180527WTT90#9TY22212222204398100000000 -T12023011111196143225000406021120413110835300000000000106540020000000000000000000000000000000000222222000000002229012 -T2202301111119614321220010727WTTWYTT#@1222222222221012216110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119614322220000404WT@YYBT9P1222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961432120220713WT@9TPY9W12222122204398100000000120190302WTTW90WT#12222222204398100000000 -T12023011111196148524200410531120523110999300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111119614851219790312WTTP#Z9W#2222211222222011215290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119614851219750301WTT9YYZ9P2222212222222021214290114923011800000000000000000000000000000000290001000000000000000000000000000000000000000000000000 -T320230111111961485120050726WT@YZWYW022222112204311200000000 -T320230111111961485120170918WTT0PT@0922222112204398200000000120120501WTT0#YZBZ22222112204304200000000 -T12023011111196150622500410151120333110740300000000000000260830000000000000000000000000000000000222222000005022219022 -T2202301111119615063219520923WTTTT@WW92122222222215012208110006013069900000000000000000000000000000000000000000000000000000000000000000000000000080900000300 -T320230111111961506120090707WTT@Z#0@021222212206307100000299120060327WTT0W#B0T21222212206309100000299 -T12023011111196156821400408021110333110258300000000080003490990000000000000000000000000000000000222222000000682219021 -T2202301111119615682219650927WT@YYBT9P1222222222222012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119615682219640918WT@YYBT9P1222221222222022298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961568120070326WT@#B0@@#12222112204308100000000 -T12023011111196159324200414851120332110418300000000000005280460000000000000000000000000000000000222222000000002229022 -T2202301111119615932219720923WT@TPY@WW2222122222221012212920035713079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961593120060324WT@990PW@22221212204310100000000120050212WTT#9ZZBT22221212204312100000000 -T12023011111196172422700408491120333110704300000000000005280370000000000000000000000000000000000222222000000002229022 -T2202301111119617243219750712WTT@BPP092222212222222012212110253511069953000000000000000000000000000000000000000000000000000000000000327900000000000000000000 -T320230111111961724120180922WT@##Z0Y012222212206398100000000120070105WTTP0YT@#12222112206308100000000 -T12023011111196174422700408351120333110670300000000000005280280000000000000000000000000000000000222222000000002229022 -T2202301111119617443219760223WTTZ@0PPZ1222212222225012216110630013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961744120120413WTTB0TPWB12222122207303100000050120060101WTT0TYZWY12222112207307100000050 -T12023011111196179624700409321120312110704300000000000006540340000000000070002000000000000000000222222000000002229012 -T2202301111119617961220000418WTTBT#T0P2222212222221012212110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111961796120200404WT@W#@YT922222122204398100000000120190507WT@P9YTP@22222122204398100000000 -T12023011111196179923500405271120422110740300000000040004620080000000000070002000000000000000308122222000000012219012 -T2202301111119617991219660401WTT00PP#P2222211222222011216190095123010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119617991219710107WT@B#P0@92212222222222021214190095123011800000000000000000002000000000000000000000000000000000000390000000000000000000000000000 -T320230111111961799120070724WT@9#0P0922222212204308100000000120060511WT@0ZW#TP22222212204310100000000 -T12023011111196192722000413731120233120000300000000050004170670000000000000000000000000000000000222222000000002229022 -T2202301111119619273219590123WT@WPWZZ@2212221122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001947000000000000 -T320230111111961927120050127WTTW99TW022122212206309100000050 -T12023011111196196222000408341120313110766105700000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111119619621219820407WT@TZY##Z2222212222222012214210085223011800000000000000000002000000000000120002000000000000000000080000000000000000000000000000 -T320230111111961962120170213WTTT0WP#022222112204398200000000120120714WT@W##PTY22222112204304200000000 -T12023011111196198422000400461120213110611300000000000005280210000000000000000000000000000000000222222000000002229012 -T2202301111119619841219830708WTTB@0YP@2221222222221012216120342623010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111961984120150218WTTTT@WZP22212212204302100000000 -T12023011111196221525000414191120512111034300000000400007710030000000000070005000000000000000000222222000000002229012 -T2202301111119622151219830907WTT#ZB#PW1222221222222012213190174323011800000000000000000001000000000000000000000000000000000000170000000000000000000000000000 -T2202301111119622152219840122WT@YYBT9P1222222222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962215120080701WT@@@BWTT12222212204308100000000 -T320230111111962215120130221WT@0#WBTT22222222204303100000000120080701WT@#9@WTP12222212204308100000000 -T12023011111196223920600414871120333120000300000000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111119622393219780418WTTT#B9WZ2222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962239520180101WTTT009PP22222112107398106090000120170902WT@BTPZWW22222112207398100000000 -T12023011111196226624100408431120412110939300000000070006540040000000000090003000000000000000000222222000000002229012 -T2202301111119622661219820401WTTWBPW0Y2222212222221012216110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962266420100721WT@@0PPBY12222112104304109140000 -T320230111111962266120180118WT@0@BZW@12222122204398100000000120130722WTTZ@9YYY12222112204302100000000 -T12023011111196234822000409871120213110631112810000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119623481219910102WT@9BY9TP1221222222221012212120035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962348120200127WT@0@PZ0P22222222204398100000000 -T12023011111196240323700414331120333120000103650000000005280080000000000000000000000000000000000222222000000002229022 -T2202301111119624033219790412WT@@0PTYZ1222221222221012212110006013069900000000000000000000000000000000000000000000000000000000000000745000000000000000000000 -T320230111111962403120160421WTT@B@BZ@12222112206301100000000120150426WT@0@009912222122206301100000000 -T12023011111196248722000406951110323110740300000000000004430010000000000000000000000000000000000222222000000002229012 -T2202301111119624871219800112WTTPYYTBP2222211222225011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119624871219830712WT@Z0BP992222212222223011212190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962487120200923WT@09T9#W22222122204398100000000 -T12023011111196250624200403511120413111032300000000000007710560000000000000000000000000000000000222222000000002229012 -T2202301111119625061219900518WTT90BP092222212222221012216110570323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962506120150204WT@ZZ99BB22222112204398100000050 -T320230111111962506120210926WTTYZY@ZB22222112204398100000000120190307WT@@0B99Z22222112204398100000000 -T12023011111196251923900400641120313110766300000000000006540190000000000000000000000000000000000222222000000002229012 -T2202301111119625191219850127WT@@#0###2222212222222012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962519120200407WT@WWB@WW12222122204398100000000120180904WT@Z0#PZ#12222122204398100000000 -T12023011111196266024700408301120313110766300000000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111119626601219850105WTTPWB#WT2222222222225012209110530723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962660120220909WTTZ@@PB022222112204398100000000120110426WTTWY9##Y22222122204305100000000 -T12023011111196266920600401561120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119626693219510307WTT09@9ZB2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000156000002181000000000000 -T320230111111962669120040924WTT9#BB0022222112206312100000000 -T12023011111196268825100407671120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119626883219810324WTTTYWP#P2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962688120120307WT@YBPWPW22212212207303100000000 -T12023011111196290622000406951120213110548300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111119629061219800712WT@@##9P#2222212222223012212210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962906120070323WT@BW900Z22222112204308200000000 -T12023011111196295325900402631120323110740300000000147002720020000000000000000000000000000000000222222000003822219012 -T2202301111119629531219690901WT@PTTP902222212222222011212190035721011809000000000000000000000000000000000000000000000000000000000000076200000000000000000000 -T2202301111119629531219630321WT@PTZPPP2222211222222021212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111962953120040302WTTY#@90@22222122204311100000000 -T12023011111196296322700407491120333120000300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111119629633219960527WTTW@0W0Z1222222222221012216110006011069941000000000000000000000000000000000000000000000000000000000000525000000000000000000000 -T320230111111962963120130713WT@Y#PTPB12222122209304100000000120110313WT@ZPBBP912222122209303100000000 -T12023011111196300722000411551120312110716300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111119630071219720423WTTWPZZT92221222222222012298111530023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119630072219570423WT@09B#@#2212221222212022204190015913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111963007120100911WT@#P@TZP22212212204306100000000 -T12023011111196304722000411131120233110376300000000000002050240000000000000000000000000000000000222222000002122219022 -T2202301111119630472219960904WT@YYBT9P1222222222221012212910006013079900000000000000000000000000000000000000000000000000000000000000064500000000000000000000 -T320230111111963047120200704WTTZ099Z012222212204398100000000 -T12023011111196306822000412691120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119630682219730904WTT9@BWYY2222212222215012212110910013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111963068120050921WT@P#ZB@022212112204311100000050 -T12023011111196311824200414721120613111339300000000000008880850000000000000000000000000000000000222222000000002229072 -T2202301111119631181219930401WTT#TYP@@2221212222221012216121020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963118120120507WTT9PPPWB22212112204304100000000 -T320230111111963118120220723WT@BBZ@##22222212204398100000000120190426WTTTPBZBY22212112204398100000000 -T320230111111963118420170221WT@ZPW0YP22212212104398109140000120130307WTTT#PTWY22222112204302100000000 -T12023011111196322124500410691120313110516300000000000003160060000000000000000000000000000000211122222000000012219012 -T2202301111119632211219880511WT@0P90P02222212222221012209110560423010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963221120110927WTT90WZ0B22222112204305100000000420070324WT@BZ9ZY922222112104308109140000 -T12023011111196352121700406141110213110576300000000000001120010000000000000000000000000000000000222222000000002229012 -T2202301111119635211220010118WT@@ZB9@W2222211222221012212110025821011805000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963521120200326WTT9BTPTW12222112204398100000000 -T12023011111196358821700407751110413111034300000000000006460010000000000000000000000000000000000222222000000002229012 -T2202301111119635881219920902WTTYP@YP@2222122222221012208910293123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963588120140702WT@TPY00T22221212204301900000000 -T320230111111963588120220927WT@#0B###22221222204398100000000120200414WTTBB0Z@Z22221212204398100000000 -T12023011111196362124200410211120213110611300000000000305280250000000000000000000000000000000000222222000000002229012 -T2202301111119636211219950507WTTZ90@@02222212222225012210110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963621120140904WTT##ZPTP22222112204302100000000 -T12023011111196364123700414331120233110557300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111119636413220010926WTT#YB0@P1222221222221012211110006011069957000000000000000000000000000000000000000000000000000000000000288100000000000000000000 -T320230111111963641120140524WT@TYYW@012222122207302100000000 -T12023011111196366723500407161120423110939300000000000000220100000000000000000000000000000000000222222000007492219012 -T2202301111119636671219890421WT@#@BPT02222212222222011212290114921011948000000000000000000000000000000000000000000000000000000000000299500000000000000000000 -T2202301111119636671219860224WTT9ZZY@Y2222221222222021212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963667120170327WT@9Z90#B22222112204398200000000120140301WTTPTZ9BW22222122204301200000000 -T12023011111196369622000403891120333110376300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111119636962219840923WT@YYBT9P1222212222221012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963696120200427WTT9TTZWB12222212204398100000000420120712WT@YYBT9P12222122204303900000000 -T12023011111196371824200407431120233110517300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111119637185219790913WTTTZB9#W2222211222222012213110382213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963718120050712WT@9Z9@@022222112208311100000000 -T12023011111196374925600413441120313110781300000000000006210140000000000000000000000000000000000222122003200012219012 -T2202301111119637491219970401WTTTP#PTB2221222222221012211120342623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963749120220323WTT99BZ0Z22212222204398100000000120160427WT@P9WYZ@22212222204398100000000 -T12023011111196390322000405841120213110611300000000001705280040000000000000000000000000000000000222222000000002229012 -T2202301111119639031219950118WTTWZTBW@2222212222221012211110332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111963903120180312WT@0TZWTP22212112204398100000000 -T12023011111196408824200404891120312110793300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119640881219900522WT@@Y@ZP92221222222223012213110114923010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964088120190327WTTP@9Z#W22212222204398100000000420150423WT@T9WZPW22212212104398104990000 -T12023011111196409724700404541120523111211300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111119640971219880927WT@@W#Y9B2222212222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119640971219920123WTT#@PWT02222211222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964097120130427WTTZ00T#T22222122204398200000000 -T320230111111964097120190412WT@B@YTT922222112204398200000000120160904WT@9TPY9W22222112204398200000000 -T12023011111196435624200414851120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119643562219790314WT@W9#BT#2221222222213012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111964356120050113WTT@Y#PBB22212222204310100000000 -T12023011111196440822000402321120433110188300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111119644082219820927WT@YYBT9P1222222222223012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964408420050301WT@YYBT9P12222212204308900000000 -T320230111111964408120210305WT@9ZB@ZP22222212204398100000000420110726WT@YYBT9P12222212204304900000000 -T12023011111196443522000405841120313110760120300000025003000230000000000000000000000000000000000222222000003542219012 -T2202301111119644351219770907WTTT##Z0W2222211222221012212110362421011700210000000000000000000000000000000000000000000000000000100000000000000000000000000000 -T320230111111964435120200704WTTYZYT#B22222122206398100000000120050913WTTYBPZ#Y22222122204312100000000 -T12023011111196444422000411131120232110516300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111119644443219700904WT@BB0WP92122222222211012211110710013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111964444120170223WT@0YPT#Y21222212206398100000000 -T12023011111196450123900403801120212110611300000000008605280120000000000000000000000000000000000222222000000002229072 -T2202301111119645011219780407WTT@#ZBY92122221222221012216110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964501120060226WT@PZ009#11222222204310100000000 -T12023011111196459124700408301120232120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119645913219740418WTTYP#Z0B2221222222222012212120750011069934000000000000000000000000000000000000000000000000000000000000295100000000000000000000 -T320230111111964591120080308WT@P0@TPB22222112206307100000000 -T12023011111196461322000410221120512111124300000000184308880220000000000000000000000000000000000222122000000002229072 -T2202301111119646131219880307WTT99Y@PP2222212222223012212120830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964613120080914WTT0#ZWWP22222122204307100000000120070426WT@YZ#B9T22222112204309100000000 -T320230111111964613120170205WT@BTZY0P22222122204398100000000120150314WT@#WZ@@T12222112204398100000000 -T12023011111196463722500410151120423110946300000000000004620740000000000000000000000000000000308122222000000012219072 -T2202301111119646371219770926WTTWY9#W#2222212222221011212110690023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119646371219800723WTTP#@#9Z2222211222221011210190312923011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964637120190512WT@T0BTYZ22222112204398100000000120080313WT@T#W@T922222112204306100000000 -T12023011111196464120600407031120323110835300000000200006540050000000000000000000000000000000000222222000000002229012 -T2202301111119646411219900726WT@B#TTY@2222211222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119646411219900118WTTY00W#02222212222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964641120170707WTT0BT@YB22222112204398200000000 -T12023011111196470920600402141120212110596300000000000005170130000000000000000000000000000000000222222000000112219012 -T2202301111119647091219900727WTTBWYZYY2222212222221012216110144621011801000000000000000000000000000000000000000000000000000000000000004100000000000000000743 -T320230111111964709120210113WTTYPB0##22222112204398100000000 -T12023011111196474023500411471120413110939300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111119647401219830123WT@@WZTP#2222212222221012212111210023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964740120060305WT@@WTBYY22222112204309100000000 -T320230111111964740120140401WTTZ0BTB@22222112204301100000000120140401WT@#B9PBT22222112204301100000000 -T12023011111196484420600414771120422110959300000000000007290530000000000000000000000000000000000222222000000422219072 -T2202301111119648441219830121WTTB9BPZW2222212222222011216111300023011800000000000000000000000000000000000000000000000000000000080000000000000000000000000041 -T2202301111119648441219840101WTTTBT0WZ2222211222221021216190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964844120160323WT@TTBPB@22222122204398100000000120080901WTTPW#P@Z22222122204306100000000 -T12023011111196486220600400871120323110670300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111119648621219620512WT@T@T9#Y2222212222222011207290035723011800000000000000000000000000000000070000000000000000000000000000000000000000000000000000 -T2202301111119648621219640127WT@ZWWYTY2222212222222021209290035723011800000000000000000000000000000000110000000000000000000000010000000000000000000000000000 -T320230111111964862120040721WTT9B90ZB22222112204310200000000 -T12023011111196491724200410711120413110957300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111119649171219980912WT@#Z##P@2222212222221012210110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111964917120180704WT@B#P#B022222112204398100000000 -T320230111111964917120220126WTT9WTT#W22222122204398100000000120200423WTTW@P#@Y22222112204398100000000 -T12023011111196505324200414721120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119650532219820523WTTP#TYYZ2222212122213012211120322813109900000000000000000000000000000000000000000000000000000000000000000000000550038400000000 -T320230111111965053120180227WT@9@W@Y@22212212204398100000000120130711WT@9ZBBW022212222204303100000000 -T12023011111196505724700406701120233120000300000000000005280820000000000000000000000000000000000222222000000002229022 -T2202301111119650573219610312WTT@ZPP0T2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965057120110726WT@@T9WZY22222122206306100000000 -T12023011111196507022700408351120312110740300000000000004440270000000000000000000000000000000000222222000002102219072 -T2202301111119650701219770107WTTYZYWPW2222212222221012216121020021011820000000000000000000000000000000000000000000000000000000000000135300000000000000000000 -T320230111111965070120150702WT@ZY@@Z@22212222204398100000000120100912WTT0Z@@Z@22222122204304100000050 -T12023011111196508024200407311120233110551300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111119650803219710918WTTY0BT#W2222212222223012216110750011069924000000000000000000000000000000000000000000000000000000000000150000000000000000000000 -T320230111111965080120100212WTT@Y9W#012222122206306100000000 -T12023011111196509622100406981120413110939300000000003707710030000000000000000000000000000000000222222000000002229012 -T2202301111119650961219960209WTTP@B00#1222212222223012212110045623010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111965096120170704WTTYPYW0T22222112204398100000000 -T320230111111965096120210324WT@99#TPW22222112204398100000000120190105WT@###TZ#22222112204398100000000 -T12023011111196518325200412081120423111034300000000050007710040000000000000000000000000000000000222222000000002229012 -T2202301111119651831219950418WTT#W@PZ#2222212222222011214190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119651831219950421WTTWZPWW@2222211222222021212190055521011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965183120210905WT@YPWW@#22222112204398100000000120190927WT@TT00BZ22222122204398100000000 -T12023011111196534124200407431120213110611300000000009005280140000000000035002000000000000000000222222000000002229072 -T2202301111119653411219740107WTT900##B2222212222221012212110780023011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111965341120100323WTT9909Y022222122204305100000000 -T12023011111196537824700408301120212110603300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111119653781219750926WT@YYTBB#2222212222225012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965378120110307WTTYWTZ0@22222112204304100000000 -T12023011111196551222000411282120623211260300000000000010090020000000000000000000000000000000000222222000000002229032 -T2202301111119655121219820321WTTBWTTZ#2222222222222011213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119655121219760911WT@WW@TYY2222211222222021209290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965512120060122WT@9WBPW022222122204309200000000120040904WTT9BZ#YZ22222122204310200000000 -T320230111111965512120160123WT@WYYW0Y22222112204398200000000120120527WT@BW@9Y@22222112204304200000000 -T12023011111196563523500411471120212110611300000000000005080580000000000000000000000000000000000222222000000202219072 -T2202301111119656351219830214WT@Y0PTZZ2222212222221012216111390023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000019 -T320230111111965635120080318WT@YZ#9BB22222122204308100000000 -T12023011111196567820300401721120333110740300000000000005280810000000000000000000000000000000000222222000000002229022 -T2202301111119656783219630127WT@B#0Z#02222212122225012212110114913069900000000000000000000000000000000000000000000000000000000000000000000001135000000000000 -T320230111111965678120130707WTTZP9Z0022222112206303100000050120060404WT@#PPP@#22222112206310100000050 -T12023011111196571220600405081120333120000300000000000005280330000000000000000000000000000000000222222000000002229022 -T2202301111119657123219440902WTTPY@Z9B2222211122222012214110006011069921000000000000000000000000000000000000000000000000000000000000137600001956000000000000 -T320230111111965712120070923WT@#B@YZY22222112206309100000000120060226WT@T@BYZP22222112206311100000000 -T12023011111196572724200407431120413110893300000000014007710120000000000000000000000000000000000222222000000002229012 -T2202301111119657271219840912WT@T90BWZ2222222222225012212120134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965727120040323WTTT@ZYWZ22122222204311100000100 -T320230111111965727120160201WTTBBT09922122222204303100000000120130105WT@PT@@#Y22222212204303100000000 -T12023011111196576425000413201110213110611300000000000003740010000000000000000000000000000000000222222000000002229012 -T2202301111119657641219860507WT@9YYWB92222212222221012216110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965764120120513WTT@Z9BZ#12222122204304100000000 -T12023011111196576825900400311120513110607300000000001005280220000000000000000000000000000000000222222000000002229072 -T2202301111119657681219700714WT@9P9Z#01222222222223012212111450023011400000000000000000000000000000000000000000000000000000000340000000000000000000000000000 -T320230111111965768120100204WT@9ZTBYP12222212204305100000300120070402WT@9TPY9W12222212207308200000000 -T320230111111965768120120323WT@9TPY9W12222222207303200000000120110308WT@9TPY9W12222222207303200000000 -T12023011111196579820600401561120623111362300000000000006050670000000000000000000000000000000403122222000000012219012 -T2202301111119657981219910404WT@@0P#BZ2222211222221011212190174323011800000000000000000000000000000000000000000000000000000000000000010700000000000000000000 -T2202301111119657981219950721WT@#TYBZZ2222212222221011209110431723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965798120140321WT@#@WWB022222112204301100000000120130304WT@BZ90@W22222122204302100000000 -T320230111111965798120210122WT@0#@WTW22222112204398100000000120200123WT@9Y#@BB21222222204398100000000 -T12023011111196581625800405801120233110516300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111119658162219910707WTT@T9#Y02222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000076700000000 -T320230111111965816120200421WT@Z0@WTP22222112204398100000000 -T12023011111196583922600413251120213110446300000000001005280100000000000090011000000000000000000222222000000002229012 -T2202301111119658391219720112WTTZZW99@1222212222225012206210273323011800000000000000000002000000000000000000000000000000000000070000000000000000000000000000 -T320230111111965839120130718WT@@B@#@P12222122204303100000000 -T12023011111196584221400408021120433110611300000000000005280290000000000000000000000000000000000222222000000002229022 -T2202301111119658422219990205WT@YYBT9P1222212222221012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119658422219930904WT@YYBT9P1222211222221102208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965842120200711WT@P@@TY012222112204398100000000120170527WTTZ0BBTP12222122204398100000000 -T12023011111196593423500411471120312110835300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111119659341219910911WTTB00#ZP2221222222221012213110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111965934120200414WTT#ZZP#@22212212204398100000000120160708WT@BT00P@22212212204398100000000 -T12023011111196610922000411282120423210939300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111119661091219840401WT@PZBTW02222211222222011212290035721011943000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119661091219840924WTT#T0@0@2222212222222021212290035721011943000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111966109120150727WT@B0W#9Y22222112204301200000000120100413WT@Z9Y@BZ22222122204307200000000 -T12023011111196625322600405051120313110777300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111119662531220000227WTTYBW90T2222212222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111966253120210214WTTWW@9##22222112204398100000000120190312WTT9WWZ9Y22222112204398100000353 -T12023011111196628823700414331120213110611300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111119662881220000721WT@9##0Y01222222222221012212110065423011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111966288120200326WTTZPPT0#12222212204398100000000 -T12023011111196630624200403941120332110791300000000000005280910000000000000000000000000000000000222222000000002229022 -T2202301111119663062219790911WT@0BW@BW2221222222211012211110580213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111966306120160421WT@WYB#0P22212212204301100000000120070421WT@@WY99T22212222204309100000000 -T12023011111196640224700413891120233120000300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111119664023219730924WT@9@9@Y92222212222222012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111966402120190712WTTYPZWP#22222122206398100000000 -T12023011111196641224900404261120533111116300000000000007710990000000000000000000000000000000000222222000000002229022 -T2202301111119664122219890721WTT#W#Z0@2222212222213012216120213913089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111966412120110313WT@0Z##WB22222122204303100000000120060123WTTWZ0WP@22222122204308100000000 -T320230111111966412120210926WT@00BTTW22222112204398100000000120190901WTTT#WBBT22222112204398100000000 -T12023011111196650922000411282120323210835300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111119665091219710526WT@P#00@#2222212222222011214290075323011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111119665091219740122WTTZB0@@W2222211222222021212290075323011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111966509120080111WTT@9B@PP22222112204309200000000 -T12023011111196660724100413561120313110835300000000000006540140000000000000000000000000000000000222222000000002229012 -T2202301111119666071219930301WT@@YZBB#2222211222223012212110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111966607120200901WT@9Z9ZT912222112204398100000000120170713WT@PTY@WP12222122204398100000000 -T12023011111196665820800409831120233120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111119666583219720524WTTZTP99B2222211222222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111966658120210701WT@@9#W@922222212206398100000000 -T12023011111196667821700406141120113110376300000000015004170030000000000000000000000000000000000222222000000002229012 -T2202301111119666781220000718WTTW@BPYB2222212222221013216190233723011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T12023011111196690324700408091120412110939300000000008707710330000000000000000000000000000000000222222000000002229012 -T2202301111119669031219760114WT@0T@ZZP2222212222225012212110342623011800000000000000000000000000230004000000000000000000000000010000000000000000000000000000 -T320230111111966903120110401WT@9P@W#B12222112204305100000000 -T320230111111966903120160501WTT0P##YY12222112204398100000000120140405WTTT@#BP@12222112204302100000000 -T12023011111196703324700408301120113110268300000000500004170020000000000000000000000000000000000222222000000002229012 -T2202301111119670331219920113WT@Z#Z#9B2222212222221013216290035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111196704925800405061120233110493300000000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111119670493219580118WTT@ZZYTW2222212222215012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111967049120040304WT@9PP@ZB22222122206311100000000 -T12023011111196709724200404891120413111034128850000001507710270000000000000000000000000000000000222222000000002229012 -T2202301111119670971219810523WTTBPWYW@2222212222223012216110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967097120130213WTT@9YYYW12222112204303100000000 -T320230111111967097120210107WT@ZPWT0@22222112204398100000000120210107WT@@BZZZ#22222122204398100000000 -T12023011111196713123700400482120433210939300000000000007710030000000000000000000000000000000000222222000000002229022 -T2202301111119671311219900923WT@9TPY9W1222212222222012212290045623099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119671311219820108WT@9TPY9W1222221222222022212290045623099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967131120120223WT@9TPY9W12222112204304200000000120070401WT@9TPY9W12222112204305200000000 -T12023011111196715023500410671120213110611300000000000005280330000000000000000000000000000000000222222000000002229012 -T2202301111119671501219900927WTTY0PYY#2212212222221012212110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967150120210901WTTW#9@BP22222122204398100000000 -T12023011111196719124100413561120233110258300000000000004170130000000000000000000000000000000000222222000000002229022 -T2202301111119671912219690326WT@YYBT9P1222222222223012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967191120080424WTTY@#PYW12222112204308100000000 -T12023011111196723524700405901120113110396300000000024504170020000000000000000000000000000000000222222000000002229012 -T2202301111119672351219910424WT@90YZ@P2222212222221013213190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111196747124700405901120423110939300000000000006270030000000000000000000000000000000000222222000001442219012 -T2202301111119674711219870922WTTT@P#Y02222211222222011213290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119674711219880713WTT9P09@W2222212222222021216210045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967471120140104WTT@TB@BZ22222112205303200000071120100213WTT0WYTPT22222122205307200000071 -T12023011111196747622000412971120232110516300000000000004170880000000000000000000000000000000000222222000000002229022 -T2202301111119674763219600701WT@9P0@WZ2221221222215012212110342613069900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111967476120050713WTTWPWZY022212212206310100000000 -T12023011111196753124200403941120213110598300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111119675311219980718WTT#99@#Z1222212222221012211120540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967531120170523WTT@9#TWZ12212222204398100000000 -T12023011111196754721000411361120323110835300000000105106540040000000000000000000000000000000000222222000000002229012 -T2202301111119675471219900102WT@PP@WPY2222211222222011216190045621011940000000000000000000000000080001000000000000000000000000000000000000000000000000001479 -T2202301111119675471219930502WTT0P@WYB2222212222222021213190045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967547120210324WTTBP9PP@22222112204398100000000 -T12023011111196755822000407241110723111480300000000000010890010000000000000000000000000000000000222222000000002229012 -T2202301111119675581219750421WT@9TPY9W2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119675581219730304WT@9TPY9W2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967558120050227WT@9TPY9W22222122204312200000000 -T320230111111967558120090926WT@9TPY9W22222122204307200000000120070421WT@9TPY9W22222112204309200000000 -T320230111111967558120130107WT@9TPY9W22222112204304200000000120110901WT@9TPY9W22222112204305200000000 -T12023011111196756922000408341120213110560300000000000005280240000000000000000000000000000000000222222000000002229072 -T2202301111119675691219830114WT@Z9#0WP2222222222225012216110770023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967569120130526WTTZB#P#922212212204303100000000 -T12023011111196762022000412971110233110329300000000000003490010000000000000000000000000000000000222222000000002229021 -T2202301111119676202219880708WT@YYBT9P1222222222221012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967620120080923WT@9TPY9W12222212204310200000000 -T12023011111196783420800410781110212110611300000000000004170010000000000000000000000000000000000222222000000002229012 -T2202301111119678341219810427WT@0TZ9TY2222212222221012213110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967834520060102WTTTZ@WB#22222112104309105000000 -T12023011111196787025900400311120613111269300000000000008880990000000000070011000000000000000000222222000000002229072 -T2202301111119678701219760126WT@0TT99Y1222221222221012211190700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119678702219810105WTT@#B##91222222222211012212110780013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111967870120110213WT@BZZWZ@12222122204306100000000120090318WT@BWZY#W12222222204307100000000 -T320230111111967870120200709WT@0YT9P012222112204398100000000120160411WT@B#@BTP12222122204301100000000 -T12023011111196796324200404421120423110893300000000000007710050000000000000000000000000000000000222222000000002229042 -T2202301111119679631219650523WT@9TPY9W2222212222222011298210006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119679631219600504WT@9TPY9W2222211222222021298290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967963120080704WT@9TPY9W22222122204398200000000120060112WTTZ9#ZZT22222112204398200000000 -T12023011111196796522000405841120312110727300000000040006540240000000000000000000000000000000000222222000000002229012 -T2202301111119679651219930727WT@YWBWWZ2122222222221012212210303023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111967965120200723WT@ZZTY@021222222204398100000000120150113WTTP0B9BW12222222204398100000000 -T12023011111196799424700413761120313110740300000000000004480170000000000000000000000000000000000222222000002062219012 -T2202301111119679941219960526WTTBTY9@Z2222212222221012212110382221010906000000000000000000000000000000000000000000000000000000000000041000000000000000000000 -T320230111111967994120140112WTTWWBT#022222112204303100000000120120713WT@T9TTZZ21222222204304100000000 -T12023011111196804720600400871120232110516300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111119680472219780723WTTYPB@@W2122221222213012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111968047120180727WTT0#WYZB21222222204398100000000 -T12023011111196811825600412851120513111116300000000000008880570000000000000000000000000000000000222222000000002229072 -T2202301111119681181219910518WTTPP@TZW2221222222221012212120620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111968118120170727WT@@P@00022212222204398100000000120150307WT@#Y#B@B12212212204398100000100 -T320230111111968118120200918WTT#YZP9T22212222204398100000000120200918WT@ZTYYZZ22212222204398100000000 -T12023011111196813925900408111120413110893300000000000002470200000000000000000000000000000000000222222000005242219042 -T2202301111119681391219780412WT@Z@9P@92122222222223012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111968139120070402WTTZZPZ#P21222212204309100000149 -T320230111111968139120160721WT@BYBWZT21222212204398100000149120110426WTT@0W##021222212204305100000149 -T12023011111196816923500405981120522111193300000000530008880110000000000000000000000000000000000222222000000002229012 -T2202301111119681691219770312WTT9@P#P#2222212222222011212190204023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119681691219730312WTT@PY#0T2222211222222021212190204023011800000000000000000000000000000000000000000000000000000000410000000000000000000000000000 -T320230111111968169120070413WT@Y9YT0Y22222112204308100000000 -T320230111111968169120150914WTTZZBW9W22222112204398100000000120090326WT@0T@ZP#22222122204305100000000 -T12023011111196818924700406741110523111116300000000000003720010000000000000000000000000000000000222222000000002229012 -T2202301111119681891219840312WT@9ZT#ZW2222211222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119681891219880904WTT@W9##Z2222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111968189120110923WT@W09WZP22222112204304200000000 -T320230111111968189120170402WTTZZ099Z22222122204398200000000120140204WTTY@0BB022222122204302200000000 -T12023011111196819420600414871120213110611104060000000005100160000000000000000000000000000000000222222000000182219012 -T2202301111119681941219960722WTT00B9##2222212222221012212110174323011900000000000000000000000000300002000000000000000000000000040000000000000000000000000017 -T320230111111968194120160302WTTY0W#TT12212122204398100000050 -T12023011111196825222000413731110412111034300000000000001490080000000000000000000000000000000000222222000006222219012 -T2202301111119682521219810401WTTPT00TT2221221222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111968252120070727WT@9W9T9Y22212212204307100000000 -T320230111111968252120120326WT@YT#YB922212222204302100000000120090123WTT#@T9B022212212204306100000000 -T12023011111196826724500405781120213110611300000000000005280080000000000000000000000000000000000222222000000002229012 -T2202301111119682671219940312WT@ZZ9ZTZ2222212222221012212110144623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111968267120220121WTT0##YY922222122204398100000000 -T12023011111196857424200404891120532111116300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119685743219620901WT@B@00@92222212222225012213120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111968574120190222WTT@PT9T922222122206398100000000520140327WTT#W9W#T22222122106301109140000 -T320230111111968574520080212WT@PP#W#Z22222112106308108220000520050305WTT99ZP0Z22222112106310109140300 -T12023011111196858724700413761110213110611300000000000004420200000000000000000000000000000000000222222000000002229012 -T2202301111119685871219930407WT@B0BZZB2222222222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111968587120120212WTTYPBY@B22222222204304100000000 -T12023011111196860223900400641120233110417300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119686022219800313WT@Z@#YBZ2222212222211012210110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111968602120090223WTT9TWYZB22222112204304100000050 -T12023011111196874423500411471120323110820300000000000005790050000000000000000000000000000000000222222000000752219012 -T2202301111119687441220000104WT@9TPY9W2222212222222011207290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119687441219930922WT@9TPY9W2222211222222021208290045623011800000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111968744120210112WTT#P#T#Z22222122204398100000000 -T12023011111196885221000411361120512111116300000000000008880920000000000035007000000000000000000222222000000002229072 -T2202301111119688521219830101WT@#YTTYZ2222212222223012212120930023011400000000000000000000000000000000000000000000000000000000320000000000000000000000000000 -T320230111111968852120130313WTT0900WP22222112204303100000000120070404WT@Y0Z#P922222112204310100000100 -T320230111111968852120170301WT@PYBY9Z22222112204398100000000120150109WTT#YP9#022222122204302100000000 -T12023011111196896022000407791120612111434300000000000001950370000000000000000000000000000000000222222000008142219012 -T2202301111119689601219900501WTTTP@9PW2222212222225012213120451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000001447 -T320230111111968960120100927WTT@W#Y9T12222112204306100000000 -T320230111111968960120140307WTT@TYW0012222122204301100000000120140307WT@@T0#0B12222122204301100000000 -T320230111111968960120170427WTTT@T@0@22222122204398100000000120150718WTTWWTPY@12222122204316100000000 -T12023011111196907220800410781120623111434300000000000008430130000000000000000000000000000000000222222004400012219012 -T2202301111119690721219840412WT@PTBTY#2222222222222011212910491123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119690721219750121WTTZ09Z0Y2222121222222021212990431723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969072120080323WTTWZ0@9Y22222212204307100000000420060304WTTTY90@P22221212205309100000000 -T320230111111969072120170907WTTP@P9WY22221212204398100000000120130704WT@@BYTP022221222204302100000000 -T12023011111196922224100412771120313110740300000000000003960230000000000035002000000000000000132222122000000002229012 -T2202301111119692221219810102WT@@@#YZT1222222222221012209220025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969222120110914WTT##@@0912222122204304100000000420060123WTTBB#P#@12222122104309107870000 -T12023011111196932821000411361120313110766300000000000006200080000000000000000000000000000000261222221000000002229012 -T2202301111119693281219800705WTTB@YYTZ2222211222221012211110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969328120130501WT@90#TTP22222112204303100000000120110923WT@90YTB@22222112204305100000000 -T12023011111196934222700401571120333110493300000000045005280500000000000000000000000000000000000222222000000002229022 -T2202301111119693422219730707WT@YYBT9P1222222222223012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969342120070412WTTPTYYY012222222204309100000000120050318WTTPY@#TW12222222204310100000000 -T12023011111196935223700414331120423110959300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111119693521219860708WT@9TPY9W2222212222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119693521219860911WT@9TPY9W2222211222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969352120200704WT@9TPY9W22222112204398200000000120160927WT@9TPY9W22222122204398200000000 -T12023011111196947420600414871120212110611300000000090003310200000000000000000000000000000000000222222000001972219072 -T2202301111119694741219750209WTT99@TW#2222211222221012212110760023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111969474120140514WTTY9WWWW22222122204302100000197 -T12023011111196956120600408181120213110598300000000000005280230000000000105002000000000000000000222222000000002229012 -T2202301111119695611219780324WTTY@0#0#2222212222224012216110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969561120040124WT@PZW0YP22222122204311100000000 -T12023011111196956225800401871120513111116300000000000004040060000000000000000000000000000000000222222000004842219012 -T2202301111119695621219880423WT@#BZWZ02222212222223012212110105021011816000000000000000000000000000000000000000000000000000000000000096700000000000000000000 -T320230111111969562120120726WTT@#BZTT22222112204303100000000120110413WT@B0@@Z@22222122204304100000000 -T320230111111969562120190504WTTTP#ZZW22222122204398100000000120170723WT@9Z0#P#22222122204398100000000 -T12023011111196957224200414721120212110611300000000000005280130000000000000000000000000000000000222222000000002229072 -T2202301111119695721219620213WT@PT9PY92222222222221012212111120023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969572120050909WTTTTW9T#21222212207310100000000 -T12023011111196959922000403351120213110631120300000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119695991219990113WTT#T@TTT2221222222221012212110025821011700210000000000000000000000000000000000000000100001000000000000000000000000000000000000 -T320230111111969599120200723WT@@TBT9@22212212204398100000000 -T12023011111196961224200403941120313120000300000000000206540940000000000000000000000000000000000222222000000002229012 -T2202301111119696121219840123WT@B#TY9Z2222212222225012212120065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969612120090101WT@@9@#@#22222112204306100000000120070227WTTPWY@ZW22222122204308100000000 -T12023011111196970220600412561120313110766117540000015006540050000000000000000000000000000000000222222000000002229012 -T2202301111119697021219960318WTTZ@#0ZT2222212222223012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969702120210412WT@##YY0P22222112204398100000000120180411WTT0P@BTZ22222112204398100000000 -T12023011111196984223500409141120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119698421219920304WTTPY@YWB2222212222221012213110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000766 -T320230111111969842120140312WT@Y9@ZY022222112204301100000000 -T12023011111196984722000414462120423211034300000000000007710060000000000000000000000000000000000222222000000002229032 -T2202301111119698471219930724WT@9TPY9W2222211222222011212290095123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119698471219970107WT@9TPY9W2222212222222021209290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969847120180721WT@9TPY9W22222112204398200000000120160901WT@9TPY9W22222112204398200000000 -T12023011111196986624200404891120213110516112270000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119698661220000712WTTWW#ZB02221212222221012212110174321011816000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969866120190113WT@0#BPZP22212112204398100000471 -T12023011111196987320800414151120423111034300000000000807710030000000000000000000000000000000000222222000000002229072 -T2202301111119698731219870307WT@ZWP0Y@1222212222222011216190760023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119698731219860207WTTYBZ90B2122221222222021213190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111969873120160912WT@ZTY#TB11222222204398100000000120130712WT@#Y9YBP11222212204303100000000 -T12023011111196998120600402141120312110780300000000000005600300000000000000000000000000000000000222222000000942219012 -T2202301111119699811219980722WTT9B#B9W2222212222221012212110253521011804000000000000000000000000000000000000000000000000000000000000018600000000000000000000 -T320230111111969981120220311WTT9PPW9#22222222204398100000000120210318WTTT00P9P22222122204398100000000 -T12023011111197005423500410672120213210611300000000000003960990000000000000000000000000000000132222122000000002229032 -T2202301111119700541219580423WTT90BYZ@2222122222224012211920253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970054120110718WT@BT9WTP12221222209304900000000 -T12023011111197009721700403821120332110670300000000000005280420000000000000000000000000000000000222222000000002229022 -T2202301111119700972219870923WTT#9@YZB2222212122215012212110124813109900000000000000000000000000000000000000000000000000000000000000000000000418042400000000 -T320230111111970097120130201WTTZZP#ZP22222122204303100000000120100408WTTYWZY0Y22222112204306100000000 -T12023011111197011525800409911120433111034300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119701152219890713WTTYZYWBZ1122222222211012211120164413089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111111970115120070323WT@PT#9ZT11222222204306100000000 -T320230111111970115120150411WTT#BP@#W12222112204398100000000120100424WT@@0@Z0T22222112204305100000000 -T12023011111197014023500408281120423111032300000000000007710090000000000000000000000000000000000222222000000002229012 -T2202301111119701401219930911WT@0@PT902222121222221011212990045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119701401219940504WT@YWTWW02222212222221011212990105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970140120210201WT@0WZ0YP22221212204398100000000120200927WTT#PBPZP22221222204398100000000 -T12023011111197025623500407161110213110516300000000000001560010000000000000000000000000000000000222222000000002229012 -T2202301111119702561219990723WTT9T@#@W2221212222221012216110015921011804000000000000000000000000000000000000000000000000000000000000025000000000000000000000 -T320230111111970256120190901WT@#YBW@B22212212204398100000000 -T12023011111197028822000406191120423110972300000000016007710330000000000000000000000000000000000222122000000002229012 -T2202301111119702881219960313WT@PWTTPB2222212222222011216110332723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119702881219970901WTTPZ9#@#2222211222222021212290144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970288120200323WTTB0@BTY22222122204398100000000120190309WT@#@9#P922222112204398100000000 -T12023011111197032322000402891120213110493300000000000004480260000000000000000000000000000000000222222000000802219012 -T2202301111119703231219720107WTTP0ZTWB1222221222221012212110303021011806000000000000000000000000000000000000000000000000000000000000031900000000000000000000 -T320230111111970323120050401WTTPBB@Z#12222112204310100000000 -T12023011111197043323500411472120313210786300000000000006540140000000000000000000000000000000000222222000000002229032 -T2202301111119704331219840922WT@9TPY9W2222212222225012214210154523011400000000000000000000000000000000000000000000000000000000380000000000000000000000000000 -T320230111111970433120140113WT@9TPY9W22222122204303200000000120090212WT@9TPY9W22222112204308200000000 -T12023011111197049122000402321120212110516300000000120004170590000000000000000000000000000000000222222000000002229012 -T2202301111119704911219780708WTT#99B092221222222221012213110600023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970491520140913WTT9BWWP@22212212104302109140000 -T12023011111197053221700410451120313110766300000000000005840330000000000000000000000000000000000222222000000702219012 -T2202301111119705321219890427WT@Z9##9Z2222212222221012214110382221011805000000000000000000000000000000000000000000000000000000000000027600000000000000000000 -T320230111111970532120160212WT@ZW#99Z22222112204301100000000120100202WT@ZPT0P#22222122204306100000226 -T12023011111197056223700414331120533110835300000000000006540100000000000000000000000000000000000222222000000002229022 -T2202301111119705622219910713WT@YYBT9P1222212222221012205910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119705622219750504WT@YYBT9P1222221222223102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970562120120311WT@Z@0@WP12222122204304100000000 -T320230111111970562120210907WTTPWBZWW12222212204398100000000120150226WT@#B0BYB12222112204302100000000 -T12023011111197058724200414721120213110611300000000009005280530000000000000000000000000000000000222222000000002229072 -T2202301111119705871219830527WT@##@0@#2222212222221012209111070023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970587120080211WTT9@9T#@22222122204307100000000 -T12023011111197060824200414351120313110766300000000505906540160000000000000000000000000000000000222222000000002229012 -T2202301111119706081219830412WT@P9WTW@2222122222223012211110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970608120060313WTT#Y#0@@22221212204310100000000120050922WT@YTY@WZ12221222204312100000000 -T12023011111197061125100407671120312110516300000000300002980520000000000000000000000000000000198122222000001582219012 -T2202301111119706111219790418WT@P09WBP2222212222221012212110530723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000156 -T320230111111970611120080318WT@099ZBB22222122204307100000050120070905WTTY090@Y22222112204309100000050 -T12023011111197067620600414871120233120000300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111119706763219770401WT@WZ0YPW2222212222225012212110382213069900000000000000000000000000000000000000000000000000000000000000371600000000000000000000 -T320230111111970676120140127WTT9T#9PW22222122207302100000050 -T12023011111197068224200404891120313110766300000000000006540410000000000000000000000000000000000222222000000002229012 -T2202301111119706821219920312WT@TWYT0Z2221222222221012213110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970682120130313WT@@#ZTB#22222112204301100000000120110326WTT@TBPWW22222112204303100000000 -T12023011111197068823500402711120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111119706881219680701WTTP9YZ0Z2222211222223012214210065423011400000000000000000000000000000000000000000000000000000000240000000000000000000000000000 -T320230111111970688120060113WT@#@YZ9Y22222112204309200000000 -T12023011111197069524200404281120313110835104470000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111119706951219870907WTT@TWZ0Y2221222222221012213110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000006666 -T320230111111970695120180223WT@@PBWP022122212204398100000000120160724WT@B@P0ZW22122222204398100000000 -T12023011111197084525600411521120433120000300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111119708453219960109WT@YYBT9P2222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111970845420160308WT@YYBT9P22222122204398900000000 -T320230111111970845120200404WTT#P0#B@22222122209398100000000420180908WT@YYBT9P22222122204398900000000 -T12023011111197086120600400871120612111339300000000000002500280000000000000000000000000000000166122222000005932219072 -T2202301111119708611219830505WTTBPTB@#2122212222221012212121060023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000591 -T320230111111970861120050912WTT0W90WP21222222204310100000000 -T320230111111970861120080326WTT9@YZ#Z22212212204305100000000120070413WT@BPWWT021222212204307100000000 -T320230111111970861120180518WTT0BYY0#22222112204398100000000120140321WT@W9Y00@21222222204301100000000 -T12023011111197097520800411601120232110516300000000000004170810000000000000000000000000000000000222222000000002229022 -T2202301111119709752219800407WT@#WY00B2222212222211012212110075313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111970975120100327WTT9W@#WZ22222112204305100000050 -T12023011111197108920600407031120213110611300000000000005280020000000000070002000000000000000000222222000000002229012 -T2202301111119710891219930718WTTY@B9B#1222212222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111971089120180512WTTZB#ZBY22212222204398100000000 -T12023011111197111220600409771110213110557300000000000004420250000000000000000000000000000000000222222000000002229072 -T2202301111119711121219870721WTTB0TYZW2222212222223012216110710023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111971112120120912WTTZTZY@Y22222112204303100000000 -T12023011111197117025900406081120212110602300000000000003970070000000000000000000000000000000000222222000001312219042 -T2202301111119711701219990405WT@Y90BP@2122222222221012211110006023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000179 -T320230111111971170120220308WT@#0BTW021222222204398100000000 -T12023011111197121120600414252120433210846300000000000006540870000000000000000000000000000000000222222000000002229022 -T2202301111119712113219660518WTT@WPY0P2222121222222012212910035713079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111971211120040323WTT0##9BW22221222207311900000000 -T320230111111971211120100527WTT9P#0##22221222206306900000000120090526WT@9#PBW#22221212206307900000000 -T12023011111197156424700403421120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111119715641219680227WTTTPBZ@Z2222212222224012215210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111971564120050922WTTYTTZPP22222122204309200000000 -T12023011111197167724100414321120313110835300000000080006540030000000000070003000000000000000000222222000000002229012 -T2202301111119716771219800921WT@PZ9P@P1222212222221012206210184223011400000000000000000000000000000000000000000000000000000000210000000000000000000000000000 -T320230111111971677120090726WT@Z@99T#12222212204306100000000120060301WTTY9@#@@12222212204309100000000 -T12023011111197175322700408351120213110507300000000000005280130000000000070003000000000000000000222222000000002229012 -T2202301111119717531219920127WT@ZTP09P2222212222221012212110144623011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111111971753120170912WT@90Y@B@22222112204398100000000 -T12023011111197189921700407751120423111034300000000140007710040000000000045003000000000000000000222222000000002229012 -T2202301111119718991219790427WTT@##W0T1222221222222011216190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119718991219930311WT@9WZ0WZ1222222222222021212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111971899120190712WTTWP90#T12222212204398100000000120160902WT@90@09#12222222204301100000000 -T12023011111197190524200410001120313110826112270000000006540340000000000000000000000000000000000222222000000002229072 -T2202301111119719051219880326WTTPZY9YZ2221222222221012211110790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111971905120190305WTTB0#W0@22212212204398100000000120070504WT@0BTZ#T22212222204309100000000 -T12023011111197195125900402721120533110939300000000006907710550000000000000000000000000000000000222222000000002229022 -T2202301111119719512219840927WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111971951120070923WT@PZ###@12222212204309100000000120040902WT@9P#Z#T12222212204310100000000 -T320230111111971951120190523WTTZPYY@B12222212204398100000050120150105WTT9TZY9T12222122204301100000050 -T12023011111197203423700414331120633111034300000000070007710070000000000000000000000000000000000222222000000002229022 -T2202301111119720342219890323WTT@PPZTP1222222222221012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119720342219970921WT@YYBT9P1222211222221102210990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111972034120090913WTTZP0#0@12222112204308100000000120070924WTT00W#0B12222122204310100000000 -T320230111111972034120220407WT@#999@@12222112204398100000000120130421WTTTWPY0Y12222122204304100000000 -T12023011111197205324200414351120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111119720531219960722WTT#0W#Z@2222122222221013213190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111197211020600400801120413120000300000000000007710180000000000000000000000000000000000222222000000002229012 -T2202301111119721101219860309WT@Z#@Y@02222212222223012212110194123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111972110120130702WT@@YTZ9T22222112204301100000000 -T320230111111972110120190923WTT0#W0W022222122204398100000000120180523WTT#0Y#TT22222112204398100000000 -T12023011111197215822000411281120213110560300000000000005280360000000000000000000000000000000000222222000000002229012 -T2202301111119721581219960718WTTB9W0PT2221222222221012211110362421011800010000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111972158120170711WT@0ZBZWT22212222204398100000000 -T12023011111197216024500409791120413110939300000000000503460270000000000000000000000000000000423222122000000022219042 -T2202301111119721601219940118WTT@BT9T@2122222222221012209120035723011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111972160120120521WT@9W0ZT921222222204303100000000 -T320230111111972160120180712WTTWYYBW@21222212204398100000000120160914WTT0TWWZZ21222212204398100000000 -T12023011111197219124100410041120433110766300000000000006540180000000000000000000000000000000000222222000000002229022 -T2202301111119721912219880326WT@YYBT9P1222212222221012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111972191120120505WT@BZWB0012222112204304100000000 -T320230111111972191120220118WT@Y9Y0@012222212204398100000000120210518WTT9#0Z0012222122204398100000000 -T12023011111197234824500405781120233110493300000000000004170960000000000000000000000000000000000222222000000002229022 -T2202301111119723483219530907WT@@990B02222212122224012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001174000000000000 -T320230111111972348120050327WTT0@9@#@22222122206309100000000 -T12023011111197260922000400461120233120000300000000160004170530000000000000000000000000000000000222222000000002229022 -T2202301111119726093219570105WT@@BP99B2222212222225012212110006011069936000000000000000000000000000000000000000000000000000000000000350200000000000000000000 -T320230111111972609120170911WT@#P@Y0Z12222122206398100000050 -T12023011111197269524900404261120233120000113020000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111119726953219780714WTTPPTZ0T1122222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000645000000000000000000000 -T320230111111972695120200713WT@TPPYBY12222222207398100000000 -T12023011111197270424700401011120213110598300000000023705280070000000000000000000000000000000000222222000000002229012 -T2202301111119727041219810427WTT090ZWZ2222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111972704120220422WTTZPB@T022122112204398100000000 -T12023011111197272423500410671120323110766300000000070006540060000000000070002000000000000000000222222000000002229012 -T2202301111119727241219760214WT@ZTBZYZ2212211222222011216190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119727241219940111WTTTY0TB92222212222222021212190075322011900000000000000330004000000000000000000000000000000000000050000000000000000000000000000 -T320230111111972724120160912WTTBPP9WW22122112204398100000000 -T12023011111197274222000404691110213110516300000000000003910010000000000000000000000000000000000222222000000002229012 -T2202301111119727421219760423WTT0ZBPBT2222122222222012203210332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111972742120070108WTT@#W0#T22221222204308200000000 -T12023011111197276922000411131120312110826300000000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111119727691219870408WT@0##@WY2222212222221012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111972769120210427WTTZ9#ZBY22212122204398100000000120160411WTT#@TW0T22212212204398100000000 -T12023011111197284124200404891120612111365300000000120010090250000000000070020000000000000000000222222000000002229072 -T2202301111119728411219870507WT@0BTTP@2221222222221012216110870023011800000000000000000002000000000000000000000000000000000000250000000000000000000000000000 -T320230111111972841120060918WTT9BWTT022212212204310100000000 -T320230111111972841120120902WT@9@WYYB22212212204304100000000120070912WT@WBZT#T22212212204309100000000 -T320230111111972841120160104WTTTTWBB@22212222204398100000100120140514WTT##TBB#22212212204302100000000 -T12023011111197287520800411931120113110376300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111119728751219990708WT@W90TZW2212222222221013212190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111197300925900405251120213110610300000000000305010080000000000000000000000000000000000222222002600012219012 -T2202301111119730091219780902WT@Y@T0##2122221222221012212110095123010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111973009120080711WTTB##B0Y21222222204307100000000 -T12023011111197307024200403941120212110611112830000000005280540000000000000000000000000000000000222222000000002229012 -T2202301111119730701219920402WT@YTPT0W2222212222225012212110540623011700000000000000000000000000250000000000000000000000000000000000000000000000000000000181 -T320230111111973070120190327WTTWZB@B@22212122204398100000050 -T12023011111197311124200413971120213110631300000000100005280930000000000000000000000000000000000222222000000002229072 -T2202301111119731111219710327WTTP@WP#P2222212222221012210110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111973111120110927WTTBB0T9W22222122204305100000000 -T12023011111197311320800410751120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119731133219630423WT@WW9Z002122222222223012216110392113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000800 -T320230111111973113120130321WTTPPZW@P21222212206302100000000 -T12023011111197313024200414851120213110598113820000003005280040000000000000000000000000000000000222222000000002229042 -T2202301111119731301220000421WTTWYYPBY2221222222221012213110006021011733000000000000000000000000000000000000000000000000000000000000308200000000000000000000 -T320230111111973130120200112WTTYY0Y9P22212212204398100000000 -T12023011111197316622000400811120712111359300000000020010480390000000000000000000000000000000000222222011600012219012 -T2202301111119731661219900912WT@@@0T#92222212222223012212210510923011700000000000000190200000000000000000000000000000000000000050000000000000000000000000000 -T320230111111973166120120308WTT9BP@ZT22222122204304200000000120110727WT@0T#W9022222112204305200000000 -T320230111111973166120160113WT@Y#B@Y022222112204398100000000120150924WTT9Z90TP22222122204302100000000 -T320230111111973166120220113WT@@9Y9ZT22222222204398100000000120210427WTTBW@P9T22222222204398100000000 -T12023011111197328722000404841120233120000300000000000004170110000000000000000000000000000000000222222000000002229022 -T2202301111119732873219560709WT@BBTB0T2221222122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002504000000001700 -T320230111111973287120180422WTTWW9YTW22212212206398100000000 -T12023011111197334921000405411120333120000300000000000005280660000000000000000000000000000000000222222000000002229022 -T2202301111119733493219600918WT@P#TTZB1222221122222012206210006013069900000000000000000000000000000000000000000000000000000000000000000000002026000030060000 -T320230111111973349120100723WT@#Z@YY@12222212206305100000000120090426WT@BBTT9Y12222212206306100000000 -T12023011111197340424200403941120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119734042219780423WTT9@9@YZ2221222222215012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111973404120080109WTTPWP9W#22222122204309100000000 -T12023011111197349824700409381120323110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111119734981219880118WT@@@#9@W2222211222222011212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119734981219890126WTT#@WY9Y2222212222222021212290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111973498120150313WT@TB0YWT22222122204398200000000 -T12023011111197352422000414462120113210376300000000000004170070000000000000000000000000000000000222222000000002229032 -T2202301111119735241220000127WT@@0#0#Y2222122222221013212990085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111197361124700409321120412111034300000000000007710470000000000000000000000000000000000222222000000002229012 -T2202301111119736111219850723WT@YYPP9P2222212222221012213110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111973611120050111WTT9ZT#0Y22222122204310100000000 -T320230111111973611120120712WTTZ00W0@22222122204301100000000120100904WT@#9TBP022222112204305100000000 -T12023011111197361522000402321110312110740300000000002704210160000000000000000000000000000000000222222000001482219012 -T2202301111119736151219870712WT@W9@YT92221222222225012213210174321011700170000000000000000000000050000000000000000000000000000050000124800000000000000001913 -T320230111111973615120180712WT@#TTY@P22212212204398100000000120150712WT@TPBW@T22212222204302200000000 -T12023011111197362322000409971120213110611300000000150005280110000000000000000000000000000000000222222000000002229012 -T2202301111119736231219930127WT@W@#PWZ2212222222222012212290124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111973623120220901WT@9W##PT12222222204398100000000 -T12023011111197368324700406741120423111034300000000005007710130000000000000000000000000000000000222222000000002229012 -T2202301111119736831219760418WTTY9T9@W2222212222222011216110144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119736831219790224WT@ZB9#ZP2222211222222021213190055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111973683120170907WTTZTTY##22222112204398100000000120120502WT@PWT09T22222112204304100000000 -T12023011111197376324200408391120113110376300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111119737631220010226WT@@TWTZT2222122222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111197393324200414721120412110939113820000000006540270000000000000000000000000000000000222222000000002229012 -T2202301111119739331219870422WT@00PT@B2222212222221012209110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111973933120080127WT@W@#0P922222122204307100000000 -T320230111111973933120210421WT@TW@@@T22122222204398100000000420130409WTTBB9PBB22222112104303109140000 -T12023011111197395425200407301120233120000300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111119739543219480723WTTT#0PZ02222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001591000000000000 -T320230111111973954120110914WTTW9#00#22222122206305100000000 -T12023011111197404324200414021120412110939300000000011704620190000000000000000000000000000000308122222000000012219072 -T2202301111119740431219830426WTT0@#ZBP2221222222221012212110960023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974043120070923WT@BWTY@@22212212204309100000100 -T320230111111974043120130305WT@#BTTPY22212222204302100000000120110421WT@T0PWZ922212222204305100000000 -T12023011111197405124200410371120333120000116740000000005280340000000000000000000000000000000000222222000000002229022 -T2202301111119740513219690114WTT9TB0@92222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000470500000000000000000000 -T320230111111974051120190904WT@@ZW9ZT22222112206398100000000120150405WT@W9P#ZZ22222122206301100000000 -T12023011111197410323500405981120213110611300000000009105280120000000000000000000000000000000000222222000000002229012 -T2202301111119741031219850113WT@P0WP9B1222211222221012213110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974103120080413WTTPW0Z##12222122204308100000050 -T12023011111197416122000405321120212110611300000000002502540270000000000000000000000000000000000222222000002742219012 -T2202301111119741611219800318WT@W0P#TB2221221222221012212110283223011400000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T320230111111974161120140908WT@0TWPZW22212222204301100000274 -T12023011111197421325900402831120523111199300000000000008880270000000000070016000000000000000000222222000000002229072 -T2202301111119742131219870421WT@W0@9BW1222222222221011211110670023011800000000000000000004000000000000000000000000000000000000360000000000000000000000000000 -T2202301111119742131219870112WT@B9#ZPT1221211222221011210190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974213120040509WTTYYZPZT12222212204311100000000 -T320230111111974213120110912WTT#B0YZW22222122204305100000000120100101WTT#@09ZT12212212204305100000000 -T12023011111197427624200400961120213110598120590000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111119742761220010201WTTBPYT#P2211122222221012211110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974276120200111WTT@YZZ9#22112222204398100000000 -T12023011111197429023700414331120633111171300000000000008880540000000000000000000000000000000000222222000000002229022 -T2202301111119742902219980212WT@YYBT9P1222212222221012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974290120130912WT@@YZ0@012222222204302100000000 -T320230111111974290120170721WT@Y@W0PY12222112204398100000000120160914WTT9WYW@#12222122204398100000000 -T320230111111974290120220101WT@0#0P#Z12222112204398100000000120200408WTTBZ#9P#12222122204398100000000 -T12023011111197441724200404701120423111034300000000200007710020000000000000000000000000000000000222222000000002229012 -T2202301111119744171219800418WTTP00Z#Y2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119744171219830923WTTYTT0TW2222212222222021212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974417120200327WTTWBYWWT22222122204398200000000120140927WT@9TPY9W22222122204302200000000 -T12023011111197445221000411361120212110587300000000000402880520000000000000000000000000000000192122222000000482219072 -T2202301111119744521219750914WTT099ZZB2222212222221012212110780021010204000000000000000000000000000000000000000000000000000000000000018500000000000000000000 -T320230111111974452120050512WT@Z##ZP922222112204311100000000 -T12023011111197445424700406701120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119744543219700212WT@TZWB0B2122222222222012216110035713069900000000000000000000000000000000000000000000000000000000000000963900000000000000000000 -T320230111111974454120040327WT@ZP9TB@21222212207311100000050 -T12023011111197453322000407411120233110376300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119745333219470123WT@YYBT9P1222222222224012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974533120040301WT@WZ0@#W12222222206312100000000 -T12023011111197460922000414461120213110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111119746091219940505WT@YWTY092222122222221012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974609120170313WT@#B@BTT22212222204398100000000 -T12023011111197461922000411551120433110939300000000000006540150000000000000000000000000000000000222222000000002229022 -T2202301111119746192219930901WT@Y9@WTT2221222222211012212110095113089900000000000000000000000000000000000000000000000000000000000000000000000000079700000000 -T320230111111974619120130423WTTB@T#WB22212212204304100000050 -T320230111111974619120210327WT@@BPPP#22222222204398100000000120190904WTT#YPBT922212222204398100000000 -T12023011111197472120800414651120512111116129880000000008880180000000000000000000000000000000000222222000000002229072 -T2202301111119747211219870321WTT9Y9TPT2221222222221012212121170023010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111974721120150323WTT#0Z09Y22212212204398100000000120100323WTT#9B@@Y22212222204304100000000 -T320230111111974721120200712WT@B0YZ#W22212222204398100000000120150323WT@9ZWYZ922212222204398100000000 -T12023011111197487421000410731120423110939300000000250007710050000000000000000000000000000000000222222000000002229012 -T2202301111119748741219900722WTT#@99TP2222211222222011215290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119748741219880322WTTZWZY9#2222212222222021215290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974874120180112WT@9B0TZW22222122204398200000000120160324WTTZ9WBZ922222112204398200000000 -T12023011111197490822000408891120213110598300000000100005280070000000000000000000000000000000000222222000000002229012 -T2202301111119749081219900723WT@0#WZYT2222212222222012298210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974908120220207WT@9TPY9W22222112204398200000000 -T12023011111197491220600414771120312110747300000000000506540550000000000000000000000000000000000222222000000002229012 -T2202301111119749121219970227WTT#@9B9Z2222212222221012212110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111974912120210504WTTZ@0ZY922222112204398100000050120150323WT@BZ9ZW922212212204398100000050 -T12023011111197503622000400461120412110893300000000030007530320000000000000000000000000000000000222222000000182219072 -T2202301111119750361219920423WT@@Y90B91222212222221012210110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000017 -T320230111111975036120090413WTTPZ0YWZ22222112204306100000100 -T320230111111975036120210424WTTZT0#BW12222212204398100000000120110907WT@#0Z@Y022222112204304100000000 -T12023011111197506325600411521120823111691300000000000412890250000000000000000000000000000000000222222000000002229012 -T2202301111119750631219850526WTTW0ZB0P2222222222222011212110194123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119750631219800323WTT#ZB9YP2222211222222021216190134723011800000000000000000000110002000000000000000000000000000000020000000000000000000000000000 -T320230111111975063120120102WTT#B#TBW22222212204303100000000120100408WT@YT#ZWW22222222204305100000000 -T320230111111975063120160104WT@B@YPW022222222204398100000000120140201WT@@0#TP922222212204301100000000 -T320230111111975063120210114WT@Z#BW@B21222222204398100000000120190327WTTBWW0BY21222212204398100000000 -T12023011111197512721000411361120523110930300000000000008880280000000000000000000000000000000000222222000000002229012 -T2202301111119751271219910721WT@YW#PBZ2122221222221011212190263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119751271219950423WTT0P00ZW2122222222221011210190243623011800000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111111975127120110407WTTP#W#Z#21222212204304100000000 -T320230111111975127120200409WTTW0@0B@21222222204398100000000120150709WT@9@PWTY21222212204398100000000 -T12023011111197519322000411981110533110516300000000000003910010000000000000000000000000000000000222222000000002229021 -T2202301111119751932219950312WT@YYBT9P2222221222222012208990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119751932219980426WT@YYBT9P2222222222222102206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111975193420160414WT@YYBT9P22222212204398900000000 -T320230111111975193120210726WT@9TPY9W22222122204398100000000120210726WT@9TPY9W22222122204398100000000 -T12023011111197523322000406191120313110740300000000000006540050000000000000000000000000000000000222222000000002229072 -T2202301111119752331219860204WT@WP@00Z1222212222221012212110910023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111975233120150123WT@@WTB@#12212212204301100000000120110405WT@TW#W@Y22212222204306100000100 -T12023011111197527422900405641120533110745300000000000006540370000000000000000000000000000000000222222000000002229022 -T2202301111119752742219720422WT@YYBT9P1222222222221012206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119752742219570504WT@YYBT9P1222221222221022206990006011079904000000000000000000000000000000000000000000000000000000000000019500000000000000000000 -T320230111111975274120080308WT@T99T9#22222122204306100000000 -T320230111111975274120120308WT@9PP@Z922222212204302100000000120110318WT@TPWPW#22222222204303100000000 -T12023011111197528725900402721120233110516300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119752873219900307WTTP@ZY#01222221222211012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111975287120070218WT@Z#PW#T12222112207309100000000 -T12023011111197539022000411552110113210376300000000000003490010000000000000000000000000000000000222222000000002229032 -T2202301111119753901219990913WT@YZTBP92222122222221013209990144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111197544223500414281120233120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111119754423219830127WTTTWZ09T2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111975442120160701WT@TZ00BT22222122207398100000000 -T12023011111197544522000413731120433110939114010000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111119754453219710913WTTW0Z9WP1222222222225012213110045613069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111975445520050101WT@WZ90YY12222112106311109140000 -T320230111111975445120220512WT@B@P0#Z12222222206398100000000120210518WTT0TTB9P12222222206398100000000 -T12023011111197548720600402141120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119754872219820912WT@#P#ZY#2222212222211012212120800013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111975487120160427WTTTYP@0922221222204398100000000 -T12023011111197556322000410051120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119755633219370427WTT0T99#T2222222122224012208110015913069900000000000000000000000000000000000000000000000000000000000000000000000325000000000000 -T320230111111975563120160412WT@99WZW@22221212206398100000000 -T12023011111197559620600401641110233110540300000000000001880010000000000000000000000000000000000222222000000002229021 -T2202301111119755963219670724WTTZ@Y#0Z2222212122215012207110600013069900000000000000000000000000000000000000000000000000000000000000000000000613032100000000 -T320230111111975596120060723WTTWT090P22212212206310100000000 -T12023011111197572224200414021120333120000300000000000005280900000000000000000000000000000000000222222000000002229022 -T2202301111119757223219780318WT@0#0TPZ2221221222221012215110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111975722120120709WT@TW#BZT22212212207303100000000120090913WT@Y0YP#Z22212212207306100000000 -T12023011111197572622000411551120433110611300000000000004210590000000000000000000000000000000000222222000001072219022 -T2202301111119757262219960126WT@YYBT9P1222212222222012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119757262219890121WT@YYBT9P1222211222222022212990006011079923000000000000000000000000000000000000000000000000000000000000140000000000000000000000 -T320230111111975726120220727WT@YTW@##12222122204398100000000120140127WTTPZPT@Z12222122204398100000000 -T12023011111197576620200409311120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119757663220000222WTTWW@TWB1222212222221012212110006011069941000000000000000000000000000000000000000000000000000000000000247000000000000000000000 -T320230111111975766120220713WT@9TPY9W12222122207398100000000 -T12023011111197579320800411931120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119757932219840326WTTZZT0BB2222212222215012210110045613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111975793120100124WT@BWW0WZ22222122204304100000303120080307WTT#BWT0B22222112204305100000145 -T12023011111197589420600407031120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119758942219870726WT@YZY0ZW2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111975894120150412WTTPTT00022222112204302100000083120090522WT@W@W##@22212212204307100000016 -T12023011111197604220400409801120113110376300000000080004170040000000000000000000000000000000000222222000000002229012 -T2202301111119760421220030924WT@9ZYZT@2222212222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111197605524700408091110323110835300000000007806540010000000000000000000000000000000000222222000000002229012 -T2202301111119760551219930101WT@BPWT0@2222212222222011216190025821011816000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119760551219940409WT@YP@Y@B2222212222222021212190025821011936000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111976055120200327WTT9ZTWPP22222112204398100000000 -T12023011111197610321700406141120233110516300000000000004170730000000000000000000000000000000000222222000000002229022 -T2202301111119761032219830911WTTBTY#Y02222212222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111976103120140411WT@B0W0#Z22222112204398100000000 -T12023011111197619821000414221110323110835300000000002706540020000000000000000000000000000000000222222000000002229012 -T2202301111119761981219970512WTT#WWWZ#2222212222222011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119761981219980327WTT##TTT92222211222222021212190025821011951000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111976198120200413WT@W#TBB@22222112204398100000000 -T12023011111197620424200403461120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111119762045219860323WT@09TY092222212222223012216110710011069941000000000000000000000000000000000000000000000000000000000000505000000000000000000000 -T320230111111976204120070421WT@#B@WBP22222122208309100000000 -T12023011111197623722700408491120313110771300000000000503920410000000000000000000000000000000261122222000000012219012 -T2202301111119762371219850112WTTZ@T0TP2222212222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000001250 -T320230111111976237120110714WTTY9Y@BP12222122204304100000188120080704WT@0ZY0@#12222122204307100000188 -T12023011111197624525600413441120312110778300000000002906540590000000000000000000000000000000000222222000000002229072 -T2202301111119762451219930724WTTY0@ZT@1221222222221012216110670023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111976245120220327WT@9TPY9W12222112204398100000000120160423WT@PZPYW012212212204398100000000 -T12023011111197628320600414771120232110516300000000000004170880000000000000000000000000000000000222222000000002229022 -T2202301111119762832219660401WTTYYZ9BT2222211222215012212110840013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111976283120070721WT@W#@0ZP22222112204308100000000 -T12023011111197633120800411991120433120000300000000031306540650000000000000000000000000000000000222222000000002229022 -T2202301111119763313219630324WTTZWPWY#2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111976331120060913WT@Y@ZTZ922222122206310100000000 -T320230111111976331120120126WT@YB#0PY22222122206304100000000120080704WTTP0#9PP22222122206307100000000 -T12023011111197659422700401571120313110776300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111119765941219810704WTT9@BZW#2222212222223012212110055523010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111976594120130924WT@0YBBW#22222112204303100000000120080914WT@Y@W9#W22222122204305100000000 -T12023011111197661822000414461110623111339300000000000004230010000000000000000000000000000000000222222000000002229012 -T2202301111119766181219890201WT@9TPY9W2222212222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119766181219830324WTT999P#92222211222222021211290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111976618120120323WT@9TPY9W22222112204305200000000120100324WT@9TPY9W22222112204306200000000 -T320230111111976618120200309WT@9TPY9W22222122204398200000000120170401WT@9TPY9W22222112204398200000000 -T12023011111197666523500402711120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111119766651219870313WTTZWW#@W2222211222222011216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119766651219930112WT@ZB#@@Z2222212222222021215290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111976665120150701WT@#T#90922222122204398200000000 -T320230111111976665120210304WTT90WZ@W22222112204398200000000120190712WTT09Z90#22222122204398200000000 -T12023011111197669224700405901120233120000300000000000004170620000000000000000000000000000000000222222000000002229022 -T2202301111119766923219810913WT@#WP#PY2222212222221012212110233713069900000000000000000000000000000000000000000000000000000000000000520000000000000000000000 -T320230111111976692120170413WT@W#9WT922222122206398100000000 -T12023011111197680422000409871120433110939300000000000006540470000000000000000000000000000000000222222000000002229022 -T2202301111119768042219860126WTTPYB0T#2221222222211012210120025813089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111976804120070926WTTWYZT##22212222204308100000000 -T320230111111976804120160309WTT0#TTPW21222222204398100000000120140423WTT@YB9@P22212212204301100000000 -T12023011111197686623500414281110613111211300000000000000850010000000000000000000000000000000000222222000000002229012 -T2202301111119768661219940326WTT9PB@BW2222122222222012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119768662219920123WT@YYBT9P2222121222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111976866120160123WTT0YTW##22221212204398100000000120150223WT@TZBWZW22221222204398100000000 -T320230111111976866120210108WTTYTW@WP22222212204398100000000120190721WT@T#PZW022221212204398100000000 -T12023011111197692625600414551120312110765116940000064806540870000000000000000000000000000000000222222000000002229072 -T2202301111119769261219820426WTTZZ@0@B2222212222225012216110880023011400000000000000000000000000000000000000000000000000000000260000000000000000000000000002 -T320230111111976926120190201WT@W9YTT#22222112204398100000000120130322WTTBYYTW@22222122204302100000000 -T12023011111197695624700407521120323110740300000000000505640040000000000000000000000000000000000222222000000902219012 -T2202301111119769561219840522WT@Z#YT#T2122222222222011212190105023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000089 -T2202301111119769561219750412WTTT@BW#B2222211222222021212190055521011813000000000000000000000000000000000000000000000000000000000000099200000000000000000000 -T320230111111976956120210401WT@#ZB#T@21222212204398100000000 -T12023011111197701321700407751120213110599300000000000005060060000000000000000000000000000000000222222000000222219012 -T2202301111119770131219860408WTT@TPY@02222212222221012210110303023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000021 -T320230111111977013120220126WT@#ZZ0BW22222112204398100000000 -T12023011111197720824200407311120633111034300000000090007710190000000000000000000000000000000000222222000000002229022 -T2202301111119772082219840122WT@YYBT9P1222222222222012212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119772082219820909WT@YYBT9P1222221222222022212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977208120100721WT@T9#0WW12222112204306100000000120080423WTT@0YTPZ12222122204308100000000 -T320230111111977208120140921WTT#@PT9P12222222204302100000000120120404WTTYY@YB#12222112204304100000000 -T12023011111197724024200414721120413110725300000000000006210200000000000000000000000000000000000222222003200012219012 -T2202301111119772401220000312WT@T00YTP1222222222221012210110233723010100000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111977240120170126WT@99B@PB12222212204398100000000 -T320230111111977240120230422WT@9TPY9W12222122204398100000000120210104WT@P9YW@P12222112204398100000000 -T12023011111197726523500407161120213110364300000000000003160290000000000000000000000000000000211122222000000012219072 -T2202301111119772651219860311WTT9BPTY02222212222221012216110770023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977265120120126WTTYT0TBP22222122204303100000000 -T12023011111197736824200414351120233110446300000000000004170400000000000000000000000000000000000222222000000002229022 -T2202301111119773683219740326WT@BPBZBP2222212222222012213190860013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977368120050423WTTB0B0@Z12222112207312100000000 -T12023011111197740125900410241110233110611300000000000003490210000000000000000000000000000000000222222000001102219021 -T2202301111119774012219890211WTTY9@#9@1222222222221012211910154513079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977401120120208WT@W9W##B12222212204305100000000 -T12023011111197740622000407411110213110611300000000000004760250000000000000000000000000000000154222221000000002229012 -T2202301111119774061219900126WTTWY@99T2222212222221012210110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977406120110112WTTZB@YYT22222122204304100000000 -T12023011111197747525600414551120233120000114440000060004170430000000000000000000000000000000000222222000000002229022 -T2202301111119774755219920123WT@0W9WZ#2222212222221012212110213913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977475120190123WTT9WW00#22222112209398100000000 -T12023011111197755924200402501120413111034115970000000007710130000000000000000000000000000000000222222000000002229012 -T2202301111119775591219870522WT@#BZ#WZ2221222222221012216110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977559120120107WT@0Y9T0922212222204304100000000 -T320230111111977559120170902WTTTZPZ#Y22212222204398100000000120140713WTTBZTT9P22212222204302100000000 -T12023011111197766325600412851120433120000300000000000006540290000000000000000000000000000000000222222000000002229022 -T2202301111119776633219480308WT@ZPZBTP2222221222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977663120130407WT@YT0WY#22221212206303100000054 -T320230111111977663120180927WT@T0YYBB22221222206398100000000120150527WTT9#9Z9@22221212206301100000000 -T12023011111197772525600411701120413110982300000000008907710110000000000000000000000000000000000222222000000002229012 -T2202301111119777251219660721WT@Z#PBWP1222222222223012216110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977725120050124WT@P9#WYP12222222204312100000108 -T320230111111977725120080904WT@@Z@P@Z12222212204308100000108120060304WT@000#0T12222222205308100000000 -T12023011111197773925200400201120333110704300000000000005280820000000000000000000000000000000000222222000000002229022 -T2202301111119777393219630907WTT99PWYY2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977739120100721WTTWYZ#@Y22222122206304100000000120080723WT@#B##BY22222122206306100000000 -T12023011111197775322000404841120432110939300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119777532219820705WTT0BBBB92221222122211012212110900013109900000000000000000000000000000000000000000000000000000000000000000000000603033100000000 -T320230111111977753120050423WTTZB0ZYZ22212212204311100000050 -T320230111111977753120160721WTTWYW@B@22112212204398100000005120100421WTTPZ0YYP22212212204307100000000 -T12023011111197775825600411521120232110516300000000001504170990000000000000000000000000000000000222222000000002229022 -T2202301111119777582219670423WTTP9B@ZP2122222222211012212110392113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000010 -T320230111111977758120050421WTT#Y##0021222222204310100000047 -T12023011111197777324200404891120433110893300000000000006540110000000000000000000000000000000000222222000000002229022 -T2202301111119777733219810424WT@WW#Z@Z2222122222225012212120204011069932000000000000000000000000000000000000000000000000000000000000315700000000000000000000 -T320230111111977773120100423WTTZW@#ZY22221212209306100000000 -T320230111111977773120180326WT@@@0ZB022221212209398100000000120110204WT@W@W#@B22221222209305100000000 -T12023011111197786824200404421120213110548300000000039605280200000000000000000000000000000000000222222000000002229042 -T2202301111119778681219870302WTT09BBZB2221222222221012214110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111977868120050413WT@00TTW922212212204312100000000 -T12023011111197796921700407752120113220000300000000000004170040000000000000000000000000000000000222222000000002229032 -T2202301111119779691219880102WT@@P9TZW2222122222221013208990055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111197797622000411281120532111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119779762219690923WT@BZYBW#2222222222212012212190600013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111119779762219590923WTT##Z#9T2222221222212022208190431713089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111111977976120040314WT@@TYPW#22222212204311100000000 -T320230111111977976120080504WTTWZ#TY022222212204308100000000120060118WT@PZB@0922222222204311100000000 -T12023011111197798925000406021120413111034300000000261507310360000000000000000000000000000000308222221000000002229012 -T2202301111119779891219840923WTTW#T@B91222222222223012213110352523010900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111977989120050126WTTZ@PW0Z12222212204312100000000 -T320230111111977989120160218WT@W00YT#11222212204398100000000120140209WT@#99WT011222212204302100000000 -T12023011111197804220300401721120723111480300000000176111650110000000000000000000000000000000000222222000000002229072 -T2202301111119780421219870114WTT@ZTYWT2222222222222011216110720023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119780421219790318WT@YW00ZB2222211222222021216190720023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978042120050327WT@##00BT22222122205310100000000 -T320230111111978042120120707WT9TT@ZB@22222222204304100000000120080107WTTYZZPP@22222222204306100000000 -T320230111111978042120160909WT@BB#0PZ22222212204398100000000120130721WT@0W@#0T22222222204398100000000 -T12023011111197808023500411471120512111116148920000090008880180000000000000000000000000000000000222222000000002229012 -T2202301111119780801219900511WTTYPP#TT1222212222221012216120342621010100180000000000000000000000000000130000000000000000000000000000106700000000000000000000 -T320230111111978080120170312WTTTY#W0@12222112204398100000000120120112WTT9@Z9PY12222112204304100000000 -T320230111111978080120220123WTTZTW#0#22222112204398100000000120200122WTTW#Z@9B12222112204398100000000 -T12023011111197812824500405941120233110376300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119781282219810402WT@YYBT9P1222212222225012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978128120050413WT@W0PWZW12222122204310100000000 -T12023011111197813323500404531120233110516300000000000004170450000000000000000000000000000000000222222000000002229022 -T2202301111119781332219890724WT@#P0TYT2222212122211012216110006013109900000000000000000000000000000000000000000000000000000000000000000000000568036600006495 -T320230111111978133120170413WT@TTWTT022222122204398100000000 -T12023011111197817623500402711120423111034300000000011007710100000000000000000000000000000000000222222000000002229012 -T2202301111119781761219980314WT@TPB00@2222212222222011212290114923011800000000000000000000000000000000000000000000000000000000180000000000000000000000001350 -T2202301111119781761219950113WTTWTZ#ZY2222211222222021212290114923011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111978176120190221WTTY0@#P922222212204398200000000120180401WT@0Z90PP22222112204398200000000 -T12023011111197819923500410671120213110618300000000000005280350000000000035002000000000000000000222222000000002229012 -T2202301111119781991219990121WTTT090P92222212222221012212110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978199120190921WTTPWZP0#12222122204398100000000 -T12023011111197821624500405781120333110704300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119782162219670112WT@W0Y##W2222212222211012213190810013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111119782162219730318WT@ZT9#@02222211222211102212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111978216120050914WT@BBYP@W22222112204311100000000 -T12023011111197823124700409321120213110611300000000000005280320000000000000000000000000000000000222222000000002229012 -T2202301111119782311219870413WT@@PT90Z2222212222221012214210451523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111978231120140927WT@BYBW#B22222112204302100000000 -T12023011111197830623900408291120233110548300000000000004170840000000000000000000000000000000000222222000000002229022 -T2202301111119783063219630714WT@Z@9PT92122222222223012213110233711069904000000000000000000000000000000000000000000000000000000000000027800000000000000000000 -T320230111111978306120090721WTT#ZBYWT21222222206306100000000 -T12023011111197832924100414321120333110598300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111119783292219960427WT@ZP9#@@1222212222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978329120180122WTTPB0ZW@12222122204398100000000120150507WTTBTW@@B12222122204301100000000 -T12023011111197838722600413111120513111116300000000030008880100000000000000000000000000000000000222222000000002229012 -T2202301111119783871219830907WT@TPBBW#2222212222223012213120223823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978387120080302WT@0BTY0W22222112204307100000000120050927WTT9Z00TB22222122204311100000000 -T320230111111978387120160127WT@0WPY@Y22222112204398100000000120120108WTTY@T0ZZ22222122204303100000000 -T12023011111197842425600411521120213110576300000000000005280500000000000000000000000000000000000222222000000002229012 -T2202301111119784241219810207WT@0B@9#W2222212222221012216110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978424120130311WT@PP#@ZP12222112204303100000050 -T12023011111197845624200403511120213110576300000000002305280050000000000000000000000000000000000222222000000002229012 -T2202301111119784561220000127WTTBZ99#@2222122222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978456120220418WTT0@@ZPP22221222204398100000050 -T12023011111197851520600404121120412110957300000000000007710990000000000000000000000000000000000222222000000002229072 -T2202301111119785151219850514WTTY@ZPB#2222212222225012216111320023011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111978515120070114WTTBPWWY@22222122204309100000000 -T320230111111978515120150704WT@00#0PP22222112204301100000050120140126WT@Y@#9PY22222112204302100000050 -T12023011111197859725900402831120323110835300000000000606540020000000000000000000000000000000000222222000000002229012 -T2202301111119785971219820209WT@PB0YPP2222212222222011213190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119785971219820505WT@P0PB0Z1222211222222021212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978597120150908WTTTWB0T#12222212204302100000000 -T12023011111197860925900402831120423111034300000000243807710130000000000000000000000000000000000222222000000002229012 -T2202301111119786091219950304WTT0ZZ9PW1222222222222011213190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000002666 -T2202301111119786091219910701WTTYP00ZP1222211222222021212190144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978609120200302WT@9Y0W0Z12222122204398100000000120180427WT@0@ZTT@12222122204398100000000 -T12023011111197886324500405781120533111116300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111119788632219840923WTT@0BBWY2222212222213012210110204013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000054 -T320230111111978863120110104WTT00@@B022222122204305100000025420060112WT@9P@9ZP22222112104309109140025 -T320230111111978863120170518WTTWBP00Y22222122204398100000025120150527WTT0W@#YY22222122204301100000025 -T12023011111197892225900403551120213120000300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119789221220030726WTTWWZY9T1222212222221012211110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111978922120210112WT@WP@@#912222112204398100000000 -T12023011111197896524200403941120213110599300000000000003160340000000000000000000000000000000211122222000000012219012 -T2202301111119789651219920404WTTZZ@WYW2221222222221012212110352523011400000000000000000000000000000000000000000000000000000000140000000000000000000000000000 -T320230111111978965120200923WTTZ0Z0P#22222122204398100000000 -T12023011111197900223500408281120233110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119790023219400914WTTPWZY@Z2222212122221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001592000000000000 -T320230111111979002120200312WTTZWP0P022222122206398100000000 -T12023011111197901824200408391120213110598300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111119790181219930918WT@WT@T9@2222222222221012212110124823010100000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111979018120220201WTT0Y#BWY22212212204398100000000 -T12023011111197902923900408801120333110740300000000000005280290000000000000000000000000000000000222222000000002229022 -T2202301111119790293219610213WT@@YY9Y92122212222215012212110154513069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111979029120160412WTTZ0Y@BT22222112206301100000000120150526WTT90#TPZ22222112206301100000000 -T12023011111197905320800403781120313110766300000000000006540090000000000000000000000000000000000222222000000002229012 -T2202301111119790531219850118WTT@Z099Y2222212222225012212220095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111979053120170127WT@9TPY9W22222112204398200000000120100712WT@9TPY9W22222122204398200000000 -T12023011111197911823900408801120312110519300000000000003920210000000000000000000000000000000261122222000000012219072 -T2202301111119791181219860212WT@YWP@0B1122221222221012216111330023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111979118120110923WTT@0Y0PY21222212204303100000050120070312WT@0#90Y921222212204306100000050 -T12023011111197921723700414331120213110611300000000000004810040000000000000000000000000000000000222222000000002229012 -T2202301111119792171219980504WTTB@TT9@1222222222221012212110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111979217120220707WT@9TPY9W22222222204398100000000 -T12023011111197923722000406191120312110587112100000000009540200000000000000000000000000000000000222222000000002229072 -T2202301111119792371219900527WT@WW#@W92221222222221012212110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111979237120190712WTTT@Y9PZ22212222204398100000000120090327WT@09TZYZ22212212204307100000000 -T12023011111197933624200414021120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119793363219470121WT@PY#WPZ2222211122222012212110025813069900000000000000000000000000000000000000000000000000000000000000266600002120000000000000 -T320230111111979336120070926WT@@B9P#T22221222207309100000000 -T12023011111197935520600400801120213110570300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111119793551219920523WTT@9@@BZ1222212222223012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111979355120170412WTTTZY9Z012221112204398100000000 -T12023011111197958421700406141120233110611300000000000005280040000000000000000000000000000000000222222000000002229022 -T320230111111979584120210104WT@999WWP12222222204398100000000120050518WTTT0Y0P912222222201312100000000 -T12023011111197964624200409091120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119796462219930304WT@#WB0092221222222211012208110184213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111979646120140204WTT##@P@#22212222204301100000000 -T12023011111197974422000407241120313110766107400000000003920970000000000000000000000000000000261122222000000012219012 -T2202301111119797441219920912WT@Z0#WTP1222222222223012208220510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111979744120120126WT@ZYWZ#912222212204302100000000120080411WTTTPW9W@12222222204306100000000 -T12023011111197984825200407301120333110821300000000008804180250000000000000000000000000000000000222222000001102219022 -T2202301111119798481219890704WT@Z@9B#@1222221222221012211110283221099907000000000000000000000000000000000000000000000000000000000000043600000000000000000000 -T320230111111979848120100107WTTW@WZPY12222122204305100000000420090511WTT9B#@0W12222112104306108220000 -T12023011111198003524200402501110313110835119570000000000810230000000000000000000000000000000000222222000000002229012 -T2202301111119800351219950927WTTPYY##@2222212222225012212120243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111980035120180507WT@B@#PZ022222122204398100000291120110104WT@B#@PZY22222122204304100000000 -T12023011111198020122000407411120313110835300000000000204750390000000000000000000000000000000000222222000001792219012 -T2202301111119802011219880923WTTP9TY@B2221222222221012216110312921011805000000000000000000000000000000000000000000000000000000000000035700000000000000000000 -T320230111111980201120170318WTTTTP@YT22212222204398100000000120160323WT@0WZ#P022212212204398100000000 -T12023011111198021424700407521120333110670300000000000005280590000000000000000000000000000000000222222000000002229022 -T2202301111119802143219720702WTT#T000Z2222212222222012212110035713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111980214120090712WT@##T9Z922212212207306100000000120090712WT@@PB00T22212222207306100000000 -T12023011111198024625600404161120213110557300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111119802461219850501WTTTZYTT#1222211222221012211120332723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111980246120100226WTT0BBWTP22222112204307100000000 -T12023011111198041324700406701120623111269300000000000010090060000000000000000000000000000000000222222000000002229012 -T2202301111119804131219750426WTT9@9Y002222121222222011298290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119804131219810918WT@@Z@9T02222122222222021298290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111980413120100713WT@PT0BZZ22221212204304200000000120080718WT@T9B@W922221212204307200000000 -T320230111111980413120150321WT@Y@B@PZ22221212204398200000000120130918WT@WYBZT022221222204303200000000 -T12023011111198042222000410051120523111199300000000000008880030000000000000000000000000000000000222222000000002229012 -T2202301111119804221219880907WT@YTBYPP2222212222222011214290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119804221219830324WT@P0TBP#2222211222222021216290045623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111980422120080908WT@WW@WW#22222112204308200000000 -T320230111111980422120130907WT@#YWT@Z22222122204303200000000120100407WT@900ZWB22222122204306200000000 -T12023011111198049822900412731120233110611300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111119804983219650907WT@@WPBY#2222212222223012212110213913069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111980498120150724WTT9T0PTZ22222122206398100000000 -T12023011111198065222000405181120232110516300000000000004170930000000000000000000000000000000000222222000000002229022 -T2202301111119806522219870701WT@00@BPY2221222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111980652120150121WT@09##Z022212222204301100000000 -T12023011111198066723500412161120313110786300000000000006540270000000000000000000000000000000000222222000000002229012 -T2202301111119806671219970726WTT00BPZ02222212222221012211120372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111980667120220912WT@@W#Z@P22222122204398100000000120180512WTT0PTWYY22222122204398100000000 -T12023011111198081920400409801120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119808193219420124WT@@B@#BT1222212122225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000770000000000000 -T320230111111980819120090312WTTB#YZWY12222112206306100000000 -T12023011111198084621700404181120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119808463219510523WTTT9#YY@2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000822000000000000 -T320230111111980846120080913WTTT#9ZYW22222112206307100000000 -T12023011111198093324700409381120212110611300000000000003160550000000000000000000000000000000211122222000000012219012 -T2202301111119809331219930913WT@TYY9ZW2222212222221012211110560423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111980933120180905WTTT@ZBTY22222112204398100000000 -T12023011111198100925200407301120512111116300000000021407710820000000000000000000000000000000000222222000000002229072 -T2202301111119810091219880118WT@#T0W@02222212222223012212110990023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981009120110727WTT#BY@WY22222112204304100000023420080121WT@99@TT#22222112104308109140023 -T320230111111981009120220323WT@@Y9#Z#22222112204398100000000120180123WTT9@0@B@22222112204398100000017 -T12023011111198110022000407412120423210939300000000000007710050000000000000000000000000000000000222222000000002229032 -T2202301111119811001219970313WT@9TPY9W2222211222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119811001220000523WTTYTZTPP2222212222222021206290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981100120200404WT@9TPY9W22222112204398200000000120180326WT@9TPY9W22222122204398200000000 -T12023011111198110124700405832110323210785300000000000005900010000000000000000000000000000000000222222000000002229032 -T2202301111119811011219880104WT@W@T#TW2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119811011219960904WTTZP0Y902222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981101120180527WTTBTY#ZT22222122204398200000000 -T12023011111198112822000414461120413110939101000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111119811281219950401WTTPBWZZZ2222212222223012211110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981128120180423WT@YB#B@W22222222204398100000100 -T320230111111981128120220121WTT0WP#WY22212222204398100000100120200211WTTW#YTWY22222212204398100000100 -T12023011111198113125000403231120333120000300000000000005280770000000000000000000000000000000000222222000000002229022 -T2202301111119811313219610227WTTWZ#B0#2222211222225012212110006011069925000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111111981131120120701WT@Z0WY0T22222122206303100000000120110912WTTB@ZWP022222122206304100000000 -T12023011111198122325900407561120213110611300000000000005280150000000000000000000000000000000000222222000000002229012 -T2202301111119812231219890108WT@T@PYP01222211222223012212110174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981223120210911WTTT9@9BP12222112204398100000000 -T12023011111198126722000400651120233120000300000000005004170310000000000000000000000000000000000222222000000002229022 -T2202301111119812673219630301WT@Y@PW@@2222212222225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981267120050101WTT@#T#@P12222122209311100000000 -T12023011111198127225800405801120213110516104810000000000440100000000000000000000000000000000000222222000004842219012 -T2202301111119812721219860527WTTT#TBY92222212222221012216110114921011816000000000000000000000000000000000000000000000000000000000000096700000000000000000000 -T320230111111981272120170423WT@TBTP@T22212122204398100000000 -T12023011111198128424500405781120233120000117400000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111119812843219810326WT@YB0TT@2222212222221012212110402013069900000000000000000000000000000000000000000000000000000000000000451500000000000000000000 -T320230111111981284120180226WT@YY#@TT22222122207398100000000 -T12023011111198134024200407271120523111116300000000000008880070000000000000000000000000000000000222222000000002229012 -T2202301111119813401219890126WTTW@0Y0T2222211222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119813401219900312WT@Y9PT902222212222222021212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981340120130904WT@TPP9PB22222122204305200000000 -T320230111111981340120180707WTT@TW@@Z22222122204398200000000120140307WT@PBWB#922222112204302200000000 -T12023011111198135420400400211120212110611300000000000003160110000000000000000000000000000000211222221000000012219072 -T2202301111119813541219760323WTTP099YB1222212222221012213110690023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111981354120060304WT@BPYYW012222122204309100000000 -T12023011111198145524900404261120213110611300000000000003160230000000000000000000000000000000211122222000000012219012 -T2202301111119814551220000423WTT0BP@T@2222212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981455120150527WT@BYZYWT12222112204301100000000 -T12023011111198145620800414151120433110893300000000000006540820000000000000000000000000000000000222222000000002229022 -T2202301111119814563219650711WT@@#0@#T1222211122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000971000000000100 -T320230111111981456120130411WT@YZTW9W12222112206301100000000 -T320230111111981456120170927WT@T0Z9PP12222112206398100000000120150109WTT90@9ZT12222112206398100000000 -T12023011111198152724200405921120333120000300000000010005280630000000000000000000000000000000000222222000000002229022 -T2202301111119815273219660502WTTY9P@P@2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000368100000000000000000000 -T320230111111981527120080512WTTZWZ99922222112207308100000050120050126WTTBBT9@922222112207311100000050 -T12023011111198161523700414332120213210611300000000000005280050000000000000000000000000000000000222222000000002229032 -T2202301111119816151219930211WT@TZP#091222212222223012209210095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981615120120109WTTZ99Z#B12222212204304200000000 -T12023011111198161920800411991120213110611300000000001205280190000000000000000000000000000000000222222000000002229012 -T2202301111119816191219840913WTTP#0Y#W2222212222221012212110580223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981619120140304WT@WPWWP922222122204301100000000 -T12023011111198164424200405921120213110611300000000000305280020000000000070003000000000000000000222222000000002229012 -T2202301111119816441219800727WTTBTT@YZ2222211222225012213110095123011800000000000000000004000000000000000000000000000000000000450000000000000000000000000000 -T320230111111981644120140904WTT#WWB#B22222112204303100000000 -T12023011111198167022900405641120313110835114310000000105910040000000000000000000000000000000000222222000000632219012 -T2202301111119816701219940923WTT@WYY9B1222212222223012212220085221011804000000000000000000000000000000290001000000000000000000000000025000000000000000000000 -T320230111111981670120210227WT@PYBZ0Y12222112204398100000000120140918WTT09#YY012222122204303100000000 -T12023011111198195422000403891120213110516300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111119819541219760723WT@9ZT#0B2222211222221012207110124823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981954120090121WT@9BPZPP22222112204307100000272 -T12023011111198195624200403941120332110704300000000000005280940000000000000000000000000000000000222222000000002229022 -T2202301111119819562219730126WT@T0@W#W2222212222211012213111060013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111981956120160904WTT9Z#9YZ22212222206398100000000120100707WT@@#0WTT22212112204306100000000 -T12023011111198195823500408281120312110835300000000020006540340000000000000000000000000000000000222222000000002229072 -T2202301111119819581219870112WTT9ZZT0B2222212222221012209111020023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111981958120160504WT@#@@@9@22222122204398100000100120120905WT@@TP@0B12122222204304100000000 -T12023011111198205224100405611120323110835300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111119820521219860707WTTBYB9#P2222221222222011298290065421011945000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119820521219940126WT@9T0PB@2222222222222021298290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111982052120150907WTTP#Z@TP22222212204398200000000 -T12023011111198210822000400591120213110631300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111119821081219850724WT@Y@BTT92222222222221012212110322823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111982108120200901WTTTT0TY922222222204398100000000 -T12023011111198240922000402371120412110942300000000000007710290000000000000000000000000000000000222222000000002229072 -T2202301111119824091219980123WTTBT##PP2222222222221012211110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111982409120150727WTT90#90022222222204398100000000 -T320230111111982409120210104WTTYT9W#922222212204398100000000120170721WT@0BWB0P22222212204398100000000 -T12023011111198251323500404531120333110470300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111119825133219700421WT@ZWTWWP2222212222221012212110006011069942000000000000000000000000000000000000000000000000000000000000334800000000000000000000 -T320230111111982513120190911WT@90@Z0921222212206398100000000120160526WT@@9@#P#21222212206301100000000 -T12023011111198256624200414851120432110893300000000000006540450000000000000000000000000000000000222222000000002229022 -T2202301111119825662219880408WTT0WZB@Z2221212222213012211120481213089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111982566120050413WT@TB#Z#@22212212204311100000000 -T320230111111982566120150712WTTB0TW0022222112204398100000000120100926WT@B0P9BP22212222204306100000000 -T12023011111198266822700401571120613111396300000000037604530450000000000000000000000000000000554222122000000022219012 -T2202301111119826681219920401WT@WBPZ9Z1222212222221012211220372323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111982668120120126WT@WPZP0912222212204303100000000 -T320230111111982668120150101WT@PP##9T12222212204398100000000120140102WTT9YP0T#12222212204301100000000 -T320230111111982668120190126WT@Y#Y##Y12222112204398100000000120170221WT@PP#0T912222112204398100000000 -T12023011111198276725600411521120213110598300000000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111119827671220000401WTTWTW#9P2222212222221012212110174323011400000000000000000000000000000000000000000000000000000000080000000000000000000000000000 -T320230111111982767120210726WTTZ@P9@@12222122204398100000000 -T12023011111198286725200410141120213110599300000000000003160160000000000000000000000000000000211122222000000012219012 -T2202301111119828671219980921WT@0YTYTZ2222212222221012212110174323010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111982867120200227WT@TZ@TZY22222112204398100000000 -T12023011111198287420600414772120232210474300000000000004170210000000000000000000000000000000000222222000000002229022 -T2202301111119828743219720402WTT@9WZZZ2222122222221012211210134713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111982874120070212WTT0ZY9@Z22221212206309900000000 -T12023011111198290524200414721120312110817300000000000004900330000000000000000000000000000000163222122000000012219072 -T2202301111119829051219840123WT@9T@T9Y2222222222221012212120940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111982905120130404WT@YTTYZZ22222122204303100000000120120923WT@TY@P#W22222112204303100000000 -T12023011111198293820900411721110313110835300000000000203950340000000000000000000000000000000000222222000002592219012 -T2202301111119829381219860327WT@@000W92222212222225012216110352523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111982938120160208WTTZZZWWT12222122204398100000050120110927WT@0BW@9P12222122204305100000050 -T12023011111198294725100407671120313110835300000000100006540020000000000000000000000000000000000222222000000002229012 -T2202301111119829471219840711WTT@Y90ZW2222211222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111982947120190912WTTTWYW@Z22222122204398100000000120170407WT@P0@ZB922222122204398100000000 -T12023011111198295725800405801120423110939300000000050003920350000000000000000000000000000000261122222000000012219042 -T2202301111119829571219810401WT@#9Z9992122222222223011212110184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000066 -T2202301111119829571219840113WT@TBBPT02122221222221011212190154523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000208 -T320230111111982957120180323WT@#TPWTW21222212204398100000121420060318WTTTPP@0021222212104309108940121 -T12023011111198296923500411471120623111395300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111119829691219830704WT@T@WTTT2222211222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119829691219870318WT@90Z#9Z2222212222222021216290085223011800000000000000000000000000000000000000000000000000000000390000000000000000000000000000 -T320230111111982969120100312WT@0ZW@BW22222122204305200000000120070723WT@P0YBBP22222122204308200000000 -T320230111111982969120210913WT@YB@0Y022222112204398200000000120190712WT@9PYPWZ22222122204398200000000 -T12023011111198297922000404841120232120000300000000000004170100000000000000000000000000000000000222222000000002229022 -T2202301111119829793219820411WT@@Z9#BB2221222222221012213110075313069900000000000000000000000000000000000000000000000000000000000000608300000000000000000000 -T320230111111982979120220126WT@P9Y@TT22212212206398100000000 -T12023011111198302425000413201110633111367132180000000001430010000000000000000000000000000000000222222000000002229021 -T2202301111119830242219960927WT@0P9@PW2221222222211012298110124813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111983024120150407WT@B99W0922212222204301100000000 -T320230111111983024120170723WT@Z@PWPT22212222204398100000000120160104WTTB#000B22212212204398100000000 -T320230111111983024120210904WT@ZP9#Z022212212204398100000000120200112WTT0WB9Z@22212212204398100000000 -T12023011111198306025200410591120313110766300000000039006540110000000000000000000000000000000000222222000000002229012 -T2202301111119830601219870405WTT9B#@TY2222212222225012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111983060120220205WT@WB9#PZ22222122204398100000000120220205WTTZ#000022222122204398100000000 -T12023011111198312422000409412120323210766300000000060006540060000000000000000000000000000000000222222000000002229032 -T2202301111119831241219920522WT@ZBB9#B2221222222222011215290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119831241219890302WTT@BT0WB2221221222222021214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111983124120210927WT@#9ZPZT22212212204398200000000 -T12023011111198316424200414851120413110835300000000057806540020000000000000000000000000000000000222222000000002229042 -T2202301111119831641219650518WT@#PBZTZ1222221222222012209190253523011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111119831642219760101WTTZYZ@BT1222222222222022206990312913079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111983164120090213WTT#0WPBZ12222212204307100000000120070123WTTTB##YY12222222204309100000000 -T12023011111198316523300410111120212110591300000000000005280650000000000000000000000000000000000222222000000002229072 -T2202301111119831651219830121WTTZB@#BB2222212222221012216110660023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111983165120090727WT@Y90#@Z22222112204305100000015 -T12023011111198324423500406851120213110631109800000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119832441219850922WTTTWPYY@2222211222225012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111983244120200927WT@P9@Z@#22222122204398100000000 -T12023011111198333220600412561120213110611300000000003503160070000000000000000000000000000000000122222000002122219012 -T2202301111119833321219980908WT@PPZPTW2222212222221012210110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111983332120180212WT@Y#TYBY22222122204398100000000 -T12023011111198355220600414771120413111034122940000000007710670000000000070010000000000000000000222222000000002229072 -T2202301111119835521219840411WT@BYTB@Z2221221222221012212110680023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111983552120150123WT@ZWWP9Y22212222204301100000000 -T320230111111983552120190118WTTZBB@B022212212204398100000000120190207WTT00BWY022212212204398100000000 -T12023011111198363222000403351120232110516300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119836323219960712WTTPP9#YW1221222122211012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000433050100000000 -T320230111111983632120210909WT@@@BWW#22212212209398100000000 -T12023011111198375122700408351120413110941300000000000002900090000000000000000000000000000000000222222000002382219012 -T2202301111119837512219800205WTTTTZP@P1222222222225012212110006013050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111983751420060712WTTW90YTT12222222204309100000237 -T320230111111983751120220123WTT#@B#BZ12222212206398100000000120090427WTT9B0Y@B12222222204306100000237 -T12023011111198377324200404891120213110516300000000000000010640000000000000000000000000000000000222222000000002229012 -T2202301111119837731219840722WT@0900092222212222221012216110590111011800200000000000000000000000000000000000000000000000000000000000135400000000000000000000 -T320230111111983773120070723WTTBT0WW#22222122204307100000000 -T12023011111198382722600405051120233120000106900000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111119838273219590718WTTPTZZ9Z2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000352600000000000000000000 -T320230111111983827120190707WTT##09#Y22222122206398100000000 -T12023011111198384123900406231120533110611300000000000003910620000000000000000000000000000000000222222000001372219022 -T2202301111119838412219960526WT@YYBT9P1222222222221012298990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119838412219890104WT@YYBT9P1222221222221102212990006011079910000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111983841420120314WT@YYBT9P12222222204303900000000 -T320230111111983841120210907WTTYTPWTZ12222222204398100000000120170301WTTTP0YWB12222212204398100000000 -T12023011111198396524200407431120233120000300000000001204170990000000000000000000000000000000000222222000000002229022 -T2202301111119839653219820213WT@Y#@WTB2222212222222012212110006011069940000000000000000000000000000000000000000000000000000000000000325800000000000000000000 -T320230111111983965120110205WT@WPW0W#22222122207304100000300 -T12023011111198398820600414871120213110631300000000000005280380000000000000000000000000000000000222222000000002229012 -T2202301111119839881219900718WT@0BZB902221222222221012211110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111983988120200427WTTP@#PP922212222204398100000000 -T12023011111198401223100408861120313110611300000000000203920300000000000000000000000000000000261122222000000012219012 -T2202301111119840121219810413WT@0#9ZWT2222212222223012212110312923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111984012120080926WTTBZY##Z22222112204307100000000120050904WT@TBYP#T22222112204311100000000 -T12023011111198412325200410591120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119841233219500904WTTWBZW#@2222212122222012213110006011069911000000000000000000000000000000000000000000000000000000000000083100001390000000000000 -T320230111111984123120050726WTTP9P@B022222112206311100000050 -T12023011111198414021000411361120313110835300000000010006540310000000000070003000000000000000000222222000000002229042 -T2202301111119841401219850421WTTP@ZBYW1122222222221012212110174323011800000000000000000004000000000000000000000000000000000000320000000000000000000000000000 -T320230111111984140120080713WT@BY9T0W21222212204307100000000120060126WT@9W0P#T11222222204309100000000 -T12023011111198416325900406841120232120000300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111119841633219780408WTTPBYTYT2122221122222012212110124813069900000000000000000000000000000000000000000000000000000000000000000000000932000000000150 -T320230111111984163120110223WTT9@PBWZ11222222207306100000000 -T12023011111198423624700409381120512111116300000000000008880590000000000000000000000000000000000222222000000002229012 -T2202301111119842361219940404WT@TZ9Y0Y2222212222221012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111984236120140308WTT9@#BT022212112204398100000000120130101WTTT0#TZ@22212122204302100000000 -T320230111111984236120190424WTTPBYWTT22212112204398100000000120160901WTT#YPPPY22212112204398100000000 -T12023011111198425024200408571110213110618105250000018905280030000000000000000000000000000000000222222000000002229012 -T2202301111119842501219740108WT@P9B@TB2222211222221012216110045621011940000000000000000000000000000000000000000000000000000000050000000000000000000000002489 -T320230111111984250120140321WTT0@WY@T22222122204301100000000 -T12023011111198425424200402981120613111339300000000000010090020000000000070001000000000000000000222222000000002229012 -T2202301111119842541219890121WT@##@TWW2222122222223012216110154523011700000000000000000000000000230000000000000000000000000000270000000000000000000000001203 -T320230111111984254120090405WTTWPPB@#22221222204308100000000 -T320230111111984254120180327WTT#0ZW#T22221222204398100000000120160912WTT0W#@T922221212204301100000000 -T320230111111984254120210301WT@ZT0@Z@22221222204398100000000120200108WT@0@0P#B22221212204398100000000 -T12023011111198428325900406081120233120000300000000000002860800000000000000000000000000000000000222222000001312219022 -T2202301111119842833219570523WTT@B0TY92122222222225012212110006011069940000000000000000000000000000000000000000000000000000000000000361200000000000000000269 -T320230111111984283120140712WTTW@#BZP11222222206301100000251 -T12023011111198470925100402211120233110588300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119847093219600424WTTYW9#0@2222211222225012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000330 -T320230111111984709120080424WTT#@BBTB22222112209308100000000 -T12023011111198471323500405271120233110516300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111119847132219890709WTTTBTPZ#2222211222211012212110402013089900000000000000000000000000000000000000000000000000000000000000000000000000084200000000 -T320230111111984713120090109WT@Z@W0TB22222122204307100000000 -T12023011111198476422500404951120423110939300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111119847641219790712WTTZ9WYT92122221222221011212110402023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T2202301111119847641219800712WTT#PZYPZ2122222222221011211190362423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T320230111111984764120160504WTT9Y@W@B21222212204301100000000120150701WTTT00PP012222122209301100000000 -T12023011111198476922000404841120333110740300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111119847692219970518WT@PWPB#Y2221222222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111984769120180407WTTWBWZPY12222222204398100000000420160901WT@0@00T012212212104398109140000 -T12023011111198485225000404471110213110517300000000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111119848521219810901WT@BWB@#02222211222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111984852120140111WT@Z@#T9022222112204398100000000 -T12023011111198489920600414161120233110470300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119848993219880423WTTYWTY992222212222225012212110223813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000167 -T320230111111984899120120902WT@YBYBZT12222122207304100000050 -T12023011111198492224500405941120312110766300000000000006540050000000000000000000000000000000000222222000000002229012 -T2202301111119849221219930126WT@YZ9YT02222212222221012209110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111984922120200413WT@@@9BTT12222222204398100000000120150923WTTPB@P#W22222112204302100000000 -T12023011111198502522000413731120423111034300000000000007710050000000000000000000000000000000000222222000000002229012 -T2202301111119850251219900927WT@@@BYZ#2212221222222011214290055521011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119850251219870912WT@#@0@9#2212222222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985025120140501WT@WBYPT022122212204304200000000120120513WT@#@0#Z922122212204304200000000 -T12023011111198502622000402371120232110558300000000000305280670000000000000000000000000000000000222222000000002229022 -T2202301111119850261219800121WT@@9B@#B2221222222225012216210680023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985026120170121WTTY@0BWZ22212222204398100000147 -T12023011111198514320200403961120333110740300000000000005280120000000000000000000000000000000000222222000000002229022 -T2202301111119851433219530924WT@Z@TZ0Z2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001019000000000012 -T320230111111985143120070726WT@PPYZ@922222122206308100000000120050411WTT99@T9022222112206309100000097 -T12023011111198516221700406141120213110598300000000025005280340000000000000000000000000000000211222221000000002229012 -T2202301111119851621219770923WT@ZYB#BY1222212222225012212110481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985162120080326WTTT@B#PY12222112204307100000000 -T12023011111198528025600403771120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119852801219850721WTT000#YB2222211222221012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000357 -T320230111111985280120210401WT@0B#09T22222122204398100000000 -T12023011111198536124700401281120233120000300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111119853615219850422WT@PZ0W#B2122222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000602000000000000000000000 -T320230111111985361120170312WTT09BY#W21222222209398100000000 -T12023011111198556622000407232120213210548300000000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111119855661219820104WT@9TPY9W1222212222221012213210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985566120040412WT@9TPY9W12222122204311200000000 -T12023011111198560222000405841120433110939300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119856022219880404WTTWP#9W02222122222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111985602120070518WTT900@Z#22221212204309100000000 -T320230111111985602420110523WT@@9Z#PZ22221222104306109140000120100509WT@T99T##22221222204306100000000 -T12023011111198562025600413441120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119856202219900501WTTBB@PW#1222212222211012212110025813089900000000000000000000000000000000000000000000000000000000000000000000000000088700000000 -T320230111111985620120160424WTTPY0WYB12212222204398100000000120080114WTT0009T012212222204308100000000 -T12023011111198562224600406061110213110611300000000083002380220000000000000000000000000000000000222222000004162219012 -T2202301111119856221219740212WT@90@Z#Y2222211222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985622120080401WT@@ZP0@W22222112204308100000000 -T12023011111198563323500407161120523111089300000000000008880020000000000000000000000000000000000222222000000002229012 -T2202301111119856331219810101WTTP#TWT@1222221222222011212290184223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119856331219850912WTT0@9P9Y2222212222222011216190213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985633120070404WTTTT9Z0Z12222112204309100000000 -T320230111111985633120200918WT@WZ09YB12222112204398100000000120100913WTTB#B#BY12222122204306100000000 -T12023011111198565925900402631120423111034300000000000107710180000000000000000000000000000000000222222000000002229012 -T2202301111119856591219970105WT@Z9BY9T1222212222221011212110164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119856591219990412WT@00WP091222221222225011203190085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985659120210421WTTP@Z9WB12222122204398100000000120190114WTT990BW#12222122204398100000000 -T12023011111198566624700401011120323110602300000000000003920210000000000000000000000000000000261122222000000012219012 -T2202301111119856661219900418WT@Z#9TP92222212222221011211190382223011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119856661219900522WT@P9#T#92222211222221011212190303023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985666120120123WT@T@9YW022222112204302100000000 -T12023011111198567424200403941120233110493300000000000004170540000000000000000000000000000000000222222000000002229022 -T2202301111119856743219700701WT@PTYBWP2222122122222012213110035713069900000000000000000000000000000000000000000000000000000000000000000000001532000000000000 -T320230111111985674120170107WTTTZ0@@P22221222206398100000000 -T12023011111198568222000410221120413110760300000000000704620230000000000000000000000000000000308122222000000012219012 -T2202301111119856821219940727WT@@00P@02222221222221012212110233721011204000000000000000000000000000000000000000000000000000000000000021000000000000000000000 -T320230111111985682120130712WT@BY9Z9@22212212208304100000000 -T320230111111985682120170714WT@9@@TY022222212204398100000000120130127WT@YTBZYY22222212204303100000000 -T12023011111198571625900406081120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119857163219510414WT@TWWPZY1222221122224012215110006013069900000000000000000000000000000000000000000000000000000000000000000000001837000000002533 -T320230111111985716120060512WT@W#ZB@Z12222222206310100000000 -T12023011111198584620600400871120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111119858461219680912WT@W0#TT02222211222223012212210045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985846120090123WT@9TPY9W22222112204306200000000 -T12023011111198592925900402631120313110835300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119859291219980909WT@9TPY9W1222212222221012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111985929120200526WTT@TZWBT12222222204398100000000420180422WT@B0WBY922222212104398100340000 -T12023011111198598722000406192120313210766300000000000006540030000000000000000000000000000000000222222000000002229032 -T2202301111119859871219810401WT@WPTBBP2222212222223012212210045623011800000000000000000000000000000000150001000000000000000000000000000000000000000000000000 -T320230111111985987120100914WT@9TPY9W22222122204306200000000120060212WT@9TPY9W22222112204310200000000 -T12023011111198601025900402631120213110516300000050003200010690000000000035008000000000000000000222222000000002229072 -T2202301111119860101219940927WTTPBT0YY2222212222221012210110700011011800210000000000000000000000000000000000000000000000000000180000125600000000000000000000 -T320230111111986010120130124WTTBBP9YY22212112204302100000050 -T12023011111198601520600409771120213110611300000000016509940680000000000000000000000000000000000222222000000002229072 -T2202301111119860151219860908WT@@ZY#PP2222211222221012212110690021011811000000000000000000000000000000000000000000000000000000000000063200000000000000000000 -T320230111111986015120060323WTTB@0@T#22222112204309100000184 -T12023011111198647822000407411120523110974300000000000005130190000000000000000000000000000000342122222000000332219012 -T2202301111119864781219730322WT@@Z#WY#2222122222222011213190243621011203000000000000000000000000000000000000000000000000000000000000013100000000000000000000 -T2202301111119864781219740123WTTWY9B#T2222121222222021212190243623011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986478120060923WT9TT9WTP22221222204308100000000 -T320230111111986478120100709WTTTBYW@@22221212204304100000000120080723WTT9Y#0@B22221212204307100000000 -T12023011111198648925900402831120533111034126070000000007710760000000000000000000000000000000000222222000000002229022 -T2202301111119864892219920112WT@YYBT9P1222222222221012211920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986489120160102WTTT0WTYT12222212204398100000000120130426WTT0PT9@Z12222212204302100000084 -T320230111111986489120220213WT@9TPY9W12222222204398100000000120190413WT@WWT#T912222222204398100000000 -T12023011111198654222000406271120213110470300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119865421220010202WT@YBPZ@B1222221222221012212110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986542120180312WT@B@Y@YP12122212204398100000000 -T12023011111198665822000405841120913111902154400000000014160120000000000000000000000000000000000222222000000002229012 -T2202301111119866581219870926WTT0@0P9T2222212222221012205210124823011400000000000000000000000000000000000000000000000000000000250000000000000000000000000000 -T320230111111986658120080413WT@Y#BZZW22222122204308200000000120060427WT@TPBTBY22222122204309200000000 -T320230111111986658120120123WTT99P#@922222112204304200000000120100526WTT#0WY9922222112204306200000000 -T320230111111986658120170418WTT0#@9Y022222112204398200000000120140418WT@TZTYWY22222122204302200000000 -T320230111111986658120200123WTT90P0YY22222112204398200000000120180527WT@#@Z@Y922222122204398200000000 -T12023011111198668822000413731120113110376300000000000004170110000000000000000000000000000000000222222000000002229012 -T2202301111119866881219870724WT@#ZWY0@2222212222221013213110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111198671524500405941120333110704300000000000004170650000000000000000000000000000000000222222000000002229022 -T2202301111119867152219690123WTT9BZZTY2222211222213012212110015913089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111986715420100512WT@WY@ZW022222112104304109140000120070326WTTZYT#9#22222122204307100000000 -T12023011111198677424200407311120213110611103860000000405280370000000000000000000000000000000000222222000000002229012 -T2202301111119867741219850101WTTZ0@B@Y2222122222221012213110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986774120150902WT@99#TYB22222112204302100000000 -T12023011111198677521000411361120212110611300000000023102030160000000000000000000000000000000153122222002601462219012 -T2202301111119867751219960723WTTZ@WZ@T2222212222221012210110253521011210000000000000000000000000000000000000000000000000000000000000057800000000000000000000 -T320230111111986775120170108WT@YTTP#022212222204398100000000 -T12023011111198680320600404351120512111116300000000000008880530000000000000000000000000000000000222222000000002229072 -T2202301111119868031219920123WTTTZBYW92222212222221012212120690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986803120160126WTTYZ9BWY22222122204398100000000120110226WT@TZ0PBP22222112204304100000000 -T320230111111986803120210713WTTTBZ#WY22222122204398100000000120190727WTTZB#PYW22222122204398100000000 -T12023011111198684323500404531120333120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119868433219810912WTT@@Y0#91222211222221012209110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986843120220123WT@##Y0#T22222112208398100000000420070912WTTYTW90922222122204309100000000 -T12023011111198686321700406141120213110611300000000000005280170000000000000000000000000000000000222222000000002229012 -T2202301111119868631219930909WTT#BW9@W2222212222221012211110342621011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986863120160927WTTT0#9#Y22222122204398100000000 -T12023011111198686820600414161120312110835112180000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111119868681219900307WT@BT0@YP2221222222223012216110590123010900000000000000000001000000000000000000000000000000000000160000000000000000000000000000 -T320230111111986868120210423WTT0WT9B922212212204398100000000120110312WT@@#0#BP22212212204304100000000 -T12023011111198687924700409321120213110557300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111119868791219780404WTTPTZ#B02222211222221012211110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986879120070326WTTZTZT@Z22222112204307100000000 -T12023011111198690722000408451120212110611300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111119869071219990923WTT0W9TY92222212222221012210110263423010600000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986907120190427WT@ZTZP#022221212204398100000000 -T12023011111198692725100409691120313110835300000000000006540420000000000000000000000000000000000222222000000002229072 -T2202301111119869271219960413WT@T9ZZTP2222212222221012209120660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986927120220407WTTYBP0Z@22222222204398100000000120160701WT@PTW0YY22222222204398100000000 -T12023011111198693322000405841120233120000300000000000004170140000000000000000000000000000000000222222000000002229022 -T2202301111119869333219840504WT@YB0#T02222122222222012216920015911079948000000000000000000000000000000000000000000000000000000000000296800000000000000000000 -T320230111111986933120040718WTTWPT9YY22221212207310100000000 -T12023011111198693922000405301120213110576104830000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111119869391219730927WTTTB@9WY2221221222223012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111986939120130323WTTB0#PP922212222204303100000050 -T12023011111198701124200414721120112110348300000000000003750040000000000000000000000000000000000222222004100012219072 -T2202301111119870111219840301WT@9PP#T92222212222225013212191010023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111198701224200403941110313110704300000000000002950200000000000000000000000000000000192222221000002842219012 -T2202301111119870121219870202WT@Z##T@Y1122222222221012211120402023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111987012120080112WTTZTB##@22222112204308100000000120050102WT@ZTYT#B11222222204311100000000 -T12023011111198706022000404841120212110606300000000000003960280000000000035006000000000000000132222122000000002229012 -T2202301111119870601219950408WT@0YZZZZ2221222222221012212120312923011400000000000000000000000000000000000000000000000000000000270000000000000000000000000000 -T320230111111987060120170518WTTY9W0T@22212212204398100000000 -T12023011111198711225200400411120213110619300000000000003160100000000000000000000000000000000211122222000000012219012 -T2202301111119871121219900709WTT9Y@9ZW2222212222221012216110114923010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111987112120180701WT@TZTZZB22222122204398100000000 -T12023011111198724624200414721120333120000300000000000005280150000000000000000000000000000000000222222000000002229022 -T2202301111119872463219560701WTTBBZ#PB2221222122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002656000000001460 -T320230111111987246120080723WTT0WZ9TT22222222206308100000000120070923WT@0#T0P022212222206309100000000 -T12023011111198732424700402991120323110724300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111119873241219780123WT@9TPY9W2222212222222011207290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119873241219780512WT@9TPY9W2222211222222021206290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111987324120060414WT@9TPY9W22222122204305200000000 -T12023011111198756520600400871120313110766300000000000003920110000000000000000000000000000000261122222000000012219012 -T2202301111119875651219970709WT@9WBTWZ2222222222221012212110124823011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111987565120200122WT@9TPY9W22222222204398100000000120180708WTT9@@0Z022222212204398100000000 -T12023011111198758623500408281120233120000300000000000004170660000000000000000000000000000000000222222000000002229022 -T2202301111119875863219740712WT@ZB09Y02221222222223012216110560413069900000000000000000000000000000000000000000000000000000000000000413800000000000000000000 -T320230111111987586120130127WT@#9WWWB22212212206302100000000 -T12023011111198758722900405641120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119875873219600107WTTB00B0@2222212222222012210120006011069913000000000000000000000000000000000000000000000000000000000000106900000000000000000000 -T320230111111987587120090107WT@PYP0P@22222112206306100000000120080107WT@ZBBYYT22222122206308100000100 -T12023011111198760322000402371120712111480300000000140006160270000000000000000000000000000000000222222000004462219012 -T2202301111119876031219840423WT@YYBB#@2221222222221012212210283221011813000000000000000000000000000000000000000000000000000000000000089100000000000000000000 -T320230111111987603120080423WTT0BBTZB22212212204307200000000520040423WTT00@9P@22212222204310200000103 -T320230111111987603120140123WTTWPZ@W922212212204302200000000120100909WT@Y#90Z922212212204305200000000 -T320230111111987603120200418WT@@YBWYZ22212222204398100000387120160722WTTT@@9T922212212204398200000000 -T12023011111198760720600402131110113110281300000000000003490010000000000000000000000000000000000222222000000002229012 -T2202301111119876071220020723WT@P@YPZ#2222212222221013211190025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111198765124700409321120313110611300000000030501910040000000000000000000000000000000000222222000003372219012 -T2202301111119876511220000307WTT90Z#@P1222212222222012211290055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119876512219930321WT@YYBT9P1222211222222022212990006013079900000000000000000000000000000000000000000000000000000000000000185000000000000000000000 -T320230111111987651120210124WTTBBTY#B12222212204398100000000 -T12023011111198792623700414331120213110611300000000000202540270000000000000000000000000000000169122222000001052219012 -T2202301111119879261219990501WTTZWYT@@1222211222221012212110283223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111987926120180318WTTPYZZWW12222112204398100000104 -T12023011111198795223500405271120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111119879523219580321WT@YWB9PY2122221222222012212110006013069900000000000000000000000000000000000000000000000000000000000000430000000000000000000000 -T320230111111987952120070311WTT#9@@#@21222222206308100000000 -T12023011111198798522500410151120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111119879853219500726WT@T990BY2222212122222012298120006013069900000000000000000000000000000000000000000000000000000000000000000000001168000000000000 -T320230111111987985120090926WT@ZBZ0#@22222112206307100000000 -T12023011111198798622000410221120213110577300000000040005280040000000000000000000000000000000000222222000000002229012 -T2202301111119879861219770218WT@BWB09@2222212222225012212110055523011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111987986120100702WTTW0W9TZ22222112204305100000400 -T12023011111198800825900403551120313110835300000000000006540470000000000000000000000000000000000222222000000002229012 -T2202301111119880081219960501WT@ZBY@WW1222222222221012212110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988008120200704WT@#TBBTB12222212204398100000000120160401WT@Y@BB#B12222212204398100000000 -T12023011111198804124700401281120313110835300000000001106210200000000000000000000000000000000000222222003200012219012 -T2202301111119880411220000301WT@Z0@TPY2222212222221012212120213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988041120220223WTTZY@0##22222122204398100000000120200426WTTZZ@Z#Z22222122204398100000000 -T12023011111198808222000408891110412110971132340000000005470010000000000000000000000000000000000222222000000002229012 -T2202301111119880821219670323WT@W#YPT@2222212222223012211110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988082120120904WT@0#Z0W@12222222206304100000000 -T320230111111988082120180414WTT@WY0WT12222122206398100000000120140105WT@TTYPZZ12222222206301100000000 -T12023011111198824520800405391120113110376300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111119882451219930308WT@TBWWYT2222212222223013216110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111198844724200401241120213110611300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111119884471219940904WTTYZ0ZZT2222212222221012212110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988447120220302WT@Y9@ZTY22222112204398100000000 -T12023011111198848624100402401120233120000300000000020004170430000000000000000000000000000000000222222000000002229022 -T2202301111119884863219650712WTTY9Z0WB1222212222222012213120006013069900000000000000000000000000000000000000000000000000000000000000590000000000000000000000 -T320230111111988486120050923WTTWTWTB@22222122206310100000000 -T12023011111198852124200403941120213110611300000000000004550070000000000000000000000000000000000222222000000002229012 -T2202301111119885211219860227WT@T0B9P92222212222221012212110085223010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988521120220104WTTP9BYZ@22222122204398100000000 -T12023011111198856625100402211120213110611300000000000005280230000000000000000000000000000000000222222000000002229012 -T2202301111119885661219960408WTT#ZBPB#2222212222221012212110243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988566120200405WTTWTTPWY22222212204398100000000 -T12023011111198869523500407161120313110786300000000000006540340000000000000000000000000000000000222222000000002229012 -T2202301111119886951219790407WT@ZZTTP#2222212222223012212110352523010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988695120130918WT@P@Z0##22222122204303100000000120090913WT@BWTW@B22222122204307100000000 -T12023011111198873625900400311120433110493300000000217205280850000000000000000000000000000000000222222000000002229022 -T2202301111119887362219810226WT@YYBT9P1222222222222012205990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119887362219750322WT@YYBT9P1222221222222022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988736120090722WTT@9Y9P#12222122204307100000000120050418WTT0#00WT12222222204312100000000 -T12023011111198873721200403951120233120000300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111119887373219500322WTT@TZ0002222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000760000000000000 -T320230111111988737120100927WT@WBTBWZ22222112206305100000000 -T12023011111198880125900403711120233110611300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119888013219670922WTTP@BYZY2222212222225012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988801120170122WTT#@@TBY22222112206398100000000 -T12023011111198884520600407031120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119888453219630311WTTPT9T@B2222212122215012212110322813069900000000000000000000000000000000000000000000000000000000000000000000000386046700000000 -T320230111111988845120090301WTTBWW#9#22222112206306100000050 -T12023011111198887022000410051120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111119888703219940912WTTY##90T2222212222222012212290085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111988870120050912WT@9TPY9W22222122207311200000000 -T12023011111198905322000406271120713111480300000000000008880490000000000000000000000000000000000222222000000002229072 -T2202301111119890531219920527WTTWYBZZ01222222222221012208110880023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989053120080412WT@WBT@Y#12222222207307100000000120050122WTTB9@PWP12222222207310100000000 -T320230111111989053120170307WT@P##0T912222222204398100000000120150707WT@#BZP0B12222212204398100000000 -T320230111111989053420130914WTT@Z0P#B12222222104301109140000420080912WT@Y#ZT@@12222212104306109140000 -T12023011111198907421700407751120213120000300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111119890745219710223WT@ZYBW0Z2222212222221013298920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119890741220040327WT@BPZ#WY2222211222221093210190006023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111198916124700409321120723111480300000000000011650100000000000000000000000000000000000222222000000002229012 -T2202301111119891611219800926WT@WP09902222211222222011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119891611219830912WTT@@ZP#@2222212222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989161120070123WTTBZW9@@22222122204309200000000 -T320230111111989161120140411WT@W@YTW@22222122204302200000000120090105WT@Y#B@0Y22222122204307200000000 -T320230111111989161120210113WT@PBB0ZP22222112204398200000000120160511WT@TZYWZ#22222112204398200000000 -T12023011111198924123500404821110213110611300000000115003570040000000000000000000000000000000000222222000000002229012 -T2202301111119892411219980723WT@90#B0W1222222222221012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000056 -T320230111111989241120190507WTT#Z9P#@12222222204398100000000 -T12023011111198928222000413732120523211199300000000000008880090000000000000000000000000000000000222222000000002229032 -T2202301111119892821219930323WT@ZP9YPT2222212222223011214210035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119892821219940112WTTW9ZZY#2222211222222021212290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989282120150702WT@9TPY9W22222112204304200000000 -T320230111111989282120220921WT@BYPPZ922222122204398100000000120180527WT@9TPY9W22222112204398200000000 -T12023011111198934822000403891110213110576300000000000004930540000000000000000000000000000000000222222000000352219012 -T2202301111119893481219910727WTTP0YBT#2222212222225012212110540623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989348120180404WT@@@BWWT22222112204312100000000 -T12023011111198940923500404532120423210939300000000000005960020000000000000000000000000000000000222222000001752219032 -T2202301111119894091219830904WT@9TPY9W2222222222222011208290035723011800000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T2202301111119894091219830904WT@9TPY9W2222211222222021204290035723011800000000000000000000000000000000000000000000000000000000000000030000000000000000000000 -T320230111111989409120160914WT@9TPY9W22222222204398200000000120090711WT@9TPY9W22222212204306200000000 -T12023011111198956925900402631120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111119895691219980512WTT0ZZ@#Y1222222222221013212190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111198960725800401871110213110611300000000000002020010000000000000000000000000000000000222222000000002229012 -T2202301111119896071219810102WT@#0Y@PY2222212222221012214110114921011935000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111989607120080902WT@WW@WT#22222122204308100000326 -T12023011111198973325000413201120533111034113920000000007710040000000000000000000000000000000000222222000000002229022 -T2202301111119897332219840921WT@YYBT9P1222222222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989733120060108WTTPYPW@P12222222204310100000000120050523WTTWBP@0Y12222222204312100000000 -T320230111111989733120150408WT@Y9TWY@12222122204302100000000120130202WTTWTPPB@12222122204303100000000 -T12023011111198978524200409091120233120000101680000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111119897853219850113WTT#@TT#W2222212222222012212120006013069900000000000000000000000000000000000000000000000000000000000000541800000000000000000000 -T320230111111989785120100322WTT@#B0W#22222112207304100000000 -T12023011111198980924100405611120613111339300000000142201550750000000000000000000000000000000000222222000008542219012 -T2202301111119898091219910512WT@Z@YT0B1222222222223012212110392121011724000000000000000000000000000000000000000000000000000000000000170700000000000000000000 -T320230111111989809120070901WTT@PPZP#12222212204308100000000 -T320230111111989809120160327WTT90T@ZT12222112204398100000000120140312WT@0Z#W#@12222112204301100000000 -T320230111111989809120210213WTT9@0BW012222112204398100000000120190227WTTB#P#@012222122204398100000000 -T12023011111198985120600402141120332110740300000000000005280140000000000000000000000000000000000222222000000002229022 -T2202301111119898512219910418WTT0Z9TYW2221222222211012211110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111989851120160121WT@9#B09#22222112204398100000000120130727WT@YT9B0Z22212222204302100000000 -T12023011111198986220800411601120213110605300000000000004030130000000000000000000000000000000000222222000000142219012 -T2202301111119898621219910911WT@B9@@PW2222212222221012212110253523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000125 -T320230111111989862120220721WTTPPBWPY22222122204398100000000 -T12023011111198986822000406191120213110599300000000000003160190000000000000000000000000000000211122222000000012219012 -T2202301111119898681219850123WTTWZ#T#Y2222212222221012216110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989868120210413WTT#99YB922222122204398100000000 -T12023011111198989422000413732120423211034300000000000007710030000000000000000000000000000000000222222000000002229032 -T2202301111119898941219910923WT@PT0ZP92222221222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119898941219910123WTT09W00W2222222222222021212290035723011800000000000000000001000000000000170001000000000000000000090000000000000000000000000000 -T320230111111989894120190427WT@9#WWWT22222212204398200000000120170904WT@@PYP9922222222204398200000000 -T12023011111198989822700408351110412111034300000000000000610310000000000000000000000000000000000222222000003982219012 -T2202301111119898981219820423WT@YB@Z0Z2221222222225012203210481223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989898120130327WT@ZWTB#Y22212212204301200000000 -T320230111111989898120210104WT@P#P9#Z22212222204398100000000120200918WTTYY00YB22212212204398100000500 -T12023011111198990525200414061120233110516300000000000004170300000000000000000000000000000000000222222000000002229022 -T2202301111119899052219690104WT@WZ@PT02222212222214012216110263413089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111989905120070912WTTZ#@PTP21222212204309100000000 -T12023011111198990820600402131120213110611110570000001505280070000000000000000000000000000000000222222000000002229012 -T2202301111119899081219910404WT@@#Z#BZ2222212222225012216110283223011400000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111989908120200401WTT@Y9#0P21222212204398100000000 -T12023011111198992820600414871120233110611300000000000004170530000000000000000000000000000000000222222000000002229022 -T2202301111119899283219750327WT@B90Y992222212222225012212110293113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989928120160507WTTT#9TB#12222112206398100000000 -T12023011111198993724700406701120212110598107590000000505280410000000000000000000000000000000000222222000000002229072 -T2202301111119899371219860702WTTYBY#002221222222221012210110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989937120170504WT@ZBZWTB22212222204398100000000 -T12023011111198999324100410041120313110835300000000000106540220000000000000000000000000000000000222222000000002229012 -T2202301111119899931219920902WT@ZWYZP#1222212222223012216110213921011826000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111989993120130107WTT00PZ9W12222122204302100000000120090113WTT@Z9Z9912222122204307100000000 -T12023011111199005023500410681120522111211300000000056407710230000000000000000000000000000000000222222000000002229012 -T2202301111119900501219850108WTTPY00##2122221222223011216110283223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119900501219940127WT@YWTWTZ2222212222221011212110223823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990050220160418WTTZ#Z#ZY12222112109198109140000 -T320230111111990050120210701WT@9BP9BP22222122204398100000000120200305WT@BYB@PT22222122204398100000000 -T12023011111199008922000407411120212110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111119900891219870118WT@ZPPB#T1221222222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990089120220401WTT#9TPPZ12212222204398100000000 -T12023011111199010725600411521120333120000300000000000005280320000000000000000000000000000000000222222000000002229022 -T2202301111119901073219780924WT@ZPPWPY1222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990107120070708WT@#Y@TBZ22222122209308100000050120060421WTTW@B0WT22222122209309100000050 -T12023011111199012925900406841120933111480300000000227311650100000000000000000000000000000000000222222000000002229022 -T2202301111119901292219830224WT@YYBT9P1222222222222012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119901292219770409WT@YYBT9P1222221222221022206990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990129120050924WT@PPB0YW12222222204311100000000 -T320230111111990129120130101WT@09YPTP12222222204303100000000120080714WT@9#TZ#B12222222204308100000000 -T320230111111990129120160114WTTB@T#9Y12222212204398100000000120140727WTTW0TY0012222212204302100000000 -T320230111111990129120180708WTT@B9PZY12222222204398100000000120170407WTTZB#@Y012222222204398100000000 -T12023011111199016520600402141120413111026300000000000007710040000000000000000000000000000000000222222000000002229012 -T2202301111119901651219910326WT@W0Y@W02222212222221012212110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990165120110901WTTWYZ0#B22222112204305100000070 -T320230111111990165120220421WT@#0@#Z#12222112204398100000000120200113WT@WT9ZPT12222122204398100000000 -T12023011111199017923900403801120513110939300000000000006540240000000000000000000000000000000000222222000000002229012 -T2202301111119901791219990104WT@9P#TWZ2122222222222012216190481223011800000000000000000000000000000000240001000000000000000000000000000000000000000000000980 -T2202301111119901792219950718WTT9PP09B2222211222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111111990179120180401WT@Y9Z9@W21222212204398100000000 -T320230111111990179120230424WTTP#ZY#P22222122204398100000000120190318WT@9PWYPZ21222212204398100000000 -T12023011111199031824700406742120213210611110860000000005280040000000000000000000000000000000000222222000000002229032 -T2202301111119903181219900712WTTPZ0WWT2222221222225012214210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990318120180918WTT#99W@@22222212204398200000000 -T12023011111199035220600414871120212110474111470000220001350610000000000000000000000000000000000222222000003932219072 -T2202301111119903521219830414WT@Z@9WP#2222212222221012212111380021010913000000000000000001000000000000000000000000000000000000180000078400000000000000000000 -T320230111111990352120180912WTT@90#WW22222122204398100000000 -T12023011111199040924500405781120213110611109120000006305280310000000000000000000000000000000000222222000000002229012 -T2202301111119904091219990109WT@P9TPPZ2222212222225012212110283223011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111990409120200427WT@YZBP@Z22222112204398100000000 -T12023011111199047820600414771120213110611300000000000305280040000000000000000000000000000000000222222000000002229012 -T2202301111119904781219980923WTT#TWYZ92222222222221012216110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990478120210101WT@Z9P##Z22212222204398100000000 -T12023011111199050521700401411120113120000300000000000004170050000000000000000000000000000000000222222000000002229012 -T2202301111119905051219840921WT@Y@W@ZP2222212222225013216110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111199051220800414651120512111116300000000000008880210000000000000000000000000000000000222222000000002229012 -T2202301111119905121219860114WTTBT00T@1221222222221012216110312923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990512120090327WTTTZ0##B12212212204305100000000120080427WTTPZB0WT12212222204308100000000 -T320230111111990512120200723WT@WPYZ@Y12212222204398100000000120120327WTTPT99Z912212212204303100000000 -T12023011111199065725200408051120212110407300000000000005280300000000000000000000000000000000000222222000000002229072 -T2202301111119906571219860901WTT0#9W#Z2222212222221012211110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990657120080127WT@B0##@022222112204308100000000 -T12023011111199071825900402721120613111645129270000007008880190000000000000000000000000000000000222222000000002229012 -T2202301111119907181219890312WT@#TPZZW1222222222225012213110263423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990718420070723WT@Z#P9W012222212104308109140000 -T320230111111990718120210727WT@0B@TT012222122204398100000000120150702WTTW#P@YP12222122204398100000000 -T320230111111990718120220727WT@B@ZPBT12222112204398100000000120220727WT@BWZ9P#12222122204398100000000 -T12023011111199079725000414191120622111339300000000000010090100000000000000000000000000000000000222222000000002229012 -T2202301111119907971219900107WT@@@ZBZZ2222212222222011213290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119907971219860224WTTP@TYT@2222211222222021213290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990797120100913WT@BY00Z022222122204305200000000120080905WT@Z0Z@9Y22222112204307200000000 -T320230111111990797120160721WTT@0Z9ZW22222122204398200000000120130112WT@@#Y9YP22222122204301200000000 -T12023011111199085220600402131120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111119908521220030412WTTY@0WB@1222212222221012211110105023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111990852120220927WT@B90P#@12212212204398100000000 -T12023011111199095125200410591120333120000300000000270005280990000000000000000000000000000000000222222000000002229022 -T2202301111119909513219610327WTTY9TP9#2222212222222012212110006011069905000000000000000000000000000000000000000000000000000000000000533100000000000000000000 -T320230111111990951120110113WTTY09YBP22222122206305100000050120090413WTT0@BZ@Y22222112206307100000050 -T12023011111199100423900408801110212110559300000000000004680010000000000000000000000000000000000222222000000002229012 -T2202301111119910041219920223WT@B0#@0Z2222112222221012213110095121010104000000000000000000000000000000000000000000000000000000000000023800000000000000000000 -T320230111111991004120220426WTT@ZWPP#12221112204398100000000 -T12023011111199105624200404891120712111480300000000000011600770000000000000000000000000000000000222222000400002229072 -T2202301111119910561219840212WTTZPP#001222122222221012212110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111991056120090108WTT90Y9TP12222212204305100000000120070913WTT9Y#T9W12212222204308100000000 -T320230111111991056120100901WT@WZZTBY12222122204306100000000120090108WTTZZYTT012222222204306100000000 -T320230111111991056120220307WT@ZTW#PY22222122207398100000000120110318WTTY#90@P12222222204304100000000 -T12023011111199111924700405902110323210740300000000000004000010000000000000000000000000000000000222222000000002229032 -T2202301111119911191219950527WTTT#99#P2222211222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119911191219970712WT@Y9BZ#Y2222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111991119120210121WTT0Y0B@Y22222122204398200000000 -T12023011111199113022000412231120212110611300000000000005280200000000000000000000000000000000000222222000000002229072 -T2202301111119911301219790927WT@PW9ZTP2222212222221012216111140023011800000000000000000000000000260000000000000000000000000000000000000000000000000000000000 -T320230111111991130120070407WT9TT9BWP22222122204309100000000 -T12023011111199116124100402401120213110611300000000000003160550000000000000000000000000000000211122222000000012219012 -T2202301111119911611219910123WTT9#Y9BP2222212222225012211110560423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111991161120110513WT@YW@#BP22222122204305100000000 -T12023011111199137425800401871120333110704300000000000005280580000000000000000000000000000000000222222000000002229022 -T2202301111119913743219640505WTTBT@YWY2222212222222012211110233713069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111991374120080701WT@YPB@T012222222206305100000000120050313WTT@0ZT@Y22222122206308100000000 -T12023011111199148224200408571110423110939300000000000003730010000000000000000000000000000000000222222000000002229012 -T2202301111119914821219910913WTTY#0#TY2222211222222011298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119914821219910302WTT0W@B0Z2222212222222021298290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111991482120170413WTTYYW@TT22222212204398200000000120120512WTTP0YW@T22222212204305200000000 -T12023011111199155824700409322120423210939300000000000007710050000000000000000000000000000000000222222000000002229032 -T2202301111119915581219920321WT@9TPY9W1212212222221011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119915581219900308WT@9TPY9W2222211222221011213290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111991558120190312WT@9TPY9W22222122204398200000000120150912WT@9TPY9W12222112204301200000000 -T12023011111199160024200403461120233120000300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111119916003219730923WTT@0WY@W2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111991600120200104WTT@W9#WY22222122206398100000050 -T12023011111199167820600414771120113110376300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111119916781220000112WTTYT@0@Z2221212222221013212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111199168823500412161120313110835300000000001506540020000000000000000000000000000000000222222000000002229012 -T2202301111119916881219830326WT@T@@B0B2222212222221012213110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111991688120210902WTT9@Z#PT22222112204398100000384120110723WT@BB##YZ22222122204304100000384 -T12023011111199176224700410421120333120000300000000000005280400000000000000000000000000000000000222222000000002229022 -T2202301111119917623219530904WTT9BP@YT2222212122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001157000015850000 -T320230111111991762120180218WT@YYYYZB22222122206398100000000120170127WT@#W0TZY22222112206398100000000 -T12023011111199199622500410151120333120000300000000000005280050000000000000000000000000000000000222222000000002229022 -T2202301111119919963219650318WT@T0Z9WT1222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000252000000000000000000000 -T320230111111991996120170301WT@Z@0PZW22222122208398100000000120160408WT@ZBWPZ022222122208301100000000 -T12023011111199202124200409091120332110740300000000000005280100000000000000000000000000000000000222222000000002229022 -T2202301111119920213219680312WT@Z@PZW02221222222215012216110600013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111992021120070421WTT#9B#W922212222206308100000050120060218WTTZY9PZT22212222206309100000050 -T12023011111199204224500405781120433120000300000000000006540390000000000000000000000000000000000222222000000002229022 -T2202301111119920423219690907WT@YYBT9P1222212222222012203910006011079940000000000000000000000000000000000000000000000000000000000000292400000000000000000000 -T320230111111992042120130421WTT9WYZT@12222212206303100000000 -T320230111111992042120190405WTT0@WWTP12222112206398100000000120160907WTTW9#Z##12222122206398100000000 -T12023011111199205725900402122110413211034300000000000007710090000000000105001000000000000000000222222000000002229032 -T2202301111119920571219990509WT@PTZP@B1222212222212012212190065423089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T2202301111119920571219980727WT@P@@TWZ2222211222222022211190025822011900000000000000340001000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992057120220411WTTZ#0#WY22222122204398100000000120190523WT@@B9WZT12222122204398100000000 -T12023011111199222825900402721120313110835300000000015106160620000000000070002000000000000000000222222000000382219072 -T2202301111119922281219730112WT@BPBTZ01222222222225012210110630023011800000000000000000002000000000000000000000000000000000000280000015000000000000000000000 -T320230111111992228120090111WTT@PWZY022222212204308100000000120050202WTT@WPBZW12222212204312100000000 -T12023011111199223825900402721110413111034300000000000003280010000000000000000000000000000000000122222000000002229072 -T2202301111119922381219770909WTTP@Z#0#1222222222223012212111580023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992238120090902WT@@Y9#TY12222222204306100000000 -T320230111111992238120180912WT@0TT9@012222212204398100000100120150112WTTYP@TYT12222212204398100000000 -T12023011111199224722500410151120323110826300000000057106540290000000000000000000000000000000000222222000000002229012 -T2202301111119922471219650318WT@P90ZYZ2222212222222011212190392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119922471219690404WT@Z0#PY92222211222222021214190530723011800000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111992247120050409WTT0B0ZTB22222112204310100000000 -T12023011111199224823500405271120433111025300000000000006540510000000000000000000000000000000000222222000000002229022 -T2202301111119922483219720426WTT9BZBPW2221222222225012212120800011069908000000000000000000000000000000000000000000000000000000000000048000000000000000000000 -T320230111111992248120070211WT@WW9BW@12212212206308100000000 -T320230111111992248120160427WT@BBYW#Z22212112206398100000000120140323WTTYB0T9#22212122206301100000000 -T12023011111199231920600402141120632111269300000000000008880990000000000000000000000000000000000222222000000002229022 -T2202301111119923192219760113WT@#T90ZP2221222222211012212120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111992319120060205WTTYYPY0Z22212222204309100000000 -T320230111111992319120100112WTTB@@@PB22212212204305100000000120070311WTT##99P#22212212204308100000000 -T320230111111992319120170222WTTBZTZ@@22212122204398100000100120110718WTTPY90#Z22212212204304100000000 -T12023011111199232223500404531120313110835300000000000006540020000000000000000000000000000000000222222000000002229012 -T2202301111119923221219940213WTTB@#9#B2221222222223012209110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992322120190223WT@WT@BZ922212212204398100000000120170409WTT@@B@#Y22212212204398100000000 -T12023011111199233922000408891120522111116300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111119923391219880104WT@B#P@W02212221222222011216290065423011800000000000000000000000000000000050001000000000000000000000000000000000000000000000000 -T2202301111119923391219950701WT@TZYTY92212222222222021206290065423011800000000000000000000000000000000120002000000000000000000020000000000000000000000000000 -T320230111111992339120160123WT@Y#0YWB22122222204398200000000 -T320230111111992339120210104WT@9#Z###22122212204398200000000120180112WT@WWT0Y#22122212204398200000000 -T12023011111199238524200414721120212110611300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111119923851219990402WTT@0TY#Z2222212222221012212110431723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992385120170321WTTTWPB0W12222222204398100000000 -T12023011111199240424200414721120313110835300000000027504900240000000000000000000000000000000163222122000000012219012 -T2202301111119924041219860318WTT#TT9092221212222221012212120501021011730000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992404120170101WT@PW0Y@022212212204398100000000120060718WTT9PBZ0922212112204309100000000 -T12023011111199250621700403821120433110939300000000000006540970000000000000000000000000000000000222222000000002229022 -T2202301111119925063219750218WTT#WT9@Z2222212222214012216110640013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111992506120100927WT@ZW9WZP12222122206305100000000 -T320230111111992506120130718WT@Z9P9PT11222222206301100000000120110409WT@0YY99P12222112206304100000000 -T12023011111199252320800411601110213110611300000000000000170010000000000000000000000000000000000222222000000002229012 -T2202301111119925231219870726WT@@0Z@@#2222211222225012212120025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992523120070505WTTP9TZY922222112204309100000000 -T12023011111199254724200403511110213110611104380000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111119925471219920923WTT9Y9ZW02221221222221012212110144623011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111992547120170422WTT9TZ9PY22212212204398100000000 -T12023011111199260825900402831120313110835300000000000006540590000000000000000000000000000000000222222000000002229012 -T2202301111119926081219880724WTTBB9YYB2222212222221012211110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992608120220721WT@T9@9TB12222212204398100000000120100126WTT90PB@Z12222122204305100000000 -T12023011111199267624700408301120313110818300000000000006540510000000000000000000000000000000000222222000000002229012 -T2202301111119926761219860704WTTZ#@#002221222222221012216110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992676120160912WT@0PTY0Y22212222204398100000000120090912WT@#0ZTZZ22212222204306100000000 -T12023011111199271524200407431120233110516300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111119927153219430901WT@#W0PWB1222221122225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002363000000000000 -T320230111111992715120170722WT@9#P0#Y12222112206398100000000 -T12023011111199276920900411721120233120000300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111119927693219800407WTTPTWYZP2222212222221012214120501011069940000000000000000000000000000000000000000000000000000000000000385800000000000000000000 -T320230111111992769120110201WT@Y9B9B922222112207304100000000 -T12023011111199277822000403891120233110516300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111119927783219570109WTT9#9#T@2222212122225012210110342613069900000000000000000000000000000000000000000000000000000000000000000000001172000000000000 -T320230111111992778120100104WTT@YY00922222122206307100000000 -T12023011111199281925600411521120113110376300000000010004170050000000000000000000000000000000000222222000000002229012 -T2202301111119928191219980124WT@Z0ZBWZ2222122222225013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111199283722000411981120213110611122350000000005280160000000000000000000000000000000000222222000000002229012 -T2202301111119928371219890726WTTPZ#9@W2221222222221012213110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992837120210923WTTBPYYWZ22222122204398100000000 -T12023011111199292120600407031110233110258300000000000003630010000000000000000000000000000000000222222000000002229021 -T2202301111119929213219540312WTTP9#0TZ2222212222221012298110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111992921120170727WT@W#99BB22222112209398100000000 -T12023011111199301821000403201120312110797129430000000006540490000000000000000000000000000000000222222000000002229012 -T2202301111119930181219950702WTTB@0Y0@2222212222221012208110501023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111993018120200414WTTT0PY@T12222122204398100000000120190102WT@P@YY0#22222112204398100000000 -T12023011111199325221000405411120213110599300000000000903160230000000000000000000000000000000211122222000000012219012 -T2202301111119932521219840402WT@@YTW#@2222211222225012213110233723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111993252120130726WTTWY@TY022222112204302100000000 -T12023011111199332620600414771120212110611300000000000005280510000000000000000000000000000000000222222000000002229072 -T2202301111119933261219820421WTT#WW#9#2222212222221012210111350023010900000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T320230111111993326120050123WTT#W0PPZ22212122204310100000000 -T12023011111199333520600400871110323110740300000000000000210010000000000000000000000000000000000222222000000002229012 -T2202301111119933351219940912WTTZ@@YPY2222212222222011212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119933351219900402WTTZZ@ZZ#2222211222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111993335120150411WTT0WP9TW22222122204301200000000 -T12023011111199334720600402141120332110740300000000000004170420000000000000000000000000000000000222222000000002229022 -T2202301111119933472219920212WT@WZZYTZ1222212222215012212110006011089902000000000000000000000000000000000000000000000000000000000000012000000000089600000000 -T320230111111993347120190212WTTYYWWW012222122204398100000000420120504WT@@9@BZ#12222112104305109140000 -T12023011111199341922100406981120232110516300000000024204170190000000000000000000000000000000000222222000000002229022 -T2202301111119934193219620405WT@PZ@9TW2222212122223012213110006013069900000000000000000000000000000000000000000000000000000000000000000000001669000008710000 -T320230111111993419120100323WTTB0@BB#22222112206304100000050 -T12023011111199348520800410781120233120000300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111119934853219980108WT@9P@YT02222212222222012212110006011069940000000000000000000000000000000000000000000000000000000000000253500000000000000000000 -T320230111111993485120140712WT@@TB9@#22222112207301100000000 -T12023011111199365625000406021120313110835129430000000006540150000000000000000000000000000000000222222000000002229012 -T2202301111119936561219940422WTTZZ#PYW1222222222221012212110164423010900000000000000000000000000000000000000000000000000000000370000000000000000000000000000 -T320230111111993656120200423WT@BZ0@TY12222212204398100000000120180718WTTZTB9ZP12222212204398100000000 -T12023011111199368124700409321120723111480300000000000011650040000000000000000000000000000000000222222000000002229012 -T2202301111119936811219880905WT@9TPY9W2222212222222011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119936811219870126WT@9TPY9W2222211222222021213290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111993681120090507WT@9TPY9W22222112204307200000000 -T320230111111993681120130223WT@9TPY9W22222112204303200000000120110413WT@9TPY9W22222112204305200000000 -T320230111111993681120200113WT@9TPY9W22222112204398200000000120150313WT@9TPY9W22222122204398200000000 -T12023011111199372622000409971110212110493300000000000004160990000000000000000000000000000000000222222000001532219072 -T2202301111119937261219790701WT@Y0Z#@91222122222221012212111580023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000511 -T320230111111993726120050427WT@0@@PBP12222222204311100000000 -T12023011111199380723500408281120232110516300000000000002160150000000000000000000000000000000000222222000002012219022 -T2202301111119938073219690123WT9TT@PW92222212222225012213110045611069946000000000000000000000000000000000000000000000000000000000000256000000000000000000000 -T320230111111993807120120204WT@BTTTPZ22222112206303100000201 -T12023011111199384921900412441120323110516300000000008001170100000000000000000000000000000000237122222000003002219012 -T2202301111119938491220020918WT@WZWW902222211222221011211190114921011210000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T2202301111119938491220030122WT@Z@P#@Z1222212222221011209190114921011210000000000000000000000000000000000000000000000000000000000000060000000000000000000000 -T320230111111993849120200207WTT000P9P22222122204398100000000 -T12023011111199385422000404841120313110802300000000013002020140000000000000000000000000000000000222222000004522219012 -T2202301111119938541219910313WTTTZZ9Y#1122222222221012216120451521011829000000000000000000000000000000000000000000000000000000000000180400000000000000000000 -T320230111111993854120150412WTTY9WBT011222212204301100000000120130718WTT0B@ZYB11222212204302100000000 -T12023011111199395424700406701120233120000300000000000004170310000000000000000000000000000000000222222000000002229022 -T2202301111119939543219650112WT@Y0YPYY2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111993954120170212WT@YB90T922222122209398100000000 -T12023011111199399921000408061120313110835300000000000004170030000000000000000000000000000000000222222000000002229012 -T2202301111119939992220040527WT@0##PT92221221222221012212110006011050110000000000000000000000000000000000000000000000000000000000000057500000000000000000000 -T320230111111993999120220312WTT00#TYY12222222204398100000000220050114WTTTWB#@912222222210211100000000 -T12023011111199403022700408351120333120000103660000000005280520000000000000000000000000000000000222222000000002229022 -T2202301111119940303219690324WT@#YYBP91222222222223012213110065411069940000000000000000000000000000000000000000000000000000000000000354600000000000000000000 -T320230111111994030120170314WTTY9ZWP#12212212206398100000000120160901WTTP0ZP@T12212222206398100000000 -T12023011111199405520600414251120513111119300000000200004420300000000000000000000000000000000000222222000004462219012 -T2202301111119940551219800404WTTZ#9B0@2222211222222012212110352521011829000000000000000000000000000000000000000000000000000000000000178200000000000000000000 -T320230111111994055120100327WTTPWT@#Z12222122204305100000000120060112WT@BZY9TY12222112204310100000000 -T320230111111994055120140721WTTZW#PPW12222122204302100000000120120404WT@9BBWZ912222112204303100000000 -T12023011111199424422900404221120213110598300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111119942441219940512WTTPB9@PW1221222222221012212120045623010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994244120210127WT@BW#W@Z22222112204398100000000 -T12023011111199426025600414551120523111116300000000000008880060000000000000000000000000000000000222222000000002229012 -T2202301111119942601219930107WT@Y9009P2122222222221011212190194123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119942601219910707WTTB@#@0T2221211222221011208190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994260120170926WTTZZ@9T@21212112204398100000000 -T320230111111994260120190304WT@P9Y@##21212122204398100000000120180712WTTWWZ@@T22222112204398100000000 -T12023011111199431323500408281120233110611300000000000004170270000000000000000000000000000000000222222000000002229022 -T2202301111119943133219620407WTT0#Y09P2222212222211012216110372313069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111994313120140504WT@9P@YTB22222122206302100000000 -T12023011111199452922000408341120213110611300000000001005280030000000000000000000000000000000000222222000000002229012 -T2202301111119945291219960504WT@Z9PW0@2222212222221012213110045623011700000000000000000000000000280000000000000000000000000000000000000000000000000000001439 -T320230111111994529120170118WT@0W#P@B22222112204398100000000 -T12023011111199459724200404891120512111116300000000000008880690000000000000000000000000000000000222222000000002229072 -T2202301111119945971219890324WTTPY9@9Z2221222222221012212110700023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994597120120226WTT#Y@TP922212212204305100000000120110201WT@@#ZZB#22212212204305100000000 -T320230111111994597120220927WTTZWZZ##22212212204398100000000120220927WTTPZYP0T22212212204398100000000 -T12023011111199475624500405941120233110516300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111119947562219880123WT@WBWT@Y2212211122211012216110006013109900000000000000000000000000000000000000000000000000000000000000000000000772016200000000 -T320230111111994756120160912WTTB@PZYP22222212204398100000050 -T12023011111199475920800411931120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111119947593219480905WT@99B9B92222212122213012213110243613069900000000000000000000000000000000000000000000000000000000000000000000000594034000000000 -T320230111111994759120080923WT@YB9WPZ22222122206308100000000120080923WT@ZWY90P22222122206308100000000 -T12023011111199479120600400871120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111119947911219920707WTT#@0@#W2222211222221012211110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994791120130112WT@W@T#W022222112204302100000000 -T12023011111199482624200403511120313110835300000000021606540020000000000000000000000000000000000222222000000002229012 -T2202301111119948261219950311WT@09P#TP2222212222221012212110332723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994826120220327WT@YY@PZ922222112204398100000000120160307WTTWZ#BYW22222122204398100000000 -T12023011111199485224200414351120312110779128890000000004820780000000000000000000000000000000000222222000001722219072 -T2202301111119948521219840113WTT@ZP#PZ1222212222221012216110790021011811000000000000000000000000000000000000000000000000000000000000068600000000000000000000 -T320230111111994852120210127WTTT9@TY#12222112204398100000000120200309WT@B#YTPY22222112204398100000000 -T12023011111199486120200409311120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111119948611219980118WTTYZP@YP2222212222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994861120160727WTTBW9B#B22222122207398100000000 -T12023011111199487125800413571120323110611300000000009004170040000000000000000000000000000000000222222000000002229012 -T2202301111119948711219970421WTT0WW#TY2222212222222011212190055523011800000000000000000000000000000000000000000000000000000000020000000000000000000000000000 -T2202301111119948712219950218WT@TYP0#T2222211222222021212190006013051800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994871120230422WT@#9Z#WP22222112204398100000000 -T12023011111199487224200403511120533111116300000000000007710720000000000000000000000000000000000222222000000002229022 -T2202301111119948723219820526WT@@90ZB@2222122222223012212120006013069900000000000000000000000000000000000000000000000000000000000000292400000000000000000000 -T320230111111994872120120723WTTTWZBZP21222212207305100000016120090921WT@W#0W9T22221212207308100000000 -T320230111111994872120130905WT@#PW0@922221212207304100000016120130421WTT###9B022221212207304100000000 -T12023011111199487920600414771120213110376300000000000003160150000000000000000000000000000000211122222000000012219072 -T2202301111119948791219870723WTTYZWYB92222212222221012212110760023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994879120120501WT@Y0@0TY22222112204304100000000 -T12023011111199492720800414651120212110583300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111119949271219740412WT@#P#@BB2221222222221012213111210023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000050 -T320230111111994927120100302WTT@@ZZ9Y22212222204305100000000 -T12023011111199494525900402721120333110376300000000010504170030000000000000000000000000000000000222222000000002229022 -T2202301111119949452219750927WT@YYBT9P1222222222222012203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119949452219730409WT@YYBT9P1222221222222022203990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111994945120070908WTTPZ@T@Z12222222204308100000000 -T12023011111199505222000410051120923111922300000000000014160020000000000000000000000000000000000222222000000002229012 -T2202301111119950521219870212WTTZB0#TB2222211222222011213290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119950521219900326WTTPY@9002222212222222021212290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111995052120100127WTT9T@Z0922222112204306200000000 -T320230111111995052120130426WTT99YZ@P22222112204303200000000120120514WT@#PTW9Y22222122204304200000000 -T320230111111995052120160901WT@##Y9W922222112204398200000000120140304WT@0##@ZW22222112204302200000000 -T320230111111995052120210721WTTY9WPY922222112204398200000000120190713WT@YPYZ0T22222122204398200000000 -T12023011111199532424700409322120213210611300000000000003160340000000000000000000000000000000211122222000000012219032 -T2202301111119953241220010914WTT9BB#YZ2222122222221012209910352523011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111995324120200414WTTZBZZTT22221212204398900000000 -T12023011111199544624700408301120233110516300000000000004170160000000000000000000000000000000000222222000000002229022 -T2202301111119954463219730901WT@W0TWW02222212222215012207110015913069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111995446120130423WTT@WBPZ022222122206303100000000 -T12023011111199563924200407271120213110611300000000000405280080000000000000000000000000000000000222222000000002229012 -T2202301111119956391219860927WTTZ0YPYW2122221222225012216110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000003081 -T320230111111995639120050511WT@P@WTPY22222122204308100000000 -T12023011111199577122000402371120212110611112980000010005280070000000000000000000000000000000000222222000000002229012 -T2202301111119957711219940722WT@Z0ZPB02221222222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111995771120200401WT@P09##922212222204398100000000 -T12023011111199577422000410051120212110611300000000100005280140000000000000000000000000000000000222222000000002229072 -T2202301111119957741219890304WT@#@Z9WW2222212222221012212110870023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111111995774120060427WTTW#T@@911222212204311100000000 -T12023011111199581924200402541120213110611300000000000005280630000000000000000000000000000000000222222000000002229072 -T2202301111119958191219900314WT@9@B0ZY2122222222221012211110750023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111995819120160302WTTWPTTTT21222212204398100000000 -T12023011111199584324100402401120233110185300000000000004170080000000000000000000000000000000000222222000000002229022 -T2202301111119958435219770118WT@@PP9@P2222212222225012214110253513069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111995843120090122WT@W#@P0T22222122208307100000000 -T12023011111199588322000409411110233110323300000000000000800010000000000000000000000000000000000222222000000002229021 -T2202301111119958832219880904WT@YYBT9P1222222222221012206920006011079902000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111995883120160413WTTP#BWP012222212204398100000000 -T12023011111199594824700406702120323210766300000000000006540050000000000000000000000000000000000222222000000002229032 -T2202301111119959481219890301WT@9TPY9W1222221222222011212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119959481219900918WT@9TPY9W1222222222222021212290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111995948120120726WT@9TPY9W12222212204303200000000 -T12023011111199599424200414721120333110611300000000000005280330000000000000000000000000000000000222222000000002229022 -T2202301111119959942219780727WT@YYBT9P1222212222221012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111995994120130123WT@#0WW@@12222222204301100000000120090327WTT#TW@9W12222112204305100000000 -T12023011111199611520600412561110313110740300000000000004000040000000000000000000000000000000000222222000000002229012 -T2202301111119961151219850305WTTY9PZ0@2222212222221012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996115120180926WTTY#TW9W22222122204398100000000120110721WT@BTT9#P22222112204305100000000 -T12023011111199615724200407311120213110611300000000000005280080000000000000000000000000000000000222222000000002229072 -T2202301111119961571219870423WTT#P#WW92222212222225012212110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996157120160323WT@PTW0BP22222112204398100000000 -T12023011111199617224900403221120512111116300000000076107990340000000000000000000000000000000000222222008800012219072 -T2202301111119961721219840313WTT0Y@B##2222212222225012216110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T320230111111996172120150911WT@99W9@W22222122204398100000000120110713WT@##W09P22222112204305100000000 -T320230111111996172120200127WTTY0P99T22222112204398100000000120150911WTT0WTZPW22222122204398100000000 -T12023011111199617323700414331120213110611300000000001205280150000000000000000000000000000000000222222000000002229012 -T2202301111119961731219960113WT@TZ9T0@2212222222221012212120164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996173120220104WTTT#YPZ@22212212204398100000060 -T12023011111199618324700405831120423110939300000000305007710040000000000000000000000000000000000222222000000002229012 -T2202301111119961831219810211WT@9P9PT@2222212222222011214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119961831219820423WT@9#Z90T2222211222222021214290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996183120180118WTTZTZB0P22222112204398200000000120070107WTT@BTYWB22222112204309200000000 -T12023011111199629022000410052120323210790300000000000001350100000000000000000000000000000000000222222000005192219032 -T2202301111119962901219900123WTTT@@YWT2222211222222011212290055521011934000000000000010000000000000000000000000000000000000000000000207500000000000000000000 -T2202301111119962901219970304WT@@TP#B92222212222222021212290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996290120210909WTTW#@Z@922222112204398200000000 -T12023011111199648222000409971120233110258300000000000004170940000000000000000000000000000000000222222000000002229022 -T2202301111119964822219780305WT@YYBT9P1222222222221012298920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996482120080913WT@0BW#WZ12222212204307100000000 -T12023011111199658324700406741120232110557300000000000004170670000000000000000000000000000000000222222000000002229022 -T2202301111119965835219820721WT@T@P9W92222212222221012216110461413069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996583120200311WTTYBZPWZ22222112209398100000000 -T12023011111199672420400400211120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111119967243219810723WT@WBPBTZ2122222222225012216110006011069990000000000000000000000000000000000000000000000000000000000000560200000000000000000000 -T320230111111996724120070202WTT@BZPYY22222122207308100000000 -T12023011111199686720600409771120213110598300000000000005280590000000000000000000000000000000000222222000000002229012 -T2202301111119968671219800122WT@@@90W#2222212222221012213110600023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996867120170321WTTY#@@##22222122204398100000000 -T12023011111199689424200407271120412110939300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111119968941219830704WTTYTT#001222222222221012210110560423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111996894420060722WTT0@9Y9Y12222212104308109140000 -T320230111111996894120130701WTTZWP0WY12222222204302100000000120090713WTTZYT9W012222112204305100000000 -T12023011111199690322000410051120333120000123950000000005280700000000000000000000000000000000000222222000000002229022 -T2202301111119969033219750109WTTW0WBB#2221222222221012213120332711069942000000000000000000000000000000000000000000000000000000000000330600000000000000000000 -T320230111111996903120180723WTTTBZ@YT12212212206398100000000120170427WTT00#0T#22212212206398100000000 -T12023011111199723622000405321120312110834300000000024906540110000000000000000000000000000000000222222000000002229012 -T2202301111119972361219880423WT@P#WWZW2221222222223012212210253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111997236120160701WTTPYB9BY22222212204398100000050120130324WT@0@Z0@W22212212204398100000050 -T12023011111199725025000401171120323110766300000000010006540050000000000000000000000000000000000222222000000002229012 -T2202301111119972501219910104WT@0BWTB@2222221222222011214290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119972501219910421WT@WWYZ9B2222212222222021215290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111997250120170904WTTBB0W9P22222122204398200000000 -T12023011111199731722600411371120233110516300000000000004170200000000000000000000000000000000000222222000000002229022 -T2202301111119973173219610923WT@@WZBWT2222222122214012213120431713069900000000000000000000000000000000000000000000000000000000000000000000000678025600000000 -T320230111111997317120070112WTTT9YTPB22222122206309100000000 -T12023011111199740023500414281120213110364300000000000003160070000000000000000000000000000000211122222000000012219012 -T2202301111119974001219790927WT@WTP#BZ2222211222225012212110085223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111997400120120318WT@9BPZB922222112204303100000000 -T12023011111199742224900404261120233110516300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111119974222219800312WT@0Z@WWY2222212222211012212110332713089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111997422120140921WT@WYYP#W21222222204301100000050 -T12023011111199745722000411551120212110598300000000000005280060000000000000000000000000000000000222222000000002229072 -T2202301111119974571219820326WT@Y#ZP@P2221222222221012216120820023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111997457120070408WTT0WWWWT22212222204309100000000 -T12023011111199748920600404121120313110611300000000000006540450000000000000000000000000000000000222222000000002229072 -T2202301111119974891219770527WTTB#TTT02222212222221012212110800023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111997489120070724WTTZB9#W921222222204308100000000120050721WTTTW0P9#21222222204312100000000 -T12023011111199766025900406651120323120000300000000030005660040000000000000000000000000000000000222222000000882219012 -T2202301111119976601220000104WT@PZ0PY@2222212222222011212120045623011800000000000000000000000000000000000000000000000000000000000000332400000000000000000000 -T2202301111119976601219960521WTTP#@ZB#2222212222222021211190174323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111997660120200907WT@PZY0T912222122205398100000000 -T12023011111199791722000407412120213210598300000000000005280050000000000000000000000000000000000222222000000002229032 -T2202301111119979171219940502WTTW#ZBB02222212222221012298910065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111997917120140322WT@9TPY9W22222122204302900000000 -T12023011111199801920800411931120233120000300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111119980193219800312WT@ZB#9WB1122212222225012214110065411069962000000000000000000000000000000000000000000000000000000000000441300000000000000000000 -T320230111111998019120210502WTT#9B##012222112207398100000000 -T12023011111199821425600413441120333120000300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111119982143219400901WT@09WTW02222211212225012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000005635 -T320230111111998214120130113WTTB909Z922212212206302100000000120080722WT@TYP0T922222122206308100000000 -T12023011111199835522000409411120313110835300000000000005660020000000000000000000000000000000000222122000000002229072 -T2202301111119983551219860402WTTPP@#TY2222222222221012216110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111998355120170923WTTY0Z@BB22222122204398100000000120120312WTTT9@P0@22222212204301100000000 -T12023011111199881823700414331120233110517300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111119988183220010121WT@Y#BPZT2221222222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111998818120090314WTTYYW@Y@21222222207306100000000 -T12023011111199887020600414771120432110939300000000000006540960000000000000000000000000000000000222222000000002229022 -T2202301111119988702219830722WT@TP@@W92222212222211012209111450013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111998870120100501WT@P9B@Y022222112204304100000000 -T320230111111998870120220104WTT0T#ZWP22222112204398100000000120150423WT@#TPWPW22222122204398100000000 -T12023011111199896722100409491120212110610300000000000005280200000000000000000000000000000000000222222000000002229072 -T2202301111119989671219800312WT@P@9WWT2222212222223012212111500023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111111998967120120709WTT#@##WT22222122204303100000050 -T12023011111199901224700408301120213110611300000000000004550080000000000000000000000000000000000222222000000002229012 -T2202301111119990121219920701WT@@9Z@T@2222212222221012212110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111999012120200113WTT@9##9W22222122204398100000000 -T12023011111199918523500411471120313110764300000000030003890350000000000000000000000000000000000222222000002652219072 -T2202301111119991851219790701WT@BZ#WBW2222212222225012209191490023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111119991851219810407WTTZ@@#YW2222211122221012212190332723109900000000000000000000000000000000000000000000000000000000000000000000010265000000000000 -T320230111111999185120190407WT@#B0B@P22222112204398100000000 -T12023011111199927925900406841120632111057300000000000008880420000000000000000000000000000000000222222000000002229022 -T2202301111119992793219740702WT@W#9PZ@2122222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T320230111111999279120100224WT@9ZY#B921222212207305100000000 -T320230111111999279120190909WTTZBPZY021222212206398100000000120130904WT@TYWY@@21222212207302100000000 -T320230111111999279120210323WT@@W@TZY21222222207398100000000120200123WTTBBZ9YY21222222206398100000000 -T12023011111199928624200409731120213110611300000000000205280270000000000000000000000000000000000222122000000002229012 -T2202301111119992861219940926WTTZ@TZ@@2222212222221012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111999286120210123WT@ZBYWWP22222122204398100000000 -T12023011111199929622000402321120212110611115000000040005280250000000000000000000000000000000000222222000000002229012 -T2202301111119992961219820918WTT9T#BYT2222212222225012212120303023010900000000000000000000000000000000270000000000000000000000000000000000000000000000000000 -T320230111111999296120210727WTTWPZTZP22222122204398100000000 -T12023011111199937120200409311120333120000300000000000005280460000000000000000000000000000000000222222000000002229022 -T2202301111119993713219710222WTTBP@Y#T2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000963200000000000000000000 -T320230111111999371120110722WT@T#BP0Z12222112206305100000000120080712WTT#0ZZYP22122212206307100000267 -T12023011111199937924200401241120332110704300000000000005280190000000000000000000000000000000000222222000000002229022 -T2202301111119993793219620722WTTTTP#P@2222212222215012212110204013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111111999379120150704WTT#Y9BBB22222112206398100000000120100413WT@@90B0@22222122206306100000000 -T12023011111199940720600407031120313110740300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111119994071219930112WT@#TZBZ92222212222221012211111050023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111999407120120909WTT9W9T@Y22222112204303100000000420080421WTTY@Z@YP22222112104308107740000 -T12023011111199940824700402991120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111119994081219930207WTT9ZBT002222212222221012213210075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111999408120050404WTTPBT#0Z22222122207312200000000 -T12023011111199949523500400891120523111057300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111119994951219740723WT@Z9B0Z92222221222222011212290114923011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T2202301111119994951219830313WTTP0@YZ@2222222222222011212290114923011800000000000000000000000000000000000000000000000000000000200000000000000000000000000000 -T320230111111999495120060227WTT99TBZY22222222204310200000000 -T320230111111999495120100904WTT#TTTP@22222212204306200000000120080327WT@@Z00##22222222204308200000000 -T12023011111199955925900403551120233110611300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111119995593219600426WT@WZB#B01222222122225012203210006013069900000000000000000000000000000000000000000000000000000000000000000000000417000000000000 -T320230111111999559120210912WT@9ZWW#@12222212207398100000000 -T12023011111199970822000408341120333120000300000000000004550420000000000000000000000000000000000222222000000002229022 -T2202301111119997083219710427WT@@@Z9Y#2222212222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111999708120190401WTT@BZTW022222112206398100000000120170723WTTZBZ#9W22222122206398100000000 -T12023011111199972024700409321120313110835300000000150006540090000000000000000000000000000000000222222000000002229012 -T2202301111119997201219920324WT@0#T@Z92222122222221012212910204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111111999720120160312WTT#ZTB#P22221212204398100000000120150927WTT#00#0W22221222204301100000000 -T12023011111199976022000407411110423110939300000000250301900050000000000000000000000000000000000222222000005812219012 -T2202301111119997601219750212WTTT0Y9Y@2212222222222011212190065421011809000000000000000000000000000000000000000000000000000000000000078000000000000000000000 -T2202301111119997601219630408WT@ZTWP9Z2212221222222021212190065421011807000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T320230111111999760120070722WT@0P@WW922122212204308100000000120060426WT@9PB9Y@22122222204310100000000 -T12023011111199976322000409871120112110376300000000001504170070000000000000000000000000000000000222222000000002229012 -T2202301111119997631219970718WTT0ZBZT@2221222222221013212190085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111200023425900402831120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111120002341220020313WT@W@BBPP1222222222221012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000234120190418WTTP@P@9B12222212204398100000000 -T12023011111200024924500405941120513111116300000000007108720040000000000000000000000000000000000222222000000162219012 -T2202301111120002491219930212WTT90BT@Z1222212222223012212110055523011400000000000000000000000000000000000000000000000000000000000000006300000000000000000000 -T320230111112000249120140207WTTT9BYWZ12222112204302100000000120120413WT@W0P#BY12212112204304100000000 -T320230111112000249120200324WTTY@TZ9P12222112204398100000150120190327WT@PT0TYW12222112204398100000000 -T12023011111200032924500410691120233120000113520000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111120003293219750413WT@0#TZ#P2222212222222012298120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000329120200301WT@@#BWBT22222122208398100000000 -T12023011111200034920800411932120232210493300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120003495219650923WT@0@0BT92122222222211013213190471313069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111120003495219620404WT@09PBP92222221222211103212190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T12023011111200040925100407671120233110557300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111120004095219790304WTT@YBYZT2222212222223012216110570313069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000409120170712WTTYBTZZY22222122209398100000000 -T12023011111200043124200409731120213110560300000000060005010040000000000000000000000000000000000222222002600012219012 -T2202301111120004311220040405WT@#9Y#YZ2221222222221012209110055523010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000431120220118WTTTZYPZ@22212222204398100000000 -T12023011111200043325900402631110113110376300000000000002690010000000000000000000000000000000000222222000000002229012 -T2202301111120004331219910504WTTZ@ZYZZ2122212222221013216190164423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111200048424700408301110522111116300000000000007440010000000000000000000000000000000000222222000000002229012 -T2202301111120004841219850211WT@YTWTZP2222122222222011212990124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120004841219840709WTTW#YT0Z2222121222222021212990332723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000484120050312WTTYYTTY@22221222204309900000000 -T320230111112000484120100312WT@#ZPB9@22221212204305100000000120080911WT@Y#TPP#22221222204308900000000 -T12023011111200049120900411721120213110611300000000000004170090000000000000000000000000000000000222222000000002229012 -T2202301111120004912219970502WT@WWB9YY2122221222221012212110055513051400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000491120160726WT@ZTTY#022222122204398100000000 -T12023011111200051320600406751120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111120005135219830201WT@Z@#W0P2222211222221012298910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000513120050912WTT9@#9YY22222112209311100000000 -T12023011111200051822000400591120233120000300000000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111120005183219650127WTT0TZBYP2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001062000000000000 -T320230111112000518120190701WT@@Y#9ZP22222112208398100000000 -T12023011111200061124200403511120423110939300000000000007710160000000000000000000000000000000000222222000000002229012 -T2202301111120006111219970109WT@0PWZ9W2221222222221011210190164421011813000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120006111219970923WT@9@@B#Y1222221222221011212190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000611120190918WTTYZBT9W12222222204398100000000120150708WTT@BWT@B12222122204398100000000 -T12023011111200061923800413801120232110516300000000000004170230000000000000000000000000000000000222222000000002229022 -T2202301111120006193219480221WTTWZ9TBP2222212122225012215110006013069900000000000000000000000000000000000000000000000000000000000000000000001323000000000000 -T320230111112000619120080904WTT0TBW@#12222112206308100000000 -T12023011111200075924200408571120213110611300000000000005280140000000000000000000000000000000000222222000000002229012 -T2202301111120007591219910118WTT@#ZYY@2222212222221012216110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000759120150301WT@ZWYT@922212212204398100000000 -T12023011111200085425100407671120333110376300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111120008542220000727WTT0W#9TW1222222222221012211990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120008542219930901WT@YYBT9P1222221222221102204990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112000854120210707WT@W0T@9P12222212204398100000000 -T12023011111200103422000407791120212110611300000000000004780350000000000000000000000000000000000222222000000502219012 -T2202301111120010341219940323WTTP90B9B1222222222221012212920362421011804000000000000000000000000000000000000000000000000000000000000019900000000000000000000 -T320230111112001034120170923WTTPPP9BP12222112204398100000000 -T12023011111200123525000406021120233110598300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111120012351219880304WT@T9BPT02222212122225012212110501023109900000000000000000000000000000000000000000000000000000000000000000000010001000000000000 -T320230111112001235120210305WT@YT@WW#22222112204398100000000 -T12023011111200124624900404261120412110949112330000000907710400000000000000000000000000000000000222222000000002229072 -T2202301111120012461219950101WT@0ZWPBB1222222222221012211110640023011800000000000000000000000000000000000000110001000000000000000000000000000000000000000000 -T320230111112001246120140421WT@@@TT#@12222222204303100000000 -T320230111112001246120160302WT@#TB9Z#12222212204398100000000120150118WT@W#0B@@12222212204301100000000 -T12023011111200132124200411401120232110516300000000000004170250000000000000000000000000000000000222222000000002229022 -T2202301111120013213219660108WTTZ#BW@Y2221222122225012213110392113069900000000000000000000000000000000000000000000000000000000000000000000001087000000000000 -T320230111112001321120040904WT@9BW0ZB22212222206311100000000 -T12023011111200164125900405231120233110376300000000000003560750000000000000000000000000000000000222222000000612219022 -T2202301111120016412219780527WT@YYBT9P1222212222221012212910006011079911000000000000000000000000000000000000000000000000000000000000068800000000000000000000 -T320230111112001641120100523WTTB0P0#Y12222112204305100000000 -T12023011111200166625000414191120412110939300000000000007710630000000000035006000000000000000000222222000000002229072 -T2202301111120016661219910318WT@#9#ZZ@1222212222221012212110680023011400000000000000000000000000000000000000000000000000000000150000000000000000000000000000 -T320230111112001666120110423WTTWT0BY@12222122204304100000000 -T320230111112001666120150101WTT0PTZYT12222212204301100000000120140526WT@W#Y#0@12222112204302100000000 -T12023011111200170623500411471120212110611300000000001005280930000000000000000000000000000000000222222000000002229072 -T2202301111120017061219780321WTTY@0W9T2222212222225012213111070023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112001706120150227WTTYPWP9Z22222112204301100000000 -T12023011111200199425900406651120213110611300000000000005280220000000000000000000000000000000000222222000000002229012 -T2202301111120019941219960913WTTB9Y##02222212222221012212110303023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112001994120220313WTTZ0@0ZP22222112204398100000000 -T12023011111200199725000414191110233110306300000000000004170010000000000000000000000000000000000222222000000002229021 -T2202301111120019973219700412WT@#9B0#W2222212122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001118000000000000 -T320230111112001997120210411WTT00TBT922222112206398100000000 -T12023011111200213223500411472120523212072300000000070008880020000000000000000000000000000000000222222000000002229032 -T2202301111120021321219890326WT@9TPY9W2222212222222011213290035723011800000000000000000000000000000000000000000000000000000000180000000000000000000000000000 -T2202301111120021321219900713WT@9TPY9W2222211222222021213290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112002132120140112WT@9TPY9W22222112204301200000000 -T320230111112002132120190507WT@9TPY9W22222112204398200000000120160127WT@9TPY9W22222112204398200000000 -T12023011111200214624200407271120313110835124540000055103920400000000000000000000000000000000261122222000000012219012 -T2202301111120021461219980724WT@9W@0002221222222221012212110233723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112002146120200427WT@@YWTPB22212212204398100000000120170118WTT0BB@PZ22212222204398100000000 -T12023011111200219420800411991110313110740300000000000003160060000000000000000000000000000000000222222000002532219012 -T2202301111120021941219970712WTT##@99W2222122222225012211210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112002194120170307WTT9YP#Y922221112204398100000000120170307WTTPYZ#0#22221112204398100000000 -T12023011111200243422700408351120513111116125340000000008880930000000000000000000000000000000000222222000000002229072 -T2202301111120024341219830301WTTWP9ZTP1222212222223012212110940023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112002434120180926WT@PZ0Z0912222122204398100000000120110427WT@TB#@PB12222112204305100000000 -T320230111112002434120220707WTT09TYWP12222212204398100000000120190723WTTZT@YZP12222212204398100000000 -T12023011111200269325900403711120313110835300000000244006540020000000000000000000000000000000000222222000000002229072 -T2202301111120026931219900111WT@B9T@#B2222212222225012212110830023011400000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111112002693120140723WT@9@BYW#22222122204302100000000120120104WTTZBT0@B22222212204304100000000 -T12023011111200276024700409381120233110493300000000107504170840000000000000000000000000000000000222222000000002229022 -T2202301111120027603219480211WTT0PT#T02222212222213012212120075313069900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111112002760120100414WTT9T0Z@@21222112209306100000000 -T12023011111200277624200414021120213110611300000000000005280330000000000000000000000000000000000222222000000002229072 -T2202301111120027761219960226WTT9W99P#2221222222221012212110740023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112002776120160123WT@0YZPBZ22212212204398100000000 -T12023011111200283222000400461120232110611300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120028323219580318WTT@9PT#P2222122222221012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112002832120070921WTTZZ0#ZZ22221222206308100000000 -T12023011111200296322000407831120312110704300000000000005880040000000000000000000000000000000000222222006500012219012 -T2202301111120029631219790202WT@#TW#W@1222222222225012212220540623010900000000000000000000000000000000000000000000000000000000000000000000000000000000001707 -T320230111112002963120100921WT@#@990#12222212204307100000000120100921WTTBZB@P#22222112204307100000000 -T12023011111200296523500410672110213210576300000000000004930010000000000000000000000000000000000222222000000002229032 -T2202301111120029651219770712WT@9TPY9W2222212222223012213210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112002965120100314WT@9TPY9W22222122204306200000000 -T12023011111200297121700406141120233110516300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111120029712219810721WTTBZZYWZ2222212222213012208110780013089900000000000000000000000000000000000000000000000000000000000000000000000000068400000000 -T320230111112002971120070712WTTPPTTW922222112204308100000000 -T12023011111200304022000408891120413111034300000000000007710020000000000000000000000000000000000222222000000002229072 -T2202301111120030401219900518WTTYPYBPB2222122222223012212110700023010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112003040120110227WT@9#9YYW22221222204304100000000 -T320230111112003040120220727WTTY9TY#W22221212204398100000000120150726WTT#9B0Y922221212204398100000000 -T12023011111200306424600411871120333120000300000000000005280030000000000000000000000000000000000222222000000002229022 -T2202301111120030643219960312WTT@YY9#92222211222221012211110006011069999000000000000000000000000000000000000000000000000000000000000490000000000000000000000 -T320230111112003064120080218WTT0W@B@Z22222112207307100000000120040718WTT@9YPTW22222112207312100000000 -T12023011111200309224200414351120113120000300000000000004170040000000000000000000000000000000000222222000000002229012 -T2202301111120030921220030723WTTPP0PT@1222222222221013211190055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111200316424200404891120113120000300000000000104170020000000000000000000000000000000000222222000000002229012 -T2202301111120031641220010923WT@#T@@B92221222222221013211190035723011800000000000000000004000000000000000000000000000000000000350000000000000000000000000000 -T12023011111200320523500411471120313110835300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111120032051219930124WT@9T0@BP1222222222221012212110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112003205120210709WTTPY#BYW12222212204398100000000120190901WTT90P@#T12222222204398100000000 -T12023011111200332021700406141120313110766300000000000006540040000000000000000000000000000000000222222000000002229012 -T2202301111120033201219950722WT@YTTP@@2221222222221012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112003320120210107WT@00#@WY12212222204398100000000120190327WTTT@Z9Y912222122204398100000000 -T12023011111200335722000407231120213110619300000000000003160200000000000000000000000000000000211122222000000012219012 -T2202301111120033571219990112WTTWP0#@#2222122222222012212110184223010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112003357120210326WT@@T9Y#Y22221222204398100000000 -T12023011111200344020600402142120233220000300000000000004170150000000000000000000000000000000000222222000000002229022 -T2202301111120034403219930927WTT#YY0ZZ2222122222221012212910124811079937000000000000000000000000000000000000000000000000000000000000304100000000000000000000 -T320230111112003440120060913WTTZ0TB9#22221222207310900000000 -T12023011111200352522000406191120623111395300000000000010090070000000000000000000000000000000000222222000000002229012 -T2202301111120035251219900113WT@9TPY9W2222211222222011216290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120035251219850905WT@9TPY9W2222212222222021216290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112003525120150407WT@9TPY9W22222112204302200000000120130723WT@9TPY9W22222112204303200000000 -T320230111112003525120200324WT@9TPY9W22222112204398200000000120170412WT@9TPY9W22222122204301200000000 -T12023011111200362124200410531120623111434300000000005010090110000000000000000000000000000000000222222000000002229012 -T2202301111120036211219820723WT@WZWB#W2222122222222011212990124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120036211219750111WTTP9@@@02222121222222021212990124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112003621120080205WT@@9ZZZ022221212204309100000000120050926WT@9T#WBY22221212204310100000000 -T320230111112003621120130908WT@PZ9T@#22221222204303100000000120100112WT@9ZWYY#22221222204305100000000 -T12023011111200366822700407491120213110376300000000001000180110000000000000000000000000000000111122222000003992219012 -T2202301111120036681219900101WTT0YW#W02122222222221012212110233723010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112003668120100404WT@@YYB#Z12222122204306100000399 -T12023011111200369724200400491120433110611300000000000005280550000000000000000000000000000000000222222000000002229022 -T2202301111120036972219940127WT@YYBT9P1222222222221012212910124811079908000000000000000000000000000000000000000000000000000000000000045200000000000000000000 -T320230111112003697120110123WT@#@T@@012222212204305100000000 -T320230111112003697120150109WT@9BY@BP12222222204398100000000420130922WT@YYBT9P12222122204303900000000 -T12023011111200375124100402401120313110719300000000000006540030000000000000000000000000000000000222222000000002229012 -T2202301111120037511219860107WTTT90BWP1222211222225012213110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112003751120200126WT@W@P9ZY12222112204398100000000120160513WTTP09W@T12222112204398100000000 -T12023011111200402220300400971120213110606300000000002505260530000000000035007000000000000000211222221000000002229012 -T2202301111120040221219940412WTT#9PYPY2122212222221012212110530721011723000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004022120180911WTTTZYWWZ22222122204398100000050 -T12023011111200406820600414871120233110484300000000010604170460000000000000000000000000000000000222222000000002229022 -T2202301111120040683219900226WT@WPZPYP2222212222222012216110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004068120130518WTTYPWBT#22222112207304100000000 -T12023011111200418325900402631110333110740300000000000002820990000000000000000000000000000000000222222000000232219021 -T2202301111120041832219820707WT@YYT0B01222222222213012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112004183120100711WTTZ9Z9BW12222122204305100000000420080207WT@ZB9ZZ#12222212104307109140000 -T12023011111200419723900403801120213110611300000000002004860130000000000000000000000000000000000222222000000422219012 -T2202301111120041971219850312WT@YBY9BW2222212222221012211110144621011803000000000000000000000000000000000000000000000000000000000000016700000000000000000000 -T320230111112004197120210701WT@PYTTPW22222112204398100000000 -T12023011111200430322000411551120213110299300000000000003060110000000000000000000000000000000222122222000000002229012 -T2202301111120043031219790323WT@Y0@TTY2222212222223012213110273323011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004303120070724WTT@YWYT@22222122204306100000000 -T12023011111200433824700401281120333120000300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111120043383219470127WT@W0YP0Z2222212122222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000744000000000000 -T320230111112004338520100701WT@T0WPBY12222112106305108180000120090923WT@W9Y0@912222122206307100000000 -T12023011111200435122000400461120213110611115300000000001110020000000000000000000000000000000000222222000000002229012 -T2202301111120043511219970904WTTZP#TWW2222212222221012208110035723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004351120220909WT@#PPTZY12222112204398100000417 -T12023011111200435621700403821120233110507300000000000004170500000000000000000000000000000000000222222000000002229022 -T2202301111120043562219860413WT@B#TYTP2222212222215012212110095113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112004356120080718WTT9WT@0@22222122204308100000000 -T12023011111200439724700413761120213110611300000000000805280090000000000000000000000000000000000222222000000002229012 -T2202301111120043971219890223WTTZB#YZ@2222212222223012212110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004397120150704WT@#ZY9W#22222112204398100000050 -T12023011111200444320800411931120332110776300000000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111120044433219850102WTTWB@@P92222212222221012212110720013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004443420120423WT@0YPT9922222222204305100000000120090109WTTY90T0T22222112209308100000000 -T12023011111200450022000406191120313110835122450000001206540170000000000000000000000000000000000222222000000002229012 -T2202301111120045001219940723WT@@9W@BB1222222222221012216110184223011700000000000000000000000000330000000000000000000000000000000000000000000000000000001591 -T320230111112004500120170327WT@YT0@YY12122222204398100000000120140426WTTTZTY#B12222122204303100000000 -T12023011111200474325900402121120233110516300000000000004170410000000000000000000000000000000000222222000000002229022 -T2202301111120047432219880513WTT@PPW9T2222212222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112004743120100713WTT#BP0#012222222204304100000000 -T12023011111200479523800413801120433110740128080000000005280200000000000000000000000000000000000222222000000002229022 -T2202301111120047952219940507WT@YYBT9P1222212222223012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004795420150718WT@#T0#BW12222112104301106090000 -T320230111112004795120200212WT@B0YPYB12222112204398100000000120180709WT@W##BTT12222112204398100000000 -T12023011111200479625600411521120612111034300000000004808880430000000000000000000000000000000000222222000000002229012 -T2202301111120047961219860718WT@B@B99P2222212222221012212120441623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004796420130307WT@9@YB0Z22222122104398105340000 -T320230111112004796120180507WTTTYPWP022222122204398100000000120150712WTT#0#WP022222112204398100000000 -T320230111112004796120220327WTT0P@W9#22222112204398100000000120220327WT@9@Y9YP22222112204398100000000 -T12023011111200487925000401171120323110786300000000000006540380000000000000000000000000000000000222222000000002229012 -T2202301111120048791219780313WTT@#W9@@2222212222221011209190392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120048791219770109WTT9WY9TB1222211222221011208190392123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004879120130512WTTTYYW9022222122204303100000000 -T12023011111200491224700405901120313110835105420000003006540060000000000000000000000000000000000222222000000002229012 -T2202301111120049121219880223WT@P9#Y0P2222212222223012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004912120140704WT@0##YWW22222112204302100000000120100401WT@PBWYBY22222122204306100000000 -T12023011111200497623700414332120213210611300000000000005280050000000000000000000000000000000000222222000000002229032 -T2202301111120049761219800713WT@9TPY9W1222222222221012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004976120080709WT@9TPY9W12222212204305200000000 -T12023011111200497722000403351120113110316300000000000003120080000000000000000000000000000000104222122000000012219012 -T2202301111120049771219880426WTTWPTPZZ2222122222223013212120243623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111200499325100411761120213110516300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111120049931219760712WT@PZW@PZ2222212222225012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112004993520150212WTTBPP@#Y22222112104302109140000 -T12023011111200510322000405181120113110376300000000005000940030000000000000000000000000000000000222222000003232219012 -T2202301111120051031219840922WTTBBPPBP2221222222221013212190045621011821000000000000000000000000000000000000000000000000000000000000129000000000000000000000 -T12023011111200516022000411981120232110525300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111120051603219690512WT@##YTPY2222212222221012213110342611069905000000000000000000000000000000000000000000000000000000000000029300000000000000000000 -T320230111112005160120120707WTTBBB9#W12222112206303100000000 -T12023011111200517621000411361120923111902300000000000014160020000000000000000000000000000000000222222000000002229012 -T2202301111120051761219780305WTTYT9B#W2222221222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120051761219760527WTTW0BZBB2222222222222021211290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112005176120050427WT@ZT90@B22222222204311200000000 -T320230111112005176120080426WT@T##09922222212204308200000000120060718WT@P99PPW22222212204310200000000 -T320230111112005176120120404WTTB0P@W@22222212204304200000000120100921WTTBT#0ZP22222212204306200000000 -T320230111112005176120160721WT@T#PBP#22222222204398200000000120140927WT@B99@9B22222222204302200000000 -T12023011111200523325800401871120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120052332219630726WTTP@9T0Z2122222222215012208110283213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112005233120050427WT@ZYTPP011222222204309100000000 -T12023011111200526922000411321120233120000112370000000004170170000000000000000000000000000000000222222000000002229022 -T2202301111120052693219770321WT@BBP0YP2222212222222012212110006011069909000000000000000000000000000000000000000000000000000000000000124100000000000000000000 -T320230111112005269120190112WT@@TBTBP22222122206398100000000 -T12023011111200538922000409412120213210598300000000000005280060000000000000000000000000000000000222222000000002229032 -T2202301111120053891219960422WT@9TPY9W1222222222221012212210075323011400000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111112005389120120321WT@9TPY9W12222212204303200000000 -T12023011111200539424200403511120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120053943219480907WT@BB@B#W2222212112225012215110006013069900000000000000000000000000000000000000000000000000000000000000000000001093000000003332 -T320230111112005394120060223WT@YBYP#P12222122206309100000000 -T12023011111200539523900408291120313110766300000000040806540040000000000000000000000000000000000222222000000002229042 -T2202301111120053951219910418WT@TY#YZP2122222222221012212110184221011725000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112005395120180127WT@B0WZBZ21222212204398100000000120150123WT@0B@W9Y21222212204302100000000 -T12023011111200545224200403511120213110516300000000000004170630000000000000000000000000000000000222222000000002229072 -T2202301111120054521219720112WTT@Y999@2221221222225012212111260023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112005452520070126WT@9@BZY#22212212104309109140000 -T12023011111200546123500407161120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120054613219570712WT@@BZP#Z2222222122222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002014000000000000 -T320230111112005461120100327WT@#9@Y#Z22222122206306100000050120090901WT@YT##PP22222112206308100000050 -T12023011111200555124200413331120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120055513219620322WTT@0ZWP#2222212222225012212110006011069934000000000000000000000000000000000000000000000000000000000000242600000000000000000000 -T320230111112005551120090123WT@0YYWB@22222122206305100000000120060718WTT0TWBB@22222112206309100000000 -T12023011111200556124200409731120213110611300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111120055611220000323WTT#PTTWW1212212222221012212110233723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112005561120210507WTT#ZTB9#12222222204398100000000 -T12023011111200571425900402831120513111199113320000095008880310000000000035001000000000000000000222122000000002229012 -T2202301111120057141219930424WTT9ZYB@Z1222222222221012209120322823011400000000000000000000000000000000000000000000000000000000120000000000000000000000000000 -T320230111112005714120120514WT@#PWWTY22222122204303100000000120100209WT@Y9PZY912222212204304100000000 -T320230111112005714120160307WTTYP#BPY12222112204398100000000120150311WTT0@0YWY12222112204398100000000 -T12023011111200586924700405901120332110740300000000001105280990000000000000000000000000000000000222222000000002229022 -T2202301111120058692219750911WTT@90@ZW2222212222215012212110025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112005869120080927WTTW@0P@B22222122204307100000000120070424WT@BPBBT#22222122204309100000000 -T12023011111200589324200401241120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111120058933219830905WT@BP@PW#2222212122221012216110006011069928000000000000000000000000000000000000000000000000000000000000263600001738000000000000 -T320230111112005893120220913WTT@#TTZY22222122207398100000000 -T12023011111200599222000402371120212110611300000000001505280870000000000000000000000000000000000222222000000002229072 -T2202301111120059921219740113WT@B0ZZ0Y2222122222221012216110950023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111112005992120160207WTTYY0YZ922212222204301100000000 -T12023011111200616322000408891120613111434300000000000010090620000000000000000000000000000000000222222000000002229072 -T2202301111120061631219890127WT@#0W#@#2221222222221012212110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112006163120110912WT@BTZPPP22212212204305100000000 -T320230111112006163120160918WTTBZY0Y922212222204398100000000120140913WTTY@WP@922212212204302100000000 -T320230111112006163120210708WT@ZB9#BW22212212204398100000000120210708WTT0P@BZ912212212204398100000000 -T12023011111200626321000405411120333120000119490000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111120062633219780727WTT#9@90B1222222222223012298110006013069900000000000000000000000000000000000000000000000000000000000000473000000000000000000000 -T320230111112006263120220224WTTTWYPB#12222112207398100000000520090708WTTZYPTY#22222212109307100980531 -T12023011111200627521400408021110313110557300000000000000340010000000000000000000000000000000000222222000000002229012 -T2202301111120062751219740914WT@@00PWT2222212222225012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112006275420170101WT@BBT#WT22222122209398100000000120060111WT@YPTBPP22222122204310100000000 -T12023011111200631220600401561120213110611111470000000005280490000000000000000000000000000000000222222000000002229012 -T2202301111120063121219890127WT@YPTW#B2222212222221012210110491123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112006312120190423WTT@TW0ZW22222112204398100000000 -T12023011111200644322700401571120523111199300000000000008880100000000000000000000000000000000000222222000000002229012 -T2202301111120064431219960524WT@9TPY9W2222211222222011214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120064431219960307WT@9TPY9W2222212222222021214290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112006443120180722WT@9TPY9W22222112204398200000000 -T320230111112006443120210923WT@9TPY9W22222122204398200000000120200509WT@9TPY9W22222122204398200000000 -T12023011111200658924700408701120233110470300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111120065893219720307WT@0#BZP01222212222225012214110144613069900000000000000000000000000000000000000000000000000000000000000000000000000000000001240 -T320230111112006589120210127WTTB0TB@Z12221122206398100000000 -T12023011111200674524200414351120433120000300000000000006540200000000000000000000000000000000000222222000000002229022 -T2202301111120067453219760127WTTZBPT##2222212222222012298110006013069900000000000000000000000000000000000000000000000000000000000000975000000000000000000000 -T320230111112006745120080924WTTTTY9PB22222122209307100000000 -T320230111112006745120210113WTT9TYPZZ21222112209398100000000120190318WTTZW0@TB22222122209398100000000 -T12023011111200675123500410671120212110611300000000000005280520000000000000000000000000000000000222222000000002229012 -T2202301111120067511219670101WTTY9T@W91122222222225012208110530723011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111112006751120060314WTTZYBYP011222212204308100000000 -T12023011111200680625900402721120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111120068061220030301WT@ZP9B#Z2222222222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112006806120210504WT@99ZBB012222112204398100000000 -T12023011111200682824700406701120213110611300000000010005280120000000000000000000000000000000000222222000000002229012 -T2202301111120068281219990121WT@9ZY#PT2222222222221012216110134723011700000000000000000000000000270000000000000000000000000000000000000000000000000000000185 -T320230111112006828120220212WTT@W999P22122122204398100000000 -T12023011111200684324200414721120233110242300000000000004170690000000000000000000000000000000000222222000000002229022 -T2202301111120068433219680514WT@YYBT9P1222222222221012211910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112006843120120405WT@W9W9WP21222222206303100000000 -T12023011111200688124900404261120213110618300000000007505280030000000000000000000000000000000000222222000000002229012 -T2202301111120068811220040527WT@YT@WZP1222222222221012212210045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000006237 -T320230111112006881120220312WT@9TPY9W12222212204398100000000 -T12023011111200697325900402831120233110493300000000000004170550000000000000000000000000000000000222222000000002229022 -T2202301111120069733219670514WT@TYT#T#2222211122214012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000756017800000715 -T320230111112006973120040407WT@B#YTWY22222112207312100000000 -T12023011111200701222000407831120513111199300000000000008880300000000000000000000000000000000000222122000000002229012 -T2202301111120070121219890401WT@BT0WZB2221222222225012212120530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007012120100407WT@ZT#YYZ22222222204307100000000120070326WT@YT@99P22222212204308100000000 -T320230111112007012120120127WTT@T@@WT12222222204304100000000120110221WT@0T#B@Y22222222204306100000000 -T12023011111200719422000412692120313210766300000000000006540070000000000000000000000000000000000222222000000002229032 -T2202301111120071941219690123WT@@9###Z2222212222223012215210085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007194120110301WTTWBWYYW22222122204305200000000120090918WTTWY9W@Z22222112204307200000000 -T12023011111200720125900402831110313110740300000000000003430010000000000035001000000000000000000222222000000002229012 -T2202301111120072011219810918WTT#WZT9P1222222222222012209110015921011802000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007201120100221WT@0P@T#T12222212204306100000000420100221WTTZ0#@BY12222212104306108220000 -T12023011111200730020600414871120213110599300000000000002530160000000000000000000000000000000000222222000002752219072 -T2202301111120073001219810518WT@@PTTP92222212222223012214110810023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000274 -T320230111112007300120050123WT9TT@YW#22222122204310100000000 -T12023011111200734724200411401120313110766300000000000006540070000000000000000000000000000000000222222000000002229012 -T2202301111120073471220000412WTTT0Z90Z2222122222223012211110085221011740000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007347120210913WTT9BY@##22221212204398100000000120180923WT@PZ9##T22221222204398100000000 -T12023011111200736220600407031120213110611300000000001705280350000000000000000000000000000000000222222000000002229012 -T2202301111120073621219810104WT@#YPWWY1222211222225012216110471323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007362120050204WTTTT@W9912212212204311100000000 -T12023011111200736622600405051120313110724300000000008106540060000000000070003000000000000000000222222000000002229012 -T2202301111120073661219840418WTTW@W09W2222212222225012213110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007366120110514WTTWP9@T922222112204305100000000120070709WT@YTBBB022222122204308100000000 -T12023011111200738920400413031110313110785300000000010004640130000000000000000000000000000000000222222000000002229012 -T2202301111120073891219970121WT@@09ZT02222211222223012212110134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007389120210907WTTB#T@@P12222122204398100000000120190911WTTW9PT#012222122204398100000000 -T12023011111200741222700413181110313110740300000000086002530010000000000000000000000000000000000222222000000002229012 -T2202301111120074121219840511WTTB0Z9ZP2222212222223012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007412120130904WT@#PT##Z22222122204303100000000120060712WTTWW@ZTW22222122204309100000000 -T12023011111200743224700402992120323210766300000000300006540030000000000000000000000000000000000222222000000002229032 -T2202301111120074321219950927WT@9TPY9W2222211222222011216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120074321219960702WT@9TPY9W2222212222222021216290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007432120210327WT@9TPY9W22222112204398200000000 -T12023011111200751021000403201120423110939300000000000007710560000000000070004000000000000000000222222000000002229012 -T2202301111120075101219750907WT@0YYZPY2222211222222011212110570321011931000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120075101219840704WTTZ#WT9#2222212222222021212190540622011800000000000000140002000000000000000000000000000000000000230000000000000000000000000000 -T320230111112007510120090418WTTW@WTT922222122204307100000000120070321WTTYYW0#Y22222112204308100000000 -T12023011111200757224200403511120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111120075723219450427WTT0#Z#Z#2222212112224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001495000000001437 -T320230111112007572120190118WT@WY0@W922222112206398100000000 -T12023011111200770225900402831110433110776300000000041201680070000000000000000000000000000000000222222000003532219021 -T2202301111120077022219870123WT@YYBT9P1222212222222012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007702120050323WT@#0W0Z012222122204309100000000 -T320230111112007702120200102WT@ZYT@TT12222122204398100000000120100927WT@YY9Y#@12222112204305100000000 -T12023011111200770325000414191120413111034300000000000007710120000000000000000000000000000000000222222000000002229012 -T2202301111120077031219870218WT@9@ZPBW2222211222221012216110174323011800000000000000000000070002000000000000000000000000000000260000000000000000000000000000 -T320230111112007703120130902WTTB0#@Z#22222222204303100000000 -T320230111112007703120160918WTTPY9P#B22222112204398100000000120150112WTTYWTY@#22222112204301100000000 -T12023011111200776420600402131120423110893300000000000007710240000000000000000000000000000000153222221000000002229012 -T2202301111120077641219850404WT@PW@9BZ1222212222222011212120253523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120077641219830113WTTZ#T#YY1222211222222021210290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007764120150523WTT00P@#T12222112204301100000000120080123WTT0P0Z@B12222212204309100000000 -T12023011111200780324700406701120213110554114720000000000010330000000000000000000000000000000000222222000000002229012 -T2202301111120078031219950507WTT#9T@P92221222222221012216220342611011740210000000000000000000000000000000000000000000000000000020000125500000000000000000000 -T320230111112007803120200414WT@TYZZ@B22212212204312100000000 -T12023011111200784622000414461120822111691300000000000011650060000000000070004000000000000000000222222000000002229072 -T2202301111120078461219950311WTTPT@Y9W1222212222222011212120670023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120078461219950711WT@#ZZ#TP2222221222222021212190025823011800000000000000000000000000000000000000000000000000000000260000000000000000000000000000 -T320230111112007846120140724WTTW@ZW0#12222122204302100000000120120323WTTZP9@ZW22212222204303100000000 -T320230111112007846120200104WTT@BYW0T22212212204398100000000120160912WTT@0W0YZ12212222204301100000000 -T320230111112007846420210709WT@TYWWW012212222104398109140000120210112WTT09TBWZ12212212204398100000000 -T12023011111200789625900402831110532110740300000000015000420240000000000000000000000000000000000222222000006282219021 -T2202301111120078962219770908WT@YYBT9P1222222222222012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120078962219710407WT@YYBT9P1222221222222022205990006011079905000000000000000000000000000000000000000000000000000000000000040000000000000000000000 -T320230111112007896120120321WT@0YP@W012222222204303100000000 -T320230111112007896120160923WT@P#009Y12222222204398100000000120140504WT@9B@#@912222222204302100000000 -T12023011111200791024200402981120113110396300000000000004170880000000000000000000000000000000000222222000000002229072 -T2202301111120079101219850321WT@T@#B##2222212222223013212110890023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111200793225900402121120213110611300000000026005280460000000000000000000000000000000000222222000000002229072 -T2202301111120079321219790523WT@B09P991222212222221012216110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007932120180411WTTBZ9#@T12222112204398100000000 -T12023011111200799722000409871120213110611300000000025005280070000000000000000000000000000000000222222000000002229012 -T2202301111120079971219860212WTT@0#9@@2221211222225012212110065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112007997120140301WT@B@T0T#22212222204302100000000 -T12023011111200810720600414771120213110611300000000000005280370000000000000000000000000000000000222222000000002229012 -T2202301111120081071219870121WT@P#Z9B#2222212222222012212110273323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112008107120170912WT@#WPTTB22222122204398100000000 -T12023011111200820223500409141120413111034300000000027701470240000000000070010000000000000000000222222000006242219072 -T2202301111120082021219730701WTT90#9PZ1222211222225012213120840023011400000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111112008202120080418WT@TPBBBB12222122204309100000000 -T320230111112008202120130324WT@W@TWWZ21222222204303100000624120100405WT@P#T9YW12222122204307100000000 -T12023011111200823125600411521120212110516300000000450000010350000000000000000000000000000000000222222000000002229012 -T2202301111120082311219790313WT@00ZYPZ2221222222221012213110352511011800210000000000000000000000000000000000000000000000000000000000125600000000000000000957 -T320230111112008231520150918WTTW#WY0022212212104312108230000 -T12023011111200847524700406491120233120000300000000500004170990000000000000000000000000000000000222222000000002229022 -T2202301111120084753219520112WTT9BTWP#2222212122222012298110006011069938000000000000000000000000000000000000000000000000000000000000287100001196000000000000 -T320230111112008475120070911WTTB0PP@W22222122206309100000000 -T12023011111200853924700411201120233120000300000000000004170040000000000000000000000000000000000222222000000002229022 -T2202301111120085393219740907WTT#9PPYY2222212222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112008539120140724WT@ZB@##P21222122206302100000000 -T12023011111200855924200404891120313110835300000000000206540510000000000000000000000000000000000222222000000002229012 -T2202301111120085591219990421WT@ZT#WZ@2221222222221012211110520823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112008559120220927WT@@Z@YTT22212222204398100000000120180404WT@@WPZW022212212204398100000000 -T12023011111200857225900402831120213110611300000000300005280290000000000000000000000000000000000222222000000002229012 -T2202301111120085721219940912WT@PP9ZB#1221212222221012210110461423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112008572120220418WT@9TPY9W12222112204398100000000 -T12023011111200862722000405321120432110893300000000001703780990000000000000000000000000000000000222222000002762219022 -T2202301111120086272219810427WTT#BBTZP2222212122213012214110392113109900000000000000000000000000000000000000000000000000000000000000000000000084075000000000 -T320230111112008627120050514WT@@BZWTT22222112204312100000092 -T320230111112008627120160327WTT9W@TBW22222112204398100000092120070227WTTP9PYYY22222112204310100000092 -T12023011111200865722700408351120412110939300000000001506540990000000000000000000000000000000000222222000000002229072 -T2202301111120086571219690924WTTB9#BTP2222221222222012212191110023010700000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T2202301111120086572219740223WTTWZP@#92222222222212022212190095113089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112008657120140123WTTWZZYPW22222112204303100000000120050721WTT#T@#@@22222112204311100000000 -T12023011111200867224700402991120333120000115480000000005280060000000000000000000000000000000000222222000000002229022 -T2202301111120086723219640305WTT@YWTYB2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000346600000000000000000000 -T320230111112008672120180912WTTBBWBP912222222206398100000000120160412WTT#@TZYY12222122206398100000000 -T12023011111200871220600402141120312110740300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111120087121219950718WT@#WP0BZ2222212222221012211120322823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112008712120220912WT@0YZTZ#22222112204398100000000420160704WTTBBYWBY22222112104301108220000 -T12023011111200875021700406141120312110757300000000000006540170000000000000000000000000000000000222222000000002229012 -T2202301111120087501219930327WT@B##Z#Z2222211222221012216110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112008750120200912WTT@9PTZ#22222112204398100000100120190926WT@ZPW00P22222122204398100000000 -T12023011111200879225000413201120113110376300000000014003610240000000000000000000000000000000000222222000000562219012 -T2202301111120087921219890113WTTPTTYW92222212222221013216110253523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000055 -T12023011111200881825900402121120333120000300000000000005280150000000000000000000000000000000000222222000000002229022 -T2202301111120088183219780901WTTZWT#YY1222212222222012216210006013069900000000000000000000000000000000000000000000000000000000000000347900000000000000000000 -T320230111112008818120210522WTT#PYYP912222112207398100000000120180722WT@#WB0PB12222122207398100000000 -T12023011111200885922000411551120312110835138760000000406540140000000000000000000000000000000000222222000000002229012 -T2202301111120088591220010112WT@BBPZZW2221222222221012212110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112008859120200323WTT@BP99Z22212222204398100000000120200323WTTPP##@#22212212204398100000000 -T12023011111200899120600402141120923111902300000000000014160050000000000000000000000000000000000222222000000002229012 -T2202301111120089911219810404WTTTWB0092222211222222011201290065423011800000000000000000004000000000000000000000000000000000000100000000000000000000000000000 -T2202301111120089911219820904WTTY00PW#2222212222222021298290065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112008991120090114WT@WWPWW022222122204306200000000 -T320230111112008991120130504WT@W@TTYW22222122204303200000000120110918WT@9PY@PZ22222122204305200000000 -T320230111112008991120150301WT@B9B#0W22222122204398200000000120150301WT@9TPY9W22222122204398200000000 -T320230111112008991120200913WT@YP@Z9Y22222112204398200000000120170902WT@ZWTYB922222112204398200000000 -T12023011111200902424700409381120213110611300000000000005280320000000000000000000000000000000000222222000000002229072 -T2202301111120090241219720713WTTPY0ZBY2222212222223012210110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009024120110122WT@WZTZZY22212212204303100000000 -T12023011111200905620600400871120233110557300000000000004170580000000000000000000000000000000000222222000000002229022 -T2202301111120090563219640207WTT9YBTBB2222212222224012213110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009056120090412WTT#BB@W@22222112206306100000000 -T12023011111200915525600400661120233120000300000000000004170360000000000000000000000000000000000222222000000002229022 -T2202301111120091553219780321WT@P#PBZW2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009155120160911WTTZTY#ZP22222122208398100000000 -T12023011111200916120200409311120312110761300000000000006240310000000000000000000000000000000000222222003000002229072 -T2202301111120091611219860118WT@#TTT#P2222212222221012212120930023011800000000000000000001000000000000000000000000000000000000010000000000000000000000000000 -T320230111112009161120130518WTTYZYWP@12222122204303100000000120060427WTTT0TZB922222122204311100000000 -T12023011111200918624200407311120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120091863219640927WT@ZWT0W@2222212222225012216110006013069900000000000000000000000000000000000000000000000000000000000000569100000000000000000000 -T320230111112009186120070304WT@#T#@ZY22212122206308100000000 -T12023011111200924922000408891120512111116110890000000008880290000000000000000000000000000000000222222000000002229012 -T2202301111120092491219910404WT@PBT99W2221222222221012212110520823011800000000000000000000000000160000000000000000000000000000000000000000000000000000000000 -T320230111112009249120100321WTT@BYB@T22212222204306100000000120090723WTTW#ZZTB22212222204307100000000 -T320230111112009249120170312WT@@Y@@##22212212204398100000000120110323WT@Z@Y@9Y22212222204305100000000 -T12023011111200926320600414871120613111395300000000000010090090000000000000000000000000000000000222222000000002229012 -T2202301111120092631219900214WTT00BWTZ2222212222225012216110105021011818000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009263120100507WT@9BB9TT22222112204306100000000 -T320230111112009263120140207WTTTY9W0B22222122204302100000000120120512WTT##BZ#Y22222122204304100000000 -T320230111112009263120210507WT@00TZ@Y22222112204398100000000120160222WTT9#TZ@P22222112204398100000000 -T12023011111200937720600414161120332110704300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120093773219520126WT@WB#YWY2222212122225012212110134713069900000000000000000000000000000000000000000000000000000000000000000000001100000000000000 -T320230111112009377120210214WTTPZY#ZW12222122206398100000000120060901WT@BZB@Z#22222122206309100000000 -T12023011111200939223500410671120213110598300000000299305280090000000000000000000000000000000000222222000000002229012 -T2202301111120093921219870923WTT@ZB0PP2222212222221012214110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009392120210426WT@ZBBY9T22222112204398100000000 -T12023011111200950820800411931120523111231300000000043308880140000000000000000000000000000000000222222000000002229012 -T2202301111120095081219870111WTT@@Y0BY1222212222222011216190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120095081219810727WTTZ@YTW02212221222222021214190065423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009508120170927WTT@ZWY0B22122122204398100000000 -T320230111112009508120210711WT@9TPY9W12222122204398100000000120190127WTT@0W@9922122112204398100000000 -T12023011111200951525000413201120213110561300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111120095151220000504WT@90#B#Y1222212222221012216110035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009515120210726WT@TW9#9#12222222204398100000000 -T12023011111200951922000400461120212110611300000000000003160560000000000000000000000000000000211122222000000012219072 -T2202301111120095191219900324WTTYYTBPP2222212222221012212110620023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009519120140313WTTB0TPW@22222122204398100000050 -T12023011111200952722700408351120333110740300000000000005280640000000000000000000000000000000000222222000000002229022 -T2202301111120095273219580211WT@PTTZWT2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002217000000000000 -T320230111112009527120150921WT@#@BZ#922222122206398100000000120110402WT@0P#@T922222112206305100000000 -T12023011111200971525900402721120213110611300000000000005280020000000000035003000000000000000000222222000000002229072 -T2202301111120097151219900505WTTY@ZZTP1222221222221012209110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009715120060104WTT09ZBTP12222122204309100000000 -T12023011111200980020600402131120312110740300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111120098001219990405WTTBP9@#B2222212222221012212190164423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120098002219900414WTTWY0PTZ2222211122211102212190006013109900000000000000000000000000000000000000000000000000000000000000000000000685024900000000 -T320230111112009800120220426WTTPTZ00022222112204398100000000 -T12023011111200981622000410051120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120098161219810712WT@9WZ9P02222212222223012210112100023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009816120170723WT@0PPZ0022222122204398100000000420050704WT@Z@0YTY22222112104309109140000 -T12023011111200983321700406141120232110516300000000000004170770000000000000000000000000000000000222222000000002229022 -T2202301111120098333219520223WT@9WTT#B2222212122215012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000605032900000000 -T320230111112009833120140726WTTP9T9B022222112209302100000050 -T12023011111200984723500407161120313110831300000000000006540480000000000000000000000000000000000222222000000002229072 -T2202301111120098471219970418WT@P@@ZYT2222122222221012211910610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009847120190423WTTT@YP9P22222222204398100000054120150427WTT9#W9Z#22221222204302100000000 -T12023011111200985422000407241120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120098543219690112WTT9P0TW#2222222222225012214110006013069900000000000000000000000000000000000000000000000000000000000000739900000000000000000000 -T320230111112009854120120518WT@TYBYZT22212212206304100000050 -T12023011111200985625800405801120233110767300000000000004170180000000000000000000000000000000000222222000000002229022 -T2202301111120098565219860726WT@B0YWP92222212222225012212110283211069999000000000000000000000000000000000000000000000000000000000000569600000000000000000000 -T320230111112009856120070405WTTY@T0@921222212209309100000000 -T12023011111200986720300404641120233110493300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111120098673219670711WT@BP9P@Y2222211222222012209110006013069900000000000000000000000000000000000000000000000000000000000000100000000000000000000000 -T320230111112009867120210727WTTTPTZW922222122206398100000000 -T12023011111200988020600414871120312110740300000000008005280970000000000000000000000000000000000222222000000002229072 -T2202301111120098801219790713WTTBYTZTW2222212222225012212110980023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009880120060326WTTW0ZY0P22222112204310100000000420050401WT@W9W0#B22222122104312109140000 -T12023011111200990625000401171120332110516300000000000005280110000000000000000000000000000000000222222000000002229022 -T2202301111120099062219720309WT@YYBT9P1222222222221012204910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009906120060522WTT@Y0PWP12222212204308100000000120040301WTT##ZTW912222212204310100000000 -T12023011111200991325900402831120213110599300000000000003160240000000000000000000000000000000211122222000000012219072 -T2202301111120099131219760327WT@BT99@92222212222221012216110720023011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009913120120322WTT@BP#YB22222112204303100000000 -T12023011111200997625900402831120213110611300000000000003160100000000000000000000000000000000211122222000000012219012 -T2202301111120099761219990401WT@@9P@0B1222212222221012210110570321010220000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112009976120160427WT@PPYW@T12222112204398100000000 -T12023011111201001122700403021120213110611300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111120100111219990923WT@BW0P9@1222212222221012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010011120160707WTT090YP012222112204398100000000 -T12023011111201017621000411361120413110939300000000000004620160000000000035006000000000000000308122222000000012219042 -T2202301111120101761219900207WTT9W@0@91122222222225012213110372323011400000000000000000000000000000000000000000000000000000000110000000000000000000000000000 -T320230111112010176120110301WT@9B#B@#21222212204304100000000 -T320230111112010176120190723WT@PW9#TP21222212204398100000000120160712WT@BWY#0Y21222222204398100000000 -T12023011111201020922000410051120233120000300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111120102093219600205WTT9B0T0W2221222222223012213110085211069937000000000000000000000000000000000000000000000000000000000000472000000000000000000000 -T320230111112010209120180513WT@Y#W@PB22122222206316100000000 -T12023011111201022722000408452110423210939300000000000005720010000000000000000000000000000000000222222000000002229032 -T2202301111120102271219860301WT@9TPY9W2222211222222011214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120102271219850727WT@9TPY9W2222212222222021214290025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010227120120404WT@9TPY9W22222122204305200000000120100312WT@9TPY9W22222112204306200000000 -T12023011111201027525600413441120233120000300000000000004170070000000000000000000000000000000000222222000000002229022 -T2202301111120102753219920705WT@ZZW0PW2221221222221012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010275120220423WTTWB9WW922222122209398100000000 -T12023011111201033320900411721120233110446300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111120103333219870904WT@BWTZPW2222212222222012216110710011069933000000000000000000000000000000000000000000000000000000000000202000000000000000000000 -T320230111112010333120210912WT@9##90Z22222122207398100000000 -T12023011111201040722000410051120313110727300000000000006540110000000000000000000000000000000000222222000000002229012 -T2202301111120104071219780723WT@Y#YW002222122222223012212110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010407120110926WT@9BBT0#22221212204306100000000120070404WTTP0Z0TP22221222204310100000000 -T12023011111201041925900406651120423111034300000000000007710060000000000070003000000000000000000222222000000002229012 -T2202301111120104191219930922WTT@9TYB@1222211222221011209190134723011800000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T2202301111120104191219960924WT@00YTP92222212222221011212110124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010419120180502WT@@ZWP#T22222112204398100000000120150313WT@W#P##022222112204398100000046 -T12023011111201047522000403351120213110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111120104751220020318WT@Z#Z9W92221222222221012212110124823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010475120220523WT@ZPBWYP22212222204398100000000 -T12023011111201048522000403351120233120000300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111120104853219740421WT@ZB@#9#2222221222222012212110035711069940000000000000000000000000000000000000000000000000000000000000395600000000000000000000 -T320230111112010485120060313WT@0YTZ@012222222207310100000000 -T12023011111201050424700413891120313110749300000000010002570180000000000000000000000000000000000222222000003972219012 -T2202301111120105041219790307WT@YW@9#02222212222221012214110184221011726000000000000000000000000000000000000000000000000000000000000158600000000000000000000 -T320230111112010504120210912WTT0T90TY22222112204398100000000120160712WTT99W#T@22222122204398100000000 -T12023011111201052024700401281120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120105203219860322WTT#ZB0#02222212222223012212110006011069932000000000000000000000000000000000000000000000000000000000000488200000000000000000000 -T320230111112010520120120914WTTZWW@YB22222122207305100000000120110701WTT0P@Y0Y22222112207306100000000 -T12023011111201052424200403461120213110611300000000000005280130000000000000000000000000000000000222222000000002229012 -T2202301111120105241220000114WTTP0@TZ92222212222221012212110144623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010524120220412WTTWTZ0#022222212204398100000000 -T12023011111201054224200404891120313110766300000000037506540050000000000000000000000000000000000222222000000002229012 -T2202301111120105421219830113WT@P@TPZY2212222222224012216210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010542120170709WTTT90P#W22122222204398100000000120150926WT@BWPZBW22122222204398200000000 -T12023011111201057924900403221120213110611300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111120105791219880423WT@#@@TYB2222222222222012212210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010579120170209WT@9WPZWY22222212204398200000000 -T12023011111201062422000413681120212110364300000000000003160660000000000000000000000000000000211122222000000012219072 -T2202301111120106241219880726WT@9T90P@2221222222221012212110670023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010624120150108WT@Y9WWT022212222204398100000000 -T12023011111201067825900406651120333120000300000000000005280410000000000000000000000000000000000222222000000002229022 -T2202301111120106783219650523WTTYP@ZWB2222212222222012212110095113069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010678120190918WTTYT@9B#22212212206398100000000120160524WT@##T@Y#22222112209398100000100 -T12023011111201069320300401721120233110470300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111120106933219780102WT@BBBTTB2222212222222012212110223813069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010693120060726WTTTTZPWW22222112207308100000000 -T12023011111201069622700413181120432110939300000000000005280860000000000000000000000000000000000222222000000002229022 -T2202301111120106962219920518WT@PZ##W01222212222211012216120006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T2202301111120106962219920918WT@P0BW@T2222211222211022216190006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112010696120160314WT@#0T0ZY12222122204398100000000120140523WTTWZW9Z#12222122204302100000000 -T12023011111201073220600402141120233110527105280000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111120107323219760705WTTPPBWBT2222211222221012210110045611069908000000000000000000000000000000000000000000000000000000000000083300000000000000000000 -T320230111112010732120150326WTTYP9#YT22222122206398100000010 -T12023011111201092924200407271120233120000300000000000004170050000000000000000000000000000000000222222000000002229022 -T2202301111120109293219540908WTT9BZWZW2222211122222012298110006013069900000000000000000000000000000000000000000000000000000000000000000000002947000000000000 -T320230111112010929120170704WTT##WZZB21222212206398100000000 -T12023011111201093420800414651120332110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120109341219790514WT@@0B#TZ2222212222221012211111570023099900000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111112010934420150711WT@@Z00P022212222104301109140000120130518WTTPZYWZZ22212212204302100000000 -T12023011111201095622000410051120633111034300000000000007710330000000000000000000000000000000000222222000000002229022 -T2202301111120109562219760926WT@YYBT9P1222222222221012212920303013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120109562219820121WT@YYBT9P1222221222221102212990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112010956120060926WT@Z9@BYZ12222212204311100000000120040905WTT@Y#TBW12222212204312100000000 -T320230111112010956120200423WT@Z@Z#9#12222212206398100000000120100523WTTTYTPYY12222212204307100000000 -T12023011111201100320800411991120213110611300000000000005280280000000000000000000000000000000000222222000000002229072 -T2202301111120110031219920121WT@00B#BP1222222222221012216110630023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112011003120110227WT@0P#WZW12222222204305100000000 -T12023011111201107524200404052120213210548300000000000005280100000000000000000000000000000000000222222000000002229032 -T2202301111120110751219820726WT@Z9YBP@2222212222225012212210114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112011075120140902WT@YBWPPY22222112204301200000000 -T12023011111201110422700408351120232110516300000000000004170380000000000000000000000000000000000222222000000002229022 -T2202301111120111042219760701WTTW9@#0Y1222222222215012212111030013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112011104120060712WTTT@#YP912222112204309100000000 -T12023011111201112825900402631110713111575300000000000004880010000000000000000000000000000000000222222000000002229012 -T2202301111120111281219890126WT@#0##@Y2222212222225012213110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000001567 -T320230111112011128120110714WTT@PW0TW22222122204305100000000120090724WTT9#ZTTY22222122204307100000000 -T320230111112011128120180921WTT9#BBY022222122204398100000000120130723WT@@WWB0T22222122204302100000000 -T320230111112011128120210718WTTT0T#B022222122204398100000000120200907WTTT0T@WY22222122204398100000000 -T12023011111201132422000410051120212110611300000000000005060650000000000000000000000000000000000222222000000222219072 -T2202301111120113241219830701WT@9Y9Z0@1212212222221012212110660021011803000000000000000000000000000000000000000000000000000000000000008600000000000000000000 -T320230111112011324120100204WT@Y#W@#Y22222122204306100000000 -T12023011111201141620900411721120213110384300000000000003160080000000000000000000000000000000211122222000000012219012 -T2202301111120114161219910121WTTTYBTY02222211222223012211110095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112011416120160502WT@W#@@Z#11222222204398100000000 -T12023011111201142321700406141120513111199300000000000008880050000000000000000000000000000000000222222000000002229012 -T2202301111120114231219830404WT@00ZPPW1222222222223012212210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112011423120080705WT@@B@TZB12222212204309100000000120060727WTTZP99#912222212204310100000000 -T320230111112011423120170218WT@0WZZYT12222212204398100000000120140126WT@#T#9Z@12222212204302100000000 -T12023011111201169025900402631120513111116300000000000006540070000000000000000000000000000000000222222000000002229072 -T2202301111120116901219900218WT@BB#BP@1222222222223012212110830023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112011690120130707WTT@P@Y0B12222222204304100000000420110104WT@W#9TY912222212104304109140000 -T320230111112011690420190723WT@T9T9PP12222222104398109140000120160527WTT9Y#90012222212204301100000000 -T12023011111201169925900406081120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120116993219770322WTTZB0@Z92122222222221012212110491111069915000000000000000000000000000000000000000000000000000000000000136000000000000000000149 -T320230111112011699120110313WT@@TWWYB21222212207302100000000 -T12023011111201179023300410111120333110740300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120117902219750927WTTY#BW#T2222212222211012212110372313089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112011790120060126WT@B@0B#022222122204309100000000120060126WTT#@W9PT22222122204309100000000 -T12023011111201183423500404531120213110611300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111120118341219960423WT@9TPY9W2222212222223012212210035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112011834120170326WT@9TPY9W22222112204398200000000 -T12023011111201184223500411471120313110835101590000002006540230000000000000000000000000000000000222222000000002229072 -T2202301111120118421219820409WT@T#TTZ02222212222221012216110870023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112011842120210907WTTWZYT0Z22212212204398100000000120060301WTT9ZW9PZ22212122204309100000000 -T12023011111201186520600407031120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120118652219720322WTT@T@@P91122222222211012212111310013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112011865120060423WTTPB9#T#12222212204311100000000 -T12023011111201218422000407231110313120000300000000000004000600000000000000000000000000000000000222222000001692219012 -T2202301111120121841219910118WTTZY0TB02122222222221012212120550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112012184120170904WT@@W0@9W12222122204398100000000120110304WTT#ZBT#T12222122204305100000000 -T12023011111201243722000408561120313110766138630000000006540200000000000000000000000000000000000222222000000002229012 -T2202301111120124371219930723WT@YW@0@92221222222221012216110233723011800000000000000000000000000000000000000150001000000000000000000000000000000000000000000 -T320230111112012437120200307WTTBYT9P022212222204398100000000120190101WTTY99PWY22212122204398100000000 -T12023011111201253220600407031120212110611300000000000005280300000000000000000000000000000000000222222000000002229012 -T2202301111120125321219880207WTTP@Y0#T2222212222221012212110312923010900000000000000000000000000000000000000000000000000000000060000000000000000000000000000 -T320230111112012532120200423WT@BT#W#T22212112204398100000000 -T12023011111201258225100407671120323110761300000000000006540030000000000070008000000000000000000222222000000002229072 -T2202301111120125821219790907WT@YPZW@@2222212222222011212190630023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120125821219780723WTTZBZZTW2222211222222021212190164423011800000000000000000000000000000000000000000000000000000000340000000000000000000000000000 -T320230111112012582120170201WT@TB#TBY22222122204398100000000 -T12023011111201265224700402992120523211136300000000045008880020000000000000000000000000000000000222222000000002229032 -T2202301111120126521219860318WT@9TPY9W2222211222222011212290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120126521219910504WT@9TPY9W2222212222222021202290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112012652120120421WT@9TPY9W22222122204303200000000 -T320230111112012652120210123WT@9TPY9W22222112204398200000000120130307WT@9TPY9W22222112204302200000000 -T12023011111201278023500410672120213210611300000000010005280100000000000000000000000000000000000222222000000002229032 -T2202301111120127801219810407WT@@P0BTP2222212222225012212210114923011400000000000000000000000000000000000000000000000000000000360000000000000000000000000000 -T320230111112012780120090313WT@Y@Y09W22222112204305200000000 -T12023011111201281720600402141120232110516300000000000004170780000000000000000000000000000000000222222000000002229022 -T2202301111120128172219830101WT@ZB@T#02222221222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000088900000000 -T320230111112012817120110723WT@0#Y@9W22222112204304100000000 -T12023011111201285420600414771120413110939300000000000007710150000000000000000000000000000000000222222000000002229012 -T2202301111120128541219910123WT@PZBT#T2222212222221012216110421823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112012854120120127WT@099@W@22222122204302100000000 -T320230111112012854120200708WT@YPY0BW22212122204398100000000120190422WT@@#9W#922212122204398100000000 -T12023011111201299621000405411120313110835300000000000104170350000000000000000000000000000000000222222000000002229072 -T2202301111120129961219770427WT@0WWPZB2222212222221012216110970023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112012996520130507WT@B#99#Z22222122204398100000000520120407WTT0TYT#B22222112104301109140000 -T12023011111201311422000410051120613111275120600000000007310060000000000000000000000000000000000222222000002782219072 -T2202301111120131141219880718WT@YP0W#P1222212222221012216110780021011807000000000000000000000000000000000000000000000000000000000000055400000000000000000000 -T320230111112013114120070423WTT0W@90022222122204310100000000 -T320230111112013114120130721WTTTYPZ0Y12222222204302100000000120080923WT@##P99Z22222122204309100000000 -T320230111112013114120210312WTTWTY#PB22222222204398100000000120160112WT@ZY#@9#12222112204301100000000 -T12023011111201321022000404691110323110785300000000000004850010000000000000000000000000000000000222222000000002229012 -T2202301111120132101219840218WT@B0#WWZ2222211222221011212190025823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120132101219890301WTTWBWY@92222212222221011216190124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013210120170327WT@@B9#ZT22222112204398100000000 -T12023011111201322025600400661120333110740300000000000005280650000000000000000000000000000000000222222000000002229022 -T2202301111120132203219550404WT@PY#PYW2222212222215012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112013220120180421WT@T9WYZ921222222206398100000000120160312WTTZYBY9T22222222206398100000000 -T12023011111201322424200408571120313110740300000000000005280020000000000000000000000000000000000222222000000002229012 -T2202301111120132241219870923WTT0#TY#B2222212222221012213110213923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120132245220040723WTT0WZWTW1222211222211043211190006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112013224120060108WT@YZP#PT12222122204310100000000 -T12023011111201327220600414871120213110611300000000000005280270000000000000000000000000000000000222222000000002229012 -T2202301111120132721219830101WT@WP0P@B2222211222225012212110283223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013272120080401WTTZB9Y#022222112204308100000000 -T12023011111201327424700408301120332110740300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120132742219520118WT@#B@B@92222221222212012216190441613089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T2202301111120132742219640423WT@YWB#ZB2222222222212022298190144613089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111112013274120060127WT@#B##ZZ22222212204308100000000 -T12023011111201333424700402991120323110766300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111120133341219770327WTT##WZWY2222211222222011216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120133341219800901WTT#BPY@T2222212222222021216290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013334120190727WT@WP#00T22222112204398200000000 -T12023011111201353220800410781120432110939300000000000006540400000000000000000000000000000000000222222000000002229022 -T2202301111120135322219840309WTTBPBP@91222222222211012212110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112013532120060526WTT#ZZ#WZ22222212204310100000000 -T320230111112013532120200209WT@0ZBB#012222212204398100000000120080727WT@@@Z09P12222222204308100000000 -T12023011111201353320600402141120313110835300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111120135331219920302WTTTPY9Z@2222212222221012212110075323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013533120220902WT@9ZBB@022222112204398100000000120160109WT@W#P@YW22222112204398100000000 -T12023011111201374023500407161120213110611300000000000005280570000000000000000000000000000000000222222000000002229072 -T2202301111120137401219750412WTTYTB0Z@2222211222223012212110650023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013740120160126WTTWBBTWW22222112204398100000000 -T12023011111201376120800411931120413110939300000000000007710160000000000000000000000000000000000222222000000002229012 -T2202301111120137611219910718WT@0ZWT0@2222212222225012212110510923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013761120160327WTTYW#Y#P22222112204398100000000 -T320230111112013761120210412WTTZT@PZZ22222112204398100000000120180704WTT9BWY0Y22222112204398100000000 -T12023011111201377122000402371120212110598300000000000005280370000000000000000000000000000000000222222000000002229012 -T2202301111120137711219970323WT@9BP0092221222222221012211110382223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013771120210314WT@Y#WZP022212212204398100000000 -T12023011111201378124700408091120213110306300000000000005280030000000000000000000000000000000000222222000000002229012 -T2202301111120137811219750518WT@BZY0B#2222121222225012213110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013781120060923WTTZP9@WY22221112204310100000000 -T12023011111201379623700414331120233120000300000000000504170990000000000000000000000000000000000222222000000002229022 -T2202301111120137963219730124WTTT990YB2222212222225012213110144611069938000000000000000000000000000000000000000000000000000000000000438400000000000000000087 -T320230111112013796120050413WTTZYBZBZ22222112207311100000050 -T12023011111201397720600414161110213110446300000000002000170060000000000000000000000000000000000222222000000002229012 -T2202301111120139771220030912WT@9YBWP@2222122222221012211290065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013977120210904WT@TYP99P22221212204398100000000 -T12023011111201398520800405391120313110766300000000000306540560000000000000000000000000000000000222222000000002229072 -T2202301111120139851219940127WTT00P0PT2221222222221012212120790023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112013985120190402WT@9TT#@@22212212204398100000000120140327WT@W9WTZY22212222204301100000000 -T12023011111201400025900406841120232120000300000000000001660990000000000000000000000000000000000222222000002512219022 -T2202301111120140003219840512WTTBYBWZZ2122222222221012211110184213069900000000000000000000000000000000000000000000000000000000000000273400000000000000000149 -T320230111112014000120060123WTTY@@Z#021222222207309100000269 -T12023011111201431524700406631120233110516300000000000004170590000000000000000000000000000000000222222000000002229022 -T2202301111120143153219640204WTTPY9WZZ1222122122224012216120006013069900000000000000000000000000000000000000000000000000000000000000000000001474000000000000 -T320230111112014315120080412WTTYY9WPT12222112206307100000000 -T12023011111201432724500405781120513111122300000000000004110360000000000000000000000000000000000222222000004772219012 -T2202301111120143271219870718WTT@#Z9@#2222212222221012210110441621011814000000000000000000000000000000000000000000000000000000000000095200000000000019180000 -T320230111112014327120080408WTT9BB9B022222222204307100000000120060918WTT@WB#B912222122204309100000000 -T320230111112014327120150704WT@0BT@Z012222112204398100000000120120113WTTWP0Z#B22222122204303100000000 -T12023011111201440420800410781120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120144042219800721WTTP9Z#@#2222212122215012216110640013109900000000000000000000000000000000000000000000000000000000000000000000000544039000000066 -T320230111112014404120060413WT@TW#T0022222112204308100000000 -T12023011111201443822000411281110213110611300000000000004420110000000000035005000000000000000000222222000000112219012 -T2202301111120144381219780104WT@YBY9B02221221222221012212110124821011802000000000000000000000000000000000000000000000000000000130000000000000000000000000000 -T320230111112014438120080913WT@0@9#TY22212222204309100000050 -T12023011111201449323500410671120213110376300000000000005280530000000000000000000000000000000000222222000000002229072 -T2202301111120144931219860305WTTW#0@9Y2222222222221012210110620023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112014493120200502WT@ZYPBP922212222204398100000000 -T12023011111201453322000413731110633110740300000000000001890020000000000000000000000000000000000222222000001962219021 -T2202301111120145332219870905WT@YYBT9P1222222222222012208910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120145332219840923WT@YYBT9P1222221222222102207990006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112014533120090412WT@0@B9WW12222212204308100000000420060208WT@YYBT9P12222212204310900000000 -T320230111112014533120160901WT@YYY00#12222212204301100000000120140723WTTB9YY0W22222212204303100000000 -T12023011111201461024700413761120612111339300000000000010090290000000000000000000000000000000000222222000000002229072 -T2202301111120146101219840707WTT@PP9BB2222212222221012212110980023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112014610120050721WTTPPYYZT22212112204310100000021 -T320230111112014610120130323WT@WTTZ@B22212112204302100000000120130323WTTZ#00WP22212122204302100000000 -T320230111112014610120130323WT@ZPZYPP22212112204302100000000120120723WT@PT99ZW22222112204303100000000 -T12023011111201476223500410671110213110611300000000000005280010000000000000000000000000000000000222222000000002229012 -T2202301111120147621220000509WTTP9B00B2222212222221012212110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112014762120050904WT@TB0WBY22222112207311100000000 -T12023011111201483724700409321120322110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111120148371219760512WT@@990WB2222212222223011215210075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120148371219720702WTT@W@Z#Y2222211222222021213290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112014837120080426WT@@TPZ9022222112204308200000000 -T12023011111201497921000414221120533110969300000000000007710930000000000000000000000000000000000222222000000002229022 -T2202301111120149792219830227WT@YYBT9P1222222222221012203910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112014979120130502WT@ZZYY9W12222222204301100000000120050923WT@BYB#0#12222222204309100000000 -T320230111112014979120170207WT@@@TTWB12222212204398100000000120130502WT@Z0BY9912222222204301100000000 -T12023011111201498224200404051120332110782300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120149822219810223WT@#YPZP92221222222215012212120760013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112014982120180318WT@B@YWTB22212222204398100000000120080102WT@9PZTBB22212212204307100000000 -T12023011111201498520600408181120233110493300000000000004170510000000000000000000000000000000000222222000000002229022 -T2202301111120149853219930309WT@YZPTPB1222222222222012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112014985120170107WT@YZ@YZW12222212207398100000000 -T12023011111201501222000410051110213110516300000000000003570010000000000000000000000000000000000222222000000002229012 -T2202301111120150121219860522WTTTPTZ9Z1222212222225012213110105023011400000000000000000000000000000000000000000000000000000000030000000000000000000000000000 -T320230111112015012120190501WT@09#0B#12222122204398100000000 -T12023011111201504720600404351120333120000300000000000005010070000000000000000000000000000000000222222002600012219022 -T2202301111120150473219600701WT@@YW@@Z2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112015047120180912WT@ZY@9WP22222112206398100000000120120718WTT@09T@012222112206303100000000 -T12023011111201505422000407791120433110939300000000000006540400000000000000000000000000000000000222222000000002229022 -T2202301111120150543219510314WT@#PB#Z92221222122225012214110006013069900000000000000000000000000000000000000000000000000000000000000000000002672000000000750 -T320230111112015054120070904WTTZ#YY#@22222222206308100000000 -T320230111112015054120140312WTT9@9YT#22222222206302100000000120130126WT@#9TPZZ22222212206302100000000 -T12023011111201506423500406851120523111199300000000122508880020000000000000000000000000000000000222222000000002229012 -T2202301111120150641219880912WT@W0WPWY2222221222222011216190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120150641219940118WT@@T0ZTB2222212222222021216190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112015064120160304WT@#ZWYZB22222222204398100000000 -T320230111112015064120210426WTTBW9ZYZ22222212204398100000000120180701WTTZZY#@Z22222212204398100000000 -T12023011111201524222000407241110213110446300000000000004930010000000000000000000000000000000000222222000000002229012 -T2202301111120152421220020923WT@B09YZZ2222122222221012212110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112015242120220423WTT9PZ0WZ22221212204398100000000 -T12023011111201527823500402711120213110598300000000000005280120000000000000000000000000000000000222222000000002229072 -T2202301111120152781219880901WT@TWPZB@2222212222221012212110690023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112015278120070923WTTZP0WPY22222112204309100000000 -T12023011111201536924500405941120232110532300000000000004170280000000000000000000000000000000000222222000000002229022 -T2202301111120153692219840705WT@BB@WBY2222212222211012212110184213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112015369120120714WT@#WZWT022222122204303100000050 -T12023011111201537525600414971120233120000103450000000004170720000000000000000000000000000000000222222000000002229022 -T2202301111120153755219760726WT@T#@9PW2222212222222012213110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112015375120160112WT@9@ZBZT21222212209398100000000 -T12023011111201544520600406751120332110563300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120154453219760711WT@Z@YZYB1221222222211012208110421813069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112015445120190126WTT#Y9WW012212222207398100000000120180912WT@B@PZPB12222112207398100000000 -T12023011111201545624200404702120323210835300000000005006540070000000000000000000000000000000000222222000000002229032 -T2202301111120154561219960405WTTZ@ZPW02222212222221011213190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120154561220000118WTTY90ZB@1221221222221011212190025822011900000000000000350004000000000000000000000000000000000000050000000000000000000000000000 -T320230111112015456120220427WTTY#P#BY22222112204398100000000 -T12023011111201551023500406851120313110727300000000000006540100000000000000000000000000000000000222222000000002229012 -T2202301111120155101219850921WTT#Z09992222212222225012214110392123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112015510120090718WTTY#9BW922222112204306100000000120060907WTTZPWZZ@22222122204310100000100 -T12023011111201551224700409321120613111392300000000000008880040000000000000000000000000000000000222222000000002229072 -T2202301111120155121219920923WT@PZBZ0W2221222222221012216110640023010100000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111112015512420120318WT@T0ZWWB22212212104301109140000 -T320230111112015512120190322WT@PBZ#@B22212222204398100000000120170114WTT0W0TZ922212212204398100000000 -T320230111112015512120220213WTT99Y9Z022212212204398100000000120200701WTTY999YW22212222204398100000000 -T12023011111201554924700405832120313210835300000000119006540160000000000000000000000000000000000222222000000002229032 -T2202301111120155491219830712WTTY##9BT2212222222223012214910174323011400000000000000000000000000000000000000000000000000000000000000000000000000000000001800 -T320230111112015549120120218WTTB9Y0@Y22122212204304900000000120100407WTTB09BT#22122222204306900000000 -T12023011111201571520600414871120233120000112180000000004170060000000000000000000000000000000000222222000000002229022 -T2202301111120157153219650411WTTY9B9Y01222211222225012213110015911069937000000000000000000000000000000000000000000000000000000000000342500000000000000000000 -T320230111112015715120210927WT9TTT@T@12222112206398100000000 -T12023011111201601325900406081120113110376300000000000002860140000000000000000000000000000000000222222000001312219042 -T2202301111120160131219870118WTTY99B0W2122222222223013213190045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000149 -T12023011111201604221700409521120213110611300000000000005280430000000000000000000000000000000000222222000000002229012 -T2202301111120160421219910214WTT9@@TBB2222212222221012212120441623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112016042120140126WTTPYWTYY22222122204302100000050 -T12023011111201608824200403511120233110516300000000000604170230000000000000000000000000000000000222222000000002229022 -T2202301111120160881219740304WTT@WZ9#@2212222222225012212210243623099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112016088520200912WT@0W#P##12122212104398109140000 -T12023011111201625920600402141120233120000300000000000002760990000000000000000000000000000000000222222000001412219022 -T2202301111120162593219770327WTTB#BZPZ2222212222221012215110105013069900000000000000000000000000000000000000000000000000000000000000552000000000000000000000 -T320230111112016259120050423WT@BB0#0W21222212207311100000224 -T12023011111201633320600400871120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120163332219610221WTTB#TWYT2222211222215012214110352513089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112016333120060711WT@BTT9YY22222112204308100000000 -T12023011111201640124700401281120212110611300000000000005280470000000000000000000000000000000000222222000000002229012 -T2202301111120164011219910709WTTW#9@#T2222212222221012212110471323011400000000000000000000000000000000000000000000000000000000330000000000000000000000000000 -T320230111112016401120130721WTTP9ZYB@22222112204301100000000 -T12023011111201645722000407412120323210786300000000000006540150000000000000000000000000000000000222222000000002229032 -T2202301111120164571219840122WTTP9PW902222212222222011212290164423011800000010000100000000000000000000150001000000000000000000030000000000000000000000000000 -T2202301111120164571219840226WT@WYT@#B2222211222222021212290164423011800000011000100000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112016457120080113WT@#B##WZ22222122204308200000000 -T12023011111201652424700406742110633211159300000000000005800010000000000000000000000000000000000222222000000002229021 -T2202301111120165243219950313WT@#BZZ992222122222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112016524120070704WTT#0PT#B22222212209309900000000 -T320230111112016524120140323WT@YTTZ9P22222222209301900000000120100109WTT@ZZP@P22221212209306900000000 -T320230111112016524420220213WTT#T0T9B22221222204398100000000420190122WTTB9Z#W#22222222204398100000000 -T12023011111201659122000409991120312110817300000000000406540120000000000000000000000000000000000222222000000002229012 -T2202301111120165911219870427WTT0TZ0WB2221221222221012211110530723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112016591120070326WTT99ZZB#22212212204308100000000120050207WT@ZY0PYB22212212204310100000000 -T12023011111201663624100402401120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120166362219770305WT@@BW#BP2222212222211012212110610013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112016636120100301WT@#YPY0Z22222122204304100000000 -T12023011111201682122000404841120213110611300000000000105280030000000000070001000000000000000000222222000000002229012 -T2202301111120168211219740305WT@PT@@BB2221222222221012215120045623011400000000000000000000000000000000000000000000000000000000280000000000000000000000000000 -T320230111112016821120120913WT@T#@YYT22212212204304100000000 -T12023011111201682420800404431120233110516300000000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111120168242219750926WT@T9@@BW2222212222211012211110920013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112016824120050214WTTTZ@9Y022222122204310100000050 -T12023011111201683620600400801110713111480300000000000003870010000000000000000000000000000000000222222000000002229012 -T2202301111120168361219860326WTT99Z#Y01122212222225012212110105023010900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112016836120100905WTTZ0TB@#11222222204307100000003420060926WTTY9#0#Z11222222104311106090003 -T320230111112016836120170726WTT#09#Y@11222212204398100000000120120926WTTWTPWZP11222212204305100000003 -T320230111112016836120210504WT@#9B09B12222122204398100000000120190907WTTBZTWB@11222222204398100000000 -T12023011111201699024200403941120212110552106790000052502650510000000000000000000000000000000000222222000002632219072 -T2202301111120169901219840513WT@@Y@PTP2221222222221012213110620021011907000000000000000000000000280000000000000000000000000000000000052400000000000000006689 -T320230111112016990120150707WT@PZ#B@W22212222204302100000000 -T12023011111201703620700402051120213110618300000000019505280080000000000000000000000000000000000222222000000002229012 -T2202301111120170361220020126WTTZPTTY#2222212222221012212110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017036120220921WT@9BPTPP22222112204398100000000 -T12023011111201705724500404151120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120170573219650123WT@@BY0WB2222212222222012212120006013069900000000000000000000000000000000000000000000000000000000000000300000000000000000000000 -T320230111112017057120060404WT@99#BZP22222122206310100000050 -T12023011111201717020900411721120413111034300000000000004100990000000000000000000000000000000000222222000000002229072 -T2202301111120171701219910323WTT@W@PZ92222212222221012212111100021011806000000000000000000000000000000000000000000000000000000000000033000000000000000000000 -T320230111112017170120090923WT@Y9P#ZY22222122204308100000000 -T320230111112017170120140727WTT9T#9P022222122204303100000000120120922WTTY90ZYP22222122204305100000000 -T12023011111201742724900403221120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120174273219670723WTT0BB99#2222212222222012209110085213069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017427120130704WTTW@9T0W12222122206301100000050 -T12023011111201746124700405832120423211034300000000007007710110000000000000000000000000000000000222222000000002229032 -T2202301111120174611219840409WT@9TPY9W1222221222221011216290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120174611219930312WT@9TPY9W1222212222221011211290124823011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017461120160513WT@9TPY9W12222112204398200000000120120309WT@9TPY9W12222112204302200000000 -T12023011111201746825900402831120412110941300000000000607710090000000000000000000000000000000000222222000000002229012 -T2202301111120174681219840701WT@P0@@T@1222222222221012212110372323010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017468120050101WT@9@PPZB12222222204310100000000 -T320230111112017468120220313WT@P0T@P@12222212204398100000000120200926WT@B000T#12222212204398100000000 -T12023011111201750820800414651120312110746300000000000005280360000000000000000000000000000000000222222000000002229012 -T2202301111120175081219900201WT@W##B@Y1222212222221012212210075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017508420140423WTT#0#Z#012212221204303100000550120120113WTT0@P#9B12222212204303100000000 -T12023011111201754020600414091120113110341300000000000004170140000000000000000000000000000000000222222000000002229012 -T2202301111120175401219860901WT@9T090B2222212222225013216110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111201759225200410591120413110939300000000000005760740000000000000000000000000000000000222222000001952219072 -T2202301111120175921219800712WT@Y9T0W92222212222225012212110750021011945000000000000000000000000000000000000000000000000000000000000038800000000000000000000 -T320230111112017592120060101WT@W0ZZB022222122204309100000000 -T320230111112017592120090322WT@#@PTB@22222112204306100000000120060101WT@B@TTYB22222122204309100000000 -T12023011111201765421700406141120213110611300000000020005280150000000000000000000000000000000000222222000000002229012 -T2202301111120176541219670905WT@BY0PBY2222211222225012214110362423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017654120130314WTTTYZWYW22222112204303100000000 -T12023011111201773622000409411120413110987300000000100007710140000000000000000000000000000000000222222000000002229012 -T2202301111120177361219920726WTT@Y9WT#1222222222221012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017736120120704WTT0Y0PZY12222212204303100000000 -T320230111112017736120220124WT@Z#WPTW12222222204398100000000120140404WT@Z9#9ZY12222222204302100000000 -T12023011111201782822000413691120233110376300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111120178282219990712WT@YYBT9P1222222222221012207910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017828120190727WT@PP999#12222122204398100000000 -T12023011111201792620800414151120213110576300000000008504430050000000000000000000000000000000000222222000000852219072 -T2202301111120179261219890912WTT9ZY@PZ2222212222223012213110680021010906000000000000000000000000000000000000000000000000000000000000033700000000000000000000 -T320230111112017926120140312WT@WPB@0922222122204301100000000 -T12023011111201796522000412231120332120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120179652219740311WT@99#@@@2222212222215012212110194113089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111112017965120070326WTTPW9WWB22222112204306100000017120070326WT@BY9BYW22222112204306100000017 -T12023011111201796720200414531120312110835102340000000006540250000000000000000000000000000000000222222000000002229012 -T2202301111120179671219990918WT@#Y#BYB2222212222221012211110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112017967120200118WTTTBBP#912222122204398100000050120180126WT@ZW@BP@22222112204398100000050 -T12023011111201809323500405271120233110259300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120180932219750713WT@B@YYTW1222222222223012209920006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018093120060207WTTZY@#WB12222222204311100000000 -T12023011111201813722000410051120332110740300000000071005280450000000000000000000000000000000000222222000000002229022 -T2202301111120181371219850701WTTW9T@0@2221222222221012212110860023099900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018137120160918WTTWZ00TW22212212204398100000000420140713WTT@@000922212212104301109140000 -T12023011111201833425600414551120213110598300000000000005280060000000000000000000000000000000000222222000000002229042 -T2202301111120183341220000226WTTBBBYZZ2222212222223012210110045623010700000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018334120180113WT@PBTZ@T22212222204398100000000 -T12023011111201844025900403551120232120000124390000000004170640000000000000000000000000000000000222222000000002229022 -T2202301111120184403219840223WTT9TY0ZP1222222222221012213110065413069900000000000000000000000000000000000000000000000000000000000000267400000000000000000000 -T320230111112018440120110126WT@PT##0@12222222207303100000000 -T12023011111201844525000414191120313110781300000000000006210120000000000000000000000000000000000222222003200012219012 -T2202301111120184451219880505WTT09BT9Y2222211222221012212110263423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018445120220427WTTBPWZZZ12222122204398100000000120180118WT@B#@9@#12222122204398100000000 -T12023011111201848821000411361120213110536110750000000001700130000000000000000000000000000000168122222000001902219012 -T2202301111120184881219910323WTTBBT99#2222212222221012213110144621011203000000000000000000000000000000000000000000000000000000000000021500000000000000000000 -T320230111112018488120200318WT@0Y0@Y#22222122204398100000000 -T12023011111201877825900400311120323110835300000000212101890040000000000000000000000000000000000222222000000002229012 -T2202301111120187781219720324WT@TBWWWB1222222222222011212190233723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120187781219750726WT@YYYTZ#1222221222222021203290213923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018778120070326WT@@9W@WB12222212204309100000000 -T12023011111201878722000407411120523111211300000000063308430330000000000000000000000000000000000222222004400012219012 -T2202301111120187871219800121WT@ZT#@0Z2222121222222011208290322822011900000000000000330004000000000000000000000000000000000000040000000000000000000000000000 -T2202301111120187871219890218WTTB#W0Y92222122222222021208290322823011800000000000000030000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018787120100927WT@Z9YW#Z22221212204305200000000 -T320230111112018787120210209WT@YTY#9P22221212204398100000000120110921WTT##ZYW#22221222204303200000000 -T12023011111201882524200414351120233110376300000000000004170890000000000000000000000000000000000222222000000002229022 -T2202301111120188253219840726WTTYWPPW@2222122222223012213110630013069900000000000000000000000000000000000000000000000000000000000000000000000000000000002180 -T320230111112018825120130209WT@YTPYB022221212207302100000000 -T12023011111201885824200403941120313110740300000000000006280090000000000000000000000000000000000222222000000262219012 -T2202301111120188581219830913WTTBT@#TB2221221222225012211110105023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000025 -T320230111112018858120140211WT@@0#TW@22212222204302100000000120040104WTT9P#0P#22222222204311100000100 -T12023011111201888020600402132120313210766300000000000006540060000000000000000000000000000000000222222000000002229032 -T2202301111120188801219830926WT@ZY9BWP2222212222225012215210065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018880120140421WTT@PYY0P22222112204302200000000120090723WT@BZ##9T22222122204307200000000 -T12023011111201896524200409731120233120000300000000000004170290000000000000000000000000000000000222222000000002229022 -T2202301111120189653219870308WT@@#@0992222222222222012212110006011069939000000000000000000000000000000000000000000000000000000000000264800000000000000000000 -T320230111112018965120080118WTTZYTBB@22221212207308100000000 -T12023011111201898222000412011120323110766300000000000006540370000000000000000000000000000000000222222000000002229012 -T2202301111120189821219830713WT@P0W00Y2222211222221011212190253523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120189821219830108WT@90B9P#2222212222221011213110382223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018982120090105WTT@99@0P22222112204304100000000 -T12023011111201899924200403511110313110835110040000000006540120000000000000000000000000000000000222222000000002229012 -T2202301111120189991219970404WT@W09@PT2222222222221012216120134723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112018999120210427WT@0WP0Z@22212222204398100000000120180707WTTYTB#0P22222222204398100000000 -T12023011111201900724200403941120212110611300000000000005280230000000000000000000000000000000000222222000000002229072 -T2202301111120190071219710212WT@BTY00@2222212222223012212110780023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112019007120190123WTT9Z9TYB22222122206398100000000 -T12023011111201923921700406141120332120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120192392219830101WT@PPB09W2222212222212012216110006013089900000000000000000000000000000000000000000000000000000000000000189400000000068500000000 -T2202301111120192392219830905WT@P9TTBB2222211222212022212190006013089900000000000000000000000000000000000000000000000000000000000000000000000000068500000000 -T320230111112019239120080727WT@#@B0#Z22222122204306100000000 -T12023011111201950424700409322120323210766300000000005106540040000000000000000000000000000000000222222000000002229032 -T2202301111120195041219670207WT@9TPY9W2222211222222011208290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120195041219700512WT@9TPY9W2222212222222021208290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112019504120080509WT@9TPY9W22222122204308200000000 -T12023011111201953724200407271120213110598300000000000005280120000000000035009000000000000000000222222000000002229072 -T2202301111120195371219800704WT@YP9PB92222212222223012210110740023011400000000000000000000000000000000000000000000000000000000270000000000000000000000000000 -T320230111112019537120120404WTT9@PP9T22212212204304100000000 -T12023011111201956024200405921120213110611300000000000005280120000000000000000000000000000000000222222000000002229012 -T2202301111120195601219770918WT@PZ#BBB2222212222223012212110352522011900000000000000300002000000000000000000000000000000000000020000000000000000000000000000 -T320230111112019560120150926WTT#W0PZ@22222112204398100000000 -T12023011111201961724200414851120333110704300000000000005280320000000000000000000000000000000000222222000000002229022 -T2202301111120196172219630227WTTZYYP#B2222211122215012212110800013109900000000000000000000000000000000000000000000000000000000000000000000000548038600000000 -T320230111112019617120080326WT@@0WWP022222122204306100000050120050309WT@W9PB##22222122204310100000050 -T12023011111201968324200401241120233110611300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111120196833219750907WTTTWWBYB2222212222224012216120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112019683120140223WT@9PZ0@@22222122206303100000000 -T12023011111201998324700413891120313110740300000000008004990040000000000070003000000000000000000222222000001552219012 -T2202301111120199831219800327WTTPBTB0@2222212222221012212110055521011720000000000000000000000000000000000000000000000000000000120000030900000000000000000000 -T320230111112019983120170107WT@Z09#P022212222204398100000000120120312WTTZW0YBB22212112204304100000000 -T12023011111202000022000403351120212110598300000000000005280990000000000000000000000000000000000222222000000002229072 -T2202301111120200001219810418WT@P0BY0W2221222222221012212111140023011400000000000000000000000000000000000000000000000000000000000000000000000000000000001466 -T320230111112020000120060314WTTB@90BT22222122204309100000000 -T12023011111202002821700407751120233120000300000000000004170030000000000000000000000000000000000222222000000002229022 -T2202301111120200285219830126WT@WW#0Z02222212222221012213110471311069941000000000000000000000000000000000000000000000000000000000000381300000000000000000000 -T320230111112020028120210701WTTW@@@#@22222122209398100000000 -T12023011111202005824200414721120623111384300000000000010090040000000000000000000000000000000000222222000000002229012 -T2202301111120200581219900301WT@9WP0W@2222212222222011205290035721011940000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120200581219840509WTT0B00Z02222211222222021205290035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112020058120130212WTTY90WWW22222122204302200000000120110418WT@PW@W9B22222112204305200000000 -T320230111112020058120210307WTTWP#P#@22222112204398200000000120160412WTTZ#WZ9P22222112204398200000000 -T12023011111202011024700402991120412111034300000000000007710260000000000000000000000000000000000222222000000002229072 -T2202301111120201101219820712WTT#T99TT1222222222221012212110610023011400000000000000000000000000000000000000000000000000000000000000000000000000000000001500 -T320230111112020110120040124WT@@PZ0#Z12222222204311100000000 -T320230111112020110120150709WT@W@Z0YB12222112204301100000000120060312WT@W#@W0#12222222204308100000000 -T12023011111202016920800414151120113110376300000000021604170020000000000000000000000000000000000222222000000002229012 -T2202301111120201691219800113WT@0TBZ0B2222212222225013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111202017222000409971120512111173133820000177208880920000000000000000000000000000000000222222000000002229072 -T2202301111120201721219890918WTTB0@ZZP2222212222221012211110930023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112020172120100414WTT#YP#YZ22222122204307100000033120090209WTTTZ#ZTW22222122204308100000033 -T320230111112020172120220512WT@ZT#0W#22212122204398100000000120110118WTT#TTTZB22222122204305100000033 -T12023011111202026524700406701120212110588300000000000005280670000000000000000000000000000000000222222000000002229072 -T2202301111120202651219680112WT@ZTWZTW2222211222223012204110690023011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111112020265120160123WT@TB9W#Z22222122204398100000050 -T12023011111202037825200410591120213110611300000000000005280270000000000000000000000000000000000222222000000002229072 -T2202301111120203781219710927WTTY00#@#2222212222223012213110850023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112020378120070118WTTWTY0BW12222112204309100000000 -T12023011111202043125600414951120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111120204311220030405WTTW@@W0B2221222222221012212110045623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112020431120220408WT@#@#90@22222122204398100000000 -T12023011111202051722000407241120332110740300000000000005260990000000000000000000000000000000000222222000000022219022 -T2202301111120205172219750304WT@ZYBTY02221222122215012212120920013109900000000000000000000000000000000000000000000000000000000000000000000000927000700000000 -T320230111112020517120080418WTTYPBYYZ22212222204307100000000120070205WTT0#WB@#22212222204308100000002 -T12023011111202051924700408301120332110740300000000000005280600000000000000000000000000000000000222222000000002229022 -T2202301111120205192219850421WTT9@0BBZ2122222222211012213110382213089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112020519120180726WT@Y9T9#B21222212204398100000000120160427WTTP@TTTT22222122204398100000000 -T12023011111202052623500402712120523210939300000000200008880070000000000000000000000000000000000222222000000002229032 -T2202301111120205261219780918WT@WW99##2222212222222011212290085223011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120205261219690301WTTW@BZ0B2222211222222021212290085223011800000000000000000000000000000000000000000000000000000000400000000000000000000000000000 -T320230111112020526120040709WTTB0W0@Z22222112204311200000000 -T320230111112020526120210422WTTB@YWY022222112204398200000000120060921WTTB9WP0B22222112204309200000000 -T12023011111202056422000409971120423111183300000000000007710020000000000000000000000000000000000222222000000002229012 -T2202301111120205641219910923WT@PYZ0@02122222222221011212190035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120205641219870105WT@T0T#B#2122221222221011212110035723011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112020564120210404WT@9TPY9W21222222204398100000000120190722WT@TPYBTY21222222204398100000000 -T12023011111202060224200414351120433110939300000000000006540040000000000000000000000000000000000222222000000002229022 -T2202301111120206022219640409WT@Z#0BYT2222211222213012216110303013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112020602120070509WT@PB0B#022222122204309100000000 -T320230111112020602120170107WTT9YPWBB22222122204398100000000120120104WTTYYWY9@22222112204303100000000 -T12023011111202076323500408281120323110835300000000006806540040000000000000000000000000000000000222222000000002229012 -T2202301111120207631219920124WT@9TPY9W2222212222222011215290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120207631219910212WT@9TPY9W2222211222222021215290055523011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112020763120170322WT@9TPY9W22222122204398200000000 -T12023011111202078322700408351120212110611300000000000304930290000000000000000000000000000000000222222000000352219072 -T2202301111120207831219690227WT@T00@BP2222212222225012210110700023010700000000000000000000000000000000000000000000000000000000000000000000000000000000000034 -T320230111112020783120060326WTT9Y00P@22222122204309100000000 -T12023011111202079224200407431120213120000300000000000002160270000000000000000000000000000000000222222000003122219012 -T2202301111120207921220010924WTTT#YP001222222222221012212110283221011810000000000000000000000000000000000000000000000000000000000000062300000000000000000000 -T320230111112020792120210112WTTW9T#TP12222212204398100000000 -T12023011111202095622700401571120233120000300000000000004170240000000000000000000000000000000000222222000000002229022 -T2202301111120209562219980921WT@@@YWBW2221122122223012212110095113109900000000000000000000000000000000000000000000000000000000000000000000000718000000000000 -T320230111112020956120180513WT@9P@TBB22211112204398100000000 -T12023011111202099520800411991120233120000111990000000004170520000000000000000000000000000000000222222000000002229022 -T2202301111120209953219690326WTT0ZB@ZT2222212222222012298110006011069940000000000000000000000000000000000000000000000000000000000000649900000000000000000000 -T320230111112020995120180101WTTP#BPBB22212222206398100000000 -T12023011111202129023500408282120233210361300000000000004170440000000000000000000000000000000000222222000000002229022 -T2202301111120212903219880418WT@BBB9BP2222122222221012212920760013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112021290120050207WT@9WBPP@22221222207311900000000 -T12023011111202137523500408282120213210598300000000091105280040000000000000000000000000000000000222222000000002229032 -T2202301111120213751219690721WT@T@ZP0Z2222212222225012214210055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112021375120110323WTTBZWWYZ22222112204305200000000 -T12023011111202138422000411281120213110611300000000000005280200000000000000000000000000000000000222222000000002229012 -T2202301111120213841219970207WT@B0#WPT2222212222221012201110204023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112021384120210318WTTW#YY@Z22222122204398100000000 -T12023011111202151124700409321120212110598300000000000005280180000000000000000000000000000000000222222000000002229072 -T2202301111120215111219650923WT@Y9Y0092222212222225012210111120023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112021511120040912WT@P@Y90#22212212204311100000000 -T12023011111202151222000410052120723211480300000000000011650100000000000000000000000000000000000222222000000002229032 -T2202301111120215121219910412WTT@0#PW#2222211222222011298290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120215121219930409WT@ZPPTT02222212222222021298290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112021512120130301WT@9TPY9W22222122204398200000000 -T320230111112021512120170904WT@9TPY9W22222122204398200000000120140308WT@9TPY9W22222112204398200000000 -T320230111112021512120200126WT@9TPY9W22222112204398200000000120190405WT@9TPY9W22222112204398200000000 -T12023011111202183821700406141120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120218382219730911WTTYWBZY92222212122215012212110660013109900000000000000000000000000000000000000000000000000000000000000000000000548038600000079 -T320230111112021838120090308WTTYYYWY022222112204306100000050 -T12023011111202191025200407301120213110598300000000000004660770000000000000000000000000000000000222222000000622219072 -T2202301111120219101219790722WT@0W0T0B2222212222225012213110770023010900000000000000000000000000000000000000000000000000000000030000000000000000000000000062 -T320230111112021910120080218WTTTB9Y@@22222112204309100000000 -T12023011111202192925200412491120323110835300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111120219291219850712WT@ZT#TY02222211222221011210190164423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120219291219950205WT@#@B#ZZ2222212222221011212190075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112021929120190705WT@BT90W@22222112204398100000000 -T12023011111202195422000407791120333120000300000000043004170680000000000000000000000000000000000222222000000002229022 -T2202301111120219542219870912WT@YYBT9P1222222222222012210910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112021954120090701WTTZW@@Z#12122212204305100000000420070204WT@YYBT9P12222222204308900000000 -T12023011111202200224200407311120232110493300000000000004170350000000000000000000000000000000000222222000000002229022 -T2202301111120220023219680301WT@W9YPB02222212222211012212120164413069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112022002120130412WT@00BY##21222222207304100000000 -T12023011111202208124700409321120113110376300000000000004170060000000000000000000000000000000000222222000000002229012 -T2202301111120220811219890118WT@YYWTYP2122222222223013212190065423011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111202209220600400801120412110835300000000000004620320000000000000000000000000000000308122222000000012219012 -T2202301111120220921219900721WT@0PZ0B#2122222222221012212110362423011200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112022092120080313WTT99WWZ#21222212204305100000000 -T320230111112022092120130413WT@ZW#WTW21222212204301100000000120120507WT@90#WZT21222212204302100000000 -T12023011111202209724700408301120213111036300000000000005280250000000000000000000000000000000000222222000000002229012 -T2202301111120220971219910122WT@P9B9@W2222212222221012212110263423011400000000000000000000000000000000000000000000000000000000370000000000000000000000000000 -T320230111112022097120180307WT@WW#99B22222122204398100000000 -T12023011111202209921000408061120212110611300000000000005280420000000000000000000000000000000000222222000000002229012 -T2202301111120220991219920309WT@P9Z0@T2222212222221012212110540623010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112022099120220926WTTWP90#Y22222122204398100000000 -T12023011111202213924200404051110213110271300000000000002210010000000000000000000000000000000000222222000000002229012 -T2202301111120221391219870413WTTTZ@#902212222222223012213110025823010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112022139120230426WT@0BTPYP22122212204398100000000 -T12023011111202218323700414331120433110670300000000060506540580000000000000000000000000000000000222222000000002229022 -T2202301111120221832219720723WT@YYBT9P1222222222221012209910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112022183120080326WTTB#PTZY12222222204306100000000 -T320230111112022183120110124WT@#Y@BYB12222212204304100000000120100505WT@B@WZW012222212204304100000000 -T12023011111202220624100402401120213110598300000000000005280060000000000000000000000000000000000222222000000002229012 -T2202301111120222061219990102WT@Y@Y9Y92222212222221012210110451523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112022206120170726WT@TYZZBW22222122204398100000000 -T12023011111202221022000406261120213110598300000000000005280090000000000000000000000000000000000222222000000002229012 -T2202301111120222101219900522WT@BPY0W01222212222221012211110233723010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112022210120220914WT@9TPY9W22222122204398100000000 -T12023011111202225324700408301120113110396300000000000004170020000000000000000000000000000000000222222000000002229012 -T2202301111120222531219960709WTTT#ZB0P2221222222221013212190035723011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111202228522000408891120633120000300000000000008880700000000000000000000000000000000000222222000000002229022 -T2202301111120222853219560318WT@BPT0Z91222221222224012211110006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000006686 -T320230111112022285120050904WT@YY#09012222212206310100000000 -T320230111112022285120140101WTTZTYWY912222212206301100000000120120712WT@99W0#Z12221222206301100000000 -T320230111112022285120160911WT@9P0PB912222212206398100000000120150218WT@ZW9P#P12222222206301100000000 -T12023011111202245724700406742120323210766300000000000006540050000000000000000000000000000000000222222000000002229032 -T2202301111120224571219920212WTT@@Y#T#2212221222222011214290006021011936000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120224571220000908WT@T0W0#T2212222222222021212290006023011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112022457120220421WT@TTWB9B22122222204398200000000 -T12023011111202253422000413731120333110611300000000000005280370000000000000000000000000000000000222222000000002229022 -T2202301111120225342219890726WT@YYBT9P1222222222221012209910006011079902000000000000000000000000000000000000000000000000000000000000010000000000000000000000 -T320230111112022534120150408WT@0YBTW#12222222204301100000000120120426WTTYZZT#W12222222204304100000000 -T12023011111202255525200410591120113120000300000000076004170030000000000000000000000000000000000222222000000002229012 -T2202301111120225551220040127WTT@YBTB#2222212222221013211110045623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T12023011111202257020600409771120433110939300000000000006540330000000000000000000000000000000000222222000000002229022 -T2202301111120225702219820118WT@0@@YW02222212222211012208120144613089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112022570120060118WT@WZWY0@21222212204307100000000 -T320230111112022570120220213WTTBTBB9T22222112204398100000000120120312WT@9#@WTP22212212204302100000000 -T12023011111202261323500407161120323110787300000000009706540190000000000000000000000000000000000222222000000002229012 -T2202301111120226131219870304WT@#@@Z#P2222212222222011202190263423011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120226131219810327WTTZ#WPB#2222211222222021213190194123011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112022613120160923WTTWP@Z@P22222112204301100000000 -T12023011111202283424200403461120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120228343219640926WTT0P0##P2222212222223012212110372311069985000000000000000000000000000000000000000000000000000000000000595700000000000000000000 -T320230111112022834120100111WTT0TP00@22222112206306100000000120100111WT@Y@9@B@22222112206306100000000 -T12023011111202285024200414851120333110822300000000000006540360000000000000000000000000000000000222222000000002229022 -T2202301111120228502219870218WT@ZT#0Z#2222222222213012212110760013089900000000000000000000000000000000000000000000000000000000000000000000010000000100000000 -T320230111112022850120110423WTTTWPPWP22222212204305100000000120070312WT@WPYTW022222222204308100000000 -T12023011111202286122000405181120213110611300000000000002660070000000000000000000000000000000000222222000002622219012 -T2202301111120228611219810918WT@W9PZT92122222222223012210110184223010900000000000000000000000000000000000000000000000000000000010000000000000000000000000149 -T320230111112022861120180501WT@B@P#ZB11222222204398100000149 -T12023011111202322324200414851120233110516300000000000004170320000000000000000000000000000000000222222000000002229022 -T2202301111120232232219920726WTTT@WTP#1222222222211012212110411913089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111112023223120100511WT@#@B9WP12222212204305100000016 -T12023011111202333822000406191120213110598300000000000805280050000000000000000000000000000000000222222000000002229012 -T2202301111120233381219930923WT@WT@#WZ1222222222221012216110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112023338120140121WT@#0BZPP22212222204303100000000 -T12023011111202338420600414871120233110536300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111120233843219580307WTT#BT@WZ2222212122223012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000543000000000496 -T320230111112023384120070314WT@Y9YZT#21222212207307100000000 -T12023011111202347024200403511120233110949300000000000004170020000000000000000000000000000000000222222000000002229022 -T2202301111120234703219710421WT@ZPW@@92222212222215012212110015913069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112023470120110305WT@0#P#ZY22212122206304100000000 -T12023011111202355522000400461120232110557300000000000004170120000000000000000000000000000000000222222000000002229022 -T2202301111120235553219910424WTT9P0T@B2221221222221012216110105013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112023555120160904WTTY@W#BP22212222209398100000000 -T12023011111202380924700406741120213110598300000000000005280070000000000000000000000000000000000222222000000002229012 -T2202301111120238091219820913WT@@Z@PPY2222212222225012212110085223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112023809120190121WT@Y#Z@B022222122204398100000000 -T12023011111202385622700413181120333110611300000000000005280390000000000000000000000000000000000222222000000002229022 -T2202301111120238562219660727WT@YYBT9P1222212222225012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112023856120100524WTTB#Z09922222222204306100000000120070924WT@W9PTBY12222122204309100000000 -T12023011111202386520600400871120213110611300000000000005280110000000000000000000000000000000000222222000000002229012 -T2202301111120238651219930901WTT#@ZTW01222212222223012212110124823011800000000000000000000000000120000000000000000000000000000000000000000000000000000005782 -T320230111112023865120160712WT@BBW#TW12222122204398100000000 -T12023011111202407122000411551110212110598300000000000005280040000000000000000000000000000000000222222000000002229012 -T2202301111120240711219900912WTTY@##TB2221222222221012216110263423011400000000000000000000000000000000000000000000000000000000000000000000000000000000001887 -T320230111112024071120080407WTT9@B99P22212212204308100000000 -T12023011111202407622000404841120232110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120240762219770423WTT0ZYTP92221222122213012212111530013109900000000000000000000000000000000000000000000000000000000000000000000000878005600000000 -T320230111112024076120110327WTT0PBTZ#22212222204303100000000 -T12023011111202412724200414851120433110740300000000000006540990000000000000000000000000000000000222222000000002229022 -T2202301111120241273219550109WT@YYBT9P1222212222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112024127120060127WT@PY99WP12222122206310100000000 -T320230111112024127120090205WTTYW#WP912222122206307100000000120070111WT@@YYY#Y12222122206308100000000 -T12023011111202413521400408021120412110946300000000000007710270000000000000000000000000000000000222222000000002229012 -T2202301111120241351219910123WT@YYTTWY2222212222221012212110283223011400000000000000000000000000000000000000000000000000000000010000000000000000000000000000 -T320230111112024135120100114WTTP#PY@P22222112204306100000000 -T320230111112024135120200314WTTTZ9P0Y22222122204398100000000120100114WTTB@ZWWY22222112204306100000000 -T12023011111202424525900406841120233110516300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120242453219660721WTTW0TPZ91222212222211012210110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112024245120130926WT@0#@YYZ11222222206303100000000 -T12023011111202434424200403511120233110376300000000000004170880000000000000000000000000000000000222222000000002229022 -T2202301111120243443219610118WT@B9W0YW1222221122224012212110114913069900000000000000000000000000000000000000000000000000000000000000000000002047000000000000 -T320230111112024344120050721WTT0ZT0ZP22222112206310100000000 -T12023011111202475624200402501120233120000300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120247563219470701WTT@PBTZ#2222212122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000002805000000000000 -T320230111112024756120070909WT@W0ZPYP22222122206308100000000 -T12023011111202477823500414281120213110576300000000000505280400000000000000000000000000000000000222222000000002229012 -T2202301111120247781219820327WTT@Y0PW02222212222225012211110411923011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112024778120200102WTTWP0BZT22222122204398100000050 -T12023011111202478525600413441110233110572300000000000000670750000000000000000000000000000000000222222000003502219021 -T2202301111120247852219810924WTTP0BTT@2222212222213012216120025813089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112024785120190926WTTYP0W9T22221122204398100000000 -T12023011111202479320800405391120213110611300000000000005280100000000000000000000000000000000000222222000000002229012 -T2202301111120247931219920301WT@YPWBYB2222212222221012216110114923011400000000000000000000000000000000000000000000000000000000000000000000000000000000001161 -T320230111112024793120210518WTTP0W#Z#22222122204398100000000 -T12023011111202479420600414871120412111093300000000000206760650000000000000000000000000000000000222222000000002229072 -T2202301111120247941219910924WT@9YZ#ZZ1222212222221012212110660023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112024794120150309WTTWW9Y0P22222122204301100000100 -T320230111112024794120190401WTT@ZP#9T12222122204398100000000120180702WTT@TYYB@21222222207398100002441 -T12023011111202485925000401171120232110516300000000050004170490000000000000000000000000000000000222222000000002229022 -T2202301111120248592219650904WT@09T0BP2221221222214012213110006013089900000000000000000000000000000000000000000000000000000000000000000000000000082200000000 -T320230111112024859120160712WTTT9TYTW22212112204398100000050 -T12023011111202492324700405901120233110446300000000000004170090000000000000000000000000000000000222222000000002229022 -T2202301111120249233219880913WTTT@ZWBY2221212222225012212110025813069900000000000000000000000000000000000000000000000000000000000000000000000000000000002081 -T320230111112024923120100924WTTT@ZZ@Y22212112207305100000000 -T12023011111202493024700401011120233120000107090000000004170490000000000000000000000000000000000222222000000002229022 -T2202301111120249303219640512WT@@TZWPT2222212222222012212110114913069900000000000000000000000000000000000000000000000000000000000000000000000000000000001849 -T320230111112024930120160126WTTPZZW0W22222112206398100000050 -T12023011111202533322000414462120423210939300000000000007710020000000000000000000000000000000000222222000000002229032 -T2202301111120253331219910312WTTTY#9WP2212222222222011214290006022011900000000000000200002000000000000120002000000000000000000050000000000000000000000000000 -T2202301111120253331219900707WTTB#WWBZ2212221222222021214290006022011800000000000000120000000000000000120002000000000000000000020000000000000000000000000000 -T320230111112025333120220712WTTYW9#@W22122222204398200000000120200326WTT#PYTYT22122212204398200000000 -T12023011111202535622000411981110212110654300000000011004250340000000000000000000000000000000000222222000001032219072 -T2202301111120253561219750923WTTBP0##92222212222225012215121010021011807000000000000000000000000000000000000000000000000000000110000040800000000000000000000 -T320230111112025356120040721WTTZWPWZ#22222112204311100000000 -T12023011111202537420600404121120333110742300000000000005280130000000000000000000000000000000000222222000000002229022 -T2202301111120253745219850301WTTZ#Y#9#2222212222211012212110006013069900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112025374120090427WT@T#P#T022222122209307100000000120060411WTT9900PT22222122209309100000000 -T12023011111202544523500408282120313210766300000000000006540080000000000000000000000000000000000222222000000002229032 -T2202301111120254451219700226WTT##T0PP2212222222223012212910095123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112025445120070322WT@B9PTZP22221222204309900000000120040718WTTT9P9B022221222204311900000000 -T12023011111202561823500404531110233110306300000000000001880140000000000000000000000000000000000222222000002292219021 -T2202301111120256182219730927WTTP#YY9B1222212222221012206910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112025618120140312WT@ZZYWB@12222112204301100000000 -T12023011111202570524200407312110313210740300000000000002740010000000000000000000000000000000000222222000000002229032 -T2202301111120257051219820908WTT#B9PT#2222212222225012212210025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112025705120100324WT@9TPY9W22222112204305200000000120090407WT@9TPY9W22222122204306200000000 -T12023011111202577424500402221120313110704300000000000606540370000000000000000000000000000000000222222000000002229072 -T2202301111120257741219800104WTTZBB@ZY2222212222221012216110640023011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112025774120050318WTT0BZ0PZ12222112204309100000000120050318WTTZ0@W0#12222112204309100000000 -T12023011111202580122000410051120433110969300000000000006540210000000000000000000000000000000000222222000000002229022 -T2202301111120258013219610902WT@9PW9#@2222212222225012212121090013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000228 -T320230111112025801120120404WT@YBPBTZ22222112206303100000100 -T320230111112025801120160727WT@#B9#0P22212212206398100000000120130923WTTWTP@Y922222122206302100000000 -T12023011111202602524200414851120413111034300000000000007710060000000000000000000000000000000000222222000000002229012 -T2202301111120260251219960312WTTT#Z9BP2222122222223012212110075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026025120170424WT@Z9TTTP22221222204398100000000 -T320230111112026025120210721WT@PTTWBZ22221212204398100000000120180407WT@TZP0YT22221212204398100000000 -T12023011111202602620800410751120213110598300000000000405280080000000000000000000000000000000000222222000000002229012 -T2202301111120260261219990321WTT0@YPW#2222212222225012213110095123010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026026120220923WT@PB#Y@@22222112204398100000000 -T12023011111202603824200402501120313110766300000000000006540060000000000000000000000000000000000222222000000002229012 -T2202301111120260381219670422WTT9PB0BY2222212222223012214220075323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026038120080922WT@BBY@#P22222112204307200000000120040201WT@#WYZYY22222112204311200000000 -T12023011111202614724200403511120233120000300000000000004170390000000000000000000000000000000000222222000000002229022 -T2202301111120261473219840407WT@PYW0WT2222211222222012298910006013079900000000000000000000000000000000000000000000000000000000000000820000000000000000000000 -T320230111112026147120100418WTTB#Z@Y012222122207304100000000 -T12023011111202615522000407412120323210806300000000000002240050000000000000000000000000000000000222222000004302219032 -T2202301111120261551219790709WT@9TPY9W2222222222222011212290065423011800000007000200000000000000000000000000000000000000000000040000000000000000000000000000 -T2202301111120261551219700712WT@9TPY9W2222221222222021212290065423011800000007000200000000000000000000000000000000000000000000040000172000000000000000000000 -T320230111112026155120100721WT@9TPY9W22222222204307200000000 -T12023011111202618625600414951120213110598113190000000005280340000000000000000000000000000000000222222000000002229012 -T2202301111120261861219910922WTT9Y@ZPT2221222222221012212110342623011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026186120200102WT@W@0#W022212222204398100000050 -T12023011111202618720600402141120233110516300000000000004170740000000000000000000000000000000000222222000000002229022 -T2202301111120261873219680509WTT@000YW2222212122224012210110154513069900000000000000000000000000000000000000000000000000000000000000000000001561000000000022 -T320230111112026187120130427WTTB@BT@022222112206303100000017 -T12023011111202626021000405411120213110598300000000000005280050000000000000000000000000000000000222222000000002229012 -T2202301111120262601219860226WT@9TPY9W2222212222225012213210055521011810000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026260120070713WT@9TPY9W22222122204308200000000 -T12023011111202628625900402831120233110489300000000000004170990000000000000000000000000000000000222222000000002229022 -T2202301111120262863219420705WT@B0T0B#1222222122224012212110006013069900000000000000000000000000000000000000000000000000000000000000000000001177000000000000 -T320230111112026286120070918WTTZYBZB#12222222206308100000000 -T12023011111202628924200414721120313110786300000000000003920300000000000000000000000000000000261122222000000012219012 -T2202301111120262891220000723WT@0BY0#@2221222222221012212110303023010200000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026289120220707WT@9TPY9W22212212204398100000000120190418WT@99WB#922212222204398100000000 -T12023011111202634123500407161120213110559300000000000005010110000000000000000000000000000000000222222002600012219012 -T2202301111120263411219800421WTT0B9BPW2222212222225012212110293123011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026341120160713WTTY9B@PZ22222122204398100000000 -T12023011111202635221000403201120213110611300000000040005280990000000000000000000000000000000000222222000000002229072 -T2202301111120263521219780413WT@TYPTYB2222212222221012213111680023010700000000000000000000120000000000000000000000000000000000010000000000000000000000000000 -T320230111112026352120060712WTTPT#PY#22222112204309100000000 -T12023011111202639323700414331120933111116300000000000001000020000000000000000000000000000000000222222000007882219022 -T2202301111120263932219920423WT@YYBT9P1222222222222012212910006013079900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120263932219930404WT@YYBT9P1222221222222022212990006011079936000000000000000000000000000000000000000000000000000000000000263100000000000000000000 -T320230111112026393420110101WT@YYBT9P12222212204304900000000 -T320230111112026393120150113WT@9#TBP912222222204398100000000420140522WT@YYBT9P12222222204302900000000 -T320230111112026393120180923WT@PZZ@Y012222222204398100000000120160721WT@T#0W#912222222204398100000000 -T320230111112026393120220101WT@WZWW@Z12222212204398100000000120210527WTTZZWT0Y12222212204398100000000 -T12023011111202647325200400411110313110835300000000007004850560000000000000000000000000000000000222222000001692219012 -T2202301111120264731219760927WTTWPPT9P2222212222223012216110570323010900000000000000000000000000000000000000000000000000000000040000000000000000000000000000 -T320230111112026473120160726WTT0Y@0BT22222112204398100000000120080913WTT#TW#ZB22222112204308100000000 -T12023011111202648824700408361120333120000300000000000005280170000000000000000000000000000000000222222000000002229022 -T2202301111120264883219840312WT@#ZYBPP2222212222222012212120006013069900000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026488120190318WTTWW@W@922222122207398100000000120170709WT@BBYB0Z22222112207398100000000 -T12023011111202657124200408391120213110611300000000019005280040000000000000000000000000000000000222222000000002229012 -T2202301111120265711219910718WTT@#@BT92222212222223012212110055523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026571120210723WTTWPB#P#22222112204398100000000 -T12023011111202657922000413731120623111395300000000030010090130000000000000000000000000000000000222222000000002229012 -T2202301111120265791219820312WT@ZWTW#P2212221222222011214290144623011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T2202301111120265791219920404WTTPBZT0B2212222222222021209290144623011800000000000000000003000000000000000000000000000000000000240000000000000000000000000000 -T320230111112026579120150918WT@99WP##22122212204302200000000120120704WT@PPTB##22122222204304200000000 -T320230111112026579120190326WTTPWY#ZT22122222204398200000000120190326WTTPTTY0@22122222204398200000000 -T12023011111202661723700414331120413110740300000000010006450630000000000000000000000000000000000222222000000002229012 -T2202301111120266171219840912WT@9W9PZZ1222212222221012208210065423010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026617420050722WTT#9WPPB12222122104312109090000 -T320230111112026617120220727WT@9TPY9W12222222204398100000000120090409WT@@#YY0#12222122204308100000000 -T12023011111202666522000400281120232110516300000000000004170570000000000000000000000000000000000222222000000002229022 -T2202301111120266652219640408WT@9YZYZB2222212222215012216110006013089900000000000000000000000000000000000000000000000000000000000000000000000000091400000000 -T320230111112026665120050504WT@90W9##22222112204310100000000 -T12023011111202671024700406701120312110766300000000009006540140000000000000000000000000000000000222222000000002229012 -T2202301111120267101219920418WTTTTPZ9B1222222222221012216110154523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026710120120721WT@Z9T0W#12221212204303100000000120120721WTTP99T0T12221212204303100000000 -T12023011111202675324700406742120323210766300000000000005540070000000000000000000000000000000000222222000001002219032 -T2202301111120267531219930113WT@9TPY9W1222212222222011214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000100 -T2202301111120267531219870227WT@9TPY9W1222211222222021214290075323011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026753120200224WT@9TPY9W12222112204398200000000 -T12023011111202679320600402141120213110611300000000002605280170000000000000000000000000000000000222222000000002229012 -T2202301111120267931219930412WT@PB@Y092222212222223012212110184223011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026793120130112WT@WZ9#0922222112204302100000000 -T12023011111202684225600411521110413111034300000000000003480010000000000000000000000000000000000222222000000002229012 -T2202301111120268421219810107WTT@0T9#92222211222225012213110025823011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112026842120090923WT@P90#@Z22122122204307100000000 -T320230111112026842120150723WTTY9ZPTT22122112204398100000000120100327WTTZ9##PP22122122204305100000000 -T12023011111202685825600411701120333120000300000000000005280990000000000000000000000000000000000222222000000002229022 -T2202301111120268583219670426WT@BZ90992222211222222012214110006013069900000000000000000000000000000000000000000000000000000000000000999900000000000000000000 -T320230111112026858120140124WT@P0#00Z22212222206301100000000120080518WT@#BZYZT22212112206307100000000 -T12023011111202697424200409091120332110740300000000000005280400000000000000000000000000000000000222222000000002229022 -T2202301111120269743219650427WTTP9ZZW92221222122225012214110095113069900000000000000000000000000000000000000000000000000000000000000000000001689000000000000 -T320230111112026974120210502WT@9@T0T#22212222206398100000000120150118WT@PYZYT#22212222206398100000000 -T12023011111202707024200404891120213110407300000000000005280280000000000000000000000000000000000222222000000002229012 -T2202301111120270701219770504WTTW0P#992222212222221012212110550523011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112027070120140718WT@P@#9ZP22222122204302100000000 -T12023011111202711020600414161120423111034300000000000005530100000000000000000000000000000000000222222000002182219012 -T2202301111120271101219950318WTTP@@WTZ2222211222222011212290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000217 -T2202301111120271101219920102WT@PPW9P#2222212222222021214290114923011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -T320230111112027110120200723WTTY0WW@T22222122204398200000000120170901WTTTP9YYZ22222112204398200000000 -T12023011111202717025900402121120213110611300000000080005280070000000000000000000000000000000000222222000000002229012 -T2202301111120271701219960227WTTYY00PY1222222222221012212110372323011400000000000000000000000000000000000000000000000000000000000000000000000000000000000000 HEADER20231A53000TAN1EN TRAILER0326888 diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 888f33136..95459e595 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -733,29 +733,28 @@ def test_parse_super_big_s1_file(super_big_s1_file, dfs): @pytest.fixture -def super_big_s1_rollback_file(stt_user, stt): +def big_s1_rollback_file(stt_user, stt): """Fixture for ADS.E2J.NDM1.TS53_fake.rollback.""" return util.create_test_datafile('ADS.E2J.NDM1.TS53_fake.rollback.txt', stt_user, stt) @pytest.mark.django_db() -@pytest.mark.skip(reason="cuz") # big_files -def test_parse_super_big_s1_file_with_rollback(super_big_s1_rollback_file, dfs): - """Test parsing of super_big_s1_rollback_file. +def test_parse_big_s1_file_with_rollback(big_s1_rollback_file, dfs): + """Test parsing of big_s1_rollback_file. Validate all T1/T2/T3 records are not created due to multiple headers. """ - super_big_s1_rollback_file.year = 2023 - super_big_s1_rollback_file.quarter = 'Q2' + big_s1_rollback_file.year = 2023 + big_s1_rollback_file.quarter = 'Q2' - parse.parse_datafile(super_big_s1_rollback_file, dfs) + parse.parse_datafile(big_s1_rollback_file, dfs) - parser_errors = ParserError.objects.filter(file=super_big_s1_rollback_file) + parser_errors = ParserError.objects.filter(file=big_s1_rollback_file) assert parser_errors.count() == 1 err = parser_errors.first() - assert err.row_number == 50022 + assert err.row_number == 13609 assert err.error_type == ParserErrorCategoryChoices.PRE_CHECK assert err.error_message == 'Multiple headers found.' assert err.content_type is None @@ -767,19 +766,19 @@ def test_parse_super_big_s1_file_with_rollback(super_big_s1_rollback_file, dfs): search = documents.tanf.TANF_T1DataSubmissionDocument.search().query( 'match', - datafile__id=super_big_s1_rollback_file.id + datafile__id=big_s1_rollback_file.id ) assert search.count() == 0 search = documents.tanf.TANF_T2DataSubmissionDocument.search().query( 'match', - datafile__id=super_big_s1_rollback_file.id + datafile__id=big_s1_rollback_file.id ) assert search.count() == 0 search = documents.tanf.TANF_T3DataSubmissionDocument.search().query( 'match', - datafile__id=super_big_s1_rollback_file.id + datafile__id=big_s1_rollback_file.id ) assert search.count() == 0 assert False From 66b52ebde4ea5e3cad7e98e866fb6051027fced8 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 19 Apr 2024 10:28:01 -0600 Subject: [PATCH 010/126] - raise log level --- tdrs-backend/tdpservice/parsers/parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 712d83bd9..a71eaa83e 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -249,7 +249,7 @@ def delete_duplicates(duplicate_manager): logger.debug(f"Deleted {num_deleted} records of type: {model}.") except Exception as e: logging.error(f"Encountered error while deleting records of type {model}. Error message: {e}") - logger.debug(f"Deleted a total of {total_deleted} records because of duplicate errors.") + logger.info(f"Deleted a total of {total_deleted} records because of duplicate errors.") def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator, duplicate_manager): From 8d9c6140db17e8f08e19746c48a499156483e692 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 19 Apr 2024 10:28:56 -0600 Subject: [PATCH 011/126] - Update test --- tdrs-backend/tdpservice/parsers/test/test_parse.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 95459e595..fdb45226f 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -691,7 +691,7 @@ def test_parse_tanf_section1_datafile_t3s(small_tanf_section1_datafile, dfs): def super_big_s1_file(stt_user, stt): """Fixture for ADS.E2J.NDM1.TS53_fake.""" return util.create_test_datafile('ADS.E2J.NDM1.TS53_fake.txt', stt_user, stt) - +import time @pytest.mark.django_db() @pytest.mark.skip(reason="long runtime") # big_files @@ -699,6 +699,10 @@ def test_parse_super_big_s1_file(super_big_s1_file, dfs): """Test parsing of super_big_s1_file and validate all T1/T2/T3 records are created.""" super_big_s1_file.year = 2023 super_big_s1_file.quarter = 'Q2' + super_big_s1_file.save() + + dfs.datafile = super_big_s1_file + dfs.save() parse.parse_datafile(super_big_s1_file, dfs) @@ -746,6 +750,10 @@ def test_parse_big_s1_file_with_rollback(big_s1_rollback_file, dfs): """ big_s1_rollback_file.year = 2023 big_s1_rollback_file.quarter = 'Q2' + big_s1_rollback_file.save() + + dfs.datafile = big_s1_rollback_file + dfs.save() parse.parse_datafile(big_s1_rollback_file, dfs) From 399c10c91dbec1e59ba920a01f4f99e1c6c44a9b Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 19 Apr 2024 11:06:46 -0600 Subject: [PATCH 012/126] - remove import --- tdrs-backend/tdpservice/parsers/test/test_parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index fdb45226f..a085c17ca 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -691,7 +691,7 @@ def test_parse_tanf_section1_datafile_t3s(small_tanf_section1_datafile, dfs): def super_big_s1_file(stt_user, stt): """Fixture for ADS.E2J.NDM1.TS53_fake.""" return util.create_test_datafile('ADS.E2J.NDM1.TS53_fake.txt', stt_user, stt) -import time + @pytest.mark.django_db() @pytest.mark.skip(reason="long runtime") # big_files From 86311cba5641731a211d07aa4bf810b20bb4c3f6 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 19 Apr 2024 11:12:44 -0600 Subject: [PATCH 013/126] - Update error generation to use record and schema - rename var --- .../tdpservice/parsers/duplicate_manager.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index a6ed2af50..4c8744626 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -34,25 +34,25 @@ def __init__(self, my_hash, CASE_NUMBER, RPT_MONTH_YEAR, manager_error_dict, gen self.record_hashes = dict() self.partial_hashes = dict() self.error_precedence = ErrorPrecedence() - self.has_duplicate_errors = False + self.has_errors = False def get_records_to_delete(self): """Return record ids if case has duplicate errors.""" - if self.has_duplicate_errors: + if self.has_errors: return self.record_ids return dict() - def __generate_error(self, err_msg, is_new_max_precedence): + def __generate_error(self, err_msg, record, schema, is_new_max_precedence): """Add an error to the managers error dictionary.""" if err_msg is not None: error = self.generate_error( error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, - schema=None, # TODO: Do we need the right schema? Can this be None to avoid so much state? - record=None, + schema=schema, + record=record, field=None, error_message=err_msg, ) - self.has_duplicate_errors = True + self.has_errors = True if is_new_max_precedence: self.manager_error_dict[self.my_hash] = [error] else: @@ -96,7 +96,7 @@ def add_case_member(self, record, schema, line, line_number): if not has_precedence: err_msg = None - self.__generate_error(err_msg, is_new_max_precedence) + self.__generate_error(err_msg, record, schema, is_new_max_precedence) if line_hash not in self.record_hashes: self.record_hashes[line_hash] = (record.id, line_number) if partial_hash not in self.partial_hashes: From 04f05f43c5155a68fdabe61d0a75f5c227817410 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 19 Apr 2024 11:52:53 -0600 Subject: [PATCH 014/126] - Update error precedence logic --- tdrs-backend/docker-compose.yml | 1 + .../tdpservice/parsers/duplicate_manager.py | 37 +++++++++++-------- tdrs-backend/tdpservice/settings/common.py | 1 + 3 files changed, 23 insertions(+), 16 deletions(-) diff --git a/tdrs-backend/docker-compose.yml b/tdrs-backend/docker-compose.yml index 53a70eccb..1ee83e620 100644 --- a/tdrs-backend/docker-compose.yml +++ b/tdrs-backend/docker-compose.yml @@ -103,6 +103,7 @@ services: - SENDGRID_API_KEY - GENERATE_TRAILER_ERRORS=True - BYPASS_KIBANA_AUTH + - IGNORE_DUPLICATE_ERROR_PRECEDENCE volumes: - .:/tdpapp image: tdp diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 4c8744626..996fe2376 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -1,21 +1,30 @@ """Class definition for record duplicate class and helper classes.""" +from django.conf import settings +from enum import IntEnum from .models import ParserErrorCategoryChoices +class ErrorLevel(IntEnum): + DUPLICATE=0 + PARTIAL_DUPLICATE=1 + NONE=2 # This should always be the last level in the list + class ErrorPrecedence: """Data structure to manage error precedence.""" def __init__(self): - self.max_precedence = None + self.curr_max_precedence = ErrorLevel.NONE def has_precedence(self, error_level): """Return tuple of bools: (has_precidence, is_new_max_precedence).""" - if self.max_precedence is None: - self.max_precedence = error_level + if settings.IGNORE_DUPLICATE_ERROR_PRECEDENCE: + return (True, False) + if self.curr_max_precedence == ErrorLevel.NONE: + self.curr_max_precedence = error_level return (True, True) - elif self.max_precedence > error_level: - self.max_precedence = error_level + elif self.curr_max_precedence > error_level: + self.curr_max_precedence = error_level return (True, True) - elif self.max_precedence == error_level: + elif self.curr_max_precedence == error_level: return (True, False) else: return (False, False) @@ -42,9 +51,9 @@ def get_records_to_delete(self): return self.record_ids return dict() - def __generate_error(self, err_msg, record, schema, is_new_max_precedence): + def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_precedence): """Add an error to the managers error dictionary.""" - if err_msg is not None: + if has_precedence: error = self.generate_error( error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, schema=schema, @@ -56,14 +65,13 @@ def __generate_error(self, err_msg, record, schema, is_new_max_precedence): if is_new_max_precedence: self.manager_error_dict[self.my_hash] = [error] else: - self.manager_error_dict[self.my_hash].append(error) + self.manager_error_dict.setdefault(self.my_hash, []).append(error) def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed.""" self.record_ids.setdefault(schema.document, []).append(record.id) line_hash = hash(line) partial_hash = None - error_level = record.RecordType[1] if record.RecordType == "T1": partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) else: @@ -76,7 +84,7 @@ def add_case_member(self, record, schema, line, line_number): is_new_max_precedence = False if line_hash in self.record_hashes: - has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(error_level) + has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) existing_record_id, existing_record_line_number = self.record_hashes[line_hash] err_msg = (f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " f"line {line_number}. Record is a duplicate of the record at line number " @@ -87,16 +95,13 @@ def add_case_member(self, record, schema, line, line_number): if record.RecordType != "T1": skip_partial = record.FAMILY_AFFILIATION == 3 or record.FAMILY_AFFILIATION == 5 if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: - has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(error_level) + has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.PARTIAL_DUPLICATE) err_msg = (f"Partial duplicate record detected for record id {record.id} with record type " f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " f"record at line number {self.partial_hashes[partial_hash][1]}, with record id " f"{self.partial_hashes[partial_hash][0]}") - if not has_precedence: - err_msg = None - - self.__generate_error(err_msg, record, schema, is_new_max_precedence) + self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: self.record_hashes[line_hash] = (record.id, line_number) if partial_hash not in self.partial_hashes: diff --git a/tdrs-backend/tdpservice/settings/common.py b/tdrs-backend/tdpservice/settings/common.py index 4ada51462..6e9d2f7ab 100644 --- a/tdrs-backend/tdpservice/settings/common.py +++ b/tdrs-backend/tdpservice/settings/common.py @@ -480,3 +480,4 @@ class Common(Configuration): CYPRESS_TOKEN = os.getenv('CYPRESS_TOKEN', None) GENERATE_TRAILER_ERRORS = os.getenv("GENERATE_TRAILER_ERRORS", False) + IGNORE_DUPLICATE_ERROR_PRECEDENCE = os.getenv("IGNORE_DUPLICATE_ERROR_PRECEDENCE", False) From a968d0c133647e2c5e98fdb7dfc778226692bb93 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 19 Apr 2024 11:59:40 -0600 Subject: [PATCH 015/126] - fix lint --- .../tdpservice/parsers/duplicate_manager.py | 13 ++++++++----- tdrs-backend/tdpservice/parsers/parse.py | 17 +++++++++-------- 2 files changed, 17 insertions(+), 13 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 996fe2376..dffe4bfcc 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -4,9 +4,11 @@ from .models import ParserErrorCategoryChoices class ErrorLevel(IntEnum): - DUPLICATE=0 - PARTIAL_DUPLICATE=1 - NONE=2 # This should always be the last level in the list + """Error level enumerations for precedence.""" + + DUPLICATE = 0 + PARTIAL_DUPLICATE = 1 + NONE = 2 # This should always be the last level in the list class ErrorPrecedence: """Data structure to manage error precedence.""" @@ -133,9 +135,10 @@ def get_generated_errors(self): return generated_errors def get_records_to_remove(self): + """Return dictionary of document:[errors].""" records_to_remove = dict() for hashtainer in self.hashtainers.values(): - for model, ids in hashtainer.get_records_to_delete().items(): - records_to_remove.setdefault(model, []).extend(ids) + for document, ids in hashtainer.get_records_to_delete().items(): + records_to_remove.setdefault(document, []).extend(ids) return records_to_remove diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index a71eaa83e..274d482ca 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -183,11 +183,11 @@ def rollback_records(unsaved_records, datafile): try: model = document.Django.model qset = model.objects.filter(datafile=datafile) - # We must tell elastic to delete the documents first because after we call `_raw_delete` the queryset will be - # empty which will tell elastic that nothing needs updated. + # We must tell elastic to delete the documents first because after we call `_raw_delete` the queryset will + # be empty which will tell elastic that nothing needs updated. document.update(qset, refresh=True, action="delete") - # WARNING: we can use `_raw_delete` in this case because our record models don't have cascading dependencies. If - # that ever changes, we should NOT use `_raw_delete`. + # WARNING: we can use `_raw_delete` in this case because our record models don't have cascading + # dependencies. If that ever changes, we should NOT use `_raw_delete`. num_deleted = qset._raw_delete(qset.db) logger.debug(f"Deleted {num_deleted} records of type: {model}.") except Exception as e: @@ -234,16 +234,17 @@ def create_no_records_created_pre_check_error(datafile, dfs): return errors def delete_duplicates(duplicate_manager): + """Delete all records with duplicate errors.""" total_deleted = 0 for document, ids in duplicate_manager.get_records_to_remove().items(): try: model = document.Django.model qset = model.objects.filter(id__in=ids) - # We must tell elastic to delete the documents first because after we call `_raw_delete` the queryset will be - # empty which will tell elastic that nothing needs updated. + # We must tell elastic to delete the documents first because after we call `_raw_delete` the queryset will + # be empty which will tell elastic that nothing needs updated. document.update(qset, action="delete") - # WARNING: we can use `_raw_delete` in this case because our record models don't have cascading dependencies. If - # that ever changes, we should NOT use `_raw_delete`. + # WARNING: we can use `_raw_delete` in this case because our record models don't have cascading + # dependencies. If that ever changes, we should NOT use `_raw_delete`. num_deleted = qset._raw_delete(qset.db) total_deleted += num_deleted logger.debug(f"Deleted {num_deleted} records of type: {model}.") From f421618563cc8fa1e17146de7b8411810ce64baf Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 22 Apr 2024 09:07:51 -0600 Subject: [PATCH 016/126] - use correct method --- tdrs-backend/tdpservice/parsers/parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index afdbc4b02..d26c6a3c2 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -386,7 +386,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # TODO: This is duplicate code. Can we extract this to a function? # Add any generated cat4 errors to our error data structure & clear our caches errors list duplicate_errors = duplicate_manager.get_generated_errors() - num_errors += len(duplicate_errors) + len(case_consistency_validator.get_generated_errors()) + num_errors += len(duplicate_errors) + case_consistency_validator.num_generated_errors() unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ case_consistency_validator.get_generated_errors() + duplicate_errors case_consistency_validator.clear_errors() From 038abe08da1a9a61fcfe7e9326ec6384e4771496 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 22 Apr 2024 09:12:29 -0600 Subject: [PATCH 017/126] - remove extra call to bulk create errors --- tdrs-backend/tdpservice/parsers/parse.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index d26c6a3c2..523f35903 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -395,8 +395,6 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas delete_duplicates(duplicate_manager) - bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) - logger.debug(f"Cat4 validator cached {case_consistency_validator.total_cases_cached} cases and " f"validated {case_consistency_validator.total_cases_validated} of them.") dfs.save() From 3211cbec1b58e871bf9f379cceade1cf1e8f58d5 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 23 Apr 2024 16:12:09 -0600 Subject: [PATCH 018/126] - move duplicate manager into case consistency validator - Starting to remove SortedRecordSchemaPairs from case consistency validator - updating to support in memory record removal if they havent been serialized --- .../parsers/case_consistency_validator.py | 320 +++++++++--------- .../tdpservice/parsers/duplicate_manager.py | 47 +-- tdrs-backend/tdpservice/parsers/parse.py | 27 +- 3 files changed, 208 insertions(+), 186 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index ed0ac136e..86bfab585 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -1,6 +1,7 @@ """Class definition for Category Four validator.""" from datetime import datetime +from .duplicate_manager import RecordDuplicateManager from .models import ParserErrorCategoryChoices from .util import get_years_apart from tdpservice.stts.models import STT @@ -35,12 +36,7 @@ def __add_record_to_sorted_object(self, record_schema_pair): record, schema = record_schema_pair rpt_month_year = getattr(record, 'RPT_MONTH_YEAR') - reporting_year_cases = self.sorted_cases.get(rpt_month_year, {}) - records = reporting_year_cases.get(type(record), []) - records.append(record_schema_pair) - - reporting_year_cases[type(record)] = records - self.sorted_cases[rpt_month_year] = reporting_year_cases + self.sorted_cases.setdefault(type(record), []).append(record_schema_pair) class CaseConsistencyValidator: @@ -49,7 +45,10 @@ class CaseConsistencyValidator: def __init__(self, header, stt_type, generate_error): self.header = header self.record_schema_pairs = SortedRecordSchemaPairs() + self.duplicate_manager = RecordDuplicateManager(generate_error) + self.current_rpt_month_year = None self.current_case = None + self.current_hash = None self.case_has_errors = False self.section = header["type"] self.case_is_section_one_or_two = self.section in {'A', 'C'} @@ -60,6 +59,7 @@ def __init__(self, header, stt_type, generate_error): self.total_cases_cached = 0 self.total_cases_validated = 0 self.stt_type = stt_type + self.can_remove_case_from_memory = True def __get_model(self, model_str): """Return a model for the current program type/section given the model's string name.""" @@ -86,14 +86,19 @@ def get_generated_errors(self): return self.generated_errors def num_generated_errors(self): - """Return current number of generated errors.""" + """Return current number of generated errors for the current case.""" return len(self.generated_errors) - def add_record(self, record, schema, case_has_errors): + def add_record(self, record, schema, line, line_number, case_has_errors): """Add record to cache and validate if new case is detected.""" + num_errors = 0 + self.can_remove_case_from_memory &= record._state.adding + hash_val = None + self.current_rpt_month_year = record.RPT_MONTH_YEAR if self.case_is_section_one_or_two: + hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) if record.CASE_NUMBER != self.current_case and self.current_case is not None: - self.validate() + num_errors += self.validate() self.record_schema_pairs.clear((record, schema)) self.case_has_errors = case_has_errors self.has_validated = False @@ -102,6 +107,17 @@ def add_record(self, record, schema, case_has_errors): self.record_schema_pairs.add_record((record, schema)) self.has_validated = False self.current_case = record.CASE_NUMBER + else: + self.current_case = None + hash_val = hash(record.RecordType + str(record.RPT_MONTH_YEAR)) + + # TODO: Duplicate detection applies to all sections, however we need to implement a factory of some sort to + # get the correct duplicate manager based on the section. Sections 3 and 4 have different duplicate logic + # than 1 or 2 anyways. Some more care for handling section 1 and 2 together is still needed. + num_errors += self.duplicate_manager.add_record(record, hash_val, schema, line, + line_number, self.can_remove_case_from_memory) + + return num_errors > 0 and self.can_remove_case_from_memory def validate(self): """Perform category four validation on all cached records.""" @@ -189,75 +205,74 @@ def __validate_s1_records_are_related(self): cases = self.record_schema_pairs.sorted_cases - for reporting_year_cases in cases.values(): - t1s = reporting_year_cases.get(t1_model, []) - t2s = reporting_year_cases.get(t2_model, []) - t3s = reporting_year_cases.get(t3_model, []) - - if len(t1s) > 0: - if len(t1s) > 1: # likely to be captured by "no duplicates" validator - for record, schema in t1s[1:]: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'There should only be one {t1_model_name} record ' - f'for a RPT_MONTH_YEAR and CASE_NUMBER.' - ) - ) - num_errors += 1 - - if len(t2s) == 0 and len(t3s) == 0: - for record, schema in t1s: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'Every {t1_model_name} record should have at least one ' - f'corresponding {t2_model_name} or {t3_model_name} record ' - f'with the same RPT_MONTH_YEAR and CASE_NUMBER.' - ) - ) - num_errors += 1 + t1s = cases.get(t1_model, []) + t2s = cases.get(t2_model, []) + t3s = cases.get(t3_model, []) - else: - # loop through all t2s and t3s - # to find record where FAMILY_AFFILIATION == 1 - num_errors += self.__validate_family_affiliation(num_errors, t1s, t2s, t3s, ( - f'Every {t1_model_name} record should have at least one corresponding ' - f'{t2_model_name} or {t3_model_name} record with the same RPT_MONTH_YEAR and ' - f'CASE_NUMBER, where FAMILY_AFFILIATION==1' - )) - - # the successful route - # pass - else: - for record, schema in t2s: + if len(t1s) > 0: + if len(t1s) > 1: # likely to be captured by "no duplicates" validator + for record, schema in t1s[1:]: self.__generate_and_add_error( schema, record, field='RPT_MONTH_YEAR', msg=( - f'Every {t2_model_name} record should have at least one corresponding ' - f'{t1_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' + f'There should only be one {t1_model_name} record ' + f'for a RPT_MONTH_YEAR and CASE_NUMBER.' ) ) num_errors += 1 - for record, schema in t3s: + if len(t2s) == 0 and len(t3s) == 0: + for record, schema in t1s: self.__generate_and_add_error( schema, record, field='RPT_MONTH_YEAR', msg=( - f'Every {t3_model_name} record should have at least one corresponding ' - f'{t1_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' + f'Every {t1_model_name} record should have at least one ' + f'corresponding {t2_model_name} or {t3_model_name} record ' + f'with the same RPT_MONTH_YEAR and CASE_NUMBER.' ) ) num_errors += 1 + else: + # loop through all t2s and t3s + # to find record where FAMILY_AFFILIATION == 1 + num_errors += self.__validate_family_affiliation(num_errors, t1s, t2s, t3s, ( + f'Every {t1_model_name} record should have at least one corresponding ' + f'{t2_model_name} or {t3_model_name} record with the same RPT_MONTH_YEAR and ' + f'CASE_NUMBER, where FAMILY_AFFILIATION==1' + )) + + # the successful route + # pass + else: + for record, schema in t2s: + self.__generate_and_add_error( + schema, + record, + field='RPT_MONTH_YEAR', + msg=( + f'Every {t2_model_name} record should have at least one corresponding ' + f'{t1_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' + ) + ) + num_errors += 1 + + for record, schema in t3s: + self.__generate_and_add_error( + schema, + record, + field='RPT_MONTH_YEAR', + msg=( + f'Every {t3_model_name} record should have at least one corresponding ' + f'{t1_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' + ) + ) + num_errors += 1 + return num_errors def __validate_case_closure_employment(self, t4, t5s, error_msg): @@ -336,63 +351,62 @@ def __validate_s2_records_are_related(self): cases = self.record_schema_pairs.sorted_cases - for reporting_year_cases in cases.values(): - t4s = reporting_year_cases.get(t4_model, []) - t5s = reporting_year_cases.get(t5_model, []) - - if len(t4s) > 0: - if len(t4s) > 1: - for record, schema in t4s[1:]: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'There should only be one {t4_model_name} record ' - f'for a RPT_MONTH_YEAR and CASE_NUMBER.' - ) - ) - num_errors += 1 - else: - t4 = t4s[0] - t4_record, t4_schema = t4 - closure_reason = getattr(t4_record, 'CLOSURE_REASON') - - if closure_reason == '01': - num_errors += self.__validate_case_closure_employment(t4, t5s, ( - 'At least one person on the case must have employment status = 1:Yes in the same month.' - )) - elif closure_reason == '99' and not is_ssp: - num_errors += self.__validate_case_closure_ftl(t4, t5s, ( - 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' - )) - if len(t5s) == 0: - for record, schema in t4s: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'Every {t4_model_name} record should have at least one corresponding ' - f'{t5_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' - ) + t4s = cases.get(t4_model, []) + t5s = cases.get(t5_model, []) + + if len(t4s) > 0: + if len(t4s) > 1: + for record, schema in t4s[1:]: + self.__generate_and_add_error( + schema, + record, + field='RPT_MONTH_YEAR', + msg=( + f'There should only be one {t4_model_name} record ' + f'for a RPT_MONTH_YEAR and CASE_NUMBER.' ) - num_errors += 1 - else: - # success - pass + ) + num_errors += 1 else: - for record, schema in t5s: + t4 = t4s[0] + t4_record, t4_schema = t4 + closure_reason = getattr(t4_record, 'CLOSURE_REASON') + + if closure_reason == '01': + num_errors += self.__validate_case_closure_employment(t4, t5s, ( + 'At least one person on the case must have employment status = 1:Yes in the same month.' + )) + elif closure_reason == '99' and not is_ssp: + num_errors += self.__validate_case_closure_ftl(t4, t5s, ( + 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' + )) + if len(t5s) == 0: + for record, schema in t4s: self.__generate_and_add_error( schema, record, field='RPT_MONTH_YEAR', msg=( - f'Every {t5_model_name} record should have at least one corresponding ' - f'{t4_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' + f'Every {t4_model_name} record should have at least one corresponding ' + f'{t5_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' ) ) num_errors += 1 + else: + # success + pass + else: + for record, schema in t5s: + self.__generate_and_add_error( + schema, + record, + field='RPT_MONTH_YEAR', + msg=( + f'Every {t5_model_name} record should have at least one corresponding ' + f'{t4_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' + ) + ) + num_errors += 1 return num_errors @@ -407,60 +421,60 @@ def __validate_t5_aabd_and_ssi(self): is_state = self.stt_type == STT.EntityType.STATE is_territory = self.stt_type == STT.EntityType.TERRITORY - for rpt_month_year, reporting_year_cases in self.record_schema_pairs.sorted_cases.items(): - t5s = reporting_year_cases.get(t5_model, []) + t5s = self.record_schema_pairs.sorted_cases.get(t5_model, []) - for record, schema in t5s: - rec_aabd = getattr(record, 'REC_AID_TOTALLY_DISABLED') - rec_ssi = getattr(record, 'REC_SSI') - family_affiliation = getattr(record, 'FAMILY_AFFILIATION') - dob = getattr(record, 'DATE_OF_BIRTH') + for record, schema in t5s: + rpt_month_year = getattr(record, 'RPT_MONTH_YEAR') + rec_aabd = getattr(record, 'REC_AID_TOTALLY_DISABLED') + rec_ssi = getattr(record, 'REC_SSI') + family_affiliation = getattr(record, 'FAMILY_AFFILIATION') + dob = getattr(record, 'DATE_OF_BIRTH') - rpt_month_year_dd = f'{rpt_month_year}01' - rpt_date = datetime.strptime(rpt_month_year_dd, '%Y%m%d') - dob_date = datetime.strptime(dob, '%Y%m%d') - is_adult = get_years_apart(rpt_date, dob_date) >= 18 + rpt_month_year_dd = f'{rpt_month_year}01' + rpt_date = datetime.strptime(rpt_month_year_dd, '%Y%m%d') + dob_date = datetime.strptime(dob, '%Y%m%d') + is_adult = get_years_apart(rpt_date, dob_date) >= 18 - if is_territory and is_adult and (rec_aabd != 1 and rec_aabd != 2): - self.__generate_and_add_error( - schema, - record, - field='REC_AID_TOTALLY_DISABLED', - msg=( - f'{t5_model_name} Adults in territories must have a valid value for 19C.' - ) + if is_territory and is_adult and (rec_aabd != 1 and rec_aabd != 2): + self.__generate_and_add_error( + schema, + record, + field='REC_AID_TOTALLY_DISABLED', + msg=( + f'{t5_model_name} Adults in territories must have a valid value for 19C.' ) - num_errors += 1 - elif is_state and rec_aabd != 2: - self.__generate_and_add_error( - schema, - record, - field='REC_AID_TOTALLY_DISABLED', - msg=( - f'{t5_model_name} People in states shouldn\'t have a value of 1.' - ) + ) + num_errors += 1 + elif is_state and rec_aabd != 2: + self.__generate_and_add_error( + schema, + record, + field='REC_AID_TOTALLY_DISABLED', + msg=( + f'{t5_model_name} People in states shouldn\'t have a value of 1.' ) - num_errors += 1 + ) + num_errors += 1 - if is_territory and rec_ssi != 2: - self.__generate_and_add_error( - schema, - record, - field='REC_SSI', - msg=( - f'{t5_model_name} People in territories must have a valid value for 19E.' - ) + if is_territory and rec_ssi != 2: + self.__generate_and_add_error( + schema, + record, + field='REC_SSI', + msg=( + f'{t5_model_name} People in territories must have a valid value for 19E.' ) - num_errors += 1 - elif is_state and family_affiliation == 1 and rec_ssi != 1: - self.__generate_and_add_error( - schema, - record, - field='REC_SSI', - msg=( - f'{t5_model_name} People in states must have a valid value.' - ) + ) + num_errors += 1 + elif is_state and family_affiliation == 1 and rec_ssi != 1: + self.__generate_and_add_error( + schema, + record, + field='REC_SSI', + msg=( + f'{t5_model_name} People in states must have a valid value.' ) - num_errors += 1 + ) + num_errors += 1 return num_errors diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index dffe4bfcc..82e2fe696 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -35,21 +35,20 @@ def has_precedence(self, error_level): class CaseHashtainer: """Container class to manage hashed values for records of the same CASE_NUMBER and RPT_MONTH_YEAR.""" - def __init__(self, my_hash, CASE_NUMBER, RPT_MONTH_YEAR, manager_error_dict, generate_error): + def __init__(self, my_hash, manager_error_dict, generate_error): self.my_hash = my_hash - self.CASE_NUMBER = CASE_NUMBER - self.RPT_MONTH_YEAR = RPT_MONTH_YEAR self.manager_error_dict = manager_error_dict self.generate_error = generate_error self.record_ids = dict() self.record_hashes = dict() self.partial_hashes = dict() self.error_precedence = ErrorPrecedence() - self.has_errors = False + self.num_errors = 0 + self.should_remove_from_db = False - def get_records_to_delete(self): + def get_records_for_post_parse_deletion(self): """Return record ids if case has duplicate errors.""" - if self.has_errors: + if self.num_errors > 0 and self.should_remove_from_db: return self.record_ids return dict() @@ -63,20 +62,24 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p field=None, error_message=err_msg, ) - self.has_errors = True if is_new_max_precedence: self.manager_error_dict[self.my_hash] = [error] else: self.manager_error_dict.setdefault(self.my_hash, []).append(error) + self.num_errors = len(self.manager_error_dict[self.my_hash]) - def add_case_member(self, record, schema, line, line_number): + def add_case_member(self, record, schema, line, line_number, can_remove_case_from_memory): """Add case member and generate errors if needed.""" + # TODO: Need to add support for T6 and T7 detection. + + self.should_remove_from_db = self.should_remove_from_db if self.should_remove_from_db else \ + can_remove_case_from_memory self.record_ids.setdefault(schema.document, []).append(record.id) line_hash = hash(line) partial_hash = None - if record.RecordType == "T1": + if record.RecordType in {"T1", "T4"}: partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) - else: + elif record.RecordType in {"T2", "T3", "T5"}: partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) @@ -94,8 +97,13 @@ def add_case_member(self, record, schema, line, line_number): is_exact_dup = True skip_partial = False - if record.RecordType != "T1": - skip_partial = record.FAMILY_AFFILIATION == 3 or record.FAMILY_AFFILIATION == 5 + if record.RecordType == "T2": + skip_partial = record.FAMILY_AFFILIATION in {3, 5} + if record.RecordType == "T3": + skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} + if record.RecordType == "T5": + skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} + if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.PARTIAL_DUPLICATE) err_msg = (f"Partial duplicate record detected for record id {record.id} with record type " @@ -106,9 +114,11 @@ def add_case_member(self, record, schema, line, line_number): self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: self.record_hashes[line_hash] = (record.id, line_number) - if partial_hash not in self.partial_hashes: + if partial_hash is not None and partial_hash not in self.partial_hashes: self.partial_hashes[partial_hash] = (record.id, line_number) + return self.num_errors + class RecordDuplicateManager: """Manages all CaseHashtainers and their errors.""" @@ -118,14 +128,13 @@ def __init__(self, generate_error): self.generate_error = generate_error self.generated_errors = dict() - def add_record(self, record, schema, line, line_number): + def add_record(self, record, hash_val, schema, line, line_number, can_remove_case_from_memory): """Add record to existing CaseHashtainer or create new one and return whether the record's case has errors.""" - hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) if hash_val not in self.hashtainers: - hashtainer = CaseHashtainer(hash_val, record.CASE_NUMBER, str(record.RPT_MONTH_YEAR), - self.generated_errors, self.generate_error) + hashtainer = CaseHashtainer(hash_val, self.generated_errors, self.generate_error) self.hashtainers[hash_val] = hashtainer - self.hashtainers[hash_val].add_case_member(record, schema, line, line_number) + return self.hashtainers[hash_val].add_case_member(record, schema, line, + line_number, can_remove_case_from_memory) def get_generated_errors(self): """Return all errors from all CaseHashtainers.""" @@ -138,7 +147,7 @@ def get_records_to_remove(self): """Return dictionary of document:[errors].""" records_to_remove = dict() for hashtainer in self.hashtainers.values(): - for document, ids in hashtainer.get_records_to_delete().items(): + for document, ids in hashtainer.get_records_for_post_parse_deletion().items(): records_to_remove.setdefault(document, []).extend(ids) return records_to_remove diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 523f35903..aded09d20 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -44,8 +44,6 @@ def parse_datafile(datafile, dfs): cat4_error_generator ) - duplicate_manager = RecordDuplicateManager(cat4_error_generator) - field_values = schema_defs.header.get_field_values_by_names(header_line, {"encryption", "tribe_code", "state_fips"}) @@ -99,8 +97,7 @@ def parse_datafile(datafile, dfs): bulk_create_errors(unsaved_parser_errors, 1, flush=True) return errors - line_errors = parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator, - duplicate_manager) + line_errors = parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator) errors = errors | line_errors @@ -252,8 +249,7 @@ def delete_duplicates(duplicate_manager): logging.error(f"Encountered error while deleting records of type {model}. Error message: {e}") logger.info(f"Deleted a total of {total_deleted} records because of duplicate errors.") -def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator, - duplicate_manager): +def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator): """Parse lines with appropriate schema and return errors.""" rawfile = datafile.file errors = {} @@ -316,6 +312,11 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas prev_sum = header_count + trailer_count continue + # We need to execute the bulk_create prior to the case_consistency_validator.add_record call to manage record + # removal in an easier manner. + all_created, unsaved_records = bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs) + unsaved_parser_errors, num_errors = bulk_create_errors(unsaved_parser_errors, num_errors) + schema_manager = get_schema_manager(line, section, program_type) records = manager_parse_line(line, schema_manager, generate_error, datafile, is_encrypted) @@ -338,9 +339,10 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas s = schema_manager.schemas[i] record.datafile = datafile record_has_errors = len(record_errors) > 0 - duplicate_manager.add_record(record, s, line, line_number) - unsaved_records.setdefault(s.document, []).append(record) - case_consistency_validator.add_record(record, s, record_has_errors) + should_remove = case_consistency_validator.add_record(record, s, line, line_number, record_has_errors) + # TODO: Will cause linter complexity issues + if not should_remove: + unsaved_records.setdefault(s.document, []).append(record) # Add any generated cat4 errors to our error data structure & clear our caches errors list num_errors += case_consistency_validator.num_generated_errors() @@ -348,9 +350,6 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas case_consistency_validator.get_generated_errors() case_consistency_validator.clear_errors() - all_created, unsaved_records = bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs) - unsaved_parser_errors, num_errors = bulk_create_errors(unsaved_parser_errors, num_errors) - if header_count == 0: logger.info(f"Preparser Error -> No headers found for file: {datafile.id}.") errors.update({'document': ['No headers found.']}) @@ -385,7 +384,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # TODO: This is duplicate code. Can we extract this to a function? # Add any generated cat4 errors to our error data structure & clear our caches errors list - duplicate_errors = duplicate_manager.get_generated_errors() + duplicate_errors = case_consistency_validator.duplicate_manager.get_generated_errors() num_errors += len(duplicate_errors) + case_consistency_validator.num_generated_errors() unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ case_consistency_validator.get_generated_errors() + duplicate_errors @@ -393,7 +392,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) - delete_duplicates(duplicate_manager) + delete_duplicates(case_consistency_validator.duplicate_manager) logger.debug(f"Cat4 validator cached {case_consistency_validator.total_cases_cached} cases and " f"validated {case_consistency_validator.total_cases_validated} of them.") From 9e2b9e32714ff9f7a15b374ea77a902be7167795 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 23 Apr 2024 16:15:13 -0600 Subject: [PATCH 019/126] - update add_record logic to include rpt_month_year --- tdrs-backend/tdpservice/parsers/case_consistency_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 86bfab585..fbe22c18a 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -97,7 +97,7 @@ def add_record(self, record, schema, line, line_number, case_has_errors): self.current_rpt_month_year = record.RPT_MONTH_YEAR if self.case_is_section_one_or_two: hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) - if record.CASE_NUMBER != self.current_case and self.current_case is not None: + if hash_val != self.current_hash and self.current_hash is not None: num_errors += self.validate() self.record_schema_pairs.clear((record, schema)) self.case_has_errors = case_has_errors From 5a3cba4def2381805e61449393a27522a93332df Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 08:30:57 -0600 Subject: [PATCH 020/126] - Move SortedRecordSchema pairs to util - Update case consistency validator to not use OG SortedRecordSchemaPairs - Update dup logic to not consider records on the same line --- .../parsers/case_consistency_validator.py | 61 +++++-------- .../tdpservice/parsers/duplicate_manager.py | 91 ++++++++++--------- tdrs-backend/tdpservice/parsers/util.py | 28 ++++++ 3 files changed, 96 insertions(+), 84 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index fbe22c18a..0069ea1fa 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -11,40 +11,12 @@ logger = logging.getLogger(__name__) -class SortedRecordSchemaPairs: - """Maintains list of case record-schema-pairs and a copy object sorted by rpt_month_year and model_type.""" - - def __init__(self): - self.cases = [] - self.sorted_cases = {} - - def clear(self, seed_record_schema_pair=None): - """Reset both the list and sorted object. Optionally add a seed record for the next run.""" - self.cases = [] - self.sorted_cases = {} - - if seed_record_schema_pair: - self.add_record(seed_record_schema_pair) - - def add_record(self, record_schema_pair): - """Add a record_schema_pair to both the cases list and sorted_cases object.""" - self.__add_record_to_sorted_object(record_schema_pair) - self.cases.append(record_schema_pair) - - def __add_record_to_sorted_object(self, record_schema_pair): - """Add a record_schema_pair to the sorted_cases object.""" - record, schema = record_schema_pair - rpt_month_year = getattr(record, 'RPT_MONTH_YEAR') - - self.sorted_cases.setdefault(type(record), []).append(record_schema_pair) - - class CaseConsistencyValidator: """Caches records of the same case and month to perform category four validation while actively parsing.""" def __init__(self, header, stt_type, generate_error): self.header = header - self.record_schema_pairs = SortedRecordSchemaPairs() + self.sorted_cases = dict() self.duplicate_manager = RecordDuplicateManager(generate_error) self.current_rpt_month_year = None self.current_case = None @@ -89,6 +61,18 @@ def num_generated_errors(self): """Return current number of generated errors for the current case.""" return len(self.generated_errors) + def add_record_to_sorted_struct(self, record_schema_pair): + """Add record_schema_pair to sorted structure.""" + record = record_schema_pair[0] + self.sorted_cases.setdefault(type(record), []).append(record_schema_pair) + + def clear_sorted_struct(self, seed_record_schema_pair=None): + """Reset and optionally seed the sorted stucture.""" + self.sorted_cases = dict() + if seed_record_schema_pair: + self.add_record_to_sorted_struct(seed_record_schema_pair) + + def add_record(self, record, schema, line, line_number, case_has_errors): """Add record to cache and validate if new case is detected.""" num_errors = 0 @@ -99,12 +83,12 @@ def add_record(self, record, schema, line, line_number, case_has_errors): hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) if hash_val != self.current_hash and self.current_hash is not None: num_errors += self.validate() - self.record_schema_pairs.clear((record, schema)) + self.clear_sorted_struct((record, schema)) self.case_has_errors = case_has_errors self.has_validated = False else: self.case_has_errors = self.case_has_errors if self.case_has_errors else case_has_errors - self.record_schema_pairs.add_record((record, schema)) + self.add_record_to_sorted_struct((record, schema)) self.has_validated = False self.current_case = record.CASE_NUMBER else: @@ -203,11 +187,10 @@ def __validate_s1_records_are_related(self): t3_model_name = 'M3' if is_ssp else 'T3' t3_model = self.__get_model(t3_model_name) - cases = self.record_schema_pairs.sorted_cases - t1s = cases.get(t1_model, []) - t2s = cases.get(t2_model, []) - t3s = cases.get(t3_model, []) + t1s = self.sorted_cases.get(t1_model, []) + t2s = self.sorted_cases.get(t2_model, []) + t3s = self.sorted_cases.get(t3_model, []) if len(t1s) > 0: if len(t1s) > 1: # likely to be captured by "no duplicates" validator @@ -349,10 +332,8 @@ def __validate_s2_records_are_related(self): t5_model_name = 'M5' if is_ssp else 'T5' t5_model = self.__get_model(t5_model_name) - cases = self.record_schema_pairs.sorted_cases - - t4s = cases.get(t4_model, []) - t5s = cases.get(t5_model, []) + t4s = self.sorted_cases.get(t4_model, []) + t5s = self.sorted_cases.get(t5_model, []) if len(t4s) > 0: if len(t4s) > 1: @@ -421,7 +402,7 @@ def __validate_t5_aabd_and_ssi(self): is_state = self.stt_type == STT.EntityType.STATE is_territory = self.stt_type == STT.EntityType.TERRITORY - t5s = self.record_schema_pairs.sorted_cases.get(t5_model, []) + t5s = self.sorted_cases.get(t5_model, []) for record, schema in t5s: rpt_month_year = getattr(record, 'RPT_MONTH_YEAR') diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 82e2fe696..f8424dd36 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -45,6 +45,7 @@ def __init__(self, my_hash, manager_error_dict, generate_error): self.error_precedence = ErrorPrecedence() self.num_errors = 0 self.should_remove_from_db = False + self.current_line_number = None def get_records_for_post_parse_deletion(self): """Return record ids if case has duplicate errors.""" @@ -72,50 +73,52 @@ def add_case_member(self, record, schema, line, line_number, can_remove_case_fro """Add case member and generate errors if needed.""" # TODO: Need to add support for T6 and T7 detection. - self.should_remove_from_db = self.should_remove_from_db if self.should_remove_from_db else \ - can_remove_case_from_memory - self.record_ids.setdefault(schema.document, []).append(record.id) - line_hash = hash(line) - partial_hash = None - if record.RecordType in {"T1", "T4"}: - partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) - elif record.RecordType in {"T2", "T3", "T5"}: - partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + - str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) - - is_exact_dup = False - err_msg = None - has_precedence = False - is_new_max_precedence = False - - if line_hash in self.record_hashes: - has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) - existing_record_id, existing_record_line_number = self.record_hashes[line_hash] - err_msg = (f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " - f"line {line_number}. Record is a duplicate of the record at line number " - f"{existing_record_line_number}, with record id {existing_record_id}") - is_exact_dup = True - - skip_partial = False - if record.RecordType == "T2": - skip_partial = record.FAMILY_AFFILIATION in {3, 5} - if record.RecordType == "T3": - skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} - if record.RecordType == "T5": - skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} - - if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: - has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.PARTIAL_DUPLICATE) - err_msg = (f"Partial duplicate record detected for record id {record.id} with record type " - f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " - f"record at line number {self.partial_hashes[partial_hash][1]}, with record id " - f"{self.partial_hashes[partial_hash][0]}") - - self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) - if line_hash not in self.record_hashes: - self.record_hashes[line_hash] = (record.id, line_number) - if partial_hash is not None and partial_hash not in self.partial_hashes: - self.partial_hashes[partial_hash] = (record.id, line_number) + if self.current_line_number is None or self.current_line_number != line_number: + self.current_line_number = line_number + self.should_remove_from_db = self.should_remove_from_db if self.should_remove_from_db else \ + can_remove_case_from_memory + self.record_ids.setdefault(schema.document, []).append(record.id) + line_hash = hash(line) + partial_hash = None + if record.RecordType in {"T1", "T4"}: + partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) + elif record.RecordType in {"T2", "T3", "T5"}: + partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) + + is_exact_dup = False + err_msg = None + has_precedence = False + is_new_max_precedence = False + + if line_hash in self.record_hashes: + has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) + existing_record_id, existing_record_line_number = self.record_hashes[line_hash] + err_msg = (f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " + f"line {line_number}. Record is a duplicate of the record at line number " + f"{existing_record_line_number}, with record id {existing_record_id}") + is_exact_dup = True + + skip_partial = False + if record.RecordType == "T2": + skip_partial = record.FAMILY_AFFILIATION in {3, 5} + if record.RecordType == "T3": + skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} + if record.RecordType == "T5": + skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} + + if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: + has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.PARTIAL_DUPLICATE) + err_msg = (f"Partial duplicate record detected for record id {record.id} with record type " + f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " + f"record at line number {self.partial_hashes[partial_hash][1]}, with record id " + f"{self.partial_hashes[partial_hash][0]}") + + self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) + if line_hash not in self.record_hashes: + self.record_hashes[line_hash] = (record.id, line_number) + if partial_hash is not None and partial_hash not in self.partial_hashes: + self.partial_hashes[partial_hash] = (record.id, line_number) return self.num_errors diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 287c58cff..962249784 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -174,3 +174,31 @@ def get_years_apart(rpt_month_year_date, date): delta = rpt_month_year_date - date age = delta.days/365.25 return age + + +class SortedRecordSchemaPairs: + """Maintains a dict sorted by hash(str(rpt_month_year) + case_number) and model_type.""" + + def __init__(self): + self.sorted_cases = {} + + def clear(self, seed_record_schema_pair=None): + """Reset the sorted object. Optionally add a seed record for the next run.""" + self.sorted_cases = {} + + if seed_record_schema_pair: + self.add_record(seed_record_schema_pair) + + def add_record(self, record_schema_pair): + """Add a record_schema_pair to the sorted object.""" + record, schema = record_schema_pair + rpt_month_year = getattr(record, 'RPT_MONTH_YEAR') + case_number = getattr(record, 'CASE_NUMBER') + hash_val = hash(str(rpt_month_year) + case_number) + + reporting_year_cases = self.sorted_cases.get(hash_val, {}) + records = reporting_year_cases.get(type(record), []) + records.append(record_schema_pair) + + reporting_year_cases[type(record)] = records + self.sorted_cases[hash_val] = reporting_year_cases \ No newline at end of file From a2ee10c5035e4c1dc2f9ea78b29db4536e8c7481 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 09:53:27 -0600 Subject: [PATCH 021/126] - remove unused import --- tdrs-backend/tdpservice/parsers/parse.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index aded09d20..4f47d4e75 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -12,7 +12,6 @@ from . import row_schema from .schema_defs.utils import get_section_reference, get_program_model from .case_consistency_validator import CaseConsistencyValidator -from .duplicate_manager import RecordDuplicateManager from elasticsearch.helpers.errors import BulkIndexError from tdpservice.data_files.models import DataFile From e932df7d5c1fd0cd3968fffdf09a936bcc44e6b7 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 09:59:58 -0600 Subject: [PATCH 022/126] - Update class to store records based on hash pending the section type --- tdrs-backend/tdpservice/parsers/util.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 962249784..e4eb4cd7d 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -179,7 +179,8 @@ def get_years_apart(rpt_month_year_date, date): class SortedRecordSchemaPairs: """Maintains a dict sorted by hash(str(rpt_month_year) + case_number) and model_type.""" - def __init__(self): + def __init__(self, section): + self.records_are_s1_or_s2 = section in {'A', 'C'} self.sorted_cases = {} def clear(self, seed_record_schema_pair=None): @@ -192,13 +193,15 @@ def clear(self, seed_record_schema_pair=None): def add_record(self, record_schema_pair): """Add a record_schema_pair to the sorted object.""" record, schema = record_schema_pair - rpt_month_year = getattr(record, 'RPT_MONTH_YEAR') - case_number = getattr(record, 'CASE_NUMBER') - hash_val = hash(str(rpt_month_year) + case_number) + rpt_month_year = str(getattr(record, 'RPT_MONTH_YEAR')) + if not self.records_are_s1_or_s2: + hash_val = hash(rpt_month_year + record.CASE_NUMBER) + else: + hash_val = hash(record.RecordType + rpt_month_year) reporting_year_cases = self.sorted_cases.get(hash_val, {}) records = reporting_year_cases.get(type(record), []) records.append(record_schema_pair) reporting_year_cases[type(record)] = records - self.sorted_cases[hash_val] = reporting_year_cases \ No newline at end of file + self.sorted_cases[hash_val] = reporting_year_cases From d8427334be35b6f441bb190d6291a129dcb7d5f6 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 11:35:53 -0600 Subject: [PATCH 023/126] - Update parse to leverage new data structure --- tdrs-backend/tdpservice/parsers/parse.py | 13 +++++------ tdrs-backend/tdpservice/parsers/util.py | 29 ++++++++++++++++++++---- 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 4f47d4e75..a94a1cc06 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -141,8 +141,8 @@ def bulk_create_records(unsaved_records, line_number, header_count, datafile, df return num_db_records_created == num_expected_db_records, {} except DatabaseError as e: logger.error(f"Encountered error while creating datafile records: {e}") - return False, unsaved_records - return True, unsaved_records + return False + return True def bulk_create_errors(unsaved_parser_errors, num_errors, batch_size=5000, flush=False): """Bulk create all ParserErrors.""" @@ -255,7 +255,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas line_number = 0 - unsaved_records = {} + unsaved_records = util.SortedRecordSchemaPairs(section) unsaved_parser_errors = {} header_count = 0 @@ -313,7 +313,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # We need to execute the bulk_create prior to the case_consistency_validator.add_record call to manage record # removal in an easier manner. - all_created, unsaved_records = bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs) + all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, datafile, dfs) unsaved_parser_errors, num_errors = bulk_create_errors(unsaved_parser_errors, num_errors) schema_manager = get_schema_manager(line, section, program_type) @@ -341,7 +341,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas should_remove = case_consistency_validator.add_record(record, s, line, line_number, record_has_errors) # TODO: Will cause linter complexity issues if not should_remove: - unsaved_records.setdefault(s.document, []).append(record) + unsaved_records.add_record((record, s)) # Add any generated cat4 errors to our error data structure & clear our caches errors list num_errors += case_consistency_validator.num_generated_errors() @@ -367,8 +367,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # Only checking "all_created" here because records remained cached if bulk create fails. This is the last chance to # successfully create the records. - all_created, unsaved_records = bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs, - flush=True) + all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, datafile, dfs, flush=True) no_records_created_error = create_no_records_created_pre_check_error(datafile, dfs) unsaved_parser_errors.update(no_records_created_error) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index e4eb4cd7d..5e3f53e5d 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -181,11 +181,12 @@ class SortedRecordSchemaPairs: def __init__(self, section): self.records_are_s1_or_s2 = section in {'A', 'C'} - self.sorted_cases = {} + self.rpt_month_year_sorted_cases = dict() + self.document_sorted_cases = dict() def clear(self, seed_record_schema_pair=None): """Reset the sorted object. Optionally add a seed record for the next run.""" - self.sorted_cases = {} + self.rpt_month_year_sorted_cases = dict() if seed_record_schema_pair: self.add_record(seed_record_schema_pair) @@ -194,14 +195,32 @@ def add_record(self, record_schema_pair): """Add a record_schema_pair to the sorted object.""" record, schema = record_schema_pair rpt_month_year = str(getattr(record, 'RPT_MONTH_YEAR')) - if not self.records_are_s1_or_s2: + if self.records_are_s1_or_s2: hash_val = hash(rpt_month_year + record.CASE_NUMBER) else: hash_val = hash(record.RecordType + rpt_month_year) - reporting_year_cases = self.sorted_cases.get(hash_val, {}) + reporting_year_cases = self.rpt_month_year_sorted_cases.get(hash_val, {}) records = reporting_year_cases.get(type(record), []) records.append(record_schema_pair) reporting_year_cases[type(record)] = records - self.sorted_cases[hash_val] = reporting_year_cases + self.rpt_month_year_sorted_cases[hash_val] = reporting_year_cases + + self.document_sorted_cases.setdefault(schema.document, []).append(record) + + def merge_by_doctype(self): + """Merges sorted_cases into a dict of form {document, [records]}.""" + records = dict() + for key, val in self.rpt_month_year_sorted_cases.values().items(): + records.setdefault(key, []).extend(val) + + def get_bulk_create_struct(self): + """Return dict of form {document: [records]}.""" + return self.document_sorted_cases + + def clear(self, all_created): + """Reset sorted structs if all records were created.""" + if all_created: + self.document_sorted_cases = dict() + self.rpt_month_year_sorted_cases = dict() From c6a9f177f9478b235d6b81aae47a7ca628b608bb Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 11:38:49 -0600 Subject: [PATCH 024/126] - clearing after bulk create --- tdrs-backend/tdpservice/parsers/parse.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index a94a1cc06..02e4ed4fa 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -314,6 +314,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # We need to execute the bulk_create prior to the case_consistency_validator.add_record call to manage record # removal in an easier manner. all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, datafile, dfs) + unsaved_records.clear(all_created) unsaved_parser_errors, num_errors = bulk_create_errors(unsaved_parser_errors, num_errors) schema_manager = get_schema_manager(line, section, program_type) @@ -368,6 +369,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # Only checking "all_created" here because records remained cached if bulk create fails. This is the last chance to # successfully create the records. all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, datafile, dfs, flush=True) + unsaved_records.clear(all_created) no_records_created_error = create_no_records_created_pre_check_error(datafile, dfs) unsaved_parser_errors.update(no_records_created_error) From d2289596db16e1381c55e4decddea6dd19c34fff Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 13:20:24 -0600 Subject: [PATCH 025/126] - Rename to be more accurate - Add method to generate bulk create dictionary - Stub function for removing cases --- tdrs-backend/tdpservice/parsers/parse.py | 4 ++-- tdrs-backend/tdpservice/parsers/util.py | 25 +++++++++++++----------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 02e4ed4fa..b1488ccad 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -142,7 +142,7 @@ def bulk_create_records(unsaved_records, line_number, header_count, datafile, df except DatabaseError as e: logger.error(f"Encountered error while creating datafile records: {e}") return False - return True + return False def bulk_create_errors(unsaved_parser_errors, num_errors, batch_size=5000, flush=False): """Bulk create all ParserErrors.""" @@ -255,7 +255,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas line_number = 0 - unsaved_records = util.SortedRecordSchemaPairs(section) + unsaved_records = util.SortedRecordDocumentPairs(section) unsaved_parser_errors = {} header_count = 0 diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 5e3f53e5d..03c409497 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -176,7 +176,7 @@ def get_years_apart(rpt_month_year_date, date): return age -class SortedRecordSchemaPairs: +class SortedRecordDocumentPairs: """Maintains a dict sorted by hash(str(rpt_month_year) + case_number) and model_type.""" def __init__(self, section): @@ -201,26 +201,29 @@ def add_record(self, record_schema_pair): hash_val = hash(record.RecordType + rpt_month_year) reporting_year_cases = self.rpt_month_year_sorted_cases.get(hash_val, {}) - records = reporting_year_cases.get(type(record), []) - records.append(record_schema_pair) + records = reporting_year_cases.get(schema.document, []) + records.append(record) - reporting_year_cases[type(record)] = records + reporting_year_cases[schema.document] = records self.rpt_month_year_sorted_cases[hash_val] = reporting_year_cases self.document_sorted_cases.setdefault(schema.document, []).append(record) - def merge_by_doctype(self): - """Merges sorted_cases into a dict of form {document, [records]}.""" - records = dict() - for key, val in self.rpt_month_year_sorted_cases.values().items(): - records.setdefault(key, []).extend(val) - def get_bulk_create_struct(self): """Return dict of form {document: [records]}.""" - return self.document_sorted_cases + # TODO: This is slower, but saves memory. Can we do better? + records = dict() + for dictionary in self.rpt_month_year_sorted_cases.values(): + for key, val in dictionary.items(): + records.setdefault(key, []).extend(val) + return records def clear(self, all_created): """Reset sorted structs if all records were created.""" if all_created: self.document_sorted_cases = dict() self.rpt_month_year_sorted_cases = dict() + + def remove_case_due_to_errors(self, hash): + """Remove all records from memory given the hash.""" + From 15059f619d07423652505557f64afe367ff9cd2e Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 13:39:42 -0600 Subject: [PATCH 026/126] - Updated class name - basing off of doc instead of schema --- tdrs-backend/tdpservice/parsers/parse.py | 4 ++-- tdrs-backend/tdpservice/parsers/util.py | 24 ++++++++++-------------- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index b1488ccad..a0d9a68bb 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -255,7 +255,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas line_number = 0 - unsaved_records = util.SortedRecordDocumentPairs(section) + unsaved_records = util.SortedRecords(section) unsaved_parser_errors = {} header_count = 0 @@ -342,7 +342,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas should_remove = case_consistency_validator.add_record(record, s, line, line_number, record_has_errors) # TODO: Will cause linter complexity issues if not should_remove: - unsaved_records.add_record((record, s)) + unsaved_records.add_record((record, s.document)) # Add any generated cat4 errors to our error data structure & clear our caches errors list num_errors += case_consistency_validator.num_generated_errors() diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 03c409497..c634ee000 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -176,24 +176,23 @@ def get_years_apart(rpt_month_year_date, date): return age -class SortedRecordDocumentPairs: +class SortedRecords: """Maintains a dict sorted by hash(str(rpt_month_year) + case_number) and model_type.""" def __init__(self, section): self.records_are_s1_or_s2 = section in {'A', 'C'} self.rpt_month_year_sorted_cases = dict() - self.document_sorted_cases = dict() - def clear(self, seed_record_schema_pair=None): + def clear(self, seed_record_doc_pair=None): """Reset the sorted object. Optionally add a seed record for the next run.""" self.rpt_month_year_sorted_cases = dict() - if seed_record_schema_pair: - self.add_record(seed_record_schema_pair) + if seed_record_doc_pair: + self.add_record(seed_record_doc_pair) - def add_record(self, record_schema_pair): - """Add a record_schema_pair to the sorted object.""" - record, schema = record_schema_pair + def add_record(self, record_doc_pair): + """Add a record_doc_pair to the sorted object.""" + record, document = record_doc_pair rpt_month_year = str(getattr(record, 'RPT_MONTH_YEAR')) if self.records_are_s1_or_s2: hash_val = hash(rpt_month_year + record.CASE_NUMBER) @@ -201,16 +200,14 @@ def add_record(self, record_schema_pair): hash_val = hash(record.RecordType + rpt_month_year) reporting_year_cases = self.rpt_month_year_sorted_cases.get(hash_val, {}) - records = reporting_year_cases.get(schema.document, []) + records = reporting_year_cases.get(document, []) records.append(record) - reporting_year_cases[schema.document] = records + reporting_year_cases[document] = records self.rpt_month_year_sorted_cases[hash_val] = reporting_year_cases - self.document_sorted_cases.setdefault(schema.document, []).append(record) - def get_bulk_create_struct(self): - """Return dict of form {document: [records]}.""" + """Return dict of form {document: [records]} for bulk_create_records to consume.""" # TODO: This is slower, but saves memory. Can we do better? records = dict() for dictionary in self.rpt_month_year_sorted_cases.values(): @@ -221,7 +218,6 @@ def get_bulk_create_struct(self): def clear(self, all_created): """Reset sorted structs if all records were created.""" if all_created: - self.document_sorted_cases = dict() self.rpt_month_year_sorted_cases = dict() def remove_case_due_to_errors(self, hash): From 3c56c8cec68a38389dd9c925aad5d881a85e4050 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 14:56:59 -0600 Subject: [PATCH 027/126] - Adding infrastructure to remove records from memory or the DB pending their state --- .../parsers/case_consistency_validator.py | 8 ++--- .../tdpservice/parsers/duplicate_manager.py | 22 ++++++++---- tdrs-backend/tdpservice/parsers/parse.py | 9 ++--- tdrs-backend/tdpservice/parsers/util.py | 34 ++++++++++++------- 4 files changed, 47 insertions(+), 26 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 0069ea1fa..e20b37c3f 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -31,7 +31,6 @@ def __init__(self, header, stt_type, generate_error): self.total_cases_cached = 0 self.total_cases_validated = 0 self.stt_type = stt_type - self.can_remove_case_from_memory = True def __get_model(self, model_str): """Return a model for the current program type/section given the model's string name.""" @@ -72,11 +71,12 @@ def clear_sorted_struct(self, seed_record_schema_pair=None): if seed_record_schema_pair: self.add_record_to_sorted_struct(seed_record_schema_pair) + def update_removed(self, hash_val, was_removed): + self.duplicate_manager.update_removed(hash_val, was_removed) def add_record(self, record, schema, line, line_number, case_has_errors): """Add record to cache and validate if new case is detected.""" num_errors = 0 - self.can_remove_case_from_memory &= record._state.adding hash_val = None self.current_rpt_month_year = record.RPT_MONTH_YEAR if self.case_is_section_one_or_two: @@ -99,9 +99,9 @@ def add_record(self, record, schema, line, line_number, case_has_errors): # get the correct duplicate manager based on the section. Sections 3 and 4 have different duplicate logic # than 1 or 2 anyways. Some more care for handling section 1 and 2 together is still needed. num_errors += self.duplicate_manager.add_record(record, hash_val, schema, line, - line_number, self.can_remove_case_from_memory) + line_number) - return num_errors > 0 and self.can_remove_case_from_memory + return num_errors > 0, hash_val def validate(self): """Perform category four validation on all cached records.""" diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index f8424dd36..d12e5f9f3 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -47,6 +47,12 @@ def __init__(self, my_hash, manager_error_dict, generate_error): self.should_remove_from_db = False self.current_line_number = None + def set_should_remove_from_db(self, should_remove): + self.should_remove_from_db = should_remove + + def has_errors(self): + return self.num_errors > 0 + def get_records_for_post_parse_deletion(self): """Return record ids if case has duplicate errors.""" if self.num_errors > 0 and self.should_remove_from_db: @@ -69,14 +75,12 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p self.manager_error_dict.setdefault(self.my_hash, []).append(error) self.num_errors = len(self.manager_error_dict[self.my_hash]) - def add_case_member(self, record, schema, line, line_number, can_remove_case_from_memory): + def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed.""" # TODO: Need to add support for T6 and T7 detection. if self.current_line_number is None or self.current_line_number != line_number: self.current_line_number = line_number - self.should_remove_from_db = self.should_remove_from_db if self.should_remove_from_db else \ - can_remove_case_from_memory self.record_ids.setdefault(schema.document, []).append(record.id) line_hash = hash(line) partial_hash = None @@ -131,13 +135,12 @@ def __init__(self, generate_error): self.generate_error = generate_error self.generated_errors = dict() - def add_record(self, record, hash_val, schema, line, line_number, can_remove_case_from_memory): + def add_record(self, record, hash_val, schema, line, line_number): """Add record to existing CaseHashtainer or create new one and return whether the record's case has errors.""" if hash_val not in self.hashtainers: hashtainer = CaseHashtainer(hash_val, self.generated_errors, self.generate_error) self.hashtainers[hash_val] = hashtainer - return self.hashtainers[hash_val].add_case_member(record, schema, line, - line_number, can_remove_case_from_memory) + return self.hashtainers[hash_val].add_case_member(record, schema, line, line_number) def get_generated_errors(self): """Return all errors from all CaseHashtainers.""" @@ -154,3 +157,10 @@ def get_records_to_remove(self): records_to_remove.setdefault(document, []).extend(ids) return records_to_remove + + def update_removed(self, hash_val, was_removed): + hashtainer = self.hashtainers.get(hash_val) + if was_removed: + hashtainer.set_should_remove_from_db(False) + if not was_removed and hashtainer.has_errors(): + hashtainer.set_should_remove_from_db(True) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index a0d9a68bb..16bc3f2c6 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -339,10 +339,11 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas s = schema_manager.schemas[i] record.datafile = datafile record_has_errors = len(record_errors) > 0 - should_remove = case_consistency_validator.add_record(record, s, line, line_number, record_has_errors) - # TODO: Will cause linter complexity issues - if not should_remove: - unsaved_records.add_record((record, s.document)) + should_remove, hash_val = case_consistency_validator.add_record(record, s, line, + line_number, record_has_errors) + unsaved_records.add_record((record, s.document)) + was_removed = unsaved_records.remove_case_due_to_errors(should_remove, hash_val) + case_consistency_validator.update_removed(hash_val, was_removed) # Add any generated cat4 errors to our error data structure & clear our caches errors list num_errors += case_consistency_validator.num_generated_errors() diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index c634ee000..aa395a1b5 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -181,36 +181,39 @@ class SortedRecords: def __init__(self, section): self.records_are_s1_or_s2 = section in {'A', 'C'} - self.rpt_month_year_sorted_cases = dict() + self.hash_sorted_cases = dict() + self.cases_already_removed = set() def clear(self, seed_record_doc_pair=None): """Reset the sorted object. Optionally add a seed record for the next run.""" - self.rpt_month_year_sorted_cases = dict() + self.hash_sorted_cases = dict() if seed_record_doc_pair: self.add_record(seed_record_doc_pair) def add_record(self, record_doc_pair): - """Add a record_doc_pair to the sorted object.""" + """Add a record_doc_pair to the sorted object if the case hasn't been removed already.""" record, document = record_doc_pair rpt_month_year = str(getattr(record, 'RPT_MONTH_YEAR')) + hash_val = None if self.records_are_s1_or_s2: hash_val = hash(rpt_month_year + record.CASE_NUMBER) else: hash_val = hash(record.RecordType + rpt_month_year) - reporting_year_cases = self.rpt_month_year_sorted_cases.get(hash_val, {}) - records = reporting_year_cases.get(document, []) - records.append(record) + if hash_val is not None and hash_val not in self.cases_already_removed: + hashed_case = self.hash_sorted_cases.get(hash_val, {}) + records = hashed_case.get(document, []) + records.append(record) - reporting_year_cases[document] = records - self.rpt_month_year_sorted_cases[hash_val] = reporting_year_cases + hashed_case[document] = records + self.hash_sorted_cases[hash_val] = hashed_case def get_bulk_create_struct(self): """Return dict of form {document: [records]} for bulk_create_records to consume.""" # TODO: This is slower, but saves memory. Can we do better? records = dict() - for dictionary in self.rpt_month_year_sorted_cases.values(): + for dictionary in self.hash_sorted_cases.values(): for key, val in dictionary.items(): records.setdefault(key, []).extend(val) return records @@ -218,8 +221,15 @@ def get_bulk_create_struct(self): def clear(self, all_created): """Reset sorted structs if all records were created.""" if all_created: - self.rpt_month_year_sorted_cases = dict() + self.hash_sorted_cases = dict() - def remove_case_due_to_errors(self, hash): + def remove_case_due_to_errors(self, should_remove, hash): """Remove all records from memory given the hash.""" - + if should_remove: + if hash in self.cases_already_removed: + return True + if hash in self.hash_sorted_cases: + self.cases_already_removed.add(hash) + self.hash_sorted_cases.pop(hash) + return True + return False From 75d207d49cac7760115eadb6847d5760ade27c27 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 24 Apr 2024 14:58:43 -0600 Subject: [PATCH 028/126] - fix logic issue --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index d12e5f9f3..66f1f5e9e 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -162,5 +162,5 @@ def update_removed(self, hash_val, was_removed): hashtainer = self.hashtainers.get(hash_val) if was_removed: hashtainer.set_should_remove_from_db(False) - if not was_removed and hashtainer.has_errors(): + else: hashtainer.set_should_remove_from_db(True) From a90ee0823dec4f20e0405cebe91815119e900e99 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 25 Apr 2024 15:12:22 -0600 Subject: [PATCH 029/126] - fix logic error --- tdrs-backend/tdpservice/parsers/case_consistency_validator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index e20b37c3f..b7e534430 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -95,6 +95,8 @@ def add_record(self, record, schema, line, line_number, case_has_errors): self.current_case = None hash_val = hash(record.RecordType + str(record.RPT_MONTH_YEAR)) + self.current_hash = hash_val + # TODO: Duplicate detection applies to all sections, however we need to implement a factory of some sort to # get the correct duplicate manager based on the section. Sections 3 and 4 have different duplicate logic # than 1 or 2 anyways. Some more care for handling section 1 and 2 together is still needed. From 85d25b64c737dc31bfbf0f1042e48d765f0f1f01 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 25 Apr 2024 15:37:27 -0600 Subject: [PATCH 030/126] - added back list of cases --- .../parsers/case_consistency_validator.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index b7e534430..625aedaf8 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -17,6 +17,7 @@ class CaseConsistencyValidator: def __init__(self, header, stt_type, generate_error): self.header = header self.sorted_cases = dict() + self.cases = list() self.duplicate_manager = RecordDuplicateManager(generate_error) self.current_rpt_month_year = None self.current_case = None @@ -60,16 +61,18 @@ def num_generated_errors(self): """Return current number of generated errors for the current case.""" return len(self.generated_errors) - def add_record_to_sorted_struct(self, record_schema_pair): + def add_record_to_structs(self, record_schema_pair): """Add record_schema_pair to sorted structure.""" record = record_schema_pair[0] self.sorted_cases.setdefault(type(record), []).append(record_schema_pair) + self.cases.append(record_schema_pair) - def clear_sorted_struct(self, seed_record_schema_pair=None): + def clear_structs(self, seed_record_schema_pair=None): """Reset and optionally seed the sorted stucture.""" self.sorted_cases = dict() + self.cases = list() if seed_record_schema_pair: - self.add_record_to_sorted_struct(seed_record_schema_pair) + self.add_record_to_structs(seed_record_schema_pair) def update_removed(self, hash_val, was_removed): self.duplicate_manager.update_removed(hash_val, was_removed) @@ -83,12 +86,12 @@ def add_record(self, record, schema, line, line_number, case_has_errors): hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) if hash_val != self.current_hash and self.current_hash is not None: num_errors += self.validate() - self.clear_sorted_struct((record, schema)) + self.clear_structs((record, schema)) self.case_has_errors = case_has_errors self.has_validated = False else: self.case_has_errors = self.case_has_errors if self.case_has_errors else case_has_errors - self.add_record_to_sorted_struct((record, schema)) + self.add_record_to_structs((record, schema)) self.has_validated = False self.current_case = record.CASE_NUMBER else: From d1f88ecc10b12434706821d1a66a73d15047d53b Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 25 Apr 2024 15:37:40 -0600 Subject: [PATCH 031/126] - fixed test_add_record --- .../parsers/test/test_case_consistency.py | 32 ++++++++++++------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 59f23d945..d1f8137f6 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1,6 +1,7 @@ """Test the CaseConsistencyValidator and SortedRecordSchemaPairs classes.""" import pytest +import itertools import logging from tdpservice.parsers.test import factories from .. import schema_defs, util @@ -68,39 +69,48 @@ def test_add_record(self, small_correct_file_header, small_correct_file, tanf_s1 util.make_generate_parser_error(small_correct_file, None) ) + line_number = 1 for record, schema in zip(tanf_s1_records, tanf_s1_schemas): - case_consistency_validator.add_record(record, schema, True) + case_consistency_validator.add_record(record, schema, str(record), line_number, True) + line_number += 1 assert case_consistency_validator.has_validated is False assert case_consistency_validator.case_has_errors is True - assert len(case_consistency_validator.record_schema_pairs.cases) == 4 + assert len(case_consistency_validator.cases) == 4 assert case_consistency_validator.total_cases_cached == 0 assert case_consistency_validator.total_cases_validated == 0 # Add record with different case number to proc validation again and start caching a new case. t1 = factories.TanfT1Factory.create() - t1.CASE_NUMBER = 2 - case_consistency_validator.add_record(t1, tanf_s1_schemas[0], False) + t1.CASE_NUMBER = '2' + t1.RPT_MONTH_YEAR = 2 + line_number += 1 + case_consistency_validator.add_record(t1, tanf_s1_schemas[0], str(t1), line_number, False) assert case_consistency_validator.has_validated is False assert case_consistency_validator.case_has_errors is False - assert len(case_consistency_validator.record_schema_pairs.cases) == 1 + assert len(case_consistency_validator.cases) == 1 assert case_consistency_validator.total_cases_cached == 1 assert case_consistency_validator.total_cases_validated == 0 # Complete the case to proc validation and verify that it occured. Even if the next case has errors. t2 = factories.TanfT2Factory.create() t3 = factories.TanfT3Factory.create() - t2.CASE_NUMBER = 2 - t3.CASE_NUMBER = 2 - case_consistency_validator.add_record(t2, tanf_s1_schemas[1], False) - case_consistency_validator.add_record(t3, tanf_s1_schemas[2], False) + t2.CASE_NUMBER = '2' + t2.RPT_MONTH_YEAR = 2 + t3.CASE_NUMBER = '2' + t3.RPT_MONTH_YEAR = 2 + line_number += 1 + case_consistency_validator.add_record(t2, tanf_s1_schemas[1], str(t2), line_number, False) + line_number += 1 + case_consistency_validator.add_record(t3, tanf_s1_schemas[2], str(t3), line_number, False) assert case_consistency_validator.case_has_errors is False - case_consistency_validator.add_record(tanf_s1_records[0], tanf_s1_schemas[0], True) + line_number += 1 + case_consistency_validator.add_record(tanf_s1_records[0], tanf_s1_schemas[0], str(t3), line_number, True) assert case_consistency_validator.has_validated is False assert case_consistency_validator.case_has_errors is True - assert len(case_consistency_validator.record_schema_pairs.cases) == 1 + assert len(case_consistency_validator.cases) == 1 assert case_consistency_validator.total_cases_cached == 2 assert case_consistency_validator.total_cases_validated == 1 From db1e6ba2e874dd936e53a641b19d38d35ae916cf Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 25 Apr 2024 16:12:27 -0600 Subject: [PATCH 032/126] - Fix all case consistency tests --- .../parsers/test/test_case_consistency.py | 120 +++++++++++++----- 1 file changed, 85 insertions(+), 35 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index d1f8137f6..debb39356 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1,7 +1,6 @@ """Test the CaseConsistencyValidator and SortedRecordSchemaPairs classes.""" import pytest -import itertools import logging from tdpservice.parsers.test import factories from .. import schema_defs, util @@ -157,8 +156,10 @@ def test_section1_records_are_related_validator_pass( CASE_NUMBER='123', ), ] + line_number = 1 for t1 in t1s: - case_consistency_validator.add_record(t1, t1_schema, False) + case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) + line_number += 1 t2s = [ T2Factory.create( @@ -173,7 +174,8 @@ def test_section1_records_are_related_validator_pass( ), ] for t2 in t2s: - case_consistency_validator.add_record(t2, t2_schema, False) + case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) + line_number += 1 t3s = [ T3Factory.create( @@ -188,7 +190,8 @@ def test_section1_records_are_related_validator_pass( ), ] for t3 in t3s: - case_consistency_validator.add_record(t3, t3_schema, False) + case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -240,8 +243,10 @@ def test_section1_records_are_related_validator_fail_no_t2_or_t3( CASE_NUMBER='123' ), ] + line_number = 1 for t1 in t1s: - case_consistency_validator.add_record(t1, t1_schema, False) + case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -304,8 +309,10 @@ def test_section1_records_are_related_validator_fail_no_t1( FAMILY_AFFILIATION=2, ), ] + line_number = 1 for t2 in t2s: - case_consistency_validator.add_record(t2, t2_schema, False) + case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) + line_number += 1 t3s = [ T3Factory.create( @@ -320,7 +327,8 @@ def test_section1_records_are_related_validator_fail_no_t1( ), ] for t3 in t3s: - case_consistency_validator.add_record(t3, t3_schema, False) + case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -396,8 +404,10 @@ def test_section1_records_are_related_validator_fail_multiple_t1s( CASE_NUMBER='123' ), ] + line_number = 1 for t1 in t1s: - case_consistency_validator.add_record(t1, t1_schema, False) + case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) + line_number += 1 t2s = [ T2Factory.create( @@ -412,7 +422,8 @@ def test_section1_records_are_related_validator_fail_multiple_t1s( ), ] for t2 in t2s: - case_consistency_validator.add_record(t2, t2_schema, False) + case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) + line_number += 1 t3s = [ T3Factory.create( @@ -427,7 +438,8 @@ def test_section1_records_are_related_validator_fail_multiple_t1s( ), ] for t3 in t3s: - case_consistency_validator.add_record(t3, t3_schema, False) + case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -484,8 +496,10 @@ def test_section1_records_are_related_validator_fail_no_family_affiliation( CASE_NUMBER='123' ), ] + line_number = 1 for t1 in t1s: - case_consistency_validator.add_record(t1, t1_schema, False) + case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) + line_number += 1 t2s = [ T2Factory.create( @@ -500,7 +514,8 @@ def test_section1_records_are_related_validator_fail_no_family_affiliation( ), ] for t2 in t2s: - case_consistency_validator.add_record(t2, t2_schema, False) + case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) + line_number += 1 t3s = [ T3Factory.create( @@ -515,7 +530,8 @@ def test_section1_records_are_related_validator_fail_no_family_affiliation( ), ] for t3 in t3s: - case_consistency_validator.add_record(t3, t3_schema, False) + case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -568,8 +584,10 @@ def test_section2_validator_pass(self, small_correct_file, header, T4Stuff, T5St CASE_NUMBER='123', ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -588,7 +606,8 @@ def test_section2_validator_pass(self, small_correct_file, header, T4Stuff, T5St ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -639,8 +658,10 @@ def test_section2_validator_fail_multiple_t4s(self, small_correct_file, header, CASE_NUMBER='123' ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -659,7 +680,8 @@ def test_section2_validator_fail_multiple_t4s(self, small_correct_file, header, ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -713,8 +735,10 @@ def test_section2_validator_fail_case_closure_employment( CLOSURE_REASON='01' ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -735,7 +759,8 @@ def test_section2_validator_fail_case_closure_employment( ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -781,8 +806,10 @@ def test_section2_validator_fail_case_closure_ftl(self, small_correct_file, head CLOSURE_REASON='99' ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -805,7 +832,8 @@ def test_section2_validator_fail_case_closure_ftl(self, small_correct_file, head ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -857,8 +885,10 @@ def test_section2_records_are_related_validator_fail_no_t5s( CASE_NUMBER='123', ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -921,8 +951,10 @@ def test_section2_records_are_related_validator_fail_no_t4s( REC_SSI=1 ), ] + line_number = 1 for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -976,8 +1008,10 @@ def test_section2_aabd_ssi_validator_pass_territory_adult_aadb(self, small_corre CASE_NUMBER='123', ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -998,7 +1032,8 @@ def test_section2_aabd_ssi_validator_pass_territory_adult_aadb(self, small_corre ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -1042,8 +1077,10 @@ def test_section2_aabd_ssi_validator_fail_territory_adult_aabd(self, small_corre CASE_NUMBER='123', ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -1064,7 +1101,8 @@ def test_section2_aabd_ssi_validator_fail_territory_adult_aabd(self, small_corre ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -1116,8 +1154,10 @@ def test_section2_aabd_ssi_validator_pass_territory_child_aabd(self, small_corre CASE_NUMBER='123', ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -1138,7 +1178,8 @@ def test_section2_aabd_ssi_validator_pass_territory_child_aabd(self, small_corre ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -1182,8 +1223,10 @@ def test_section2_aabd_ssi_validator_fail_state_aabd(self, small_correct_file, h CASE_NUMBER='123', ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -1204,7 +1247,8 @@ def test_section2_aabd_ssi_validator_fail_state_aabd(self, small_correct_file, h ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -1256,8 +1300,10 @@ def test_section2_aabd_ssi_validator_fail_territory_ssi(self, small_correct_file CASE_NUMBER='123', ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -1278,7 +1324,8 @@ def test_section2_aabd_ssi_validator_fail_territory_ssi(self, small_correct_file ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() @@ -1330,8 +1377,10 @@ def test_section2_aabd_ssi_validator_fail_state_ssi(self, small_correct_file, he CASE_NUMBER='123', ), ] + line_number = 1 for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, False) + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 t5s = [ T5Factory.create( @@ -1352,7 +1401,8 @@ def test_section2_aabd_ssi_validator_fail_state_ssi(self, small_correct_file, he ), ] for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, False) + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 num_errors = case_consistency_validator.validate() From 8e92d86922ce2786327c5ea14fadd07ff73d1c37 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 25 Apr 2024 16:18:50 -0600 Subject: [PATCH 033/126] - Fix most lint errors --- .../parsers/case_consistency_validator.py | 2 +- .../tdpservice/parsers/duplicate_manager.py | 18 +++++++++++------- tdrs-backend/tdpservice/parsers/parse.py | 6 ++++-- tdrs-backend/tdpservice/parsers/util.py | 7 ------- 4 files changed, 16 insertions(+), 17 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 625aedaf8..5225d1c9c 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -75,6 +75,7 @@ def clear_structs(self, seed_record_schema_pair=None): self.add_record_to_structs(seed_record_schema_pair) def update_removed(self, hash_val, was_removed): + """Notify duplicate manager's hashtainers whether they need to be removed from DB.""" self.duplicate_manager.update_removed(hash_val, was_removed) def add_record(self, record, schema, line, line_number, case_has_errors): @@ -192,7 +193,6 @@ def __validate_s1_records_are_related(self): t3_model_name = 'M3' if is_ssp else 'T3' t3_model = self.__get_model(t3_model_name) - t1s = self.sorted_cases.get(t1_model, []) t2s = self.sorted_cases.get(t2_model, []) t3s = self.sorted_cases.get(t3_model, []) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 66f1f5e9e..a915262c9 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -48,9 +48,11 @@ def __init__(self, my_hash, manager_error_dict, generate_error): self.current_line_number = None def set_should_remove_from_db(self, should_remove): + """Set should remove from DB.""" self.should_remove_from_db = should_remove def has_errors(self): + """Return case duplicate error state.""" return self.num_errors > 0 def get_records_for_post_parse_deletion(self): @@ -98,9 +100,9 @@ def add_case_member(self, record, schema, line, line_number): if line_hash in self.record_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) existing_record_id, existing_record_line_number = self.record_hashes[line_hash] - err_msg = (f"Duplicate record detected for record id {record.id} with record type {record.RecordType} at " - f"line {line_number}. Record is a duplicate of the record at line number " - f"{existing_record_line_number}, with record id {existing_record_id}") + err_msg = (f"Duplicate record detected for record id {record.id} with record type " + f"{record.RecordType} at line {line_number}. Record is a duplicate of the record at " + f"line number {existing_record_line_number}, with record id {existing_record_id}") is_exact_dup = True skip_partial = False @@ -112,11 +114,12 @@ def add_case_member(self, record, schema, line, line_number): skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: - has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.PARTIAL_DUPLICATE) + has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( + ErrorLevel.PARTIAL_DUPLICATE) err_msg = (f"Partial duplicate record detected for record id {record.id} with record type " - f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " - f"record at line number {self.partial_hashes[partial_hash][1]}, with record id " - f"{self.partial_hashes[partial_hash][0]}") + f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " + f"record at line number {self.partial_hashes[partial_hash][1]}, with record id " + f"{self.partial_hashes[partial_hash][0]}") self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: @@ -159,6 +162,7 @@ def get_records_to_remove(self): return records_to_remove def update_removed(self, hash_val, was_removed): + """Notify hashtainers of DB removal.""" hashtainer = self.hashtainers.get(hash_val) if was_removed: hashtainer.set_should_remove_from_db(False) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 16bc3f2c6..377dcc779 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -313,7 +313,8 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # We need to execute the bulk_create prior to the case_consistency_validator.add_record call to manage record # removal in an easier manner. - all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, datafile, dfs) + all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, + datafile, dfs) unsaved_records.clear(all_created) unsaved_parser_errors, num_errors = bulk_create_errors(unsaved_parser_errors, num_errors) @@ -369,7 +370,8 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # Only checking "all_created" here because records remained cached if bulk create fails. This is the last chance to # successfully create the records. - all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, datafile, dfs, flush=True) + all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, datafile, + dfs, flush=True) unsaved_records.clear(all_created) no_records_created_error = create_no_records_created_pre_check_error(datafile, dfs) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index aa395a1b5..3586f8263 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -184,13 +184,6 @@ def __init__(self, section): self.hash_sorted_cases = dict() self.cases_already_removed = set() - def clear(self, seed_record_doc_pair=None): - """Reset the sorted object. Optionally add a seed record for the next run.""" - self.hash_sorted_cases = dict() - - if seed_record_doc_pair: - self.add_record(seed_record_doc_pair) - def add_record(self, record_doc_pair): """Add a record_doc_pair to the sorted object if the case hasn't been removed already.""" record, document = record_doc_pair From 112eeb629b9a44dcbaac9f83e8dc7bcc1f0b28bb Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 25 Apr 2024 16:30:46 -0600 Subject: [PATCH 034/126] - remove print --- tdrs-backend/tdpservice/parsers/case_consistency_validator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 5225d1c9c..97862d7f6 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -397,7 +397,6 @@ def __validate_s2_records_are_related(self): return num_errors def __validate_t5_aabd_and_ssi(self): - print('validate t5') num_errors = 0 is_ssp = self.program_type == 'SSP' From 503a017dea0fc3cfcd1f5211a3d26473978d71e7 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 25 Apr 2024 16:45:18 -0600 Subject: [PATCH 035/126] - update rollback logic - fix most parse tests --- tdrs-backend/tdpservice/parsers/parse.py | 6 +++--- tdrs-backend/tdpservice/parsers/test/test_parse.py | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 377dcc779..f99b23719 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -302,7 +302,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas ) preparse_error = {line_number: [err_obj]} unsaved_parser_errors.update(preparse_error) - rollback_records(unsaved_records, datafile) + rollback_records(unsaved_records.get_bulk_create_struct(), datafile) rollback_parser_errors(datafile) bulk_create_errors(preparse_error, num_errors, flush=True) return errors @@ -362,7 +362,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas record=None, field=None ) - rollback_records(unsaved_records, datafile) + rollback_records(unsaved_records.get_bulk_create_struct(), datafile) rollback_parser_errors(datafile) preparse_error = {line_number: [err_obj]} bulk_create_errors(preparse_error, num_errors, flush=True) @@ -379,7 +379,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas if not all_created: logger.error(f"Not all parsed records created for file: {datafile.id}!") - rollback_records(unsaved_records, datafile) + rollback_records(unsaved_records.get_bulk_create_struct(), datafile) bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) return errors diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 962a8efb0..8eb1bf0ea 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -793,8 +793,6 @@ def test_parse_big_s1_file_with_rollback(big_s1_rollback_file, dfs): datafile__id=big_s1_rollback_file.id ) assert search.count() == 0 - assert False - @pytest.fixture def bad_tanf_s1__row_missing_required_field(stt_user, stt): From efff54c200ec5d2e04ace443975441240c934219 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 25 Apr 2024 17:39:35 -0600 Subject: [PATCH 036/126] - Update duplicate error messages - Added logging - Updated tests --- .../tdpservice/parsers/duplicate_manager.py | 9 ++++----- .../tdpservice/parsers/test/test_parse.py | 20 +++++++++++++------ tdrs-backend/tdpservice/parsers/util.py | 13 +++++++++++- 3 files changed, 30 insertions(+), 12 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index a915262c9..d152bc30f 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -100,9 +100,9 @@ def add_case_member(self, record, schema, line, line_number): if line_hash in self.record_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) existing_record_id, existing_record_line_number = self.record_hashes[line_hash] - err_msg = (f"Duplicate record detected for record id {record.id} with record type " + err_msg = (f"Duplicate record detected with record type " f"{record.RecordType} at line {line_number}. Record is a duplicate of the record at " - f"line number {existing_record_line_number}, with record id {existing_record_id}") + f"line number {existing_record_line_number}.") is_exact_dup = True skip_partial = False @@ -116,10 +116,9 @@ def add_case_member(self, record, schema, line, line_number): if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( ErrorLevel.PARTIAL_DUPLICATE) - err_msg = (f"Partial duplicate record detected for record id {record.id} with record type " + err_msg = (f"Partial duplicate record detected with record type " f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " - f"record at line number {self.partial_hashes[partial_hash][1]}, with record id " - f"{self.partial_hashes[partial_hash][0]}") + f"record at line number {self.partial_hashes[partial_hash][1]}.") self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 8eb1bf0ea..da683a539 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -579,9 +579,9 @@ def test_parse_ssp_section1_datafile(ssp_section1_datafile, dfs): ssp_section1_datafile.year = 2019 ssp_section1_datafile.quarter = 'Q1' - expected_m1_record_count = 820 - expected_m2_record_count = 992 - expected_m3_record_count = 1757 + expected_m1_record_count = 818 + expected_m2_record_count = 989 + expected_m3_record_count = 1748 dfs.datafile = ssp_section1_datafile dfs.save() @@ -597,7 +597,15 @@ def test_parse_ssp_section1_datafile(ssp_section1_datafile, dfs): assert err.error_message == 'M1: 3 is not larger or equal to 1 and smaller or equal to 2.' assert err.content_type is not None assert err.object_id is not None - assert parser_errors.count() == 32486 + + dup_errors = parser_errors.filter(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) + assert dup_errors.count() == 2 + assert dup_errors[0].error_message == "Duplicate record detected with record type M3 at line 453. " + \ + "Record is a duplicate of the record at line number 452." + assert dup_errors[1].error_message == "Duplicate record detected with record type M3 at line 3273. " + \ + "Record is a duplicate of the record at line number 3272." + + assert parser_errors.count() == 32488 assert SSP_M1.objects.count() == expected_m1_record_count assert SSP_M2.objects.count() == expected_m2_record_count @@ -1019,8 +1027,8 @@ def test_parse_tanf_section2_file(tanf_section2_file, dfs): parse.parse_datafile(tanf_section2_file, dfs) - assert TANF_T4.objects.all().count() == 223 - assert TANF_T5.objects.all().count() == 605 + assert TANF_T4.objects.all().count() == 216 + assert TANF_T5.objects.all().count() == 588 parser_errors = ParserError.objects.filter(file=tanf_section2_file) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 3586f8263..eef19be99 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -194,6 +194,10 @@ def add_record(self, record_doc_pair): else: hash_val = hash(record.RecordType + rpt_month_year) + if hash_val in self.cases_already_removed: + logger.info("Record's case has already been removed due to category four errors. Not adding record with " + f"info: ({record.RecordType}, {record.CASE_NUMBER}, {rpt_month_year})") + if hash_val is not None and hash_val not in self.cases_already_removed: hashed_case = self.hash_sorted_cases.get(hash_val, {}) records = hashed_case.get(document, []) @@ -223,6 +227,13 @@ def remove_case_due_to_errors(self, should_remove, hash): return True if hash in self.hash_sorted_cases: self.cases_already_removed.add(hash) - self.hash_sorted_cases.pop(hash) + removed = self.hash_sorted_cases.pop(hash) + case_ids = list() + # TODO: Can we do this without nested loops? + for l in removed.values(): + for record in l: + case_ids.append((record.RecordType, record.CASE_NUMBER, record.RPT_MONTH_YEAR)) + logger.info("Case consistency errors generated, removing case from in memory cache. " + f"Record(s) info: {case_ids}.") return True return False From 3388709f45960cd03b4332cd487548f00bc986b2 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 08:09:30 -0600 Subject: [PATCH 037/126] - functionized dup manager a bit - updated validator to query errors from dup manager - added test for s1 duplicate detection --- .../parsers/case_consistency_validator.py | 5 +- .../tdpservice/parsers/duplicate_manager.py | 43 ++++++---- .../parsers/test/test_case_consistency.py | 80 ++++++++++++++++++- 3 files changed, 107 insertions(+), 21 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 97862d7f6..3fc47bf04 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -28,7 +28,7 @@ def __init__(self, header, stt_type, generate_error): self.program_type = header["program_type"] self.has_validated = False self.generate_error = generate_error - self.generated_errors = [] + self.generated_errors = list() self.total_cases_cached = 0 self.total_cases_validated = 0 self.stt_type = stt_type @@ -52,9 +52,12 @@ def __generate_and_add_error(self, schema, record, field, msg): def clear_errors(self): """Reset generated errors.""" self.generated_errors = [] + self.duplicate_manager.clear_errors() def get_generated_errors(self): """Return all errors generated for the current validated case.""" + dup_errors = self.duplicate_manager.get_generated_errors() + self.generated_errors.extend(dup_errors) return self.generated_errors def num_generated_errors(self): diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index d152bc30f..f335b61fc 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -77,6 +77,27 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p self.manager_error_dict.setdefault(self.my_hash, []).append(error) self.num_errors = len(self.manager_error_dict[self.my_hash]) + def __get_partial_hash(self, record, skip_partial): + partial_hash = None + if skip_partial: + return partial_hash + if record.RecordType in {"T1", "T4"}: + partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) + elif record.RecordType in {"T2", "T3", "T5"}: + partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) + return partial_hash + + def __should_skip_partial(self, record): + skip_partial = False + if record.RecordType == "T2": + skip_partial = record.FAMILY_AFFILIATION in {3, 5} + if record.RecordType == "T3": + skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} + if record.RecordType == "T5": + skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} + return skip_partial + def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed.""" # TODO: Need to add support for T6 and T7 detection. @@ -84,19 +105,12 @@ def add_case_member(self, record, schema, line, line_number): if self.current_line_number is None or self.current_line_number != line_number: self.current_line_number = line_number self.record_ids.setdefault(schema.document, []).append(record.id) - line_hash = hash(line) - partial_hash = None - if record.RecordType in {"T1", "T4"}: - partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) - elif record.RecordType in {"T2", "T3", "T5"}: - partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + - str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) - is_exact_dup = False err_msg = None has_precedence = False is_new_max_precedence = False + line_hash = hash(line) if line_hash in self.record_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) existing_record_id, existing_record_line_number = self.record_hashes[line_hash] @@ -105,14 +119,8 @@ def add_case_member(self, record, schema, line, line_number): f"line number {existing_record_line_number}.") is_exact_dup = True - skip_partial = False - if record.RecordType == "T2": - skip_partial = record.FAMILY_AFFILIATION in {3, 5} - if record.RecordType == "T3": - skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} - if record.RecordType == "T5": - skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} - + skip_partial = self.__should_skip_partial(record) + partial_hash = self.__get_partial_hash(record, skip_partial) if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( ErrorLevel.PARTIAL_DUPLICATE) @@ -151,6 +159,9 @@ def get_generated_errors(self): generated_errors.extend(errors) return generated_errors + def clear_errors(self): + self.generated_errors = dict() + def get_records_to_remove(self): """Return dictionary of document:[errors].""" records_to_remove = dict() diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index debb39356..8610e57e0 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -191,7 +191,6 @@ def test_section1_records_are_related_validator_pass( ] for t3 in t3s: case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) - line_number += 1 num_errors = case_consistency_validator.validate() @@ -328,7 +327,6 @@ def test_section1_records_are_related_validator_fail_no_t1( ] for t3 in t3s: case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) - line_number += 1 num_errors = case_consistency_validator.validate() @@ -439,7 +437,6 @@ def test_section1_records_are_related_validator_fail_multiple_t1s( ] for t3 in t3s: case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) - line_number += 1 num_errors = case_consistency_validator.validate() @@ -531,7 +528,6 @@ def test_section1_records_are_related_validator_fail_no_family_affiliation( ] for t3 in t3s: case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) - line_number += 1 num_errors = case_consistency_validator.validate() @@ -1414,3 +1410,79 @@ def test_section2_aabd_ssi_validator_fail_state_ssi(self, small_correct_file, he assert errors[0].error_message == ( f'{t5_model_name} People in states must have a valid value.' ) + + @pytest.mark.parametrize("header,T1Stuff,T2Stuff,T3Stuff,stt_type", [ + ( + {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT1Factory, schema_defs.tanf.t1.schemas[0], 'T1'), + (factories.TanfT2Factory, schema_defs.tanf.t2.schemas[0], 'T2'), + (factories.TanfT3Factory, schema_defs.tanf.t3.schemas[0], 'T3'), + STT.EntityType.STATE, + ), + ]) + @pytest.mark.django_db + def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T2Stuff, T3Stuff, stt_type): + (T1Factory, t1_schema, t1_model_name) = T1Stuff + (T2Factory, t2_schema, t2_model_name) = T2Stuff + (T3Factory, t3_schema, t3_model_name) = T3Stuff + + case_consistency_validator = CaseConsistencyValidator( + header, + stt_type, + util.make_generate_parser_error(small_correct_file, None) + ) + + t1 = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + line_number = 1 + case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) + line_number += 1 + + t2 =T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) + line_number += 1 + + # T3's or any record on the same line as an existing record do not get checked as a duplicate even if they are. + t3s = [ + T3Factory.create( + RecordType="T3", + RPT_MONTH_YEAR=202010, + CASE_NUMBER='123', + SSN="111111111", + DATE_OF_BIRTH="22222222" + ), + T3Factory.create( + RecordType="T3", + RPT_MONTH_YEAR=202010, + CASE_NUMBER='123', + SSN="111111111", + DATE_OF_BIRTH="22222222" + ), + ] + + for t3 in t3s: + case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) + + t1_dup = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + line_number += 1 + has_errors, _ = case_consistency_validator.add_record(t1_dup, t1_schema, str(t1), line_number, False) + line_number += 1 + assert has_errors + + t2_dup = T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + has_errors, _ = case_consistency_validator.add_record(t2_dup, t2_schema, str(t2), line_number, False) + line_number += 1 + assert has_errors + + t3_dup = T3Factory.create(RecordType="T3", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + has_errors, _ = case_consistency_validator.add_record(t3_dup, t3_schema, str(t3s[0]), line_number, False) + line_number += 1 + assert has_errors + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 3 + for i, error in enumerate(errors): + expected_msg = f"Duplicate record detected with record type T{i + 1} at line {i + 4}. Record is a duplicate of the record at line number {i + 1}." + assert error.error_message == expected_msg From 30645b1bd4b061f502782dc80bcbea5e44b0917a Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 08:42:26 -0600 Subject: [PATCH 038/126] - Add test for S1 partial duplicate detection --- .../parsers/case_consistency_validator.py | 5 +- .../parsers/test/test_case_consistency.py | 90 ++++++++++++++++++- 2 files changed, 92 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 3fc47bf04..8f322fca9 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -49,10 +49,11 @@ def __generate_and_add_error(self, schema, record, field, msg): ) self.generated_errors.append(err) - def clear_errors(self): + def clear_errors(self, clear_dup=True): """Reset generated errors.""" self.generated_errors = [] - self.duplicate_manager.clear_errors() + if clear_dup: + self.duplicate_manager.clear_errors() def get_generated_errors(self): """Return all errors generated for the current validated case.""" diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 8610e57e0..b28578c30 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1442,7 +1442,6 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) line_number += 1 - # T3's or any record on the same line as an existing record do not get checked as a duplicate even if they are. t3s = [ T3Factory.create( RecordType="T3", @@ -1486,3 +1485,92 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T for i, error in enumerate(errors): expected_msg = f"Duplicate record detected with record type T{i + 1} at line {i + 4}. Record is a duplicate of the record at line number {i + 1}." assert error.error_message == expected_msg + + @pytest.mark.parametrize("header,T1Stuff,T2Stuff,T3Stuff,stt_type", [ + ( + {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT1Factory, schema_defs.tanf.t1.schemas[0], 'T1'), + (factories.TanfT2Factory, schema_defs.tanf.t2.schemas[0], 'T2'), + (factories.TanfT3Factory, schema_defs.tanf.t3.schemas[0], 'T3'), + STT.EntityType.STATE, + ), + ]) + @pytest.mark.django_db + def test_section1_partial_duplicate_records_and_precedence(self, small_correct_file, header, T1Stuff, T2Stuff, T3Stuff, stt_type): + (T1Factory, t1_schema, t1_model_name) = T1Stuff + (T2Factory, t2_schema, t2_model_name) = T2Stuff + (T3Factory, t3_schema, t3_model_name) = T3Stuff + + case_consistency_validator = CaseConsistencyValidator( + header, + stt_type, + util.make_generate_parser_error(small_correct_file, None) + ) + + t1 = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + line_number = 1 + case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) + line_number += 1 + + t2 =T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) + line_number += 1 + + t3s = [ + T3Factory.create( + RecordType="T3", + RPT_MONTH_YEAR=202010, + CASE_NUMBER='123', + SSN="111111111", + DATE_OF_BIRTH="22222222" + ), + T3Factory.create( + RecordType="T3", + RPT_MONTH_YEAR=202010, + CASE_NUMBER='123', + SSN="111111111", + DATE_OF_BIRTH="22222222" + ), + ] + + for t3 in t3s: + case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) + + # Introduce partial dups + t1_dup = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + line_number += 1 + has_errors, _ = case_consistency_validator.add_record(t1_dup, t1_schema, str(t1_dup), line_number, False) + line_number += 1 + assert has_errors + + t2_dup = T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + has_errors, _ = case_consistency_validator.add_record(t2_dup, t2_schema, str(t2_dup), line_number, False) + line_number += 1 + assert has_errors + + t3_dup = T3Factory.create(RecordType="T3", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + has_errors, _ = case_consistency_validator.add_record(t3_dup, t3_schema, str(t3_dup), line_number, False) + line_number += 1 + assert has_errors + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 3 + for i, error in enumerate(errors): + expected_msg = f"Partial duplicate record detected with record type T{i + 1} at line {i + 4}. Record is a partial duplicate of the record at line number {i + 1}." + assert error.error_message == expected_msg + + # We don't want to clear dup errors to show that when our errors change precedence, errors with lower precedence + # are automatically replaced with the errors of higher precedence. + case_consistency_validator.clear_errors(clear_dup=False) + + t1_complete_dup = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + has_errors, _ = case_consistency_validator.add_record(t1_complete_dup, t1_schema, str(t1), line_number, False) + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 1 + for i, error in enumerate(errors): + expected_msg = f"Duplicate record detected with record type T{i + 1} at line 7. Record is a duplicate of the record at line number {i + 1}." + assert error.error_message == expected_msg From e55e88c6b3dd1311e6878d9c82d74b51ddf0adf0 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 08:47:36 -0600 Subject: [PATCH 039/126] - fix lint --- .../tdpservice/parsers/duplicate_manager.py | 1 + .../parsers/test/test_case_consistency.py | 22 ++++++++++++------- tdrs-backend/tdpservice/parsers/util.py | 4 ++-- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index f335b61fc..93d457b51 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -160,6 +160,7 @@ def get_generated_errors(self): return generated_errors def clear_errors(self): + """Clear all generated errors.""" self.generated_errors = dict() def get_records_to_remove(self): diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index b28578c30..401507f14 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1422,6 +1422,7 @@ def test_section2_aabd_ssi_validator_fail_state_ssi(self, small_correct_file, he ]) @pytest.mark.django_db def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T2Stuff, T3Stuff, stt_type): + """Test section 1 exact duplicate records.""" (T1Factory, t1_schema, t1_model_name) = T1Stuff (T2Factory, t2_schema, t2_model_name) = T2Stuff (T3Factory, t3_schema, t3_model_name) = T3Stuff @@ -1437,8 +1438,8 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) line_number += 1 - t2 =T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, - SSN="111111111", DATE_OF_BIRTH="22222222") + t2 = T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) line_number += 1 @@ -1483,7 +1484,8 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T errors = case_consistency_validator.get_generated_errors() assert len(errors) == 3 for i, error in enumerate(errors): - expected_msg = f"Duplicate record detected with record type T{i + 1} at line {i + 4}. Record is a duplicate of the record at line number {i + 1}." + expected_msg = f"Duplicate record detected with record type T{i + 1} at line {i + 4}. Record is a " + \ + f"duplicate of the record at line number {i + 1}." assert error.error_message == expected_msg @pytest.mark.parametrize("header,T1Stuff,T2Stuff,T3Stuff,stt_type", [ @@ -1496,7 +1498,9 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T ), ]) @pytest.mark.django_db - def test_section1_partial_duplicate_records_and_precedence(self, small_correct_file, header, T1Stuff, T2Stuff, T3Stuff, stt_type): + def test_section1_partial_duplicate_records_and_precedence(self, small_correct_file, header, T1Stuff, T2Stuff, + T3Stuff, stt_type): + """Test section 1 partial duplicate records.""" (T1Factory, t1_schema, t1_model_name) = T1Stuff (T2Factory, t2_schema, t2_model_name) = T2Stuff (T3Factory, t3_schema, t3_model_name) = T3Stuff @@ -1512,8 +1516,8 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) line_number += 1 - t2 =T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, - SSN="111111111", DATE_OF_BIRTH="22222222") + t2 = T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) line_number += 1 @@ -1559,7 +1563,8 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f errors = case_consistency_validator.get_generated_errors() assert len(errors) == 3 for i, error in enumerate(errors): - expected_msg = f"Partial duplicate record detected with record type T{i + 1} at line {i + 4}. Record is a partial duplicate of the record at line number {i + 1}." + expected_msg = f"Partial duplicate record detected with record type T{i + 1} at line {i + 4}. " + \ + f"Record is a partial duplicate of the record at line number {i + 1}." assert error.error_message == expected_msg # We don't want to clear dup errors to show that when our errors change precedence, errors with lower precedence @@ -1572,5 +1577,6 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f errors = case_consistency_validator.get_generated_errors() assert len(errors) == 1 for i, error in enumerate(errors): - expected_msg = f"Duplicate record detected with record type T{i + 1} at line 7. Record is a duplicate of the record at line number {i + 1}." + expected_msg = f"Duplicate record detected with record type T{i + 1} at line 7. Record is a " + \ + f"duplicate of the record at line number {i + 1}." assert error.error_message == expected_msg diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index eef19be99..e04e7c589 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -230,8 +230,8 @@ def remove_case_due_to_errors(self, should_remove, hash): removed = self.hash_sorted_cases.pop(hash) case_ids = list() # TODO: Can we do this without nested loops? - for l in removed.values(): - for record in l: + for records in removed.values(): + for record in records: case_ids.append((record.RecordType, record.CASE_NUMBER, record.RPT_MONTH_YEAR)) logger.info("Case consistency errors generated, removing case from in memory cache. " f"Record(s) info: {case_ids}.") From 785c68efcda0d6493dcff206916442703e91ce8c Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 09:04:13 -0600 Subject: [PATCH 040/126] - Add section 2 tests --- .../parsers/test/test_case_consistency.py | 104 ++++++++++++++++++ 1 file changed, 104 insertions(+) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 401507f14..80d14760d 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1580,3 +1580,107 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f expected_msg = f"Duplicate record detected with record type T{i + 1} at line 7. Record is a " + \ f"duplicate of the record at line number {i + 1}." assert error.error_message == expected_msg + + @pytest.mark.parametrize("header,T4Stuff,T5Stuff", [ + ( + {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT4Factory, schema_defs.tanf.t4.schemas[0], 'T4'), + (factories.TanfT5Factory, schema_defs.tanf.t5.schemas[0], 'T5'), + ), + ]) + @pytest.mark.django_db + def test_section2_duplicate_records(self, small_correct_file, header, T4Stuff, T5Stuff): + """Test records are related validator section 2 success case.""" + (T4Factory, t4_schema, t4_model_name) = T4Stuff + (T5Factory, t5_schema, t5_model_name) = T5Stuff + + case_consistency_validator = CaseConsistencyValidator( + header, + STT.EntityType.STATE, + util.make_generate_parser_error(small_correct_file, None) + ) + + line_number = 1 + t4 = T4Factory.create(RecordType="T4", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 + + t5 = T5Factory.create(RecordType="T5", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 + + t4_dup = T4Factory.create(RecordType="T4", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + case_consistency_validator.add_record(t4_dup, t4_schema, str(t4), line_number, False) + line_number += 1 + + t5_dup = T5Factory.create(RecordType="T5", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + case_consistency_validator.add_record(t5_dup, t5_schema, str(t5), line_number, False) + line_number += 1 + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 2 + for i, error in enumerate(errors): + expected_msg = f"Duplicate record detected with record type T{i + 4} at line {i + 3}. Record is a " + \ + f"duplicate of the record at line number {i + 1}." + assert error.error_message == expected_msg + + @pytest.mark.parametrize("header,T4Stuff,T5Stuff", [ + ( + {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT4Factory, schema_defs.tanf.t4.schemas[0], 'T4'), + (factories.TanfT5Factory, schema_defs.tanf.t5.schemas[0], 'T5'), + ), + ]) + @pytest.mark.django_db + def test_section2_partial_duplicate_records_and_precedence(self, small_correct_file, header, T4Stuff, T5Stuff): + """Test records are related validator section 2 success case.""" + (T4Factory, t4_schema, t4_model_name) = T4Stuff + (T5Factory, t5_schema, t5_model_name) = T5Stuff + + case_consistency_validator = CaseConsistencyValidator( + header, + STT.EntityType.STATE, + util.make_generate_parser_error(small_correct_file, None) + ) + + line_number = 1 + t4 = T4Factory.create(RecordType="T4", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) + line_number += 1 + + t5 = T5Factory.create(RecordType="T5", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) + line_number += 1 + + t4_dup = T4Factory.create(RecordType="T4", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + case_consistency_validator.add_record(t4_dup, t4_schema, str(t4_dup), line_number, False) + line_number += 1 + + t5_dup = T5Factory.create(RecordType="T5", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, + SSN="111111111", DATE_OF_BIRTH="22222222") + case_consistency_validator.add_record(t5_dup, t5_schema, str(t5_dup), line_number, False) + line_number += 1 + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 2 + for i, error in enumerate(errors): + expected_msg = f"Partial duplicate record detected with record type T{i + 4} at line {i + 3}. " + \ + f"Record is a partial duplicate of the record at line number {i + 1}." + assert error.error_message == expected_msg + + # We don't want to clear dup errors to show that when our errors change precedence, errors with lower precedence + # are automatically replaced with the errors of higher precedence. + case_consistency_validator.clear_errors(clear_dup=False) + + t4_complete_dup = T4Factory.create(RecordType="T4", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + has_errors, _ = case_consistency_validator.add_record(t4_complete_dup, t4_schema, str(t4), line_number, False) + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 1 + for i, error in enumerate(errors): + expected_msg = f"Duplicate record detected with record type T{i + 4} at line 5. Record is a " + \ + f"duplicate of the record at line number {i + 1}." + assert error.error_message == expected_msg From d19de288718f99cc7abb75f835857a5f56a84573 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 09:29:17 -0600 Subject: [PATCH 041/126] - Fix reference error --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 93d457b51..d9481310b 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -161,7 +161,9 @@ def get_generated_errors(self): def clear_errors(self): """Clear all generated errors.""" - self.generated_errors = dict() + # We must call .clear() here instead of re-assigning a new dict() because the hashtainers have a reference to + # this dictionary. Reassigning the dictionary means the hashtainers lose their reference. + self.generated_errors.clear() def get_records_to_remove(self): """Return dictionary of document:[errors].""" From 78fbee713e849c4294bd107bfdb343f9671ab062 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 09:40:25 -0600 Subject: [PATCH 042/126] - order by id --- tdrs-backend/tdpservice/parsers/test/test_parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index da683a539..a4b6bbc7c 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -598,7 +598,7 @@ def test_parse_ssp_section1_datafile(ssp_section1_datafile, dfs): assert err.content_type is not None assert err.object_id is not None - dup_errors = parser_errors.filter(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) + dup_errors = parser_errors.filter(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("id") assert dup_errors.count() == 2 assert dup_errors[0].error_message == "Duplicate record detected with record type M3 at line 453. " + \ "Record is a duplicate of the record at line number 452." From 0676a4b57136aad5ee1176c915734385a2be40c2 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 11:41:21 -0600 Subject: [PATCH 043/126] - parametrizing batch size - initial integration tests --- tdrs-backend/docker-compose.yml | 1 + tdrs-backend/tdpservice/parsers/parse.py | 3 +- .../tdpservice/parsers/test/test_parse.py | 46 +++++++++++++++++++ tdrs-backend/tdpservice/settings/common.py | 1 + 4 files changed, 50 insertions(+), 1 deletion(-) diff --git a/tdrs-backend/docker-compose.yml b/tdrs-backend/docker-compose.yml index 1ee83e620..5af24ba14 100644 --- a/tdrs-backend/docker-compose.yml +++ b/tdrs-backend/docker-compose.yml @@ -104,6 +104,7 @@ services: - GENERATE_TRAILER_ERRORS=True - BYPASS_KIBANA_AUTH - IGNORE_DUPLICATE_ERROR_PRECEDENCE + - BULK_CREATE_BATCH_SIZE volumes: - .:/tdpapp image: tdp diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index f99b23719..1cd399c19 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -102,8 +102,9 @@ def parse_datafile(datafile, dfs): return errors -def bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs, batch_size=10000, flush=False): +def bulk_create_records(unsaved_records, line_number, header_count, datafile, dfs, flush=False): """Bulk create passed in records.""" + batch_size = settings.BULK_CREATE_BATCH_SIZE if (line_number % batch_size == 0 and header_count > 0) or flush: logger.debug("Bulk creating records.") try: diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index a4b6bbc7c..d03dfd3e4 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1745,3 +1745,49 @@ def test_parse_tribal_section_4_bad_quarter(tribal_section_4_bad_quarter, dfs): "representing the Calendar Year and Quarter formatted as YYYYQ" Tribal_TANF_T7.objects.count() == 0 + + + + + +@pytest.fixture +def s1_exact_dup_file(): + """Fixture for a section 1 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + file__name='s1_exact_duplicate.txt', + file__section='Active Case Data', + file__data=(b'HEADER20204A06 TAN1 D\n' + b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000000000000000222222000000002229012 \n' + b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000000000000000222222000000002229012 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.mark.parametrize("file, batch_size", [ + # ('s1_exact_dup_file', 10000), + ('s1_exact_dup_file', 1), +]) +@pytest.mark.django_db() +def test_parse_duplicate(file, batch_size, dfs, request): + """Test handling invalid quarter value that raises a ValueError exception.""" + df = request.getfixturevalue(file) + dfs.datafile = df + + settings.BULK_CREATE_BATCH_SIZE = batch_size + + parse.parse_datafile(df, dfs) + parser_errors = ParserError.objects.filter(file=df, + error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') + for e in parser_errors: + assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY + assert parser_errors.count() == 4 + + dup_error = parser_errors.first() + assert dup_error.error_message == "Duplicate record detected with record type T1 at line 3. " + \ + "Record is a duplicate of the record at line number 2." + + TANF_T1.objects.count() == 0 + assert False diff --git a/tdrs-backend/tdpservice/settings/common.py b/tdrs-backend/tdpservice/settings/common.py index 6e9d2f7ab..46fa63736 100644 --- a/tdrs-backend/tdpservice/settings/common.py +++ b/tdrs-backend/tdpservice/settings/common.py @@ -481,3 +481,4 @@ class Common(Configuration): GENERATE_TRAILER_ERRORS = os.getenv("GENERATE_TRAILER_ERRORS", False) IGNORE_DUPLICATE_ERROR_PRECEDENCE = os.getenv("IGNORE_DUPLICATE_ERROR_PRECEDENCE", False) + BULK_CREATE_BATCH_SIZE = os.getenv("BULK_CREATE_BATCH_SIZE", 10000) From 2e68b32fffa1df53a18a2eabbfbcd05a4abc704d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 12:02:27 -0600 Subject: [PATCH 044/126] - move creation logic in parse.py - add container to monitor what cases have serialized records - add test for in memory and DB based record removal with dupes detected --- tdrs-backend/tdpservice/parsers/parse.py | 12 +++++------- tdrs-backend/tdpservice/parsers/test/test_parse.py | 13 ++++++------- tdrs-backend/tdpservice/parsers/util.py | 4 +++- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 1cd399c19..ad1d58be8 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -312,13 +312,6 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas prev_sum = header_count + trailer_count continue - # We need to execute the bulk_create prior to the case_consistency_validator.add_record call to manage record - # removal in an easier manner. - all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, - datafile, dfs) - unsaved_records.clear(all_created) - unsaved_parser_errors, num_errors = bulk_create_errors(unsaved_parser_errors, num_errors) - schema_manager = get_schema_manager(line, section, program_type) records = manager_parse_line(line, schema_manager, generate_error, datafile, is_encrypted) @@ -353,6 +346,11 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas case_consistency_validator.get_generated_errors() case_consistency_validator.clear_errors() + all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, + datafile, dfs) + unsaved_records.clear(all_created) + unsaved_parser_errors, num_errors = bulk_create_errors(unsaved_parser_errors, num_errors) + if header_count == 0: logger.info(f"Preparser Error -> No headers found for file: {datafile.id}.") errors.update({'document': ['No headers found.']}) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index d03dfd3e4..57d3be20b 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1767,19 +1767,19 @@ def s1_exact_dup_file(): return parsing_file @pytest.mark.parametrize("file, batch_size", [ - # ('s1_exact_dup_file', 10000), - ('s1_exact_dup_file', 1), + ('s1_exact_dup_file', 10000), + ('s1_exact_dup_file', 1), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() def test_parse_duplicate(file, batch_size, dfs, request): """Test handling invalid quarter value that raises a ValueError exception.""" - df = request.getfixturevalue(file) - dfs.datafile = df + datafile = request.getfixturevalue(file) + dfs.datafile = datafile settings.BULK_CREATE_BATCH_SIZE = batch_size - parse.parse_datafile(df, dfs) - parser_errors = ParserError.objects.filter(file=df, + parse.parse_datafile(datafile, dfs) + parser_errors = ParserError.objects.filter(file=datafile, error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') for e in parser_errors: assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY @@ -1790,4 +1790,3 @@ def test_parse_duplicate(file, batch_size, dfs, request): "Record is a duplicate of the record at line number 2." TANF_T1.objects.count() == 0 - assert False diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index e04e7c589..354aa9823 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -183,6 +183,7 @@ def __init__(self, section): self.records_are_s1_or_s2 = section in {'A', 'C'} self.hash_sorted_cases = dict() self.cases_already_removed = set() + self.serialized_cases = set() def add_record(self, record_doc_pair): """Add a record_doc_pair to the sorted object if the case hasn't been removed already.""" @@ -218,6 +219,7 @@ def get_bulk_create_struct(self): def clear(self, all_created): """Reset sorted structs if all records were created.""" if all_created: + self.serialized_cases.update(set(self.hash_sorted_cases.keys())) self.hash_sorted_cases = dict() def remove_case_due_to_errors(self, should_remove, hash): @@ -235,5 +237,5 @@ def remove_case_due_to_errors(self, should_remove, hash): case_ids.append((record.RecordType, record.CASE_NUMBER, record.RPT_MONTH_YEAR)) logger.info("Case consistency errors generated, removing case from in memory cache. " f"Record(s) info: {case_ids}.") - return True + return True and hash not in self.serialized_cases return False From 2db1222330c1d4c5e6bb1b6cd2b2ebb61162f83d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 12:26:57 -0600 Subject: [PATCH 045/126] - added section 2 duplicate tests --- .../tdpservice/parsers/test/test_parse.py | 31 +++++++++++++++---- 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 57d3be20b..2424d2efd 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1766,12 +1766,31 @@ def s1_exact_dup_file(): ) return parsing_file -@pytest.mark.parametrize("file, batch_size", [ - ('s1_exact_dup_file', 10000), - ('s1_exact_dup_file', 1), # This forces an in memory and database deletion of records. +@pytest.fixture +def s2_exact_dup_file(): + """Fixture for a section 2 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + section = "Closed Case Data", + file__name='s2_exact_duplicate.txt', + file__section='Closed Case Data', + file__data=(b'HEADER20204C06 TAN1ED\n' + b'T42020101111111115825301400141123113 \n' + b'T42020101111111115825301400141123113 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.mark.parametrize("file, batch_size, model, record_type", [ + ('s1_exact_dup_file', 10000, TANF_T1, "T1"), + ('s1_exact_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. + ('s2_exact_dup_file', 10000, TANF_T4, "T4"), + ('s2_exact_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() -def test_parse_duplicate(file, batch_size, dfs, request): +def test_parse_duplicate(file, batch_size, model, record_type, dfs, request): """Test handling invalid quarter value that raises a ValueError exception.""" datafile = request.getfixturevalue(file) dfs.datafile = datafile @@ -1786,7 +1805,7 @@ def test_parse_duplicate(file, batch_size, dfs, request): assert parser_errors.count() == 4 dup_error = parser_errors.first() - assert dup_error.error_message == "Duplicate record detected with record type T1 at line 3. " + \ + assert dup_error.error_message == f"Duplicate record detected with record type {record_type} at line 3. " + \ "Record is a duplicate of the record at line number 2." - TANF_T1.objects.count() == 0 + model.objects.count() == 0 From 7689a6adb3ac0f10bdbf2e2935b111fd5a76d58d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 12:34:48 -0600 Subject: [PATCH 046/126] - Test for partial duplicates - test doesnt behave as I would expect --- .../tdpservice/parsers/test/test_parse.py | 68 +++++++++++++++++-- 1 file changed, 64 insertions(+), 4 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 2424d2efd..886741288 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1746,10 +1746,6 @@ def test_parse_tribal_section_4_bad_quarter(tribal_section_4_bad_quarter, dfs): Tribal_TANF_T7.objects.count() == 0 - - - - @pytest.fixture def s1_exact_dup_file(): """Fixture for a section 1 file containing an exact duplicate record.""" @@ -1809,3 +1805,67 @@ def test_parse_duplicate(file, batch_size, model, record_type, dfs, request): "Record is a duplicate of the record at line number 2." model.objects.count() == 0 + + + + + +@pytest.fixture +def s1_partial_dup_file(): + """Fixture for a section 1 file containing an partial duplicate record.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + file__name='s1_partial_duplicate.txt', + file__section='Active Case Data', + file__data=(b'HEADER20204A06 TAN1 D\n' + b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000000000000000222222000000002229012 \n' + b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000000000000000222222000000002229013 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def s2_partial_dup_file(): + """Fixture for a section 2 file containing an partial duplicate record.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + section = "Closed Case Data", + file__name='s2_partial_duplicate.txt', + file__section='Closed Case Data', + file__data=(b'HEADER20204C06 TAN1ED\n' + b'T42020101111111115825301400141123113 \n' + b'T42020101111111115825301400141123114 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.mark.parametrize("file, batch_size, model, record_type", [ + ('s1_partial_dup_file', 10000, TANF_T1, "T1"), + ('s1_partial_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. + ('s2_partial_dup_file', 10000, TANF_T4, "T4"), + ('s2_partial_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. +]) +@pytest.mark.django_db() +def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, request): + """Test handling invalid quarter value that raises a ValueError exception.""" + datafile = request.getfixturevalue(file) + dfs.datafile = datafile + + settings.BULK_CREATE_BATCH_SIZE = batch_size + + parse.parse_datafile(datafile, dfs) + parser_errors = ParserError.objects.filter(file=datafile, + error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') + for e in parser_errors: + assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY + assert parser_errors.count() == 1 # TODO: Why doesnt this generate 4 errors per run again? + + dup_error = parser_errors.first() + assert dup_error.error_message == f"Partial duplicate record detected with record type {record_type} " + \ + "at line 3. Record is a partial duplicate of the record at line number 2." + + model.objects.count() == 0 From 697b99de50ac2ad8da8a473ee28c212460384d85 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 26 Apr 2024 12:50:10 -0600 Subject: [PATCH 047/126] - fix lint --- .../tdpservice/parsers/test/test_parse.py | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 886741288..6d08336bc 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1755,8 +1755,10 @@ def s1_exact_dup_file(): file__name='s1_exact_duplicate.txt', file__section='Active Case Data', file__data=(b'HEADER20204A06 TAN1 D\n' - b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000000000000000222222000000002229012 \n' - b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000000000000000222222000000002229012 \n' + b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000' + + b'000000000000222222000000002229012 \n' + b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000' + + b'000000000000222222000000002229012 \n' b'TRAILER0000001 ' ) ) @@ -1768,7 +1770,7 @@ def s2_exact_dup_file(): parsing_file = ParsingFileFactory( year=2021, quarter='Q1', - section = "Closed Case Data", + section="Closed Case Data", file__name='s2_exact_duplicate.txt', file__section='Closed Case Data', file__data=(b'HEADER20204C06 TAN1ED\n' @@ -1781,9 +1783,9 @@ def s2_exact_dup_file(): @pytest.mark.parametrize("file, batch_size, model, record_type", [ ('s1_exact_dup_file', 10000, TANF_T1, "T1"), - ('s1_exact_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. + ('s1_exact_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. ('s2_exact_dup_file', 10000, TANF_T4, "T4"), - ('s2_exact_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. + ('s2_exact_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() def test_parse_duplicate(file, batch_size, model, record_type, dfs, request): @@ -1806,10 +1808,6 @@ def test_parse_duplicate(file, batch_size, model, record_type, dfs, request): model.objects.count() == 0 - - - - @pytest.fixture def s1_partial_dup_file(): """Fixture for a section 1 file containing an partial duplicate record.""" @@ -1819,8 +1817,10 @@ def s1_partial_dup_file(): file__name='s1_partial_duplicate.txt', file__section='Active Case Data', file__data=(b'HEADER20204A06 TAN1 D\n' - b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000000000000000222222000000002229012 \n' - b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000000000000000222222000000002229013 \n' + b'T120201011111111112230034033611102121200003000000000000087300100000000000000' + + b'00000000000000000000222222000000002229012 \n' + b'T1202010111111111122300340336111021212000030000000000000873001000000000000000' + + b'0000000000000000000222222000000002229013 \n' b'TRAILER0000001 ' ) ) @@ -1832,7 +1832,7 @@ def s2_partial_dup_file(): parsing_file = ParsingFileFactory( year=2021, quarter='Q1', - section = "Closed Case Data", + section="Closed Case Data", file__name='s2_partial_duplicate.txt', file__section='Closed Case Data', file__data=(b'HEADER20204C06 TAN1ED\n' @@ -1845,9 +1845,9 @@ def s2_partial_dup_file(): @pytest.mark.parametrize("file, batch_size, model, record_type", [ ('s1_partial_dup_file', 10000, TANF_T1, "T1"), - ('s1_partial_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. + ('s1_partial_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. ('s2_partial_dup_file', 10000, TANF_T4, "T4"), - ('s2_partial_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. + ('s2_partial_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, request): @@ -1862,7 +1862,7 @@ def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, requ error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') for e in parser_errors: assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert parser_errors.count() == 1 # TODO: Why doesnt this generate 4 errors per run again? + assert parser_errors.count() == 1 # TODO: Why doesnt this generate 4 errors per run again? dup_error = parser_errors.first() assert dup_error.error_message == f"Partial duplicate record detected with record type {record_type} " + \ From 4fdeb662064169162a4df05c6679fe0023adb6ff Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Sat, 27 Apr 2024 09:55:54 -0600 Subject: [PATCH 048/126] - Fixed logic error where last case in file wouldnt be removed if it has cat4 errors --- .../tdpservice/parsers/duplicate_manager.py | 11 +++-- tdrs-backend/tdpservice/parsers/parse.py | 10 ++-- .../tdpservice/parsers/test/test_parse.py | 49 ++++++++----------- 3 files changed, 33 insertions(+), 37 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index d9481310b..d470921c1 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -176,8 +176,9 @@ def get_records_to_remove(self): def update_removed(self, hash_val, was_removed): """Notify hashtainers of DB removal.""" - hashtainer = self.hashtainers.get(hash_val) - if was_removed: - hashtainer.set_should_remove_from_db(False) - else: - hashtainer.set_should_remove_from_db(True) + hashtainer = self.hashtainers.get(hash_val, False) + if hashtainer: + if was_removed: + hashtainer.set_should_remove_from_db(False) + else: + hashtainer.set_should_remove_from_db(True) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index ad1d58be8..3dd068792 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -205,7 +205,8 @@ def rollback_parser_errors(datafile): def validate_case_consistency(case_consistency_validator): """Force category four validation if we have reached the last case in the file.""" if not case_consistency_validator.has_validated: - case_consistency_validator.validate() + return case_consistency_validator.validate() > 0 + return False def generate_trailer_errors(trailer_errors, errors, unsaved_parser_errors, num_errors): """Generate trailer errors if we care to see them.""" @@ -269,6 +270,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # automatically starts back at the begining of the file. file_length = len(rawfile) offset = 0 + hash_val = None for rawline in rawfile: line_number += 1 offset += len(rawline) @@ -367,6 +369,10 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas bulk_create_errors(preparse_error, num_errors, flush=True) return errors + should_remove = validate_case_consistency(case_consistency_validator) + was_removed = unsaved_records.remove_case_due_to_errors(should_remove, hash_val) + case_consistency_validator.update_removed(hash_val, was_removed) + # Only checking "all_created" here because records remained cached if bulk create fails. This is the last chance to # successfully create the records. all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, datafile, @@ -382,8 +388,6 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) return errors - validate_case_consistency(case_consistency_validator) - # TODO: This is duplicate code. Can we extract this to a function? # Add any generated cat4 errors to our error data structure & clear our caches errors list duplicate_errors = case_consistency_validator.duplicate_manager.get_generated_errors() diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 6d08336bc..ef8c580c0 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -57,7 +57,7 @@ def t2_invalid_dob_file(): ) return parsing_file -# TODO: the name of this test doesn't make perfect sense anymore since it will always have errors now. +# TODO: the name of this test doesn't make perfect sense anymore since it will always have errors and no records now. @pytest.mark.django_db def test_parse_small_correct_file(test_datafile, dfs): """Test parsing of small_correct_file.""" @@ -68,36 +68,27 @@ def test_parse_small_correct_file(test_datafile, dfs): parse.parse_datafile(test_datafile, dfs) - errors = ParserError.objects.filter(file=test_datafile) - assert errors.count() == 1 + errors = ParserError.objects.filter(file=test_datafile).order_by('id') + assert errors.count() == 2 assert errors.first().error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY dfs.status = dfs.get_status() - dfs.case_aggregates = aggregates.case_aggregates_by_month( - dfs.datafile, dfs.status) - for month in dfs.case_aggregates['months']: - if month['month'] == 'Oct': - assert month['accepted_without_errors'] == 0 - assert month['accepted_with_errors'] == 1 - else: - assert month['accepted_without_errors'] == 0 - assert month['accepted_with_errors'] == 0 + dfs.case_aggregates = aggregates.case_aggregates_by_month(dfs.datafile, dfs.status) + assert dfs.case_aggregates == {'rejected': 1, + 'months': [ + {'accepted_without_errors': 'N/A', + 'accepted_with_errors': 'N/A', + 'month': 'Oct'}, + {'accepted_without_errors': 'N/A', + 'accepted_with_errors': 'N/A', + 'month': 'Nov'}, + {'accepted_without_errors': 'N/A', + 'accepted_with_errors': 'N/A', + 'month': 'Dec'} + ]} - assert dfs.get_status() == DataFileSummary.Status.ACCEPTED_WITH_ERRORS - assert TANF_T1.objects.count() == 1 - - # spot check - t1 = TANF_T1.objects.all().first() - assert t1.RPT_MONTH_YEAR == 202010 - assert t1.CASE_NUMBER == '11111111112' - assert t1.COUNTY_FIPS_CODE == '230' - assert t1.ZIP_CODE == '40336' - assert t1.FUNDING_STREAM == 1 - assert t1.NBR_FAMILY_MEMBERS == 2 - assert t1.RECEIVES_SUB_CC == 3 - assert t1.CASH_AMOUNT == 873 - assert t1.SANC_REDUCTION_AMT == 0 - assert t1.FAMILY_NEW_CHILD == 2 + assert dfs.get_status() == DataFileSummary.Status.REJECTED + assert TANF_T1.objects.count() == 0 @pytest.mark.django_db @@ -1380,7 +1371,7 @@ def test_rpt_month_year_mismatch(test_header_datafile, dfs): parse.parse_datafile(datafile, dfs) parser_errors = ParserError.objects.filter(file=datafile) - assert parser_errors.count() == 1 + assert parser_errors.count() == 2 assert parser_errors.first().error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY datafile.year = 2023 @@ -1389,7 +1380,7 @@ def test_rpt_month_year_mismatch(test_header_datafile, dfs): parse.parse_datafile(datafile, dfs) parser_errors = ParserError.objects.filter(file=datafile).order_by('-id') - assert parser_errors.count() == 2 + assert parser_errors.count() == 3 err = parser_errors.first() assert err.error_type == ParserErrorCategoryChoices.PRE_CHECK From 6ed405ed3b61cdba6815b20457ef2e12a4b6ff30 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 29 Apr 2024 16:27:53 -0600 Subject: [PATCH 049/126] - Update SortedRecords to leverage an unsorted container to make bulk createing faster. Dont have to iterate/generate the required structure --- .../tdpservice/parsers/duplicate_manager.py | 4 ++-- .../tdpservice/parsers/test/test_parse.py | 7 +++---- tdrs-backend/tdpservice/parsers/util.py | 19 +++++++++++-------- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index d470921c1..4e3b10622 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -161,8 +161,8 @@ def get_generated_errors(self): def clear_errors(self): """Clear all generated errors.""" - # We must call .clear() here instead of re-assigning a new dict() because the hashtainers have a reference to - # this dictionary. Reassigning the dictionary means the hashtainers lose their reference. + # We MUST call .clear() here instead of re-assigning a new dict() because the hashtainers have a reference to + # this dictionary. Re-assigning the dictionary means the hashtainers lose their reference. self.generated_errors.clear() def get_records_to_remove(self): diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index ef8c580c0..00e80886b 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -708,10 +708,9 @@ def test_parse_super_big_s1_file(super_big_s1_file, dfs): dfs.save() parse.parse_datafile(super_big_s1_file, dfs) - - expected_t1_record_count = 96642 - expected_t2_record_count = 112794 - expected_t3_record_count = 172595 + expected_t1_record_count = 96607 + expected_t2_record_count = 112753 + expected_t3_record_count = 172525 assert TANF_T1.objects.count() == expected_t1_record_count assert TANF_T2.objects.count() == expected_t2_record_count diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 354aa9823..7badf1a84 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -182,6 +182,7 @@ class SortedRecords: def __init__(self, section): self.records_are_s1_or_s2 = section in {'A', 'C'} self.hash_sorted_cases = dict() + self.cases = dict() self.cases_already_removed = set() self.serialized_cases = set() @@ -206,21 +207,20 @@ def add_record(self, record_doc_pair): hashed_case[document] = records self.hash_sorted_cases[hash_val] = hashed_case + # We treat the nested dictionary here as a set because dictionaries are sorted while sets aren't. If we + # don't have a sorted container we have test failures. + self.cases.setdefault(document, dict())[record] = None def get_bulk_create_struct(self): - """Return dict of form {document: [records]} for bulk_create_records to consume.""" - # TODO: This is slower, but saves memory. Can we do better? - records = dict() - for dictionary in self.hash_sorted_cases.values(): - for key, val in dictionary.items(): - records.setdefault(key, []).extend(val) - return records + """Return dict of form {document: Iterable(records)} for bulk_create_records to consume.""" + return self.cases def clear(self, all_created): """Reset sorted structs if all records were created.""" if all_created: self.serialized_cases.update(set(self.hash_sorted_cases.keys())) self.hash_sorted_cases = dict() + self.cases = dict() def remove_case_due_to_errors(self, should_remove, hash): """Remove all records from memory given the hash.""" @@ -230,11 +230,14 @@ def remove_case_due_to_errors(self, should_remove, hash): if hash in self.hash_sorted_cases: self.cases_already_removed.add(hash) removed = self.hash_sorted_cases.pop(hash) - case_ids = list() + # TODO: Can we do this without nested loops? + case_ids = list() for records in removed.values(): for record in records: case_ids.append((record.RecordType, record.CASE_NUMBER, record.RPT_MONTH_YEAR)) + for record_set in self.cases.values(): + record_set.pop(record, None) logger.info("Case consistency errors generated, removing case from in memory cache. " f"Record(s) info: {case_ids}.") return True and hash not in self.serialized_cases From 63f39fd012600a2d363d38ced0107cd236009160 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 29 Apr 2024 16:42:56 -0600 Subject: [PATCH 050/126] - naming and doc string updates --- .../parsers/case_consistency_validator.py | 13 +++++++------ tdrs-backend/tdpservice/parsers/parse.py | 19 +++++++++---------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 8f322fca9..e8697eb23 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -66,13 +66,13 @@ def num_generated_errors(self): return len(self.generated_errors) def add_record_to_structs(self, record_schema_pair): - """Add record_schema_pair to sorted structure.""" + """Add record_schema_pair to structs.""" record = record_schema_pair[0] self.sorted_cases.setdefault(type(record), []).append(record_schema_pair) self.cases.append(record_schema_pair) def clear_structs(self, seed_record_schema_pair=None): - """Reset and optionally seed the sorted stucture.""" + """Reset and optionally seed the structs.""" self.sorted_cases = dict() self.cases = list() if seed_record_schema_pair: @@ -83,7 +83,7 @@ def update_removed(self, hash_val, was_removed): self.duplicate_manager.update_removed(hash_val, was_removed) def add_record(self, record, schema, line, line_number, case_has_errors): - """Add record to cache and validate if new case is detected.""" + """Add record to cache, validate if new case is detected, and check for duplicate errors.""" num_errors = 0 hash_val = None self.current_rpt_month_year = record.RPT_MONTH_YEAR @@ -105,9 +105,10 @@ def add_record(self, record, schema, line, line_number, case_has_errors): self.current_hash = hash_val - # TODO: Duplicate detection applies to all sections, however we need to implement a factory of some sort to - # get the correct duplicate manager based on the section. Sections 3 and 4 have different duplicate logic - # than 1 or 2 anyways. Some more care for handling section 1 and 2 together is still needed. + # TODO: Duplicate detection applies to all sections, however we might need to implement a factory of some sort + # to get the correct duplicate manager based on the section. Sections 3 and 4 have different duplicate logic + # than 1 or 2 anyways. We also don't know if different program types are going to have different duplicate + # detection logic. num_errors += self.duplicate_manager.add_record(record, hash_val, schema, line, line_number) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 3dd068792..2b7778494 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -231,8 +231,8 @@ def create_no_records_created_pre_check_error(datafile, dfs): errors["no_records_created"] = [err_obj] return errors -def delete_duplicates(duplicate_manager): - """Delete all records with duplicate errors.""" +def delete_serialized_records(duplicate_manager): + """Delete all records that have already been serialized to the DB that have cat4 errors.""" total_deleted = 0 for document, ids in duplicate_manager.get_records_to_remove().items(): try: @@ -343,9 +343,9 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas case_consistency_validator.update_removed(hash_val, was_removed) # Add any generated cat4 errors to our error data structure & clear our caches errors list - num_errors += case_consistency_validator.num_generated_errors() - unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ - case_consistency_validator.get_generated_errors() + cat4_errors = case_consistency_validator.get_generated_errors() + num_errors += len(cat4_errors) + unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + cat4_errors case_consistency_validator.clear_errors() all_created = bulk_create_records(unsaved_records.get_bulk_create_struct(), line_number, header_count, @@ -390,15 +390,14 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # TODO: This is duplicate code. Can we extract this to a function? # Add any generated cat4 errors to our error data structure & clear our caches errors list - duplicate_errors = case_consistency_validator.duplicate_manager.get_generated_errors() - num_errors += len(duplicate_errors) + case_consistency_validator.num_generated_errors() - unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + \ - case_consistency_validator.get_generated_errors() + duplicate_errors + cat4_errors = case_consistency_validator.get_generated_errors() + num_errors += len(cat4_errors) + unsaved_parser_errors[None] = unsaved_parser_errors.get(None, []) + cat4_errors case_consistency_validator.clear_errors() bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) - delete_duplicates(case_consistency_validator.duplicate_manager) + delete_serialized_records(case_consistency_validator.duplicate_manager) logger.debug(f"Cat4 validator cached {case_consistency_validator.total_cases_cached} cases and " f"validated {case_consistency_validator.total_cases_validated} of them.") From edb6b20c6123cf1600aa419ad506abfd8604b4a6 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 30 Apr 2024 07:05:24 -0600 Subject: [PATCH 051/126] - renaming functions - removing unnecessary members --- .../tdpservice/parsers/duplicate_manager.py | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 4e3b10622..cd18deab8 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -77,10 +77,8 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p self.manager_error_dict.setdefault(self.my_hash, []).append(error) self.num_errors = len(self.manager_error_dict[self.my_hash]) - def __get_partial_hash(self, record, skip_partial): + def __get_partial_hash(self, record): partial_hash = None - if skip_partial: - return partial_hash if record.RecordType in {"T1", "T4"}: partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) elif record.RecordType in {"T2", "T3", "T5"}: @@ -88,7 +86,7 @@ def __get_partial_hash(self, record, skip_partial): str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) return partial_hash - def __should_skip_partial(self, record): + def __skip_partial(self, record): skip_partial = False if record.RecordType == "T2": skip_partial = record.FAMILY_AFFILIATION in {3, 5} @@ -113,26 +111,27 @@ def add_case_member(self, record, schema, line, line_number): line_hash = hash(line) if line_hash in self.record_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) - existing_record_id, existing_record_line_number = self.record_hashes[line_hash] + existing_record_line_number = self.record_hashes[line_hash] err_msg = (f"Duplicate record detected with record type " f"{record.RecordType} at line {line_number}. Record is a duplicate of the record at " f"line number {existing_record_line_number}.") is_exact_dup = True - skip_partial = self.__should_skip_partial(record) - partial_hash = self.__get_partial_hash(record, skip_partial) + skip_partial = self.__skip_partial(record) + partial_hash = self.__get_partial_hash(record) if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( ErrorLevel.PARTIAL_DUPLICATE) + existing_record_line_number = self.partial_hashes[partial_hash] err_msg = (f"Partial duplicate record detected with record type " f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " - f"record at line number {self.partial_hashes[partial_hash][1]}.") + f"record at line number {existing_record_line_number}.") self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: - self.record_hashes[line_hash] = (record.id, line_number) + self.record_hashes[line_hash] = line_number if partial_hash is not None and partial_hash not in self.partial_hashes: - self.partial_hashes[partial_hash] = (record.id, line_number) + self.partial_hashes[partial_hash] = line_number return self.num_errors From 74ae160aaf5792218eef654aa7924dabeb00fcec Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 30 Apr 2024 07:50:48 -0600 Subject: [PATCH 052/126] - update doc strings --- .../parsers/case_consistency_validator.py | 11 ++++++- .../tdpservice/parsers/duplicate_manager.py | 30 ++++++++++++++++--- 2 files changed, 36 insertions(+), 5 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index e8697eb23..c0b037751 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -83,7 +83,16 @@ def update_removed(self, hash_val, was_removed): self.duplicate_manager.update_removed(hash_val, was_removed) def add_record(self, record, schema, line, line_number, case_has_errors): - """Add record to cache, validate if new case is detected, and check for duplicate errors.""" + """Add record to cache, validate if new case is detected, and check for duplicate errors. + + @param record: a Django model representing a datafile record + @param schema: the schema from which the record was created + @param line: the raw string line representing the record + @param line_number: the line number the record was generated from in the datafile + @param case_has_errors: boolean indictating whether the record's case has any cat2 or cat3 errors + @return: (boolean indicating existence of cat4 errors, a hash value generated from fields in the record + based on the records section) + """ num_errors = 0 hash_val = None self.current_rpt_month_year = record.RPT_MONTH_YEAR diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index cd18deab8..fb09b96c7 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -62,7 +62,14 @@ def get_records_for_post_parse_deletion(self): return dict() def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_precedence): - """Add an error to the managers error dictionary.""" + """Add an error to the managers error dictionary. + + @param err_msg: string representation of the error message + @param record: a Django model representing a datafile record + @param schema: the schema from which the record was created + @param has_precedence: boolean indicating if this incoming error has equivalent precedence to current errors + @param is_new_max_precedence: boolean indicating if this error has the new max precedence + """ if has_precedence: error = self.generate_error( error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, @@ -97,7 +104,14 @@ def __skip_partial(self, record): return skip_partial def add_case_member(self, record, schema, line, line_number): - """Add case member and generate errors if needed.""" + """Add case member and generate errors if needed. + + @param record: a Django model representing a datafile record + @param schema: the schema from which the record was created + @param line: the raw string line representing the record + @param line_number: the line number the record was generated from in the datafile + @return: the number of duplicate errors + """ # TODO: Need to add support for T6 and T7 detection. if self.current_line_number is None or self.current_line_number != line_number: @@ -145,7 +159,15 @@ def __init__(self, generate_error): self.generated_errors = dict() def add_record(self, record, hash_val, schema, line, line_number): - """Add record to existing CaseHashtainer or create new one and return whether the record's case has errors.""" + """Add record to existing CaseHashtainer or create new one and return whether the record's case has errors. + + @param record: a Django model representing a datafile record + @param hash_val: a hash value generated from fields in the record based on the records section + @param schema: the schema from which the record was created + @param line: the raw string line representing the record + @param line_number: the line number the record was generated from in the datafile + @return: the number of duplicate errors + """ if hash_val not in self.hashtainers: hashtainer = CaseHashtainer(hash_val, self.generated_errors, self.generate_error) self.hashtainers[hash_val] = hashtainer @@ -174,7 +196,7 @@ def get_records_to_remove(self): return records_to_remove def update_removed(self, hash_val, was_removed): - """Notify hashtainers of DB removal.""" + """Notify hashtainers whether case could or could not be removed from memory.""" hashtainer = self.hashtainers.get(hash_val, False) if hashtainer: if was_removed: From fb32a9ffd51ab0e7d2bd56ca0b81a4e6dc3ccb8d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 30 Apr 2024 08:40:55 -0600 Subject: [PATCH 053/126] - Add test for family affiliation negating partial duplicity --- .../tdpservice/parsers/test/factories.py | 4 +- .../parsers/test/test_case_consistency.py | 38 +++++++++++++++++++ 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/factories.py b/tdrs-backend/tdpservice/parsers/test/factories.py index 67383fb42..576717f81 100644 --- a/tdrs-backend/tdpservice/parsers/test/factories.py +++ b/tdrs-backend/tdpservice/parsers/test/factories.py @@ -157,7 +157,7 @@ class Meta: CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 NONCUSTODIAL_PARENT = 1 - DATE_OF_BIRTH = 1 + DATE_OF_BIRTH = '1' SSN = '1' RACE_HISPANIC = 1 RACE_AMER_INDIAN = 1 @@ -236,7 +236,7 @@ class Meta: CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 - DATE_OF_BIRTH = 1 + DATE_OF_BIRTH = '1' SSN = '1' RACE_HISPANIC = 1 RACE_AMER_INDIAN = 1 diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 80d14760d..be974782e 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1684,3 +1684,41 @@ def test_section2_partial_duplicate_records_and_precedence(self, small_correct_f expected_msg = f"Duplicate record detected with record type T{i + 4} at line 5. Record is a " + \ f"duplicate of the record at line number {i + 1}." assert error.error_message == expected_msg + + @pytest.mark.parametrize("header,record_stuff", [ + ( + {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT2Factory, schema_defs.tanf.t2.schemas[0], 'T2'), + ), + ( + {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT3Factory, schema_defs.tanf.t3.schemas[0], 'T3'), + ), + ( + {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT5Factory, schema_defs.tanf.t5.schemas[0], 'T5'), + ), + ]) + @pytest.mark.django_db + def test_family_affiliation_negate_partial_duplicate(self, small_correct_file, header, record_stuff): + """Test records are related validator section 2 success case.""" + (Factory, schema, model_name) = record_stuff + + case_consistency_validator = CaseConsistencyValidator( + header, + STT.EntityType.STATE, + util.make_generate_parser_error(small_correct_file, None) + ) + + line_number = 1 + first_record = Factory.create(RecordType=model_name, RPT_MONTH_YEAR=202010, CASE_NUMBER='123') + case_consistency_validator.add_record(first_record, schema, str(first_record), line_number, False) + line_number += 1 + + second_record = Factory.create(RecordType=model_name, RPT_MONTH_YEAR=202010, CASE_NUMBER='123', + FAMILY_AFFILIATION=5) + case_consistency_validator.add_record(second_record, schema, str(second_record), line_number, False) + line_number += 1 + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 0 From 607452a65e5970c3613722bf3757730a92fa850b Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 30 Apr 2024 09:31:53 -0600 Subject: [PATCH 054/126] - Updated to support duplicate checking on section 3/4 --- .../parsers/case_consistency_validator.py | 3 +- .../tdpservice/parsers/duplicate_manager.py | 2 - tdrs-backend/tdpservice/parsers/parse.py | 2 +- .../parsers/test/test_case_consistency.py | 43 +++++++++++++++ .../tdpservice/parsers/test/test_parse.py | 52 ++++++++++++++++--- tdrs-backend/tdpservice/parsers/util.py | 12 ++--- 6 files changed, 95 insertions(+), 19 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index c0b037751..d79c7e9d1 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -109,8 +109,9 @@ def add_record(self, record, schema, line, line_number, case_has_errors): self.has_validated = False self.current_case = record.CASE_NUMBER else: + # Section 3/4 only require exact duplicate matching. Hashing the line is sufficient for that. self.current_case = None - hash_val = hash(record.RecordType + str(record.RPT_MONTH_YEAR)) + hash_val = hash(line) self.current_hash = hash_val diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index fb09b96c7..98b55975e 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -112,8 +112,6 @@ def add_case_member(self, record, schema, line, line_number): @param line_number: the line number the record was generated from in the datafile @return: the number of duplicate errors """ - # TODO: Need to add support for T6 and T7 detection. - if self.current_line_number is None or self.current_line_number != line_number: self.current_line_number = line_number self.record_ids.setdefault(schema.document, []).append(record.id) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 2b7778494..8d451ea2a 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -338,7 +338,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas record_has_errors = len(record_errors) > 0 should_remove, hash_val = case_consistency_validator.add_record(record, s, line, line_number, record_has_errors) - unsaved_records.add_record((record, s.document)) + unsaved_records.add_record(hash_val, (record, s.document)) was_removed = unsaved_records.remove_case_due_to_errors(should_remove, hash_val) case_consistency_validator.update_removed(hash_val, was_removed) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index be974782e..20c9e5aea 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1722,3 +1722,46 @@ def test_family_affiliation_negate_partial_duplicate(self, small_correct_file, h errors = case_consistency_validator.get_generated_errors() assert len(errors) == 0 + + @pytest.mark.parametrize("header,record_stuff", [ + ( + {"type": "G", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT6Factory, schema_defs.tanf.t6.schemas[0], 'T6'), + ), + ( + {"type": "S", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TanfT7Factory, schema_defs.tanf.t7.schemas[0], 'T7'), + ), + ]) + @pytest.mark.django_db + def test_s3_s4_duplicates(self, small_correct_file, header, record_stuff): + """Test records are related validator section 2 success case.""" + (Factory, schema, model_name) = record_stuff + + case_consistency_validator = CaseConsistencyValidator( + header, + STT.EntityType.STATE, + util.make_generate_parser_error(small_correct_file, None) + ) + + line_number = 1 + # Because the line number is not changing in the loop, we know these records are coming from a single record in + # the file. If the line number was changing, we would be flagging duplicate errors. + first_record = None + for i in range(5): + record = Factory.create(RecordType=model_name, RPT_MONTH_YEAR=202010) + if i == 0: + first_record = record + case_consistency_validator.add_record(record, schema, str(record), line_number, False) + line_number += 1 + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 0 + + second_record = Factory.create(RecordType=model_name, RPT_MONTH_YEAR=202010) + case_consistency_validator.add_record(second_record, schema, str(first_record), line_number, False) + + errors = case_consistency_validator.get_generated_errors() + assert len(errors) == 1 + assert errors[0].error_message == f"Duplicate record detected with record type {model_name} at line 2. " + \ + "Record is a duplicate of the record at line number 1." diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 00e80886b..390099406 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1771,14 +1771,52 @@ def s2_exact_dup_file(): ) return parsing_file -@pytest.mark.parametrize("file, batch_size, model, record_type", [ - ('s1_exact_dup_file', 10000, TANF_T1, "T1"), - ('s1_exact_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. - ('s2_exact_dup_file', 10000, TANF_T4, "T4"), - ('s2_exact_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. +@pytest.fixture +def s3_exact_dup_file(): + """Fixture for a section 3 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="Aggregate Data", + file__name='s3_exact_duplicate.txt', + file__section='Aggregate Data', + file__data=(b'HEADER20214G06 TAN1 D\n' + b'T620214000127470001104500011146000043010000397700003924000084460000706800007222000055042849000055141378000056643253000755810007592100075542000009810000097000000968000392980003934900038972000353020003560200035602001684470016904700168107000464480004649800046203001219990012254900121904000001630000014900000151000003440000033100000276000002580000024100000187000054530000388100003884\n' + b'T620214000127470001104500011146000043010000397700003924000084460000706800007222000055042849000055141378000056643253000755810007592100075542000009810000097000000968000392980003934900038972000353020003560200035602001684470016904700168107000464480004649800046203001219990012254900121904000001630000014900000151000003440000033100000276000002580000024100000187000054530000388100003884\n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def s4_exact_dup_file(): + """Fixture for a section 4 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="Stratum Data", + file__name='s4_exact_duplicate.txt', + file__section='Stratum Data', + file__data=(b'HEADER20214S06 TAN1 D\n' + b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106000044600004360000325299000506200036070003385202000039100002740000499 \n' + b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106000044600004360000325299000506200036070003385202000039100002740000499 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ + ('s1_exact_dup_file', 10000, TANF_T1, "T1", 4), + ('s1_exact_dup_file', 1, TANF_T1, "T1", 4), # This forces an in memory and database deletion of records. + ('s2_exact_dup_file', 10000, TANF_T4, "T4", 4), + ('s2_exact_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. + ('s3_exact_dup_file', 10000, TANF_T6, "T6", 1), + ('s3_exact_dup_file', 1, TANF_T6, "T6", 1), # This forces an in memory and database deletion of records. + ('s4_exact_dup_file', 10000, TANF_T7, "T7", 1), + ('s4_exact_dup_file', 1, TANF_T7, "T7", 1), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() -def test_parse_duplicate(file, batch_size, model, record_type, dfs, request): +def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, request): """Test handling invalid quarter value that raises a ValueError exception.""" datafile = request.getfixturevalue(file) dfs.datafile = datafile @@ -1790,7 +1828,7 @@ def test_parse_duplicate(file, batch_size, model, record_type, dfs, request): error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') for e in parser_errors: assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert parser_errors.count() == 4 + assert parser_errors.count() == num_errors dup_error = parser_errors.first() assert dup_error.error_message == f"Duplicate record detected with record type {record_type} at line 3. " + \ diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 7badf1a84..895576c19 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -186,19 +186,14 @@ def __init__(self, section): self.cases_already_removed = set() self.serialized_cases = set() - def add_record(self, record_doc_pair): + def add_record(self, hash_val, record_doc_pair): """Add a record_doc_pair to the sorted object if the case hasn't been removed already.""" record, document = record_doc_pair rpt_month_year = str(getattr(record, 'RPT_MONTH_YEAR')) - hash_val = None - if self.records_are_s1_or_s2: - hash_val = hash(rpt_month_year + record.CASE_NUMBER) - else: - hash_val = hash(record.RecordType + rpt_month_year) if hash_val in self.cases_already_removed: logger.info("Record's case has already been removed due to category four errors. Not adding record with " - f"info: ({record.RecordType}, {record.CASE_NUMBER}, {rpt_month_year})") + f"info: ({record.RecordType}, {getattr(record, 'CASE_NUMBER', None)}, {rpt_month_year})") if hash_val is not None and hash_val not in self.cases_already_removed: hashed_case = self.hash_sorted_cases.get(hash_val, {}) @@ -235,7 +230,8 @@ def remove_case_due_to_errors(self, should_remove, hash): case_ids = list() for records in removed.values(): for record in records: - case_ids.append((record.RecordType, record.CASE_NUMBER, record.RPT_MONTH_YEAR)) + case_ids.append((record.RecordType, getattr(record, 'CASE_NUMBER', None), + record.RPT_MONTH_YEAR)) for record_set in self.cases.values(): record_set.pop(record, None) logger.info("Case consistency errors generated, removing case from in memory cache. " From 4b2d1f6e86a207aca12f804411ef88b7017d687b Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 30 Apr 2024 09:35:48 -0600 Subject: [PATCH 055/126] - fix lint --- .../tdpservice/parsers/test/test_parse.py | 20 +++++++++++++++---- tdrs-backend/tdpservice/parsers/util.py | 2 +- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 390099406..2becdf39f 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1781,8 +1781,16 @@ def s3_exact_dup_file(): file__name='s3_exact_duplicate.txt', file__section='Aggregate Data', file__data=(b'HEADER20214G06 TAN1 D\n' - b'T620214000127470001104500011146000043010000397700003924000084460000706800007222000055042849000055141378000056643253000755810007592100075542000009810000097000000968000392980003934900038972000353020003560200035602001684470016904700168107000464480004649800046203001219990012254900121904000001630000014900000151000003440000033100000276000002580000024100000187000054530000388100003884\n' - b'T620214000127470001104500011146000043010000397700003924000084460000706800007222000055042849000055141378000056643253000755810007592100075542000009810000097000000968000392980003934900038972000353020003560200035602001684470016904700168107000464480004649800046203001219990012254900121904000001630000014900000151000003440000033100000276000002580000024100000187000054530000388100003884\n' + b'T620214000127470001104500011146000043010000397700003924000084460000706800007222' + b'0000550428490000551413780000566432530007558100075921000755420000098100000970000' + b'0096800039298000393490003897200035302000356020003560200168447001690470016810700' + b'0464480004649800046203001219990012254900121904000001630000014900000151000003440' + b'000033100000276000002580000024100000187000054530000388100003884\n' + b'T620214000127470001104500011146000043010000397700003924000084460000706800007222' + b'0000550428490000551413780000566432530007558100075921000755420000098100000970000' + b'0096800039298000393490003897200035302000356020003560200168447001690470016810700' + b'0464480004649800046203001219990012254900121904000001630000014900000151000003440' + b'000033100000276000002580000024100000187000054530000388100003884\n' b'TRAILER0000001 ' ) ) @@ -1798,8 +1806,12 @@ def s4_exact_dup_file(): file__name='s4_exact_duplicate.txt', file__section='Stratum Data', file__data=(b'HEADER20214S06 TAN1 D\n' - b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106000044600004360000325299000506200036070003385202000039100002740000499 \n' - b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106000044600004360000325299000506200036070003385202000039100002740000499 \n' + b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106' + b'000044600004360000325299000506200036070003385202000039100002740000499 ' + b' \n' + b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106' + b'000044600004360000325299000506200036070003385202000039100002740000499 ' + b' \n' b'TRAILER0000001 ' ) ) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 895576c19..f2020b704 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -230,7 +230,7 @@ def remove_case_due_to_errors(self, should_remove, hash): case_ids = list() for records in removed.values(): for record in records: - case_ids.append((record.RecordType, getattr(record, 'CASE_NUMBER', None), + case_ids.append((record.RecordType, getattr(record, 'CASE_NUMBER', None), record.RPT_MONTH_YEAR)) for record_set in self.cases.values(): record_set.pop(record, None) From 12d4c2e6550a0a0a21f714ef22058999c0c05641 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 30 Apr 2024 10:01:09 -0600 Subject: [PATCH 056/126] - Update docstring --- tdrs-backend/tdpservice/parsers/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index f2020b704..65d0555f5 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -177,7 +177,7 @@ def get_years_apart(rpt_month_year_date, date): class SortedRecords: - """Maintains a dict sorted by hash(str(rpt_month_year) + case_number) and model_type.""" + """Maintains a dict sorted by hash_val and model_type.""" def __init__(self, section): self.records_are_s1_or_s2 = section in {'A', 'C'} From 52f7fd8c162685980bdc2b385126b3825304926f Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 1 May 2024 08:41:47 -0600 Subject: [PATCH 057/126] - Update to allow all record types to have duplicate detection --- .../tdpservice/parsers/duplicate_manager.py | 12 ++++--- .../tdpservice/parsers/test/factories.py | 33 ++++++++++++------- .../parsers/test/test_case_consistency.py | 6 ++-- 3 files changed, 32 insertions(+), 19 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 98b55975e..1da5ca55c 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -86,20 +86,22 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p def __get_partial_hash(self, record): partial_hash = None - if record.RecordType in {"T1", "T4"}: + rec_num = record.RecordType[-1] + if rec_num in {"1", "4"}: partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) - elif record.RecordType in {"T2", "T3", "T5"}: + elif rec_num in {"2", "3", "5"}: partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) return partial_hash def __skip_partial(self, record): skip_partial = False - if record.RecordType == "T2": + rec_num = record.RecordType[-1] + if rec_num == "2": skip_partial = record.FAMILY_AFFILIATION in {3, 5} - if record.RecordType == "T3": + if rec_num == "3": skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} - if record.RecordType == "T5": + if rec_num == "5": skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} return skip_partial diff --git a/tdrs-backend/tdpservice/parsers/test/factories.py b/tdrs-backend/tdpservice/parsers/test/factories.py index 576717f81..225c3b68d 100644 --- a/tdrs-backend/tdpservice/parsers/test/factories.py +++ b/tdrs-backend/tdpservice/parsers/test/factories.py @@ -97,7 +97,7 @@ class Meta: model = "search_indexes.TANF_T1" - RecordType = fake.uuid4() + RecordType = "T1" RPT_MONTH_YEAR = 1 CASE_NUMBER = "1" COUNTY_FIPS_CODE = 1 @@ -152,7 +152,7 @@ class Meta: model = "search_indexes.TANF_T2" - RecordType = fake.uuid4() + RecordType = "T2" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 @@ -231,7 +231,7 @@ class Meta: model = "search_indexes.TANF_T3" - RecordType = fake.uuid4() + RecordType = "T3" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' @@ -262,6 +262,7 @@ class Meta: model = "search_indexes.TANF_T4" + RecordType = "T4" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" @@ -284,6 +285,7 @@ class Meta: model = "search_indexes.TANF_T5" + RecordType = "T5" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" FAMILY_AFFILIATION = 1 @@ -321,6 +323,7 @@ class Meta: model = "search_indexes.TANF_T6" + RecordType = "T6" CALENDAR_QUARTER = 1 RPT_MONTH_YEAR = 202301 NUM_APPLICATIONS = 1 @@ -347,6 +350,7 @@ class Meta: model = "search_indexes.TANF_T7" + RecordType = "T7" CALENDAR_QUARTER = 20204 RPT_MONTH_YEAR = 202011 TDRS_SECTION_IND = '1' @@ -361,7 +365,7 @@ class Meta: model = "search_indexes.Tribal_TANF_T1" - RecordType = fake.uuid4() + RecordType = "T1" RPT_MONTH_YEAR = 1 CASE_NUMBER = "1" COUNTY_FIPS_CODE = 1 @@ -416,12 +420,12 @@ class Meta: model = "search_indexes.Tribal_TANF_T2" - RecordType = fake.uuid4() + RecordType = "T2" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 NONCUSTODIAL_PARENT = 1 - DATE_OF_BIRTH = 1 + DATE_OF_BIRTH = "1" SSN = '1' RACE_HISPANIC = 1 RACE_AMER_INDIAN = 1 @@ -477,12 +481,12 @@ class Meta: model = "search_indexes.Tribal_TANF_T3" - RecordType = fake.uuid4() + RecordType = "T3" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 - DATE_OF_BIRTH = 1 + DATE_OF_BIRTH = "1" SSN = '1' RACE_HISPANIC = 1 RACE_AMER_INDIAN = 1 @@ -508,6 +512,7 @@ class Meta: model = "search_indexes.Tribal_TANF_T4" + RecordType = "T4" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" @@ -530,6 +535,7 @@ class Meta: model = "search_indexes.Tribal_TANF_T5" + RecordType = "T5" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" FAMILY_AFFILIATION = 1 @@ -567,6 +573,7 @@ class Meta: model = "search_indexes.Tribal_TANF_T6" + RecordType = "T6" CALENDAR_QUARTER = 1 RPT_MONTH_YEAR = 202301 NUM_APPLICATIONS = 1 @@ -608,7 +615,7 @@ class Meta: model = "search_indexes.SSP_M1" - RecordType = fake.uuid4() + RecordType = "M1" RPT_MONTH_YEAR = 1 CASE_NUMBER = "1" COUNTY_FIPS_CODE = 1 @@ -659,7 +666,7 @@ class Meta: model = "search_indexes.SSP_M2" - RecordType = fake.uuid4() + RecordType = "M2" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 @@ -735,7 +742,7 @@ class Meta: model = "search_indexes.SSP_M3" - RecordType = fake.uuid4() + RecordType = "M3" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' @@ -766,6 +773,7 @@ class Meta: model = "search_indexes.SSP_M4" + RecordType = "M4" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" @@ -787,6 +795,7 @@ class Meta: model = "search_indexes.SSP_M5" + RecordType = "M5" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' @@ -824,6 +833,7 @@ class Meta: model = "search_indexes.SSP_M6" + RecordType = "M6" CALENDAR_QUARTER = 1 RPT_MONTH_YEAR = 202301 SSPMOE_FAMILIES = 1 @@ -845,6 +855,7 @@ class Meta: model = "search_indexes.SSP_M7" + RecordType = "M7" CALENDAR_QUARTER = 20204 RPT_MONTH_YEAR = 202011 TDRS_SECTION_IND = '1' diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 20c9e5aea..2779c0deb 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -442,7 +442,7 @@ def test_section1_records_are_related_validator_fail_multiple_t1s( errors = case_consistency_validator.get_generated_errors() - assert len(errors) == 1 + assert len(errors) == 2 assert num_errors == 1 assert errors[0].error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY assert errors[0].error_message == ( @@ -533,7 +533,7 @@ def test_section1_records_are_related_validator_fail_no_family_affiliation( errors = case_consistency_validator.get_generated_errors() - assert len(errors) == 1 + assert len(errors) == 2 assert num_errors == 1 assert errors[0].error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY assert errors[0].error_message == ( @@ -683,7 +683,7 @@ def test_section2_validator_fail_multiple_t4s(self, small_correct_file, header, errors = case_consistency_validator.get_generated_errors() - assert len(errors) == 1 + assert len(errors) == 2 assert num_errors == 1 assert errors[0].error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY assert errors[0].error_message == ( From 74be2a473d84927414753700bc338a76e364aca4 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 1 May 2024 09:05:33 -0600 Subject: [PATCH 058/126] - add duplicate detection unit tests for all program types and record types --- .../parsers/test/test_case_consistency.py | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 2779c0deb..ba1818d42 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1419,6 +1419,20 @@ def test_section2_aabd_ssi_validator_fail_state_ssi(self, small_correct_file, he (factories.TanfT3Factory, schema_defs.tanf.t3.schemas[0], 'T3'), STT.EntityType.STATE, ), + ( + {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TribalTanfT1Factory, schema_defs.tribal_tanf.t1.schemas[0], 'T1'), + (factories.TribalTanfT2Factory, schema_defs.tribal_tanf.t2.schemas[0], 'T2'), + (factories.TribalTanfT3Factory, schema_defs.tribal_tanf.t3.schemas[0], 'T3'), + STT.EntityType.STATE, + ), + ( + {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.SSPM1Factory, schema_defs.ssp.m1.schemas[0], 'M1'), + (factories.SSPM2Factory, schema_defs.ssp.m2.schemas[0], 'M2'), + (factories.SSPM3Factory, schema_defs.ssp.m3.schemas[0], 'M3'), + STT.EntityType.STATE, + ) ]) @pytest.mark.django_db def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T2Stuff, T3Stuff, stt_type): @@ -1496,6 +1510,20 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T (factories.TanfT3Factory, schema_defs.tanf.t3.schemas[0], 'T3'), STT.EntityType.STATE, ), + ( + {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TribalTanfT1Factory, schema_defs.tribal_tanf.t1.schemas[0], 'T1'), + (factories.TribalTanfT2Factory, schema_defs.tribal_tanf.t2.schemas[0], 'T2'), + (factories.TribalTanfT3Factory, schema_defs.tribal_tanf.t3.schemas[0], 'T3'), + STT.EntityType.STATE, + ), + ( + {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.SSPM1Factory, schema_defs.ssp.m1.schemas[0], 'M1'), + (factories.SSPM2Factory, schema_defs.ssp.m2.schemas[0], 'M2'), + (factories.SSPM3Factory, schema_defs.ssp.m3.schemas[0], 'M3'), + STT.EntityType.STATE, + ), ]) @pytest.mark.django_db def test_section1_partial_duplicate_records_and_precedence(self, small_correct_file, header, T1Stuff, T2Stuff, @@ -1586,6 +1614,16 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, (factories.TanfT4Factory, schema_defs.tanf.t4.schemas[0], 'T4'), (factories.TanfT5Factory, schema_defs.tanf.t5.schemas[0], 'T5'), + ), + ( + {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TribalTanfT4Factory, schema_defs.tribal_tanf.t4.schemas[0], 'T4'), + (factories.TribalTanfT5Factory, schema_defs.tribal_tanf.t5.schemas[0], 'T5'), + ), + ( + {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.SSPM4Factory, schema_defs.ssp.m4.schemas[0], 'M4'), + (factories.SSPM5Factory, schema_defs.ssp.m5.schemas[0], 'M5'), ), ]) @pytest.mark.django_db @@ -1632,6 +1670,16 @@ def test_section2_duplicate_records(self, small_correct_file, header, T4Stuff, T (factories.TanfT4Factory, schema_defs.tanf.t4.schemas[0], 'T4'), (factories.TanfT5Factory, schema_defs.tanf.t5.schemas[0], 'T5'), ), + ( + {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TribalTanfT4Factory, schema_defs.tribal_tanf.t4.schemas[0], 'T4'), + (factories.TribalTanfT5Factory, schema_defs.tribal_tanf.t5.schemas[0], 'T5'), + ), + ( + {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.SSPM4Factory, schema_defs.ssp.m4.schemas[0], 'M4'), + (factories.SSPM5Factory, schema_defs.ssp.m5.schemas[0], 'M5'), + ), ]) @pytest.mark.django_db def test_section2_partial_duplicate_records_and_precedence(self, small_correct_file, header, T4Stuff, T5Stuff): @@ -1728,10 +1776,26 @@ def test_family_affiliation_negate_partial_duplicate(self, small_correct_file, h {"type": "G", "program_type": "TAN", "year": 2020, "quarter": "4"}, (factories.TanfT6Factory, schema_defs.tanf.t6.schemas[0], 'T6'), ), + ( + {"type": "G", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TribalTanfT6Factory, schema_defs.tribal_tanf.t6.schemas[0], 'T6'), + ), + ( + {"type": "G", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.SSPM6Factory, schema_defs.ssp.m6.schemas[0], 'M6'), + ), ( {"type": "S", "program_type": "TAN", "year": 2020, "quarter": "4"}, (factories.TanfT7Factory, schema_defs.tanf.t7.schemas[0], 'T7'), ), + ( + {"type": "S", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.TribalTanfT7Factory, schema_defs.tribal_tanf.t7.schemas[0], 'T7'), + ), + ( + {"type": "S", "program_type": "TAN", "year": 2020, "quarter": "4"}, + (factories.SSPM7Factory, schema_defs.ssp.m7.schemas[0], 'M7'), + ), ]) @pytest.mark.django_db def test_s3_s4_duplicates(self, small_correct_file, header, record_stuff): From 4fcdf51aae5ee327582c2e2a77d39390be3defbd Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 1 May 2024 09:09:53 -0600 Subject: [PATCH 059/126] - fix lint --- tdrs-backend/tdpservice/parsers/test/test_case_consistency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index ba1818d42..b7ac787e6 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1615,7 +1615,7 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f (factories.TanfT4Factory, schema_defs.tanf.t4.schemas[0], 'T4'), (factories.TanfT5Factory, schema_defs.tanf.t5.schemas[0], 'T5'), ), - ( + ( {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, (factories.TribalTanfT4Factory, schema_defs.tribal_tanf.t4.schemas[0], 'T4'), (factories.TribalTanfT5Factory, schema_defs.tribal_tanf.t5.schemas[0], 'T5'), From fdba1d4e9bbf0ad9d50f5c226fea1d1c42eb2ea6 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 1 May 2024 12:18:54 -0600 Subject: [PATCH 060/126] - Add cases for ssp --- .../tdpservice/parsers/test/test_parse.py | 163 ++++++++++++++++-- 1 file changed, 144 insertions(+), 19 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 2becdf39f..92b70c8c5 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1737,7 +1737,7 @@ def test_parse_tribal_section_4_bad_quarter(tribal_section_4_bad_quarter, dfs): Tribal_TANF_T7.objects.count() == 0 @pytest.fixture -def s1_exact_dup_file(): +def tanf_s1_exact_dup_file(): """Fixture for a section 1 file containing an exact duplicate record.""" parsing_file = ParsingFileFactory( year=2021, @@ -1755,7 +1755,7 @@ def s1_exact_dup_file(): return parsing_file @pytest.fixture -def s2_exact_dup_file(): +def tanf_s2_exact_dup_file(): """Fixture for a section 2 file containing an exact duplicate record.""" parsing_file = ParsingFileFactory( year=2021, @@ -1772,7 +1772,7 @@ def s2_exact_dup_file(): return parsing_file @pytest.fixture -def s3_exact_dup_file(): +def tanf_s3_exact_dup_file(): """Fixture for a section 3 file containing an exact duplicate record.""" parsing_file = ParsingFileFactory( year=2022, @@ -1797,7 +1797,7 @@ def s3_exact_dup_file(): return parsing_file @pytest.fixture -def s4_exact_dup_file(): +def tanf_s4_exact_dup_file(): """Fixture for a section 4 file containing an exact duplicate record.""" parsing_file = ParsingFileFactory( year=2022, @@ -1817,15 +1817,99 @@ def s4_exact_dup_file(): ) return parsing_file +@pytest.fixture +def ssp_s1_exact_dup_file(): + """Fixture for a section 1 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2019, + quarter='Q1', + section='SSP Active Case Data', + file__name='s1_exact_duplicate.txt', + file__section='SSP Active Case Data', + file__data=(b'HEADER20184A24 SSP1ED\n' + b'M1201810111111111272140140035102133110027300000000000000010540000000000000000000000000000000000222222000000002229 \n' + b'M1201810111111111272140140035102133110027300000000000000010540000000000000000000000000000000000222222000000002229 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s2_exact_dup_file(): + """Fixture for a section 2 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2019, + quarter='Q1', + section="SSP Closed Case Data", + file__name='s2_exact_duplicate.txt', + file__section='SSP Closed Case Data', + file__data=(b'HEADER20184C24 SSP1ED\n' + b'M42018101111111116120000406911161113 \n' + b'M42018101111111116120000406911161113 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s3_exact_dup_file(): + """Fixture for a section 3 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="SSP Aggregate Data", + file__name='s3_exact_duplicate.txt', + file__section='SSP Aggregate Data', + file__data=(b'HEADER20214G24 SSP1 D\n' + b'M6202140001586900016008000159560000086100000851000008450001490500015055000150130000010300000' + b'10200000098000513550005169600051348000157070001581400015766000356480003588200035582000000000' + b'000000000000000000000000000000000000000000000000000000012020000118900001229\n' + b'M6202140001586900016008000159560000086100000851000008450001490500015055000150130000010300000' + b'10200000098000513550005169600051348000157070001581400015766000356480003588200035582000000000' + b'000000000000000000000000000000000000000000000000000000012020000118900001229\n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s4_exact_dup_file(): + """Fixture for a section 4 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="SSP Stratum Data", + file__name='s4_exact_duplicate.txt', + file__section='SSP Stratum Data', + file__data=(b'HEADER20214S24 SSP1 D\n' + b'M7202141010001769000131000011111020000748000076700007681030013352001393100140772000001202000' + b'11890001229 ' + b' \n' + b'M7202141010001769000131000011111020000748000076700007681030013352001393100140772000001202000' + b'11890001229 ' + b' \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + @pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ - ('s1_exact_dup_file', 10000, TANF_T1, "T1", 4), - ('s1_exact_dup_file', 1, TANF_T1, "T1", 4), # This forces an in memory and database deletion of records. - ('s2_exact_dup_file', 10000, TANF_T4, "T4", 4), - ('s2_exact_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. - ('s3_exact_dup_file', 10000, TANF_T6, "T6", 1), - ('s3_exact_dup_file', 1, TANF_T6, "T6", 1), # This forces an in memory and database deletion of records. - ('s4_exact_dup_file', 10000, TANF_T7, "T7", 1), - ('s4_exact_dup_file', 1, TANF_T7, "T7", 1), # This forces an in memory and database deletion of records. + ('tanf_s1_exact_dup_file', 10000, TANF_T1, "T1", 4), + ('tanf_s1_exact_dup_file', 1, TANF_T1, "T1", 4), # This forces an in memory and database deletion of records. + ('tanf_s2_exact_dup_file', 10000, TANF_T4, "T4", 4), + ('tanf_s2_exact_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. + ('tanf_s3_exact_dup_file', 10000, TANF_T6, "T6", 1), + ('tanf_s3_exact_dup_file', 1, TANF_T6, "T6", 1), # This forces an in memory and database deletion of records. + ('tanf_s4_exact_dup_file', 10000, TANF_T7, "T7", 1), + ('tanf_s4_exact_dup_file', 1, TANF_T7, "T7", 1), # This forces an in memory and database deletion of records. + ('ssp_s1_exact_dup_file', 10000, SSP_M1, "M1", 1), + ('ssp_s1_exact_dup_file', 1, SSP_M1, "M1", 1), # This forces an in memory and database deletion of records. + ('ssp_s2_exact_dup_file', 10000, SSP_M4, "M4", 1), + ('ssp_s2_exact_dup_file', 1, SSP_M4, "M4", 1), # This forces an in memory and database deletion of records. + ('ssp_s3_exact_dup_file', 10000, SSP_M6, "M6", 1), + ('ssp_s3_exact_dup_file', 1, SSP_M6, "M6", 1), # This forces an in memory and database deletion of records. + ('ssp_s4_exact_dup_file', 10000, SSP_M7, "M7", 1), + ('ssp_s4_exact_dup_file', 1, SSP_M7, "M7", 1), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, request): @@ -1849,7 +1933,7 @@ def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, model.objects.count() == 0 @pytest.fixture -def s1_partial_dup_file(): +def tanf_s1_partial_dup_file(): """Fixture for a section 1 file containing an partial duplicate record.""" parsing_file = ParsingFileFactory( year=2021, @@ -1867,7 +1951,7 @@ def s1_partial_dup_file(): return parsing_file @pytest.fixture -def s2_partial_dup_file(): +def tanf_s2_partial_dup_file(): """Fixture for a section 2 file containing an partial duplicate record.""" parsing_file = ParsingFileFactory( year=2021, @@ -1883,11 +1967,49 @@ def s2_partial_dup_file(): ) return parsing_file +@pytest.fixture +def ssp_s1_partial_dup_file(): + """Fixture for a section 1 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2019, + quarter='Q1', + section='SSP Active Case Data', + file__name='s1_exact_duplicate.txt', + file__section='SSP Active Case Data', + file__data=(b'HEADER20184A24 SSP1ED\n' + b'M1201810111111111272140140035102133110027300000000000000010540000000000000000000000000000000000222222000000002229 \n' + b'M1201810111111111272140140035102133110027300000000000000010540000000000000000000000000000000000222222000000002228 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s2_partial_dup_file(): + """Fixture for a section 2 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2019, + quarter='Q1', + section="SSP Closed Case Data", + file__name='s2_exact_duplicate.txt', + file__section='SSP Closed Case Data', + file__data=(b'HEADER20184C24 SSP1ED\n' + b'M42018101111111116120000406911161113 \n' + b'M42018101111111116120000406911161112 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + @pytest.mark.parametrize("file, batch_size, model, record_type", [ - ('s1_partial_dup_file', 10000, TANF_T1, "T1"), - ('s1_partial_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. - ('s2_partial_dup_file', 10000, TANF_T4, "T4"), - ('s2_partial_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. + ('tanf_s1_partial_dup_file', 10000, TANF_T1, "T1"), + ('tanf_s1_partial_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. + ('tanf_s2_partial_dup_file', 10000, TANF_T4, "T4"), + ('tanf_s2_partial_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. + ('ssp_s1_partial_dup_file', 10000, SSP_M1, "M1"), + ('ssp_s1_partial_dup_file', 1, SSP_M1, "M1"), # This forces an in memory and database deletion of records. + ('ssp_s2_partial_dup_file', 10000, SSP_M4, "M4"), + ('ssp_s2_partial_dup_file', 1, SSP_M4, "M4"), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, request): @@ -1902,7 +2024,10 @@ def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, requ error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') for e in parser_errors: assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert parser_errors.count() == 1 # TODO: Why doesnt this generate 4 errors per run again? + + # This does not generate 4 errors similarly to above because the case has cat2/3 errors. Therefore, + # normal cat4 validation is skipped. + assert parser_errors.count() == 1 dup_error = parser_errors.first() assert dup_error.error_message == f"Partial duplicate record detected with record type {record_type} " + \ From 6a36d2ddeff8fa5099e08c5ab237cccb78a6d8ba Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 1 May 2024 12:44:14 -0600 Subject: [PATCH 061/126] - Move parser fixtures to their own conftest.py --- tdrs-backend/tdpservice/parsers/conftest.py | 438 +++++++++++++++++ .../tdpservice/parsers/test/test_parse.py | 446 +----------------- 2 files changed, 441 insertions(+), 443 deletions(-) create mode 100644 tdrs-backend/tdpservice/parsers/conftest.py diff --git a/tdrs-backend/tdpservice/parsers/conftest.py b/tdrs-backend/tdpservice/parsers/conftest.py new file mode 100644 index 000000000..61e098bb5 --- /dev/null +++ b/tdrs-backend/tdpservice/parsers/conftest.py @@ -0,0 +1,438 @@ +"""Package level fixtures.""" +import pytest +from tdpservice.parsers.test.factories import DataFileSummaryFactory, ParsingFileFactory +from tdpservice.parsers import util + +@pytest.fixture +def test_datafile(stt_user, stt): + """Fixture for small_correct_file.""" + return util.create_test_datafile('small_correct_file.txt', stt_user, stt) + + +@pytest.fixture +def test_header_datafile(stt_user, stt): + """Fixture for header test.""" + return util.create_test_datafile('tanf_section1_header_test.txt', stt_user, stt) + + +@pytest.fixture +def dfs(): + """Fixture for DataFileSummary.""" + return DataFileSummaryFactory.build() + + +@pytest.fixture +def t2_invalid_dob_file(): + """Fixture for T2 file with an invalid DOB.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + file__name='t2_invalid_dob_file.txt', + file__section='Active Case Data', + file__data=(b'HEADER20204A25 TAN1ED\n' + b'T22020101111111111212Q897$9 3WTTTTTY@W222122222222101221211001472201140000000000000000000000000' + b'0000000000000000000000000000000000000000000000000000000000291\n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.fixture +def test_big_file(stt_user, stt): + """Fixture for ADS.E2J.FTP1.TS06.""" + return util.create_test_datafile('ADS.E2J.FTP1.TS06', stt_user, stt) + +@pytest.fixture +def bad_test_file(stt_user, stt): + """Fixture for bad_TANF_S2.""" + return util.create_test_datafile('bad_TANF_S2.txt', stt_user, stt) + +@pytest.fixture +def bad_file_missing_header(stt_user, stt): + """Fixture for bad_missing_header.""" + return util.create_test_datafile('bad_missing_header.txt', stt_user, stt) + +@pytest.fixture +def bad_file_multiple_headers(stt_user, stt): + """Fixture for bad_two_headers.""" + return util.create_test_datafile('bad_two_headers.txt', stt_user, stt) + +@pytest.fixture +def big_bad_test_file(stt_user, stt): + """Fixture for bad_TANF_S1.""" + return util.create_test_datafile('bad_TANF_S1.txt', stt_user, stt) + +@pytest.fixture +def bad_trailer_file(stt_user, stt): + """Fixture for bad_trailer_1.""" + return util.create_test_datafile('bad_trailer_1.txt', stt_user, stt) + +@pytest.fixture +def bad_trailer_file_2(stt_user, stt): + """Fixture for bad_trailer_2.""" + return util.create_test_datafile('bad_trailer_2.txt', stt_user, stt) + +@pytest.fixture +def empty_file(stt_user, stt): + """Fixture for empty_file.""" + return util.create_test_datafile('empty_file', stt_user, stt) + +@pytest.fixture +def small_ssp_section1_datafile(stt_user, stt): + """Fixture for small_ssp_section1.""" + return util.create_test_datafile('small_ssp_section1.txt', stt_user, stt, 'SSP Active Case Data') + +@pytest.fixture +def ssp_section1_datafile(stt_user, stt): + """Fixture for ssp_section1_datafile.""" + return util.create_test_datafile('ssp_section1_datafile.txt', stt_user, stt, 'SSP Active Case Data') + +@pytest.fixture +def small_tanf_section1_datafile(stt_user, stt): + """Fixture for small_tanf_section1.""" + return util.create_test_datafile('small_tanf_section1.txt', stt_user, stt) + +@pytest.fixture +def super_big_s1_file(stt_user, stt): + """Fixture for ADS.E2J.NDM1.TS53_fake.""" + return util.create_test_datafile('ADS.E2J.NDM1.TS53_fake.txt', stt_user, stt) + +@pytest.fixture +def big_s1_rollback_file(stt_user, stt): + """Fixture for ADS.E2J.NDM1.TS53_fake.rollback.""" + return util.create_test_datafile('ADS.E2J.NDM1.TS53_fake.rollback.txt', stt_user, stt) + +@pytest.fixture +def bad_tanf_s1__row_missing_required_field(stt_user, stt): + """Fixture for small_tanf_section1.""" + return util.create_test_datafile('small_bad_tanf_s1.txt', stt_user, stt) + +@pytest.fixture +def bad_ssp_s1__row_missing_required_field(stt_user, stt): + """Fixture for ssp_section1_datafile.""" + return util.create_test_datafile('small_bad_ssp_s1.txt', stt_user, stt, 'SSP Active Case Data') + +@pytest.fixture +def small_tanf_section2_file(stt_user, stt): + """Fixture for tanf section2 datafile.""" + return util.create_test_datafile('small_tanf_section2.txt', stt_user, stt, 'Closed Case Data') + +@pytest.fixture +def tanf_section2_file(stt_user, stt): + """Fixture for ADS.E2J.FTP2.TS06.""" + return util.create_test_datafile('ADS.E2J.FTP2.TS06', stt_user, stt, 'Closed Case Data') + +@pytest.fixture +def tanf_section3_file(stt_user, stt): + """Fixture for ADS.E2J.FTP3.TS06.""" + return util.create_test_datafile('ADS.E2J.FTP3.TS06', stt_user, stt, "Aggregate Data") + +@pytest.fixture +def tanf_section1_file_with_blanks(stt_user, stt): + """Fixture for ADS.E2J.FTP3.TS06.""" + return util.create_test_datafile('tanf_section1_blanks.txt', stt_user, stt) + +@pytest.fixture +def tanf_section4_file(stt_user, stt): + """Fixture for ADS.E2J.FTP4.TS06.""" + return util.create_test_datafile('ADS.E2J.FTP4.TS06', stt_user, stt, "Stratum Data") + +@pytest.fixture +def bad_tanf_section4_file(stt_user, stt): + """Fixture for ADS.E2J.FTP4.TS06.""" + return util.create_test_datafile('bad_tanf_section_4.txt', stt_user, stt, "Stratum Data") + +@pytest.fixture +def ssp_section4_file(stt_user, stt): + """Fixture for ADS.E2J.NDM4.MS24.""" + return util.create_test_datafile('ADS.E2J.NDM4.MS24', stt_user, stt, "SSP Stratum Data") + +@pytest.fixture +def ssp_section2_rec_oadsi_file(stt_user, stt): + """Fixture for sp_section2_rec_oadsi_file.""" + return util.create_test_datafile('ssp_section2_rec_oadsi_file.txt', stt_user, stt, 'SSP Closed Case Data') + +@pytest.fixture +def ssp_section2_file(stt_user, stt): + """Fixture for ADS.E2J.NDM2.MS24.""" + return util.create_test_datafile('ADS.E2J.NDM2.MS24', stt_user, stt, 'SSP Closed Case Data') + +@pytest.fixture +def ssp_section3_file(stt_user, stt): + """Fixture for ADS.E2J.FTP3.TS06.""" + return util.create_test_datafile('ADS.E2J.NDM3.MS24', stt_user, stt, "SSP Aggregate Data") + +@pytest.fixture +def tribal_section_1_file(stt_user, stt): + """Fixture for ADS.E2J.FTP4.TS06.""" + return util.create_test_datafile('ADS.E2J.FTP1.TS142', stt_user, stt, "Tribal Active Case Data") + +@pytest.fixture +def tribal_section_1_inconsistency_file(stt_user, stt): + """Fixture for ADS.E2J.FTP4.TS06.""" + return util.create_test_datafile('tribal_section_1_inconsistency.txt', stt_user, stt, "Tribal Active Case Data") + +@pytest.fixture +def tribal_section_2_file(stt_user, stt): + """Fixture for ADS.E2J.FTP4.TS06.""" + return util.create_test_datafile('ADS.E2J.FTP2.TS142.txt', stt_user, stt, "Tribal Closed Case Data") + +@pytest.fixture +def tribal_section_3_file(stt_user, stt): + """Fixture for ADS.E2J.FTP3.TS142.""" + return util.create_test_datafile('ADS.E2J.FTP3.TS142', stt_user, stt, "Tribal Aggregate Data") + +@pytest.fixture +def tribal_section_4_file(stt_user, stt): + """Fixture for tribal_section_4_fake.txt.""" + return util.create_test_datafile('tribal_section_4_fake.txt', stt_user, stt, "Tribal Stratum Data") + +@pytest.fixture +def tanf_section_4_file_with_errors(stt_user, stt): + """Fixture for tanf_section4_with_errors.""" + return util.create_test_datafile('tanf_section4_with_errors.txt', stt_user, stt, "Stratum Data") + +@pytest.fixture +def no_records_file(stt_user, stt): + """Fixture for tanf_section4_with_errors.""" + return util.create_test_datafile('no_records.txt', stt_user, stt) + +@pytest.fixture +def tanf_section_1_file_with_bad_update_indicator(stt_user, stt): + """Fixture for tanf_section_1_file_with_bad_update_indicator.""" + return util.create_test_datafile('tanf_s1_bad_update_indicator.txt', stt_user, stt, "Active Case Data") + +@pytest.fixture +def tribal_section_4_bad_quarter(stt_user, stt): + """Fixture for tribal_section_4_bad_quarter.""" + return util.create_test_datafile('tribal_section_4_fake_bad_quarter.txt', stt_user, stt, "Tribal Stratum Data") + + +@pytest.fixture +def tanf_s1_exact_dup_file(): + """Fixture for a section 1 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + file__name='s1_exact_duplicate.txt', + file__section='Active Case Data', + file__data=(b'HEADER20204A06 TAN1 D\n' + b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000' + + b'000000000000222222000000002229012 \n' + b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000' + + b'000000000000222222000000002229012 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def tanf_s2_exact_dup_file(): + """Fixture for a section 2 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + section="Closed Case Data", + file__name='s2_exact_duplicate.txt', + file__section='Closed Case Data', + file__data=(b'HEADER20204C06 TAN1ED\n' + b'T42020101111111115825301400141123113 \n' + b'T42020101111111115825301400141123113 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def tanf_s3_exact_dup_file(): + """Fixture for a section 3 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="Aggregate Data", + file__name='s3_exact_duplicate.txt', + file__section='Aggregate Data', + file__data=(b'HEADER20214G06 TAN1 D\n' + b'T620214000127470001104500011146000043010000397700003924000084460000706800007222' + b'0000550428490000551413780000566432530007558100075921000755420000098100000970000' + b'0096800039298000393490003897200035302000356020003560200168447001690470016810700' + b'0464480004649800046203001219990012254900121904000001630000014900000151000003440' + b'000033100000276000002580000024100000187000054530000388100003884\n' + b'T620214000127470001104500011146000043010000397700003924000084460000706800007222' + b'0000550428490000551413780000566432530007558100075921000755420000098100000970000' + b'0096800039298000393490003897200035302000356020003560200168447001690470016810700' + b'0464480004649800046203001219990012254900121904000001630000014900000151000003440' + b'000033100000276000002580000024100000187000054530000388100003884\n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def tanf_s4_exact_dup_file(): + """Fixture for a section 4 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="Stratum Data", + file__name='s4_exact_duplicate.txt', + file__section='Stratum Data', + file__data=(b'HEADER20214S06 TAN1 D\n' + b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106' + b'000044600004360000325299000506200036070003385202000039100002740000499 ' + b' \n' + b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106' + b'000044600004360000325299000506200036070003385202000039100002740000499 ' + b' \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s1_exact_dup_file(): + """Fixture for a section 1 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2019, + quarter='Q1', + section='SSP Active Case Data', + file__name='s1_exact_duplicate.txt', + file__section='SSP Active Case Data', + file__data=(b'HEADER20184A24 SSP1ED\n' + b'M12018101111111112721401400351021331100273000000000000000105400000000000000000000000000000' + b'00000222222000000002229 \n' + b'M12018101111111112721401400351021331100273000000000000000105400000000000000000000000000000' + b'00000222222000000002229 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s2_exact_dup_file(): + """Fixture for a section 2 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2019, + quarter='Q1', + section="SSP Closed Case Data", + file__name='s2_exact_duplicate.txt', + file__section='SSP Closed Case Data', + file__data=(b'HEADER20184C24 SSP1ED\n' + b'M42018101111111116120000406911161113 \n' + b'M42018101111111116120000406911161113 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s3_exact_dup_file(): + """Fixture for a section 3 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="SSP Aggregate Data", + file__name='s3_exact_duplicate.txt', + file__section='SSP Aggregate Data', + file__data=(b'HEADER20214G24 SSP1 D\n' + b'M6202140001586900016008000159560000086100000851000008450001490500015055000150130000010300000' + b'10200000098000513550005169600051348000157070001581400015766000356480003588200035582000000000' + b'000000000000000000000000000000000000000000000000000000012020000118900001229\n' + b'M6202140001586900016008000159560000086100000851000008450001490500015055000150130000010300000' + b'10200000098000513550005169600051348000157070001581400015766000356480003588200035582000000000' + b'000000000000000000000000000000000000000000000000000000012020000118900001229\n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s4_exact_dup_file(): + """Fixture for a section 4 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="SSP Stratum Data", + file__name='s4_exact_duplicate.txt', + file__section='SSP Stratum Data', + file__data=(b'HEADER20214S24 SSP1 D\n' + b'M7202141010001769000131000011111020000748000076700007681030013352001393100140772000001202000' + b'11890001229 ' + b' \n' + b'M7202141010001769000131000011111020000748000076700007681030013352001393100140772000001202000' + b'11890001229 ' + b' \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def tanf_s1_partial_dup_file(): + """Fixture for a section 1 file containing an partial duplicate record.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + file__name='s1_partial_duplicate.txt', + file__section='Active Case Data', + file__data=(b'HEADER20204A06 TAN1 D\n' + b'T120201011111111112230034033611102121200003000000000000087300100000000000000' + + b'00000000000000000000222222000000002229012 \n' + b'T1202010111111111122300340336111021212000030000000000000873001000000000000000' + + b'0000000000000000000222222000000002229013 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def tanf_s2_partial_dup_file(): + """Fixture for a section 2 file containing an partial duplicate record.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + section="Closed Case Data", + file__name='s2_partial_duplicate.txt', + file__section='Closed Case Data', + file__data=(b'HEADER20204C06 TAN1ED\n' + b'T42020101111111115825301400141123113 \n' + b'T42020101111111115825301400141123114 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s1_partial_dup_file(): + """Fixture for a section 1 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2019, + quarter='Q1', + section='SSP Active Case Data', + file__name='s1_exact_duplicate.txt', + file__section='SSP Active Case Data', + file__data=(b'HEADER20184A24 SSP1ED\n' + b'M12018101111111112721401400351021331100273000000000000000105400000000000000000000000000' + b'00000000222222000000002229 \n' + b'M12018101111111112721401400351021331100273000000000000000105400000000000000000000000000' + b'00000000222222000000002228 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def ssp_s2_partial_dup_file(): + """Fixture for a section 2 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2019, + quarter='Q1', + section="SSP Closed Case Data", + file__name='s2_exact_duplicate.txt', + file__section='SSP Closed Case Data', + file__data=(b'HEADER20184C24 SSP1ED\n' + b'M42018101111111116120000406911161113 \n' + b'M42018101111111116120000406911161112 \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 92b70c8c5..e1220df03 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -11,9 +11,8 @@ from tdpservice.search_indexes.models.tribal import Tribal_TANF_T5, Tribal_TANF_T6, Tribal_TANF_T7 from tdpservice.search_indexes.models.ssp import SSP_M1, SSP_M2, SSP_M3, SSP_M4, SSP_M5, SSP_M6, SSP_M7 from tdpservice.search_indexes import documents -from .factories import DataFileSummaryFactory, ParsingFileFactory from tdpservice.data_files.models import DataFile -from .. import schema_defs, aggregates, util +from .. import schema_defs, aggregates from elasticsearch.helpers.errors import BulkIndexError import logging logger = logging.getLogger(__name__) @@ -24,39 +23,6 @@ settings.GENERATE_TRAILER_ERRORS = True -@pytest.fixture -def test_datafile(stt_user, stt): - """Fixture for small_correct_file.""" - return util.create_test_datafile('small_correct_file.txt', stt_user, stt) - - -@pytest.fixture -def test_header_datafile(stt_user, stt): - """Fixture for header test.""" - return util.create_test_datafile('tanf_section1_header_test.txt', stt_user, stt) - - -@pytest.fixture -def dfs(): - """Fixture for DataFileSummary.""" - return DataFileSummaryFactory.build() - - -@pytest.fixture -def t2_invalid_dob_file(): - """Fixture for T2 file with an invalid DOB.""" - parsing_file = ParsingFileFactory( - year=2021, - quarter='Q1', - file__name='t2_invalid_dob_file.txt', - file__section='Active Case Data', - file__data=(b'HEADER20204A25 TAN1ED\n' - b'T22020101111111111212Q897$9 3WTTTTTY@W222122222222101221211001472201140000000000000000000000000' - b'0000000000000000000000000000000000000000000000000000000000291\n' - b'TRAILER0000001 ') - ) - return parsing_file - # TODO: the name of this test doesn't make perfect sense anymore since it will always have errors and no records now. @pytest.mark.django_db def test_parse_small_correct_file(test_datafile, dfs): @@ -156,13 +122,6 @@ def test_parse_wrong_program_type(test_datafile, dfs): 'document': [err] } - -@pytest.fixture -def test_big_file(stt_user, stt): - """Fixture for ADS.E2J.FTP1.TS06.""" - return util.create_test_datafile('ADS.E2J.FTP1.TS06', stt_user, stt) - - @pytest.mark.django_db def test_parse_big_file(test_big_file, dfs): """Test parsing of ADS.E2J.FTP1.TS06.""" @@ -209,12 +168,6 @@ def test_parse_big_file(test_big_file, dfs): search.delete() -@pytest.fixture -def bad_test_file(stt_user, stt): - """Fixture for bad_TANF_S2.""" - return util.create_test_datafile('bad_TANF_S2.txt', stt_user, stt) - - @pytest.mark.django_db def test_parse_bad_test_file(bad_test_file, dfs): """Test parsing of bad_TANF_S2.""" @@ -235,12 +188,6 @@ def test_parse_bad_test_file(bad_test_file, dfs): } -@pytest.fixture -def bad_file_missing_header(stt_user, stt): - """Fixture for bad_missing_header.""" - return util.create_test_datafile('bad_missing_header.txt', stt_user, stt) - - @pytest.mark.django_db def test_parse_bad_file_missing_header(bad_file_missing_header, dfs): """Test parsing of bad_missing_header.""" @@ -264,12 +211,6 @@ def test_parse_bad_file_missing_header(bad_file_missing_header, dfs): } -@pytest.fixture -def bad_file_multiple_headers(stt_user, stt): - """Fixture for bad_two_headers.""" - return util.create_test_datafile('bad_two_headers.txt', stt_user, stt) - - @pytest.mark.django_db def test_parse_bad_file_multiple_headers(bad_file_multiple_headers, dfs): """Test parsing of bad_two_headers.""" @@ -293,12 +234,6 @@ def test_parse_bad_file_multiple_headers(bad_file_multiple_headers, dfs): assert errors['document'] == ['Multiple headers found.'] -@pytest.fixture -def big_bad_test_file(stt_user, stt): - """Fixture for bad_TANF_S1.""" - return util.create_test_datafile('bad_TANF_S1.txt', stt_user, stt) - - @pytest.mark.django_db def test_parse_big_bad_test_file(big_bad_test_file, dfs): """Test parsing of bad_TANF_S1.""" @@ -318,12 +253,6 @@ def test_parse_big_bad_test_file(big_bad_test_file, dfs): assert err.object_id is None -@pytest.fixture -def bad_trailer_file(stt_user, stt): - """Fixture for bad_trailer_1.""" - return util.create_test_datafile('bad_trailer_1.txt', stt_user, stt) - - @pytest.mark.django_db def test_parse_bad_trailer_file(bad_trailer_file, dfs): """Test parsing bad_trailer_1.""" @@ -372,12 +301,6 @@ def test_parse_bad_trailer_file(bad_trailer_file, dfs): } -@pytest.fixture -def bad_trailer_file_2(stt_user, stt): - """Fixture for bad_trailer_2.""" - return util.create_test_datafile('bad_trailer_2.txt', stt_user, stt) - - @pytest.mark.django_db() def test_parse_bad_trailer_file2(bad_trailer_file_2, dfs): """Test parsing bad_trailer_2.""" @@ -466,11 +389,6 @@ def test_parse_bad_trailer_file2(bad_trailer_file_2, dfs): assert trailer_error_4.content_type is None assert trailer_error_4.object_id is None -@pytest.fixture -def empty_file(stt_user, stt): - """Fixture for empty_file.""" - return util.create_test_datafile('empty_file', stt_user, stt) - @pytest.mark.django_db def test_parse_empty_file(empty_file, dfs): @@ -512,12 +430,6 @@ def test_parse_empty_file(empty_file, dfs): } -@pytest.fixture -def small_ssp_section1_datafile(stt_user, stt): - """Fixture for small_ssp_section1.""" - return util.create_test_datafile('small_ssp_section1.txt', stt_user, stt, 'SSP Active Case Data') - - @pytest.mark.django_db def test_parse_small_ssp_section1_datafile(small_ssp_section1_datafile, dfs): """Test parsing small_ssp_section1_datafile.""" @@ -558,12 +470,6 @@ def test_parse_small_ssp_section1_datafile(small_ssp_section1_datafile, dfs): assert SSP_M3.objects.count() == expected_m3_record_count -@pytest.fixture -def ssp_section1_datafile(stt_user, stt): - """Fixture for ssp_section1_datafile.""" - return util.create_test_datafile('ssp_section1_datafile.txt', stt_user, stt, 'SSP Active Case Data') - - @pytest.mark.django_db() def test_parse_ssp_section1_datafile(ssp_section1_datafile, dfs): """Test parsing ssp_section1_datafile.""" @@ -603,12 +509,6 @@ def test_parse_ssp_section1_datafile(ssp_section1_datafile, dfs): assert SSP_M3.objects.count() == expected_m3_record_count -@pytest.fixture -def small_tanf_section1_datafile(stt_user, stt): - """Fixture for small_tanf_section1.""" - return util.create_test_datafile('small_tanf_section1.txt', stt_user, stt) - - @pytest.mark.django_db def test_parse_tanf_section1_datafile(small_tanf_section1_datafile, dfs): """Test parsing of small_tanf_section1_datafile and validate T2 model data.""" @@ -690,12 +590,6 @@ def test_parse_tanf_section1_datafile_t3s(small_tanf_section1_datafile, dfs): assert t3_6.EDUCATION_LEVEL == '98' -@pytest.fixture -def super_big_s1_file(stt_user, stt): - """Fixture for ADS.E2J.NDM1.TS53_fake.""" - return util.create_test_datafile('ADS.E2J.NDM1.TS53_fake.txt', stt_user, stt) - - @pytest.mark.django_db() @pytest.mark.skip(reason="long runtime") # big_files def test_parse_super_big_s1_file(super_big_s1_file, dfs): @@ -738,12 +632,6 @@ def test_parse_super_big_s1_file(super_big_s1_file, dfs): search.delete() -@pytest.fixture -def big_s1_rollback_file(stt_user, stt): - """Fixture for ADS.E2J.NDM1.TS53_fake.rollback.""" - return util.create_test_datafile('ADS.E2J.NDM1.TS53_fake.rollback.txt', stt_user, stt) - - @pytest.mark.django_db() def test_parse_big_s1_file_with_rollback(big_s1_rollback_file, dfs): """Test parsing of big_s1_rollback_file. @@ -792,11 +680,6 @@ def test_parse_big_s1_file_with_rollback(big_s1_rollback_file, dfs): ) assert search.count() == 0 -@pytest.fixture -def bad_tanf_s1__row_missing_required_field(stt_user, stt): - """Fixture for small_tanf_section1.""" - return util.create_test_datafile('small_bad_tanf_s1.txt', stt_user, stt) - @pytest.mark.django_db def test_parse_bad_tfs1_missing_required(bad_tanf_s1__row_missing_required_field, dfs): @@ -839,12 +722,6 @@ def test_parse_bad_tfs1_missing_required(bad_tanf_s1__row_missing_required_field assert row_5_error.object_id is None -@pytest.fixture -def bad_ssp_s1__row_missing_required_field(stt_user, stt): - """Fixture for ssp_section1_datafile.""" - return util.create_test_datafile('small_bad_ssp_s1.txt', stt_user, stt, 'SSP Active Case Data') - - @pytest.mark.django_db() def test_parse_bad_ssp_s1_missing_required(bad_ssp_s1__row_missing_required_field, dfs): """Test parsing a bad TANF Section 1 submission where a row is missing required data.""" @@ -966,12 +843,6 @@ def test_get_schema_options(dfs): # get ref section -@pytest.fixture -def small_tanf_section2_file(stt_user, stt): - """Fixture for tanf section2 datafile.""" - return util.create_test_datafile('small_tanf_section2.txt', stt_user, stt, 'Closed Case Data') - - @pytest.mark.django_db() def test_parse_small_tanf_section2_file(small_tanf_section2_file, dfs): """Test parsing a small TANF Section 2 submission.""" @@ -1000,12 +871,6 @@ def test_parse_small_tanf_section2_file(small_tanf_section2_file, dfs): assert t5.AMOUNT_UNEARNED_INCOME == '0000' -@pytest.fixture -def tanf_section2_file(stt_user, stt): - """Fixture for ADS.E2J.FTP2.TS06.""" - return util.create_test_datafile('ADS.E2J.FTP2.TS06', stt_user, stt, 'Closed Case Data') - - @pytest.mark.django_db() def test_parse_tanf_section2_file(tanf_section2_file, dfs): """Test parsing TANF Section 2 submission.""" @@ -1026,12 +891,6 @@ def test_parse_tanf_section2_file(tanf_section2_file, dfs): assert err.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY -@pytest.fixture -def tanf_section3_file(stt_user, stt): - """Fixture for ADS.E2J.FTP3.TS06.""" - return util.create_test_datafile('ADS.E2J.FTP3.TS06', stt_user, stt, "Aggregate Data") - - @pytest.mark.django_db() def test_parse_tanf_section3_file(tanf_section3_file, dfs): """Test parsing TANF Section 3 submission.""" @@ -1076,10 +935,6 @@ def test_parse_tanf_section3_file(tanf_section3_file, dfs): assert second.NUM_CLOSED_CASES == 3881 assert third.NUM_CLOSED_CASES == 5453 -@pytest.fixture -def tanf_section1_file_with_blanks(stt_user, stt): - """Fixture for ADS.E2J.FTP3.TS06.""" - return util.create_test_datafile('tanf_section1_blanks.txt', stt_user, stt) @pytest.mark.django_db() def test_parse_tanf_section1_blanks_file(tanf_section1_file_with_blanks, dfs): @@ -1108,11 +963,6 @@ def test_parse_tanf_section1_blanks_file(tanf_section1_file_with_blanks, dfs): assert t2.MARITAL_STATUS is None assert t3.CITIZENSHIP_STATUS is None -@pytest.fixture -def tanf_section4_file(stt_user, stt): - """Fixture for ADS.E2J.FTP4.TS06.""" - return util.create_test_datafile('ADS.E2J.FTP4.TS06', stt_user, stt, "Stratum Data") - @pytest.mark.django_db() def test_parse_tanf_section4_file(tanf_section4_file, dfs): @@ -1155,12 +1005,6 @@ def test_parse_tanf_section4_file(tanf_section4_file, dfs): assert sixth.FAMILIES_MONTH == 499 -@pytest.fixture -def bad_tanf_section4_file(stt_user, stt): - """Fixture for ADS.E2J.FTP4.TS06.""" - return util.create_test_datafile('bad_tanf_section_4.txt', stt_user, stt, "Stratum Data") - - @pytest.mark.django_db() def test_parse_bad_tanf_section4_file(bad_tanf_section4_file, dfs): """Test parsing TANF Section 4 submission when no records are created.""" @@ -1196,11 +1040,6 @@ def test_parse_bad_tanf_section4_file(bad_tanf_section4_file, dfs): error.error_type == ParserErrorCategoryChoices.PRE_CHECK -@pytest.fixture -def ssp_section4_file(stt_user, stt): - """Fixture for ADS.E2J.NDM4.MS24.""" - return util.create_test_datafile('ADS.E2J.NDM4.MS24', stt_user, stt, "SSP Stratum Data") - @pytest.mark.django_db() def test_parse_ssp_section4_file(ssp_section4_file, dfs): """Test parsing SSP Section 4 submission.""" @@ -1228,11 +1067,6 @@ def test_parse_ssp_section4_file(ssp_section4_file, dfs): assert first.RPT_MONTH_YEAR == 202110 assert first.FAMILIES_MONTH == 748 -@pytest.fixture -def ssp_section2_rec_oadsi_file(stt_user, stt): - """Fixture for sp_section2_rec_oadsi_file.""" - return util.create_test_datafile('ssp_section2_rec_oadsi_file.txt', stt_user, stt, 'SSP Closed Case Data') - @pytest.mark.django_db() def test_parse_ssp_section2_rec_oadsi_file(ssp_section2_rec_oadsi_file, dfs): @@ -1248,11 +1082,6 @@ def test_parse_ssp_section2_rec_oadsi_file(ssp_section2_rec_oadsi_file, dfs): assert parser_errors.count() == 0 -@pytest.fixture -def ssp_section2_file(stt_user, stt): - """Fixture for ADS.E2J.NDM2.MS24.""" - return util.create_test_datafile('ADS.E2J.NDM2.MS24', stt_user, stt, 'SSP Closed Case Data') - @pytest.mark.django_db() def test_parse_ssp_section2_file(ssp_section2_file, dfs): """Test parsing SSP Section 2 submission.""" @@ -1304,10 +1133,6 @@ def test_parse_ssp_section2_file(ssp_section2_file, dfs): assert m5.AMOUNT_EARNED_INCOME == '0000' assert m5.AMOUNT_UNEARNED_INCOME == '0000' -@pytest.fixture -def ssp_section3_file(stt_user, stt): - """Fixture for ADS.E2J.FTP3.TS06.""" - return util.create_test_datafile('ADS.E2J.NDM3.MS24', stt_user, stt, "SSP Aggregate Data") @pytest.mark.django_db() def test_parse_ssp_section3_file(ssp_section3_file, dfs): @@ -1386,10 +1211,6 @@ def test_rpt_month_year_mismatch(test_header_datafile, dfs): assert err.error_message == "Submitted reporting year:2020, quarter:Q4 doesn't" + \ " match file reporting year:2023, quarter:Q1." -@pytest.fixture -def tribal_section_1_file(stt_user, stt): - """Fixture for ADS.E2J.FTP4.TS06.""" - return util.create_test_datafile('ADS.E2J.FTP1.TS142', stt_user, stt, "Tribal Active Case Data") @pytest.mark.django_db() def test_parse_tribal_section_1_file(tribal_section_1_file, dfs): @@ -1428,10 +1249,6 @@ def test_parse_tribal_section_1_file(tribal_section_1_file, dfs): assert t2.MONTHS_FED_TIME_LIMIT == ' 0' assert t3.EDUCATION_LEVEL == '98' -@pytest.fixture -def tribal_section_1_inconsistency_file(stt_user, stt): - """Fixture for ADS.E2J.FTP4.TS06.""" - return util.create_test_datafile('tribal_section_1_inconsistency.txt', stt_user, stt, "Tribal Active Case Data") @pytest.mark.django_db() def test_parse_tribal_section_1_inconsistency_file(tribal_section_1_inconsistency_file, dfs): @@ -1446,10 +1263,6 @@ def test_parse_tribal_section_1_inconsistency_file(tribal_section_1_inconsistenc assert parser_errors.first().error_message == "Tribe Code (142) inconsistency with Program Type (TAN) " + \ "and FIPS Code (01)." -@pytest.fixture -def tribal_section_2_file(stt_user, stt): - """Fixture for ADS.E2J.FTP4.TS06.""" - return util.create_test_datafile('ADS.E2J.FTP2.TS142.txt', stt_user, stt, "Tribal Closed Case Data") @pytest.mark.django_db() def test_parse_tribal_section_2_file(tribal_section_2_file, dfs): @@ -1488,10 +1301,6 @@ def test_parse_tribal_section_2_file(tribal_section_2_file, dfs): assert t4.CLOSURE_REASON == 8 assert t5.COUNTABLE_MONTH_FED_TIME == ' 8' -@pytest.fixture -def tribal_section_3_file(stt_user, stt): - """Fixture for ADS.E2J.FTP3.TS142.""" - return util.create_test_datafile('ADS.E2J.FTP3.TS142', stt_user, stt, "Tribal Aggregate Data") @pytest.mark.django_db() def test_parse_tribal_section_3_file(tribal_section_3_file, dfs): @@ -1524,10 +1333,6 @@ def test_parse_tribal_section_3_file(tribal_section_3_file, dfs): assert t6.NUM_FAMILIES == 41 assert t6.NUM_CLOSED_CASES == 3 -@pytest.fixture -def tribal_section_4_file(stt_user, stt): - """Fixture for tribal_section_4_fake.txt.""" - return util.create_test_datafile('tribal_section_4_fake.txt', stt_user, stt, "Tribal Stratum Data") @pytest.mark.django_db() def test_parse_tribal_section_4_file(tribal_section_4_file, dfs): @@ -1621,11 +1426,6 @@ def test_bulk_create_returns_rollback_response_on_bulk_index_exception(test_data assert TANF_T3.objects.all().count() == 1 -@pytest.fixture -def tanf_section_4_file_with_errors(stt_user, stt): - """Fixture for tanf_section4_with_errors.""" - return util.create_test_datafile('tanf_section4_with_errors.txt', stt_user, stt, "Stratum Data") - @pytest.mark.django_db() def test_parse_tanf_section4_file_with_errors(tanf_section_4_file_with_errors, dfs): """Test parsing TANF Section 4 submission.""" @@ -1667,11 +1467,6 @@ def test_parse_tanf_section4_file_with_errors(tanf_section_4_file_with_errors, d assert sixth.FAMILIES_MONTH == 446 -@pytest.fixture -def no_records_file(stt_user, stt): - """Fixture for tanf_section4_with_errors.""" - return util.create_test_datafile('no_records.txt', stt_user, stt) - @pytest.mark.django_db() def test_parse_no_records_file(no_records_file, dfs): """Test parsing TANF Section 4 submission.""" @@ -1693,11 +1488,6 @@ def test_parse_no_records_file(no_records_file, dfs): assert error.object_id is None -@pytest.fixture -def tanf_section_1_file_with_bad_update_indicator(stt_user, stt): - """Fixture for tanf_section_1_file_with_bad_update_indicator.""" - return util.create_test_datafile('tanf_s1_bad_update_indicator.txt', stt_user, stt, "Active Case Data") - @pytest.mark.django_db() def test_parse_tanf_section_1_file_with_bad_update_indicator(tanf_section_1_file_with_bad_update_indicator, dfs): """Test parsing TANF Section 1 submission update indicator.""" @@ -1714,10 +1504,6 @@ def test_parse_tanf_section_1_file_with_bad_update_indicator(tanf_section_1_file assert error.error_type == ParserErrorCategoryChoices.FIELD_VALUE assert error.error_message == "HEADER update indicator: U does not match D." -@pytest.fixture -def tribal_section_4_bad_quarter(stt_user, stt): - """Fixture for tribal_section_4_bad_quarter.""" - return util.create_test_datafile('tribal_section_4_fake_bad_quarter.txt', stt_user, stt, "Tribal Stratum Data") @pytest.mark.django_db() def test_parse_tribal_section_4_bad_quarter(tribal_section_4_bad_quarter, dfs): @@ -1736,163 +1522,6 @@ def test_parse_tribal_section_4_bad_quarter(tribal_section_4_bad_quarter, dfs): Tribal_TANF_T7.objects.count() == 0 -@pytest.fixture -def tanf_s1_exact_dup_file(): - """Fixture for a section 1 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2021, - quarter='Q1', - file__name='s1_exact_duplicate.txt', - file__section='Active Case Data', - file__data=(b'HEADER20204A06 TAN1 D\n' - b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000' + - b'000000000000222222000000002229012 \n' - b'T12020101111111111223003403361110212120000300000000000008730010000000000000000000000' + - b'000000000000222222000000002229012 \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def tanf_s2_exact_dup_file(): - """Fixture for a section 2 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2021, - quarter='Q1', - section="Closed Case Data", - file__name='s2_exact_duplicate.txt', - file__section='Closed Case Data', - file__data=(b'HEADER20204C06 TAN1ED\n' - b'T42020101111111115825301400141123113 \n' - b'T42020101111111115825301400141123113 \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def tanf_s3_exact_dup_file(): - """Fixture for a section 3 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2022, - quarter='Q1', - section="Aggregate Data", - file__name='s3_exact_duplicate.txt', - file__section='Aggregate Data', - file__data=(b'HEADER20214G06 TAN1 D\n' - b'T620214000127470001104500011146000043010000397700003924000084460000706800007222' - b'0000550428490000551413780000566432530007558100075921000755420000098100000970000' - b'0096800039298000393490003897200035302000356020003560200168447001690470016810700' - b'0464480004649800046203001219990012254900121904000001630000014900000151000003440' - b'000033100000276000002580000024100000187000054530000388100003884\n' - b'T620214000127470001104500011146000043010000397700003924000084460000706800007222' - b'0000550428490000551413780000566432530007558100075921000755420000098100000970000' - b'0096800039298000393490003897200035302000356020003560200168447001690470016810700' - b'0464480004649800046203001219990012254900121904000001630000014900000151000003440' - b'000033100000276000002580000024100000187000054530000388100003884\n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def tanf_s4_exact_dup_file(): - """Fixture for a section 4 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2022, - quarter='Q1', - section="Stratum Data", - file__name='s4_exact_duplicate.txt', - file__section='Stratum Data', - file__data=(b'HEADER20214S06 TAN1 D\n' - b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106' - b'000044600004360000325299000506200036070003385202000039100002740000499 ' - b' \n' - b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106' - b'000044600004360000325299000506200036070003385202000039100002740000499 ' - b' \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def ssp_s1_exact_dup_file(): - """Fixture for a section 1 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2019, - quarter='Q1', - section='SSP Active Case Data', - file__name='s1_exact_duplicate.txt', - file__section='SSP Active Case Data', - file__data=(b'HEADER20184A24 SSP1ED\n' - b'M1201810111111111272140140035102133110027300000000000000010540000000000000000000000000000000000222222000000002229 \n' - b'M1201810111111111272140140035102133110027300000000000000010540000000000000000000000000000000000222222000000002229 \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def ssp_s2_exact_dup_file(): - """Fixture for a section 2 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2019, - quarter='Q1', - section="SSP Closed Case Data", - file__name='s2_exact_duplicate.txt', - file__section='SSP Closed Case Data', - file__data=(b'HEADER20184C24 SSP1ED\n' - b'M42018101111111116120000406911161113 \n' - b'M42018101111111116120000406911161113 \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def ssp_s3_exact_dup_file(): - """Fixture for a section 3 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2022, - quarter='Q1', - section="SSP Aggregate Data", - file__name='s3_exact_duplicate.txt', - file__section='SSP Aggregate Data', - file__data=(b'HEADER20214G24 SSP1 D\n' - b'M6202140001586900016008000159560000086100000851000008450001490500015055000150130000010300000' - b'10200000098000513550005169600051348000157070001581400015766000356480003588200035582000000000' - b'000000000000000000000000000000000000000000000000000000012020000118900001229\n' - b'M6202140001586900016008000159560000086100000851000008450001490500015055000150130000010300000' - b'10200000098000513550005169600051348000157070001581400015766000356480003588200035582000000000' - b'000000000000000000000000000000000000000000000000000000012020000118900001229\n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def ssp_s4_exact_dup_file(): - """Fixture for a section 4 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2022, - quarter='Q1', - section="SSP Stratum Data", - file__name='s4_exact_duplicate.txt', - file__section='SSP Stratum Data', - file__data=(b'HEADER20214S24 SSP1 D\n' - b'M7202141010001769000131000011111020000748000076700007681030013352001393100140772000001202000' - b'11890001229 ' - b' \n' - b'M7202141010001769000131000011111020000748000076700007681030013352001393100140772000001202000' - b'11890001229 ' - b' \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - @pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ ('tanf_s1_exact_dup_file', 10000, TANF_T1, "T1", 4), ('tanf_s1_exact_dup_file', 1, TANF_T1, "T1", 4), # This forces an in memory and database deletion of records. @@ -1932,75 +1561,6 @@ def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, model.objects.count() == 0 -@pytest.fixture -def tanf_s1_partial_dup_file(): - """Fixture for a section 1 file containing an partial duplicate record.""" - parsing_file = ParsingFileFactory( - year=2021, - quarter='Q1', - file__name='s1_partial_duplicate.txt', - file__section='Active Case Data', - file__data=(b'HEADER20204A06 TAN1 D\n' - b'T120201011111111112230034033611102121200003000000000000087300100000000000000' + - b'00000000000000000000222222000000002229012 \n' - b'T1202010111111111122300340336111021212000030000000000000873001000000000000000' + - b'0000000000000000000222222000000002229013 \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def tanf_s2_partial_dup_file(): - """Fixture for a section 2 file containing an partial duplicate record.""" - parsing_file = ParsingFileFactory( - year=2021, - quarter='Q1', - section="Closed Case Data", - file__name='s2_partial_duplicate.txt', - file__section='Closed Case Data', - file__data=(b'HEADER20204C06 TAN1ED\n' - b'T42020101111111115825301400141123113 \n' - b'T42020101111111115825301400141123114 \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def ssp_s1_partial_dup_file(): - """Fixture for a section 1 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2019, - quarter='Q1', - section='SSP Active Case Data', - file__name='s1_exact_duplicate.txt', - file__section='SSP Active Case Data', - file__data=(b'HEADER20184A24 SSP1ED\n' - b'M1201810111111111272140140035102133110027300000000000000010540000000000000000000000000000000000222222000000002229 \n' - b'M1201810111111111272140140035102133110027300000000000000010540000000000000000000000000000000000222222000000002228 \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - -@pytest.fixture -def ssp_s2_partial_dup_file(): - """Fixture for a section 2 file containing an exact duplicate record.""" - parsing_file = ParsingFileFactory( - year=2019, - quarter='Q1', - section="SSP Closed Case Data", - file__name='s2_exact_duplicate.txt', - file__section='SSP Closed Case Data', - file__data=(b'HEADER20184C24 SSP1ED\n' - b'M42018101111111116120000406911161113 \n' - b'M42018101111111116120000406911161112 \n' - b'TRAILER0000001 ' - ) - ) - return parsing_file - @pytest.mark.parametrize("file, batch_size, model, record_type", [ ('tanf_s1_partial_dup_file', 10000, TANF_T1, "T1"), ('tanf_s1_partial_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. @@ -2024,8 +1584,8 @@ def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, requ error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') for e in parser_errors: assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - - # This does not generate 4 errors similarly to above because the case has cat2/3 errors. Therefore, + + # This does not generate 4 errors similarly to above because the case has cat2/3 errors. Therefore, # normal cat4 validation is skipped. assert parser_errors.count() == 1 From a5dcf043e5c5c60577194d8efca1a06f9763df6d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 1 May 2024 12:50:09 -0600 Subject: [PATCH 062/126] - Move conftest.py to the test folder --- tdrs-backend/tdpservice/parsers/{ => test}/conftest.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tdrs-backend/tdpservice/parsers/{ => test}/conftest.py (100%) diff --git a/tdrs-backend/tdpservice/parsers/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py similarity index 100% rename from tdrs-backend/tdpservice/parsers/conftest.py rename to tdrs-backend/tdpservice/parsers/test/conftest.py From 114a0a212d4dce883d7c80f48df2ecdb2a5c2762 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 1 May 2024 12:52:43 -0600 Subject: [PATCH 063/126] - removing whitespace --- tdrs-backend/tdpservice/parsers/test/conftest.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index 61e098bb5..6a16b6865 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -8,19 +8,16 @@ def test_datafile(stt_user, stt): """Fixture for small_correct_file.""" return util.create_test_datafile('small_correct_file.txt', stt_user, stt) - @pytest.fixture def test_header_datafile(stt_user, stt): """Fixture for header test.""" return util.create_test_datafile('tanf_section1_header_test.txt', stt_user, stt) - @pytest.fixture def dfs(): """Fixture for DataFileSummary.""" return DataFileSummaryFactory.build() - @pytest.fixture def t2_invalid_dob_file(): """Fixture for T2 file with an invalid DOB.""" @@ -206,7 +203,6 @@ def tribal_section_4_bad_quarter(stt_user, stt): """Fixture for tribal_section_4_bad_quarter.""" return util.create_test_datafile('tribal_section_4_fake_bad_quarter.txt', stt_user, stt, "Tribal Stratum Data") - @pytest.fixture def tanf_s1_exact_dup_file(): """Fixture for a section 1 file containing an exact duplicate record.""" From f71bc04d7b7ef598396bfcf12c713284790567d2 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 14 May 2024 09:27:50 -0400 Subject: [PATCH 064/126] - Remove 'test' from fixture names --- .../tdpservice/parsers/test/conftest.py | 6 +- .../tdpservice/parsers/test/test_parse.py | 76 +++++++++---------- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index 6a16b6865..c6eee578d 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -4,12 +4,12 @@ from tdpservice.parsers import util @pytest.fixture -def test_datafile(stt_user, stt): +def small_correct_file(stt_user, stt): """Fixture for small_correct_file.""" return util.create_test_datafile('small_correct_file.txt', stt_user, stt) @pytest.fixture -def test_header_datafile(stt_user, stt): +def header_datafile(stt_user, stt): """Fixture for header test.""" return util.create_test_datafile('tanf_section1_header_test.txt', stt_user, stt) @@ -34,7 +34,7 @@ def t2_invalid_dob_file(): return parsing_file @pytest.fixture -def test_big_file(stt_user, stt): +def big_file(stt_user, stt): """Fixture for ADS.E2J.FTP1.TS06.""" return util.create_test_datafile('ADS.E2J.FTP1.TS06', stt_user, stt) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index e1220df03..1071a29a8 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -25,16 +25,16 @@ # TODO: the name of this test doesn't make perfect sense anymore since it will always have errors and no records now. @pytest.mark.django_db -def test_parse_small_correct_file(test_datafile, dfs): +def test_parse_small_correct_file(small_correct_file, dfs): """Test parsing of small_correct_file.""" - test_datafile.year = 2021 - test_datafile.quarter = 'Q1' - test_datafile.save() - dfs.datafile = test_datafile + small_correct_file.year = 2021 + small_correct_file.quarter = 'Q1' + small_correct_file.save() + dfs.datafile = small_correct_file - parse.parse_datafile(test_datafile, dfs) + parse.parse_datafile(small_correct_file, dfs) - errors = ParserError.objects.filter(file=test_datafile).order_by('id') + errors = ParserError.objects.filter(file=small_correct_file).order_by('id') assert errors.count() == 2 assert errors.first().error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY @@ -58,17 +58,17 @@ def test_parse_small_correct_file(test_datafile, dfs): @pytest.mark.django_db -def test_parse_section_mismatch(test_datafile, dfs): +def test_parse_section_mismatch(small_correct_file, dfs): """Test parsing of small_correct_file where the DataFile section doesn't match the rawfile section.""" - test_datafile.section = 'Closed Case Data' - test_datafile.save() + small_correct_file.section = 'Closed Case Data' + small_correct_file.save() - dfs.datafile = test_datafile + dfs.datafile = small_correct_file - errors = parse.parse_datafile(test_datafile, dfs) + errors = parse.parse_datafile(small_correct_file, dfs) dfs.status = dfs.get_status() assert dfs.status == DataFileSummary.Status.REJECTED - parser_errors = ParserError.objects.filter(file=test_datafile) + parser_errors = ParserError.objects.filter(file=small_correct_file) dfs.case_aggregates = aggregates.case_aggregates_by_month( dfs.datafile, dfs.status) assert dfs.case_aggregates == {'rejected': 1, @@ -98,17 +98,17 @@ def test_parse_section_mismatch(test_datafile, dfs): @pytest.mark.django_db -def test_parse_wrong_program_type(test_datafile, dfs): +def test_parse_wrong_program_type(small_correct_file, dfs): """Test parsing of small_correct_file where the DataFile program type doesn't match the rawfile.""" - test_datafile.section = 'SSP Active Case Data' - test_datafile.save() + small_correct_file.section = 'SSP Active Case Data' + small_correct_file.save() - dfs.datafile = test_datafile + dfs.datafile = small_correct_file dfs.save() - errors = parse.parse_datafile(test_datafile, dfs) + errors = parse.parse_datafile(small_correct_file, dfs) assert dfs.get_status() == DataFileSummary.Status.REJECTED - parser_errors = ParserError.objects.filter(file=test_datafile) + parser_errors = ParserError.objects.filter(file=small_correct_file) assert parser_errors.count() == 1 err = parser_errors.first() @@ -123,15 +123,15 @@ def test_parse_wrong_program_type(test_datafile, dfs): } @pytest.mark.django_db -def test_parse_big_file(test_big_file, dfs): +def test_parse_big_file(big_file, dfs): """Test parsing of ADS.E2J.FTP1.TS06.""" expected_t1_record_count = 815 expected_t2_record_count = 882 expected_t3_record_count = 1376 - dfs.datafile = test_big_file + dfs.datafile = big_file - parse.parse_datafile(test_big_file, dfs) + parse.parse_datafile(big_file, dfs) dfs.status = dfs.get_status() assert dfs.status == DataFileSummary.Status.ACCEPTED_WITH_ERRORS dfs.case_aggregates = aggregates.case_aggregates_by_month( @@ -148,21 +148,21 @@ def test_parse_big_file(test_big_file, dfs): search = documents.tanf.TANF_T1DataSubmissionDocument.search().query( 'match', - datafile__id=test_big_file.id + datafile__id=big_file.id ) assert search.count() == expected_t1_record_count search.delete() search = documents.tanf.TANF_T2DataSubmissionDocument.search().query( 'match', - datafile__id=test_big_file.id + datafile__id=big_file.id ) assert search.count() == expected_t2_record_count search.delete() search = documents.tanf.TANF_T3DataSubmissionDocument.search().query( 'match', - datafile__id=test_big_file.id + datafile__id=big_file.id ) assert search.count() == expected_t3_record_count search.delete() @@ -779,18 +779,18 @@ def test_parse_bad_ssp_s1_missing_required(bad_ssp_s1__row_missing_required_fiel assert trailer_error.object_id is None @pytest.mark.django_db -def test_dfs_set_case_aggregates(test_datafile, dfs): +def test_dfs_set_case_aggregates(small_correct_file, dfs): """Test that the case aggregates are set correctly.""" - test_datafile.year = 2020 - test_datafile.quarter = 'Q3' - test_datafile.section = 'Active Case Data' - test_datafile.save() + small_correct_file.year = 2020 + small_correct_file.quarter = 'Q3' + small_correct_file.section = 'Active Case Data' + small_correct_file.save() # this still needs to execute to create db objects to be queried - parse.parse_datafile(test_datafile, dfs) - dfs.file = test_datafile + parse.parse_datafile(small_correct_file, dfs) + dfs.file = small_correct_file dfs.status = dfs.get_status() dfs.case_aggregates = aggregates.case_aggregates_by_month( - test_datafile, dfs.status) + small_correct_file, dfs.status) for month in dfs.case_aggregates['months']: if month['month'] == 'Oct': @@ -1178,9 +1178,9 @@ def test_parse_ssp_section3_file(ssp_section3_file, dfs): assert third.NUM_RECIPIENTS == 51348 @pytest.mark.django_db -def test_rpt_month_year_mismatch(test_header_datafile, dfs): +def test_rpt_month_year_mismatch(header_datafile, dfs): """Test that the rpt_month_year mismatch error is raised.""" - datafile = test_header_datafile + datafile = header_datafile datafile.section = 'Active Case Data' # test_datafile fixture uses create_test_data_file which assigns @@ -1189,7 +1189,7 @@ def test_rpt_month_year_mismatch(test_header_datafile, dfs): datafile.quarter = 'Q1' datafile.save() - dfs.datafile = test_header_datafile + dfs.datafile = header_datafile dfs.save() parse.parse_datafile(datafile, dfs) @@ -1391,7 +1391,7 @@ def test_parse_t2_invalid_dob(t2_invalid_dob_file, dfs): @pytest.mark.django_db -def test_bulk_create_returns_rollback_response_on_bulk_index_exception(test_datafile, mocker, dfs): +def test_bulk_create_returns_rollback_response_on_bulk_index_exception(small_correct_file, mocker, dfs): """Test bulk_create_records returns (False, [unsaved_records]) on BulkIndexException.""" mocker.patch( 'tdpservice.search_indexes.documents.tanf.TANF_T1DataSubmissionDocument.update', @@ -1409,7 +1409,7 @@ def test_bulk_create_returns_rollback_response_on_bulk_index_exception(test_data records, line_number=1, header_count=1, - datafile=test_datafile, + datafile=small_correct_file, dfs=dfs, flush=True ) From f657be16baea520e794ee0396d8513ad9a85e9ed Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 14 May 2024 14:02:59 -0400 Subject: [PATCH 065/126] - Fix failing tests due to merge --- tdrs-backend/tdpservice/parsers/parse.py | 35 ++++++++----------- .../parsers/test/test_case_consistency.py | 6 ++++ .../tdpservice/parsers/test/test_parse.py | 21 +++++------ 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 6e8716d04..ca2f9fa24 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -35,17 +35,27 @@ def parse_datafile(datafile, dfs): errors['header'] = header_errors bulk_create_errors({1: header_errors}, 1, flush=True) return errors + + field_values = schema_defs.header.get_field_values_by_names(header_line, + {"encryption", "tribe_code", "state_fips"}) + is_encrypted = field_values["encryption"] == "E" + is_tribal = not validators.value_is_empty(field_values["tribe_code"], 3, extra_vals={'0'*3}) + + logger.debug(f"Datafile has encrypted fields: {is_encrypted}.") + logger.debug(f"Datafile: {datafile.__repr__()}, is Tribal: {is_tribal}.") + + program_type = f"Tribal {header['program_type']}" if is_tribal else header['program_type'] + section = header['type'] + logger.debug(f"Program type: {program_type}, Section: {section}.") cat4_error_generator = util.make_generate_parser_error(datafile, None) case_consistency_validator = CaseConsistencyValidator( header, + program_type, datafile.stt.type, cat4_error_generator ) - field_values = schema_defs.header.get_field_values_by_names(header_line, - {"encryption", "tribe_code", "state_fips"}) - # Validate tribe code in submission across program type and fips code generate_error = util.make_generate_parser_error(datafile, 1) tribe_is_valid, tribe_error = validators.validate_tribe_fips_program_agree(header['program_type'], @@ -60,30 +70,13 @@ def parse_datafile(datafile, dfs): bulk_create_errors({1: [tribe_error]}, 1, flush=True) return errors - is_encrypted = field_values["encryption"] == "E" - is_tribal = not validators.value_is_empty(field_values["tribe_code"], 3, extra_vals={'0'*3}) - - logger.debug(f"Datafile has encrypted fields: {is_encrypted}.") - logger.debug(f"Datafile: {datafile.__repr__()}, is Tribal: {is_tribal}.") - - # ensure file section matches upload section - program_type = f"Tribal {header['program_type']}" if is_tribal else header['program_type'] - section = header['type'] - logger.debug(f"Program type: {program_type}, Section: {section}.") - + # Ensure file section matches upload section section_is_valid, section_error = validators.validate_header_section_matches_submission( datafile, get_section_reference(program_type, section), util.make_generate_parser_error(datafile, 1) ) - case_consistency_validator = CaseConsistencyValidator( - header, - program_type, - datafile.stt.type, - util.make_generate_parser_error(datafile, None) - ) - if not section_is_valid: logger.info(f"Preparser Error -> Section is not valid: {section_error.error_message}") errors['document'] = [section_error] diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 079570d77..d30806fbe 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1447,6 +1447,7 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T case_consistency_validator = CaseConsistencyValidator( header, + header["program_type"], stt_type, util.make_generate_parser_error(small_correct_file, None) ) @@ -1525,6 +1526,7 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f case_consistency_validator = CaseConsistencyValidator( header, + header["program_type"], stt_type, util.make_generate_parser_error(small_correct_file, None) ) @@ -1614,6 +1616,7 @@ def test_section2_duplicate_records(self, small_correct_file, header, T4Stuff, T case_consistency_validator = CaseConsistencyValidator( header, + header["program_type"], STT.EntityType.STATE, util.make_generate_parser_error(small_correct_file, None) ) @@ -1659,6 +1662,7 @@ def test_section2_partial_duplicate_records_and_precedence(self, small_correct_f case_consistency_validator = CaseConsistencyValidator( header, + header["program_type"], STT.EntityType.STATE, util.make_generate_parser_error(small_correct_file, None) ) @@ -1724,6 +1728,7 @@ def test_family_affiliation_negate_partial_duplicate(self, small_correct_file, h case_consistency_validator = CaseConsistencyValidator( header, + header["program_type"], STT.EntityType.STATE, util.make_generate_parser_error(small_correct_file, None) ) @@ -1758,6 +1763,7 @@ def test_s3_s4_duplicates(self, small_correct_file, header, record_stuff): case_consistency_validator = CaseConsistencyValidator( header, + header["program_type"], STT.EntityType.STATE, util.make_generate_parser_error(small_correct_file, None) ) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index bd45063a7..33a0fef65 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1682,13 +1682,13 @@ def t3_file_zero_filled_second(): return parsing_file @pytest.mark.parametrize('file_fixture, result, number_of_errors', - [('second_child_only_space_t3_file', True, 0), - ('one_child_t3_file', True, 0), - ('t3_file', True, 0), - ('t3_file_two_child', True, 1), - ('t3_file_two_child_with_space_filled', True, 0), - ('two_child_second_filled', True, 9), - ('t3_file_zero_filled_second', True, 0)]) + [('second_child_only_space_t3_file', False, 0), + ('one_child_t3_file', False, 0), + ('t3_file', False, 0), + ('t3_file_two_child', False, 1), + ('t3_file_two_child_with_space_filled', False, 0), + ('two_child_second_filled', False, 9), + ('t3_file_zero_filled_second', False, 0)]) @pytest.mark.django_db() def test_misformatted_multi_records(file_fixture, result, number_of_errors, request, dfs): """Test that (not space filled) multi-records are caught.""" @@ -1701,8 +1701,9 @@ def test_misformatted_multi_records(file_fixture, result, number_of_errors, requ parser_errors = ParserError.objects.all().exclude( # exclude extraneous cat 4 errors - error_message__contains='record should have at least one corresponding' - ) + error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY + ).exclude(error_message="No records created.") + assert parser_errors.count() == number_of_errors @pytest.mark.django_db() @@ -2041,7 +2042,7 @@ def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, requ error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') for e in parser_errors: assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert parser_errors.count() == 1 # TODO: Why doesnt this generate 4 errors per run again? + assert parser_errors.count() == 4 dup_error = parser_errors.first() assert dup_error.error_message == f"Partial duplicate record detected with record type {record_type} " + \ From 9ac138e2a4933cb3ae4c6c3fb7139418a4e0698f Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 14 May 2024 15:57:17 -0400 Subject: [PATCH 066/126] - Update message for failing test --- tdrs-backend/tdpservice/data_files/test/test_api.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tdrs-backend/tdpservice/data_files/test/test_api.py b/tdrs-backend/tdpservice/data_files/test/test_api.py index 57808de8f..e8a9372e6 100644 --- a/tdrs-backend/tdpservice/data_files/test/test_api.py +++ b/tdrs-backend/tdpservice/data_files/test/test_api.py @@ -100,8 +100,8 @@ def assert_error_report_tanf_file_content_matches_with_friendly_names(response): assert ws.cell(row=1, column=1).value == "Error reporting in TDP is still in development.We'll" \ + " be in touch when it's ready to use!For now please refer to the reports you receive via email" - assert ws.cell(row=5, column=COL_ERROR_MESSAGE).value == "if cash amount :873 validator1 passed" \ - + " then number of months T1: 0 is not larger than 0." + assert ws.cell(row=5, column=COL_ERROR_MESSAGE).value == "Every T1 record should have at least one " + \ + "corresponding T2 or T3 record with the same RPT_MONTH_YEAR and CASE_NUMBER." @staticmethod def assert_error_report_ssp_file_content_matches_with_friendly_names(response): @@ -132,8 +132,9 @@ def assert_error_report_file_content_matches_without_friendly_names(response): assert ws.cell(row=1, column=1).value == "Error reporting in TDP is still in development.We'll" \ + " be in touch when it's ready to use!For now please refer to the reports you receive via email" - assert ws.cell(row=5, column=COL_ERROR_MESSAGE).value == ("if CASH_AMOUNT :873 validator1 passed then " - "NBR_MONTHS T1: 0 is not larger than 0.") + assert ws.cell(row=5, column=COL_ERROR_MESSAGE).value == ("Every T1 record should have at least one " + "corresponding T2 or T3 record with the same " + "RPT_MONTH_YEAR and CASE_NUMBER.") @staticmethod def assert_data_file_exists(data_file_data, version, user): From e085c625dadfb72398f0ebee1639c5c3e14f24b7 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 14 May 2024 16:36:49 -0400 Subject: [PATCH 067/126] - Remove Vars from compose file - Remove unnecessary checks from cat4 validator - Updated error counts after removing check --- tdrs-backend/docker-compose.yml | 2 - .../parsers/case_consistency_validator.py | 53 ++---- .../parsers/test/test_case_consistency.py | 176 ------------------ .../tdpservice/parsers/test/test_parse.py | 10 +- 4 files changed, 17 insertions(+), 224 deletions(-) diff --git a/tdrs-backend/docker-compose.yml b/tdrs-backend/docker-compose.yml index 88af6a662..b8a3582d0 100644 --- a/tdrs-backend/docker-compose.yml +++ b/tdrs-backend/docker-compose.yml @@ -102,8 +102,6 @@ services: - SENDGRID_API_KEY - GENERATE_TRAILER_ERRORS=True - BYPASS_KIBANA_AUTH - - IGNORE_DUPLICATE_ERROR_PRECEDENCE - - BULK_CREATE_BATCH_SIZE volumes: - .:/tdpapp image: tdp diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index e64331be4..5687ba011 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -115,10 +115,6 @@ def add_record(self, record, schema, line, line_number, case_has_errors): self.current_hash = hash_val - # TODO: Duplicate detection applies to all sections, however we might need to implement a factory of some sort - # to get the correct duplicate manager based on the section. Sections 3 and 4 have different duplicate logic - # than 1 or 2 anyways. We also don't know if different program types are going to have different duplicate - # detection logic. num_errors += self.duplicate_manager.add_record(record, hash_val, schema, line, line_number) @@ -209,19 +205,6 @@ def __validate_s1_records_are_related(self): t3s = self.sorted_cases.get(t3_model, []) if len(t1s) > 0: - if len(t1s) > 1: # likely to be captured by "no duplicates" validator - for record, schema in t1s[1:]: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'There should only be one {t1_model_name} record ' - f'for a RPT_MONTH_YEAR and CASE_NUMBER.' - ) - ) - num_errors += 1 - if len(t2s) == 0 and len(t3s) == 0: for record, schema in t1s: self.__generate_and_add_error( @@ -352,31 +335,19 @@ def __validate_s2_records_are_related(self): t5s = self.sorted_cases.get(t5_model, []) if len(t4s) > 0: - if len(t4s) > 1: - for record, schema in t4s[1:]: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'There should only be one {t4_model_name} record ' - f'for a RPT_MONTH_YEAR and CASE_NUMBER.' - ) - ) - num_errors += 1 - else: - t4 = t4s[0] - t4_record, t4_schema = t4 - closure_reason = getattr(t4_record, 'CLOSURE_REASON') + t4 = t4s[0] + t4_record, t4_schema = t4 + closure_reason = getattr(t4_record, 'CLOSURE_REASON') + + if closure_reason == '01': + num_errors += self.__validate_case_closure_employment(t4, t5s, ( + 'At least one person on the case must have employment status = 1:Yes in the same month.' + )) + elif closure_reason == '99' and not is_ssp: + num_errors += self.__validate_case_closure_ftl(t4, t5s, ( + 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' + )) - if closure_reason == '01': - num_errors += self.__validate_case_closure_employment(t4, t5s, ( - 'At least one person on the case must have employment status = 1:Yes in the same month.' - )) - elif closure_reason == '99' and not is_ssp: - num_errors += self.__validate_case_closure_ftl(t4, t5s, ( - 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' - )) if len(t5s) == 0: for record, schema in t4s: self.__generate_and_add_error( diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index d30806fbe..6bde88baf 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -359,102 +359,6 @@ def test_section1_records_are_related_validator_fail_no_t1( f'{t1_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' ) - @pytest.mark.parametrize("header,T1Stuff,T2Stuff,T3Stuff,stt_type", [ - ( - {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, - (factories.TanfT1Factory, schema_defs.tanf.t1.schemas[0], 'T1'), - (factories.TanfT2Factory, schema_defs.tanf.t2.schemas[0], 'T2'), - (factories.TanfT3Factory, schema_defs.tanf.t3.schemas[0], 'T3'), - STT.EntityType.STATE, - ), - ( - {"type": "A", "program_type": "Tribal TAN", "year": 2020, "quarter": "4"}, - (factories.TribalTanfT1Factory, schema_defs.tribal_tanf.t1.schemas[0], 'T1'), - (factories.TribalTanfT2Factory, schema_defs.tribal_tanf.t2.schemas[0], 'T2'), - (factories.TribalTanfT3Factory, schema_defs.tribal_tanf.t3.schemas[0], 'T3'), - STT.EntityType.TRIBE, - ), - ( - {"type": "A", "program_type": "SSP", "year": 2020, "quarter": "4"}, - (factories.SSPM1Factory, schema_defs.ssp.m1.schemas[0], 'M1'), - (factories.SSPM2Factory, schema_defs.ssp.m2.schemas[0], 'M2'), - (factories.SSPM3Factory, schema_defs.ssp.m3.schemas[0], 'M3'), - STT.EntityType.STATE, - ), - ]) - @pytest.mark.django_db - def test_section1_records_are_related_validator_fail_multiple_t1s( - self, small_correct_file, header, T1Stuff, T2Stuff, T3Stuff, stt_type): - """Test records are related validator fails when there are multiple t1s.""" - (T1Factory, t1_schema, t1_model_name) = T1Stuff - (T2Factory, t2_schema, t2_model_name) = T2Stuff - (T3Factory, t3_schema, t3_model_name) = T3Stuff - - case_consistency_validator = CaseConsistencyValidator( - header, - header['program_type'], - stt_type, - util.make_generate_parser_error(small_correct_file, None) - ) - - t1s = [ - T1Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123' - ), - T1Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123' - ), - ] - line_number = 1 - for t1 in t1s: - case_consistency_validator.add_record(t1, t1_schema, str(t1), line_number, False) - line_number += 1 - - t2s = [ - T2Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123', - FAMILY_AFFILIATION=1, - ), - T2Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123', - FAMILY_AFFILIATION=2, - ), - ] - for t2 in t2s: - case_consistency_validator.add_record(t2, t2_schema, str(t2), line_number, False) - line_number += 1 - - t3s = [ - T3Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123', - FAMILY_AFFILIATION=1, - ), - T3Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123', - FAMILY_AFFILIATION=2, - ), - ] - for t3 in t3s: - case_consistency_validator.add_record(t3, t3_schema, str(t3), line_number, False) - - num_errors = case_consistency_validator.validate() - - errors = case_consistency_validator.get_generated_errors() - - assert len(errors) == 1 - assert num_errors == 1 - assert errors[0].error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert errors[0].error_message == ( - f'There should only be one {t1_model_name} record ' - f'for a RPT_MONTH_YEAR and CASE_NUMBER.' - ) - @pytest.mark.parametrize("header,T1Stuff,T2Stuff,T3Stuff,stt_type", [ ( {"type": "A", "program_type": "TAN", "year": 2020, "quarter": "4"}, @@ -619,86 +523,6 @@ def test_section2_validator_pass(self, small_correct_file, header, T4Stuff, T5St assert len(errors) == 0 assert num_errors == 0 - @pytest.mark.parametrize("header,T4Stuff,T5Stuff,stt_type", [ - ( - {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, - (factories.TanfT4Factory, schema_defs.tanf.t4.schemas[0], 'T4'), - (factories.TanfT5Factory, schema_defs.tanf.t5.schemas[0], 'T5'), - STT.EntityType.STATE, - ), - ( - {"type": "C", "program_type": "Tribal TAN", "year": 2020, "quarter": "4"}, - (factories.TribalTanfT4Factory, schema_defs.tribal_tanf.t4.schemas[0], 'T4'), - (factories.TribalTanfT5Factory, schema_defs.tribal_tanf.t5.schemas[0], 'T5'), - STT.EntityType.TRIBE, - ), - ( - {"type": "C", "program_type": "SSP", "year": 2020, "quarter": "4"}, - (factories.SSPM4Factory, schema_defs.ssp.m4.schemas[0], 'M4'), - (factories.SSPM5Factory, schema_defs.ssp.m5.schemas[0], 'M5'), - STT.EntityType.STATE, - ), - ]) - @pytest.mark.django_db - def test_section2_validator_fail_multiple_t4s(self, small_correct_file, header, T4Stuff, T5Stuff, stt_type): - """Test records are related validator section 2 success case.""" - (T4Factory, t4_schema, t4_model_name) = T4Stuff - (T5Factory, t5_schema, t5_model_name) = T5Stuff - - case_consistency_validator = CaseConsistencyValidator( - header, - header['program_type'], - stt_type, - util.make_generate_parser_error(small_correct_file, None) - ) - - t4s = [ - T4Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123', - ), - T4Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123' - ), - ] - line_number = 1 - for t4 in t4s: - case_consistency_validator.add_record(t4, t4_schema, str(t4), line_number, False) - line_number += 1 - - t5s = [ - T5Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123', - FAMILY_AFFILIATION=1, - REC_AID_TOTALLY_DISABLED=2, - REC_SSI=1 - ), - T5Factory.create( - RPT_MONTH_YEAR=202010, - CASE_NUMBER='123', - FAMILY_AFFILIATION=2, - REC_AID_TOTALLY_DISABLED=2, - REC_SSI=1 - ), - ] - for t5 in t5s: - case_consistency_validator.add_record(t5, t5_schema, str(t5), line_number, False) - line_number += 1 - - num_errors = case_consistency_validator.validate() - - errors = case_consistency_validator.get_generated_errors() - - assert len(errors) == 1 - assert num_errors == 1 - assert errors[0].error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert errors[0].error_message == ( - f'There should only be one {t4_model_name} record ' - f'for a RPT_MONTH_YEAR and CASE_NUMBER.' - ) - @pytest.mark.parametrize("header,T4Stuff,T5Stuff,stt_type", [ ( {"type": "C", "program_type": "TAN", "year": 2020, "quarter": "4"}, diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 33a0fef65..7b90917f1 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1958,10 +1958,10 @@ def s4_exact_dup_file(): return parsing_file @pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ - ('s1_exact_dup_file', 10000, TANF_T1, "T1", 4), - ('s1_exact_dup_file', 1, TANF_T1, "T1", 4), # This forces an in memory and database deletion of records. - ('s2_exact_dup_file', 10000, TANF_T4, "T4", 4), - ('s2_exact_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. + ('s1_exact_dup_file', 10000, TANF_T1, "T1", 3), + ('s1_exact_dup_file', 1, TANF_T1, "T1", 3), # This forces an in memory and database deletion of records. + ('s2_exact_dup_file', 10000, TANF_T4, "T4", 3), + ('s2_exact_dup_file', 1, TANF_T4, "T4", 3), # This forces an in memory and database deletion of records. ('s3_exact_dup_file', 10000, TANF_T6, "T6", 1), ('s3_exact_dup_file', 1, TANF_T6, "T6", 1), # This forces an in memory and database deletion of records. ('s4_exact_dup_file', 10000, TANF_T7, "T7", 1), @@ -2042,7 +2042,7 @@ def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, requ error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') for e in parser_errors: assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert parser_errors.count() == 4 + assert parser_errors.count() == 3 dup_error = parser_errors.first() assert dup_error.error_message == f"Partial duplicate record detected with record type {record_type} " + \ From 5656bdc498ddce18eec47cf69516e17ad16a87d8 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 08:36:35 -0400 Subject: [PATCH 068/126] - fixed test --- tdrs-backend/tdpservice/parsers/test/test_parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 7b90917f1..ab56987f3 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1012,8 +1012,8 @@ def test_parse_tanf_section2_file(tanf_section2_file, dfs): parse.parse_datafile(tanf_section2_file, dfs) - assert TANF_T4.objects.all().count() == 216 - assert TANF_T5.objects.all().count() == 588 + assert TANF_T4.objects.all().count() == 130 + assert TANF_T5.objects.all().count() == 362 parser_errors = ParserError.objects.filter(file=tanf_section2_file) From a814dc2cbe7781826b997c475a63064364d44b0b Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 09:11:08 -0400 Subject: [PATCH 069/126] - linting --- tdrs-backend/tdpservice/parsers/parse.py | 4 ++-- tdrs-backend/tdpservice/parsers/test/test_parse.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index ca2f9fa24..521422c99 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -35,7 +35,7 @@ def parse_datafile(datafile, dfs): errors['header'] = header_errors bulk_create_errors({1: header_errors}, 1, flush=True) return errors - + field_values = schema_defs.header.get_field_values_by_names(header_line, {"encryption", "tribe_code", "state_fips"}) is_encrypted = field_values["encryption"] == "E" @@ -43,7 +43,7 @@ def parse_datafile(datafile, dfs): logger.debug(f"Datafile has encrypted fields: {is_encrypted}.") logger.debug(f"Datafile: {datafile.__repr__()}, is Tribal: {is_tribal}.") - + program_type = f"Tribal {header['program_type']}" if is_tribal else header['program_type'] section = header['type'] logger.debug(f"Program type: {program_type}, Section: {section}.") diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index ab56987f3..3ea4f680b 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1703,7 +1703,7 @@ def test_misformatted_multi_records(file_fixture, result, number_of_errors, requ # exclude extraneous cat 4 errors error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY ).exclude(error_message="No records created.") - + assert parser_errors.count() == number_of_errors @pytest.mark.django_db() From ab379ce79ea1575802aa5b508662935e3a0f2f9d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 16 May 2024 09:33:51 -0400 Subject: [PATCH 070/126] - move partial hash checking logic to schema/fields --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 12 +----------- tdrs-backend/tdpservice/parsers/fields.py | 2 ++ tdrs-backend/tdpservice/parsers/row_schema.py | 11 +++++++++++ .../tdpservice/parsers/schema_defs/ssp/m2.py | 2 ++ .../tdpservice/parsers/schema_defs/ssp/m3.py | 8 ++++++-- .../tdpservice/parsers/schema_defs/ssp/m5.py | 2 ++ .../tdpservice/parsers/schema_defs/tanf/t2.py | 2 ++ .../tdpservice/parsers/schema_defs/tanf/t3.py | 4 ++++ .../tdpservice/parsers/schema_defs/tanf/t5.py | 2 ++ .../tdpservice/parsers/schema_defs/tribal_tanf/t2.py | 2 ++ .../tdpservice/parsers/schema_defs/tribal_tanf/t3.py | 4 ++++ .../tdpservice/parsers/schema_defs/tribal_tanf/t5.py | 2 ++ 12 files changed, 40 insertions(+), 13 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 98b55975e..850e01107 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -93,16 +93,6 @@ def __get_partial_hash(self, record): str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) return partial_hash - def __skip_partial(self, record): - skip_partial = False - if record.RecordType == "T2": - skip_partial = record.FAMILY_AFFILIATION in {3, 5} - if record.RecordType == "T3": - skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} - if record.RecordType == "T5": - skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} - return skip_partial - def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed. @@ -129,7 +119,7 @@ def add_case_member(self, record, schema, line, line_number): f"line number {existing_record_line_number}.") is_exact_dup = True - skip_partial = self.__skip_partial(record) + skip_partial = schema.should_skip_partial_dup partial_hash = self.__get_partial_hash(record) if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( diff --git a/tdrs-backend/tdpservice/parsers/fields.py b/tdrs-backend/tdpservice/parsers/fields.py index 076743096..c24af6c12 100644 --- a/tdrs-backend/tdpservice/parsers/fields.py +++ b/tdrs-backend/tdpservice/parsers/fields.py @@ -17,6 +17,7 @@ def __init__( startIndex, endIndex, required=True, + can_skip_partial=False, validators=[], ): self.item = item @@ -26,6 +27,7 @@ def __init__( self.startIndex = startIndex self.endIndex = endIndex self.required = required + self.can_skip_partial = can_skip_partial self.validators = validators def create(self, item, name, length, start, end, type): diff --git a/tdrs-backend/tdpservice/parsers/row_schema.py b/tdrs-backend/tdpservice/parsers/row_schema.py index c16718383..e92954fa8 100644 --- a/tdrs-backend/tdpservice/parsers/row_schema.py +++ b/tdrs-backend/tdpservice/parsers/row_schema.py @@ -17,6 +17,7 @@ def __init__( postparsing_validators=[], fields=[], quiet_preparser_errors=False, + skip_values={}, ): self.document = document self.preparsing_validators = preparsing_validators @@ -24,6 +25,8 @@ def __init__( self.fields = fields self.quiet_preparser_errors = quiet_preparser_errors self.record_type = record_type + self.skip_values = skip_values + self.should_skip_partial_dup = False self.datafile = None def _add_field(self, item, name, length, start, end, type): @@ -101,6 +104,12 @@ def run_preparsing_validators(self, line, generate_error): return is_valid, errors + def __set_skip_partial_dup_check(self, field, value): + # This technically could be overriden if this applies to other fields, but as of right now, FAMILY_AFFILIATION + # is the only field that has `can_skip_partial` set to True. + if field.can_skip_partial: + self.should_skip_partial_dup = value in self.skip_values + def parse_line(self, line): """Create a model for the line based on the schema.""" record = self.document.Django.model() if self.document is not None else dict() @@ -114,6 +123,8 @@ def parse_line(self, line): else: setattr(record, field.name, value) + self.__set_skip_partial_dup_check(field, value) + return record def run_field_validators(self, instance, generate_error): diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py index 0f72a48e1..9626aa9f1 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py @@ -169,6 +169,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 3, 5])] ), Field( @@ -807,6 +808,7 @@ validators=[validators.isInLimits(0, 9999)] ), ], + skip_values={3, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py index e4b173b2e..492bd5b8a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py @@ -134,6 +134,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])] ), Field( @@ -317,7 +318,8 @@ required=True, validators=[validators.isInLimits(0, 9999)] ) - ] + ], + skip_values={2, 4, 5}, ) second_part_schema = RowSchema( @@ -448,6 +450,7 @@ startIndex=60, endIndex=61, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])] ), Field( @@ -631,7 +634,8 @@ required=True, validators=[validators.isInLimits(0, 9999)] ) - ] + ], + skip_values={2, 4, 5}, ) m3 = SchemaManager(schemas=[first_part_schema, second_part_schema]) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py index 7ba6aa2c6..f6619044b 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py @@ -147,6 +147,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.isInLimits(1, 5)], ), Field( @@ -396,6 +397,7 @@ validators=[validators.isInStringRange(0, 9999)], ), ], + skip_values={3, 4, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py index 47b6e9144..3a456cbac 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py @@ -171,6 +171,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 3, 5])], ), Field( @@ -958,6 +959,7 @@ ], ), ], + skip_values={3, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py index 4bc9f6195..9c7b1402c 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py @@ -134,6 +134,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])], ), Field( @@ -318,6 +319,7 @@ validators=[validators.isInStringRange(0, 9999)], ), ], + skip_values={2, 4, 5}, ) @@ -447,6 +449,7 @@ startIndex=60, endIndex=61, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])], ), Field( @@ -631,6 +634,7 @@ validators=[validators.isInStringRange(0, 9999)], ), ], + skip_values={2, 4, 5}, ) t3 = SchemaManager(schemas=[child_one, child_two]) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py index abfed1d4d..72c46b339 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py @@ -148,6 +148,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.isInLimits(1, 5)], ), Field( @@ -417,6 +418,7 @@ validators=[validators.isInStringRange(0, 9999)], ), ], + skip_values={3, 4, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py index 396418cba..516fe94a5 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py @@ -159,6 +159,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 3, 5])], ), Field( @@ -741,6 +742,7 @@ validators=[], ), ], + skip_values={3, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py index 2252407d4..e9e21cb6c 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py @@ -132,6 +132,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])], ), Field( @@ -316,6 +317,7 @@ validators=[validators.isInStringRange(0, 9999)], ), ], + skip_values={2, 4, 5}, ) child_two = RowSchema( @@ -443,6 +445,7 @@ startIndex=60, endIndex=61, required=True, + can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])], ), Field( @@ -626,6 +629,7 @@ validators=[validators.isInStringRange(0, 9999)], ), ], + skip_values={2, 4, 5}, ) t3 = SchemaManager(schemas=[child_one, child_two]) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py index 553197447..f1362cc56 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py @@ -142,6 +142,7 @@ startIndex=19, endIndex=20, required=True, + can_skip_partial=True, validators=[validators.isInLimits(1, 5)], ), Field( @@ -410,6 +411,7 @@ validators=[validators.isInStringRange(0, 9999)], ), ], + skip_values={3, 4, 5}, ) ] ) From 409d773ec48273c1c635ef0c1696e37be792023d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 16 May 2024 09:45:22 -0400 Subject: [PATCH 071/126] - Move fixtures to conftest.py --- .../tdpservice/parsers/test/conftest.py | 122 ++++++++++++++++++ 1 file changed, 122 insertions(+) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index c6eee578d..2674c3ff6 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -203,6 +203,128 @@ def tribal_section_4_bad_quarter(stt_user, stt): """Fixture for tribal_section_4_bad_quarter.""" return util.create_test_datafile('tribal_section_4_fake_bad_quarter.txt', stt_user, stt, "Tribal Stratum Data") +@pytest.fixture +def second_child_only_space_t3_file(): + """Fixture for misformatted_t3_file.""" + # T3 record: second child is not space filled correctly + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q3', + original_filename='second_child_only_space_t3_file.txt', + file__name='second_child_only_space_t3_file.txt', + file__section=DataFile.Section.ACTIVE_CASE_DATA, + file__data=(b'HEADER20212A25 TAN1 D\n' + + b'T320210400028221R0112014122888175617622222112204398100000000' + + b' \n' + + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.fixture +def one_child_t3_file(): + """Fixture for one child_t3_file.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q3', + original_filename='one_child_t3_file.txt', + file__name='one_child_t3_file.txt', + file__section=DataFile.Section.ACTIVE_CASE_DATA, + file__data=(b'HEADER20212A25 TAN1 D\n' + + b'T320210400028221R0112014122888175617622222112204398100000000\n' + + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.fixture +def t3_file(): + """Fixture for T3 file.""" + # T3 record is space filled correctly + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q3', + original_filename='t3_file.txt', + file__name='t3_file.txt', + file__section=DataFile.Section.ACTIVE_CASE_DATA, + file__data=(b'HEADER20212A25 TAN1ED\n' + + b'T320210441111111115120160401WTTTT@BTB22212212204398100000000' + + b' ' + + b' \n' + + b'TRAILER0000001 ') + ) + return parsing_file + + +@pytest.fixture +def t3_file_two_child(): + """Fixture for T3 file.""" + # T3 record is space filled correctly + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q2', + original_filename='t3_file.txt', + file__name='t3_file.txt', + file__section=DataFile.Section.ACTIVE_CASE_DATA, + file__data=(b'HEADER20211A25 TAN1ED\n' + + b'T320210211111111157120190527WTTTTT9WT12212122204398100000000' + + b'420100125WTTTT9@TB1221222220430490000\n' + + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.fixture +def t3_file_two_child_with_space_filled(): + """Fixture for T3 file.""" + # T3 record is space filled correctly + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q2', + original_filename='t3_file.txt', + file__name='t3_file.txt', + file__section=DataFile.Section.ACTIVE_CASE_DATA, + file__data=(b'HEADER20211A25 TAN1ED\n' + + b'T320210211111111157120190527WTTTTT9WT12212122204398100000000' + + b'420100125WTTTT9@TB1221222220430490000 \n' + + b'TRAILER0000001 ') + ) + return parsing_file + + +@pytest.fixture +def two_child_second_filled(): + """Fixture for T3 file.""" + # T3 record is space filled correctly + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q2', + original_filename='two_child_second_filled.txt', + file__name='two_child_second_filled.txt', + file__section=DataFile.Section.ACTIVE_CASE_DATA, + file__data=(b'HEADER20211A25 TAN1ED\n' + + b'T320210211111111115120160401WTTTT@BTB22212212204398100000000' + + b'56 111111111 ' + + b' \n' + + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.fixture +def t3_file_zero_filled_second(): + """Fixture for T3 file.""" + # T3 record is space filled correctly + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q3', + original_filename='t3_file_zero_filled_second.txt', + file__name='t3_file_zero_filled_second.txt', + file__section=DataFile.Section.ACTIVE_CASE_DATA, + file__data=(b'HEADER20212A25 TAN1ED\n' + + b'T320210441111111115120160401WTTTT@BTB22212212204398100000000' + + b'000000000000000000000000000000000000000000000000000000000000' + + b'000000000000000000000000000000000000\n' + + b'TRAILER0000001 ') + ) + return parsing_file + @pytest.fixture def tanf_s1_exact_dup_file(): """Fixture for a section 1 file containing an exact duplicate record.""" From 141b677390529e0b75b81f485b13a28e149771ff Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 16 May 2024 10:16:35 -0400 Subject: [PATCH 072/126] - Fix failing tests --- tdrs-backend/tdpservice/parsers/test/conftest.py | 1 + .../tdpservice/parsers/test/test_parse.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index 2674c3ff6..1fc874ad5 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -1,5 +1,6 @@ """Package level fixtures.""" import pytest +from tdpservice.data_files.models import DataFile from tdpservice.parsers.test.factories import DataFileSummaryFactory, ParsingFileFactory from tdpservice.parsers import util diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 533aac99e..389f5c86d 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1541,18 +1541,18 @@ def test_parse_tribal_section_4_bad_quarter(tribal_section_4_bad_quarter, dfs): Tribal_TANF_T7.objects.count() == 0 @pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ - ('tanf_s1_exact_dup_file', 10000, TANF_T1, "T1", 4), - ('tanf_s1_exact_dup_file', 1, TANF_T1, "T1", 4), # This forces an in memory and database deletion of records. - ('tanf_s2_exact_dup_file', 10000, TANF_T4, "T4", 4), - ('tanf_s2_exact_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. + ('tanf_s1_exact_dup_file', 10000, TANF_T1, "T1", 3), + ('tanf_s1_exact_dup_file', 1, TANF_T1, "T1", 3), # This forces an in memory and database deletion of records. + ('tanf_s2_exact_dup_file', 10000, TANF_T4, "T4", 3), + ('tanf_s2_exact_dup_file', 1, TANF_T4, "T4", 3), # This forces an in memory and database deletion of records. ('tanf_s3_exact_dup_file', 10000, TANF_T6, "T6", 1), ('tanf_s3_exact_dup_file', 1, TANF_T6, "T6", 1), # This forces an in memory and database deletion of records. ('tanf_s4_exact_dup_file', 10000, TANF_T7, "T7", 1), ('tanf_s4_exact_dup_file', 1, TANF_T7, "T7", 1), # This forces an in memory and database deletion of records. - ('ssp_s1_exact_dup_file', 10000, SSP_M1, "M1", 1), - ('ssp_s1_exact_dup_file', 1, SSP_M1, "M1", 1), # This forces an in memory and database deletion of records. - ('ssp_s2_exact_dup_file', 10000, SSP_M4, "M4", 1), - ('ssp_s2_exact_dup_file', 1, SSP_M4, "M4", 1), # This forces an in memory and database deletion of records. + ('ssp_s1_exact_dup_file', 10000, SSP_M1, "M1", 3), + ('ssp_s1_exact_dup_file', 1, SSP_M1, "M1", 3), # This forces an in memory and database deletion of records. + ('ssp_s2_exact_dup_file', 10000, SSP_M4, "M4", 3), + ('ssp_s2_exact_dup_file', 1, SSP_M4, "M4", 3), # This forces an in memory and database deletion of records. ('ssp_s3_exact_dup_file', 10000, SSP_M6, "M6", 1), ('ssp_s3_exact_dup_file', 1, SSP_M6, "M6", 1), # This forces an in memory and database deletion of records. ('ssp_s4_exact_dup_file', 10000, SSP_M7, "M7", 1), From a51ad70f081c79f33c094f0369cf6fa62cb6e27c Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 17 May 2024 14:04:10 -0400 Subject: [PATCH 073/126] - fixed tests --- .../parsers/case_consistency_validator.py | 117 +++++++----------- .../tdpservice/parsers/test/test_parse.py | 22 ++-- 2 files changed, 59 insertions(+), 80 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 5d33d14e5..b042176b4 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -334,56 +334,35 @@ def __validate_s2_records_are_related(self): t4s = self.sorted_cases.get(t4_model, []) t5s = self.sorted_cases.get(t5_model, []) - # TODO: Check this logic if len(t4s) > 0: - t4 = t4s[0] - t4_record, t4_schema = t4 - closure_reason = getattr(t4_record, 'CLOSURE_REASON') - - if len(t4s) > 0: - if len(t4s) > 1: - for record, schema in t4s[1:]: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'There should only be one {t4_model_name} record ' - f'per RPT_MONTH_YEAR and CASE_NUMBER.' - ) - ) - num_errors += 1 - else: - t4 = t4s[0] - t4_record, t4_schema = t4 - closure_reason = getattr(t4_record, 'CLOSURE_REASON') - - if closure_reason == '01': - num_errors += self.__validate_case_closure_employment(t4, t5s, ( - 'At least one person on the case must have employment status = 1:Yes in the ' - 'same RPT_MONTH_YEAR since CLOSURE_REASON = 1:Employment/excess earnings.' - )) - elif closure_reason == '03' and not is_ssp: - num_errors += self.__validate_case_closure_ftl(t4, t5s, ( - 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' - )) - if len(t5s) == 0: - for record, schema in t4s: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'Every {t4_model_name} record should have at least one corresponding ' - f'{t5_model_name} record with the same RPT_MONTH_YEAR and CASE_NUMBER.' - ) + if len(t4s) > 1: + for record, schema in t4s[1:]: + self.__generate_and_add_error( + schema, + record, + field='RPT_MONTH_YEAR', + msg=( + f'There should only be one {t4_model_name} record ' + f'per RPT_MONTH_YEAR and CASE_NUMBER.' ) - num_errors += 1 - else: - # success - pass + ) + num_errors += 1 else: - for record, schema in t5s: + t4 = t4s[0] + t4_record, t4_schema = t4 + closure_reason = getattr(t4_record, 'CLOSURE_REASON') + + if closure_reason == '01': + num_errors += self.__validate_case_closure_employment(t4, t5s, ( + 'At least one person on the case must have employment status = 1:Yes in the ' + 'same RPT_MONTH_YEAR since CLOSURE_REASON = 1:Employment/excess earnings.' + )) + elif closure_reason == '03' and not is_ssp: + num_errors += self.__validate_case_closure_ftl(t4, t5s, ( + 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' + )) + if len(t5s) == 0: + for record, schema in t4s: self.__generate_and_add_error( schema, record, @@ -394,6 +373,9 @@ def __validate_s2_records_are_related(self): ) ) num_errors += 1 + else: + # success + pass else: for record, schema in t5s: self.__generate_and_add_error( @@ -406,7 +388,6 @@ def __validate_s2_records_are_related(self): ) ) num_errors += 1 - return num_errors def __validate_t5_aabd_and_ssi(self): @@ -422,18 +403,16 @@ def __validate_t5_aabd_and_ssi(self): t5s = self.sorted_cases.get(t5_model, []) for record, schema in t5s: - rpt_month_year = getattr(record, 'RPT_MONTH_YEAR') rec_aabd = getattr(record, 'REC_AID_TOTALLY_DISABLED') rec_ssi = getattr(record, 'REC_SSI') family_affiliation = getattr(record, 'FAMILY_AFFILIATION') dob = getattr(record, 'DATE_OF_BIRTH') - rpt_month_year_dd = f'{rpt_month_year}01' + rpt_month_year_dd = f'{self.current_rpt_month_year}01' rpt_date = datetime.strptime(rpt_month_year_dd, '%Y%m%d') dob_date = datetime.strptime(dob, '%Y%m%d') is_adult = get_years_apart(rpt_date, dob_date) >= 19 - # TODO: Check this if is_territory and is_adult and (rec_aabd != 1 and rec_aabd != 2): self.__generate_and_add_error( schema, @@ -450,30 +429,30 @@ def __validate_t5_aabd_and_ssi(self): record, field='REC_AID_TOTALLY_DISABLED', msg=( - f'{t5_model_name} People in states shouldn\'t have a value of 1.' + f'{t5_model_name} People in states should not have a value of 1.' ) ) num_errors += 1 - if is_territory and rec_ssi != 2: - self.__generate_and_add_error( - schema, - record, - field='REC_SSI', - msg=( - f'{t5_model_name} People in territories must have value = 2:No for 19E.' - ) + if is_territory and rec_ssi != 2: + self.__generate_and_add_error( + schema, + record, + field='REC_SSI', + msg=( + f'{t5_model_name} People in territories must have value = 2:No for 19E.' ) - num_errors += 1 - elif is_state and family_affiliation == 1: - self.__generate_and_add_error( - schema, - record, - field='REC_SSI', - msg=( - f'{t5_model_name} People in states must have a valid value.' - ) + ) + num_errors += 1 + elif is_state and family_affiliation == 1: + self.__generate_and_add_error( + schema, + record, + field='REC_SSI', + msg=( + f'{t5_model_name} People in states must have a valid value.' ) + ) num_errors += 1 return num_errors diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 3ea4f680b..a964b53ba 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1012,8 +1012,8 @@ def test_parse_tanf_section2_file(tanf_section2_file, dfs): parse.parse_datafile(tanf_section2_file, dfs) - assert TANF_T4.objects.all().count() == 130 - assert TANF_T5.objects.all().count() == 362 + assert TANF_T4.objects.all().count() == 206 + assert TANF_T5.objects.all().count() == 558 parser_errors = ParserError.objects.filter(file=tanf_section2_file) @@ -1960,8 +1960,8 @@ def s4_exact_dup_file(): @pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ ('s1_exact_dup_file', 10000, TANF_T1, "T1", 3), ('s1_exact_dup_file', 1, TANF_T1, "T1", 3), # This forces an in memory and database deletion of records. - ('s2_exact_dup_file', 10000, TANF_T4, "T4", 3), - ('s2_exact_dup_file', 1, TANF_T4, "T4", 3), # This forces an in memory and database deletion of records. + ('s2_exact_dup_file', 10000, TANF_T4, "T4", 4), + ('s2_exact_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. ('s3_exact_dup_file', 10000, TANF_T6, "T6", 1), ('s3_exact_dup_file', 1, TANF_T6, "T6", 1), # This forces an in memory and database deletion of records. ('s4_exact_dup_file', 10000, TANF_T7, "T7", 1), @@ -2023,14 +2023,14 @@ def s2_partial_dup_file(): ) return parsing_file -@pytest.mark.parametrize("file, batch_size, model, record_type", [ - ('s1_partial_dup_file', 10000, TANF_T1, "T1"), - ('s1_partial_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. - ('s2_partial_dup_file', 10000, TANF_T4, "T4"), - ('s2_partial_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. +@pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ + ('s1_partial_dup_file', 10000, TANF_T1, "T1", 3), + ('s1_partial_dup_file', 1, TANF_T1, "T1", 3), # This forces an in memory and database deletion of records. + ('s2_partial_dup_file', 10000, TANF_T4, "T4", 4), + ('s2_partial_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() -def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, request): +def test_parse_partial_duplicate(file, batch_size, model, record_type, num_errors, dfs, request): """Test handling invalid quarter value that raises a ValueError exception.""" datafile = request.getfixturevalue(file) dfs.datafile = datafile @@ -2042,7 +2042,7 @@ def test_parse_partial_duplicate(file, batch_size, model, record_type, dfs, requ error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by('id') for e in parser_errors: assert e.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert parser_errors.count() == 3 + assert parser_errors.count() == num_errors dup_error = parser_errors.first() assert dup_error.error_message == f"Partial duplicate record detected with record type {record_type} " + \ From 669a87c2e9ea8b91ee801a862c6b746819c28bad Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 17 May 2024 14:40:39 -0400 Subject: [PATCH 074/126] Revert "- move partial hash checking logic to schema/fields" This reverts commit ab379ce79ea1575802aa5b508662935e3a0f2f9d. --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 12 +++++++++++- tdrs-backend/tdpservice/parsers/fields.py | 2 -- tdrs-backend/tdpservice/parsers/row_schema.py | 11 ----------- .../tdpservice/parsers/schema_defs/ssp/m2.py | 2 -- .../tdpservice/parsers/schema_defs/ssp/m3.py | 8 ++------ .../tdpservice/parsers/schema_defs/ssp/m5.py | 2 -- .../tdpservice/parsers/schema_defs/tanf/t2.py | 2 -- .../tdpservice/parsers/schema_defs/tanf/t3.py | 4 ---- .../tdpservice/parsers/schema_defs/tanf/t5.py | 2 -- .../tdpservice/parsers/schema_defs/tribal_tanf/t2.py | 2 -- .../tdpservice/parsers/schema_defs/tribal_tanf/t3.py | 4 ---- .../tdpservice/parsers/schema_defs/tribal_tanf/t5.py | 2 -- 12 files changed, 13 insertions(+), 40 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 850e01107..98b55975e 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -93,6 +93,16 @@ def __get_partial_hash(self, record): str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) return partial_hash + def __skip_partial(self, record): + skip_partial = False + if record.RecordType == "T2": + skip_partial = record.FAMILY_AFFILIATION in {3, 5} + if record.RecordType == "T3": + skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} + if record.RecordType == "T5": + skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} + return skip_partial + def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed. @@ -119,7 +129,7 @@ def add_case_member(self, record, schema, line, line_number): f"line number {existing_record_line_number}.") is_exact_dup = True - skip_partial = schema.should_skip_partial_dup + skip_partial = self.__skip_partial(record) partial_hash = self.__get_partial_hash(record) if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( diff --git a/tdrs-backend/tdpservice/parsers/fields.py b/tdrs-backend/tdpservice/parsers/fields.py index c24af6c12..076743096 100644 --- a/tdrs-backend/tdpservice/parsers/fields.py +++ b/tdrs-backend/tdpservice/parsers/fields.py @@ -17,7 +17,6 @@ def __init__( startIndex, endIndex, required=True, - can_skip_partial=False, validators=[], ): self.item = item @@ -27,7 +26,6 @@ def __init__( self.startIndex = startIndex self.endIndex = endIndex self.required = required - self.can_skip_partial = can_skip_partial self.validators = validators def create(self, item, name, length, start, end, type): diff --git a/tdrs-backend/tdpservice/parsers/row_schema.py b/tdrs-backend/tdpservice/parsers/row_schema.py index e92954fa8..c16718383 100644 --- a/tdrs-backend/tdpservice/parsers/row_schema.py +++ b/tdrs-backend/tdpservice/parsers/row_schema.py @@ -17,7 +17,6 @@ def __init__( postparsing_validators=[], fields=[], quiet_preparser_errors=False, - skip_values={}, ): self.document = document self.preparsing_validators = preparsing_validators @@ -25,8 +24,6 @@ def __init__( self.fields = fields self.quiet_preparser_errors = quiet_preparser_errors self.record_type = record_type - self.skip_values = skip_values - self.should_skip_partial_dup = False self.datafile = None def _add_field(self, item, name, length, start, end, type): @@ -104,12 +101,6 @@ def run_preparsing_validators(self, line, generate_error): return is_valid, errors - def __set_skip_partial_dup_check(self, field, value): - # This technically could be overriden if this applies to other fields, but as of right now, FAMILY_AFFILIATION - # is the only field that has `can_skip_partial` set to True. - if field.can_skip_partial: - self.should_skip_partial_dup = value in self.skip_values - def parse_line(self, line): """Create a model for the line based on the schema.""" record = self.document.Django.model() if self.document is not None else dict() @@ -123,8 +114,6 @@ def parse_line(self, line): else: setattr(record, field.name, value) - self.__set_skip_partial_dup_check(field, value) - return record def run_field_validators(self, instance, generate_error): diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py index 9626aa9f1..0f72a48e1 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py @@ -169,7 +169,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 3, 5])] ), Field( @@ -808,7 +807,6 @@ validators=[validators.isInLimits(0, 9999)] ), ], - skip_values={3, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py index 492bd5b8a..e4b173b2e 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py @@ -134,7 +134,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])] ), Field( @@ -318,8 +317,7 @@ required=True, validators=[validators.isInLimits(0, 9999)] ) - ], - skip_values={2, 4, 5}, + ] ) second_part_schema = RowSchema( @@ -450,7 +448,6 @@ startIndex=60, endIndex=61, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])] ), Field( @@ -634,8 +631,7 @@ required=True, validators=[validators.isInLimits(0, 9999)] ) - ], - skip_values={2, 4, 5}, + ] ) m3 = SchemaManager(schemas=[first_part_schema, second_part_schema]) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py index f6619044b..7ba6aa2c6 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py @@ -147,7 +147,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.isInLimits(1, 5)], ), Field( @@ -397,7 +396,6 @@ validators=[validators.isInStringRange(0, 9999)], ), ], - skip_values={3, 4, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py index 3a456cbac..47b6e9144 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py @@ -171,7 +171,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 3, 5])], ), Field( @@ -959,7 +958,6 @@ ], ), ], - skip_values={3, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py index 9c7b1402c..4bc9f6195 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py @@ -134,7 +134,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])], ), Field( @@ -319,7 +318,6 @@ validators=[validators.isInStringRange(0, 9999)], ), ], - skip_values={2, 4, 5}, ) @@ -449,7 +447,6 @@ startIndex=60, endIndex=61, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])], ), Field( @@ -634,7 +631,6 @@ validators=[validators.isInStringRange(0, 9999)], ), ], - skip_values={2, 4, 5}, ) t3 = SchemaManager(schemas=[child_one, child_two]) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py index 72c46b339..abfed1d4d 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py @@ -148,7 +148,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.isInLimits(1, 5)], ), Field( @@ -418,7 +417,6 @@ validators=[validators.isInStringRange(0, 9999)], ), ], - skip_values={3, 4, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py index 516fe94a5..396418cba 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py @@ -159,7 +159,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 3, 5])], ), Field( @@ -742,7 +741,6 @@ validators=[], ), ], - skip_values={3, 5}, ) ] ) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py index e9e21cb6c..2252407d4 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py @@ -132,7 +132,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])], ), Field( @@ -317,7 +316,6 @@ validators=[validators.isInStringRange(0, 9999)], ), ], - skip_values={2, 4, 5}, ) child_two = RowSchema( @@ -445,7 +443,6 @@ startIndex=60, endIndex=61, required=True, - can_skip_partial=True, validators=[validators.oneOf([1, 2, 4])], ), Field( @@ -629,7 +626,6 @@ validators=[validators.isInStringRange(0, 9999)], ), ], - skip_values={2, 4, 5}, ) t3 = SchemaManager(schemas=[child_one, child_two]) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py index f1362cc56..553197447 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py @@ -142,7 +142,6 @@ startIndex=19, endIndex=20, required=True, - can_skip_partial=True, validators=[validators.isInLimits(1, 5)], ), Field( @@ -411,7 +410,6 @@ validators=[validators.isInStringRange(0, 9999)], ), ], - skip_values={3, 4, 5}, ) ] ) From 90356dbb99c889bd6ed61cb05bfa4782c562f8fd Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 17 May 2024 15:13:50 -0400 Subject: [PATCH 075/126] - Better way to do partial hash checking - Still in schema --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 4 ++-- tdrs-backend/tdpservice/parsers/row_schema.py | 2 ++ tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py | 1 + tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py | 2 ++ tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py | 1 + tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py | 1 + tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py | 2 ++ tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py | 1 + tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py | 1 + tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py | 2 ++ tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py | 1 + 11 files changed, 16 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 98b55975e..12715cc64 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -129,9 +129,9 @@ def add_case_member(self, record, schema, line, line_number): f"line number {existing_record_line_number}.") is_exact_dup = True - skip_partial = self.__skip_partial(record) + should_skip_partial_dup = schema.should_skip_partial_dup_func(record) partial_hash = self.__get_partial_hash(record) - if not skip_partial and not is_exact_dup and partial_hash in self.partial_hashes: + if not should_skip_partial_dup and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( ErrorLevel.PARTIAL_DUPLICATE) existing_record_line_number = self.partial_hashes[partial_hash] diff --git a/tdrs-backend/tdpservice/parsers/row_schema.py b/tdrs-backend/tdpservice/parsers/row_schema.py index c16718383..80e018f8b 100644 --- a/tdrs-backend/tdpservice/parsers/row_schema.py +++ b/tdrs-backend/tdpservice/parsers/row_schema.py @@ -13,12 +13,14 @@ def __init__( self, record_type="T1", document=None, + should_skip_partial_dup_func=lambda record: False, preparsing_validators=[], postparsing_validators=[], fields=[], quiet_preparser_errors=False, ): self.document = document + self.should_skip_partial_dup_func = should_skip_partial_dup_func self.preparsing_validators = preparsing_validators self.postparsing_validators = postparsing_validators self.fields = fields diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py index 0f72a48e1..44a935a68 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py @@ -13,6 +13,7 @@ RowSchema( record_type="M2", document=SSP_M2DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, preparsing_validators=[ validators.recordHasLength(150), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py index e4b173b2e..cb06293fb 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py @@ -10,6 +10,7 @@ first_part_schema = RowSchema( record_type="M3", document=SSP_M3DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, preparsing_validators=[ validators.notEmpty(start=19, end=60), validators.caseNumberNotEmpty(8, 19), @@ -323,6 +324,7 @@ second_part_schema = RowSchema( record_type="M3", document=SSP_M3DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, quiet_preparser_errors=True, preparsing_validators=[ validators.notEmpty(start=60, end=101), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py index 7ba6aa2c6..0879c9e7b 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py @@ -13,6 +13,7 @@ RowSchema( record_type="M5", document=SSP_M5DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, preparsing_validators=[ validators.recordHasLength(66), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py index 47b6e9144..f1b2a8a7d 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py @@ -13,6 +13,7 @@ RowSchema( record_type="T2", document=TANF_T2DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, preparsing_validators=[ validators.recordHasLength(156), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py index 4bc9f6195..743b0deea 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py @@ -13,6 +13,7 @@ child_one = RowSchema( record_type="T3", document=TANF_T3DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, preparsing_validators=[ validators.t3_m3_child_validator(FIRST_CHILD), validators.caseNumberNotEmpty(8, 19), @@ -324,6 +325,7 @@ child_two = RowSchema( record_type="T3", document=TANF_T3DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, quiet_preparser_errors=validators.is_quiet_preparser_errors(min_length=61), preparsing_validators=[ validators.t3_m3_child_validator(SECOND_CHILD), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py index abfed1d4d..960672c8b 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py @@ -13,6 +13,7 @@ RowSchema( record_type="T5", document=TANF_T5DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, preparsing_validators=[ validators.recordHasLength(71), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py index 396418cba..ef37d9ddd 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py @@ -13,6 +13,7 @@ RowSchema( record_type="T2", document=Tribal_TANF_T2DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, preparsing_validators=[ validators.recordHasLength(122), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py index 2252407d4..f421ebce7 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py @@ -11,6 +11,7 @@ child_one = RowSchema( record_type="T3", document=Tribal_TANF_T3DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, preparsing_validators=[ validators.notEmpty(start=19, end=60), validators.caseNumberNotEmpty(8, 19), @@ -321,6 +322,7 @@ child_two = RowSchema( record_type="T3", document=Tribal_TANF_T3DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, quiet_preparser_errors=True, preparsing_validators=[ validators.notEmpty(start=60, end=101), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py index 553197447..1bfa5b012 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py @@ -13,6 +13,7 @@ RowSchema( record_type="T5", document=Tribal_TANF_T5DataSubmissionDocument(), + should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, preparsing_validators=[ validators.recordHasLength(71), validators.caseNumberNotEmpty(8, 19), From 66243d6e948cf368a3ab86126197941d2f6639ed Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 17 May 2024 16:55:51 -0400 Subject: [PATCH 076/126] - Moved hash generation into schema - updated tests and factories to now support agnostic hash generation --- .../tdpservice/parsers/duplicate_manager.py | 25 ++----------- tdrs-backend/tdpservice/parsers/row_schema.py | 4 +++ .../tdpservice/parsers/schema_defs/ssp/m1.py | 2 ++ .../tdpservice/parsers/schema_defs/ssp/m2.py | 2 ++ .../tdpservice/parsers/schema_defs/ssp/m3.py | 3 ++ .../tdpservice/parsers/schema_defs/ssp/m4.py | 2 ++ .../tdpservice/parsers/schema_defs/ssp/m5.py | 2 ++ .../tdpservice/parsers/schema_defs/tanf/t1.py | 2 ++ .../tdpservice/parsers/schema_defs/tanf/t2.py | 2 ++ .../tdpservice/parsers/schema_defs/tanf/t3.py | 3 ++ .../tdpservice/parsers/schema_defs/tanf/t4.py | 2 ++ .../tdpservice/parsers/schema_defs/tanf/t5.py | 2 ++ .../parsers/schema_defs/tribal_tanf/t1.py | 2 ++ .../parsers/schema_defs/tribal_tanf/t2.py | 2 ++ .../parsers/schema_defs/tribal_tanf/t3.py | 3 ++ .../parsers/schema_defs/tribal_tanf/t4.py | 2 ++ .../parsers/schema_defs/tribal_tanf/t5.py | 2 ++ .../tdpservice/parsers/test/factories.py | 35 ++++++++++++------- .../parsers/test/test_case_consistency.py | 22 ++++++------ tdrs-backend/tdpservice/parsers/util.py | 9 +++++ 20 files changed, 83 insertions(+), 45 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 12715cc64..730474c04 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -84,25 +84,6 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p self.manager_error_dict.setdefault(self.my_hash, []).append(error) self.num_errors = len(self.manager_error_dict[self.my_hash]) - def __get_partial_hash(self, record): - partial_hash = None - if record.RecordType in {"T1", "T4"}: - partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) - elif record.RecordType in {"T2", "T3", "T5"}: - partial_hash = hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + - str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) - return partial_hash - - def __skip_partial(self, record): - skip_partial = False - if record.RecordType == "T2": - skip_partial = record.FAMILY_AFFILIATION in {3, 5} - if record.RecordType == "T3": - skip_partial = record.FAMILY_AFFILIATION in {2, 4, 5} - if record.RecordType == "T5": - skip_partial = record.FAMILY_AFFILIATION in {3, 4, 5} - return skip_partial - def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed. @@ -120,7 +101,9 @@ def add_case_member(self, record, schema, line, line_number): has_precedence = False is_new_max_precedence = False - line_hash = hash(line) + line_hash, partial_hash = schema.generate_hashes_func(line, record) + should_skip_partial_dup = schema.should_skip_partial_dup_func(record) + if line_hash in self.record_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) existing_record_line_number = self.record_hashes[line_hash] @@ -129,8 +112,6 @@ def add_case_member(self, record, schema, line, line_number): f"line number {existing_record_line_number}.") is_exact_dup = True - should_skip_partial_dup = schema.should_skip_partial_dup_func(record) - partial_hash = self.__get_partial_hash(record) if not should_skip_partial_dup and not is_exact_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( ErrorLevel.PARTIAL_DUPLICATE) diff --git a/tdrs-backend/tdpservice/parsers/row_schema.py b/tdrs-backend/tdpservice/parsers/row_schema.py index 80e018f8b..21fea68a8 100644 --- a/tdrs-backend/tdpservice/parsers/row_schema.py +++ b/tdrs-backend/tdpservice/parsers/row_schema.py @@ -13,6 +13,9 @@ def __init__( self, record_type="T1", document=None, + # The default hash function covers all program types with record types ending in a 6 or 7. + generate_hashes_func=lambda line, record: (hash(line), + None), should_skip_partial_dup_func=lambda record: False, preparsing_validators=[], postparsing_validators=[], @@ -20,6 +23,7 @@ def __init__( quiet_preparser_errors=False, ): self.document = document + self.generate_hashes_func = generate_hashes_func self.should_skip_partial_dup_func = should_skip_partial_dup_func self.preparsing_validators = preparsing_validators self.postparsing_validators = postparsing_validators diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py index a125727cb..c7642c48e 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py @@ -5,12 +5,14 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M1DataSubmissionDocument +from tdpservice.parsers.util import generate_t1_t4_hashes m1 = SchemaManager( schemas=[ RowSchema( record_type="M1", document=SSP_M1DataSubmissionDocument(), + generate_hashes_func=generate_t1_t4_hashes, preparsing_validators=[ validators.recordHasLength(150), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py index 44a935a68..e06d699d2 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py @@ -6,6 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M2DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes m2 = SchemaManager( @@ -13,6 +14,7 @@ RowSchema( record_type="M2", document=SSP_M2DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, preparsing_validators=[ validators.recordHasLength(150), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py index cb06293fb..102acdd4c 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py @@ -6,10 +6,12 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M3DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes first_part_schema = RowSchema( record_type="M3", document=SSP_M3DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, preparsing_validators=[ validators.notEmpty(start=19, end=60), @@ -324,6 +326,7 @@ second_part_schema = RowSchema( record_type="M3", document=SSP_M3DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, quiet_preparser_errors=True, preparsing_validators=[ diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py index e5159ad21..f27d7eeb5 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py @@ -5,12 +5,14 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M4DataSubmissionDocument +from tdpservice.parsers.util import generate_t1_t4_hashes m4 = SchemaManager( schemas=[ RowSchema( record_type="M4", document=SSP_M4DataSubmissionDocument(), + generate_hashes_func=generate_t1_t4_hashes, preparsing_validators=[ validators.recordHasLength(66), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py index 0879c9e7b..999ae9e8a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py @@ -6,6 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M5DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes m5 = SchemaManager( @@ -13,6 +14,7 @@ RowSchema( record_type="M5", document=SSP_M5DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, preparsing_validators=[ validators.recordHasLength(66), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py index 368365f3c..c21386f19 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py @@ -4,6 +4,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T1DataSubmissionDocument +from tdpservice.parsers.util import generate_t1_t4_hashes t1 = SchemaManager( @@ -11,6 +12,7 @@ RowSchema( record_type="T1", document=TANF_T1DataSubmissionDocument(), + generate_hashes_func=generate_t1_t4_hashes, preparsing_validators=[ validators.recordHasLength(156), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py index f1b2a8a7d..5f9cbb9c9 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py @@ -6,6 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T2DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes t2 = SchemaManager( @@ -13,6 +14,7 @@ RowSchema( record_type="T2", document=TANF_T2DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, preparsing_validators=[ validators.recordHasLength(156), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py index 743b0deea..ae808263a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py @@ -6,6 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T3DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes FIRST_CHILD = 1 SECOND_CHILD = 2 @@ -13,6 +14,7 @@ child_one = RowSchema( record_type="T3", document=TANF_T3DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, preparsing_validators=[ validators.t3_m3_child_validator(FIRST_CHILD), @@ -325,6 +327,7 @@ child_two = RowSchema( record_type="T3", document=TANF_T3DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, quiet_preparser_errors=validators.is_quiet_preparser_errors(min_length=61), preparsing_validators=[ diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py index 0888dcd05..b410a07e1 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py @@ -5,6 +5,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T4DataSubmissionDocument +from tdpservice.parsers.util import generate_t1_t4_hashes t4 = SchemaManager( @@ -12,6 +13,7 @@ RowSchema( record_type="T4", document=TANF_T4DataSubmissionDocument(), + generate_hashes_func=generate_t1_t4_hashes, preparsing_validators=[ validators.recordHasLength(71), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py index 960672c8b..efbd97edf 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py @@ -6,6 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T5DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes t5 = SchemaManager( @@ -13,6 +14,7 @@ RowSchema( record_type="T5", document=TANF_T5DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, preparsing_validators=[ validators.recordHasLength(71), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py index 77fa5d58e..6861eb532 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py @@ -4,12 +4,14 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T1DataSubmissionDocument +from tdpservice.parsers.util import generate_t1_t4_hashes t1 = SchemaManager( schemas=[ RowSchema( record_type="T1", document=Tribal_TANF_T1DataSubmissionDocument(), + generate_hashes_func=generate_t1_t4_hashes, preparsing_validators=[ validators.recordHasLength(122), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py index ef37d9ddd..51c75074e 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py @@ -6,6 +6,7 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T2DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes t2 = SchemaManager( @@ -13,6 +14,7 @@ RowSchema( record_type="T2", document=Tribal_TANF_T2DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, preparsing_validators=[ validators.recordHasLength(122), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py index f421ebce7..c589a94ab 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py @@ -6,11 +6,13 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T3DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes child_one = RowSchema( record_type="T3", document=Tribal_TANF_T3DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, preparsing_validators=[ validators.notEmpty(start=19, end=60), @@ -322,6 +324,7 @@ child_two = RowSchema( record_type="T3", document=Tribal_TANF_T3DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, quiet_preparser_errors=True, preparsing_validators=[ diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py index ba1d032b2..6b94c8df1 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py @@ -4,6 +4,7 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T4DataSubmissionDocument +from tdpservice.parsers.util import generate_t1_t4_hashes t4 = SchemaManager( @@ -11,6 +12,7 @@ RowSchema( record_type="T4", document=Tribal_TANF_T4DataSubmissionDocument(), + generate_hashes_func=generate_t1_t4_hashes, preparsing_validators=[ validators.recordHasLength(71), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py index 1bfa5b012..fd759ee4a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py @@ -6,6 +6,7 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T5DataSubmissionDocument +from tdpservice.parsers.util import generate_t2_t3_t5_hashes t5 = SchemaManager( @@ -13,6 +14,7 @@ RowSchema( record_type="T5", document=Tribal_TANF_T5DataSubmissionDocument(), + generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, preparsing_validators=[ validators.recordHasLength(71), diff --git a/tdrs-backend/tdpservice/parsers/test/factories.py b/tdrs-backend/tdpservice/parsers/test/factories.py index 0fc5c1796..0bcc18980 100644 --- a/tdrs-backend/tdpservice/parsers/test/factories.py +++ b/tdrs-backend/tdpservice/parsers/test/factories.py @@ -97,7 +97,7 @@ class Meta: model = "search_indexes.TANF_T1" - RecordType = fake.uuid4() + RecordType = "T1" RPT_MONTH_YEAR = 1 CASE_NUMBER = "1" COUNTY_FIPS_CODE = 1 @@ -152,7 +152,7 @@ class Meta: model = "search_indexes.TANF_T2" - RecordType = fake.uuid4() + RecordType = "T2" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 @@ -231,7 +231,7 @@ class Meta: model = "search_indexes.TANF_T3" - RecordType = fake.uuid4() + RecordType = "T3" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' @@ -262,6 +262,7 @@ class Meta: model = "search_indexes.TANF_T4" + RecordType = "T4" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" @@ -284,6 +285,7 @@ class Meta: model = "search_indexes.TANF_T5" + RecordType = "T5" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" FAMILY_AFFILIATION = 1 @@ -321,6 +323,7 @@ class Meta: model = "search_indexes.TANF_T6" + RecordType = "T6" CALENDAR_QUARTER = 1 RPT_MONTH_YEAR = 202301 NUM_APPLICATIONS = 1 @@ -347,6 +350,7 @@ class Meta: model = "search_indexes.TANF_T7" + RecordType = "T7" CALENDAR_QUARTER = 20204 RPT_MONTH_YEAR = 202011 TDRS_SECTION_IND = '1' @@ -361,7 +365,7 @@ class Meta: model = "search_indexes.Tribal_TANF_T1" - RecordType = fake.uuid4() + RecordType = "T1" RPT_MONTH_YEAR = 1 CASE_NUMBER = "1" COUNTY_FIPS_CODE = 1 @@ -416,12 +420,12 @@ class Meta: model = "search_indexes.Tribal_TANF_T2" - RecordType = fake.uuid4() + RecordType = "T2" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 NONCUSTODIAL_PARENT = 1 - DATE_OF_BIRTH = 1 + DATE_OF_BIRTH = "1" SSN = '1' RACE_HISPANIC = 1 RACE_AMER_INDIAN = 1 @@ -477,12 +481,12 @@ class Meta: model = "search_indexes.Tribal_TANF_T3" - RecordType = fake.uuid4() + RecordType = "T3" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 - DATE_OF_BIRTH = 1 + DATE_OF_BIRTH = "1" SSN = '1' RACE_HISPANIC = 1 RACE_AMER_INDIAN = 1 @@ -508,6 +512,7 @@ class Meta: model = "search_indexes.Tribal_TANF_T4" + RecordType = "T4" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" @@ -530,6 +535,7 @@ class Meta: model = "search_indexes.Tribal_TANF_T5" + RecordType = "T5" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" FAMILY_AFFILIATION = 1 @@ -567,6 +573,7 @@ class Meta: model = "search_indexes.Tribal_TANF_T6" + RecordType = "T6" CALENDAR_QUARTER = 1 RPT_MONTH_YEAR = 202301 NUM_APPLICATIONS = 1 @@ -608,7 +615,7 @@ class Meta: model = "search_indexes.SSP_M1" - RecordType = fake.uuid4() + RecordType = "M1" RPT_MONTH_YEAR = 1 CASE_NUMBER = "1" COUNTY_FIPS_CODE = 1 @@ -659,7 +666,7 @@ class Meta: model = "search_indexes.SSP_M2" - RecordType = fake.uuid4() + RecordType = "M2" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' FAMILY_AFFILIATION = 1 @@ -735,7 +742,7 @@ class Meta: model = "search_indexes.SSP_M3" - RecordType = fake.uuid4() + RecordType = "M3" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' @@ -766,6 +773,7 @@ class Meta: model = "search_indexes.SSP_M4" + RecordType = "M4" RPT_MONTH_YEAR = 202301 CASE_NUMBER = "1" @@ -787,6 +795,7 @@ class Meta: model = "search_indexes.SSP_M5" + RecordType = "M5" RPT_MONTH_YEAR = 1 CASE_NUMBER = '1' @@ -824,6 +833,7 @@ class Meta: model = "search_indexes.SSP_M6" + RecordType = "M6" CALENDAR_QUARTER = 1 RPT_MONTH_YEAR = 202301 SSPMOE_FAMILIES = 1 @@ -845,8 +855,9 @@ class Meta: model = "search_indexes.SSP_M7" + RecordType = "M7" CALENDAR_QUARTER = 20204 RPT_MONTH_YEAR = 202011 TDRS_SECTION_IND = '1' STRATUM = '01' - FAMILIES_MONTH = 1 + FAMILIES_MONTH = 1 \ No newline at end of file diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index c013b3a56..a9557a119 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -443,7 +443,7 @@ def test_section1_records_are_related_validator_fail_no_family_affiliation( errors = case_consistency_validator.get_generated_errors() - assert len(errors) == 1 + assert len(errors) == 2 assert num_errors == 1 assert errors[0].error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY assert errors[0].error_message == ( @@ -500,16 +500,16 @@ def test_section2_validator_pass(self, small_correct_file, header, T4Stuff, T5St T5Factory.create( RPT_MONTH_YEAR=202010, CASE_NUMBER='123', - FAMILY_AFFILIATION=2, + FAMILY_AFFILIATION=3, REC_AID_TOTALLY_DISABLED=2, - REC_SSI=2 + REC_SSI=1 ), T5Factory.create( RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=2, REC_AID_TOTALLY_DISABLED=2, - REC_SSI=2 + REC_SSI=1 ), ] for t5 in t5s: @@ -573,9 +573,9 @@ def test_section2_validator_fail_case_closure_employment( T5Factory.create( RPT_MONTH_YEAR=202010, CASE_NUMBER='123', - FAMILY_AFFILIATION=2, + FAMILY_AFFILIATION=3, REC_AID_TOTALLY_DISABLED=2, - REC_SSI=2, + REC_SSI=1, EMPLOYMENT_STATUS=3, ), T5Factory.create( @@ -583,7 +583,7 @@ def test_section2_validator_fail_case_closure_employment( CASE_NUMBER='123', FAMILY_AFFILIATION=2, REC_AID_TOTALLY_DISABLED=2, - REC_SSI=2, + REC_SSI=1, EMPLOYMENT_STATUS=2, ), ] @@ -655,7 +655,7 @@ def test_section2_validator_fail_case_closure_ftl(self, small_correct_file, head T5Factory.create( RPT_MONTH_YEAR=202010, CASE_NUMBER='123', - FAMILY_AFFILIATION=2, + FAMILY_AFFILIATION=3, REC_AID_TOTALLY_DISABLED=2, REC_SSI=2, RELATIONSHIP_HOH='03', @@ -772,16 +772,16 @@ def test_section2_records_are_related_validator_fail_no_t4s( T5Factory.create( RPT_MONTH_YEAR=202010, CASE_NUMBER='123', - FAMILY_AFFILIATION=2, + FAMILY_AFFILIATION=3, REC_AID_TOTALLY_DISABLED=2, - REC_SSI=2 + REC_SSI=1 ), T5Factory.create( RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=2, REC_AID_TOTALLY_DISABLED=2, - REC_SSI=2 + REC_SSI=1 ), ] line_number = 1 diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 65d0555f5..d90a08d43 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -238,3 +238,12 @@ def remove_case_due_to_errors(self, should_remove, hash): f"Record(s) info: {case_ids}.") return True and hash not in self.serialized_cases return False + +def generate_t1_t4_hashes(line, record): + """Returns the hashes for duplicate and partial duplicate detection for T1 & T4 records.""" + return hash(line), hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) + +def generate_t2_t3_t5_hashes(line, record): + """Returns the hashes for duplicate and partial duplicate detection for T2 & T3 & T5 records.""" + return hash(line), hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) From 56b31b3e340f202fe7d2095efc6268e98a727a8c Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 20 May 2024 09:05:42 -0400 Subject: [PATCH 077/126] - Updated error message - fixed incorrect indentation on error counting --- tdrs-backend/tdpservice/parsers/case_consistency_validator.py | 4 ++-- tdrs-backend/tdpservice/parsers/test/test_case_consistency.py | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index f417733fb..4f6bad5fb 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -434,7 +434,7 @@ def __validate_t5_aabd_and_ssi(self): 'of 1 for REC_AID_TOTALLY_DISABLED.' ) ) - num_errors += 1 + num_errors += 1 if is_territory and rec_ssi != 2: self.__generate_and_add_error( @@ -455,6 +455,6 @@ def __validate_t5_aabd_and_ssi(self): f'{t5_model_name} People in states must have a valid value for REC_SSI.' ) ) - num_errors += 1 + num_errors += 1 return num_errors diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 6996f6dc6..4f04e83ff 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -674,9 +674,7 @@ def test_section2_validator_fail_case_closure_ftl(self, small_correct_file, head assert num_errors == 1 assert errors[0].error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY assert errors[0].error_message == ( - 'At least one person who is head-of-household or spouse of head-of-household ' - 'on case must have countable months toward time limit >= 60 since ' - 'CLOSURE_REASON = 03: federal 5 year time limit.' + 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' ) @pytest.mark.parametrize("header,T4Stuff,T5Stuff,stt_type", [ From 13cf281ab80cd4872c70e3af3120e58fecd0aec0 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 20 May 2024 09:19:15 -0400 Subject: [PATCH 078/126] - move fixtures to conftest --- .../tdpservice/parsers/test/conftest.py | 26 +++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index 1fc874ad5..a4d05de51 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -215,6 +215,9 @@ def second_child_only_space_t3_file(): file__name='second_child_only_space_t3_file.txt', file__section=DataFile.Section.ACTIVE_CASE_DATA, file__data=(b'HEADER20212A25 TAN1 D\n' + + b'T120210400028221R0112014122311110232110374300000000000005450' + + b'320000000000000000000000000000000000222222000000002229021000' + + b'000000000000000000000000000000000000\n' b'T320210400028221R0112014122888175617622222112204398100000000' + b' \n' + b'TRAILER0000001 ') @@ -231,6 +234,9 @@ def one_child_t3_file(): file__name='one_child_t3_file.txt', file__section=DataFile.Section.ACTIVE_CASE_DATA, file__data=(b'HEADER20212A25 TAN1 D\n' + + b'T120210400028221R0112014122311110232110374300000000000005450' + + b'320000000000000000000000000000000000222222000000002229021000' + + b'000000000000000000000000000000000000\n' b'T320210400028221R0112014122888175617622222112204398100000000\n' + b'TRAILER0000001 ') ) @@ -247,6 +253,9 @@ def t3_file(): file__name='t3_file.txt', file__section=DataFile.Section.ACTIVE_CASE_DATA, file__data=(b'HEADER20212A25 TAN1ED\n' + + b'T12021044111111111512014122311110232110374300000000000005450' + + b'320000000000000000000000000000000000222222000000002229021000' + + b'000000000000000000000000000000000000\n' b'T320210441111111115120160401WTTTT@BTB22212212204398100000000' + b' ' + b' \n' + @@ -266,6 +275,9 @@ def t3_file_two_child(): file__name='t3_file.txt', file__section=DataFile.Section.ACTIVE_CASE_DATA, file__data=(b'HEADER20211A25 TAN1ED\n' + + b'T12021021111111115712014122311110232110374300000000000005450' + + b'320000000000000000000000000000000000222222000000002229021000' + + b'000000000000000000000000000000000000\n' b'T320210211111111157120190527WTTTTT9WT12212122204398100000000' + b'420100125WTTTT9@TB1221222220430490000\n' + b'TRAILER0000001 ') @@ -279,10 +291,13 @@ def t3_file_two_child_with_space_filled(): parsing_file = ParsingFileFactory( year=2021, quarter='Q2', - original_filename='t3_file.txt', - file__name='t3_file.txt', + original_filename='t3_file_two_child_with_space_filled.txt', + file__name='t3_file_two_child_with_space_filled.txt', file__section=DataFile.Section.ACTIVE_CASE_DATA, file__data=(b'HEADER20211A25 TAN1ED\n' + + b'T12021021111111115712014122311110232110374300000000000005450' + + b'320000000000000000000000000000000000222222000000002229021000' + + b'000000000000000000000000000000000000\n' b'T320210211111111157120190527WTTTTT9WT12212122204398100000000' + b'420100125WTTTT9@TB1221222220430490000 \n' + b'TRAILER0000001 ') @@ -301,6 +316,9 @@ def two_child_second_filled(): file__name='two_child_second_filled.txt', file__section=DataFile.Section.ACTIVE_CASE_DATA, file__data=(b'HEADER20211A25 TAN1ED\n' + + b'T12021021111111111512014122311110232110374300000000000005450' + + b'320000000000000000000000000000000000222222000000002229021000' + + b'000000000000000000000000000000000000\n' b'T320210211111111115120160401WTTTT@BTB22212212204398100000000' + b'56 111111111 ' + b' \n' + @@ -308,6 +326,7 @@ def two_child_second_filled(): ) return parsing_file + @pytest.fixture def t3_file_zero_filled_second(): """Fixture for T3 file.""" @@ -319,6 +338,9 @@ def t3_file_zero_filled_second(): file__name='t3_file_zero_filled_second.txt', file__section=DataFile.Section.ACTIVE_CASE_DATA, file__data=(b'HEADER20212A25 TAN1ED\n' + + b'T12021044111111111512014122311110232110374300000000000005450' + + b'320000000000000000000000000000000000222222000000002229021000' + + b'000000000000000000000000000000000000\n' b'T320210441111111115120160401WTTTT@BTB22212212204398100000000' + b'000000000000000000000000000000000000000000000000000000000000' + b'000000000000000000000000000000000000\n' + From 43cd8c5f8971f489adbad2676b34ddaf2dfe2449 Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Mon, 20 May 2024 09:20:07 -0400 Subject: [PATCH 079/126] add radio button for jurisdiction type --- .../src/components/ComboBox/ComboBox.jsx | 4 ++ tdrs-frontend/src/components/Home/Home.jsx | 56 ++++++++++++++++++- .../components/STTComboBox/STTComboBox.jsx | 23 +++++--- tdrs-frontend/src/utils/stringUtils.js | 6 ++ tdrs-frontend/src/utils/stringUtils.test.js | 14 +++++ 5 files changed, 94 insertions(+), 9 deletions(-) create mode 100644 tdrs-frontend/src/utils/stringUtils.js create mode 100644 tdrs-frontend/src/utils/stringUtils.test.js diff --git a/tdrs-frontend/src/components/ComboBox/ComboBox.jsx b/tdrs-frontend/src/components/ComboBox/ComboBox.jsx index 661e2f1dc..a9240d25f 100644 --- a/tdrs-frontend/src/components/ComboBox/ComboBox.jsx +++ b/tdrs-frontend/src/components/ComboBox/ComboBox.jsx @@ -27,6 +27,7 @@ const ComboBox = ({ name, placeholder, label, + autoComplete, }) => { useEffect(() => { // The combo box was not rendering as a combo box without this line @@ -64,6 +65,7 @@ const ComboBox = ({
{/* eslint-disable-next-line jsx-a11y/no-onchange */} setJurisdictionType('state')} + /> + +
+
+ setJurisdictionType('tribe')} + /> + +
+
+ setJurisdictionType('territory')} + /> + +
+ + + {jurisdictionType && shouldShowSttComboBox && (
)} diff --git a/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx b/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx index 21da77488..6c7b39314 100644 --- a/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx +++ b/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx @@ -4,6 +4,7 @@ import { useDispatch, useSelector } from 'react-redux' import { fetchSttList } from '../../actions/sttList' import ComboBox from '../ComboBox' import Modal from '../Modal' +import { toTitleCase } from '../../utils/stringUtils' /** * @param {function} selectStt - Function to reference and change the @@ -14,7 +15,7 @@ import Modal from '../Modal' * @param {function} error - Reference to stt errors object. */ -function STTComboBox({ selectStt, selectedStt, handleBlur, error }) { +function STTComboBox({ selectStt, selectedStt, handleBlur, error, sttType }) { const sttListRequest = useSelector((state) => state?.stts) const dispatch = useDispatch() const [numTries, setNumTries] = useState(0) @@ -45,22 +46,30 @@ function STTComboBox({ selectStt, selectedStt, handleBlur, error }) { <> - {sttListRequest.sttList.map((stt) => ( - - ))} + {sttListRequest.sttList.map( + (stt) => + (sttType == null || stt.type === sttType) && ( + + ) + )} + str && + str.replace( + /\w\S*/g, + (txt) => txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase() + ) diff --git a/tdrs-frontend/src/utils/stringUtils.test.js b/tdrs-frontend/src/utils/stringUtils.test.js new file mode 100644 index 000000000..307167ce8 --- /dev/null +++ b/tdrs-frontend/src/utils/stringUtils.test.js @@ -0,0 +1,14 @@ +import { toTitleCase } from './stringUtils' + +describe('toTitleCase', () => { + it.each([ + ['test me', 'Test Me'], + ['tribe', 'Tribe'], + [' i like peanuts ', ' I Like Peanuts '], + ['jeffrey wuz 123here', 'Jeffrey Wuz 123here'], + ['', ''], + [null, null], + ])('Capitalizes first char of each word', (original, expected) => { + expect(toTitleCase(original)).toEqual(expected) + }) +}) From ac2fbc559090b9ec7561348e287b809eaf5dfc3e Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 20 May 2024 09:25:25 -0400 Subject: [PATCH 080/126] - fix lint --- tdrs-backend/tdpservice/parsers/test/factories.py | 2 +- tdrs-backend/tdpservice/parsers/util.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/factories.py b/tdrs-backend/tdpservice/parsers/test/factories.py index 0bcc18980..101f6c141 100644 --- a/tdrs-backend/tdpservice/parsers/test/factories.py +++ b/tdrs-backend/tdpservice/parsers/test/factories.py @@ -860,4 +860,4 @@ class Meta: RPT_MONTH_YEAR = 202011 TDRS_SECTION_IND = '1' STRATUM = '01' - FAMILIES_MONTH = 1 \ No newline at end of file + FAMILIES_MONTH = 1 diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index d90a08d43..26ca1266c 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -240,10 +240,10 @@ def remove_case_due_to_errors(self, should_remove, hash): return False def generate_t1_t4_hashes(line, record): - """Returns the hashes for duplicate and partial duplicate detection for T1 & T4 records.""" + """Return hashes for duplicate and partial duplicate detection for T1 & T4 records.""" return hash(line), hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) def generate_t2_t3_t5_hashes(line, record): - """Returns the hashes for duplicate and partial duplicate detection for T2 & T3 & T5 records.""" + """Return hashes for duplicate and partial duplicate detection for T2 & T3 & T5 records.""" return hash(line), hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) From 2a2b29af3fd468e287190dcfaf249c351364e989 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 20 May 2024 09:39:43 -0400 Subject: [PATCH 081/126] - fixed tests from merge conflict --- .../tdpservice/parsers/test/test_parse.py | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index bc85beaef..51f32c9ed 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1552,16 +1552,16 @@ def test_parse_tribal_section_4_bad_quarter(tribal_section_4_bad_quarter, dfs): @pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ ('tanf_s1_exact_dup_file', 10000, TANF_T1, "T1", 3), ('tanf_s1_exact_dup_file', 1, TANF_T1, "T1", 3), # This forces an in memory and database deletion of records. - ('tanf_s2_exact_dup_file', 10000, TANF_T4, "T4", 3), - ('tanf_s2_exact_dup_file', 1, TANF_T4, "T4", 3), # This forces an in memory and database deletion of records. + ('tanf_s2_exact_dup_file', 10000, TANF_T4, "T4", 4), + ('tanf_s2_exact_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. ('tanf_s3_exact_dup_file', 10000, TANF_T6, "T6", 1), ('tanf_s3_exact_dup_file', 1, TANF_T6, "T6", 1), # This forces an in memory and database deletion of records. ('tanf_s4_exact_dup_file', 10000, TANF_T7, "T7", 1), ('tanf_s4_exact_dup_file', 1, TANF_T7, "T7", 1), # This forces an in memory and database deletion of records. ('ssp_s1_exact_dup_file', 10000, SSP_M1, "M1", 3), ('ssp_s1_exact_dup_file', 1, SSP_M1, "M1", 3), # This forces an in memory and database deletion of records. - ('ssp_s2_exact_dup_file', 10000, SSP_M4, "M4", 3), - ('ssp_s2_exact_dup_file', 1, SSP_M4, "M4", 3), # This forces an in memory and database deletion of records. + ('ssp_s2_exact_dup_file', 10000, SSP_M4, "M4", 4), + ('ssp_s2_exact_dup_file', 1, SSP_M4, "M4", 4), # This forces an in memory and database deletion of records. ('ssp_s3_exact_dup_file', 10000, SSP_M6, "M6", 1), ('ssp_s3_exact_dup_file', 1, SSP_M6, "M6", 1), # This forces an in memory and database deletion of records. ('ssp_s4_exact_dup_file', 10000, SSP_M7, "M7", 1), @@ -1588,15 +1588,15 @@ def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, model.objects.count() == 0 -@pytest.mark.parametrize("file, batch_size, model, record_type", [ - ('tanf_s1_partial_dup_file', 10000, TANF_T1, "T1"), - ('tanf_s1_partial_dup_file', 1, TANF_T1, "T1"), # This forces an in memory and database deletion of records. - ('tanf_s2_partial_dup_file', 10000, TANF_T4, "T4"), - ('tanf_s2_partial_dup_file', 1, TANF_T4, "T4"), # This forces an in memory and database deletion of records. - ('ssp_s1_partial_dup_file', 10000, SSP_M1, "M1"), - ('ssp_s1_partial_dup_file', 1, SSP_M1, "M1"), # This forces an in memory and database deletion of records. - ('ssp_s2_partial_dup_file', 10000, SSP_M4, "M4"), - ('ssp_s2_partial_dup_file', 1, SSP_M4, "M4"), # This forces an in memory and database deletion of records. +@pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ + ('tanf_s1_partial_dup_file', 10000, TANF_T1, "T1", 3), + ('tanf_s1_partial_dup_file', 1, TANF_T1, "T1", 3), # This forces an in memory and database deletion of records. + ('tanf_s2_partial_dup_file', 10000, TANF_T4, "T4", 4), + ('tanf_s2_partial_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. + ('ssp_s1_partial_dup_file', 10000, SSP_M1, "M1", 3), + ('ssp_s1_partial_dup_file', 1, SSP_M1, "M1", 3), # This forces an in memory and database deletion of records. + ('ssp_s2_partial_dup_file', 10000, SSP_M4, "M4", 4), + ('ssp_s2_partial_dup_file', 1, SSP_M4, "M4", 4), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() def test_parse_partial_duplicate(file, batch_size, model, record_type, num_errors, dfs, request): From 117c60fd2ff8c898e9ef25258584c493e99dae21 Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Mon, 20 May 2024 09:49:41 -0400 Subject: [PATCH 082/126] add tests --- .../src/components/Home/Home.test.jsx | 104 +++++++++++++++++- .../components/STTComboBox/STTComboBox.jsx | 2 +- 2 files changed, 103 insertions(+), 3 deletions(-) diff --git a/tdrs-frontend/src/components/Home/Home.test.jsx b/tdrs-frontend/src/components/Home/Home.test.jsx index 0d85cd65a..353430317 100644 --- a/tdrs-frontend/src/components/Home/Home.test.jsx +++ b/tdrs-frontend/src/components/Home/Home.test.jsx @@ -256,6 +256,55 @@ describe('Pre-approval Home page', () => { code: 'AK', name: 'Aleutian/Pribilof Islands Association, Inc.', }, + { + id: 1111, + type: 'territory', + code: 'G', + name: 'Guam', + }, + ], + }, + }) + const wrapper = mount( + + + + ) + + const options = wrapper.find('option') + + expect(options.length).toEqual(3) + }) + + it('should mount a list of tribe options based on stts from the store', () => { + const store = mockStore({ + ...initialState, + stts: { + sttList: [ + { + id: 1, + type: 'state', + code: 'AL', + name: 'Alabama', + }, + { + id: 2, + type: 'state', + code: 'AK', + name: 'Alaska', + }, + { + id: 140, + type: 'tribe', + code: 'AK', + name: 'Aleutian/Pribilof Islands Association, Inc.', + }, + { + id: 1111, + type: 'territory', + code: 'G', + name: 'Guam', + }, ], }, }) @@ -265,9 +314,60 @@ describe('Pre-approval Home page', () => { ) + const radio = wrapper.find('#tribe') + radio.simulate('change', { + target: { name: 'jurisdictionType', value: 'tribe' }, + }) + const options = wrapper.find('option') + expect(options.length).toEqual(2) + }) - expect(options.length).toEqual(4) + it('should mount a list of territory options based on stts from the store', () => { + const store = mockStore({ + ...initialState, + stts: { + sttList: [ + { + id: 1, + type: 'state', + code: 'AL', + name: 'Alabama', + }, + { + id: 2, + type: 'state', + code: 'AK', + name: 'Alaska', + }, + { + id: 140, + type: 'tribe', + code: 'AK', + name: 'Aleutian/Pribilof Islands Association, Inc.', + }, + { + id: 1111, + type: 'territory', + code: 'G', + name: 'Guam', + }, + ], + }, + }) + const wrapper = mount( + + + + ) + + const radio = wrapper.find('#territory') + radio.simulate('change', { + target: { name: 'jurisdictionType', value: 'territory' }, + }) + + const options = wrapper.find('option') + expect(options.length).toEqual(2) }) it('should not show the stt combno box for non-STT users', () => { @@ -575,7 +675,7 @@ describe('Pre-approval Home page', () => { ) - const select = getByLabelText('Associated State, Tribe, or Territory*', { + const select = getByLabelText('State*', { selector: 'input', }) diff --git a/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx b/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx index 6c7b39314..6b753cafc 100644 --- a/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx +++ b/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx @@ -48,7 +48,7 @@ function STTComboBox({ selectStt, selectedStt, handleBlur, error, sttType }) { name="stt" label={ sttType - ? toTitleCase(sttType) + ? `${toTitleCase(sttType)}*` : 'Associated State, Tribe, or Territory*' } error={error ? 'A state, tribe, or territory is required' : undefined} From e2dcad9b2723a6c796101889df3f550294ec285b Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 20 May 2024 17:19:51 -0400 Subject: [PATCH 083/126] - Update error creation logging to track all errors - Updated queries to most correct syntax for aggregates function - Updated tests --- tdrs-backend/tdpservice/parsers/aggregates.py | 14 +++++++------- tdrs-backend/tdpservice/parsers/parse.py | 7 +++++-- tdrs-backend/tdpservice/parsers/test/test_parse.py | 4 ++-- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/aggregates.py b/tdrs-backend/tdpservice/parsers/aggregates.py index fbe4aaab2..3c3e57ba6 100644 --- a/tdrs-backend/tdpservice/parsers/aggregates.py +++ b/tdrs-backend/tdpservice/parsers/aggregates.py @@ -1,6 +1,6 @@ """Aggregate methods for the parsers.""" from .row_schema import SchemaManager -from .models import ParserError +from .models import ParserError, ParserErrorCategoryChoices from .util import month_to_int, \ transform_to_months, fiscal_to_calendar, get_prog_from_section from .schema_defs.utils import get_program_models, get_text_from_df @@ -39,22 +39,22 @@ def case_aggregates_by_month(df, dfs_status): if isinstance(schema_model, SchemaManager): schema_model = schema_model.schemas[0] - curr_case_numbers = set(schema_model.document.Django.model.objects.filter(datafile=df) - .filter(RPT_MONTH_YEAR=rpt_month_year) + curr_case_numbers = set(schema_model.document.Django.model.objects.filter(datafile=df, + RPT_MONTH_YEAR=rpt_month_year) .distinct("CASE_NUMBER").values_list("CASE_NUMBER", flat=True)) case_numbers = case_numbers.union(curr_case_numbers) total += len(case_numbers) - cases_with_errors += ParserError.objects.filter(file=df).filter( - case_number__in=case_numbers).distinct('case_number').count() + cases_with_errors += ParserError.objects.filter(file=df, case_number__in=case_numbers)\ + .distinct('case_number').count() accepted = total - cases_with_errors aggregate_data['months'].append({"month": month, "accepted_without_errors": accepted, "accepted_with_errors": cases_with_errors}) - aggregate_data['rejected'] = ParserError.objects.filter(file=df).filter(case_number=None).distinct("row_number")\ - .exclude(row_number=0).count() + aggregate_data['rejected'] = ParserError.objects.filter(file=df, error_type=ParserErrorCategoryChoices.PRE_CHECK)\ + .distinct("row_number").exclude(row_number=0).count() return aggregate_data diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 521422c99..604b9d5a8 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -219,6 +219,7 @@ def generate_trailer_errors(trailer_errors, errors, unsaved_parser_errors, num_e def create_no_records_created_pre_check_error(datafile, dfs): """Generate a precheck error if no records were created.""" errors = {} + created = 0 if dfs.total_number_of_records_created == 0: generate_error = util.make_generate_parser_error(datafile, 0) err_obj = generate_error( @@ -229,7 +230,8 @@ def create_no_records_created_pre_check_error(datafile, dfs): field=None ) errors["no_records_created"] = [err_obj] - return errors + created = 1 + return errors, created def delete_serialized_records(duplicate_manager): """Delete all records that have already been serialized to the DB that have cat4 errors.""" @@ -379,7 +381,8 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas dfs, flush=True) unsaved_records.clear(all_created) - no_records_created_error = create_no_records_created_pre_check_error(datafile, dfs) + no_records_created_error, created = create_no_records_created_pre_check_error(datafile, dfs) + num_errors += created unsaved_parser_errors.update(no_records_created_error) if not all_created: diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index c16708b6a..68162cb1b 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -74,7 +74,7 @@ def test_parse_small_correct_file(test_datafile, dfs): dfs.status = dfs.get_status() dfs.case_aggregates = aggregates.case_aggregates_by_month(dfs.datafile, dfs.status) - assert dfs.case_aggregates == {'rejected': 1, + assert dfs.case_aggregates == {'rejected': 0, 'months': [ {'accepted_without_errors': 'N/A', 'accepted_with_errors': 'N/A', @@ -389,7 +389,7 @@ def test_parse_bad_trailer_file2(bad_trailer_file_2, dfs): errors = parse.parse_datafile(bad_trailer_file_2, dfs) parser_errors = ParserError.objects.filter(file=bad_trailer_file_2) - assert parser_errors.count() == 7 + assert parser_errors.count() == 8 trailer_errors = list(parser_errors.filter(row_number=3).order_by('id')) From 0d315c70f232a2f5b6103f390ca58f04720bbf20 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 20 May 2024 17:40:10 -0400 Subject: [PATCH 084/126] - lint --- tdrs-backend/tdpservice/parsers/aggregates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/aggregates.py b/tdrs-backend/tdpservice/parsers/aggregates.py index 3c3e57ba6..a3d6d3b1e 100644 --- a/tdrs-backend/tdpservice/parsers/aggregates.py +++ b/tdrs-backend/tdpservice/parsers/aggregates.py @@ -39,7 +39,7 @@ def case_aggregates_by_month(df, dfs_status): if isinstance(schema_model, SchemaManager): schema_model = schema_model.schemas[0] - curr_case_numbers = set(schema_model.document.Django.model.objects.filter(datafile=df, + curr_case_numbers = set(schema_model.document.Django.model.objects.filter(datafile=df, RPT_MONTH_YEAR=rpt_month_year) .distinct("CASE_NUMBER").values_list("CASE_NUMBER", flat=True)) case_numbers = case_numbers.union(curr_case_numbers) From 818066833cde3d76c753e302bcff35213fdab746 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 21 May 2024 07:53:05 -0400 Subject: [PATCH 085/126] - move fixture --- tdrs-backend/tdpservice/parsers/test/conftest.py | 5 +++++ tdrs-backend/tdpservice/parsers/test/test_parse.py | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index a4d05de51..cedccc248 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -189,6 +189,11 @@ def tanf_section_4_file_with_errors(stt_user, stt): """Fixture for tanf_section4_with_errors.""" return util.create_test_datafile('tanf_section4_with_errors.txt', stt_user, stt, "Stratum Data") +@pytest.fixture +def aggregates_rejected_datafile(stt_user, stt): + """Fixture for aggregates_rejected.""" + return util.create_test_datafile('aggregates_rejected.txt', stt_user, stt) + @pytest.fixture def no_records_file(stt_user, stt): """Fixture for tanf_section4_with_errors.""" diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 81fd3d744..28ab2c92f 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1512,11 +1512,6 @@ def test_parse_no_records_file(no_records_file, dfs): assert error.content_type is None assert error.object_id is None -@pytest.fixture -def aggregates_rejected_datafile(stt_user, stt): - """Fixture for aggregates_rejected.""" - return util.create_test_datafile('aggregates_rejected.txt', stt_user, stt) - @pytest.mark.django_db def test_parse_aggregates_rejected_datafile(aggregates_rejected_datafile, dfs): From 3505ee27a8f7408afd781c6bc675848fde46c1bc Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 21 May 2024 09:06:02 -0400 Subject: [PATCH 086/126] - Updated aggregates query to take into account cat4 errors --- tdrs-backend/tdpservice/parsers/aggregates.py | 6 +++++- tdrs-backend/tdpservice/parsers/models.py | 5 ++++- tdrs-backend/tdpservice/parsers/test/test_parse.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/aggregates.py b/tdrs-backend/tdpservice/parsers/aggregates.py index a3d6d3b1e..40f4e7527 100644 --- a/tdrs-backend/tdpservice/parsers/aggregates.py +++ b/tdrs-backend/tdpservice/parsers/aggregates.py @@ -4,6 +4,7 @@ from .util import month_to_int, \ transform_to_months, fiscal_to_calendar, get_prog_from_section from .schema_defs.utils import get_program_models, get_text_from_df +from django.db.models import Q def case_aggregates_by_month(df, dfs_status): @@ -53,7 +54,10 @@ def case_aggregates_by_month(df, dfs_status): "accepted_without_errors": accepted, "accepted_with_errors": cases_with_errors}) - aggregate_data['rejected'] = ParserError.objects.filter(file=df, error_type=ParserErrorCategoryChoices.PRE_CHECK)\ + error_type_query = Q(error_type=ParserErrorCategoryChoices.PRE_CHECK) | \ + Q(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) + + aggregate_data['rejected'] = ParserError.objects.filter(error_type_query, file=df)\ .distinct("row_number").exclude(row_number=0).count() return aggregate_data diff --git a/tdrs-backend/tdpservice/parsers/models.py b/tdrs-backend/tdpservice/parsers/models.py index 276243870..5db6ec1a9 100644 --- a/tdrs-backend/tdpservice/parsers/models.py +++ b/tdrs-backend/tdpservice/parsers/models.py @@ -103,13 +103,16 @@ def get_status(self): .exclude(error_message__icontains="trailer")\ .exclude(error_message__icontains="Unknown Record_Type was found.") + case_consistency_errors = errors.filter(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) + row_precheck_errors = errors.filter(error_type=ParserErrorCategoryChoices.PRE_CHECK)\ .filter(field_name="Record_Type")\ .exclude(error_message__icontains="trailer") if errors is None: return DataFileSummary.Status.PENDING - elif precheck_errors.count() > 0 or self.total_number_of_records_created == 0: + elif precheck_errors.count() > 0 or case_consistency_errors.count() > 0 or \ + self.total_number_of_records_created == 0: return DataFileSummary.Status.REJECTED elif errors.count() == 0: return DataFileSummary.Status.ACCEPTED diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 28ab2c92f..503d19948 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -40,7 +40,7 @@ def test_parse_small_correct_file(small_correct_file, dfs): dfs.status = dfs.get_status() dfs.case_aggregates = aggregates.case_aggregates_by_month(dfs.datafile, dfs.status) - assert dfs.case_aggregates == {'rejected': 0, + assert dfs.case_aggregates == {'rejected': 1, 'months': [ {'accepted_without_errors': 'N/A', 'accepted_with_errors': 'N/A', From 89d62987338247af48bee6ce634d3b461a13c67f Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 21 May 2024 09:16:45 -0400 Subject: [PATCH 087/126] - lint --- tdrs-backend/tdpservice/parsers/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/models.py b/tdrs-backend/tdpservice/parsers/models.py index 5db6ec1a9..1cbd8c5a5 100644 --- a/tdrs-backend/tdpservice/parsers/models.py +++ b/tdrs-backend/tdpservice/parsers/models.py @@ -112,7 +112,7 @@ def get_status(self): if errors is None: return DataFileSummary.Status.PENDING elif precheck_errors.count() > 0 or case_consistency_errors.count() > 0 or \ - self.total_number_of_records_created == 0: + self.total_number_of_records_created == 0: return DataFileSummary.Status.REJECTED elif errors.count() == 0: return DataFileSummary.Status.ACCEPTED From c5189a6b2c3009f444adcd6dbed231d6625fe956 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 24 May 2024 08:14:37 -0400 Subject: [PATCH 088/126] - import as Query --- tdrs-backend/tdpservice/parsers/aggregates.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/aggregates.py b/tdrs-backend/tdpservice/parsers/aggregates.py index 40f4e7527..b7d1494ed 100644 --- a/tdrs-backend/tdpservice/parsers/aggregates.py +++ b/tdrs-backend/tdpservice/parsers/aggregates.py @@ -4,7 +4,7 @@ from .util import month_to_int, \ transform_to_months, fiscal_to_calendar, get_prog_from_section from .schema_defs.utils import get_program_models, get_text_from_df -from django.db.models import Q +from django.db.models import Q as Query def case_aggregates_by_month(df, dfs_status): @@ -54,8 +54,8 @@ def case_aggregates_by_month(df, dfs_status): "accepted_without_errors": accepted, "accepted_with_errors": cases_with_errors}) - error_type_query = Q(error_type=ParserErrorCategoryChoices.PRE_CHECK) | \ - Q(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) + error_type_query = Query(error_type=ParserErrorCategoryChoices.PRE_CHECK) | \ + Query(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) aggregate_data['rejected'] = ParserError.objects.filter(error_type_query, file=df)\ .distinct("row_number").exclude(row_number=0).count() From ec0c736b71ff657179c1ea07db077f178297fc2d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 24 May 2024 08:37:28 -0400 Subject: [PATCH 089/126] - moved fixture to correct location --- .../tdpservice/parsers/test/conftest.py | 17 +++++++++++++++++ .../tdpservice/parsers/test/test_parse.py | 18 ------------------ 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index cedccc248..b4172f7de 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -209,6 +209,23 @@ def tribal_section_4_bad_quarter(stt_user, stt): """Fixture for tribal_section_4_bad_quarter.""" return util.create_test_datafile('tribal_section_4_fake_bad_quarter.txt', stt_user, stt, "Tribal Stratum Data") +@pytest.fixture +def t4_t5_empty_values(): + """Fixture for T3 file.""" + # T3 record is space filled correctly + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q3', + original_filename='t4_t5_empty_values.txt', + section=DataFile.Section.CLOSED_CASE_DATA, + file__filename='t4_t5_empty_values.txt', + file__data=(b'HEADER20212C06 TAN1ED\n' + + b'T420210411111111158253 400141123113 \n' + + b'T520210411111111158119970123WTTTTTP@Y2222212222221011212100946200000000\n' + + b'TRAILER0000001 ') + ) + return parsing_file + @pytest.fixture def second_child_only_space_t3_file(): """Fixture for misformatted_t3_file.""" diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index dd74825cc..1f8e2d7c2 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1400,24 +1400,6 @@ def test_misformatted_multi_records(file_fixture, result, number_of_errors, erro assert parser_errors.count() == number_of_errors -@pytest.fixture -def t4_t5_empty_values(): - """Fixture for T3 file.""" - # T3 record is space filled correctly - parsing_file = ParsingFileFactory( - year=2021, - quarter='Q3', - original_filename='t4_t5_empty_values.txt', - section=DataFile.Section.CLOSED_CASE_DATA, - file__filename='t4_t5_empty_values.txt', - file__data=(b'HEADER20212C06 TAN1ED\n' + - b'T420210411111111158253 400141123113 \n' + - b'T520210411111111158119970123WTTTTTP@Y2222212222221011212100946200000000\n' + - b'TRAILER0000001 ') - ) - return parsing_file - - @pytest.mark.django_db() def test_empty_t4_t5_values(t4_t5_empty_values, dfs): """Test that empty field values for un-required fields parse.""" From 52e43a1086e233745f5f0177bba2ab9eb56aba19 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 24 May 2024 11:31:31 -0400 Subject: [PATCH 090/126] - Updated cat4 duplicate errors to include fields that are duplicated --- .../tdpservice/parsers/duplicate_manager.py | 17 ++++++++++--- tdrs-backend/tdpservice/parsers/row_schema.py | 2 ++ .../tdpservice/parsers/schema_defs/ssp/m1.py | 3 ++- .../tdpservice/parsers/schema_defs/ssp/m2.py | 3 ++- .../tdpservice/parsers/schema_defs/ssp/m3.py | 4 ++- .../tdpservice/parsers/schema_defs/ssp/m4.py | 3 ++- .../tdpservice/parsers/schema_defs/ssp/m5.py | 3 ++- .../tdpservice/parsers/schema_defs/tanf/t1.py | 3 ++- .../tdpservice/parsers/schema_defs/tanf/t2.py | 3 ++- .../tdpservice/parsers/schema_defs/tanf/t3.py | 4 ++- .../tdpservice/parsers/schema_defs/tanf/t4.py | 3 ++- .../tdpservice/parsers/schema_defs/tanf/t5.py | 3 ++- .../parsers/schema_defs/tribal_tanf/t1.py | 3 ++- .../parsers/schema_defs/tribal_tanf/t2.py | 3 ++- .../parsers/schema_defs/tribal_tanf/t3.py | 4 ++- .../parsers/schema_defs/tribal_tanf/t4.py | 3 ++- .../parsers/schema_defs/tribal_tanf/t5.py | 3 ++- .../tdpservice/parsers/test/conftest.py | 20 ++++++++++++--- .../tdpservice/parsers/test/test_parse.py | 25 ++++++++++--------- tdrs-backend/tdpservice/parsers/util.py | 6 +++++ 20 files changed, 84 insertions(+), 34 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 730474c04..39a8331db 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -83,6 +83,18 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p else: self.manager_error_dict.setdefault(self.my_hash, []).append(error) self.num_errors = len(self.manager_error_dict[self.my_hash]) + + def __get_partial_dup_error_msg(self, schema, record_type, curr_line_number, existing_line_number): + field_names = schema.get_partial_hash_members_func() + err_msg = (f"Partial duplicate record detected with record type " + f"{record_type} at line {curr_line_number}. Record is a partial duplicate of the " + f"record at line number {existing_line_number}. Duplicated fields causing error: ") + for i, name in enumerate(field_names): + if i == len(field_names) - 1: + err_msg += f"and {schema.get_field_by_name(name).friendly_name}." + else: + err_msg += f"{schema.get_field_by_name(name).friendly_name}, " + return err_msg def add_case_member(self, record, schema, line, line_number): """Add case member and generate errors if needed. @@ -116,9 +128,8 @@ def add_case_member(self, record, schema, line, line_number): has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( ErrorLevel.PARTIAL_DUPLICATE) existing_record_line_number = self.partial_hashes[partial_hash] - err_msg = (f"Partial duplicate record detected with record type " - f"{record.RecordType} at line {line_number}. Record is a partial duplicate of the " - f"record at line number {existing_record_line_number}.") + err_msg = self.__get_partial_dup_error_msg(schema, record.RecordType, + line_number, existing_record_line_number) self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: diff --git a/tdrs-backend/tdpservice/parsers/row_schema.py b/tdrs-backend/tdpservice/parsers/row_schema.py index 21fea68a8..3c4a9362a 100644 --- a/tdrs-backend/tdpservice/parsers/row_schema.py +++ b/tdrs-backend/tdpservice/parsers/row_schema.py @@ -17,6 +17,7 @@ def __init__( generate_hashes_func=lambda line, record: (hash(line), None), should_skip_partial_dup_func=lambda record: False, + get_partial_hash_members_func=lambda: [], preparsing_validators=[], postparsing_validators=[], fields=[], @@ -25,6 +26,7 @@ def __init__( self.document = document self.generate_hashes_func = generate_hashes_func self.should_skip_partial_dup_func = should_skip_partial_dup_func + self.get_partial_hash_members_func = get_partial_hash_members_func self.preparsing_validators = preparsing_validators self.postparsing_validators = postparsing_validators self.fields = fields diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py index efc0e2877..8c40d6726 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py @@ -5,7 +5,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M1DataSubmissionDocument -from tdpservice.parsers.util import generate_t1_t4_hashes +from tdpservice.parsers.util import generate_t1_t4_hashes, get_t1_t4_partial_hash_members m1 = SchemaManager( schemas=[ @@ -13,6 +13,7 @@ record_type="M1", document=SSP_M1DataSubmissionDocument(), generate_hashes_func=generate_t1_t4_hashes, + get_partial_hash_members_func=get_t1_t4_partial_hash_members, preparsing_validators=[ validators.recordHasLengthBetween(113, 150), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py index e06d699d2..8016eb8f7 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py @@ -6,7 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M2DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members m2 = SchemaManager( @@ -16,6 +16,7 @@ document=SSP_M2DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.recordHasLength(150), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py index f55f0024f..073d193d1 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py @@ -6,7 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M3DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members FIRST_CHILD = 1 SECOND_CHILD = 2 @@ -16,6 +16,7 @@ document=SSP_M3DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.t3_m3_child_validator(FIRST_CHILD), validators.caseNumberNotEmpty(8, 19), @@ -331,6 +332,7 @@ document=SSP_M3DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, quiet_preparser_errors=validators.is_quiet_preparser_errors(min_length=61), preparsing_validators=[ validators.t3_m3_child_validator(SECOND_CHILD), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py index 028d6d653..9c4936585 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py @@ -5,7 +5,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M4DataSubmissionDocument -from tdpservice.parsers.util import generate_t1_t4_hashes +from tdpservice.parsers.util import generate_t1_t4_hashes, get_t1_t4_partial_hash_members m4 = SchemaManager( schemas=[ @@ -13,6 +13,7 @@ record_type="M4", document=SSP_M4DataSubmissionDocument(), generate_hashes_func=generate_t1_t4_hashes, + get_partial_hash_members_func=get_t1_t4_partial_hash_members, preparsing_validators=[ validators.recordHasLengthBetween(34, 66), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py index 999ae9e8a..7598cb55c 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py @@ -6,7 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M5DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members m5 = SchemaManager( @@ -16,6 +16,7 @@ document=SSP_M5DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.recordHasLength(66), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py index 9610f04bc..ec88f3ee7 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py @@ -4,7 +4,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T1DataSubmissionDocument -from tdpservice.parsers.util import generate_t1_t4_hashes +from tdpservice.parsers.util import generate_t1_t4_hashes, get_t1_t4_partial_hash_members t1 = SchemaManager( @@ -13,6 +13,7 @@ record_type="T1", document=TANF_T1DataSubmissionDocument(), generate_hashes_func=generate_t1_t4_hashes, + get_partial_hash_members_func=get_t1_t4_partial_hash_members, preparsing_validators=[ validators.recordHasLengthBetween(117, 156), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py index 5f9cbb9c9..b24214598 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py @@ -6,7 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T2DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members t2 = SchemaManager( @@ -16,6 +16,7 @@ document=TANF_T2DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.recordHasLength(156), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py index ae808263a..6f54e8e12 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py @@ -6,7 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T3DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members FIRST_CHILD = 1 SECOND_CHILD = 2 @@ -16,6 +16,7 @@ document=TANF_T3DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.t3_m3_child_validator(FIRST_CHILD), validators.caseNumberNotEmpty(8, 19), @@ -329,6 +330,7 @@ document=TANF_T3DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, quiet_preparser_errors=validators.is_quiet_preparser_errors(min_length=61), preparsing_validators=[ validators.t3_m3_child_validator(SECOND_CHILD), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py index 32b885f81..1a2fafafc 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py @@ -5,7 +5,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T4DataSubmissionDocument -from tdpservice.parsers.util import generate_t1_t4_hashes +from tdpservice.parsers.util import generate_t1_t4_hashes, get_t1_t4_partial_hash_members t4 = SchemaManager( @@ -14,6 +14,7 @@ record_type="T4", document=TANF_T4DataSubmissionDocument(), generate_hashes_func=generate_t1_t4_hashes, + get_partial_hash_members_func=get_t1_t4_partial_hash_members, preparsing_validators=[ validators.recordHasLengthBetween(36, 71), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py index 78d606c6b..6cc0ce8b7 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py @@ -6,7 +6,7 @@ from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T5DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members t5 = SchemaManager( @@ -16,6 +16,7 @@ document=TANF_T5DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.recordHasLength(71), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py index bb84d79d2..7b380ec5e 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py @@ -4,7 +4,7 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T1DataSubmissionDocument -from tdpservice.parsers.util import generate_t1_t4_hashes +from tdpservice.parsers.util import generate_t1_t4_hashes, get_t1_t4_partial_hash_members t1 = SchemaManager( schemas=[ @@ -12,6 +12,7 @@ record_type="T1", document=Tribal_TANF_T1DataSubmissionDocument(), generate_hashes_func=generate_t1_t4_hashes, + get_partial_hash_members_func=get_t1_t4_partial_hash_members, preparsing_validators=[ validators.recordHasLengthBetween(117, 122), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py index 51c75074e..f0de44108 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py @@ -6,7 +6,7 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T2DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members t2 = SchemaManager( @@ -16,6 +16,7 @@ document=Tribal_TANF_T2DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.recordHasLength(122), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py index 20b5088a4..951388c41 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py @@ -6,7 +6,7 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T3DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members FIRST_CHILD = 1 SECOND_CHILD = 2 @@ -16,6 +16,7 @@ document=Tribal_TANF_T3DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.t3_m3_child_validator(FIRST_CHILD), validators.caseNumberNotEmpty(8, 19), @@ -328,6 +329,7 @@ document=Tribal_TANF_T3DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {2, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, quiet_preparser_errors=validators.is_quiet_preparser_errors(min_length=61), preparsing_validators=[ validators.t3_m3_child_validator(SECOND_CHILD), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py index 55cd8edba..896211d0c 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py @@ -4,7 +4,7 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T4DataSubmissionDocument -from tdpservice.parsers.util import generate_t1_t4_hashes +from tdpservice.parsers.util import generate_t1_t4_hashes, get_t1_t4_partial_hash_members t4 = SchemaManager( @@ -13,6 +13,7 @@ record_type="T4", document=Tribal_TANF_T4DataSubmissionDocument(), generate_hashes_func=generate_t1_t4_hashes, + get_partial_hash_members_func=get_t1_t4_partial_hash_members, preparsing_validators=[ validators.recordHasLengthBetween(36, 71), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py index fd759ee4a..ba38d882a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py @@ -6,7 +6,7 @@ from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T5DataSubmissionDocument -from tdpservice.parsers.util import generate_t2_t3_t5_hashes +from tdpservice.parsers.util import generate_t2_t3_t5_hashes, get_t2_t3_t5_partial_hash_members t5 = SchemaManager( @@ -16,6 +16,7 @@ document=Tribal_TANF_T5DataSubmissionDocument(), generate_hashes_func=generate_t2_t3_t5_hashes, should_skip_partial_dup_func=lambda record: record.FAMILY_AFFILIATION in {3, 4, 5}, + get_partial_hash_members_func=get_t2_t3_t5_partial_hash_members, preparsing_validators=[ validators.recordHasLength(71), validators.caseNumberNotEmpty(8, 19), diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index b4172f7de..33d2b4647 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -557,8 +557,8 @@ def tanf_s2_partial_dup_file(): file__name='s2_partial_duplicate.txt', file__section='Closed Case Data', file__data=(b'HEADER20204C06 TAN1ED\n' - b'T42020101111111115825301400141123113 \n' - b'T42020101111111115825301400141123114 \n' + b'T520201011111111158120160206WTTTT90TY2222212 2 2 0422981 00000000\n' + b'T520201011111111158120160206WTTTT90TY2222212 2 2 0422981 00000001\n' b'TRAILER0000001 ' ) ) @@ -593,9 +593,21 @@ def ssp_s2_partial_dup_file(): file__name='s2_exact_duplicate.txt', file__section='SSP Closed Case Data', file__data=(b'HEADER20184C24 SSP1ED\n' - b'M42018101111111116120000406911161113 \n' - b'M42018101111111116120000406911161112 \n' + b'M520181011111111161120150623WTTTYT#0W222122222222 0422981 0000\n' + b'M520181011111111161120150623WTTTYT#0W222122222222 0422981 0001\n' b'TRAILER0000001 ' ) ) return parsing_file + +@pytest.fixture +def partial_dup_t1_err_msg(): + return ("Partial duplicate record detected with record type {record_type} at line 3. Record is a partial " + "duplicate of the record at line number 2. Duplicated fields causing error: record type, " + "reporting month and year, and case number.") + +@pytest.fixture +def partial_dup_t5_err_msg(): + return ("Partial duplicate record detected with record type {record_type} at line 3. Record is a partial " + "duplicate of the record at line number 2. Duplicated fields causing error: record type, " + "reporting month and year, case number, family affiliation, date of birth, and social security number.") diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 1f8e2d7c2..e7a192afb 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1633,20 +1633,22 @@ def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, model.objects.count() == 0 -@pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ - ('tanf_s1_partial_dup_file', 10000, TANF_T1, "T1", 3), - ('tanf_s1_partial_dup_file', 1, TANF_T1, "T1", 3), # This forces an in memory and database deletion of records. - ('tanf_s2_partial_dup_file', 10000, TANF_T4, "T4", 4), - ('tanf_s2_partial_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. - ('ssp_s1_partial_dup_file', 10000, SSP_M1, "M1", 3), - ('ssp_s1_partial_dup_file', 1, SSP_M1, "M1", 3), # This forces an in memory and database deletion of records. - ('ssp_s2_partial_dup_file', 10000, SSP_M4, "M4", 4), - ('ssp_s2_partial_dup_file', 1, SSP_M4, "M4", 4), # This forces an in memory and database deletion of records. +@pytest.mark.parametrize("file, batch_size, model, record_type, num_errors, err_msg", [ + ('tanf_s1_partial_dup_file', 10000, TANF_T1, "T1", 3, "partial_dup_t1_err_msg"), + ('tanf_s1_partial_dup_file', 1, TANF_T1, "T1", 3, "partial_dup_t1_err_msg"), # This forces an in memory and database deletion of records. + ('tanf_s2_partial_dup_file', 10000, TANF_T5, "T5", 3, "partial_dup_t5_err_msg"), + ('tanf_s2_partial_dup_file', 1, TANF_T5, "T5", 3, "partial_dup_t5_err_msg"), # This forces an in memory and database deletion of records. + ('ssp_s1_partial_dup_file', 10000, SSP_M1, "M1", 3, "partial_dup_t1_err_msg"), + ('ssp_s1_partial_dup_file', 1, SSP_M1, "M1", 3, "partial_dup_t1_err_msg"), # This forces an in memory and database deletion of records. + ('ssp_s2_partial_dup_file', 10000, SSP_M5, "M5", 3, "partial_dup_t5_err_msg"), + ('ssp_s2_partial_dup_file', 1, SSP_M5, "M5", 3, "partial_dup_t5_err_msg"), # This forces an in memory and database deletion of records. ]) @pytest.mark.django_db() -def test_parse_partial_duplicate(file, batch_size, model, record_type, num_errors, dfs, request): +def test_parse_partial_duplicate(file, batch_size, model, record_type, num_errors, err_msg, dfs, request): """Test handling invalid quarter value that raises a ValueError exception.""" datafile = request.getfixturevalue(file) + expected_error_msg = request.getfixturevalue(err_msg) + dfs.datafile = datafile settings.BULK_CREATE_BATCH_SIZE = batch_size @@ -1659,7 +1661,6 @@ def test_parse_partial_duplicate(file, batch_size, model, record_type, num_error assert parser_errors.count() == num_errors dup_error = parser_errors.first() - assert dup_error.error_message == f"Partial duplicate record detected with record type {record_type} " + \ - "at line 3. Record is a partial duplicate of the record at line number 2." + assert dup_error.error_message == expected_error_msg.format(record_type=record_type) model.objects.count() == 0 diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 26ca1266c..cb6853933 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -247,3 +247,9 @@ def generate_t2_t3_t5_hashes(line, record): """Return hashes for duplicate and partial duplicate detection for T2 & T3 & T5 records.""" return hash(line), hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) + +def get_t1_t4_partial_hash_members(): + return ["RecordType", "RPT_MONTH_YEAR", "CASE_NUMBER"] + +def get_t2_t3_t5_partial_hash_members(): + return ["RecordType", "RPT_MONTH_YEAR", "CASE_NUMBER", "FAMILY_AFFILIATION", "DATE_OF_BIRTH", "SSN"] \ No newline at end of file From b8e139d7c3acb6ecfbd27e4fa8e48cff3356c767 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 24 May 2024 11:34:44 -0400 Subject: [PATCH 091/126] - fix lint --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 3 ++- tdrs-backend/tdpservice/parsers/test/conftest.py | 2 ++ tdrs-backend/tdpservice/parsers/test/test_parse.py | 12 ++++++++---- tdrs-backend/tdpservice/parsers/util.py | 4 +++- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 39a8331db..13b0ed621 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -83,8 +83,9 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p else: self.manager_error_dict.setdefault(self.my_hash, []).append(error) self.num_errors = len(self.manager_error_dict[self.my_hash]) - + def __get_partial_dup_error_msg(self, schema, record_type, curr_line_number, existing_line_number): + """Generate partial duplicate error message with friendly names.""" field_names = schema.get_partial_hash_members_func() err_msg = (f"Partial duplicate record detected with record type " f"{record_type} at line {curr_line_number}. Record is a partial duplicate of the " diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index 33d2b4647..47a75ae38 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -602,12 +602,14 @@ def ssp_s2_partial_dup_file(): @pytest.fixture def partial_dup_t1_err_msg(): + """Fixture for t1 record partial duplicate error.""" return ("Partial duplicate record detected with record type {record_type} at line 3. Record is a partial " "duplicate of the record at line number 2. Duplicated fields causing error: record type, " "reporting month and year, and case number.") @pytest.fixture def partial_dup_t5_err_msg(): + """Fixture for t5 record partial duplicate error.""" return ("Partial duplicate record detected with record type {record_type} at line 3. Record is a partial " "duplicate of the record at line number 2. Duplicated fields causing error: record type, " "reporting month and year, case number, family affiliation, date of birth, and social security number.") diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index e7a192afb..efb056913 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1635,13 +1635,17 @@ def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, @pytest.mark.parametrize("file, batch_size, model, record_type, num_errors, err_msg", [ ('tanf_s1_partial_dup_file', 10000, TANF_T1, "T1", 3, "partial_dup_t1_err_msg"), - ('tanf_s1_partial_dup_file', 1, TANF_T1, "T1", 3, "partial_dup_t1_err_msg"), # This forces an in memory and database deletion of records. + # This forces an in memory and database deletion of records. + ('tanf_s1_partial_dup_file', 1, TANF_T1, "T1", 3, "partial_dup_t1_err_msg"), ('tanf_s2_partial_dup_file', 10000, TANF_T5, "T5", 3, "partial_dup_t5_err_msg"), - ('tanf_s2_partial_dup_file', 1, TANF_T5, "T5", 3, "partial_dup_t5_err_msg"), # This forces an in memory and database deletion of records. + # This forces an in memory and database deletion of records. + ('tanf_s2_partial_dup_file', 1, TANF_T5, "T5", 3, "partial_dup_t5_err_msg"), ('ssp_s1_partial_dup_file', 10000, SSP_M1, "M1", 3, "partial_dup_t1_err_msg"), - ('ssp_s1_partial_dup_file', 1, SSP_M1, "M1", 3, "partial_dup_t1_err_msg"), # This forces an in memory and database deletion of records. + # This forces an in memory and database deletion of records. + ('ssp_s1_partial_dup_file', 1, SSP_M1, "M1", 3, "partial_dup_t1_err_msg"), ('ssp_s2_partial_dup_file', 10000, SSP_M5, "M5", 3, "partial_dup_t5_err_msg"), - ('ssp_s2_partial_dup_file', 1, SSP_M5, "M5", 3, "partial_dup_t5_err_msg"), # This forces an in memory and database deletion of records. + # This forces an in memory and database deletion of records. + ('ssp_s2_partial_dup_file', 1, SSP_M5, "M5", 3, "partial_dup_t5_err_msg"), ]) @pytest.mark.django_db() def test_parse_partial_duplicate(file, batch_size, model, record_type, num_errors, err_msg, dfs, request): diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index cb6853933..3f23161e7 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -249,7 +249,9 @@ def generate_t2_t3_t5_hashes(line, record): str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) def get_t1_t4_partial_hash_members(): + """Return field names used to generate t1/t4 partial hashes.""" return ["RecordType", "RPT_MONTH_YEAR", "CASE_NUMBER"] def get_t2_t3_t5_partial_hash_members(): - return ["RecordType", "RPT_MONTH_YEAR", "CASE_NUMBER", "FAMILY_AFFILIATION", "DATE_OF_BIRTH", "SSN"] \ No newline at end of file + """Return field names used to generate t2/t3/t5 partial hashes.""" + return ["RecordType", "RPT_MONTH_YEAR", "CASE_NUMBER", "FAMILY_AFFILIATION", "DATE_OF_BIRTH", "SSN"] From 3263be612d3e03e09cf6317e982c55fa4a01dd72 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 24 May 2024 11:48:50 -0400 Subject: [PATCH 092/126] - update tests --- tdrs-backend/tdpservice/parsers/test/test_case_consistency.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 979e9a23d..770398838 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1438,7 +1438,7 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f for i, error in enumerate(errors): expected_msg = f"Partial duplicate record detected with record type T{i + 1} at line {i + 4}. " + \ f"Record is a partial duplicate of the record at line number {i + 1}." - assert error.error_message == expected_msg + assert expected_msg in error.error_message # We don't want to clear dup errors to show that when our errors change precedence, errors with lower precedence # are automatically replaced with the errors of higher precedence. @@ -1564,7 +1564,7 @@ def test_section2_partial_duplicate_records_and_precedence(self, small_correct_f for i, error in enumerate(errors): expected_msg = f"Partial duplicate record detected with record type T{i + 4} at line {i + 3}. " + \ f"Record is a partial duplicate of the record at line number {i + 1}." - assert error.error_message == expected_msg + assert expected_msg in error.error_message # We don't want to clear dup errors to show that when our errors change precedence, errors with lower precedence # are automatically replaced with the errors of higher precedence. From 439f82d7b1cf141c54bfd4ae35a20b2a630a3647 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 30 May 2024 13:35:39 -0400 Subject: [PATCH 093/126] - update from merge conflict --- tdrs-backend/tdpservice/parsers/test/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index fe8c490c2..99614e0f5 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -1,5 +1,6 @@ """Fixtures for parsing integration tests.""" import pytest +from tdpservice.data_files.models import DataFile from tdpservice.parsers.test.factories import DataFileSummaryFactory, ParsingFileFactory from tdpservice.parsers import util From cfda581451d6993fa1826393682d5bf4b90077fc Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 30 May 2024 13:58:20 -0400 Subject: [PATCH 094/126] - Add additional exclusion criteria for necessary tests - add missing fixture decorators --- .../tdpservice/parsers/test/conftest.py | 4 +++ .../tdpservice/parsers/test/test_parse.py | 25 +++++++++++++------ 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index 99614e0f5..be5dc0eea 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -386,6 +386,7 @@ def t3_file_zero_filled_second(): ) return parsing_file +@pytest.fixture def m2_cat2_invalid_37_38_39_file(): """Fixture for M2 file with an invalid EDUCATION_LEVEL, CITIZENSHIP_STATUS, COOPERATION_CHILD_SUPPORT.""" parsing_file = ParsingFileFactory( @@ -400,6 +401,7 @@ def m2_cat2_invalid_37_38_39_file(): ) return parsing_file +@pytest.fixture def m3_cat2_invalid_68_69_file(): """Fixture for M3 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" parsing_file = ParsingFileFactory( @@ -415,6 +417,7 @@ def m3_cat2_invalid_68_69_file(): ) return parsing_file +@pytest.fixture def m5_cat2_invalid_23_24_file(): """Fixture for M5 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" parsing_file = ParsingFileFactory( @@ -639,6 +642,7 @@ def ssp_s1_partial_dup_file(): b'TRAILER0000001 ' ) ) + return parsing_file @pytest.fixture def ssp_s2_partial_dup_file(): diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 35ad12f7f..6292ca6d6 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -4,6 +4,7 @@ import pytest from django.contrib.admin.models import LogEntry from django.conf import settings +from django.db.models import Q as Query from .. import parse from ..models import ParserError, ParserErrorCategoryChoices, DataFileSummary from tdpservice.search_indexes.models.tanf import TANF_T1, TANF_T2, TANF_T3, TANF_T4, TANF_T5, TANF_T6, TANF_T7 @@ -1604,8 +1605,10 @@ def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs parse.parse_datafile(t3_cat2_invalid_citizenship_file, dfs) - parser_errors = ParserError.objects.filter(file=t3_cat2_invalid_citizenship_file).exclude( - error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("pk") + exclusion = Query(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) | \ + Query(error_type=ParserErrorCategoryChoices.PRE_CHECK) + + parser_errors = ParserError.objects.filter(file=t3_cat2_invalid_citizenship_file).exclude(exclusion).order_by("pk") assert parser_errors.count() == 2 @@ -1623,8 +1626,10 @@ def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs) parse.parse_datafile(m2_cat2_invalid_37_38_39_file, dfs) - parser_errors = ParserError.objects.filter(file=m2_cat2_invalid_37_38_39_file).exclude( - error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("pk") + exclusion = Query(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) | \ + Query(error_type=ParserErrorCategoryChoices.PRE_CHECK) + + parser_errors = ParserError.objects.filter(file=m2_cat2_invalid_37_38_39_file).exclude(exclusion).order_by("pk") assert parser_errors.count() == 3 @@ -1644,8 +1649,10 @@ def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): parse.parse_datafile(m3_cat2_invalid_68_69_file, dfs) - parser_errors = ParserError.objects.filter(file=m3_cat2_invalid_68_69_file).exclude( - error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("pk") + exclusion = Query(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) | \ + Query(error_type=ParserErrorCategoryChoices.PRE_CHECK) + + parser_errors = ParserError.objects.filter(file=m3_cat2_invalid_68_69_file).exclude(exclusion).order_by("pk") assert parser_errors.count() == 4 @@ -1665,8 +1672,10 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): parse.parse_datafile(m5_cat2_invalid_23_24_file, dfs) - parser_errors = ParserError.objects.filter(file=m5_cat2_invalid_23_24_file).exclude( - error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("pk") + exclusion = Query(error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) | \ + Query(error_type=ParserErrorCategoryChoices.PRE_CHECK) + + parser_errors = ParserError.objects.filter(file=m5_cat2_invalid_23_24_file).exclude(exclusion).order_by("pk") assert parser_errors.count() == 2 From d4aa531c9a74cec2de1cdfc2200a3c872bd20935 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 31 May 2024 13:38:02 -0400 Subject: [PATCH 095/126] - renamed parameters and classes to make more sense with their duties. - Added much more detailed descriptions where information surrounding duplicate detection can be confused. --- .../parsers/case_consistency_validator.py | 29 +++++----- .../tdpservice/parsers/duplicate_manager.py | 53 ++++++++++--------- tdrs-backend/tdpservice/parsers/util.py | 16 +++--- 3 files changed, 54 insertions(+), 44 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 4f6bad5fb..560243b39 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -1,7 +1,7 @@ """Class definition for Category Four validator.""" from datetime import datetime -from .duplicate_manager import RecordDuplicateManager +from .duplicate_manager import DuplicateManager from .models import ParserErrorCategoryChoices from .util import get_years_apart from tdpservice.stts.models import STT @@ -18,10 +18,10 @@ def __init__(self, header, program_type, stt_type, generate_error): self.header = header self.sorted_cases = dict() self.cases = list() - self.duplicate_manager = RecordDuplicateManager(generate_error) + self.duplicate_manager = DuplicateManager(generate_error) self.current_rpt_month_year = None self.current_case = None - self.current_hash = None + self.current_case_hash = None self.case_has_errors = False self.section = header["type"] self.case_is_section_one_or_two = self.section in {'A', 'C'} @@ -78,9 +78,9 @@ def clear_structs(self, seed_record_schema_pair=None): if seed_record_schema_pair: self.add_record_to_structs(seed_record_schema_pair) - def update_removed(self, hash_val, was_removed): - """Notify duplicate manager's hashtainers whether they need to be removed from DB.""" - self.duplicate_manager.update_removed(hash_val, was_removed) + def update_removed(self, case_hash, was_removed): + """Notify duplicate manager's CaseDuplicateDetectors whether they need to mark their records for DB removal.""" + self.duplicate_manager.update_removed(case_hash, was_removed) def add_record(self, record, schema, line, line_number, case_has_errors): """Add record to cache, validate if new case is detected, and check for duplicate errors. @@ -94,11 +94,11 @@ def add_record(self, record, schema, line, line_number, case_has_errors): based on the records section) """ num_errors = 0 - hash_val = None + case_hash = None self.current_rpt_month_year = record.RPT_MONTH_YEAR if self.case_is_section_one_or_two: - hash_val = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) - if hash_val != self.current_hash and self.current_hash is not None: + case_hash = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) + if case_hash != self.current_case_hash and self.current_case_hash is not None: num_errors += self.validate() self.clear_structs((record, schema)) self.case_has_errors = case_has_errors @@ -109,16 +109,17 @@ def add_record(self, record, schema, line, line_number, case_has_errors): self.has_validated = False self.current_case = record.CASE_NUMBER else: - # Section 3/4 only require exact duplicate matching. Hashing the line is sufficient for that. self.current_case = None - hash_val = hash(line) + # Section 3/4 records don't have a CASE_NUMBER, and they're broken into multiple records for the same line. + # Thus to keep the hash unique, we use the whole line to identify the "case" in this instance. + case_hash = hash(line) - self.current_hash = hash_val + self.current_case_hash = case_hash - num_errors += self.duplicate_manager.add_record(record, hash_val, schema, line, + num_errors += self.duplicate_manager.add_record(record, case_hash, schema, line, line_number) - return num_errors > 0, hash_val + return num_errors > 0, case_hash def validate(self): """Perform category four validation on all cached records.""" diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 13b0ed621..8dffefdcd 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -32,8 +32,12 @@ def has_precedence(self, error_level): return (False, False) -class CaseHashtainer: - """Container class to manage hashed values for records of the same CASE_NUMBER and RPT_MONTH_YEAR.""" +class CaseDuplicateDetector: + """Container class. + + Container class to manage records of the same case, cases that should be removed because of category 4 errors, + and to perform exact and partial duplicate detection of the records (a category 4 error type). + """ def __init__(self, my_hash, manager_error_dict, generate_error): self.my_hash = my_hash @@ -141,31 +145,31 @@ def add_case_member(self, record, schema, line, line_number): return self.num_errors -class RecordDuplicateManager: - """Manages all CaseHashtainers and their errors.""" +class DuplicateManager: + """Manages all CaseDuplicateDetectors and their errors.""" def __init__(self, generate_error): - self.hashtainers = dict() + self.case_duplicate_detectors = dict() self.generate_error = generate_error self.generated_errors = dict() - def add_record(self, record, hash_val, schema, line, line_number): - """Add record to existing CaseHashtainer or create new one and return whether the record's case has errors. + def add_record(self, record, case_hash, schema, line, line_number): + """Add record to CaseDuplicateDetector and return whether the record's case has errors. @param record: a Django model representing a datafile record - @param hash_val: a hash value generated from fields in the record based on the records section + @param case_hash: a hash value representing the @record's unique case @param schema: the schema from which the record was created - @param line: the raw string line representing the record + @param line: the raw string from the datafile representing the record @param line_number: the line number the record was generated from in the datafile @return: the number of duplicate errors """ - if hash_val not in self.hashtainers: - hashtainer = CaseHashtainer(hash_val, self.generated_errors, self.generate_error) - self.hashtainers[hash_val] = hashtainer - return self.hashtainers[hash_val].add_case_member(record, schema, line, line_number) + if case_hash not in self.case_duplicate_detectors: + case_duplicate_detector = CaseDuplicateDetector(case_hash, self.generated_errors, self.generate_error) + self.case_duplicate_detectors[case_hash] = case_duplicate_detector + return self.case_duplicate_detectors[case_hash].add_case_member(record, schema, line, line_number) def get_generated_errors(self): - """Return all errors from all CaseHashtainers.""" + """Return all errors from all CaseDuplicateDetectors.""" generated_errors = list() for errors in self.generated_errors.values(): generated_errors.extend(errors) @@ -173,24 +177,25 @@ def get_generated_errors(self): def clear_errors(self): """Clear all generated errors.""" - # We MUST call .clear() here instead of re-assigning a new dict() because the hashtainers have a reference to - # this dictionary. Re-assigning the dictionary means the hashtainers lose their reference. + # We MUST call .clear() here instead of re-assigning a new dict() because the case_duplicate_detectors have a + # reference to this dictionary. Re-assigning the dictionary means the case_duplicate_detectors lose their + # reference. self.generated_errors.clear() def get_records_to_remove(self): """Return dictionary of document:[errors].""" records_to_remove = dict() - for hashtainer in self.hashtainers.values(): - for document, ids in hashtainer.get_records_for_post_parse_deletion().items(): + for case_duplicate_detector in self.case_duplicate_detectors.values(): + for document, ids in case_duplicate_detector.get_records_for_post_parse_deletion().items(): records_to_remove.setdefault(document, []).extend(ids) return records_to_remove - def update_removed(self, hash_val, was_removed): - """Notify hashtainers whether case could or could not be removed from memory.""" - hashtainer = self.hashtainers.get(hash_val, False) - if hashtainer: + def update_removed(self, case_hash, was_removed): + """Notify CaseDuplicateDetectors whether case could or could not be removed from memory.""" + case_duplicate_detector = self.case_duplicate_detectors.get(case_hash, False) + if case_duplicate_detector: if was_removed: - hashtainer.set_should_remove_from_db(False) + case_duplicate_detector.set_should_remove_from_db(False) else: - hashtainer.set_should_remove_from_db(True) + case_duplicate_detector.set_should_remove_from_db(True) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 3f23161e7..b26f5f266 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -177,7 +177,11 @@ def get_years_apart(rpt_month_year_date, date): class SortedRecords: - """Maintains a dict sorted by hash_val and model_type.""" + """Maintains a dict sorted by hash_val and model type. + + Note, hash_val = `hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER)` for section 1 and 2 files; but for section + 3 and 4 files hash_val = `hash(line)`. + """ def __init__(self, section): self.records_are_s1_or_s2 = section in {'A', 'C'} @@ -186,22 +190,22 @@ def __init__(self, section): self.cases_already_removed = set() self.serialized_cases = set() - def add_record(self, hash_val, record_doc_pair): + def add_record(self, case_hash, record_doc_pair): """Add a record_doc_pair to the sorted object if the case hasn't been removed already.""" record, document = record_doc_pair rpt_month_year = str(getattr(record, 'RPT_MONTH_YEAR')) - if hash_val in self.cases_already_removed: + if case_hash in self.cases_already_removed: logger.info("Record's case has already been removed due to category four errors. Not adding record with " f"info: ({record.RecordType}, {getattr(record, 'CASE_NUMBER', None)}, {rpt_month_year})") - if hash_val is not None and hash_val not in self.cases_already_removed: - hashed_case = self.hash_sorted_cases.get(hash_val, {}) + if case_hash is not None and case_hash not in self.cases_already_removed: + hashed_case = self.hash_sorted_cases.get(case_hash, {}) records = hashed_case.get(document, []) records.append(record) hashed_case[document] = records - self.hash_sorted_cases[hash_val] = hashed_case + self.hash_sorted_cases[case_hash] = hashed_case # We treat the nested dictionary here as a set because dictionaries are sorted while sets aren't. If we # don't have a sorted container we have test failures. self.cases.setdefault(document, dict())[record] = None From 2997b5a1d52b5bf745513b79d13506fcd729c692 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 3 Jun 2024 08:46:04 -0400 Subject: [PATCH 096/126] - implement TODOs that came out of OH --- .../tdpservice/parsers/duplicate_manager.py | 14 +++++++------- tdrs-backend/tdpservice/parsers/parse.py | 17 ++++++++--------- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 8dffefdcd..ea20e0945 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -110,10 +110,11 @@ def add_case_member(self, record, schema, line, line_number): @param line_number: the line number the record was generated from in the datafile @return: the number of duplicate errors """ + # We do not run duplicate detection for records that have been generated on the same line: T3, M3, T6, M6, T7, + # M7. This is because we would incorrectly generate both duplicate and partial duplicate errors. if self.current_line_number is None or self.current_line_number != line_number: self.current_line_number = line_number self.record_ids.setdefault(schema.document, []).append(record.id) - is_exact_dup = False err_msg = None has_precedence = False is_new_max_precedence = False @@ -125,16 +126,14 @@ def add_case_member(self, record, schema, line, line_number): has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) existing_record_line_number = self.record_hashes[line_hash] err_msg = (f"Duplicate record detected with record type " - f"{record.RecordType} at line {line_number}. Record is a duplicate of the record at " - f"line number {existing_record_line_number}.") - is_exact_dup = True - - if not should_skip_partial_dup and not is_exact_dup and partial_hash in self.partial_hashes: + f"{record.RecordType} at line {line_number}. Record is a duplicate of the record at " + f"line number {existing_record_line_number}.") + elif not should_skip_partial_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( ErrorLevel.PARTIAL_DUPLICATE) existing_record_line_number = self.partial_hashes[partial_hash] err_msg = self.__get_partial_dup_error_msg(schema, record.RecordType, - line_number, existing_record_line_number) + line_number, existing_record_line_number) self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: @@ -170,6 +169,7 @@ def add_record(self, record, case_hash, schema, line, line_number): def get_generated_errors(self): """Return all errors from all CaseDuplicateDetectors.""" + # TODO: Test having the dup manager return it's errors on each iteration and let case consistency manage it. generated_errors = list() for errors in self.generated_errors.values(): generated_errors.extend(errors) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 604b9d5a8..40631e7f9 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -272,7 +272,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas # automatically starts back at the begining of the file. file_length = len(rawfile) offset = 0 - hash_val = None + case_hash = None for rawline in rawfile: line_number += 1 offset += len(rawline) @@ -338,11 +338,11 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas s = schema_manager.schemas[i] record.datafile = datafile record_has_errors = len(record_errors) > 0 - should_remove, hash_val = case_consistency_validator.add_record(record, s, line, - line_number, record_has_errors) - unsaved_records.add_record(hash_val, (record, s.document)) - was_removed = unsaved_records.remove_case_due_to_errors(should_remove, hash_val) - case_consistency_validator.update_removed(hash_val, was_removed) + should_remove, case_hash = case_consistency_validator.add_record(record, s, line, + line_number, record_has_errors) + unsaved_records.add_record(case_hash, (record, s.document)) + was_removed = unsaved_records.remove_case_due_to_errors(should_remove, case_hash) + case_consistency_validator.update_removed(case_hash, was_removed) # Add any generated cat4 errors to our error data structure & clear our caches errors list cat4_errors = case_consistency_validator.get_generated_errors() @@ -372,8 +372,8 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas return errors should_remove = validate_case_consistency(case_consistency_validator) - was_removed = unsaved_records.remove_case_due_to_errors(should_remove, hash_val) - case_consistency_validator.update_removed(hash_val, was_removed) + was_removed = unsaved_records.remove_case_due_to_errors(should_remove, case_hash) + case_consistency_validator.update_removed(case_hash, was_removed) # Only checking "all_created" here because records remained cached if bulk create fails. This is the last chance to # successfully create the records. @@ -391,7 +391,6 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) return errors - # TODO: This is duplicate code. Can we extract this to a function? # Add any generated cat4 errors to our error data structure & clear our caches errors list cat4_errors = case_consistency_validator.get_generated_errors() num_errors += len(cat4_errors) From 012f5e5fb344686bd2a70dac63f05bef62b726a4 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 3 Jun 2024 09:00:48 -0400 Subject: [PATCH 097/126] - remove todo - add warning labels to shared object --- .../tdpservice/parsers/duplicate_manager.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index ea20e0945..ee7ec5ba5 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -41,7 +41,14 @@ class CaseDuplicateDetector: def __init__(self, my_hash, manager_error_dict, generate_error): self.my_hash = my_hash + ################################################################################################################ + # WARNING self.manager_error_dict = manager_error_dict + # Do not change/re-assign this dictionary unless you know what you're doing! This object is owned by the + # DuplicateManager object. The CaseDuplicateDetector has a reference to this object as a performance + # optimization which lets the DuplicateManager avoid having to iterate over all CaseDuplicateDetectors to get + # all of the duplicate errors. + ################################################################################################################ self.generate_error = generate_error self.record_ids = dict() self.record_hashes = dict() @@ -150,7 +157,15 @@ class DuplicateManager: def __init__(self, generate_error): self.case_duplicate_detectors = dict() self.generate_error = generate_error + + ################################################################################################################ + # WARNING self.generated_errors = dict() + # Do not change/re-assign the dictionary unless you know what you're doing! This object is a one to many + # relationship. That is, each CaseDuplicateDetector has a reference to this dictionary so that it can store + # it's generated duplicate errors which avoids needing the DuplicateManager to loop over all + # CaseDuplicateDetectors to get their errors which is a serious performance boost. + ################################################################################################################ def add_record(self, record, case_hash, schema, line, line_number): """Add record to CaseDuplicateDetector and return whether the record's case has errors. @@ -169,7 +184,6 @@ def add_record(self, record, case_hash, schema, line, line_number): def get_generated_errors(self): """Return all errors from all CaseDuplicateDetectors.""" - # TODO: Test having the dup manager return it's errors on each iteration and let case consistency manage it. generated_errors = list() for errors in self.generated_errors.values(): generated_errors.extend(errors) From 0d932235f548b39a2376f11aeb2660b591b6f226 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 3 Jun 2024 09:09:43 -0400 Subject: [PATCH 098/126] - fix lint --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index ee7ec5ba5..9e709c21e 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -44,7 +44,7 @@ def __init__(self, my_hash, manager_error_dict, generate_error): ################################################################################################################ # WARNING self.manager_error_dict = manager_error_dict - # Do not change/re-assign this dictionary unless you know what you're doing! This object is owned by the + # Do not change/re-assign this dictionary unless you know exactly what you're doing! This object is owned by the # DuplicateManager object. The CaseDuplicateDetector has a reference to this object as a performance # optimization which lets the DuplicateManager avoid having to iterate over all CaseDuplicateDetectors to get # all of the duplicate errors. @@ -133,14 +133,14 @@ def add_case_member(self, record, schema, line, line_number): has_precedence, is_new_max_precedence = self.error_precedence.has_precedence(ErrorLevel.DUPLICATE) existing_record_line_number = self.record_hashes[line_hash] err_msg = (f"Duplicate record detected with record type " - f"{record.RecordType} at line {line_number}. Record is a duplicate of the record at " - f"line number {existing_record_line_number}.") + f"{record.RecordType} at line {line_number}. Record is a duplicate of the record at " + f"line number {existing_record_line_number}.") elif not should_skip_partial_dup and partial_hash in self.partial_hashes: has_precedence, is_new_max_precedence = self.error_precedence.has_precedence( ErrorLevel.PARTIAL_DUPLICATE) existing_record_line_number = self.partial_hashes[partial_hash] err_msg = self.__get_partial_dup_error_msg(schema, record.RecordType, - line_number, existing_record_line_number) + line_number, existing_record_line_number) self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: @@ -157,11 +157,10 @@ class DuplicateManager: def __init__(self, generate_error): self.case_duplicate_detectors = dict() self.generate_error = generate_error - ################################################################################################################ # WARNING self.generated_errors = dict() - # Do not change/re-assign the dictionary unless you know what you're doing! This object is a one to many + # Do not change/re-assign the dictionary unless you exactly know what you're doing! This object is a one to many # relationship. That is, each CaseDuplicateDetector has a reference to this dictionary so that it can store # it's generated duplicate errors which avoids needing the DuplicateManager to loop over all # CaseDuplicateDetectors to get their errors which is a serious performance boost. From 3a5663406b388265f0140cc2c0b839ee40145320 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 5 Jun 2024 10:31:18 -0400 Subject: [PATCH 099/126] - adding some generic parsing flow docs --- .../diagrams/parsing.drawio | 378 ++++++++++++++++++ .../diagrams/parsing.png | Bin 0 -> 211363 bytes docs/Technical-Documentation/parsing-flow.md | 11 + 3 files changed, 389 insertions(+) create mode 100644 docs/Technical-Documentation/diagrams/parsing.drawio create mode 100644 docs/Technical-Documentation/diagrams/parsing.png create mode 100644 docs/Technical-Documentation/parsing-flow.md diff --git a/docs/Technical-Documentation/diagrams/parsing.drawio b/docs/Technical-Documentation/diagrams/parsing.drawio new file mode 100644 index 000000000..65f2fdc06 --- /dev/null +++ b/docs/Technical-Documentation/diagrams/parsing.drawio @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/Technical-Documentation/diagrams/parsing.png b/docs/Technical-Documentation/diagrams/parsing.png new file mode 100644 index 0000000000000000000000000000000000000000..d5b7df44f93ade7cf016d3f37d87e0fa0749e4e9 GIT binary patch literal 211363 zcmeFZXIPY1*EXz16QU+!#SX^XUKpm23NoFUVG3oc3Qq66j}(br0+^_=qhc3@7!?Zw zMpP0T0xBvBDv@FV5s)f;dt@*^@ws!q@Au>T@g4VZAWXTgUDjUfT<2c_{g(&o9%M=)43KUAzNW~VDUI$)+&$W7qQl^wjdcK1~pzt{m~9 z7kmtUGb6w+9{3jki4H(Sqh^4YSc5?$%;>X_I zcUznWY0t+JsZA*cLxE0#5rO$7N}=2&)PhTt9t+Q*QKQ95j$Ns+Dg#hhuuxcXPxCq< zn8Sy*Swhf}P7dyh6q?mNjiERJA_>9@C)wZuJgZf#fQBi=z?>wyMW7CF2{}}Q0mh6# z2$Xz;IZ_mwl_$2TnAkyth0u^VmVzDAK%NS0gI4lMc423WnkrHVn0ayjB7mh54 z+RSW%1H8201TsQ6+lfIDi4>968U~ty+9(1GgutcSLM366FtSD-z(Q%!I*}$)8DLVQ z#FS9F+!;dVSyfE4J^;g_LO{c$NJ6ASXP4QaVi_4qv4O^s5EmnaMpPJqTj0>qU3$r`f;0rpOXy(gQ3N4!-a;+EIPXy4aKU!b+Sk~n;ydEnT+l?HacreBS;d9lfu{Y zg;YM>f#O5k%PZYNb=kW6AMC4)7ZT9j(&x6<7+1 z!i*3QbSk4rEkoFROd3-4aya7ie~#xjFpD4{YY-{dec;4CnIl1{-S=|ZWtFcv)$84!_H%0wZkFazEi&XUpWBD#qXfa2Q( zawZ=}rjV6Ntyy5ig>p;`P5{@$C8Nkfr@)2O0Wcy(f`8fwJlt%RA$e9_2;8ApA}uV5 zji*o;HC6=EphKFGP9iEmE( z2q&QRC;2B9z{LWOjQsaSxIH~~}UHXJ}95*bN@5=D9zFO2F8L(naeSP0L= z#Tu1drJC)s86i%XoFR}x$l_2EjmV=($N>%--@>NZ!&OwK&FP3BQ9~I5r``#NyS?5K z>2UvH%b5%b6&b;DnjI9Z!fk#kA5P)oxgvzpNe6G$d^TG~M@k3;fVm`y18rtRs!#+e za4ejJ2@AoKI2JlZ4PX$5Cvo*$n$(GpAd}b%MFcdA!ABvS3_6meXNH7h66iyjuj z92N@YhKK6ePAh?Bf>bzasyg`F_IOD z0H#t%99XJUtEXzrP*Etyz-I-Z#BOMJVUPy40mHWN!$6|K(Pa=#IGaO*(?G}i02xuu zqgsS27nG_-aPS(2B?P9?p!wiR3KM6d1+WPrHWQjFM`7_82T3Bul29f{q>|6zpq1QE zk$_2ulc;K@35Sr=wFst>q>>Qf5%N$50;dsU8JrL@N5Ml#l=M)L2XO%;qMDDjf>^<^ z74itRE+PzPg#?5tBaKeFLqXS)C<+@Fr{>^Ia*Ew3r-Wmq4wqQRHP~nXK2c^Eilak- zghPUAbyz|e%YqU|GGR6{$lf@ifp4S2L^uW!9vKD^YlLP5i^I0EOtMIgAW}f2N-YGt zkmP_WaZ)UxI=C?4lxT!NC1Fz3G_g8Nily5ud>8O=94gXwAh$#m*hpd0$i$4vr#1l@6Z+;c8ZbCaWVxML^uf_qC{hu5j446j-ZiINPP zxFRDk4z(KvRgvKmna~~4P8^A8G(o9Wh!{o;lOwbcn+OCY$1D%GsKrJ*M=chxDF!o{ z0M!zVk!-U;Z)UkrYJ!uX(rBQOI5?JOr4o$_9a65OAw!uC7fme3_yKTg3@A4eT*#stO21F{uB^J9{ z!C@k}SRoG0rAHc(NQD{C5DHW%qY{S-VVl@CsZ*;6MGL85S}Yvg2po#Z3I}gORcxu7 zwW7iVe2o|p=0GBu;VK+f8)*QX5Eo%VD8wkNNTSD*EshAj9Zw^Y!eC0Inyw9yD%^Mx zpx|(A3ZpF2tb!S7A_{1gM6-lx-EpVJu>~NKENpTl5hcKfhlm_@1r1`Ch-^j-UH~;2 zID#-F-=dL6K&TNklUd6!VDW(KlOSlgRb+H9oB@ge0iK~Wt6dRc>Hwi0iPtJMY`HPQ zMN(>HPJxUbssyW{fl;|al@L!2<02?_rP9rP)f%zWE|FXDdNBvha<~zTsxu=LTpn9Q zloQ>=+eUz517J=nhAYH`kd;~<4P_+oGywPMY}^N?K%vWw7!-}8#zja;$OtlyuOb`G z1fo=eW^=<(2)%?#7lt5=DuyW3ppnxJI()b^Tu(NEOol_S&{Qf#%nAt=2N>vhEEkQ} zhH`{VjabN~SzK&AL!_pWj5bN66tA|a@dlO9p_eg8gb;B!8DXc;wPcJGqs7r|1_s<3 zU{=~0dXZck;h;Luc$$hu(%3`UBn&qk?*NET5-71@4ooCp243?RM7K9P86Xb|^-ijd ztdcO?*iCRnSScojLK%u=Yi(|FCTB zZ7?~74%aC{EfN(*#&WY`9n57mD z{4gdX6y=bS7+Rv7jmMB=PF$#!FXJ%+WFdB^&>X>&kO`6Q5Hm>e0vpw3#u?N^M>vG6 zo;Xw~tELWqZ<%rij<_n z;bc;bG=c+#7->2dlnQ0iC}g{XY&M4&q~QI&5*fu#QHzDTFn2V9{xE16g#hX_ zIBJN>;4nBc=o#Ia5?~3*0!8vA z;c6DvVlYEA5iq2PYes8HTtg^E1abt}^BCXac!I#y4my5xp1p^nT{aYY&h z8mC4;lwhj>Qji*Di9q1=Ooz}C0ki6PcDmI?aDf4^LXap76)IwY*WiZ;woPDlNiaLY z2EYm@4Z%S)hDbUq9HVnui5fC1KuIPsYLE{1p1}VjAfb;Pxd1#nL9ig!rO>9UA$O8nViLDA36F@~NB1B}PyTk~v zX(5rtObd;Q*0?wDTqMjDz-5SZ1h@(#;#wq-P;;0>8fLa|9awo>kZxCufEuL{R=EbiriP$&qGci~ zmuTUrA`O%P7DOS@grdT9T#=a}CL@G!qn=|n3H2lqA8HT*LaPx(h ztE9tuRGQo&Gg`xyRwc>A=ewYKqtz4ucF9&YEHXlA7qf{bp(s>iluU% z5=E{sz(J6Z99o!^#KSl>Xser3I9xJ|5@vH?BxteIgrSFpaRqj?*bTpC7KUsLg_}X{ zBZbJ}D0rlaW+O?+5ki_lu66rN7*QW4*IAST1(|CB8ymHRD|T6RGF%uj)PxB!Le-$Y zM*<#?<1+DK962ZjP^c7VC?CnCF^rfnj>$>mvc$lJXqHg5Ex?S{GmuF4-VRLwg+=hU zx3>79&JF_TzU&`-XipaOB>nArkaAtJmKSnX-BRPuJde$J^f- zcXd3!PIPADyhG;toOgoy`t$X-tg#uV-{Hfl;yFL07@5hV(eW#wQx`%nE?HKrv z!vj|auho6)x#8blnm`w#t=~JZl{HoWX`#G%kr$~J*!TbGx=tD}*v#IB|E)zPoyYvgQH>h; z%dp2k{QqqkNBN+;I~#qvo_Dr2CN8vhEor;5t}CPS;j0HHebi?g>t#2$Z=O1j9QbxP zB>HXowu!?%1~@qUmtnEaoP*B6p&0=u@(?7w^ZQvWa7 z6w`9cowqJH8`oE@dfB{7RYi+c?~{AnDS5e2Dqk*6KQG#ILrb#uq9d+4|i^+Zq z;xvDmHiwwFz!rv&Z3-cyX3hyZro(|j_BamUPU`NVU?5qKFw2$_YB5eKmOqQ z<|^xun}=pD`r*JMTTs{dg!3a`yx&$+MT;MQ8t1_U#ZSw!p}lT`oGY=X%8<(C;oQO7&U4llx!uZoANUi-yscMx7qbIcT4z$X!q)$+e)O zcM^MseTo~rw!Hk|ILzMx!cU!mF;|UvpR&1H`|a)diKCw?ls{RGU)^>#N{x|?(muoK z8++^*JQ*NN()4}U&jRq_WbZN~+3$t($?(!gs+YtiH?|y!M{f0h-S$Aa-*a;O>K*duRWbyMH{CdF3G?;(b0-wOnhfNww1q6SBmnvy0)FLpe-8+F$i>Fv=_5~S4{0ziwYWlt5lRxEsY1xoEs)TW6f=v`*C$^-Rr}>-}?Fbc&|mB z5YgVYP6?^c*dz55oIgE>fQml9W7>1RHq}3eg4y8-$`v3ezhNUupP8bnU&B<+%8SoA zCEqt48T4?>+FQHkqc+EFW3I@^*5`sk#LoNg+KPAle6nZ#5|CbAMP)3h*khW%h9sGL zdrZGASl2Ol^78u)`UEe0{4T$b+>NP^>Y(D}D_SfCL;iB?~ zgn7*#zvPrA!g&fq@ZWsHr}4nMg*BE9Jrg;c1SWz!aC_+AC(QTpdRb>smv>tCqRTN(!=ZkSR|*$-ZoK$sKb+;{ioauA@SbSk+?AqJ!GV_w(bwjb9U6$6pZM^q_v0An8-8^a?RETxTE89_W#NIZeUq3*^Tfs{ zQIR;%GCa*5RW#;sLB*E6?Z@~hr!GFSgj;{h8{Uq7Jn-4Nt6>=zCXO4I{u0tr?%(+Q zw;`Lh`p51TjP;mU@E!0z%HD4_{(Y<)P6l6CH!?j#Y;6clhDN5aP7EHkZ)7>uApdpO4NjjnFk`Z%zN+Q|d1v(M=at=y%O}VA zm!(pc2IVrJXVq)JDZ05uC#%gXRKARVa7D+^pP1HqsCUxc4sFa-*Rc!0(Yvqe8)Ist{@CVe zdXc;7Bd3g?H$AFmaKf6AKU7^C>Dy=enN0sPd3yEQi3oV~!PGyhXc-l??erd48XO+H zHYj9?wwH5!9GzDaacPX#_(=_JA`$((@luCr-;HtGZXCEd$+hWD%r=K;hyS+t{FgyJ zYY&0+oz#9&fe8H!?QZ)g{DFIN%NvqK^=%qe`+h8QVc87su!8!Hv4{7(p5&_4=I)o| zHZ^857kQ@j4;TVj;(EUJ4fpTg?=v%^aO%x1jfs~malc=RIa0m&?yR1;+LH>f%5{&J`Ip&xLwjC-0J>h6 zCx_I(oBl;JdLgd)Rz+o@^>J6u;2V|seHyA;5ncIxN@BO}DLH%`UR!C$y%!lO^jJNjkqaHAzdkdm1)B<gnsz(1Cleg+WLI=S7Yvzmq+#Bv8&^% z{})ZjTU*Na@AP=tDJBnAC5v{cCf)=_582{!3B+JT+%$ z*_gFge=a`|?XUeaCZnx*QS-x~Xjh2|+0(@BF98CLJF5Ai$7lWmi-a2k=HZ_}LsCYb zd=A?U^Np%F?<-WaUasHe3s-;`_@(OlpC#90YRk@~uI^d2gw=q6j^nWMKO>;YW4w+8(B+8`WfDdKt|B~?crWC2cs7Z#E`;3>7^$oL< z4-RMecSS{H6EOFnih^G;@5hZXiNEVZP*VY~mnV+WV@;@fI}KZ0-Wx%r<# zrdQMS+x0BV`7-j!zw@}=BY@uL*rD;gRPm!H&l%zU zf<4Ps*7*=wt~x1hNN;Oi6uHa;jyixik7gds`*^kIMZ&0oUd=~G=6JZ_Btrd}-Mu|^ z0#epidfV$WluGjPUeB3j^z?*ZTdrUD+B1(fuup8v+&lCy*zx$%Sbx6}$2rfk+D>aP z+?B2I&Z&rd=mFQafYet<<0pUSb?~U*>4M{zwT zD*@@hOMQgQ%St-)@RfI3OBu6wfx5r~b*dHpKU<)ygS?38o6r7tf&RNd|BayF|3;9P z_kSS{WcrUe$TYS-u;tN4UH0p&Q!kFDb7q-_a2LM0_{Eh6w7KX0T*-a@XKDT~yL!1+ zjQ~(e#OC3jWzYVkDUcVe`cowgn*Xu~*GGLD-}Zb9v(S0VT%7RL#I48&l8w*mecOH~ zADmx*!Tc1H65m-_GOnWaYSZ2!vD4?AxIAoM+N`?ysyyM4-0}68>YW?29+|Fxt?yp5 zuyfLcWv@=uuAh|=QZT{3xNymZmhxpKUr*b)!S={l@a!SD;%V*C^bD#xGY4pmmc+kr zuKmKdHMsrlmb}F~yZ28EoRL#!&7{@GcXwo;&%H)5SKp!sbQQ*TH4aCXWVMA~DL(B< z^DvOIZyrkz`;1kL{V+Rqbcf(!T*vE@o2ZJ#XQM1dL}H(|oBBA|`xo3i>dVZ$xS?tB zRj}QZGR;Z)`sIiW=gUPE+vDD>@ZAsYh}qvf`gFxFUqvUkEUV~wJ@60=+&v;>Ll}3ss2PMHTIw_RQ|~%#4RyYbm&Ml~?p;xD zzW4bdGX73n{>08!@7S2f*ScQib$1QIHzoS#q9+(G_O1PX(AU}k0cl#aDmK9qU z*1Jlx*DuptXt+xBy|!dXZdY^WA^ea)`1|(Kyt!4Jn9+V&E4rWgiHT+DR8 z#WerG;<3pO_4il!`lfAJba2c2wL?%hQUm8(SJ%AE$ksL3 zPYmdGn?Xcu^^b46o|aXn%hs-c(!O1tK{@gL0?t`-aMvZD++Pkif~{sT2$QXGjXNqv zWP5AQK3#ofU?VW?A+Jj&^ztF`I z2v?0P?kI1`9Z^<1_0qcaiq=cQGmEcMsK>&sL0IGr`6SNOi;npYrkTx3=rm zx$4x~%fp$oGmqPhO1y<9_SRu6SSfEWfW&J6^lPKRj4ZrK#ccb^dnZKiFAee!t?2G*NnA#H68G3zIxRA|+PSe&U)1}N5QDq4U?7wct3eRC@u+ck2gBa9#k1vCF$Rs>9{g$ zlyYX4IS)8d;>cRCt$w$#<3Zv2;D!HpF$D%T^p~qMpWYufKkL;*-!yWOi1ylRn)q)0 z^c1%vyvkV(M!xLz>C(C1zxB!#6P*jzEKtQX-bDGN->T#uo0%eCPhOkz{#_Y!bXo!R zts}R+_R#LA!5xPdzE_?&-c5^cFJ3jcVRmDy;Yxj6OZKWoXA68P-mFHAm=yPDa+V~e zI*n}bC9kZM@+PL=7DruaEOF0cRH4Y9n`Q@nn}XWMG{Tb4K0^)Y)dFlSNYBi5oj4zq zx}&SDFg~|+*`)Sg2f7c2978vh#zy-F!m2HtzXm?x?$K?^X}pP>}Ut z(5TtdQf^N`Eq*)z%}rWM?4uS{`7IbV5u?=`Qy z(Gb(%^|RR8Hov?f`I+;%{jrtXuxx>E;H3s~;ES*;<`S{gu4$P#>yOHFwI`C|&+Y1% zV1M+Z8=jwS_qrAh5P!t$*XLhm49YfC#I}r__4^r+nV%W^1lZGj{hfc%ia}a@*pzi9 z=lFeS*9QEzl=_(J`HAFym$P0OGfx%fmC{^%-bj3Hw=|O(p@zV&tckTN+JhcK0I14Zz{we6Q(t%(u6MKd`lWrTP{3v)))y-;%;NV8ab=DGJirqYGv~L zj8?%hRmz4y&eejzXZiga_9oxI6&tg5V)ahbwHa5e|7VE0VckVU>EZ}Y{p*^%<*dx@ z%Cb(`ymCNPa=i+~Z0CZ;1#wsAegWu|eyFYBS|gjom;NYv1aN=QZf$wnszv%7#2kQO zSDH6YI3dP%K3e;3cjuqe4o&%)C;Bl$+}wJX8@-FO#Cn%l7XZ#HH3NJX>VFofj*LjJ zs9Z7j`rPbSE6=PS(&w`IVfK4SLFoIVH^aHT1)LX?LGonIX<8Zlb3d?hWtW&7Ii}C9 zsh?CNf_L}-?#BAp+r_I6?d$G`%TXQllroa9WLA~x!+MJ*=RhUVoW8Yd*x_v#!Abg} zm>141OKeB@g%(dWx+gQ|k6c?yHhL9(RXO)gdeuWu6@k~OihDomZg0I}2dGz^Szqg) zu>EVt#>27!MH4<@O{A$$nv0g!u5#Ut`Nsmu#gG9PDDdz&)F&E(J*0k7zTaex233#T zf2_zX-QTbLUt?$F?dY`>s2{N=_svZCa?#+u3Pi;}mVhAPef7hVHdWmGBwrl37r4oJ|=-8;(->GAKBq7U#llor>8mkEawWk07FEb?R;`^40 z-5_dbFg`5%(&=tL{h9xNwcv2Zldl%GVqN8psb_vaJF&a9;Lw%}e@>}&XM-W}t@+s# z8{O3P)YH}D4uT_axW4>?1@NZ*;*`LwmoInq$Prv4-?Sg*o+!WNv;JKbqU)8%(F>k& z8~?ZZ?VV8IaEMuJ>p;c?2O3apTW!At;x4hrK zNY7-r!OqPb&*zq}`!L}>To7BXkuP7z?2Xb#RTlP^BxlDV^5POzy~R&DD1I)w(zGS` zX8#M6$dljKd<)nsI84MhW!LAw zaSt7pNhQC1<-7C4KKM}t12bg;U{uOKrfdmaq&Y!sIPLW;1yi;4+4-E7^7(FdUi&70 z2oogxkTUI=CGCK??V1QS&$79PI^2V1ef0qk2JDUchzI}YW~w{?a=rI^0F< zDNobp%$O;!f64#0_J8aGEVnS#``!D}#~>xtCeN=6QD>Z!xvJ+^Y)b`X@(>`yFu>H~ zXX2X9nX3=-lH9a&!SPeY)Y|pwzO#-Gv>P`pxafnW03fQ z`Q;}<*5+2kbsPY!baL#Ah~3oey7TG}oWx!HxVOaq_$q&_w|hS_INA+(+XsDu9Ha8K zN9Pew_mR+S~Xc^!nKPWr^mf&SyS{^1q!w z`}oOQ^R`{D{czBG2kRaa2YZ(qH9i1@B(DH;fN8 zCvO%Hif+C1tgY(0e_l+$L-6|opl0bs?rn+%@L-?#_)A|;8}W2mwXJUG)`ENW>BqAK z?N5iq^E8bUsK7ZDY)<-G2(OvALZO z`+hZ^wen>*2=T<@<;=k5JI~bJ?<=~O^nU?3I@oX=bb}eX`p=C_MoR1}apLO=HwqoB zUQmrmItll4r^V5^?o5pE`6Q+NpP-E3J45Lb`vI_vn0NgAi=)abBe{zucS;wV=|eAO z{(5cZMipUC7bvLZpS-;Y8a>#p;mH4xJd4d$H)hy=T(?9zKIiM5@m*~*s;WT=qO@$) znBCgk8y6gZS3pg2Ma)t!?!Wq9ARSM_W`Fa^2K}^;I~`9Mw*Jr?r-bJGU~SbS6#m`U~#Yhqep`q zIYLo6sA0Wi?x%!l?+3#4%h2^#Upxaz9OZLP}i*bqHn*=?%cJm@P90io8Ue5+1Qp=HFVULsj1`g zT4UhRH?}Sl}`=pOVWnJdIrkjm_EJXEk%rQP9}Yf#*{{A$|wF9I=rp)GXlv zqugtJ;R2u3!kD^k{;)GfP_RzXXY1qZL2H=I;vlz z4lMbyx?x%8u+$cN?l%AT&3DFn!otrE>{2)KPJF+~qW}e6JLt)~PyGH42^jX_Cee?{ zmW+qV{+Dg_#>+2W&+~mg>h<#rGdomw+m@!watGhzzVzIbu-JVx9Z6mI^&K~tM$Gv^ z_emWZVgV_CH6v)>xStEX{qZkM2V8LE(WN=BXbVbn7Aq&dpTXU+B|f!i`I1P=#h4?P zt3{q!1!sX0l7@Duvj2-o-u_boY}`Brwq|$s;a#6fh!ci_T@<;0bVJtjYn6(Fiw{hU zuNz!inJ1p#+Cbh3dl2?z<*w+I4GWTQWo}+{a!bqXdKkNG?KoJ$xkx1bfDWt6pGY zh%34!$?v|tyh9@vi(ijBJG3z5V$8OoI}&@(;PF84F(m0>Qt$izUrzDvKAe<4u5`t) zdvkl%6|y-vW{-c?_bJi)Tp8yFKA*fa_s@t~fm3>RrVoMeK(BwD)Vtfb?UnGB{`=@3 zP#NRG!dLWw$%C&q`PL*Rcd(*u&&Rpe+}yHvV|H(`bB`Q2O`&A&$7=E6jltDBHk6;u zh>$k*XfjUW_cVSH8zAz1p(a0;&!aX<51KN1l~jX)csXdX-roD(yJp|TR@9^%<74vT zURleMuYc$cj$SN5xVV<%3xElw55C#n6C}U00FMmtA%X#$GVe1yu33LB+BebV( zu?Z+X%?Z86^;-rO``r|HpAXG%$hp|+9oW%#%*EgVH?}0aRrUH1iw_Fo+gN`+jIwW( zcUsE%es!MbZ@h>%6QcUx*b;SWC(VQZfJ%7BwpP`BRC3>T`_*nN!oyOVX8VnJz3tdt zpRNAK=jQ$9$v|U3F%35Tr@6hs>J>T%NM!Ln#!m<+jw-3D;196nHy>y}Y*WT5ftP=>fnO>BqM}m-#$R5Z4LqlAWN}Yj`*sYt zt5N-^aOigb_jm4$@&M`{P~~ar+M)Wf*M3WX2OmsYkv*a3f?u{SXWiLfLj)o&;`MXA zu=x~dX4dHIl0RZ^EU;e7m`HQa2f>9vX_ESfAU2_`_{H0C3woN`kN^rjE557!&eQes zi+8}v!B+P4Jo@xez0;VqKl^|5u=8NNFQX>C?}=a_$zPAmyZV0o-nL>UUE2$j?ci*wKJUn= z-mdzu2K>YqdbZ4SLE_h5MEd&wI)%62f1Tq08>g6Sa39us6}bt-v(iWB%padNSUuNo z#DsaydnkDHuXA_b@?gyzx6*sh@2h(eN|6>kCbi)HcWAdhaXU&M)sWtqJvF&(s|S5t z1HFhZ`CHDvyB2dqEp6(34&rZe+~287V;n)t-n}BW`=%FPhde&obc~vQvImRQ09EdR zj9dLbGww71Sj@$YkEP|&o82R+2U2gJ4TDO^>=`XRQ1^O-_xh}pb+8Gi+n^Dc(%w*9 z4Jy^X$tSZv?gt{hx6btT&u=yn+glAwwnp_WKj49yQUEm>M|QSmzQz_@y~_J|$DK$3 z@FkaOdVy|vFjd-TVqfRV%3X`jw6up>gy+Y29!~0!hCi-4t<8mJ9wd2`sc`VLU->cD z*xnu4o}v9B0$VO@k*9sNdUI{k)?r`va5>=iR0BJ0G`18S^C%~dr{877lABveh z0&Lg@_cRKiadHh2d+FRz{oPFn-iKx&ll$(i`Qg4` z*^h0-4~xh3P%Xa=>p(W!h^w9I$!2~ip#Fb*B+HVSKYCTI_3-yWA6zk^6D&&GUCpLI zWHjkWeYs~H6KcVZs$?AIDNu5cjCIrB*BwV!^fv(lP{lb> z^sY2!%<;VJ-d+De;4jQ+fA((k`t}<%VCul+vQeoiyT83;sqpLnaPsYQUyy$|Ke*65 zYI=TC>*Kj&!GCyC@zM{(GJfRS+7)d-F^@NG@)-Ybk3I%7`$<`gSI?H#K;^e~en)t* z_{Z{y{BP#*x0de_jUAZqZNjZ5F~8ov09%_eKMJ$@$kp#ynaf5tXJ&xtI?p+n`W_nn zg71^l8{q$wzb*|=_#<^$5P#_p&?&<6{NO!f`t8crY??eX|E=kYZFm+T#rSjC?Sik; z=B13@9h@_!@xgR}mLn!4ncy>a1rOy=zPxXqK_)Fj8Kk5uOm^f?xQ#QVKk zfGr8z{bPl9ygX)Dx)gv}LXoPMTeIT(K5cuWhA#nL>l;UZbRwr;C3p8CWnlB-n!zRf z(=8oWf1d^jcM0et(-&BwjW8DavII&?%Ts5|h#IZE6$!S`T6e8JFJ^5d!6A_C-2?!e1~p1kc) zfKpVfHv4AM*TrRvW5xA=C~P0{pO%0H)-u?+=Aq+`sjIUsv46F6Ym|-PjlT2KS^m|2 zyXG4lU%I*n@#BIgX~fIyUnL;j>4w+5E#(1tmUY+1XIb+Bj~ar15ZG%#ytjAikiJgB znXQVEu4-y?&Cifn!WCoL?Ecs4x6~ZlV24b32?vk*jk`fVMcq>c!hE~WVcBDl$2s1Q zd(+?#0F!nM>&5>Y16EdV^Z8{>9no)e!}$ z+x)G^)_*MJbh$T=<9f%nZQ!P-&d#Wy$=NVgcVTyD;i0k!KduK3aphfq5LVC(H zK~mT0%-A{Fy!Y>Ft9Iz;k{m@up95~$SnZCAPFXw9a%{dA9sm9qsVk>G)?a)2E~obD zIDIH>_6Y(I%48RVUCDJh8;u0S*>k9zS!C3HOwZ!cOmXQcOwZ}Z*+ zor1)e?Z;9;Itx1e``&3)v~StP9`xID6MzbmTXDa~!xLWhpO?SR^s){blGL5N`RC_h zt7|HE)3YDQb{sgg;Q0*VhqHspv90;OjA^@LOeY>Xfy!<1+3(voMKEThp3J!cy}o}- zUgz`L`4w%96YCq-PEMZQ@0nXbcI9}GTd0@tt^;W1C}kbssA%iA^J?}qCFx`Kovm_< z>D)z|^~)|BU!5oz)&2fV-upSP!PEIy2DUfsb&N@K3yq0uClD$1j+m~u<_NDY3%oyE@ErzlCEV8cg&uI%W zft6zlr`I(k42fBKsm*`^@+r`faf`ON^^?5ji9pkWetoK>_~{zo)KRl} z8{9I?OUM^Kr`Nr_HukZlgudzl-naesvw1?7t>W6e1^-HD@I{X;)-Hki5Q_X8XdE%z~{64YO{}Us2NV)ag9)2d>F$^Q{GqH<~u? z?%eMcH#vA=>ys5FkL?vp`rjDpx;(QPoKv0ix+Wgf>gDQoEBq34iyNyKcAxWlTDi76 zxAE5e#0}10--)E}c9b_Aw7hRF^(nplzM}1x{UFe1+KC$`{AOKQFqB#kCR7U+PCT^E zK2f@MVhcDV{&|sZMtkgwBZm&UkBVzSDEntEOW9m;;&t1ssD}05jgPOTMQ<0WJIsZF zXKM0+thv1DVQDTBP~h}d!OBNPvSW&r*N@ysvWM<+799s>jE)DIXn|(HgqBVqtBgMO zXMA&d^sZ!Z_-%0u-QGU}$9=^>+zk=#Em%_%PzQ9yXIojn0U6WAsK)K3BWBh5zWZg( z$fxfq({@ERbqCfvnPDk4%$3!`-0rRppXT*LrVxA!d@nV&Fi1NyoS0V53+vQ?jR=)+Ou0HDxoj^a?{N3r<_@-NVKisV@DpXXurDvSq7rx{dQc;f#_@QY9s;1Tr z*p)SI#b7&7EAtk2U7i*c5D4_0{+vzzKzVm1$E_fpJ1UKQwreeU!FREsu*#VK>KA-F zP;+iCfBW;95wm`8xi3yhJFd-oFcm2LQeMm>q(Bz751ZuZ-_2b1uq1pzeJnVzWT=mw zAPp>Ny^UM&MPN{jciD9^y}Yvu<ZByLV`PI+5;4KP>H{JkDj)4 zWV_-Jp{?(i=|$v4U)g;#K%wkx`MHXlF@NNI-|neb!k2&)``3S1vf=o}*3B_F8LxKC zCZxPUaS#R68lauC2JH4q+!7tvcIwry*GDDj#y2czzW-%hns?yCY`4N6h{OYx%Z3gF zvP!oDC3?@}q!l1vS=w6%jx_q)_ZVK=D#MreL7iOeP z=9srkY6p@9-Z4YUWZX+$;KcNo;`#5;)B3gC+FWzu;f0vgm}8ygKpL9ZP%!YlS9@hA zT4Z&seEK+pkTNe9C^u$irMV?~(fzxMcF)PWpLQP?#JN^5^mW0gmWIA7yo#<@x<#W8 zLF8v|FReTinRUg))i6|R0Yy2rYIb~i>yulGmrv^QM*><|I=>}*oBug3tJ?$02SE{V zN0hMAQ^x<*{pk3$giYz|D)SBr!WM+Boj7a9hf2$~M-Aiac+v@lGg3A`G!ncgq?c6k zpEX=)GCj8~$eW*q^v5@OZMmL#Qbe<*wJsHnDOdl(R< z5tW7(1VN&Jg5;=@R3sxvXq2cTl0lFlO;!*|B1v+Ps6+!fs{{#>lSCy4B_qFDWr zLyz^c5qV}`71*0^A+;j#N5uDF_ge1Tmic6B&zDBqF&gZ@4?m>k` z^H-9jAY|`|6{btR{+8mV0sH zxsCS_#VI)&iR&)E0uSxg>N?Sp0=&Jf8^(NlX$IcreLbM*9Uh%{jQf< z*9mSS2aicu^uD#`Dt=Eqp|%X<|Hp1RxXLF9$^@GP%Wb~yKi}{6xyb-ayv}?79a;L} zcGlbEkqF4Se4pXnrjo&OXzs;TntLEBoqB15pbrq|s4pG*iKruH+JoKg+ou2?2!Ui@ z2g0U<|6NIQ2S5natvSIrBtXOZeF!|?3U>P%U*Bos?2CEztFJaMOUx!61J1(#NNXvn zlYn82+GV4?+-9%l{U^1IljgmN2mg!p{xCs7=-~bJ^@OwKa|Suf(+n5vvfn>p#m35s z(eKK;f}hv6c9!3B52k#&rozaK zBmRLv$=8QH#G53(-HNkSrcS6I8Bi>-l{#?f1sS2PpOcr6w?@}Z)JN;9TwZo0fjSO~ zCg$Ae-9pEIcs>oFKw3+usrK?aMK9nlW=@~_2q20h=x z=`nK68a1s>_i`5vst?*E=d`khKOrZoY5aM=5?563bIjnHH+-tXQ3p4Z7GO0i+IQoj zPpiN}dVH}{aUJI_jf;4!#16fjSPd3W(X8qeNZxA1Rz_9a`EmnCM{GG^5X?EyQNiHQ z7Vwqy+I4Ypi#(IiPreOP^2x-rJMdp`v2=6Na8t#he)4G`|z zK2Ax=+lvjV?gHBoCpoc!u1TP|<%lxEWY4EF977g`kL9VFzzf2xF>LQFp!|lC{ z<4kq}EmI z6$@!Oh5ea*W~>YazeG3CDZq;ejAlT_cuBPkt2~a8k{Vq)4DvoR9mrrfG49_j47nJ5 zZIK=WD}Cq*n^{TRb;VDLR$Ujr$l};fv&P>^E)-ZgGOv1r9gunSi;_owvUX`tX$io7 zYuNz?dt@_?`Z1Hllluo8H|W2$+?A-L<_bTtL5gZ!feB^7SCSZ+@sLKTffL#SA(ASc zO}T9;M9&UcIxEfWWl0dzYlxSQ?jdIX6%pt}TYXkk&bGa1m%ymV|*EKrmq8Pkv<`Y&A$3{)+b`geQT`q9@T^-N7tQ~ z!xG~XmI6(V2B-b3CXsxFvZPH8_DHv0W$O=;-Udh`Z{s$n8{nQ@G>n@8O`%e(O{Fs) zIRi7>W9%RUw6vXv4y&SkfTkI4KR%ntGO|FqbKd1$yf0L}{^y(kns5lGYH#}g6eCfA z@=1p}n+D|W4%4Q$#t1iIM_4me@`|Vu);T9#iOfP0ohsb#zR>e?2WE+y84u;c14KVP4SG)zGH3Rg>7-E#ZbAqs#g>3bCQ?NKd(=A4BM79Upw~c`cotFb1w1`3xpnjpoIUwJ;A}b~ens?a ziX3rw-?OkK002tdFiCK}gDA}Wt;URs0xN#>bH&3p)UuvJisaOcN20#%jNp5UI(l?% z^j%R*7q<`{Ma5E(%^7_A9L2zw`qnqFb*;NDxY~Q}j&P*DDW-q;lgoqSVTXcaEd5?? z|LCA{{z12`!iB>pa6dj!CYTsr+(+|VIwJ9&@#Epo+t=K7Ag<)!x4)DCl<;I8#0b>E&dT-Uq)OF;4Q8YmfT zm+a&J8dEh?rb|!naYd%Z)iPe{5l>%!)nh$jfE0Wto^2&KOLl}7J3k`Qa<7bF#sdnC z7_D7aSK`+4{yJfcN!+9@2Qkxj?_^<$sMel26HWDLyF z;`J>FY=WE^!$4zw;@Ib@_<@pokr|5S`gYpndh8+s7#D2I$4)Gq!oGFFB-i_|L*Dha zuhK0{MdUR0wVdH-^ejbNz5kDEYwqhqPR9oFVHx++apL%t!AgnTs+siI4y0W&fs9*b zA-Z`#EudUMo`l>zDjXz`pe7Jy+hbg~G3fN(3}`o-YA@qtzTqaD!9gs`iXPFX7;J&b zTKA7Q@yeA@y1hY55Y2FieY#WK|Sh*2S*rE33LthSLZ;EgfhwNj~QB3AU8;?+TC7I6&=2BWLs6-Ys9b; zW&e@cH`R0n=_|xda2a0Dr@aDs-{!Zss_ng?#Lc>9yPGaraT?KiBi)YQeBO#_KOPp0 zCKCX$fr*~D{y)k^zAF%h6!*fA4kwc`qyE`I7CBk46WGjtNg27Ky=H6t&7|i8-2|BtG$)wQ1DbD zoVRZ}aUK?4SJ zLjT9uA}Ye0^}`Yj<^g46hoS%!2F`WOXV?S{1oYueT9vBXgidd>n>54SwI?`8+g+&cxwn9CjLXVc_{TR=BfgR1?|;|+ z_-fl6E1LI{Dl2L1RnC16cHhNvsV6$jZ8_5O@2te{xd9b+rqDl_U<=rn+t2~#t|{&z zkzv%vX!^0?qTv8DXk+B!gF^Rw(0|Nk)F%zUiF1C#SHV@Nph}sby>d_3EBfF#L-H=5 zgfj_p3{sb{dbYLs5Qx(c0|$^!&suinv7`V_lpzEnpUk55UU`g3`UU~4hcL-}@7JD| zNlzVIr3v7xSod#<7R*3ZpVR&^P*~w4r;U#Clit{N8g`ya`~23VHI=k?^+L5ZyPI^E z3>Lm5yD{x|$^2KTG#x4GGX33@u!G9fo+w%NL?O&)RI6JU1x>CeRojQPgm2apPY5KN z)q-);wO;_YJQQ^#`NLVk`agj1k6fwWZO^vB_B%6p4a|;a8L;yC8@>5Hm|^pYmKdc; z0X-9@MwXV@iW<4`&!sm6uO7aGntpQzzVZ4qm5e=Jo*1Q!u(SMo-$z_ZjZWvi(hZ)x zaDAeu9XsbFkrO9>gNdlno)Kly8-%CrgUJMRC*hT-@gLqBZzK&(#TQq5R0#?8BI59V z@0rso#}Z&rC2i(VIqLK3#xM3DCf?X z{9}Sz6uN@sOvc}bROV58G&4b~LfYvwbw|R>b$=uGkP$IbWb>~-BX)pGZKpY~4D#$( zJvw=b@L6}^cGiF1pddVPt7ePC-;;njXrC(`h_O2iU&k)ybqCd_<67)+rl_q5?@>HI zk0l4b49PD4et;Mc2C?9qEb@2J)R-vq^CRbM*0{t)qe+ESs|)8pyflmVC?uDw*6&BA zz-}JmbKiRgFLrPvv6?DIdv%H~HKs^Di9$D?qEtxOCJI|8M(P)^*q*x&W+=UQh%M)a z_p8@xSdJle=O8GQh$aXAQ9>Y3kOcoH7WMb(E>T25LHn)+gXvRC1b-$c<`xu*dD_dBar)K4G)$Lv3T1}i>AI( z^e?u?1h&Tg_qECLs2!Lzmb*o^w*2CFI$5infx!tTwewzf9D&nOR5KNk8CxaCt6aWa zUU1Jf&4rUxQXnkw_bvWFf`Rru);+~d7dGi$!20y<2tNJ$1_J_fG+sI=`&{{8rs6{n zE!sYpZQa;)*e5m8rDXbo?tx!2Wpu7!Y) zk$XR%{`Y_qAAm8OjHoQxzwhM$bDI*AL4vO2R9|Mp1x=Y);usD-_il$kK5Tlu^)aiT zX9Xn1f|oYW_LnZM zK*{A-=&+FEU;^F|6ve1#Q>}@H-cw;GCJwIAV>2T!Z2YV)r`M&8tM{1VV^|57jt47n z$b3}!&rZHz2NlNTl=MusLo@m8aIwo0{t$en%N z-=wVmX2gc_s@|m=<_OT<8*L5iJqzod?COx;TW=24V~?&n=ydMU*|(2FI_Wymgy3gn zK!lgmTSW_@!+-=ui;ExqZP92u2U|F&XkGp1S-kF$#yMW1+tUJsU(g8T#9G!l)*OMy zALmhX7n_E>%Di+uRLPF<$qvTU2UbUAEF!F=kjLhc|5Me+U8e@Q6fU`Ap19|{nx0-Gdg%1Ht9|>*!XrnT)?Kp9w+|WezGUYVQNE0Ni~5G#xw4S9P8#WuVa07ePHv z0uQu5P6O2?4RqK;mg#>c@q0;vYuF@yxhG5`@cMc%kUZv2YeIaB)b3U?2Ae`&L_II- zDZNWPdKu?Ei8LIRu68IL6R{M=?FJUe+)#tJa-qR|Px&D2`S0Qn0xwBajnr*c&2!&g zeds`XN~ot=;$s`{4wbaa-0T2=>l3G3wuBeV+ko zyybmPh(>|}3FLBix7toD>nfoBfl$$Lj(n&T;*TaYHYsJ!2`^^T6% z&|Z)MV$#bqVmf{QpJ()x{sFuFP0191pYrkp7;+Q{>d9zC0e?E&`maNT6AO>OKUCxI zZp?zLAdC_W?$|9Oj1WoScV7;<{xBT0w#Gc zFKGwE#1{evQ~uu!=HK$Te?IcdivM%u=Z)vm-qTCLt|Wh#|G)f;X@xXJa&S-sXc#aA z%BL2e`ih^dyfFReod{F+IgPjl3?r9S)Kzo|!wFbr|56}tW6;9RXHGcsHYL|{^H0`P zaq#E5Qr@i=n=oltkJY2eFi>V_1{q}4Yv|!t3Jt#A0d7&;SG|!TPiCM8xI$-@f7O52 zu}iLcS7ug&OyW2G4udH2=`ay-%qjRCOqRK_3iYDI!1(NOx?d|WP51Pu5_+2}+s){e zaB&q8m25BiN-0Mg;LJScb0cbrMW7y%zcCpLJ?!7j?9Exec(4ec_O|}DBCpeMQqo~l zRE{p{r21(Ir?Zp&Ot3%NYNK@~p+JE^n z@%Z}Dk`M7W=aolX$~GbBY>Tg)Y_ZplUvcl&9NL+G=@>$gcv(*~B2JIJT4L@^>G%Oc zlr#Ym`feD(+%ZuHHZBj;eSvldvi0^9ISsFQ@_VW|rkC+BER6f`aiK+fNsj$;o(d<$ z3iA*B{@h{!0eh+8Niz~6^eaF3YD@Kp*O=6V3Fkj&(%K#%W+M3YXO0v%wr@o;$QT_X zRAtA*T(a@`vV}sfWg3}#OSQ+EKp%DNq4M`DAqq9tZjX-;p*;zRnUaY4+G$D9o}K~3 zKhKONXO52x5YAtZ>}C`F^}wE9|R6c6?3(-aL&n1)u>!=5XgclJdpmK;5uxaE5K)G1HH zL%Yt*#;9UN&sLUPP9=j}$}b5HTGy8!z~jI|ij_Rq0?PVBum2zxkDkVGTnUE`{&)9m zK!BDq?NSkW<~obi*5bpdIkDGgyuwr^ub0}-5Iv*E+@NfDO<+$BUvMeug?#F(yDO@k zDH?Al%Ke3XmD2Rw8TId2rU|u=)wIqX;~CuO^-*T}a)wYcK#Ysq@2sMyOV8Dt3S_@G zA+`8-!Nywjp9!+>+!r9q* z8FVIEJf+jgnWge`3&IvX;Ws}#YFM4=oPdgsaPO>3U9i|FiuSx?wsNe$I@k;;zb z%Vh1}J1ZFa=b>o$tS6GJyf9vj93!EB>s?&yNy~;6w*7t-YJ3CG@JxViBFHk#EB}Sr-42V za6UG%JkbbQ97QAUWgA2BPQzxLlNwkaE%XMI8jX}!VbX>qUjbkHzDu##56UcN zUq^2vCx;3nf0KY$uUKuB%;_AtO@BTqZUQw;uUTZRZ`Pd|A!I#BBN>7I5a8$J*B%)uiX7&Zq?AS6OJgaA_V^=;R3YdUrnFg z>e5h+fJ=oMfScylq0OBVw(8duu^u$#tSMkAFZUZxkt3h!d!3@0g;iPoiihr3HaZbY zK1e~RxKbVFdL})b2CPIks&+S}t`}LyzjW75aewbks-8`LWYynokpwD)45Z?C3#jhWXmqu%i@d!n);!29yhIv)78#cmY zYf8ja6ED8cjKCnm6ZdipHybz-H8X|TaZyDVXDg#*zO{LsVj}Q*j5(!E3$y=58liG` zTF|5=Jc3JGR=niPhdhmpC-$>l3g?{W&me=}&4nu7ps!GQ47=BIwm#~MN{mnl8E?57lxwL=U`UKgw)vvPd7bA- zy$k6;;1g!~rsqY~>gs1@(z* z>gu-+x#qm->R){m zuW|T{yxo?#l{}C~L2;3QXa@7;tvtTD7%;%eYKd4S{OaMoW5y1i?)JqXi_weKq8NRZ zJHkFTFxc|oXEUu0nAXE<&MpO$MJD6m^<0O8am*RiE{ZDlIqZgIj#e{2=B5%{a_Q~c zF4%$Qlm??;bVrqDt!T(G_VdmfO!Ewd`CkUJ-B}#l_%*IhkK_(L#vW0dVZ9%HM&w5M z7Hq}XL{ZB=wIgC*2#oya3QDyyu`lM@3$1ilcGt*=@Kp_NbB^;ddDcd|e_XK2gli^! zcd<4`KWiS2A;0Pv8D>I)%CciijA|q+q7qPe*98a5pU@< zi&3)2YP(#zzb<)>c(0X8_YG|g*X8ksbe8h1=L?d(Ry_`z>mWG)2s1)&bJkgOXBroJ zX|wJ^S%L3P$?*yE#<}O@nFXqDZM(?WL*)_k*70-I&lQFXiUB+v9QJs!Gr+u zm%e`Uq#9p1`2C2VL>&PGilVp=vER5kil4u!zsla>Q>t#+y>K>9zm~@k==4rjn@}9n zV&jM;z1v!v%~Ns#!ZG~+!IRbaS{40-kgrLw#>Ujjcza(gj=}X_b}a^;p@5S#SB5mg$25Y@hzId`4E{d(F&V~Z|K5% zHeUSlZW-#yv?-O~?k6QCC&-0A7u-@(v9a=ii7IwmOZBl2h#cOLWI8Fx>w_xB=&_`Ft(8#HyOc28>?W>81Gyq`}*> zszoZj++Azyr8ySKl=?+F+V{2rZiqbk3DVfph?8C5$K>{2&!NI0IyOZiXa~VbOy*$cGAjI|hr>K=*h>!#y*84A(Z}~1E$bzX>H<3&ZQa(3 zvDtHFAJ%?CVfoXKDV>I#fwZi5ISZ$Hof77-v$$;CqL!$x0BUZ5-7MXVUmFD)3zd_wwYlDmp}TYYgPe2&+Z$OKFuetDDG`P7B; zeWYQJA0~%V!uM$qMNNPHy6)nZL^WtWnBX#B@_Bz{mvRmcv6pPS z%Uf$$U-kD!^u!eD$$TkpS1?{4<1xt4WmcH}?~o zpcb#!(4JN}$qsSah(*W@q7m|r=vlx6G4m_bIuV74w7X^8y#CN#>SWQGijUr4*R(Go zvq!&*mR2|ZMn=N$*e}5c>z+sM%5U}dqp#9FzILyJgeb8~fSg+76Lr2gQro(0ktBQCX+}o7ddSqf8ZTOwG8HnW=fCHN>A@_qH}2c`Y`d4(oS5;6iH7EA!HJAS_r^?a zDV`rLZk}dyzMMM+UJSo1q*xkuf#-$%5nC461&)FSsz1AM0P$|q^3?Cpi?uQcntIuy zDA|*v%K^@|GLZhPK-5Q#{Nwh*I#CTj;R&1j^k)MUYS@Gu_QTG5NvpBrL5NSj0kJ^Y zpM?Idryi(1mcKkCZv;%pp{-}@lW*SLxMj7mJYfg(!lQQc<|3g8EO*ZF+o=z}rJUT4k`0ZM>q+6+G zo`F73)s~&v=Qn9vTPv;0FoG@W{-eWmlU$C-dnl}I40AA=4iUb1+|yG7$>74{PGa^E z4Zh_^M<4xTMNc3Z7>!Cw9pfT2R9>wS$v`mN)_T=$#BpKs$5gyqKVR>Q60E6UDm-P)JOia}JavWAD7wVFNFzYl1$t0tU*acvdIKvn3Sq^Fg@ z<@2{Kl+N*dh5)b9UACj&dL9PZ9a0ybS=+*>inm)bkEAMKj6P;jj8u7e7`_JIQk}o1 zm5@z$DL9*=gMc`W1sr|G_{nG*^p}JnuaBvy--zyRAUKbDVzv{8q(9A*gJ}h24Lr6T zFiF;KIEbSSFhP)uRW^`MOE>i?|WF&0+CuJN8Apg z6BQwUzs9`2(kf-s|E)d6_vO*f!ecyorVMv1_Fr2L;cM5>O8E|xca8C7FmX}2I|`d| zI?%Z3Sv1Ln&V@o~lTdr|SvusH(c?Q8lkbbQi#yYdW2;?_ah62&PZvAPbri%7q# zj2|rm@pmP=7q~P!7ktMnpTyA!*PWzfeXRfo8s!7$5ofnp>az(+BReQ1;-&{jk}m86 zq`t!n>4-1nob}lk<|{X?jgqT?ZCM8EQUI?#0gMlS#2n(;A*cJOnL1Z8p<*xmt^29e zS8q)7aXA(I`}Y?$p6AXnN<2Dpg0pG|&&7^AmC_i0g|B_6JrvSq5`YgsFNBCNp&1~^ zEMDux>`@OpXgFi!ayqtQ5M}VN3l@cfLvX!;GFuP$X-nlLB#9vD#;f5!kV^?s-7rrb z0SW))g&&|yu^Q&jjQFNgPyh%zCg&=GG*(1&=GFHZFsfV7L6i+eCT*wdyS<2aJ*m8^ z*=>rq?i$~T5wS84bhgqSI6oFBsJwZ+$a)D61OKD^1#*OR%N%nc+C=Gfm3si8)$I71 zTPOc1Y*NQ*^hZs5vZM9xfAx6-lv50E;Y`T2*cX1e_jUk^HZK&|xxtAN-t~YMoMo6H z*#yC&F=|@B%uzVKgh7tp);kWgh8<;2HqKwXNNxi}o0KEhANvMPSy9vThlbPy-pP>f z7mSx?5&#?i?eiZIte=75VZWoe*9#<}7p{FQs!UWFGu_}dcgcK+NUP{xuWt|Dy?tq{ zJ~l_oWo_0tv#g80m!#QT($ICOcJf_OOc!nk!1hUyWQUYo$pRFmr1H&cA4!aL3$&Y^ zolbh#{9%5a^=2~1E>Fqv99NIyiP*#u#{sL!P(B6bB-UpFL~kY=&;ewD0NfM%x7lhG!rsi`%Zl`ly>K-;DH)8%{7n|&CGW?g0n z05ZSRG|%(I4+Pr7oSrMBI{;#*6V!F`y?Rf7#3q+&%ujK(Cd*`%KId9*;|feAi__07p6L{r-%KtOw7=9)a|}~ad@VIq<|MD` zNhzuD;u(nVC?vi=_^OzNM)^a0SG#R?Y;RAKAik6OpZQ)YU9F9Ao9%iz`SmqJqQ_3j z=l7cAZl2i#(H6CZjxX+%>~O>WXq(N5WSQ&D375u~VRPqt7IaP*LXsMOGgsCvnexn% zueV=9ChVYA6gFt)yt+e~wgmK7(VPYK?*w>~XOLFd7M5?*={x<533rv`SiOC8K`TR)*oC(r}AJgr7U)rj0On|3<$>->c_a+Y26|=NA^Q z*gMr((?tKgm3)k59rhrouJk;)~L6KV@R` zJYd4Tfa}k@o%z@|b7fuKw7A9`Vznju3#}|Nd*BTj9a;g>Mj_)$yz*K}%#u!oLHmN-6Z-2j zXvBPv{54;eD@-p1e)tGmC>DvYvu4#C`=YLu%m`3sQkV}neQX1peT^CM=yR09T^RP# z9sR7Xx!ydRLbqPtm6@ZayaQLMC{fiNz%YL3yXoDzG0wP#%-O={=Ok3Mh~Nf`LiGxn%JI zWPmSkcRCdp0Ys@OH}B?Ld8L0Chq%3h_myux{AYZ5@&{>7XZg*unGSuGRk6;I?iGHF zjhf@q?mETmG2L?ZPliyV)R{Il&1H(sGvI~*BWRe=x#sCksMd>eXZVd#x0U%Ot)9y@ zlMu{YN}?y+wkw=}9NL;iOGAf#OiY--D07khf%jfs<_F>W(LQ2z44|~$gOwIEb!v*S`$S-z?j z*TxI5#B#GLNWy3}3=c2Ml!0O~;EZ9V9!}(Fr1+i|;K#SqB#f?iXBN7fci}v%xE?nd zRZG!3?35$kc}=)gW`B(J_e?A8)lFdHu;)Yo^tS{(r6pt!X)d;)%JH zyejrW`3Vojmklo^^H8!s=_v!)Tg@etH_d^byzHfsxtQ+0Qmsw=+FaU&hX?9VyBkx9 zMWuR0SG!4C@sb@i&t`C;g&}$;p7HfptQvkk+nuEyiS&)KGYsWQl<2#ma$oc47G^7B z)@Hi}Ur)QVhJCu5V{ZX~(wQU^o5=P=vnuZlPZeXRNz>`vUO~SaE$8J&1jG+mzO0{b zf9NkbyJyq&-1io}q_^jWhUhUGi!S2tO zJog=W5$=;auu2v;ROZCH9cr9OhFhQKhIYcL=1AtXfTsWt12;O1kdzsEE;B=&qd3OZ zgZWlcc_ERd1G2&rEEz&$B=DKIIqsEG`V*`m%M{5QRB)I+MolMd ze!H^m#d)%{bE{3U!scC1XF4aU zp;9k-PLa&Cjq3d_kPr}CGJ$CypnCicOO&9zsu0HBfZ!jCBQ14l5!aDE`nMaG+4$K* zUYxod2PCB?>PE6jMtA@_Zez&j$k}nU*+5|qe-}cz(gNQOlp|dSxcQmhyhM828j9q) zQ0(RcfK>tK<=ar}F!Pz3!6|YLBTm*C@`hBPmXc))Vx}6{@h`5XG-o|<-&&G83nJ=I z7T$%>Z~m>O@r$|g>Y*fCQet}cFQI;wxHa>3{V6e~F9KkK#s8HHgN2YwZMBtmhOz1q zm9D*zT%7pG4JUtaIl~Fwkpz-qn;j>?=m(91HvHuTC<$%*a zJ)1Xo2fAlv37|iR1a9>yWNtC*EgUve3A5rAS3bo;6OTOL(%aAp|G7~{3NB8%4g7{k z!~#xy`6H{q{lyy_F!t~*hU;M#f4iV(9UJ$AZ%O<>1jDb*u2qi?ewSua zC+4&I9!e(ht>dBT1J>%5hhO?S1orIm9e{tNTIKN2(*&d6*=@6|8ZF@Cze-Th>su^$ z!r|xvoM&LCRgA(({abNRpp#CrBg(7VDGj6*JfKWVISqv;XU1YfU*2@9NAEOmCtE}~ zzrFJ*75Ku*CL(U#!f>dPHqn~I-3+we4!yadXurLnIpxgXzINgpRNm4Cisq=>@U`uL zuuP(^PeyJe%UunTzxj1C@xg=UhhG&@GEoHSIr^i|ef4o@mAi0U(Db@G;NyPNfiy(f zh6q5kM$0$J^oFlJ9|iQ@{IC}Gsr&H3vn>}d_W>R@260y?Wb$u)T%N3*8j%QlZ2SOy zgqR7fLZlG!nk-f%0*I47&Exk{<&v(%pF^6Yx8u-mH3SMs7oR{b@HX}x3~jI;eqCnySzu-2fqx6#S-aG(?CYJD z`|=h>Rmw3H0Np3`=a6D@z?UnfLETmzs+0g-4VzVg z#a9U}RSLzX&RzZNtVMD4gF96D-dGQvL#mk5TZsXz2XW&M$lNY6=@Ug2&QOy5a9u?` zI?)R%7=MkNi3*dWA|nG zHC%n>*>b_0KI`Q`vF(`jBCPv?@R)2ntC77P3Lpm<;&Jr!O{nu@=)r#z*FSreM)$;(!mVx}pp^9z*Duf9?u zPbPgr&`SQmNU3S>afvT^t|{^9nROoqSC5cqgp@ZZNzptizdV(63%rg=JtAfMvXe~5 zz*mzM!81l_sN%bvthGDO}=oxdI#NaUz#n9PJ3;vs!pM*;7` zk<^dDapr>1JHS^L?pm7B?&WBJ&>9{O10is2y7Q>TEheXLGk<@g z8KI5?>9lJf0%{PqXKy+K@`&4n!AidtU5$fhbyOG+V7Ppl#m6Vsicd|M(3D=9 z>EGe#7YVq`L8)+KW5W(=O$rcdF8cGmwU*o%$3O@OqK7`eWf+n3%xoNBYb2CPv?QVK z^cnao38%X-WWwLB1X^3f4K;RZAoVmDzCU*OGcb>wmXL}Y(>5ollz&GZ)y|ei$)m_ z$oI!#Mu*TbHwa30%MBb#;J9x$hM&f!#0i=_$+sHlsVN5gHybQ|y|K%sof{6r-A08IM7;JI{giHNs61dv^rc^bxa}b*20T!j#>uJ);@6)*hiONPb@A5&wEVZc z&*+zSZCOLgZ3l6>F<5Hnlu4pn;UP%mXg-;jC&I89h}*%Bv9HMK#nfb<(4PiJ6wwlY zK6V5go^JlFt|gr(utE+vZV7z0>TzIsHP_wj0Q0!AN*ia}oZ7ZVb@tdK ze=hK4_`Eb`jyj2KUof5MmF4B-+nwnuK>F*IK+|mCOLri+Xf-zf4W@-dg};qv5OQ+i zftSaqsblU11O$8}8xB=s#ea~Q^ zou+_NKWGzz=up(wiSv#^wx;{bj<0}we~VmHQuks3z_Xuf6;qNk5=`LoN%NI7FHQRV zPoP=R*!fv6)d*RXja{sy+d1}gMU2EUeMcg${;4^6N{^$yc*tB4AUYBP*8BL?3}*~@ zn&g*sSAY3FPf>6#!(u)T)Hv_UG46UCY7u@0S9i?qvd+3Tp3eB#a(>|qaF|ces$?~h zkTaY?iVXbi7_D!?5elD+0OdDf(*dph+;hWoj{9p5NdO?d5O_8zpDCJ;7ELInERB|I04%3N*JFiSC z0JR+GH;jE~F3q`gb<6bfqD%+6Gqo^7E&2n9wNAjrYeF8KtW>^! z7>*eC{2{o1u07uc_{m$zW$qdwi5%c07QOw#{#YaW)nmxd18SI#&OrjB%Rx%`S=Ljb zM&$Bi5Tzke_9RqeI6i$FxETD6wu6W`Tw060v=Sq6)i1ZMz`8bfARoD<g)wBk~y9AXBieiS%WjNgPJkEo5LB$6N#MXhU%$FX0 z>@Tn|1~`AG$q6WlUBjK9;Qovg-F}?jc6cviSb;0x|F{eHmwp7i#sPJQywB>DfW_)$ zdg-l8XV^8^D(`$cZj@wJ5+Joe#r4q@Xr!4gEhvkbCOgIx4g#wTp>_vd zham&~Jb-+qp9S1uh}TnX1Lw;yNK5T)0e-YLU;;EYk)Yo);Hg+uf9r;jg56^{5cLd~ zJLwf^=Yh9*sRL;sh~iGeT`A!&AN2APPCr{D#kjqDu)prM2ROgmyW8ucT8paUOEQWW zeXaqJxX2=bBgilJ4vzB(u;^}i{F%4VV!b8Nu}Txk~0pZ&QZ^spW`T$>J@W1?--;t z5|X=ciud$s{<;!_tnLZCQw6*2$=GT5x-bxv^=&DrtiYATib}mcJkc$_BDw)*wC~MJ5Ox%+~xq+C?9Us^li{4xY=>I6S(X%rvcaJmoih6 z4+$cs1OKd+fH+x>V3!paLt%R#;?M^p6;%p0h(lMuqUe4dd~pi3PAnG+8Q-Qlbx-{j z{L#Y+rMV?$@C%a0jYl;q;>8#|wrpphW^@L8`)qF>FVIAS11WRQ(|-WO3$)eKVk@<- z$ff#b?rGsu60=wuUwXXXT#Vz$5T}0D=Yn$*wt5cTT6TyqZ@0_ojYXQXT_AoFDmgO1 z#v5h!!NN*a%B{)rbl=bIvU9cz_rUas_vJ-;!El|ljCI8tRwJa+ZbGs1NoA)#dCq%8 z*3wMgD=Farx2te+6Qw8=Nq_&)Rnj3COQK$ii^S3)_L{EQyn-O?i_#o#qbQ`Zw98^Tr z)zqFk%aoq5{~z^#7G);gPHfSQUaQ7lsLAH&6i{v}Kb?QRz-?G)8J%z1{yu8J;D~TV z6@Hd$rDYA02IrEK6K7){fFHjdmb05wcK5BqrLb$La~PRG$o`5aIbFKJ`|tPCGac(u%<-16syE@azr$ znBWmlGUlf);Q32>na&dZ|HsTr%+kh|uK6uj)BQL<0*F&^AI!=t8L<;OIMc%pUn}yG zxdWN?jY*Va=;do5{vZcyU~EL^steGf4sUiCDiTG zb8k+t^op^lz9vJ29|MU)yX9m5>W56vC@a?OL%`c-xasS}6W_Hvx{6}5iV0+fe5XduUj0w*E)xgo&SNt9pI($8FgVH^ zR3;5aa6eVU@3NU5n_A^Ti4czN>0Hh$2IxiEq;j(|+p)Twz$x6?Y_zuYAk2b5M7TDG zH|=|%ke3PtyU>=hFqc1MrRbmB>&3TX?7m~jM_f+K^uazO!^O8IiK3g8Jkvabtn09aHk%Q!Bf%r;F%^n*g)I9UpAwzdPgP>d&x zs?t5XF&_4*icuq7nN-*hP&FuXlt7Ml8^1bZH~rlA0K=St%Xc^MO9z7k#q53T4$+=9SFLc($7i0rzm_ZOKT&01zwyUxMsCoi0;xod12cix- z=Ird$OYJZtHOx5s4h1_zc-i!fTjlZ(kVBjSK$)9wJ=Cw~0@F{TwG{_px?Bfnx|~5? zHv!e=aCqenF!F!}Va5T|H+^~cP=&2Drpw322hmv=$pbr_1DSuMfEw`hoEUcHr^vXU zg!`kUh|l&jfgEKS;)AZe#ZUjysI&Ld2cdS|QR(L53|pLf$@fS{hAQLCNL3YoH7|%Y zH1rL209ouhf)F%($E+h&!EVsDzTv$OnK8iNI+sX-Gi}=s`o2KB^yNCY-b=F6jm% z0+Of(b45@wb`P892h*SJ$WNh~!5w0h)Prk!1&op{3f3VNWJ{3?7OBg({+vrS)u5Z4 zr(1NzygQQ(E~0!2UL|Hd)FRe=Hft$?^GFV*Hb#PC6G>hU?I3Ix^mK@7P#LPLtC!Zg zJy5s|wM-Q$Iu3_-mWgQUZh9!-gG>1k)!N`2Goe#}Tp!V4$mss_DGs@#6F&h>JrS_7R?DT_DYMH($45&GO0bV?fDi#iLtbp#dTQ3qocbt!qvrFyYcWU- z5z*=(Y$bT@7R!wUzK@sl52%l}%^&;e@X0KHT%#;yc8D0WsedP}5ZR%u@ zWF(LxkG-U_Yzt|XIBN)6`u<@^MO1bn`tw^=LI!6C!_UI+=tP4I*gaEhb)-%i{^*4i zsCCD|r3mX*W)bF5ZQ_qO3U6R^TP;QqW!cwM*-a>ySrn$IO7gW!9MZXB`v5#a+|!Vg ze`4@!P+YQM?ZPZ$;DvV**Uc=k0-%@r)ByH?@&sauP&%#QHiYLu5~x)O0J{HB;O`2o zmT@7E2Sk-m*g1T{y&>xg-6CrNhgr?e@X8UF!D8FV6XWJlSuYcQZbKn1RV7x$4m@j2 zPH(rp_P#BkGM*s=kka4ikEA5@wdjvXxkKj!gf|Jm3z|kRKnrZuFNDz;t(e6bj8=T} zi|hK>;}nea&^V5`IccaMHH5eOD;QpmMu|JyMX;CFwL^>+*e8G3PPh@{Yb}vyh@S4u z2;PXmzO&eA@ZE8$a^DVIGT5n>ncDgPxO?w#uK%`w+^SIa3fUtWWn_=u_FiRWk5sZl zA&Tq~%HA>}JC&7{kO(205;78HB~ty)=UZLZec#9ZJ$~1HU%x-T$M3JtaeS)R`}KN0 z&wW15#~J-U5PCSK}y7;sfxE_cdlMu29G zrK{~Jv=cWhJ^ZtMpoqhJX9oas$q=N!LS*9eGNKb(t^mL-d|PHFp4TuK!I4K=Rm*cu zwrcU7CR-d8)EGL6u1WntjAB?1gIHDtye#O2q~f}zE#>PZ@O9M$b$@&vIVtY^XE%w# z!vwh)oWbFfiEmzu#4bvm2jLrJDjQv#Y zUoRR51jG`gJoXP(KSv%e0qO5E0wrvTeVVY6mgv84?^)+QyU%f+Kn>>nz~b)rF?uQ9 zT#rvqNSNcS04QF6wmH**0|)9prQL+7x~tg2Kjr_X@Q+(aNKHfY@oihLsFvv0GQokU zDCNzlBR)RtJ3Dn93ctxaiEy9mmMHu9C!_=ksn%;=}&2Rnz zfqqTL*{FN3%R0Xoha177#x$6iN;26kDPXi3Q?GD%u z9o`s+hNq>1?pKTA4G6Fz#jt;>Uwx#s#y@O_G<^^$RQ*#*c~6ki_mf-W#z{!4uB&Tb zB?<<4XEkvE%r_+2>^eA)C7uRUMtq;<_B)R4vT*#bpQVKpUwdWE+CY?}Hvkg{(iD`R zesf~+uAGQ*`SivUJ`JOcL%a25r^c|8F&G&_!R(h<7z%j*i<7myDv%l4a*92~0-9j# zOfalO$-oz{wBhlL7U6eojP?Xf_NYO_?59iGH(^%jspFnjJ^5kd35UW1HGKc6;pER) z`^(A<-#mL?{6@x1 zp+`4ZGqaQAA3kQm>0&_~sF2ku8#ps#yY%*9JW+mSr5-Uc@l_TBCH5Az*l@jIBHY77 ziT`5O>DJw|?=Oy(Omo;0Zvn^B!k-20}}a)EXu=_<=K- zVboy2RulrmDO)gombH3!Hvjh2DR|#Mri-OzjpM-E{n7!RB6@8P=1dlNi0eZz*9gAL zWHOzZs8F$*pkbHWmlDhnoLI@lHu^P~W@5Hlc{Rxa@mXw+#QykB24_IvYIf;;`Xy!M zdW)8MmTO18>S9c9V>$^oJ=A903K(QB1bbe>#g)@FV^s)X%W?f@Movx%M-+z{)aFFV z#aXf2r15Y>DNmMQ64osV#QAOlE&kN4F$JN4y7zl@F|=&t!ni+c6n>Kov&h1p_glsN zio*e`du%NW4!0!6$BB2xi;uYfnXPJ|vX{}7!V0zt5mtCcJ0da8>05>79*UdQvx`o{FokR-Rl@GAL{{m_M#12mA{ zW;Qp49HQBXH~FcO2$D7C4x=PEfoCChQMn>$opb0Eor>?*=p|e{eXcn3kasAX1_Zq} zuR)%wVZZmwo&|@REmfK7-g?u#@bM$PNG3j>K5NUu5>HWrPxNBCq;&b80C`j)U}ut+EBu8D z*if-z1uY{8kRNG~-bOt_oWKA=0-HIVRAFUk`!ANUufDk-^g2UQBu@(#Hn1Z2M#y10 z4G3zxpWHW0+g+VTO|iGv)|F8O09YP1f$6ZMbYgt~L%!Fz*)0hL<|%@%^u=qcnx5pN zX`t9s%ruM3)lC-;Vbyw#wZ)H_Ec2DH2)s?I`)u)1c$)}poC;>*0bq;WhQj6MQ|#tY ziVBHT;y~H?#}7V3pP#;8CuMQB8L;3ygB`ibQ5T>NI{*oI^tevbWoVA9L)!@rM`w7M zSuzr89IE)~!3?uKEKnQ!ahff6lMqa}tfjs*qkrCmqicVVoz>hee!WEjm@6n?BqcPE z4^R(g+qXa`sni;7iH8eJQgQD>Temx9kthpliw)+0m8$YwI=eJk_ZTIEX{R07IaFh) zMcbO8@du4%XOzwIC*}xK{X}siBo&>&n#!fh?32H_I%T$6J4=e%B3fqGN>}V+pKtWSu37f8%;NMFZSo5`op^aWzOi$wjXgK zpK@wV=C-$wYg%Rzn#o-Xj*DWoJ`5jimcSaLMFbyx?rMK6sej&mD*Znn&C3BF{r&&+ z(J71PQ>#zlaA|D<@vv4g)cJjfAH8IDtX6jgtQ!m{sMcTqauS$8^APX@wWsYY0dBL^ zF}(_nyP}8$30@JX*0)~qM7v558Uvv%fbvgv9dK1q44)lGpzYQC+Y$&Wjq8Alc@F+} zGL+)9A-z201EBKm3wIkbpH<%gPTiF26g3WmDriP!L&R+w^FA!}lrJ?+1U0S8uM<39 zWmOnJ%v(9YvNAjR5(8YkFzCY-&5}jOe^v%MGeC9cKi3ZU!yT_WYK5K$FvKfL)@0NW z)B}rSDoqL#S?4Y!3-%Aa){)EdnWz6V>aPvij?J&r5W0`Sv=AB*&wcO%6^ z&@NXuQ)=kwS5)vsy?WH+_W{V(93;cZT$)MYy=$g-$|sr~t*(?GkAb|dBTaDp$MzT3 znPVasqrcSe<{sKk|5E>kmEfu}SXtw_rIAy}YDVQ}uH;l?){`TkD(DR>6Ie|^El$>g zd5cY-nM)S~tNG-vJ1$b;G9o>C$CV;LD{0?_Y3#aeK=KdNy4yXTs%JLkvMkhL>UVxS zw3sDwNhgHcONx6J2%ZWcNq^v<*$10Z@KGV`b@kfESZJ-A0J(JbfK{@1|B&a1^ZeFP z8Slyl$bc`FTyKtL-TEqRG#-RQa2xVYW*Ax}M4mh7WBT%NzxW98n=^mj_6EG|m`MJC z>)@82l?bHnfURsh9(NiaqO5dqOT(X7@*T`lBW@0Ai_@P&$yex|v{9%_RruW6d2?UU zU#K4tZafekh_3*?aOKO8u~niiQ#?D&llh_sI_e8w0W~Q;=R;-jKBD|!19QsaFzF?{ zpa2hW+}MO!tJi$?S4PSO09rj^B)wG2>u0{{Wq9TA&!eZ%#fiNbwPBSLFjr z*%I!#pPPQH77TzmpS%hU;6$I}zEIC;in4hB)DmXjqc>0sv~l|#-<5l=k9))*oF%(< zH3$PSX0EEABOHmw93_Aj7YK3F66^D+Q4v??zCT;?4nA$=@rkw?w|E zR2WxeJ)HFY5JESHy5E3uOWjUh#$Q}lwUypphk>@ydaj1167!x-Fv@9%re7s4?y{P* zV633~RWQ*B16e2)Fk+tr`UWFua-> z4>4PTGCGvsz)SoJw9Cb^F?ab6pt-w%9{i#uhX@pB6V^aJEP^f@*3nT}EL^a-zNjO< zTY&jlm35QeZF8}I9i%y;Tx3rI6!J{nuia%J?A?iC>Dd`pG2E@XxJDvM@+aKEWqt`bZ!l3QYpkf>X>Ow5|K7`vofu|;-6U~X3FJzB@gHoOy zv*)t(AdJM*cwWz%sL+aSd;dhJ+H@m2fr^dX0qoA*q}b`-+fs>@3;d$}2u1Puh4xJC zOeEh0fWis`u=X*250D~6pD23?WE5yjQrN0$P-7EjSAlonBOnii58XGgOup)lD z@%GIbn9+M3BMCM1+=}OLj1e$LIp8Pn4k|TY&vI)|zgO;u6TP4{rf9iHsp?@?a^=Mj z-vD@mjFD0p&M#HZC+q`X;g-VsGMG7_b;xOZo8lz)kMosTN4R}WpLa~pMQ*CyBrmf% z{pQey!Tp!kf^qBwN(5AyHsoG-b>C&mxa-rp5U<6~Kn8zNunwBj31ki@;Ugajb&CEvNWzd(ywOIxiKsI& zpw@8}u#i!!p?SY$okj(b)xQ&X3q(F??5td=`#H<^bD~kdv`6?#&$pfpx`{Q;IC!ZP zo$bB?kJajk@jgK5gDhK8Rs||@YHb7@`#5toG+1p~i+4uyJlTp?NnaO>jq&Dztka0- z;RMn{iCi5d>O;Y+Q_pIE_nzor_NvSVGQpRlb=Xrk?S6G2YmSKz}Da}M$6+|(B9i?_4xp{!=#+z;8v)v_@shaHzx zU(t|vk^pXE(yefW5QS}VCc%(6!#6m)BgL1`hscipW4uO zZB{3ar@1SW@g%NO2W9Ihe|GUzBmnZr*$|c2eT!_$xND8_j*r&bxCkvdaliFS9&tVlv5$wwlK-F&pV#OK@CJ6OBzr6D=xt@^Jtj8j;jPEtY zyH%7Ia}Ty!sDRPuMu3vU%VJE4OLxDg7hdtqj<=Pa6VXcx3Qz^t!7T5d_LShN(5*$I zPgnSlvjDUxv^#=6?N83G}VTen^dy$o+EG@lsW7&6y=cg3RSvhg`9vMFB6o-fd4g&-YS z%$=V)(kmCr2g}}L!$jykzur~r@o=^p5ky$;g)2HB+wsul3Y8;0yOeJ7I9UHqR+JE} z)MY6kj_mMo%IDTUOz76^Oo2;Fdqhp4G6}%HPY1|T1fZ1Qq<>oif>$*v!W?0-0U3T` zxn%BLU?=N7I#wUDgg9p22}nVh1#k;(jk5?-haG%&f%kVg(KqOP*70o-+wMsN(Z#2+ z0PSZ~l&uqfO{?Cpczu??(ptGFx`wz%c?DKp1QjMh=#8SugM1H+$qbR9nt= zy2FV~bd(Mz)5aa&4mp|zv^=%UeY0E?0ifp9|1`Eq z+~Rk0(+fks&s%#?#M-&1m?&@TreL@m`sm_A-cYUe83w|+NSs+oh~>p&kct(NMoGNG zo%@^!-)?+1gAN51j}o)mP`#|}b^tI<@Q?$fjfLPi%Wk=@|Dhs=PxYBgfNFYuttetU zgn568s7cqL#&BrG1ki4#AAC%g%4xnFV)o8?IP(dbua|pGDUzIWV;Mxd42pgNtnMmA z@#$q}Jsxe{IJs4%b!k{pe(J!J!+~AM*C^!b1nh8pA~s@fCfOY)51QbOw@3l0w;6a) zQA;&_^Mz9E4_VBwcTniKG23=th`S}2!EQ|*Rm?C)2x@=0mhb2zu-eEK<%3p#NFW*b;hk&8+u+CO0+YD%mE)Rzy0 z;vc~!icC~Mjy=*rU{&j86T0;!2N>6)@wckI?C6BC|6uBs{@dk+OJ z_uFHEg+MFhFr3trx!M6lqT{<1vRF56pu?K{ zz`0c^Tl#uA(bZL-LxP6z+zO5N4>&9U%}m|bNfDHc~0)N23ou8~j1b*}R+;4`!zllVcgPV;?)Wtpky zM!DBil|RHr1JJ)qmGUZHDuloTk-s?r^e{Bl{$}cbD5iAEq~!DcGq};(g!)3DJweJD zeyX+wH>Wovp-25XG(5l_c*i{Yp3f|WyILdAX+yF5HSYx>s!KpPn8t`wrVlz5PzSUl zz$=ROiq`8LSZjYmBC!hrxdsGC1;7;pt@Y-VY?z8oxAa=}DpMQDtJ)|g)+hPV9!1v; z*<(KHRBqflNouu8IDOMjHX*7Xla2TWqXQSItbc_!g(lit2Q`VcO;>kapyLKt14VDX zRb+0XaZK8Ny0HE(9)7kP>=rL4F$a1DRX)zvBBWr`_<=Yu6%iiEt<*+0NPDk|qSBCT zSg}c6OOYI+^u$F(fq0lm@RkWrWGvfQP6dh3_wa-VwmJ|sZQx>d?^90SoVd+Md!JNR zD(WaifE?UMKZNQ+T(IA@l2Ai&!J!i$Il0WVCo)_K zBGJ|v3iMc9LId>{qrvK~7AD!}MzSVkl2X%Z-Do5SaZehOTmN#q5k88pt+q^fEJPiy zjoW!QQW|$vTx+xTJ^tL6JK%=_4^3kSE<%Vl`z_WF2LzNoa6a5tw~{$>Ih^y0 zIpj2bPw_Uh1;C~|5smvdV!h=QFNH+{p9`x=tHLIRnHl?E5!Ju3KA&A%kKd7mk*RE2Am|ATZs{i#KV!n14H5!h^dM>3^{Ra3Pal zaM!n?KRJaa_JrUwjz;Nz0*iDDS){E~wca%sN*oxC4V{L9w)D(ZIeiw=z@P)t__q^i z{sql9tIOD*`D_%in5zUL#Pu{>^b=SYNCV_TBhDOyPx#>WAeoTLTH#KmcQ7e72{xnz zfiDwwQ`NPmF` zaW8bYLach`=1$dzd;9v5ArNk7wR?8XK)`@%NI~?`M=&c;<)%QE!u{N2qhIQo$-&c- z9RFiYO(B0%r$aUoJ&`hfN?T+t|_wb!fw2^>umLIX_z@n$lN6uZ16NoWII^_ zSJ7}Ua^44f8T|&aMb02e)%rBHR}+ys*O%C(H|#;Lb`|*1JmPSuiuZ}>km*rl)xS%c zHA()p49|jO2Rmf_QziJ+t4ike0~~iyn>%IEfnyf0n~>9z-tN3f@GM85dGqa1(a2ca z0fSypXqcA7Z3{=S!6O@ryg=RJ{n80N9l#Ib)h4NrTVYlDP4Ob7s13)pBBHW0`qD7Z zwO6)xiuc}od8c1%4rboNiu#O(ZOg>)NyZ7BWY8es!7J6j&93>ZjIZIF--B}mb;W6eUD!#>l*&e>LBz9pfA4*t>Md^@?g{2EdxjqR1GC( z0Hxi^-on7eKd?!45Nz|&ge82ubWmewdZNnd^8coJ)N%+9*PvsUoJLzhB|uVILf(cE zO=@H8QDL10l~#C0Re|VNMtZG37zEDGO8-PcwPZmfyaN5LahLh4`#dz_2JN1dV6_Ub#uSw zO$I0V{L^b+9+Rdgq=5$LCK><7H;MkiFN7j+;Gw3AN=OKw`xx=vps~w0+>8XT4icv< z#??(IBtm7`F=6qta=sx1(Z)UDBCOMNNQyn1J1AFb!BI{*`@iZv1g=jGlTU=zlK@N$ zyi+_5-9I{lAu|8P>%ouPs(`G#Cb%wR(eZc|FFp&nmcf*lF~kwr34q`^7O)AL5enWP z&n0jNn|qfV30}SrdBYd9gPp1igh2lerQI5nR_5C0oTB^- z0@ycoJajzpJhbwrcqIutRNzff!yWSGIYI&$$B;ZoaEu26Fw7e9@_p-_0V#sB@W4w> z$cYza;5bsNglmFBMnI=(Y#3DIA5EFf1aGkdG}HW$h+lam5ex~VQWyr>X#MJ0YA?{e z@!Jn8VlfB*P!9CL0Q>3E0p*bPV&fIxR}RUlS6!}1IRFB+0ADP1`~=Zo<$%E_n#3)= zNb?xf$9-7OA@}aS6xE^D=^cn z@OjqC_OjIcR;FP%-20<`krAP01fa;gC$*g8&U-PzbH|h@8srd2D|k` zJKL~_A%<~8~*y~TXCn3IuJk&eG$M+zpJ2Q8btrdAs%}M-Kdg>HXB? z{ z%a^>L&}idbNjM(82^AbGSWg@@0N-?2v*c}FYNmz$W9BO0L5P4ksLemDD*rQ)i#v>b z*E~DP?vq%k+aA;FkkM5-I>Eacz-cQ>O>UAFf}ugikNtmP{4k%1E{pD>b>-)whIry| z@tdD4w54HtfK?~|ssI;wn5!4CI5S$Hvl&CzPhIbLd?W4N-A1gDT4Bmmx<~~^3h@~6 zA@6wNusl{}aR@Ys5-L;*iKl))f9~6P>%kL3+*9z5je0Z3ARy=km4k8d?W>n$o)w;; zAJarh#MHZf^$TKPb86H{Y#-eNjZ3T|r^ad=CMN-NRaDAw@%fP>pe{gSLudeotdUn? z4=R7*(x7?nEVwQo`@FAd>Q+5U$13m?N5Y~LsHY3Wp*FxUWPnWRAH#eCH?v|Zhgdd6 z9x_#+kRT2$hCtF-IlLL-4@e#vxK=q@%J%5{T$a?uuI-z<8^M&B0`LvaP#Z4g0&`b( zn&8j!4IZu>m3U^5tso5?0u!CKfdOhn(8&vMuFi+$O)f~M)xNU_!+Ekq z)1?Ves%t19L~#cImXGJm*QL$VFg>~{zWc@e=Ap-^kwmxpU#dy)m&1{P6QY`2^Q7;K zIjrStM1jh&HCHf{(f?uWCHTrdxJ4-qd4aq0@?XzWyn!a>x0P|dDjUmpCb0#n%qTnK zDPikwC+|#w_wQJ&C5Pt|q32UbaXScSArfO#d8|}K2C9({qa@Cf9q+X$1OVoInBNdD zP+==Lw-2l5E9dMDuhiS$ke7dMWLC56!`1A1DXZx0rKs&Eg2vv$%lENUExj7I?J$N{XRE5&2%&1!D+5QoufqgeOmayCr%9*+3uXfAVDmn!R8}E(#F)!cW^mf0t3Z7uW zGH8wvi`qYkcM@WQnR{t-t=<=pU|3}!FfcQD!QSAms@sp?SZIIA1@KC2_=SHUnoPLO zH7?u4aRToe@3ksz>qLq;vjsQ+P%C{FOKHPESgRCpNeo3l(U&?9sta3SdUrXmkOzb_ zw#v7SnHYpqPjHY3dy#Dkm^k=$~Id`Ha8ZDWg+aP z2CK*cMZdb$O6JYuumT{?ztO7pF-PlZc-%LzW5PHC2 zoR_kD@XshS?PdX7CrbK))o=#Ilt!8B70AfqB!F|eGaM{Ybfx=U)SgHpRy5H;B|~;T z{)}TYoF9=X&&CWyKLbIT97=i(c8DB#I7Zt|&ySESI!~>N9yng@O@_*zb6y1QSzr&H zo%L-!j$wxf@NtvDgSrFQ+(rfxAw=a1g{`kDjIzq9aF+=~9N+XnuR?F9>Ok}`f_0u! z!gL#tZQvWsGaqVfr@7IfS101^308quKm9gKN`Xu_MFOO}GXP#4sOBP`!mAH!C|Z+Z zU!9l#*sou!fkUy^lix zj4z}LO9bhsjvX(@%>>ahn8lM&j2fvAfcC<4;H5q160e10`GLsYB0y!5-*VD*h}c0T32QLPT%YuxOF)V2d0AVs z5U8i{q#!z3u*JtX$P3CQ8gpYk45gOYD)NFiz<>Q$Ary^7jE=LZLTHQ{6|Ta>#}`j@ zfq3MVGCvAafN~`DYtMa@XbgGy`tXV+S9o4(uW#q_;K;50PfQ;Kr)Sx0Jl*%cyh*yjo1`peE!tgZt<~ zrF#KUpe8izCk>a-)exeq;jS0ZfXJ?Z0PKS-C8XAhU6u$|AC7KuDOa62ENSLCS5etT{at4F1T8%yd<2>nk>$vvMe_0(pepQR;0L&aaMOZ%UYhyasOS zY}Li6?OgV|t*t$04jiz2QL!n5EuG#ahv|$^!U;v=#SgfYh2TW!QL+ML096T)temwW z>{drM=|V_IykbVaA5e>}QmLi6Cxa`1{Z#Z&O=m}OtYUOl`8~omA2@P+wgtl_ERdn0 zxX-7W90<0QBYNDi)AA$)=1>i32U_`%wbw@jFy8yu$mqODjl90TQS7K98(bstMJe!p z=E$FwE_XV0$CgbD8gnjO^xb7EY`DD@7c1z%OAU+x_pQH868U$u%cB`!&MXzEr8R*j^#Ga8hiKXD0Wfx0_Tm|-$x53bSf$jnH|lvIH%xnt3P?+> zPk}UjyP|ku33BejzGyzyxD)7V=B)27@yygqAShf=*IWt>bgoLjx(n@l(3F5|vzjxo z{pM<~e2!I3XMy$21YwT?%M?b?|gt54#0?oR@i}&18S^HgV%a9 zBnMz8ln+2MH8|>FCfOdQyQ=^Z@F2RX>Q+#B-8{n>>>VlqR!#fzkz4V=GR}*3kj3jr zJ=}C1zYaia`;Om_uQOX4QIEZs%dU!~$B(pb4afBuHFOU!6tW>Ljf!+M#Sf>~60tKP zP||WVwNS>jP>x>C6~wFWX29qh>)#8oHBtJ_b98!x`rD**GST+C^40S4n?C?GeDT4v zPZ`@8^@fx0WetJfz4_;gYx2^$cK4?rVR*2@$6|0qhi30^1wwj5hn@xTd`4B7xkk>4 zK1%RbN})xQWZr54qLE?pJ(Zes9-%?8%a5q68$QOpVE?w6_kx-Nqok`}DJV)0p7qt= zMxt5_hT5zKp)}*+L)DGUoJBe04z}hI%k%PBK+~8@y3{aly!Z3i;~t-9JIUX!_bby0 za0m;)P#|DDk3U-3oTdx-p~XXr}j!+Fq|8f86=}Qki2^p zcqY05I`FBColI#HFhN#;ev(DJ3ZG~uqA2<|R$Ku1&tDPI-VqdyT3LF$f&69q8ul-K zE^%Pw3Qt`$$*{zWt}*{?efOPA$NC}>Yp!Zv3iDYVXxM$kZS%w0GoCa|f>}*Tkw1{H zA!>pG{~zBF)fmIGb>&T1VWoxG*7c-vCqaSnv-F`?vKDZ(MN?8&{8pA zAUZA0d^v0J6c-og%Lz4_^nZiV z>m-=6o$zyGZ~nCRurQ0VOb<=*`@z-+?p}s%f$GuL&kx)I@S_22-AO(q17v3}bJaEV zF1gTcMJ(?6dOSZs*9om@Hoo%O+=%@7%qHefj@JJEAEOp`)ADcshSd*jh^mxg8Bq?5 z0ruY>J_*5!(=|NHTtq?;s|oSs7(NwBCQSNPGWH}%j_ag+>qa>Nyg5(jQ)hG+lU(kNi@qqgI&uc+a*8NAg9M`R zDJ(*=WWSBRAdKZrLx4+_&J1zatcTpLupi^$xB-PZ-|MHu8?Z<3?n#UKqipIm%9b`E zG*_Ovs404+WWa_P*ZmSD`bF$zb<~{al6_8|@%~00DU$7e@&0PPv{)U*9Qccq7 z(*~NDGts%TXG1(2iQ6}AmCec~hsh-7j6>*bhs&l6dOn;WM?CRs1eHj@M{wWxD(^$T_scBPDj(6RWtDgAd^J}YsOnZP> zCgv68y5=Rw05Ydb!}j5KeDpz4VV+d6D$&HfoH z#9Xf!u$B~cfPeCpCck?u4txC#q37%`fto~umi#q%Rk*hjg51&iMmcew3%$ehRl2N2Dt)e!u-cL>0GgY)^yR~>8`0`nSIPlJ&;@v zxXT!;veJ=}9vH8A=l7LEf>`m)=lf=(CE?{PoO(9qXXf&gSBr9-Ht|(KpBi{drh}Bg z4m=x6l;?XJRTp_jRmj<$3=TTb5AVEb9=XqNqPV_aFOQNS&T%Exs^U;g zHKthKwSz?9*kQtXY?&iK6wjS#@rqkhxZJH@ejYJTB8BP?JR(-%)p!_S;qB1=1qxsb z<5#R`cz}k-L5Yo#-B+*Y;m=|L#5_&W^yKzA<$^uUnmMCD*~k(-HL}65;gC-wDOSy` zPZFPA68*-TThj7y!u?S4FIY@cErN$Us;fS((C>jCqOo4joO<+SxiKN?jh@e3rhb`u zBz4Q-(gZ#=t^ay9(6mp?_&m{qww;r05SKO`F47mv_?cU$~;Y?*!MsSL{ z-!Nl%W#TEN`Hv$?K2vFpf>uvhXnKG!g!>vem-Z-v^HmraNkY_989&O+hQ+ya!A5-qULnSQGW^AY?JJ4D0Cw)OXZ+mU3H#X(Qw}t)n+5$vkz8)~G4G+b^-_j==vb?SM4oXC-Efx%P07|- z3eA#0uL(QZ8^+4l%NRyPe4a{8g@%_;$S;pI`+~u4{xS6>KQ}kG`qSB(1)~YzGET1K zN%DEOYqZkwzAoE)O3i~K5>?1R|vU0#iV$K$9>4qIMsP~#KexoL(cam zSG`7g`D2~=#iiP&aV2u&P*5A;*>=GL;!=6&l!H#U#G z-_!hY&c+Ewp}cOw?w;jz=kXwsen!gvEx!*RUWBEWJu`ee;vD5==0fw^+2ZaB0r_+9 z?g3vlWzVvYghzTHT! zB&BR#=LcC{pvruT5>iOclI24~D$Z9tSQkJ<6oC4n4M?V}fwleUBw9allNq(pe@s6!V$0k;~hc z@|Evg2#c)eZ6!!t+O-IAp)qW=3}FWzm6;ls)H3$^tPdrIae%WfS<&dj7*nYBeK34< zwvX88u6oUoQQ)~gN+X*~d*9boc+U3o*FHHT>)QBrKp^F5?p2tE687Kq|jOp9iUS6C}*BcWmh#!ebggq_0zp(Ev4y?5 z%(!T=h^D1pw8ka5%qKjY*^qYFS-eQW_40PKt+J=HVGZ9%9@BcPo8EIti7#eW*`8+C z?(6`uj)PoF9?P5lStbTw5?&Q0#MG^PefrIa@YJ|PMdk2-v$jg{9;6hD&)IuYqgV8)FiNp$f-8k+ zBL9Eh+V8o5mGkA|RuPTnry5rQV|dZbt}KCnexPhPs<9^J+wB`qOf73n zEMYmV~6 zB6I#-+2f`YvZ=0LgzL7K&b<+b1u@zPgm17v)+` z0r?g?-rPgl09gW=T)J&=brysQWD)FYRKYUv#5?mAB~$J3RD+2U!7 z4->MEn<_dKu+7-)*Z#N2t?ww9epd?c`*tGj`-~KB2P1p^vSg&c3poY|+(}J72tvyw zEGWnU+dCzf4CJZtj-B*AB&9YBv8fFd05QTg3hD&p&YG<>J3Vb2SKB;s0$)=?on!3H zjU|bl&-NznUHW*@;!2*X=cpbZubmJ3-X`>)ymOC`j&=fk_~a++=3Q zEVo#k+%hvEHfEQ0d`H%4D)2mO@PZ0*@%ZH7u{g6N6tYcDd4;FpmUTTgD`jcnX^;Mb zsnv*Z+cqEICw?oNpy*GJ5xQQhi_4rM;kT-GQB~6Iw{ClTkcf4>KJi%Fi!yI( z5&}Q=mK$Pn%2ZaJm#zXQB3uny?#pE7&4i11;foG2%+)VZF^=|cG42E>#?bfVWgX`! zxr@Kg}8s9%T(!8+#}jouw6HzM24u!)0s1 zZcXf2o}ywbEQPPHiAgxI} z26(0;PuXcDnNkEp#N;r;W7Q646UOzS<2FBzo_k$Z^-&)QoU}_DF5fYLAAE9i69n1{ zHL^fLUc13rKQVzVeXZ+P;kg4*|NV1uC^CH|K8u?J$8`7pr=L3uFifJ;Qzje%mmNt85<|no;EraA z9u=8p2Q`xC{$Ht4Cn4@gjrXPHZ@W}?xAasF7OA?hkJr;^&3rJDsXT}$hng$rPOpXd zaUWtOXF-<3*KbTk*MU1AJZpZ@<_15)ay{2NjQ3Lbmic%k0u%VUTC7XLbh z^As`rnj0Up2|jK%6kq>!1@Gj+rEBy2QtiSbqLTkWB|ldo-%gb;wcWRqScM_tE>5m< zbY;|Hq&GEggc+Pk6+HaJVMa1Z6t|uhO!>%#HFL=kcg_ui%A2Wb1T{f(X-gpYJB)vW z&XrTBU5UExTH{htPW!Ofbl32_1J`6}7>MEBqoDg8gwMju!&NEbYN40H69u-ps&XwZ zkD&9CDt^#;OG;z`ZlsP%*k?k5=#_tZkr8a@d-ljP5SXzeAEezzCUqwPlVP}I`A3DQ z9X<_u6Mz-v2w=!npP|5Gjs+rwJ77i?ZvSi68RJW+q(`65yzuCW0iJ&3(mUrVOWsN0 zFHo)ImSEP5hC{JkTwY1>uB9O>4Ghply~2OZ22M*ORq|I&^7`%My0*G9yduN};Gh)D z;2lvs-f={uhDc5wod@)GK*75&y^MzsorNEWW0Rv`&GrXNPz&Jn(C}5?7~5<{RO|@H zH2+?Ip9+Ma zj;OL$G#zC6G5z%hY!ec9n~?fhyR=!&L@d)X+Yc>=e{A;s3LhVQN$v0|IcxS*#DS#m zy4cUZl{9-F*(xz$^BI9BHIkm{#R4TT#6+i!65-wY2@vwJJldgx(W(vTQs?`Q!YS5EN1Y-7|)I~&1JioJQU}&grZ*Siv>-o}eSaG!t zPZMixpb#~E=hoF0UA)q|pV54lb$~waF#mM%qHUrh+>1pN;Wr6YxR<&(>wT0HCMOB= zf%XgHz@MqR+4ouWuhR9IUbZv=!WHGrLpc|+QUj(^xQL<)h5_GJP6Ut*fE4#n< zX+?Op2(^>BKr9%3pGj|GZ2N?j{CJ>FrWE~$j87gE5BF8g{vkv5mR`n~mKD})KoUu< z3D@!{zxEUfLFdA0B_c+DNc0tzwz-nmI85OP`hm%Y4El+_5jpY5xoVV8i243Lwk`^g9dM+M#lFkGFGfyIu)FF>UA#2)I8kP(6+kam#K^0yP zJ_&GVbC1*ApYxs}LMHm>Yo~@PZKy(s>5p$9+}L%tb~fnl65&x8bZ~z-=wGi14;vo^ z7Xr&%u)TOx8%B+@kM6T4#G$C+(s7_<5721vts;-ty2L=JCjiVQ4c_Bj2z40tK3f#g z2^<7a+!F+f+kdIRb!6~j8Fk@y{jQ0eH2HWOYw)sD?-*Bu!JFXLxbY4dyp#D7`xrE4 zNFigzivFE1gMc_tMmr#KUoK18_ z5)6E7*O3GtK0%6=;D9g?mOK*P<@=Wr{P2(1enepqvv?N3@^(I7G_UN^#roAVB8(MI zC=3EvT>}b(EY#cyvBx0884%9wtaqMF8Nu^VF#_I@2L;mWwQC9KU^K*MZyVmk8tWga zW8U`ZV62^UpDZwevHqeEsfazxX*Te(4LLFN9B0pQoYiL=c$AlT8IW9Py86#ED*+T0 zX`gdCnFn`WQh(1gO9;K$W^{qfYLYq*MWdFROcE2^*;s^V);_hFFWkXGdwIQSe({wh zWBY={oT`84i4>IKFq)v?=pYpWSwB4oZ$2!HmkJp+6O+UW{?+Kqe<=2FaQVQTn818k z3>YRRB7%z-ZewFw@3&rArzrwq5-aK^tcrZiQ4x6^g2uJd+CO{AQJ_?*5)msZtE?N~7n3C<3wy{R zNB@Y&f0T~=ataQ+)EI6cH`Hz8*#9WXtvO?9&}% z(t*|l46*Y8K}d`fKx3Y+?ETtqPKI4G>MpPa!+sn%X|s^KS|8Ls^9tB=ttv>aEWiKt zO&pEHbyW-WkX12jK%(-O(+#yWe|3mOW!>#NA1x(!Tp7yB9Ar`XRdF{5F<=--^jka7 z-UrUe>|U(!f})c|EQ(xw9ru23UL0{s=~;dO{;4WxqjtgCc!%*+7&L@E;TmWMHCmpX zVkSv?N`CSN=06&9kA`>L{-qp3HC;Ppzup6HnSv+ zDz!iJD@g&Qm)dkP9c7lON2GQ35ktWQ43zyq5OfOWXRA?7`s&x`hcwZqF(8>sh8na9 zv+p9?*p(8fG(#^G_*)TE5$xn66~6q2bqu--%O)j#liss;)`5d6<^6j&>IZlhw}v&= z(ekpl56=~NEc7B~(=JrN-8`1roz96FREW8_5W-AaRTcJy!%3@Wqvhnq=S+GJu)=3u!~VJJ22} zR8;y;k+x(jHqzejcfg7OVUXsezyb4I@X$(YgFYRQrCh}gQ|`FOa$OVZ6PA=GU3vlV zahG3(DH|)!tQvUjk&DmiC+icRxs;XXZc8nfa=N`~RDrh!ec<>eK0IC+5D-KLR!7qE};nuDoVW=9R$VjpvoU03+ztga_ORu+|Y*=HJpWZ6jbtvN9zTi z!R8Oyil*IS#E`O%*ij<+%1vJ0lwE*sXQGkmD_Bmq{gCh`;ynOdfpW>@*6S@Gud1-5 z_?aKCgEjzmC!9EkCHHNkQ0)W`k_=J`S!Bq0sz1o9{;^hs2^a`FAR-;|fv{tPtrZiC z%?xEVE}2IlHwx0u>>bdL4{nN zZIr`1cRa+}PcaV7`k{LQnZTV-(e-rKqQ-lq>_f7dOP%ion7?YtWQ#uAzV&urp6>pa z*Y~5qfM?(fYZ)2&`7&{K%%w!K0x)$D@Jn8;zI019>BIn{L*Sh43=P$QLvEiScu9TD(7YLF;C`sNd0#6-x-u<%z z1k<7nk1&rW7Q@Cn5GTRN(XoG7>2dIyDc^YXl$4a%1ACNUL;%kJ`&p7uO#R?|DbEMr zR0g$_YyfHR9<%V<2eDZ}!9tZ$eOM7i(tji5F2IBp$hgRS#4O)%*G}|H!q4= zjzNO&lFqZ@gA#>jaWnggg0~uqXCadL_v2X~d8YrE*Y{tPy|7=c#0tN4Dg+DN7>ASk zkf!B+Uy`xgPt!DgCLu&%_k|FFUmB%p5Hnz@eF8Tjy6uay@Or9dI5bevrNIXw>c82*5~D!wfB;rGLxS+)|Ad+JaG_lI^1X3U0FSwSrz8TKnI6vyJ{m_15${7n zDiv;Zs0pg?ZXz&^A_Q3`uA|f8H1LN;f?}hD|4!(ub{iGc)NAFlSFu68*uN9A{a+W< zbG2kJSyuT$QCSVx(l3-)y9v-f~3*i+QhzqOyn^|;79hA4iDTYG#R4I?Dmw4cE0h?*qs zR8!-F2P(XLe2%gwG9H6MF7L^HJbCC6?VDPo!BA7wd(i|T#)(QY-Yp1 z*4b`b$;nr4@>QHYqqR{Q*7|1l{9m(>i{>qPtDdA2K(a&hX*1Oj!C2;O?hfe(yl;mj z;Z!K)_J#k4w6_k+a!dP$1yRDF1SCX4LP8Xzlu{`LM3in21f)blKw42kT2wkz6oH$R z4nev@>5v9NT4{LCb)$Rs%ri63`+nbFa~!kxzPYY-t#z(5eh~>Xm!!`@%P@1{M)htl zZ-7I)0zeLUR+zF?rihrZCuU$2Z|3)jDTPMYh`CYrG}U@^Q~szusBA#zrOt@HBq;!n zbT8AB62O>U4mcrv0;0bdDtJ0&8#(Y^(ksxnkJx~2bS>&hO7%Hp2IHxHpKUN!WR z+Sx0MqXr!BKu9fAh|GbWDXTKiXTMu}d9w_IJEz^J{7auca!+dz7lcr$|8bL&&_TTw zf|rDViK~94cI(#dQhf2rKJB4-ud)YV*BJP4U0h9B`BfRk;3zM##Ul?nAUof0^YE67 z@a4t;c<=!?Q}-wxe3!|~UYGtveA^h~c*ZE(bM$9=kCE{O{mGcWp%x%LUfX`ErKvh-h)kpbrmkft5zkxqS(#EWCmS*({yqI7@ zWypKz9Z5^QaM&xeC~zC?F_MPKClW>zD0nn~Bz`@8;4A02Gfi*O{fiUAf6f6zD*^oF zH!?Tzl#4MKjDVp-sXFGe6B%x9Z;0L^MqEurg<2#$Jp8Ibq8@>e9EcfF(WnbWB^{sG z2m1uy%Y)Dgh(0zK#nhLBtX=+K0rte~h6&Ghd7GGKd$%sW$Gp%RJg2o`Jbfg)RiFn? zQtMCtC-F@U)>+nD2-Ee6BK|ZEsnhNWI`asV4`M2VIVH zb1kr}A&uU2PeJaV9kq*Ty(2U%!wQX;(vjWZ4h|GCY0g%`4h8?!rCzPQdOsJrxYj@?|>!Eb@&XHH}Lq zD6(xE?a%GEPP|ApI-ICrC3VF7uLJ4@yYAF`lav6mV+h8B zuXFWA%k?;pc=N9XL58;XVmCpRIGg;2h_?hi=vYYF9mK=)V}x}%%raMZ9-dqN>B&j7 z2cRWl8>405fcDy$>KB-F?5(-yDL86Zy_^L$Rx~7tnS6p{1GK9fHb9MmA(2mj;l^Re z_5diOm;}e|&V?-@1EpY?G|~FoU0z|`$-4xh_$^agEPDxz#Xf>1WYr)pJQLpBOCjx0sr||`Q(^3 zAQ_k3Hr9HuyG%noL#DqYA!#Bn5q}(R#Ht%3vGNd3o9xzXkne>AG(x%xDDM2HFSI#i z(z(Q8zOxZm?x=nkXNjJ)Y)Z=Z*HHY9+vLkE+Zl!P75rSrMx`D`6GvaG$Nt{n?or_(N{Vtn1?^%HHaQhpR>(vJ9i( zG~J_TpzZsG1yc5BK3)hu2(oqNqHB1OqjGJQ`TA`s$6oR-5>QO_K5`{$B&-ofji2k zoJY_#q2wh+!%ImU20ew?V@?|iNUZA1W1=hA*c~qqo5a}5f9f1|Ba;rl`zvj^iKu>l zUg1o)_|sSFhn9*@FYhg8p`bDS%}_);r!MWi!I3}r z^HoUxLh7%iAztHIT}7{LpCmb`{aWk&h>%12FDgKc-Y}%pe-pz_C$9&T;Ev3(Y#q3a2dk}u#S&jI| zo-tz~@tNEZEvt{UdEV(`_~1D1m?)F;tF7UlS;*L0uBR^MAh8}}uhDbZ&@X$$^Zi62 z!ar39oz!bEcyvS{7}{^LAXRA;uA=H2&;rOzt|;r$0{NH=D$p0zdZ*{QYziE~rBC~b zEAJ@YIw3_7l(b)A1W!o6PDc~mrfn

N=xyPsYohl=p3<((q+G%vJIOv3P!8Os5@#K;+CNsy_0gvcKsMd@8v+9rlT z&^*5w{N=DZu}Cx(+RI_cRrP}16oYli&lgxNe~`Ja1zljSFjj?7TI*t^xw2ii^|_+? zv1feE!5{%B|78vYK5GFDXNtE0xbIr93o{0;0A|$SHq!<$Y}mlXI09KTN-uQf;vYWF zfH3(Ean9e9lhO<~GQ-sqMi(1?Jxesv)(4jlX0XBlkccHN^{dD6K1@929+PL7g?j_A@%mQ?g5vi>e~vyDNxS?cF)&g9EASMnmi z@X`KkX#W+OV3~E`sl%Tv1_UQ()EP{o_O60*$|(ciV}8S$!n%#&JkRh~shEQWJ00!` z6b`=LJ$aMy1YDh__h7fIiCdkC%vd;`y;$|P!5-7zU=LCa)UJC>Tl$OotG1dWYvIyG zaOG48Uyn4$m_1&8bo4^4^79l4H*oeo-nJpWyB*TEh+j%wrSV88piorqYO#^#F#I~ zgm>ncahAlWRMgjA4X+vbL#E9gnllRQds6Ew{`CUCI(=mu7%S z8!MG8%>Ii1P?`}MV>70C&`^;MuXdBpSiLgDW+g-wE_Aa1I)@shD=zTG4yLGU@~Djy zXH)e-IIw523x~_ z-ELbD^Q(e{3MZs)IjQ_FAuIdsX?Oq3M-M?88h6a~jA4eX)-OZrXviBzK`<{F2z;Ti zS@wo1&m|Z>6kyJgx>h_UOuFX!Yqlo~q*SA9o94mBStCQ=vv{$ZHdN174CXqvx*M;9 z#5l}TGoLu^pL%sW@SMqq2h;6RD@T|qnvwP;u#Ae#vO#zCBOWg4HV90I0ADEM*Xm4K zUaTp<%TB};us&e$!~G$SELhOlTzQe;cHDmo&*Nh%45=wR|2g{fmF6l1mSL(6KLoxN zY(<&FlyC14ubTKma`_@LARSP3WC#+phnesrkmT>;XGKnvk|1-*0feel#;-*WtU;?? z2Jv0^CzED0rr}cHFr0^31Fv}}S9Z)MVp4&t%5#|e$(_mnh6`%+9%fha`~k@iFJeE1 z&*W?%YbWO@`bdX!Kt*29I9#Ri#nO8C6hv{}ZHkVdv|t&EptHXUOm7``cclDXXW)pV zw2wIu<3uW@OW`-Xap{{O#>GG+zwDT2@hh>!g}hg81^BpE$r$EsR}4aoSljbZ+NTpl z@{0v=#uiER_eSrM@(gtab1*YIXP8gajpDr?(5}?0N1=63?fDSwC7**l@YnTCM3Umj z0R`rX_F|{yTGOhpilK|91hM`CQk14Ne;VHm{BZ8yuqr3>o;P<2=Xbvq{_Hp{HA)6W zv&Iq)(jgmsNO3*d7wUn#$CSR0G4{4hBjpIK4J0KUva`U1h%y(D&*`HANXRZ~^82qugKCg^cXxS*p59`L8Z z13t9{CE7U6$M zsT z6j^Y9#{5qjAS;S9)Txk6>@#{48eh^#*$nwz(}7=5b+4Zv(Q?V{n!t~pCfw;+6X~O7 zeop5|;rzxMklt!VVg1kfylj4u{TPTn11=D#@uaxw9f4Y8O&19E9FZLyi9*8_jFljaEi|gqbyXQQKLkM~Rwgp&=0!S>D!2VYQX+;ae03FM> zQyE8VL3h8FaS4Xbb)W>y1-65Hs}6Jh8mPR`fJlCdq>WAf6$1i6Bo87j=BB71XD}YP z?go$xj<$hoe5t?Vh~p)OmBPA1L_$hOJvScP>6EFestOc-_QbdbU7QmtSR3&-FLDLl zY;5Ka^ek=7Tnmjr;SkYBKJ?U@G}nbuF}TklWXY&{OBQyDjNi*@R|e=LTsgM5XGBlK z3{h6q?Qx)t{l~3DeKhh;9n~)Nahofcq%qh8+k!A8czy~0gpuS=1Xw_Zu)>fbj|X0y zJL|5d7Y2sZBASO7FeY|d z8-6O4r;AFcrl)G@CBHOp$6heO#`oJpmeh!0sTmDBXwm-TP1h8^}x6v0-idJBhcLWaJS)j7;mTpZfOh< zKp{|&_qedDbhQ>PcR*5aRk;B8nH#?b9_S%Ibz^kj-wqU(1}goT+mk@?I*t6l;Xl;C zly2O`dSG{sA!qg}r#Vg1^ce?=F_kxQ;_juweMoZrP7J26+1y)%$@!K>#Zb01YH8c3 z8*y(g<{g7@`?hstP#&3<8FkwLI5$HfKBQi~Pp3_H8ZLutCY0mkO4YA3$Xvlg=R8w^ zE=S@_loJ%PnLRJI!9FGo6w`)^r+>l!L=BlA*wB6W!?@DHH5X{GDV9%&Pg?c1%MBg= z;%@%+BGsSH3Q5LQ2y9^r7tJ{7aW7RBxSbSr&Pf)ro+6T5xs0PTpU0T!4n@tK2dp~y zC*i%8ngoYl=|t}!tENZ9Vx}Ble?CgOIA5F%`VXH8zHvO8IjY2wXwF|q^v&5Nbnft5 znKRRTAOTT23l!Li!wzZAK#V-F1SwO5&YPS#z!tpywLcBYj;Nl~M8Ha-d-HOIM1QBY ziimQ$PKzrb4pPmn#_4k)PcC_r@@ykCLHbWguoOnwtbgTz=1m2;v4|gOn?0?p=%iAM zg9sp`8h?e9N4abEBzhH=GA2_9Kt{|KV;7oZHK3U!AHihVn{!S@NK^O`oVwV*P8~k3 z5+=&!+h`Fn$BW5B;~dXmx^kW)7GFN+f~fn$RTtHO@o;+2H#M{eRAx7Tyf^v=1lF@m z+n8?IU`~p}0BXz(MMM6RmsLo$4lIH6IrX9oxSoYCH(ykQ8ig)PA5sbA({O< z;n!ft{BLPEx?xk?p8YWSue zzl|r~5Cg5*2-#mZI!$R>?tuJ4gx~_0CY?g8WYQKM@a60Hm6kVncM$K3pOU=%k#^9xu#&dr{ELyD&B!QzSmUp_$VBRdD-kikqxT z*Q|38CfQz%T_?yL;_Ao5qTJUlclir3ZT2PUUBQf3-aK5L^O-6=dT@&a9ED|$p5Us# z&P?A3jiYBn%E*(OmR zs0V0b!DAJ`&gepvy!2_@{?@UbJ0F`Q&JtHHRm54^nsKGmyKmWK4{Shq?f0{W=c_Gpz0l3J7rB$`o<$`+1+E zxgqm)a`DZ!P3Vs#TWY3M>;gP9YPo@yyzOVS14aHL?!J#BTZlOyJ}z_8HOEY`%4UG{ zS_?0N@%6A=YdPN)N5!SCA9%IhygS3-j``ZRLWq-Zpih?t+1{->%&)1pHGIkOfj+v| zSr?wQ;6>6*if!sn(Q;)SvvlDGaG`T@WxlvAJUcJdeL7S#1qz&&!hb`Kye;GRct%vY9@~<9(QSd(7 zU+I_r2|gIHPm2@DiT?hY4N$tMAEdcrdkL734=$ZeZyCpC!7W#gVJ`kQqap#r1r{!^Hk-vua%JBP=QUZkz zfY7Ki#?cXN!PcBpSy3-KB(aZwtJKi^KB_ryE4Dx>`8YCE!hjX(E&(*n7;rc~16}p# zZO)$r)wC92wWb@tZEGdsPeVUDlIeN>kP167-ZF@nT$qezGf}Y-#pe0eHX5IFO34}K zN!wgoY__tmzzZCe(Od-e^ba-VRs4`*h#}NLwTX!6TW_@VAzuGx>2;1Nez=F3jGTG9 zdld8Sfzk@KRFqjm${+M|Di@vEavm3(69FzP)+QZ^`dJZ%*0WFtW$njR0GUTdDHH+J z84!f=K#FMvA1qkgfn&LCnQx8%B<1xWcKO!DK_G4x1YSv-I#g{2NggFF-G%!CD}54V zol$EmGY}ewU?7>@qII= z3tmLlr$|V~oxArsLYWhK1G7_{LP{^+3bS) zO2=5O>e(TvJUd9A=MR&&ndOF_;;TXLC+oO%o!< zw7r&j*&)dhYsQfd?J5wU2m|nDa_2kOUp+FtAI;eiB-jN4`F%*SBZ;<8ICNjKDqfWC zfkt&>2}+r@L8M^mXO~_Bh&{2Pt~2QYyZe~5)&D=pEOFkCRZ9`%W5s;E4OS(gLISyA{IGEgCIV!$&ucI2& z2L{L=DP8!RHfJ&Tz*iizEj&)p#TupV+cMA z$w8UYVc3R8uf%$K%)oijeyl(2oNK5Tiq7{N#i3-VoI?H18vMqdN&pm04)@=oVfcR; z-LS#n7V2t{G%q`y4_8BC0xifGbqRuU{a9U?F#wkNzm7&(Wcl{Ym4F}2eZW}PBJ0M{ znxL0zx=vMg!gs&0E1lbc)+kxpoIC8+#(8iQ-K~c&$6aW=g)GD*SAp5C3`vx*FdU-* z^}#ZCciVZ$&&^6vEuF;c3U*FNQfz%_cZY4reYeEo<5$%H)@!$Rq{ECsv(^X>oA6GC ztN_*Y02&rr)!@(2q54pQXJVF#A>8SZMFU<9G~j<{1=nCKDpXv)KB3u` z`m#kU=jG)O$;I{JGq}^e5`2?T{1Y7#cf(ne3~w>0h(RCXWt{x+bAO(a;60rR-7ecUH9#ltmzBDgMyAH7lkyb^AO>!`paoN7vA6>TaebvPd6Uz$a|tBG zSx}@lRCpf>kd5U@1d77oeQ>FJmG;!^Ogc1CPPmtUTlei~+TVH25I%fA^LKMBE zQMf9ZiVFAkhW(-D4AD$_BDr8JMg`?YJ_tTDl6+7rC&h!_qC z33r+8JYe(Lk;)K+uP@5!GXjf9WCFP)C$^Nr0C2*>u4Khx1;(dc1T)Ulxj*hcRn43c zSVDzG4{s^NxuveM9hG0OX42=*k6Q~Lb~=cQfeYW3)XRIO$ItaDKyVd9#a!RPSC-|d zcpL&i!x^j!#engw|5K0Vj`c2R!LTErEa=KViM=Oy>A&5-- zkgKxF!i{}t%??1yYgmx7`?qgbkK>j{J@&T5`#NpVJE5_2OW`OsQHOx?O#oCHNZb5u zOO{%MTXuVX5EPo}V4K{95%%g7f;daDyYn?Mwkt2Mqd)MBR<%YJ+R@V8c6$?G681+D z2KnO$>+K=CFyVQQT>6EC~;umn2p~wUb@b5@W8L zCZJXx&8dm2QJ0eHX3EezoA5J-q_$Vcn(Iu4tX!v|$=@atr$YalNEkhra6@|Jzrs9z z2D>74^WV9RBd&(}YdqY-_QVkpm*!&~mnoMx;;wXVakJv**SMoRygFk+d}uMl1)g|3 zd$jHu6udkN6;Qdt4&a!yJQ^zw0y}=U;p08%A~S0G%RH!F2GzMmQ^g4W=t{pRvF2jR0UTGPsK=)Bw-? zdg`~lg%DLQE2nDfU+f-|_i_x}=Eo?Ee-eFYc;sjMp=qGWG)=l|ZB08N&FOtXgg5b_ z{3tW^7sotv8c*6RcuFC?o-{}hI%tGv1Ch&(#rtWXkuF3aEWOyMU!UMaVZN{6px%_D zH5qi%h43K{ zR|VOa)88fwSAS2MvaZ9}q&t=QI=<9y$h(r@~%Z_3x{btjtHCmxQm+H277?4OY>C7mbbl!|BB8KO^xypkZJvvHCA+q5Q?!kmRmN{CB=zNo-9E0!rXO&kO z_mHp|F1!s@qQ{Zz2&8*Ky&rcjl4R{S5Otriqv%;qug+B=?yV~;1Ge4PE1nlKEuO(Ab6OmJ5T3%-N%E6; zzAWb!7ng7*cxaI5<2{Jsp$^F|T_$S9? zy~JGagh&W4KTVI;A2v5yY(QcUw8zXonsbqlX@(tM>lx3ng{6(dTfplSu8^+F30 z{X~2d?ozf<^h_dMvJp^o4} zHIbY)HLs6PYUd;$F9KA;UYy4%BRroYt)#@;ofP9|TW0$Se|{;Yb-(+2=~c$8wQsyQ zJ3&$YN4d0{l`Z5VAvtU(jd!0!NBShwVb~Lk<-2L zTz>&7`e_ys+$0p>LV1_$P|^kvKrJ!Ia%@|GGs+3M=(B$Khf9!|)q&!l`sOSWafXC# zVz5b|Pd-p+gkb&i$sGpw?HRpsm<*jaEY>Y|MZ8VY#fLw?8_%{A1&;<^!~}Mql#w3| zlsP8`AdPblwn%sqyGPx~TlxL`#tKVQQ&Zp6_s`#ZIIUwq;r#8?*D2j6wD0JcKJD7r zmV0<#@%263j93k4P8}bk0RU7Nlb0xVmGq+|qHPDj#@7f02g3n&g}iIWG}R#cyjTFb zrf+3}=&|L-Ek#k5?akGfAS5X93$!{5K%a9A6~d60swG{I;XuF|y{Dt#v zHD#v=7u@^lT-8rS_^$l80Ozuc`LQdo-^i|t;2qyvH(+ksVxmNxvT~res`?4j!cWlv zJ%TH@a7q!z5qdcsAgG&`ta|diX)y9AM@33Q^Tm1X&3vl@F^leu3*l3UtxP)bbH;sl zGY--5Cw5@Kr3n9$$T~DZB=f9^=Vk^=il%5)^jsFb-?w5$HmOab8IhoKCF%P$rvV$_7g55)wSALM8#B&E1ASZ{n^CW5lT@Z12hA6vO7- zL`Y0|0|W6g)3%e4eeP6}DKasEsR1cC2w}516M{E*is*Qtj zM``ivcPmIfH|Dzq{E~rnox*?Kad} zY8*nE$JqzApu65k?QNrDQ~g>!4q~2qUjgx-n3qR*Om*~oi}L}MsQ`@@nyMe&hB{_I zJ!^Ng5yYz?0mVL$CX{DgOr3`t-Zkj#jyJNBpkX|Mz41Io@kU~2?BsrCH(!v0iRT&o z6L!Ha8`JM5wrmC*bXxG}09=+#8F$_+RJdUaVAjt8BX|ksr2I}0yvG&YH^LfYMYSUN z%~jO{fH00P$&Sz-D!S)etVAkkA<%O+_~>d<^e2ACi>vU{Lq~! zOL>;f$AskaWj4BySzC*AeeqES9B_-OJn=u{fa3`8CdE?J2bHUwuDE4`W*76qUjkrS zf&5$}4HuoSorH^jrRuQ%ZS;nGzs)i{y9p~ryAUk*KFCwlDF_ZI&&+_lI2&pZCDX_8 znFPYjzdZUWrmM#!jvF-&lV!UsyC3wLvE6FgflkpEu{fSYn0)u4rpuQdG?nIcT=-_3 zF9w?1)q(LR29`!FUc&YS11i0bCAJY$|4fGdbBTBZ2x3O~2#9v-G8TyD;W3YfhJG3U`iNzO z@6}`VG%zO7Fd|nM9V({t0_Jc+H6I2RKqug^!@4Y%Iec4pG|Ux#6`+ENCNOLgJ;XkT z-7KGY@!G|(Tev+{gU_02221yd@)-SHdVVs%U8k4?5%KHV=XoTnXsU+C%5y?NT7`vq z6o=qBR=P{qVQE4C?+y7ce>LRa_)2`S9Y6<_oK-#;8vC!0z5vj_HiEPuNOnm+rfBYh z6Ljmw;pm1!_fZQ0d8XT5*YK_ah~qmiG|zhso}Qqo+(~!emUG)#H|c>^oza)~N=qQ! ztu)abGh_5BF;GVMdXecZVYh|fg8)#PBfrt6ogV+ac)_G=EmPVCIGE&5V6ma%zZ`!a zIKFf|>d#+X?8l0Z_4o-6zPRLZ_03^Zk-dyPnTh15_B$0hKoh(GrFvOV>*f1=2hj6K z7|sdwVa6-T6;oe!0n~#Nx~8#6Ol8n{hTH7xhwxO;5^m_%dgkK>o#T2420REVjAjO4 zp|^h>EF)%&qW|49|0KVWS$yl=b!n0G)KojnNO3}brZnSgS75?!g0h`W4APKbRL_r1 z>wb9(BGRepjt3k-jC#W)e|+zlF%n3Mc1=6X0I(tiQ7!=Z?Q(k>u<~!;pVhgK=+?0p6SWGp(pfl=@&1#LDOcu{q>kx{!O`)L*JK|!#(GeHWu6Swy5 zLs@At8%d4!yNZ0(H!1OHU70oXoW1FO(};PI>~M3@88BHWAEQms_MVF;137zfAli%p z^h)6Ctd>Ql_qtPS{3TwuEl1`=pssXgL8gktiB2O}k+$>nTdcQ46_p-W$-~tbkd4Ng>7Nb>K{M3yY{q4%ndk4A>4WWHxClib0L)%NcLKk zvjssJuss?uS--KiPS($!p1Y8vU~pmbFJycwS*w$%CB@_s9Q^=8etuIf1JI19z=_|K zM>W7wG~%l$P>o1Ap?MWc#K_d-tUn}WN0Fz}y@N*cG4`G3`ifyx*(@!ohNHvz zJ`i%h`VJnYGnHIi9F!RVpTZJnypi$i&E9|Ai(7_#bKpq+r*!AK}Tx- zh(PzJm9N1*7~FLj?y-T${M*!$U%g491MSM*4=8@ANU9~cLP{p+e(QR9?xNDfW$i`w zDtySttK8;(Q^kxzJTU3XvWgwllW(hi`L6-EV#pYj85-Kk1%TW*_+Pk0l?vGVPiLW^ zEPvv{KPd+yTr`WOfrMn5!J?;%h=$S-l;}JTX4IO}h2nLdl`fJ}uJH5tiC@vqbmPk++EUdXbiJ@xw>_{HUL z3pZ%HE(p9$_Ut*09BjDsUq#&orK+8>xbJw?Yuyl6YMw*}wqJwPAuZ&y752Yoe}OV| zn5J2MsF`exU`A+6ApibFw>XyvL*OK57f7_jE%OFCqc80M7|A!*+YLFq08ZHmO+i6S z%yt)&UKU`9)>`@CIGkvSjUaez`t3}Qik7v9O zQAMUh>*V~@%h=mk?};acy(hIf>Srhy3#*F2N?;Z2S5fB(`Fy12kN8b+zLEX*@DCPX zx4m>F0&z8B1L%oNYoF@)$Rr&4CnbbvHWDmiVrD)|)pAfhUj4ODT=j8vT%4r>JoSDe z&tQ}&-?2&|vZ-~bxpjOg7bDQ+-( zt3CYpw5~ylfD&WE`HKZXutCfwh6n;EQn$f2enPaI+exsE-(+sein6Il(<74G2PeweW`kRb9`Q1Gkcc@WYVVn)@ z*Hh3$6lPPodsmW!L-K+{&WN^YRI2(V=HE@IT>?Cc$#vX9cU|d8QgH3=Zoj_;_1IcO z$886!xJ!1_wxcc)WCk})ZLC=lZJ&2m2uTt$z@!pr`wylZmDT)}Vg3pdV*mW(o_6E} z9L*nlwWVw^|8HWiHl*lgIn$BdN(@{PCE$u+BlrZMk#iNBfyt{GvZE50 zR{xcWe;?0_yEj=VNQ@I8QD8DP0_V4;CNdVZ5wA#^9Q(KO02!#BP}fRo3nYLC*7z4b zhEarsTUEjR8>BIO&7*Y$o$NrSf9VMFC|FWGJNl3pm~n9bCJjS=cTXB-A096d9GcV4 z7NPmWea^eT$t)VD;tib`;*o}>KLOcl1pl=W#!vhFp%vhN7CQTYXabpEKH2{l!G+)h zxE!x$-uC6psI1vi9?zd(Ha~{?a0c+422+b%c-KIqykXHx%B47$fkWL!UHNocSGXyL8Bb1AaShM~xS~(W8s^yf0P2)dnd7^cp#Ve*YS{MVCmZyz2WtQ2VLd&Fz)S-} zMKL+;!*2fEu9A?`A2tB0^BD9WVRd7q>D!*{!jmGeqbEqVjErGVY{g?4&ki$s-~SWX ziPa0rwwQk>K5D|kx>mH|C=(TFP3~7Z} z9D4G$|HhJzCDU)-;m^>#q^9z5rJ-FQC*!AG>o-bt7am6L8>b5~r(2(fq5y+;y&^cng%LRa1&kl&r< z#qWpcst`PTyxH}ysA84%vO{Oqr~{!{E#xK=g9B%dnt=BV1iCh?6rJ`j3j-4N>0;IG^&urf@a(wGPTWh%G-$1Ff5|9dgtadC-_{!Kz{jlcurweX@JZl8ZVm`2!n?dB z-7D8Vew~Q6(WMa|n!6J)q9vLAgLpmq$J(fCF;??w@eWj6o8bzh7XkDCiD_eCaTfG=#5a&9$`LmEmaWyu3RdfDh^Mm^*e^q2t%_LY0S7QU~5MWZ(is@RYY4#G;p=IG#)X&FP9{9&#W+ zkO>EHAm9QAg1a_Y2Ld$g36=(&VZNP*2HH(J zppo8v-D47@n|{$%iCsi(9a8+%3V6zbPYZ+lqMo&}=+M(4me|u%cT=+NbG4(~VNFZO=$k#O(zMDL4wd zlJ*sNA@$cnLdim!V_XUOEnLfGe=GK*aKZ8Bmd$m)F(koVTA4q12hMR5q~Kiy3rK7I zMaLRBlD*N-Z%?@bjgk{YtQc&g#G?bw!Y*OD>QeYip54=&%PbQaKMyd+pnoVUf|EX? zy{o0GYb9w*0~$PlJU#B*Z%zx(o$I3?)PQ|%on~v7Wn{4C&NW@91kW9KkTMT~z&)&; zFJ}KUN__0&pN2KdwQPE(Gq5sh5T zj^n?!W%#5j0?I<@m7#S2b!FY$b2p;_DpG?yPxfr9`F?k@;!R<7rI;JLasGPD5y?*} zLOh(DDGtpA4DHf6*+8+SfB39AmEule%cLgkx?o>uA>pq zUa0*<{ab?i1_K}wam&Z=(OTGgRI;G=r(=sZi8jB5qeEL!Fp3l8`!H3>kc_>t5ma!a z$yv{MdGNsd-#l(GEO)KV_ci?Ni6dNA>oQ=KDE?w)PrsamAQV2>Jv#$hIxS}ezSpP4 zu{L)YNYbIz%ITwIoV^P8W^b2!NLcqK2S%(&~zUN6w>#ug8j>V^k~xW zVM;r}o0cAqeagVqQ)$5YAOwn?exo%5=y@&J;+K=uG<5r3fKz6WYaM6-u@q!JXtQ1F zsd_&WmWKUWmQ4!KFo6B51GLjakXvdVKPLZM0My6FigTu9p)1X}L|BV+vc93ADJXB; zBGE(P6~j%9(>HG>KK!vU0^ZMhXWOwh;xhz}u<;C(qqV5$57&D_kf&p?xoQEMI+Kv% z$pr~)-0(bK?M(u47iOb-LQ+g(?F5S^m+{rqPAV@g(4k4 z9_;Rrd9JTd_V*fI%An_X!LW+KXBo zzP@Rf^)Nm+e67qY3=x&f(}%#ZDCfQU^(rUHOZwds1PjfqB&l{Zq@XXzv~V~|7W<`q zwIoY-Mu83vSS2W= zEhG9h&p8a%vGovonc>4YK^}ewK*c%rgS4U@g|mcNxidRMh8-drd@{iuRAS?ZeHk9k zn7G;aa&8uRYL~v!R~m+^xT42~4R47Bf)CR{f0yj1GhvdbVrr}I@`Ctq>~TO8HX`rC zO(0wN0Cs9Cz|*THz(2oBkU_r$3yb#Tg1-mRM4>_v+pEp5JljA{gfLNgTC+Pc0FFrj ziThIzcl1fP42Jb|+rl2gF&XebO}{P=pTs2IZV$kMT?wamI@#exyB-?E>n+de5#Hn2 z6$Tv%p3|ojMv9NW>Zdh_LeCJ4%hE4-xUjMy|MpnWvtP&x2pIv&yJ&OU=Rf}Km#~k` zFpO8cti{R6d5ATkFW;O$mV2`7!~29L%7;V;Iho+xB-E6kbK}SSjc{T^uasStPHxTt zl=zRW8b%rgL8c;eatJKKQAl!VKBp^!LK2^q`frPHzCD!9DL;uq_HS9EXQJD{#C-g4 zl_0FT0PY3xBzGLSJd1a|{kiN0LEI>Kk`c~=lF#}qzSM??gcbHU+BO`+T!V@9${Uk? zJ0>gut)U>L!d_MT@RpcvL^;m+9yp_H`S9!)#q1B_5)4iZo{N4&Hy^J=;QCv-h zcV1Zn6pan__0g1s#o4`I)hHw{n~}3Z6k02cahYr`JzVEpOZ5zE*&a`WGw-iDNL71x zhgKU1Lk{poviL^))?zE+Ud#6eH;E9w=JeBwJz?3>OIlmXf zUnmB&@}hwOJG?#+q3|J&Mh>VIs{+1wGP;_P;4xCrsPz8llws}RimyCX-QfYS|~ z_#8z4(5oJP%SP2F(m$intUdUQ5;V(%)k{~7dfK5IiYDV*kB0=Z=YqR1>o11Pngm#u ztDj6w^baP;KgBxvNWP1tS9@&)^p#zhT0X*eAR}~~jF^d51N4|A-r8YLS-Agv@h(0( z2>xkDQLu@pM8D6T0px9RgvDiD&HLb*j$fJU-Y^8SOMIMvK%r^C^kcn7*Rrr24PI<~UN9>4oCsU_W$oGfRHQ$=4-dy z%QF<)$|djBG9x``QM&T-UC(5xR^%|5}F6SyJj=XV_nzPYL$FMniCWyyGXa=Mqln z$#XsAZBziHN=eJr3@<{n5ev{>0jx`2E$FWx5AMXisa)$J-7{rd_orJE9u+tMqWwNx zZgl_`8bc&apwCqJEGmjDK1MnacUoe(k=+1HlXP<`wxMAi4725WFm^P~wI~BP*jU9O zp63W+r1|kK3%6G8bLdD;==jFAP~qbSOg|=M3J+&uVJYm&;JK1XzqFUAJCRL+-S+yk z9YjF{1bx%8mHQd2ycBeCn;%|ZFtKxn_>l$1ETM4!1d+oTyWUpOnGaQwoD>PAP0O8G z;!uc(!FJPqgiv!{e@x1@cVS54uE!G2`A(tH0BPIq*0N#*j6qgrdu~Yw(Q~8O(1{2A zN}ZbK+*r;FqL?8%6|eh_3%pmL1#la%%rC$#+V#AUzn`VXf=~glu69=i9ptbAVc`{cE$y#Rn9ta&mGk@S8Iio*dx)o)fukDuIq#$! z-9U=JX&%A*dkp=#CG(z@0RiRN)D95OkcZPx|c<34uVV zZBdWOfS)&%NQdu$yWT$B4VDiEpP$sh)X$uw9CZEdI~op9Y3n;2YAd)BH7A)E*T><2 zyfP-Tb%OBPcvNECHl~3JnDXj`>`H?g;3h)=GS@tNGf^+K*L`=p>1C`{*|tMAxoXi2w<0Rd+mX5D1kLXjVo6ZJ@O8>kq373%;2vvgo}f)AM@ zX-84}Q*8V4i#c5cUy->Ep3aC^-V^=?AUx9fT@UTg+%z~rDr!LJQySrTK&Ys@0%w7`^$x@Ddq|n zD0u2&k6KAC*^#;e@GcAxctc5dl|UpDh-t3PURN3Q=rV+!eT)RV3MjmF2`ZyJ=GYVC z7J*E3{_<+_yI2myw@E&#Myey;@>A%jrKUF~ZWyRj{vxnw6aF`Q(X`wN6g>h+5dAT- z#laHMDRWHQE}tn~GwjH7tNQ?6c#VyY z*Qzv{=IK-+2KwJnaB}Vxbp;HUXsA9Fl2LVQGhO+?W-M0)yx4KLPM+ZivwS8tTm8U( zb2@s71h(C!4+hscW>QLkd(BL4k1>$J8s^UDH}Td}WQ+E+-N_b}g1n9EATZ+Z8tnsg z$43W9i%zcs??qdG5xW?<^3C~+TFV?uAib*|)l(7MJ|*C7h6Q02AKd(sJ>YWE?S&~s zKxwkqBkACT4{K_J_?z4zWXU}cZhKUcHR;K57w?D=D78W)&ZK^ptq%voq!m#}Rbz#Q z=jiEs|KM`F{GO8o+CfFtS*Vhmm34+MQ<7pZ^Pd&F3qKxETEgseLc)paEXdL|yXHZk zY4KnY{9@wX%49Qr?S|xPr|gi^T+gRs%M2>8{k1dtrQ*MG?@v{f@#K#bZ)h~yI?0d-_KQ1lA$q>(k9w=fvFvD!f;ztiiTVgQw zec;q1#?_x)Pr$_Ri}V%v!+a2*HQAQL2X)9jVLh(0nRz%xMiZFOEpJSrS`T=AA?CcsT@>4YSLpH>|dSBrt490l4N}W900aJ zXmg9Nsd)$I^b;)bs$je;Url`kTU$$;erR+18JK^CCcyFs>2T{yO^M~KUTc#w{g_8nE1Q#Q-Td| z<&Hr4r?HLSicmD3r0h2uF_3pOUi8I>H%E%DP8WRDgu6ij&*|{K>v=mc;pzaqPjWHj zO5}ddHRY+PEHa6s`ym6zF8T`J6j=FH6|>RD$Qr}Lwg+Z||1We_=ZW;0TFa!56L%e? zGufYTV4$oNi=8?GH>QSxfdNR$sV0d@q0vtM#}9%hf*7jW-)eJzlV;+^?@rdIsN2Gf zoSa#x8**PFqmW!v4m*$ny$>0o(EZw2=zS7i2F}7S5k|kHu)dh!gvCzmcl=tmiX{`m z6=2b21!9!A${zUMCnyhb+Oa<>#Z7 zy0fZ6*l}j0jfBcU@4VkNK@yM@elrE;6(M8JdHpi7OLKP#GS)AEJt2CMJzzek-4C zsML-6`UWTi%JCwpJR^qT&(87Y{jNyqB*1AkWSfogq(vLM}q)}$mdWt z-8iy(0DoO25Dn|1%OVR&-7i%k2Q6^wy0HP)QF@T~W?Q?4czY=E3gjr!z;9}@$-!B= zG6&MJAi2iNi1Tkhk0EV8XXAh6Vz zGeJUR07icrtMkd<+U;*(VC}UY8JThQwq1|-tqNp|A|PAHBeI3cRv0}g^b~pjB3m>P zbOx+M1s<^#%_$T7G*WsnepTbu)G@QHPzZd<9pd*(F@0cn2$)pjaUnz7%l zk06AjNbdnL>;7$u!I-e8RuUDaY+j+wu-d$RQ8b6)O7}$(OHmPNCOyn_(zHz*!x?MO zKmcEm+XK$N3t$2L@m<&f+~7qQZ&Nm%)+Oh>^CG0*Aow2m$?9mQ&v;rQyV{z6PJZP| zcHO%so zb!$;^&Q{WO7-|!Nz(O(TDZ|^Vx^xUbq2BiJNs$#NqOH$h#@;SrR=03<F-yVC z7!r;%bSgGRizrunUTL~r7`6ab{+JJ3#Y(ugI+*d$ZJ;-;_?P%rR8OoV0y+ z#ev?zt%E@CK6QBe&m%!OT|XR#M3?xeEc8SnnNE)Y{uIl12Wvq<@!42g-GNn1a0x)f zZ@xTf+s8rsPsV#QE6^X!`G`V%bseyKJbZkU>7mKeU-)ns7J&jBZDu#Kr=D*ZP&}+X zAp=(or^u#*1RsD$9zRA#*pQMPS{N7}FTnKlSzcwoQeYk@Y$YQieKJCTeVM;=;!`zO z{B+zIHhDQRp#FJfUrldLVRrZg_4Lhp=E{ycR$s>n8mqK8s{P+!FtJd0fb&G7tgrHe zV}AySwfCX=yW?OXc?=EEd>IK;R8?E3XSEWxWu9Ds$14gb&(SwG$L*~jk7O#+gYB3m zk}=%sNDcT3q&y!p!l9G~nzL}6SHCB%;!$4YNjU2Ek38(0M*;F0`U+LNaDTfo1A=`D zw!idZ=bv<}>T~czD^rY8Si3LcCaq(t)%|G|si~90lDbW3f%}h zWALs~%e8;N*{%wlvyn|jK8W2uog4OMMRPfvViDM?pTT1KtEk2pB z-13PQm6zok>MBRZ^8eAM0PUdLImI}4wMh-hpJNcE83p{pPf)n?BC6duHH_B15%E zc)O&{H-2OkUV6D7nqelW&a))o&R7B{QWg9^TVjU$itYJOMS<)-4W_gf?7yZz8i31q z;zCZwh7a`KO#%&ctVj|l0gP}#?~Oaxs&s}-;iY!M)zqQlxQfKPNRF}Wm3^ki6~5I8 zDWA=88nKZeR>T>-T6J&dtpMuEP?iAB5wqW3YBX{e**fAw8!`VW8o}8|#RJqCVH-QmLT$%?7}sq> zynr%<5OYB3nr)L;N3D=71@1+ewzN4t(=iw=Bi)WYu(EwBx%TZM3Qh(e-{@WylLlmw zj;O~QX{N`YgO-hA&gn-qkGNB?ebEKL^-0*JcV9Qwq_&?KsboV0N7<)~d8go%m;W&e z7$x+22>K)M*prbo_gA|9T1h#W%f52KYX73GCLt)#?yYF!E4s<4jGp%x%4SEEqYLk% zHifbLXxuD7b^Igq$aep22{P>I*nJo01@J1)eg)CmS?|C@}$n9%9)_+IUI!^@+>ZK63A;+d`Wi)>;k zmR$N#nW!Cm9*iOj0=A*}YyMVP2x{hzpiQoB>$>ug9zv)Bl@j7MJ?B#v&L(YRKJwIsa6GV#Z9lbaI2#hb(Swz;pX()fyzg3P4YRuQ@O724aiGW7(2Q zVHA|xE&Qq@OOxN=tAoDwhf0trTJG!Unx_H(;a_1GiIfjvGgr zZZI~rK*!hz`unsHBkp#WlS^^4$owgg!Lu>wL)mI+5sGRKSw!I*yT-*=5#Soegox|N zd%D?$t9%}CQU$smu6c0mJicg@S>m(t5vzX9`mObMKT z?@1I2rxK)jllTJG8FIwUDRSJ+ZA;KP8*jNO06K=FACt{N$6&^Y2o$qUM?+IVgTi1$ zpoc462HB%b9Iz&yeDh+%1B1^;X@NI_O!$5XkvY{GjTpuUVLud*)FaEY-e_Y&Tgf*@ z0n2DY0m%_&a%O{xk~E;3oph|Fg?@F&*=SZ&# z|D4lU{w`I8OaJOhnt!<+v($~|<4zH!c0xW-z{brEf=94`CNZ}Eje5L@+Plvtgge?g z`gJx1Sc@v1rkT=-^Ob!mm6=gFJJTY|Tq863^Du9Uo1$Ky&gP{s-tG_%T}v@+C4*@k zlC5b5VEYFrKLA&|`AtCH5_?qBq-y2e`c+T8T4Bd;^x#>s!hcFgAq%NV&wC$-thjHo zX!>ku^fBTl@vBg+psAWV|5Xj(4faZ6w)C}tEoUO3=`d&Fy$HrMxuF30ydU{dEL>Wv zEAK4XWEfzaGp#>XR#6%>yHF)u8SGL7O{Z~=gYSiFjP1zI? za5rzuY>7>3#VgWKDj;frJi37w*Mus$WRZpNjrbKCK)J8%K;=aG%+acb@=vQd+F zsZeaAwg;&DMGPNQZASf&9z})KmN6`Lw;wDk{F-BG3bM?bzckDZEjfG<+gfg_9Qcw*R~h%F&+dtBRPlS{ACj*C%iKi3#qwkwc-DV-hCRkW5j* zZ#VFa3GO&z5)tgaa^e?cvvz@~NYnO*uq3xe+x(X_zQ~((lxC7z5*I!1L?Uw5J^h0} z1}ct^Qo#0-f=#p5kbayr*#5r(byqtA0-9nY?CYR@d z-pVaI>%Kb={#ZW#O`eU65i3VcFvN8Dww7I{9#LjFF}6B&a`R;Kh^0@$WPw z0_gYaV$cEHM@QjdgxfZ*opkeoN~;mzpBsGm>ij)>OJWdYlY0ni1YfxKL;6dl{|$8o z+x%FcFnZ*8uoz4gtsn;kIpCN5F^O%w?_2!ZYoBYhe zxx~Uzzc0$E-~2i1nh3|@GC}?LC*{(N-b*QYkpm&E+_>(>g>RdD={O!_8KlhLwV zHL3jlCaXCn5ja}@k1n5KfpZdAr!~~G)OG)8;wl>eWmPV`8*#H`UL3T0Kl=(2ARN2( zt+d4?Tz+cxLII5fvcPpypKt^k^BCKr-Wvh*cOWY%hw8y=Z_@7` z@OC${LL~91S_(b1Cx!Ruy$(9yN;O$DhZA22fHP_ZE?q4!W!}@SLDTHl0Cg@wE$|uc ztZP*7Y*@B%hBZKi$lFBLCMcx9c|9AtA^|PPg}hkTV#Z8TK;nMocyr0aP&5jEhf8NMbH zU*-Nc$XlHO+hHF^&uE+9Ayx^aP3o`XiM5# zzj1k7&~pX6QSL!ssk}Znc(_`XuR;sOLUi!7KsD_{D`N8;u}F}Nwe;uP%w}Om?*%{P zn1i#Uf%z#f;Da>Apoj=&~LhXU5daL^Bg$3u6o3K<8~ z2rK>#=Bd%}GkSeRfy^-8W9st^TGT_h&w*zo zyF)RAT1q{$qfopWA=8cPU=Oo|+I47X)atzYi)_QyKA(E>B33jT6v7_tip+~G)_A-R zrRf2CIYy_qkp3TN;jo##h`(k@zhRMlt_PI4hujrgiq&3g6}O%2`(5`Gk~#OsLXY6W zKlySbNe$kSF2xQYe9;QwCusA^K{kng;3qU%N5W17BBWit3)y%GQAfgbifZlS$X$b? zqp-}dZUSzp&l`)Q*HMJT`XM?|4Fsvi3Vkd5X&i8qsyhChz1;(Qdd0T0x&o&Cz$4)U zEBB`9OU{v5Aw$UOmd^dVp8{PK^hYg8h~J^v1s?AubHUrU1MlHW*SQyJ+O{uu6=s8| zSrEWIG-U}3+66J>^N>|g6SKaA2Q*DXymae-v)TY#`NbBc%&(}lE@cALHY=6L0Lq0{ zAx1&Vpk5FEeU&X@V1wNX%~4aTNH>W6&@`Vb{KG7B(=T_=%MeA5sN=9~1bps|Khte? zo#1lLlpX@HJ!@j|tuG3=@E4HXH+N4%rJD$*QIgst%diS>xmI@k{8wkPI^dWsp=(}w z<2_KSE)5%`+yh!vtQ3%!>TKAPGLAyl>^fHm>M9F%-uLC)g*2E}txs>xQ8g4U85KY8 z`MI=`W>Kn>JyW!70?8+XNTw>Fy|`6}NA<0c9&l9J+2-2Q!!~EwDmNo)R>>RX5Ps%I z*hc)HOQ1+;kravk;o0RzyHGu{Uize0`fo-`FN|)D#Dy%sl4tZm5W5yIx9euZPO(*% zJwr$9snPoIO#hcwLDnusAq{25?@5M-Vn?P~wg8jiLx~&|ACTD=WErfz)*diO!CJkZ z5t-(Sf*572{JY0HaGFq4b*;vMflh5ga3unX&`3khZB}u<>$bC`&u`!l2|?-z&}hyq z8@0(vO(r6&)Ex8w7;fV%CN`o`CbHlS)0WxNKDBfmF>H*S3Dk952@zA6&1j1#x zBT_4kA7phH9=8>OEyD~&rHk) z%4Px?vaoES$(x>;Z^&vF&Uh2Jjp;Qhu(%L}(aeqCfH2eg8OnP~#{Wjv0X}VDVJp<^ z((gKW#ANmapo6`aO}N|DVeqJLTiDg?x`In}c<+U&ipVtO&@k-6qMk0yYbqu1Ga3)~c`3+C!Q>5+ymiKHW7q6*vhrIUOZS4{riL4BiVe1;XV$ypY5} z3$|WojLW`iiRRwuc zv^7TZF7xX!EPG=Eai5M5B=el-XO|+?uKoL25wW?F(M#9gZ;jhdn#8~XGahdmP=9XN zp@acbh%PfNvl^lQaG9awg-Iiw$zHTWfhI!MQCqZ`@|7 z+h1M;SuOe{cT$j1O4pnzz^P(;#%*^^@2+;u&`F{DW_N9SK3ilzduF1un8oq>$?K3-hehYaO&uRRDq;(jfaHbRHym`o|jqlD@5qwyvN*!}JMWQwjau5moO&4qvw`N53xOOeeKrfq!SpGR!@}mbz$4dULo!)sb zBH%vFS1jRID<7aJ5I7~(bkgH0B}?{d@%XGDi@W%X;Vv8bC)B+QSVsKuh@*Uhrts5f zjK%9ecj5o#0)UESFvV;{g&#Vv`#)52aBmFH?-Id>qa`0tGz2IWFgP-Y)NJ_rGC&2q zKg$?E+d5p+D2JueA>7E$m2!AM)Ipn{0P$hW1Vc@XA?$6=KyI+6euU{?i< zIcdLnBu!6y0YixO*zdxA%I3lzunqPRe*;nsT)mGE5BnG%k3uo|@NvRSJk4Nxn5ER6 z0}zsg{fxIN_jyOqN0i-{sblv6;A5ld$q)`z#KXiA$+6#56t+tc^jp zWQCnfD7gOK$9tL>_v}JYNQL`Dk#%Wr+lb4HMHIs$w4E10U;|(MLqVYUzpH9esQ*h< z<3SN*&=}$QyWC9vj=)R`QL>`wtB~T4THFF*P5FO8bzg*eUN z3)gCNcyzm_mgcl%p3m8|w?5p!kNZ;~fJ9pg@87o6<5aTHQ$mmOY+_7({Do;gpuz^n%iRL#c;fr_oTPNG=*RO*u;mGU#RTYG&!9+g-`OhvM#&>*hk$jlwhtOHY=-1%d`)FHl(V$P|%D&OID-265bR~WlJ>1w*`-uMDh6_riL9GMQH+QX&% z9L-@1e8+F`F1AqWHS=;-3Xnd(Ht`rvhltl_=LnFl3?ykY5cHwtW)ZxvX7k!(_7eVBFVt&J161N8A)T^oR`>3Qy!2RK3fX4D9167mo`nze` zN%X~a_rEy)AE{_;dHY7^07tG(uV68Kt++KYzt1b#1Ekhpj(t1>%h3*4)irjo99<#9 zVt?)1VX(w)*v%)_Yrx-mrnT7P;a|!b4R_QcYx@D*7m%)|N9a^Adtwl1Pw@XY+LLPS znqJSUcehLPufBRE_sYr2R4{ZkitqT$ui7SVs18 zVhL}-6e<^NG-1})!td!80B0KaquR)7BL0+r9!5vtUMK9?ZqgR{{Nlc$#Xoc!M#|V8#ls?c@wIBc)=r zeV1}wY1O6aeWwW!MG312j?TsPm{65X(sWH><&XQ=uvP!|3$nXrV)5iIyxiGPVrqQ_ z;D_b=njHZ!ULEbEdddgeI)>b54nDYWdN-ee>x|!7sg>91B1Jd(!kFD~EKxjypD+Lq z_s<3=ojMwRyP^N5B(7h^DDm6 z$WvvhjrE;a0HYpuWZR7D%Q)^a*96wk*&^JZ_#gEBSxn!{d=t1WW5jY93biFW!`=$ki4#$+rv!?78aH@KS|-gEz`&dG}6> zi;L?mLAUpI-lAvs#f%+C7q~101krZ;hte8>1pW>fwmp?xA1H{E3O{*Hgk|Yp zxM2^#U8Vpm##0roNgyXUfD2;4#Z{+ZGWq_I$1u1tPV|_FHJH^hF9)+ul)%^sU?m4< z!X1A)r)B|eqxbbEtQ&!iW(i(_t;EyH#$>l5bU`cV<)OcP-75W4i`jln1AQ!O)K_7W zTi-cAblFle^6UjtdO7$7ybue~c7H^5XgH_?7Q!Q=H7c;`GLKH!BYnGLqO}_1Y^?cfZ_{q@EDb}C&;)1O!n!D zBE5EIELRxxbGtZ{1)4Y>G@^$e>JwlsNl^iLPH9(rUx%!)VFS(|sWg87vi5F%-WAzMePRQ>I&~eQ_siewus_K3+i% zCF#7?enke+N&xk+7g)84*vyqLUv?TAhLk-PTN322X?D1VtzAO1rZ70hvhgD%z1)&8_el&0xN`BqTs18dT|}zij}MS;87Z;aSs+% zjz%!HKfBnbw{t}b43MvV0oLQGyIU&)BHlpBaQws`^Zd4B+mRiA>9Qc4K^Nq#gh4-Z z7lpdECWxhxt*!$|NkP?7D9`a~W^(|iFJswD=ry)+EURSb)br@So|fbU>hii9M{tsJ zcw_$T-?vV%>v^u&{ks>$|2)JPlSvja{|1m^Bk$?c0wb%)->pcp$9Bjb>83zh6Tab% zLc$<*iW$*QC~6S^AqLCgIt=O&pTy|}Nk71h{Lg+M(mm22-rHH#6@xg=F`z>}16Ep# zR(Y{)zfSA(X)QUT7i%nDKv>Zy z3`p^{P?GVo7w=(I-d_sH%3}S!>>Fre)?5WaL(IVM!*Zlr?>!=#zW6ZcDY#`UP9Ktw z>A7f9SL!yz_Q8XJk;sSyS89?6J@;+0ej3yv=uH5ka-w7*OABJ;!}0%SjOi0w9(@3- zwdhEB_7^gV1!)|v4f-SDm_e8oq#681smrjhHBCIH*$Z|`bwXjTzB$qCK-I4e&Vi(+NdMUT0aBh;f77t>D0{USe9MDi8v9`(X~h~?rJ0>r|Tt4(|N#s$ViXu z7TvpBb)|68v~4vy;s3eoJu$plSF!@b{8GR+<>JK_2)Wv;G9|^ki6MQAhjD?EfKw7F z1}M33sY?G<4UQ>GPu4CiIWBU!R`g3!{2N%8T}CpD652ABx&fl=E^)Z#0SEMTV3I}y z$f9BZvWnG7n2c8c29{G*44N$u&y;ZKSidgiygf6o{j1xl1ro8&I}JWPt!eq@h3n@H zpP(-4!3&j;36|DpoY{Ty>`gPS32n13AAlR{ZRQh|d!3ZncWV40nKCN%^1OJYm%fmjE3TWz zYXFr&$CA~`anx(dMDc?eN^TOO3$BUJCI<9!by$O515CkmrnU-zvvtzXxY!<~HBoI4 zwH!3Vm8SmUe3zDErf9ZBQOFpVrM1f@IG$S1b!7JxhIq#qyJm2tX7axsDbsms4G_lm zr9w}R4&63M6hhac^9u-@XIb{(+_~|#ZywTxg(66HJ&QazfQ;lm_;wed`LmN{ZD1&F zbJ{dMh{2P+%qt_NSaFDYmMgjEcckgXtya1L$sfoe7R2LjO)Tng>XTuyv%A- zCvmszT-|=HC@FxXEP>T_!)q&!zxdwpP zo)6rmPp97`Toq0P%SIThJQwPB+1@~*eMVKloB9mP#`^7C#b*x!V2#k($9q#XiH%CQ z4~6Y3xyf_G@#bxiBnspv-n{6|GD#uTo=I*apIga!eJF{Z03QxV37i^1 z(pj>FBt0;2k1n$94{6OaF@zF{;vLwBf4p4zgB?v#1P#w69r6`?>;S_Q=NvuQRx`FI0x$<3AYbOZiy0XL%_{ zv`46wqIJjWQsjPJ<0lFqr$+bkVM{Em_pyKe-_1+yQ#^l%)#{p;8*(}ix#BW4u>NBE z6+Y^hn9e^wpv+V)-pD3L%V-Nyhr5S+ z){o@=MBP8*ZX1`muV-5++gI1YI*7~p_@4=R&;xisEH$mk_;BnVz^E3Jrw70RL_%`L zU5+U#7TBo0|35aWE2f*Mu~+Tz7)j=DpqITW_uh=Gdo}dUA(3O&Mg9!k@ z>llHIFc&cb^UWJClIe0sm6y+%B{=URJ?Moku>d+(e#apX=+stC2OfA_ra%^8Zd@r2 z9Q<$w`=z|TrVDLg*-_=+@PB7vCx7z!n-Z(957hA%hf z`@gmm%VPgtR{g8YM}{q$Wa@J^h_r&{ruP%W;7lMuD+zNyq6vLbZzj}x&0RdvA&&tB zhLfqWM2`;OhLH^jBR~sz21q|P82^0>3#||7h;%{Ux4l|E2S~wWa%G2h=%Fz%d=C!&i$tE1*4R zmFR)fv_cH!UL)kOnBVh3vn=q6zqSQt@Y&%~s8*cFAlqWU4_%w2Z+bgB!3V&@_m0`? zJ&5-TqeiNT#Sofq1r#NWnL4!Z;(qyPP$oIO_+e^BN);cGI)$pu$m>^ z`9SOl9>gac?gHUY5c8fhH6|t|ROgWw&s}him@kZ69BpUkXjB4E?qPromH`2Lj7d9BJdmA>Ae#I#1&v?`1WQUwI9deeZ55Na&ibgdR9c1QsvL zid_D=L0%%)e4^mMzyC^g_%akq4lH4!fE57}5ltQx&qRODOYM2#r24DBT~ zU4|f^^z96k;>A8ads2?ja4Q3m`BH#4n6Rc0EHpyYUA#~G_@+@JN7P8gQXc5%e$=J9cz4adHg^tTMT+GYq?5u zPQH`9fa+RV)lv~dAoSw}g6g|)>N8@Z0WcmtRB=p|iT8uE(Jv!r1_}GRv{Qc@Qzmjs zI3j|Tlg|iga+d&$qWH#oAF6-eR=T_g=Z3-^prud`hU|c$xQKs&UG^?0$&Pmz653>Q z`Q(;T!K8`p5OZNE3h%@Z3^dv)#a+DQbR34dvH#B zoK+z#3P=pSK_gtQGaH5B?_mna`aRROZ)K~uzzT^IG}u!!8>JxfVVMx$wrti5j>Js4 z6>Ds1+E3DdkT9;d%%s?%N1*rfV7_I2f3iK+8C!O($v=A^c8ShlT z`rAG`7t{oG7E~Wk3g2e)R4CJlo6(s>aat1FzY1>5I1LUNwH<--@=J^UI9EMtgC|a8 z-{}ci0bUj0#wOfaa=HRIDV$ZZDFg+isjJKF0k`Hhy{`Pa4NF;Hf4PTKEaXma=4_=} z>;}-7+~n%`BJVug)Ng*fJ4?T-)l*%i^81^3fMu^b1O&v3Md zoPb)40UuoHuF=1IWJC4VwvhWs$~Ya){oqe=H%AUXPCW0>7s|mRW}`E8!x2O0AHPyKI%M(i5`KSLCFNkDTRE%GhOy?%*y^E9Xpw{-M95?C=h3 ze-rKNCIv^Kx9)PI-$Q04u2?tu|Rh-eRvzOu}N`-&^$k2OkO#pI0oz zq`LVhr2GL)XCTnta)#XGAk81OIQ0*CZkVsFf1&M~9yK;=VyY~oyuAEpSVPviJAayM z=rK?E!^I!s+mM}Vm;|p7dO>XuPv8V4qL6}#^|Ej;paUU|?z2*-$h8f zM84*%a)G@ewChMr2i`t)8&`8oDhyh>`HoMC{Y2&}y+;%OSKl+rm*+zvkE`DC)C4sP z?)8K#4$Obo-v#uF$jGNL7+Rv6E?ey>7hi+E@J6Wn38cdM{V0UvjL~Ns??rG6EE|@a zZWDtQ-WqT$aQ~{8#ato%b|uo@T#0`l9Yz0GPaTR9WYu)-l60Fikl*2^w<-viIE>+? zKp?Z*>7+$=QMh}MLQN6MyYokt22kUMhd)Cs$8M=8j9tb5)FJ)0&55Ay`rpfY<1&0I z3{XE3fin=r2dk-CT&<{X)H!-b22N+v5A|xwEI7f4tCwb?fdl9hcz@LffYnuulKC4_Xgpv#-gwQMC=r_Cg)my?2^a%kV~}p%xA6Ez zL8SWah;>5y0sg;Q8KucqzavtXjpSc^VEm9g+Wtp{2k$){^SiYIRETZljn znTTr0B+O-erlc1noUMBM{LgU5WHdZV)SMdwC1XWijUbF36$oUr!on%2F15%q zok|f;zn4vXsx4kPrJDS2o8XUT<7S(kUL^p3-SH4I$lr&*wu!5^jo@6LR0)|mstU7_ zyp#q9IM>xN%sTa3w?yvBt5@6C^w006avlpOEDIMmEK&TJc;&yrDjWz_q17$Ve**Ip zr;Hb|!P-S2@+yWPoNM$jOq-GQhq|t=t0T+Xo}2>;(*NFF2r zm_@Cq`}0b$$&P*HEA5V3j~|;v6hZ*8SP@ku>%RzJ<^;)&e{iEqP-9(U(lwXpnQ>$g zt)YpIj*jCQ5Of0t&2@&|o%U)2Mv%Lza4HAXSlGg5Wzj{s2DQO$wM`_m`BT?H4w zQk<@70M^ZGy&9JF@*khakd)7)c~Mjy4hj#KO+ z)TTE-D)lq}zaA%(8`_vJsC4_(eZ7mM6!fN!;9j^}KCQYxlDxASZ@K!zDyKBB{o^+N zR9dY@Vi8kTug~4k1Wscbl5;mFMv=ui?lGvKrqJ(y*Axbk;WKhy8y!6x{ZPJ|vbAZC zI(+pF^o6}vZp-BX&pg8p{CTp{weVyq9q^71>4JqbctIb+xPZmhMY%}|KcF&^cQ~cg z3J1gdEN*IHR05bhG;mSwuqaE>5^4C&+25WLn}S*Kr(Hq+Dy2UIMQAzkP??CA?o3My z_BnzphZ3Z5Ym@krml5y3DQPtjas%uW3=5dGN}ElKyufoRlG;qhl-)Zm!@c!yuL?X5 z_G}`K6pgF;dbc98hU7a41ai$iB@tQj1!Z#0H5?}kg^9^kHfcNDIR|Fra=v2yjO|(} z+aDj9{M|TkD9%)UrxlWQhqGcqPv|Iad3umAMUlelG&<#=mI|i49Or+F?sxYBEZ|uF z(#(9{^8_t{1wXtQDMqHw02sAeS3Sd9o9)(G*xM^#V+{Hm#MLiu~}o%UioSqTJjm&)X{ z?|*uWu%K##z!=%Qrjuj^IBXf|>B&bc_#X`X30(J;mLt&HlP5?tKfnygqyMwZ%o^Od z<;!rGXbf!EBxzKPov70Jn!D8uO(Pl!8?ATN14bP4=nj^ zeq^nllv!)L@7l7P1ip<~-K0NaUNFuS9%DVZ6yRON%^<;O*KmK5hst#5^@FXx2Q?O; zv5~xi|8Zae8GW}UP{6}HNPG-r3`~SZB+v1j)}(x$yodbLFEF0FIQD6pWw1Y(u3f~b zx)kdw@*n>2+^k^e)Iw8h7Dz^wzKW-g zB$s>oapk%P?q3r>!QWs15cNVxrU)I!!b`0)L0oqpq2yhI2#DPJ{w$Tm=~JC=hr~ zEJ*Rs$%}`UH9402d3WNgMwoK~Pblrg!tdEEorpK%zov<;R#FewGJLG{+H4Cm=i z`4hsopK6elpnMkCosE&O6Mnlp6yAji^&n-d^=|)#&^#iH9sFITItpsLv9l%wka!?@ z9J}%ph&B{~{=wY1Z~gr&{)El@58Gg*(F8pBSwXIUx}9gbkpU0I0aXFyBacv9Nm#@k z4S1v^oH+V9U&3iOSteb8mx88BCrEnOksEdXXym#WxtVMW{?QoRt%2O8lC{grBt2}c zhz!h3#yF;$Nl4>beGs%r zSAKA>>=7p1sB@h57B=s zdv~i_QetSOf~M5_(^$TkdUO&^n-_xR;}@-D&>{EP=mWQQrU}I*^BBB~LV2kGv%Khd zioBqJ%WgW|Uu@qcoQW-ai%e*c-<;FlK&jJ5$GWhWm@<;-zX1&dI&2!6T5^_bsw1+= z?M6H+l_hs-E)#+N#clWW&)guE1GGZux*a`w`d3&Oj0r5K{-Q2XV6VL5bLTKEi%*Ot z5AtaaH5Z_XjAvdNbAB{8D;KRsrY?s(V~oIyQqW_`vJ_-KnMOCkFaa_GrRyUZ`5<#I z8r%>dOnjP!D+*b~AO!~NV=_>A=os8$M^+5Tm15%F&U~MB4iESNP_uXnDA(Zpx#8+e zf;llI1?}B`)Z8j5Pl+goRt&oZPLX2-I01#z!ZW7;Tjk%6B;&GyJ^P{D%$V7eo;`8pzYTH!PhvF~c z10pDrj}GSfjzr87tc=Gc9%cye#oBy0)?o-9zTonTrI>XYSaAguFz)j*^0l}uwc`v4 z^x;!|NCUnEOo%L|RKyA_tBenH%s+0;pYE<;V^TAHV^n(ubhX zKQZBT_Yk?6#U)~bXQ48yCpDX&ANKQy!^uZXgsX#8h0zXZi{P9Gv_(=-G8zDn@y{^h z+a+mvE#wtl*>a=4yNF+Y#dG!NCzu+Xg4;wud(6Zd`I$!SfM$(maOo~sfC(EG!QfdN zP!LgMy=4t-5!pfOI7Z|nA_3z76g3%04JTl`h7dWfJl4CMtdW=7zI~>_&qIKP-1*2q zgFayz*SH8s(3?LdqIc}6?7&lUxbKLG&)QL6hK$lXt^B5K;Mg?cJ!U5z==k zF!=y&$MRdQ`4ZsGsvwFSLv$4@V{7)ZkSVUzpKAjRbWUNtkKdP<4^(&VuFUglr^0BS z=dDxwmjZqpiouibk#jB`8d`h99Jq_&knxvk>iIbC6Wid~`CMfcQ0Z7cgDe2w^6&hR z(<_>8;8e;#|T z5V!(*gxqH?z0S28--YGg1i~HO%&h#7jH|-{1dlCzB#VJlSP`tca=CzrQriu4flNCp zJr`0pNm9e@+dbG9PAp}IF=aPYwOBk?Vt+;w0wem)D;nJ64r266uB}eq3THGwb0kFi zs~Gj_hK$2&Qz8O+xMhN-WX7p?%H*Nu%yu79!vjp{fUio-pMp(-IE+s0DwyUnuqMvv z%-ugo77YpMjmY*UKfhCpCh~-^N(4apoAW+<@BM?2r_6Jw+zO$ufe=X!v;kKYxg6Q^ z|GHR%`peojWaNDMM5tnSKR*$)8z_-@**wkw%hVCB1t_E*D>2=q;Gf!ka$LyULhPzYBVoX{agMh1$u^PceB+zm9nYyiw#HhjMMfX|`JH^^C`q zfi0FV98H__fkXk?(DtB7L?>LCA2!8StQp*b>SNOj#)B3-u-8mXOn5=RRB%eANiA>n z(h3Cq>hFS=`;2?nSt5!-NXB5o9oidmOk8<Q{3iHZXtUZvvnk4 zLd36ci2l|5DK}}u;++O@qGQl@R*>HwcybC(@nDj3t#A{{P{3_1a>{M0hZlqMjQ>2- zlf$<>*%pH+YcNRD&3ptU#Iv(E+oj_~Tt>OOw;V5VFW6cKgiLL{#tTOUy*)9v#;i?FZ#6OYj$>vMdd-KZVow^IyC1=0hj-0*KP=%`I zGatBZXQcj%UlKKQsONCN;-dPEhlKKS`;Yk~WX^$kFYjy6p~Vl8RbBdf`n;sz2f*DG~$-T9!yw-?EAV1 zc~>1U=~6nk%%?BC&rZ*&ESEG9zef#r><#pOGWV3<=}vFlMj7A_PI%GR`;=W z1s^!ARUKe~es^oyb6-#ZeH4pfpUm*>sgksYQ*EAWE>qGa=iR0ka>UP%G}z@9J?Lpk zfX?n62;mP9UZ_mn7LYlohMpQeK&XIm(39&y#P8i<<$7sIbBIYz$bHahb7y|A!T;F6NqkNWc7ef@D#Mg?jr4>)IV}KMBRjM zat*4p9^g3*gJ9Y*+Ez@(XsF{91p0Dan5frjElC1x0nR>zlg=4m&v9!jyw->=ekY-#upF{Co{oPxJu$+=jRUh1gF-l2rr>8rlv_tO!^hZ6;ja zPhqTB_`v#9(D|mjptV=T*0=^5UlxCR@WvxpAA!7TnkitT=c62|ojt{zayiAwC5$C% zBq70kgU58FsU_W+!{HE;S`R2pSzfugt;McMmEjyO(KC zpA>~3y?Cy?%UDo#`n`!C^M|iAEo@#{tmhP@u&$iFr(e)3NHMd}D_nCYfTbYD;tZ>U zh-s`(E;8l7ZsmvArhce%GHo|UB)7U5-RE2AI)YIZkb~;h&4XIt&1&aUm;@8~Tn|tH z?j{c2#I|8tFmDNthDMK$W(l+wAeucKGLB6zk`S7mpZj;9BbsAIKwCltlaNG3%h@$8 zPd%L)oNM+;377jQwh8n1q0681F2p-o#+XOAClr;K*{YZ}CT3;7y)fBwapuCPzvLU( z^>o78&xR%ppQut<_i8`QS4#Z;D$N_)7K=q=y)OaNX-0gb&;izbc9y?$5O<{zOT|#C z#1EX5RGCbOo2j~+sbF9&eO&HmqS*acGHz^|B0@siDt{oDd_(jbbAUaQ1JcVJGV?%X zZ=Hla1e_j`RtcM`kh{{p1;(j1?FjV9_h*__Kp(XPNZ8pa_>fx?Kt`vnQ6N)eJGTKG znAZ~MuL7kc>=JN-eoV6yJI7oSwog`=47nxkWUFvLZ%#}~S5!w)*!6c2`FC2y4wvs$ z%N+4()Wy1x@NvAE1~gyP|~qYt>Q|t(RFcv10eX0y@ET>Cu`O*_7m~ zxvZq&;o5i+W1_=Ht_z)+FC5NuwQ~{K!f4%9=UP*o#=kXAf~MEhL_zZd2$A`P<2WC- ztjNvs*PN@sg}1!l3?b^e2JGeuV^ISD}Ai1X}$8^ZKFyFlG6E9TG({ate&lCmh2AFfbAA*1=x)9*-GJNcIakj+h$v_) zu$QpQKytrbi7YSY)z|=C&io1}2+h=ofnQ?} zJ6_)4ovhNA0FWBK{Gv&W;p8x=`Vz6Fl2+w9hl11;orL~+2r`WPdGA<>8ur?sh0T(e zxvz;lDO;8hc<}NL*=Iqc9WNXGN1%UjZJy!hW9mC^vhG=drDh}VHQ@ieS9&S9+phf$ zdip7NDJ_|KSW^3L7{yk{@aqr4z#vwBw16S{yVqVS=V?xZq+;j>OUhF#TqX<*_`s+{ zUx9@~?(B)sBeO^+J2lAA;`yT8J@R1dt>Bum(|9C&cnw`Tv1NzIn^+y zpNMq#MN+cw<~7kQ&&=uGsPX}~f3!csz>NQUPT=@1z44AwX|b`&dBZB(462+{K+-C* zF+sREX8+8Ilu7dnk?wwd;M4fwmqd6s#*=4=(@yAGqARq?gF}TH=px~Pd8YUFbojA zQTm`PB(q~57D_Cc#(G+lt@NAB-eqeSrWeO`xEV7h%%v@Ph1ao{JZC;o@>SA9n)jrd zcr@?<|EEscmM?;DKo|4IUn~J&t!#$Jf zZ6fWfqb*x2&7P&;R*M1KtV}dgk|nlf%!ihK9s3!QdyE!xy?8|S8{4|~J=;CsBU4CD6bG=t-uUOzNK8e-sy0PF zf0bEpg=zLn3v;&qrUAY~EjjN}g6V!UUcjybi*LBkW6gF6FuW3>Z#O?SbU|vyNB^+l z*;zj9D!lX&cu2zjUxSO?0h;R0gLN|w{wMF@-+}IDZ~x|^$Xkdqap@|!RiJ;{r54<& zSh*c|X6dc*#%w~&pbwsebA(x#VZOi9TOqZpAo9_$8G4qIn*O)P`mEerNSKO|n1k&? zB3Rrsh^O6o5Dx<4cT%5d<)1wanBG#T=laKdy!{kFE+hkRd`=*OTZ||yPx!aNFxlX< zt!a;?i)$55ANCzP&P8#LxH?@tc<5~{Hn12NrseMDMr7`S{&fD8r6%^i>(lE~;% z59|^8%>-h7CQh(1t61ike&N8q( zJ~e$krtGsnOilNq^d*|Y3v7vsaA5ExB$Fb1Mtw1lw|@-eu2@}=LY-I}M*?yG3Oey^ zm+`@x*%ZrucqP4{Q)EkimMAg`1^cW!h({HvbfTJZft6s0Q-?j5rFq7A7LMU?a1KnU{?ApeB8**e6{ z`aJYP<93cD8gwRRd?@p}tsh~Gu20$CC7dHpPw^^-HAJecT|+76weq~^z?oC6 zmvk^IhKn z1+vL55C#4+7Wa`ry&sCEOu|Te%!v4Y2AcKkt2py1)SRH7$0}QgTPi1}oQ8G7fFc0g zX3i5<@}nq zGvi~gVk5a!?L(4YE*5yS?|4orihLE8X{>JFq}tqA^t6wQTD*^aU7h;nK5sWj=-xX) z8Kk7GO7B2?v2qAD(BVJeZeAOYb0m3gj2rT`eup?d&&dHyylYDgd9i}yQ1%sl|Fub% zQVA+8MKrnPa|p^`)OgUEm;^N$08ohq%wvUYuiY$L2*fnui{ZogNdPq8NC=YAM#=zqxC3>^+t?YH&+|%s zxFmesc~0O+O9o*|ra=kUT-U*MF+v%lVnq3i5)L24hzQTpIazn?NR<6&dDp4iuCZfw zb1uHe4pS?LOWyKYYd++oE!o%@o*jUpO<<7tP-4KCFy4Kn`!&7%PFjLv*-uW>dHeD) z|KoIq3DO|f+riqk!m#B8_ZGY7*}QBak9y{#VA6Gg)}m+BNR>};!j-o|WmXaG*fwPI zjb3dvz@ldzF~vX1nrCtDhvun02w+rSRd+DvS zj0TZmw^hGRnE386uE5QI&bD7*Coe*W;SCN7B}DR&UzU*ieE=VH6sb>jP}N6H=++lVYxFQ0EphM{Fo}(V}Tl@NU-QDbm;+a(kHMvA5^-hsHYY8&pJ( zBqeg17KhOXC-kYkS(sT~jjGik!B&c&3LbTw(l=3|*pZ^j)Kdpw+Z~_fh(l?a>6_hX z@!pe4UYV!jNHxdGQ~bya0Fa77Uc2bK-}uH9fb4JD+faV6H735}@@8Ao=5LUcHYFFl zAC?gpbkl$N(N7tA3k}USc{vq&bKE;byFLWzQ)f^8K{i3EXQq@5U!Y%z0%d$d+LIuQ zI2>~6k38+F!qH&v(NNh16dMub9)B>x;JR&c8zuP~BC>8WGYzOgH{;#+WKBH2GVMGq zZxHG=186{YSM`9u6!%Y;*SvFfEyG=fnYupl$vQ{myA#5zj2F5O%X{`cm!_2K&ng1o zrdZ|GVsbJ=ui>xaGU;WIlR7yV_Ofp)#G6_ewF!8PX=Yn-VurP<_?#kxMsZ~WitEKXpntWwuAgYFq&Zd7WsLbb<}7{&M;V=+&O|H}C)LmZ_xy z_HU`a6S@h$$&oYvkpH_@$-XUDZ?{U+-2pt z+|Of?EM*WqgLzNzkh^QbA1?yK(X@Gl#~iPo;;ut0 zB91*t&Jw!f8=TD2T*e(VKZ@8;^eM2~K?RIj-oq?IsMZ0mdZ)LPN!aecxU3B&34 zk&{WT=4tZtu2f^|Wk@=Bqq%quQ2`v9z$H7WiFxd@>ulPb_91PY{L?gik}3Nz%nKFB<& z*Q!WcRKIk>Zvr}Xts2T}4A@ohbmrKKNH*)>o4yndyTkTcEp z9+(7)8#-F$%1%nM!Ag5`31q*<# z*YGsF2wWk@Ft$LLOrtx$@G0Y{>Jd>4sr?SWO$toIPrc*oJueh)+3v_`9542DJyCNM z=gxL>YtqiM;Cqdr-xA-OuBvML*0+(ZCuZYG)2FVz?3z}fHta%Af+PPiR#~6wz%?W| zP|SsQz)lO*gfiQ;jHlupHNLvtPpR*&{BD)mtylQ@qh8VMLblV-*}PC=Qvyl->bK+C z>|pSL22WI|Ig$^fsXt{j?fB&6M|%Ve(UIb0;+Yl)+Unheuc=+#Ey&>`5z5I?Hy_W4 z{IDs|RwP|u7|j_>ls>!0aqe@;>D$5jb(DA#;HmbRu_UNz!p5OlL-n(r(i4VYE zl$y#W22o#@>G#N*4&Bcbij=%X?HY?G@vk@*JeZ$sEQGLO$_;$PBy%a)i6b3z`4`V1 zUY6YH4I$PvoPU5U5TB*yps(3e8Laxemu#_W*yt7nc1RS#}bxq|vQ{ z;KmSoh=AhiSOo`XGWz|*vAp=akP8E-cNN7i(bEbmQ+8R?0IYOcWvww-{vdd9(Ud>K zhp;q1rd^$Ht#BLd*$5{kCL1l%JId=J1XRax+@qFsaGwE%*INdWmUp0bWBFoWE ze5&`tUXVbtzuNgsn+1&Spg|P%b8sJ1zt17&0m?3xuoLY%j(15&)`$2*nnx#X5QSyXUU*(^L+pd@G7pu#^bzS z=$9E!D?pc}TNDbg&b^jD${nYGvEqRDK+W3xNoM^P3=2e7i7wC?0f`JcqiMLw!q^Fe zi-7+30-3Al^KXqf9C|P#&_Ef7G~#(X%ABTvm1nomtgxm!zXn5lZC2+MPpt*c=2l>lgV$}q(eUq<-ieU)n$LHg9 zQb&ZRMXRSz4W2QoqHwz%{>d0Jz+BfX*?1OAIp#=*91~Qf%`ZC59InG5xbaAdGH@GL zl2Rb|AQKk|?@nwCzjHjf;!@F2#up|d_hrJh_`$S{jV$I}&=IyE(r|MGutsH-{i&M* zZQXk*_AfELaw;THLg{jcp|(XQ+yVNQpRiEyT+5?cJ)!}ZN~|fv!Hlh*Y+Vs27#RGX zhl<91q!V7fBEJrxsd9CSmJqfD?%8rQM{Ww31LkkV*b4(zLEN@|y zzG!_7AZ;hSxeW~q_Jq+s27EEHV?#yoidPBn2v1hAGoX-89PONumw1`npSS5a*{x@1 zObk$=I4NVbvzLVfj@F62-$K&$vsIxT!q_xz!zUHef)PU2N1vnfV(5oEgul@bTsrkN zL(ZU>KVZQ>y-5^wtQ{@lG<;rG=X~Cjy(jRy%H2Ph+Vmhxhxoz-B-qaNIE+^2(yAz| zs8yNZ8Y|XhoBM!(Q3yU0P_sX84tjlg!7Qdd+#RR&lx&u|V7RDd62xRf?vZZ> zQ9|F>EN;y`Z-jiQB<@b>mmFr{(yx?DjJYm<2UN|M9KJ)3bohIbwK--HKbpGAC%lDd zx13WBTkxjly)?2OJc4c(+;V?Pb67CMOuRsS7(7IgiZJXECO(Nt9~PB9vW@^ZW!;5) zYwj_8Vkc6TL^uYa3OQIX`k7ZKPD6!|!-3sN6BcM^46?pnOMPm%5E>oNWZZpWCdp!J zODb`J_Ka~Frdn3n@y;^Ei0ggF9P?{zuA0pMR=4W3++2@Y`LFGzx2I;^cQy)dAV9tm zF2`h#R6A6Cf@8{&v9a9ZSm$OK7gO37)b+t0$B)H^m&V#3e6fQ5qF|=N&WtHdY25@c zbz&J=@>)%&p_U5_#_Th!1}r)VK$^YDtZoj-nj<8u{sepcVH6i$tPcchCao>Yk+nch zFid>Y)?yeR=6}_@Tt!8NbHM%|6PA;#Gsd)|Qwl};T~$X;9IPQW35U1XklzG3^Tz!Y znNZ+okb0{0Oi;IMaJN2^V_Na1I7v3;8*S_T9E$Eq_y~I;hvxb`qZ#wTeb$d+=kNtK z$*jgnDrW#^$)HLOz7t&RAwSpX{y6qmD*aLnSX?_FFc6N0QX89~G3BlIHOCk)aO^4W zfAa1D#F-oKrtgKCzrZZ1P4%PR>238ebo&V+9l*XXUGE?B=CkO*SoobM*R}FS4rFv} zoEj88bhhVRf24X!mjl^ZdiB@}OcW-yywPB04(FK2oRTyGnpA83lNF5xk1b|3Hu4t_ zjHoR>$;_?z{;;+n7kU`BiPAQU1KJ-R)8ibbKF&W1zNFM`(cIsyC&heM_V?jG@vI+f zX_R=4wE55@U+}X~r(Pf~DhUxtmvh(|*~o1XJnR*Mhp`i_34gnOdyx|IhgVEy;C{@{ zgS>{{=T0a4h6@ab7e31oks-w}3=sAIFy?f=<$Ym!1F6WB*YfM^r#II^l>}UpYvA)aPQA*xV@_JP9w3U)cOy zhT%W%iOL9)K(SBUq4VI zG<=GFmqtGkd|tA)X2JSpPBE;`hj`i8d%~#KF<#B%U56N|8Evq}N7gdjCXNw);o=Ft#a+VJh4c$*r;*s=OY?3m?pYNylnAcF@9P^xFrE_Zc(yK z84ks<8q+A$6Kc^z+f^O3+%z1AB>2QfC35zmM%O4A+|YXPQI#JoAH_fQ*Xc|4NES;J z^A|f!KsrumseD9ekR<}!nooFyzx7SjA^Dp)rrzcfHbI0z@e(G%!Z<|cy*Q|S=`;>O z!ks^e4lB{>cCPO4)|5K30O#L!v>h{GiNie&#Em?=*QuW2^wTu*XNBUJ=Tz?}dg8gw z5qk3%N8?`NUkxXQ9`25Rua_6OS)BA!z{ZEF(WLn?hv(qtuioi;@ngkmthI=bwr&0H zhApi${CwLs>};}LWsh25W0IR^iQ`n)sGZH`EjBWS=3*`ffybf@d5b*`YV{L;fY?Oo z+Vnbx;&P(3uf(m-k2!4Q^aQ>st~{Ndbzh~v`*FVr&kMaoyPx^x>5)l6VNa$GFfCH?oBfna8$ZDiwN_q=T;DzXRByW2L~xvfOq%vMNUN zy@9Qjha@b7DMgTZ+|)gQ(+`;(6IK(Hn~}Z5vo2yRifw@4-Er^q04Cf6ubnbtW<%fd zsQr!1@hf+^0wN0EH{@x~dGa5sAH>U~(970dv0=M^HXaisv9<0HNVgyn$#&0#$3xDU z)r#g9pf|#MSrl0XtC(iLTBCeWzKF`UQJ95d(`=g2@J%8+f$8O8dLOoo=ah$;dhX86 z6>7izHACNJ#MXJ?3NM2Mcfr*xRzxzbiL>usuf5@A7IR<9@h9^=QEs<3SckF3tv5$Z z3vO-PGyKzuG0%Ql>QS5TjZ$uZ%|$Gja$TGlr896g`l0E2Jn(qKg0!uRaK7`2(_M~L z_kGeQ2qc>$KW}QhXY*?9IxdAfyCf#Suz!)|wT6d}+i3@*GJvP*iLWrGB{{{zW0s#P za^04wt-MS!EA@f7M(1+K4d;Fn0iuK%F?`fcO(Pz`>B@C3e%93 z)@0`IHSZH%x@%XH`>2t&r8`J!)iL(zKCjBB<4=S4ei}B+;1tvA;*}lT9Jg&4=x={I zqVxRse&ymcSFCH;$UotWJ(UL;tdkaWv!1kGh*Hl<>ZyQv=;oa9PCv8CpiY;Ex=ca# zZB5+gP{ti`OoCXEK{aa)O|O4#y^<$Z@t}+&MGPn-ylszN2$60;wCrG&6f{B@1HXeW zp6*B8z~kEAZ}d)km>Zuz^%G-`Zrm8yKfutEx6Ts5df==%#gK6}O}}go&%_nwlj5$0 zGOw|kd80J#DbKd@Tu3Qu1m@8)6iiPi?k;r zi?oh7cL>1E65Btl196Q)_-}e_>rAr|BpXkj`x`7b3o!V`D}urY!t)cTIiOQk>gH2? zgEqlBU_8to9bdwUm*qdwQocHBdgqq(As^8tg{g4p2dLFQwwXF>^Xs|I(?h=Pq3y28^8FeoQ?1GVWs~R+p|19s3*IdOMga1(S9hSA3_b{9BJ-1C_RL~R+7#ag7&)Q zcQ@dI&rkhKdi9M$EeDQp=qE-{k}FvRitN$0ZWeAvgiDeov; zOhYv)Lv&M5N8M`|;9AX($E$9|H=o6iWRZCuk+k0DjZasizfYPatGXr>Jbh$-0Xo** za2R!QUy5T(3R?EC25D~1e6c#{D=CzTxjlQa^I0ca8H`IL?^g105F@LSgg&~w z{u%RO|G|96Fc;QZhsV@(rb0hm>c8I-|L4TH6q4Sh=vRcqj(52e2jaj_yr#K6Hjt)HMZHE#UwQH;^>hU5S>|rY#iU)p8RyYs^2QKCCoaBPah--Rk=q5 zbDR3U-#?X!kkPt>?*{Bqp^33q->Qi(L?!qhS9W#F{rpZOWXr>Fs>Ex9y$-R~L^~ynQmDwt~=;E7AOgInXwH02a z-;)RqWgJfbwLPATK0&a`pwSrXd{AZ{4&OJw%K|hB+zJxRZoyIC@V9Kzr6}e)R~MRt zk1Rt4|7t+G^@7_%i|?vmb7x_)+4F&01{MdgCt{9wJq!H#MeK^HwAUjltc{jVR~doZ zoDs`j(1gdDpZ|wJsw>{xqE>9A@BIeKJ|_4eDnjoaz7ju_W$))e^eB1rCE4rl7tX_; zJWd;T)m|iu46@Z>XW*AgM$Xb*kqjr49iRvP%dVF3tiEWn)V9Zy0{|L}VmbOAAR%?eF z+?)GvF4@G6eSPk`;@i0QjLF_3dflY=?mb%@i4HR{Z!yU?OIM5+{TB4NJM1!61|7a# z$#A<>G9IsTD~rK7tmqLl#Y&adl<3Eo`-C0CwUXA{O5o-5z{|%7Aupe{(>a3;$UL~Q zpjN+KxXYA0@mUZ)=$T%Q3s%f9ab=+9m?bu%Onf^y~j z$yjOtj!IXz7%sKHz*Z4!X)msdF=ceybFxQB2^r@@;+fgI<>Mx%SrBKtP?M!&}!%kMB6U;`v ziRv{a5k15(_3M(S;uM~!Q3&3TB4~1`Ap2J>NAodefik&|C%rGMJhs&}SnIqvW8-Fk zb$zqJGhT&|3@^PI6JoCC$>S4aLi1#smAa=g?A(ZY2vFKE=j_@)C~yCJum@t zE8~y+{TpMCFd578mlaa>7k$GwTmaNtA4Yz7QyE96 z{28txccTQ;%50nho7bGU|Fj^abuS_}6NAfPKITpP8cr*ce-*~*9Felyc0Z@SuzEM{ znjwr~Mr%mc(H-mLwrv=^=}MVsn+uKlH=btt&QSjQ*Jz2G`vKqCv^xBp^fs@HhI}*j zXIU3jYd{BXqzvhD*M!J1@-6Rj7VWpC>>QMQ6X z2<#z{x)*b^4u(PoG1K*GBnSdE(CDe*Fk(QvkQ38yC zIt1>Uf*$_cQm<5lo%-=B;J9HHpiQd2*4CTlB^l!uJ%M1gdIYgDx&{&fQ;G2VvXGq+c71n`Xz4 zttUiHnYI!eo^X}UB|LWMMxT@kj5RqTY#FqL`3jF9_woPjd_SG!U>Uc9s8}w0SBy^* zIUtf1(W!7iSZVO5&I#iJ+wWt@i)2lnz9JwT@OMaLx(^#Ee;;JS3gERWLFvy{7U-t= zsnQQYOO02@*L76T>QD~IGTj00KW7BgiXbvo+sYMjAW_z8=}RORC0&bk_l4wr?7OW^ z7II6tg6!f>=$~hbS~0T*Yz;DRy;k|~@bE9U1L{LjF#~RLu&1>b5DB|D?-hx*7jlPr zWQw3U^`n1&ojKLWQxBWFQQb|gONM=iwTy6jr(Tl6V?5@g-j*EWs#5bog%6MV9jkm9ut=1xU(k%ZW62yM=z)!Cv;FL7>V7R+q#% zu|ydq7wTzdM|nO`=RbYeBEAsm-)c2m_Jw2cfA-=`Wi43{hlY=pQV!2kkBb?Z9m}AC zymDk;EA+uh$dpcmKoI^6BC*{ATapJr6aDw{pB`vfyQzPwPlLDE#TwB@S+xpCJ_$&P z@mg51Q4F#~3UPm>h;G&D4_JY|mq04IbFy|$Cw%f>>~@rsj{;>`?h*&aS|uG+SI;oBP{3U9{e z30c&Ey!rSzpw(Z5CD#*9QCC>%<11}}z!$yo3uNaCw}zh~OX6WQo&FS{?{BR66(;{8 z-9k~$_*bWB#80=XgR#^ zTj_X?^}CktZq<#;^hGV*2~(4PBlWyWjv%e3S61Y$L`eAm{9(M9-NhjRXN_zN*um)s=UdVEL0*(y) z1h~{RHIq)q;`!H8vW+~BzJk#2QLosG)MH-&$@+GVSvdM?{!hSc3-19w3IYr&N+slV zZ0Pb}QqwSvr!)@etihA+ew}4SYru@v?e@(xsVN18wkDNlXFhy3IuAPglf7`CgPf}I z7M;vP1GU)8!k35xmQnaY#t$%o*aJ*Y^BMUjrx9F z=dJf{)Yw4`EV+!pIobrZE|pTqu-L-;NNY5Swfjvmk0zWf*?;7(w~{~MonHMLvH)k% zPxUXW1lr1?j620J$ee+jLVml^7ECYqXejY@Xqdc?U>NJZa5cjYh;=*7Z|HBUvP=)? z02yv|l~+V^h5y-7^{L}&StpMUU7Rt-ilugTt*Z));_Psaep4{*^p)aHwRQC$L>HO* z-lk`E(YJh(1N}5vlf;@0&!hKC56?;S!Z=NI(H#&Uy@yQb$aqTvxoox~b=o1WptZFX}tJ;_SO)u;w*rl1Y zPj&rN+b^zo1}z^JCGY4gGrE?gCy>u32~TFErZc}#mfRKJj#5qA&X;~amSVE@kt?!i z5ebxk{4Z}jB|^$T=1tl6ggO}=Dcl4D;Rd~x$pXrN8N!z@F^fi3VnbDP<0=|pG*OWd=H^vQT-@{eq9fv zE9p6B4qH_&WM6bHs$WE~U6?PH2rGE7e2+V{u^w`6MusH1Fhd(A`t0Ff@fy@YD5@x+>K)(~z-H1PDGnn`sCHZmGC`RA&#V>E zEt~`#g=`s5PY9NDGO84-kP^3iUIt9!V=pM#YDs+H!PN9Lfj@f-o4GG|RKk*uXEQ2} zVjRDa+0b#yUkUklVGglyelp5W`jVZM)jiX?7lI#Q02IcjEJttLGnyfaZ&~^^5#nIlc)B**k#d4QJhm^5g_UsOf*bf;WK{r z@H>5g^KZ+Aw{L{NHGaZ5QkYw%T(b%$O;yE`8XiFKe$zf`P=2r3$5^O^*_FiF35&C7 z-)HC}%N%vA9?)aOEjtJ{BTjgb&}e)10~zYOQf`Rjs*Bg0F<^AUb`kiQMen6-AUiXn zr`&-221Jr@0;9zw4|#pgU||J9iyz zt8e3HMKOxV!fK=<$|S^3n3v#m#u2_hZ3|Q&E}a$bZcE^Jf+gAC)kiK5Bf=w|v0%B&p?vKS-cz`nuWOayqMT7l5-% zKHTwS=k8OUNqws>&gzaFNIkmRJ~uXA_MLInN3na4i!-H!Wh?s6yk^f$mIcQ#)YH;qTCo1PEn)PP$^PkvVBv#g2U zrffG`~ao!wRA(sP%TV6e7A7v;HNvnba^u(XK*j9PK%==$E)@Hnfcy<_mW$u@`wl*cqZl&){R7H5j zFuui0RvDIfosA>WyrUrhU*Lnqirf-2*?O)yedFoKZ2lY0{M%}Yowr}uLY*y3tD@ye z(-Jv!xRFyF$royF#9AsNl?3Muz1DVtIZIJyF$sfhT*f(l561{W(=bZXt)a$D@OrL* zp!qvIm?{*zewothI?ZsCo(dO_H5<=^-&V6S7Fm7Xa;S@spR*Hd_UKFB_JQZGT&ynZ zhfK0orDRs@;5o_m6!?&|a992RQ0Z_iE-(u`0JFef=5BeIM{UmnI}OR0m%x|Sh=qj1 zmtNL4xs7z6c%9XS{S@I#uYAgE+Wk@^xTmdSLv3mo+E3?1f6}hs4wS3jp&Q!0=j_J#sLnZpFYTEt(p+i5F*8 zU$8%d_m<*(We$vY=a2VK3L@PakxAeJ6=RGrxq`luLc)#j>zOM7QcNgr8u7yh(ZLG{ zul}%jLfk?4Qior+Pn`Pe1j5LW-}s4(`5(_ziCmrFp&lHm#5LSbO3BVhY2-?)zj8ZJ z>J>_UOa93_!EQW~A{{S&ti((vj%yt`-*|J|=#!8Xv28kEXE*U>VW6m@+p3z9WH1Oj zT7;Ib`>t4b$;v3*0UrDS8_Ncp#3H@u3j8guez{nq1|;R~CZpfYo5>M6A3Ev~?f-7n zj|Qbg@lR&IpK*JkF$;Q$KG1Fbc$l?3Jp28au+0{hurba^_&)R2>~pWe;rlGvRTg&L z9gwQ=Oia29yu0oX<^nMmg~z){o5X=+`&K!YoFcl;;?cRV+whUAL0fVk3KXd*jxIXt*;588$?$K5hh!f;+A>!yKzi)GzhChP zq3>4mnCh;@yhmyB&}q4qoe7k>Nl~Q}XtcmUN4da5jt$cze;7L5X6MBqT&#U!C}Nzm zkyjR;nu%ZT^R~;-KNnk1(T1=D3b>MrQT4b zbN)qGcN~Wl#UGXA2 z*$bCS{{D^+I&2f;7ZLJ>2VR)VLfOP2W#Fa1Pj^h-xw2|S__nNNq2ir?hk%8XeNTII zZE1RX`2;9Hjze%W9kgb_q(6}=@^LPz=@b({X8ywr$y+7=jJs(Y#J~xu3v$FYA(`6T zK9;%d_@W^V-)yCqO8B={#7p&3u=9TlzRFmQVLF_>E8}h5v^V0WbB8VtHaD)xqx0okI@X3w-3y z(cBzSN>YdSy%mG=!F^e3)j#?%DvA>!C`toC@vAiMKN1FTzhxfuXIn~s(Z-K=w3H;O z%r?oq_?HM|nzU!yx=a|v*(Mlx51v;@zIx`VSE7PQJvT;P5Z*fBK`7_3^YEU|UX=RC zmE^^Q{jwB(dzTIZZk=gb>?*r!*}72a&dd5u@Hz$yI+byy#Fn{2@_e&Qu6VbYqp-Yi z2*fqR`Pj^WQXqw;nh~#1t0cSA_4Bq_lv0YnU`8?G*njM$mz+fmwNEB?*Bp>@t%Lec zI6F+f$?e!|Ec0UI`qN7FXT zusE_OKKX?8>75@9vw;H?G0EJ>ZvfUkIF#FRO$yHDkqZjfc4N&*Jdn=z{_mXE9wRF+ z`0}*UEc>qkNDWevw7)yQ96Ngvxu%+@`Rwe-HBo5w?p~8GylA^KSMTr2-@tEEaV0wm zQ#pmb+!5|@CU=eI1QWOw1Yc5vGL%m91=AayiM+j?Ij|sCr@xmr?Lv*(wKZ)?MC@Vb z4_X+mhbr#%>NeD0D@G=+R4`@Ked92^vxTp1B_$9`<@tMf*|uH6IVt3bsGj`)dqjTw zdi8bx{@9$av7Kl@bcucpZJjj4%I4Ru()l6oD~v4DZRep_py8LO$+b;H0&uw)y(ZN` zvC00*N~nrOMjBjWAfCX*ezhQXHE**ZjzQT3UXewOVwtHwt$&Y*&E0}?bwgif^M%g9 z*LbUszAvNsdMv-p)!@PQsr|PgYNYi}OY-=>lG_6AP)WJDjXW$H`D(CEcmh;eJK?i- z9~qQvkK)Ws8R21elBuN)`+8M`4gK$qkWwzK-#;Hxg#(}Fn1E(={EJZi^opcRs(JHL z{@)={A`84BWXfjyF>7-q%g<-IYCRANfTtiEt|=MAkt|>ub3gl^?Xy;koZ1r(=?x0v z-pLt1e3_oQvYh+t{&C5_DCV19{*v!_zHKp0D3W&UdH?zz$nkKw2c8~kVgvX1hjhPt zJ6Q@tLTwvKs8KYK0?*$Mg(Y9rLy+h4R*8DXbo|MoZOdF1fV*zd*v(2;;Y)RxB@+^C z5jQ<)sNJ~-%usL-v2^znD8%RP$$yOYK1WfPdgt(g5Q+4ss^d^AQO)k!)71cY_ZGIh z6_Y!~Ja2YrQd5&K+#J%|vfcw%O20>4fAdC91%-K+I&|M4skiQCln^V#19l2(j&Emnxd7>7 z+lDMfaRmwI6zSI;MgPt9qHW28<$DdNS##_@v)7eFmKJ;Me%AJTdJNG`<#7T}+qOr; zvO-v6ejy)wG@Vm#;Q6{`YV#ETu6;D6m+~_NZM}AN`_7 z8~Ya-saBAhwi!stMY0$8fqW^c=GMOzBEnC+Y1(0T8}XMXZq%W-ZxxZ-V9ND9N?;P$ z;+9nlz$Zkx;6CV?Y`=*p#G&Z0?mR%)r1;+ws>q~0<^aaIn{meR)lOi=Avu=cYaz{HsuaGui?(x(>*NuCi&QiQE{gyXW82zJ zfGUV9ogddZ@of*>3IkZDX&jgnVy`=A^AKXbv#Gp<&^;|9Fh`LA3DsZ3>LG20y(wW- z$fwQnuX$-8=7r##+Ygd}ymDi`=LGgJIQ0}_GS?L8-~dDb81b(`L!FaT#7bU7D=$5^ znEcJC9?-DK8Dy~V@t*C$8gCn#uNUKNR_EkQo`C1^TSvGcQ2=Qw@ z-mxCbP>fL}<;m{8I9YhceW-vjHZ>6TI5+aC=~A|S_i4m0Ga)ZnXZLgeU!BOk7*@`I zMF=94Sd=n;WIk^YC;vfs18G~%uqNZS(+|6fJkP5&7CPHknt?n|Bpv;X1fhSv3YnH7 zM$YeP`DXhAD+nFapg;5(354sL7RE?=%`crth%JG%wVBRSY0uLg^%;>*hVda^%;#B0 zzkN7J5QOQ)9fF@RA)aH9r%{j-yk9ki!N=Vo`~;rO4XUgU{=kU+AjQy=P(Aof>eGu4 z2bFt~w;~0QQWNL@ASK%W6Q0bfUYsMgz&D7*rmxnYBy(r2k5@9=hIgf8!5uWGo0w_o zQyg(OU`ncDXrA`cKOk7eCr-934`;c|HRawfgwsk_h zQUC8pASyyp|K&%15hPqAPf#1vORt_V#XtG~arf3yRd!q3I3OybD4S9VfsKSnD5Zdu zY(fbIMWhv^Hzg^JgoK0zlERh{N$C_+N|5eGX=&;H&3ohXyyt!2@%#Sx{`|%`qPx^ zU?IqteOfkjzDN|9nQ0;AuVpb{7mjSN{~PCn=lTgG_7_J^BpoQz4*-81=eevyz-aLn zVYGmSnPvtzG`;l32ya~IFhwM;Y3Gen;{%Uz%a2hYh!`>TFHNoga932yLB=00t$U2a z-epwmR688)TD60vj)lR;%#fhLwfn9DjTaC=vYB6JZjznh#S{rT#HOsOv!G)SG7)kj zh})SZ)gmI125|n&*US%r1Lr(f&TsX<^G>S()@JbJW1$^6(;xaT5p}l5%7fPH`_$vR*pNY`2-stpBK#NW9we0*2eO4lwZViQJ zbV78l%YB*QohTUVSkpM)-_lMJvYs;GBwrmK7@%JfU|=Vb zIW|>lltUvswDaPM%d7mpz9!i{`I2V`muPi7gks(~Gg=z=B*6Wx^4~pmmK`F&8V0WA z1J}=oB!^|0|05D)4SKI|?N*37^_w_)y+k**t;|TSQxktDM+xoRwwtht-!X9{Q~XkK zW!ze6uxZOR^+m)T!R>sHZ7|F}I6skdGPK(!5OXTD0@J_P)7754qY72AFxL(`Z_ve`XKhJQuO@KZjc|JTNb|~M@*!9YdQr+ zQtuJP*a;<>zsp-l>ob@9IsSoN6JiC?SmtSd+o{L@KC z$nz4cIq)BTCV$DVNH|gCEl^%bd_L}|?3=fT)Gmr$&Xn)OoR4B{(1A}ETmy#LX5^Lp zsNELnQ})PBCLP}+|I(4C$7dIULvG5A>FNitB2 zL6Gj2QqUyarPzCHHs}oit!9OOcLgVCESFRRzT53;+>|diTHmrV-kY1CI6YO$1DV@UW_xhrG4KZ!BiEzB!0Uq0b2*%Qv50h0_5*q%n2>I$>%IY*oX;Kthk(9D z)BRf4UhV8IO>?#U%CsdpHHMi7_@fG{Vi4&uK^xOQwazJKoFE)&`2R#A5h|tSj|^0q z(`1q>I9bID|rkKHl&_{wN*0)!v7iA*81-6R3LFd{|ViU<+BkQW7!^ zkn{k;{sBM=KKdmzm+x;opKU-)XxrN6iUMq55TyEkhHDs|6}9|SO=AnJlaWb& zlbf|Rd-rZ)4QqyD1X8 z-=QhN%@W|FmmikHew+89RL-7yB1FZsxa=XNCAde@mlE<%5rc_%myOay&c*zS)!YRx-3OhF@9FSx@EyXha@+b&Cnz4@e5JkHBaH) z02+%>QOv`oey+a-Fjpa}u?SaKICU#3JXKEleV6cspQum!OQ9Y`!0uMN3;W&@pj;*z ze_reK`{Lz}T&cxNP^K zCzFxZO$%2S5K=!doD`XnS3^SzlY7987D*P<4QwcMp?6o1Ht|lqQ+*#-y1?8-n3@g|T3=4mjK{2cgJ0sLx(0H3>Wv34C5+p(JXfft+jasgCDMr3q@C5Rk9 z{zK0I)Y4+!M3QaH#mG_?W=8y!f(~DpffI6=L{!M0QkKM-S>MwTQFU*Ad4~E*~4!1eXeSw=H1e>_g*_)#5ho77ma4 z33wN`PPB-=pvnwbdqu$1b2%U3;Jt8N=V=<$AmiE3;95&S^0y@e=*}!KcD!P{fGZgU zmoonk$yL;%GVwOFFzBO&?FUmGffe-CP;AFMmh1iluftd#fSwd2`Rf5&(IMVuvmI2? zoqt(a2uY^SQW3m7`JEe1=3@Ku6Q^!MNhLnf?w@6^LL!#3o&RF`>Z7>*+aZIL#5zl# zJIu|~?yK1*D`L}s+=g~kg3JBClC+SFB5a2NjfvKBCTwck2zL|_KP#7r<2;s?%U^fh z4A;$xyJH)(hp-t^{sf&;GX+AR9K}@~JxM=>AaBzo@I<^(PS6@4ky@>M)1fV!#Q~_? z3tRxpJ57Jq&=wGo4 zZL)HgSjV{q?>_mtkYtH8kz_Re2KeI{r}~bBabGbB-{23Tm>{6tP8wG)t70e1=nmI@ zd?V;gj735308sf%48iw@4>Nl*QIY$uLnC>?^t%rw`nIfwJj>TBnfjW|dCL}`ZUe{2 z0&LOqqgo15NV{^oPq$~8oW{L8uD_2E$sU^@%p2yw53Ng}N~ z;K82ru2Bm)Ax(||B-7-s(C68?R11K*0^t;3^S1=9{!jY|Pe|{#f$}x5CK23e(~TTJ zjG~!?1Tjpiv@9PvIK>uUHm`Ugk=HszUY&gk0$U(B-0~~WFkB;9CU0UdC_cnfQD6=5 z_eLrcurG063jz5LJ~&PX;V)DezE(*3&bEV3VmA95!pCG$>jsn;A$Mm7zC|_w&UN7) z(DKrt09m;$v@8t#1OuP~^uWG1auNcA2hnfK1eX0r69ZE0ff!A-d6{djGcCdebgO6g z5y|5#z$sq{9Wh0KL>5u~_Nt!YMXd1`u!26meIUl`o={Or>tgI&$uKymZD8W*VSDF^ zW8wwC-ZdGJPF^VYpbySGG``$3y7~&;8nnD#rP@}FSRswnq@e03n)WVbuwuyo0&~U< z>;!)hZu`Cm>tmHl*suU6h+|NcG!>#7J?kssK_MkiH4M@#Q-HFwxV{Ga-{=>y+a1U7 znt>1eL03O7)zFFlE;=nle546cuT>n0f3k`V*eeB7Ryscn+f{KQbmv%Q%@qwg>xB2J?wFU=%3#*>~g(|G#wIhCrQlZg&I=;OAsCw@-C zIbvye4tK28?@}VorDZvvCE8JD&QF^JsAFEf^0KZoR@ie)tBWEt=>}Nx2PPElqvclB zVkMu=Yv#PVMkgB?^LrYMF8zMWqL};XWA=+SSA?n^FbH;q48gA=1TDO|H&h_98r z^9KJu9HPQPS}4|e3qQ^)7qFvFLeZOabWPa-lT`W=5+J>hE8VkL&HuE<_GzOYHu2A1 z7A;Bs#`~zfza=hD5-OI;^$qdeBSjCrqu;0~LqHdZMA3!_KjBo+^Z$7Tdx1BXOL0*7 zkpPhe&~)47K#Z0{RZRcve#jJfmD>Jy{)-4b&aMP{3FsUL0YE!vS+VP&V6Q;Mz`KPC z-z7u20e@-UvI%CM*_GV)S&~juA+)mk&bsp_GUhrQ8y{_oS?$$*ERO@qohC66Ztk=_`QsjqcaZP{oY>j%Kfj;! zGQ5W91YEeb<*}(CMN1vtZwJP&Dhpn&o<6*FI{c$c$bH2;p$nGfvLCfDYGxnMSl}vY z2=|N0n?lI5X){3^#al)mIAKHBgjinQiC(kv*p4oRzu|rvYhq!R|MHw0pvcW-Xn@1= zaSiLAEyRfpQ!a@C!BEg2aiA#S?%YwjGWaO971do%a~C7$&z>}gkP2O}M->HVBkEWg z%3P+s0c|X9rQPIn0UzaxWHIb>y!LiKzt#|9GtT4M*-`!i=r5=h1?V!Z4V!oKrM`FR z$n$Tmy@~|JxVmy#=Ml6Q)fIhK<4(rl2k*rXf|{=^ zP#Z)#D4=V_KaNbIK9C%lQ-ABu{J&w508)=b=-CBP9H*6@`-j9Uz0T<-PfKlft2t|Y z^|$>iGX}!5D)ds}QJ?(3BIjbKAuDZ+|Kld94R;8Txri7Zo^IU&|65=;x>xfyacB;q zG(&*ZFt&>9HT5BCT_Y&T?gP91~6+W4ge)YOp`=Si#Ty&VPAtcU!AN(BP7z8E*T| zKnTzZ%~l#=Rv@p7vQ`!u(Q)Wy4fFpD$h-a>Q!Md=Q7K_m?C6I>x8@#WXnNYNp%~V5 zS!6_`&-9RF1IqM1u_#UywW=%Ta{rSQVJW$#{H;)ltIg&;G8pmvsop%vKG&WREhlOr znWS#J&7?o)A$<<-|EIFh3uk{QMh-GpRyCEh1R z>Xbl1>31mXw4cgR&J#BVZL=Qos!VmDfWOtpx@rRS4O&!7)ZyAlD7N&9(CXt}A4xX{ zTKbzniPlDM6BA4#AcP*F^jZ39H;*M^61=werw`cTej&-C!gwfo^Dt_BH@`FJQ^ec2 z5-q7t%FOXnwrCZYdGoZ*YtU7sE@nib%w$eX=eTi0HLaTQMwCas?f2;NbBtY#&55eP zlP!oMO|xN6E~fL(@6Zn$X7mRI#Wu(}+J2LJ{pqgVw+&I+=dT9shjI`yTP6B84WO2Rz8q^CebojBENTO}UY;WJ7=4y&l;4%cL{{5C_~8}o z`C^w7{)-`+7!T-$(Oi-q(}HfS!QuTqN6OEpjg5`q3_j|IAOJdD#^*n7f)8$G%u zTb3Xpbf)ryszLClNKe_1E<$D>44+8~4hvowl}z@9R;+x2cq-x<3rKM|j`{MP1ip!U z7w?J~BK8;{du5}@Ia@v4lbt)8(;$)~vop@?VY*3eaL4i&B2kh1@R|4h;UD7&DY}wG zx(o6C*P8O@GjU{?q$rOe`fsvyIr8awZ8sCRJs|?_JCB|%dRabDTL678IDVY#GxeJ+ zUoUivQANiUXVd@nkFZzV;d7}52>WeoA_Lo+kBlbiK!&k4jk--~f! z^|(7LdGw!as9;#GkEj^shQm-3o&4I!mvau%qz>s@lmFCz?O?G0kav;g2@xyKBtN*$ zwn=W|BpMq|*@}cT-AM|k<+iMU7rqRkXGZ#|9HGinwhfI!Q^`uvMh46xn=&g1V@}&M zmPDH&zzGl4zrKzdq%8g*7gD6){J3gGm0SM2$k)qmL~jN zt=8SR+$@aApj@2JTb1^RUdMCGR!Bc0w0JqpQ%VU zBfU?yBIqkmnYweki_{-0ktbY&%!jBLsJt>Ucep$qQ{bLOSlF1=o zg9$pfk_MKfc3bN%fBT(=nh8y(gQ`=~VAgTEXs*CF?@1csWLLGIO)0KgHVKMWjY94= z<)7RkX!f{bP;;XHs%qxa4%3|zXO+sc(51ENFGh| z-xhS3xsM{b4u>gRC$e=TrN;bi!-Kv)$v~vM{34e^pc5)`LuR^n-i!FZJs1A=dytEn z7iI4=a$ghWk48S4Rbw|%9(W4$=fKdPmXIXRW)?g3=W9(-V%(`V^7a5lUzcLL5~(dt z`x8V$tK-M%rn_%=F{raRGbkg0b>kfp^W8U5yc;=HPXz+*d?wn7Og1M^WaeJ zZeXJ%mQ>Kb# ziuv#O9v^4rDPL);)VI3r(UC**>uSo->SVxFl8;WNn~#1M<+^Rx>;2)^bixpBVZTw) z`QI0X2rR^c273CUMS<`Qd+3ZgjZL(@eD86-w2?b}Zd5{Bz}(e8EBt-+)>#x^TK2Se z@C~GN^Xj_K)T;*bpV8gD7W$qSw?N;@@9osl;&ds>(YRJR_io zT?7~=w_P$u?};n`r*uKon(u{|K|st66)7A4sW~8!{5&*|@Y3wSC+JJ$0JS9BO;~FW$-9`8?*0 z71f`HCLhB{z6Xz?=>1kc5JY9Zi?H3PMmQ+l4RzB6t%gW`BLvD8zoafDVTn;2i64x; z3DIKivaZI5$P6#Nl`uU2)abaE@okU0n(uCGx|Po~Q?~BXnPvwo@ozjgKH1v65zu%F z`*LwVI)?#UCFx}J?Z}K*Bf~)MefHyA*`9AGM&iB#Yv7v^<0ga;bP%L8+DTc>PkBYH z*4m^$%=vUloahQ_80kHBzi;r!_+k6KXD1oxyN@Q3)Xo2a;(Q*&^v|A9Uz8Y8!gXvw ze?&pB$dAZb^fhDh&f=2}12%G$E37#7@sBOn4i4x*R9&Aj(-Vzy({1a2umHp$PlR@6 zG5wgOh#>l2S-w#@u#&ULt%7b!$bY|hRGpjB&5PT=c1!V=x6^!Mw26cJ*TBWh@U)Oq z5t39Y)Bd{9v2Lcu=Gn30pPSexH^4f08GS*ejYKW+4*1~1!(1r1nX&%CGxT1Ef;$6E&JgsXnu5~ zPj9+9dg5Ciw7qG5C*egGw^5(%V0^Q6qitbE!z0eWN%K!3(x%&mMvKs0>d}^Q-v8?H zjnOMQ_@qD=YMmR`slmQMp@OI6pFt7Ec)Y5ACpZ#HGU{BIL?NaQCpCU$X z**v}0U+k5sL~C=Ei!3z?1%#}^s1q)g#I4p%#5~q_OkF|^?@kZYK0j-~s!?<@z&gS| zF7e`Z+k-n(4q2w4cV1(rC=)8ELsy`A5$^**Oei0UVA_`n)Uun&yc_npU(S|ZvHbuU0aiP;ZjC<2m5lrpGXQ~|JeHj--v zpp!h%Zvw(ryX#~zDZHveE@YqLUjO(JaT!%aZWq95h{ZUg`yyGE4Y?+sSBAPJ8caCV zj9slN(lkqq_;V|awhpVxRNqZWRQ{QKx@Ssy<)X(+qu89|iEsSW6Z}Ii-H<)v>R0qT z;7_8L+#*nlOkiI!eT){EhT`5knPU;OX>a|Tjt~p!Gv%R^+ZS1Wu>&V{#S`~Y^_+9r z8n_t$rkdwS4Ykdo{VH%NK=n7+#TF$$4u|VN z)m^kaDzEJID#DkY6oL@vDI`Ot^ZIg`teLfH42xgul@|&Aj{aNzHkgb*RyeJ*5%Lq@ z`v!b8W?4R-J=qgqh3N7d&2C)` zf9sz|Op;@=)@9@2TIue>FD5W65Fhu}d0wp-dH=+8BGo&1xbB{$v$ZBS+BttuX=^Se zZdE-CEQb+eXhnG_TDwk2vVfG=fUukDs~~D3{kTw&b@{U6t(f&Qxv73imq^+$nYl*t za|;1e1N=So*MSr*lW_j@&W-oCy5thx^~QhA|7!2KF_(|<=?OhyYGLU)O*hPor=YJt z=M+rFfhA`i7p1e6m)84uxSa94TcfG_fd`*PhfO?xJdMuiO-AmC@|=~IL!NtnuEY3g z{*?{$m(+oSzT20#kUiIu{P%}cg^OyGVjpQcitT+)oKj>WT^fj11d1YgD-5qHzdCSq zVNlAY;Pdnu?bA@buyubY@~Zmb)dP2&gPpsz9sNypeK?8uQtMDzpW~elU;A*1)X#EV> zFy<$2t;Xt0CO*nNG(%MI`sf3e!_oZyTeZ3q=M!RIkEEEFW2zjHibJ zX8+x@869xTx^D@+P(?I#M{e^_#3~-uwn|saVae7w^dgds*&W|qIdMlw&RPe3GdB~} zznfv)9LM(3mdt7L_DfH)v+1GGOdV}kr|9K$OUFTV&sK-3Gz2w%HsTK@$xmz^GcLw% z<&iLlp!hoV?~FSlBT!4Q6r4oZjCU0TTMtS6`ip;;tRkigICt5aEJ6fo6L%*0l&+c) zN$FuRV!XlsLS|c{fcr7SUz5a1#W|^J`Kvhf8{OlEvF#j0Dp?Xxa_~iQrqYGnzH!q5 z&6%p8djrGnCem6Bmv#98kSQe5Z>xLr7!%HAIC)pyyiyNaQOlL#-Bk-Dh<>G?L1N^O4+9CmyTX5_Zyk* z+-BQ~%bQIsP7V&cu{;O^}(X^Z2cqYx=ZfK2Oy^rGeJwwa7T8 zm|w4Ln*Wq)(KlMca|y3a9<;T*vfPD>+8lQj=0C!kab!{6N%Ihej zPj3{DlDyfthjyM3Rf5P%p+a|d&o?`yPAS%!Po$-XWOV;ZH--5#ibDcIO4cXoILqvR zb&APVCc6^Mcq@{=R)4^-O=te1&Y=$%#A9Y2*mwr>>=h0qNsL3Fk{TtGj!29+oJ$=? zbwCiBt~O7W&Ytzc%S(|aJy&%UG)kDgW}dpx<@c3?h>glEiB%T-bu~Ggmznr0KjBjV z(!YVkPXW5EF%&Xzo+9lj2L~D53787-*f5SUe*GaqenwY zMEQCg0RL^*szD1U@`*(5c8tqAQCrUaO#LX*Noc3CU8=3;ba z7EaZ$c(f^SD)0?y5~x4y6QLX?esRg zPlT&v2CGe&tnqb)@+?8MjXTWR4Y4zmAO7Tau1zW%X!Eb-XK`I@s4y>{o#tlM zS%`0IcFH%mx8va+&U&Xs{iR>xv}T3g-TR$b{YJZPMrzf3HS@xnaCZm$&ub@F*OGEP z%9l)5M4r$`RBxCk4od7SdLy`r-H@*4!Ie1CtlGmSho7!BU$=76aeFKGshj1nT_(cR z70i%v?sB=(ri`${W_+&Fro6D6guzzq?U~h8{)A!k*!-lv)dqn*5&nr`lq3Nm@eT#k z(M{@8nxhc}GIkZeq|C2TF$FlCp^EY$AR=M%lsrn5U-s|>J&`HthwRj(fc(|D{=(Jb zW>ekwAjWd`yK_iRxXQiDH~C4|dyN^}DSG=jn?<^?`qXDHMu+3nyp$EJ)3Vclbs_3; z>p#XJqaWfn*6O|MnMHM_zc4rFM0Q+K`mYZ{+yQC7o|2}N)ZY7YR|adL8MXa`zuC@0 zg<0pYJM|sTY9VR`HP_A)>W#PWdg;m-QuhmpYBpD?4GSnhg6Lt_uy#*KZ1SFrUcP#+ zLq0Z-G>NkV5n0LZ68TH*K(;UgO%%z(tV8Mj48fEBTsH7w45Z8%GD4_Hi;+ zO=0)zE7BG}8sz(w1y<57(9+RTM#-d|dSlXMdX6qjaQSxTF72mkmV&)5af-m+S58!; zO=|cV)D(Z9-OLhnNt%g`FmUR!O!Q}=^O6*%{=wel$OMzu>3E`@=f||IKYCi_wh2bx zl6lm)cjwFfe&jwia76Chlf>=PxXq8f6`IcX_B*l4)QM`>IO5En;FhLd4UaY4D*3U@UFUIm#x7nmzG$+8oz^J znoe%(s^Uz2@_rWA%;4U2P8^h$HVc5tzIePcpV(21zqPQ>>|)`gthjIKy?fGrCu|hj z)9NzNcorU`bo1#o0G54gRP1hB=ERxz&ez*Ibn-N2cH7!?-V)1I=a0?DAcWIX@D(a5&%P*;S_Yln)fj57SgwUXGZU4t3k(Pl@&zGsNh-+oQ7PAv1?c95Ky z1NV%aweS8180~F$o{)nr(MUwqYMxyGsP+?O<4TI-dbq@8E83tasr24&n&@i_a|<5( zr58_B{HedlpsU&JrvuvI1K1T%Noqo_`Pa)P>)o=9jM7N-vI(hZ^pOAu^D4oM@)cvQfjt~IL!mL0;v3cqS=oWS`WbQVJt!rPI(X6&< zBp(L$d8ORn`H#w)5+Wzxpi4qJD`tcnIJ0LoN~1I~(IrO1fK>RM(b$G{5L4HZv5S>! z_U(E(gy_<2lS_?z6a22oOmPe9sn4-F_A|bKU zR=~~Wko#S*v~*~EK#+15f&Mh#>wdB_VADv{o$lC3TLI-qt)N9sGhKy`<`czzsb4n` zEd-+~M%TqJYk(*!HQ#jhwg}Sc zL>o2SiW2xv-7WZj8-W-$OR1}9R$DcqyZJjoP?GhEblF^2zIpdaQQgP@SV*BpHbnJt za8(VX{!mwD2BE>%F-C5K0iIC%W&TzD`Z6;gocm<~5y#(u71Iby!$k8FrV4-xJcr$OI91T|#yfD&@Xbq~oW%3dQe03eZwx6Z8lAxUDkB`vu#b-?^R{|*6OITZ1XCGT2U`>Sk%CdMJ(1|sTBvuus1+vt+O6=&t*z%khS z;bl!33u$hg8|Dr>Ai?-6aH=G34W8I*G1Za)P_@$H3iFz>@Nfwzr)u&df`ui<1?Hxk za1&Yj)VW`&AzwXicc{QWGjai;an{Ol2W}M0W3Jrn?`msim#@9vtvHe;xC>#?(qd9Y z{pqcdE+|JXy&_DgHJ_5c{XeH9ouk%7^1&7u%UNa;J9OpovwkGVfl5I1kmNSz6pQlZ z!W@6&Bt%EWlC30;Qnxu--_Izi`ReHNb}{VARO`IP&}m1zIn%6TaNx+p(+ z5gqQZFj!isMJnD9{Od`0$UsdH_i z0yKXHKVEdk_>1qXrs?h0XE^hSaaDTF3d+V%Q)zRiBT{1 z{Q9ZjaZ$!DL!`|C=`0Zx6fAzaaUmr}ACb9b@Yq>OR>Sn|?E*N`HuQuFvm2Du?PTo4 z_%NZItw+C1yfru}3jc)-64sXG5TPAf?*g|m|%lIs`w9@iF^AxTDgoK8$XX;`F1%- zDYrS_t~^lc3HRxDG7?vfw}{HR6o&=ApEW@CNCs8w>d&--=yS_9-&rGyU@wNw9Mal~ zzq4JD1$=v%mAX%;zQYjA>$9RV5XYR8_5q22HGn&B4ixlkJrMNZz$j+r139CR-mjnD zhb<052z5{T*I8H8k1IeZaeoPyf0!f;Ln=A>5^qo>0!)&qazcTV7qlf0cfDYdD{)wv z>+h!4?5$_6Y?~YRHwZ5u$u|lwS$!vpH8Fru$ZUULY(%2+VKmsKODs4T{hcB{diD zq0qI{Oh=!bV~SG$04Krq&0;4Km|1chh7SK*@=I4{;tqxm#lsLtQ4 zhUxxcD}F{LvnRQiPS-p+HF8J$Q}wrqJvMIK%=#Pvj~{^?VKyBxg6~A=>4X4bqK@$Z z)k_OR4j24HAGmZg1Sz3Kp}QWmwSUt_e3Rs+!x6n-FVaub2P0mJ97iC`QT3s9q72;7 zBx|GnQ);FFVmc98{Gm=B2_IZXq}w*Hs(4B?yNY*qV|>tA*L;Foe0Qdr=9J!+)&-md zq*D^d!i)m+oPPSY#|C7w4y%zcf?^+c$rR3#X6q!dk^)eoPC#Y_5e9erFpco%v4-FO zO5G|4&CG#w;@~&G9X;NM>?WqLEchZlt4x}3cz5JaxVy;x7Ppfs!b=t~sb2UWP zn{r7KZx4Zu8{-gSs9i*LZayT^ap;K-3Sq6vXck+5UQk{~OufxwLCU_+&z7NM-MB_)( z;t!*c?PwD<+PI(VqI-F!@Of`ndAq394`cm%x%;gtPV*kmT`idr7pjb1;<)31>?u0H z@ihvxD_RCPtY-8Hx$ih_!v%l&6B_5FSi`_)dJ?^PNASlhKfK)d`i{#Fa6JYg;%-?t z;Pj=W6lKQ0{B{w%Twfa8)9lWLWMkv#u^&~e0q1IOdV+5Z_U`$G0(K}`3keIdrA4vp zd8go!94Vf#HCcsmCJn41a33cmUOVq58<6lh=uWUfcIjiV+ z;xZWDd-qPdS0$Xt7|Bo8Q+dvP?$c^_R;w&(aNVgz9GNB>!h5fSSld=|RbZZi>ut0J zh|02`vvt@};b+krnZ2W76W!-4bKA`I>mRWPPDWw{$mT6bEOjp+G|Nd;H$_Iu3`)HBW&G9@tUc)o+}P%P1)yKRrndK}>hH z|Ns6xHp2O1`hh}j8R}qO<@&RXu>?2HmxQ%H#GlcUhdFRZX|G1b%6tB@M1NL3)it|} z05_weqOg!|$IdsOBkRY5}8P3_wI@>sT=3!g+trjlfqVDApa zTRy`;J+k_2!RHkxZ0N4pD~@JKp-T`1sf@n;KrD||@r`c6+chy4Bs?P{tt)pAb0lA>3D7dIr1yo_P_b4n%t1KFgMVWr z@duCB7ot{JEnsy`gC2iwI~Inyd0JHjpG4nQg`ZX*ahS#M?@kYvkDt<7BHD^{Z>4?)6MFTRA}=NQeu@zr z4&==QM8c#d$Bd{+HQa^eR)ivG#k*$X)PHPo8x+_t==W8sd2m*8mH&SK^p~*2Wn}0@ zL~nNPO@9F)%FW9AML!eA@eesndV8OP{GEaeuOw=4o4mCW2XVcOoaYS7!S;%VSNFx_ z^aVvuX?#z%)eW3(7y0#~spuDeI#q})j1$!RDzPg#+!uSi_qtBqGP5ywis6wouep&- z@ojJUQhsV!`3t=4yx#CIKFkYod`wXVN0*o%M|*7|(Wld)k#2Ez#5UJpWVg#Cw>75T z&|Ib~-{@%}!W(Bc@qHDZbf?z79k9|#t0wA0e-H43MaYBodrv0DkadTt#yIKDwJh7P zY*BdB$S2RClI(?;TSy++SoxbJJDA;}f&Yf3kL%Ba4 z-QF%GcH-x>`Z&y~_>sIyJ>+pUe&J8hk`znl$psD}et^JB8O|Yo47rJ7e7f(^M)B^2 z!_*qGz$kgZwO-~#wx;Q+0QCK7|!vvmOG(~8FQmRLN5FL8yjsc$c$Pao_`C3xE7_Y>FgPh+Kq zrwL@+U8IIDOuh8@CExKdOg+8MmLIZ5ZzGiw!$3B-3z|%M`pzbE+#;W~8Iey4B3S5s z&H8c$KS}W%gpW;C{%BtzhCgS<1PIY^N>W^S{VwRQS>}QzMWyof+Wgnf5+=SIlX=af ztJe4j3{<%0Y&jA@(Nd3yMazy~J$W$oG=z^Yun>Cv27@`v0KvH=#Y2C*H8PR=!6WrY z1^#;q>zkHxab%RsDsXbT<}K*F6A&ekF2*T+c=3J^KiJPCVG3>m#B+-(p6HTLl>{YS z*#2dtM}zU1qh$O?J-MGD;57vRuq#LJRSKumIDBM1;Cwtd*m;|2lUn*y1cg z5!WAllygYY1ZoK3C?@_0-mMJz?Ti0YlggCgWblc%J`tgURH` zfpNz|{B7*dbUQ|}ui6qeMzbAkE)br?6@}Os;$M^n-&ZrU*m4!WkqC(Ek_d?d*l5^b zrY<@2&*dPRJ()3eBn%OaY0+-%SrDweCLrxTZ4ZoEPn3+SoUl?;cXO z3NDwuAaV_EG`NC)C&e+aj)12()bam<6vY%l^R-Fl5LC&|$;X=**+5YIYqps0V7RL= z+$^~uH&mT&e3!m+#a^T;dvRI)gVedCp1~p&N&V&mp^k z$pQA*EQ{yfty`V|Y&ZmdNgjOyb@0ruu;#kh7{5@#(n;!E_lCC?gQYzM*7p0veN95$ z%WbQU7Mve*?MgkCa5AtHBssvADQ_m4up>kB%pw|7)nkz^b%m$QOH-M6cN3jQWqp$# z{cD|YAn49MfbiziUV?UPQonQn)f{3kU&&#&UiyW(h(AhpsQ&XP5tfj~q><9VzqBSO zD%&S2V_KGw&HL;2z=0dnBYSwg`(ahUJ>&pqCJDQ99jY~WJ6u$Q{oopWV(yO&Y*gMC z@eD(xi%);_x3pY37;iExQIn@6(+R@)tZ)958OXo7PR^9#14Tf5tz#sOfWOu4|L_Fx z=|{*(ZhLOe5O~YJLI!Z_aNUKtBYsABr%ucw$wS6=S0Il7Jlf%S+wa*h+YhUQy70k9 z)kTP4oeXX@f1?=L6M>UX6F#fbnDB96b8CVH-qpZ(6!6ujn_z{AYdk~vQvOl`E&>1B z7Z44Gx)QYPJ|HftI0^4THu|EjXUs1*e-kGBqD;b~G#|n&lOnSZ<*QRtp64m9zcyhx zutpEYAW*lw8I!>mA93k6KsNT z9=mP)d{zMckbOwc<(BR_Eoc$8=u}hBr&PY0u=*GQG$F-POGraYq87U=_Bu1m*E9jC zyZu`vBo?)(1mn}fn4CgJAZY^M(SnwBSw?(OicmMHDva+@kBI>Ow?5!Fwy%neJvFf!*(+HBW!>r0_0A z&+v^}@`b*4P{k7h9rD1b$QfHgJy_z;vVIQuCH6tX60@r2<&waVWj@$8#={az`3BYC zml%V%^PZ7YjOGr_7maqqFZY)?ezN%a+x@t;$DE_9iH<#Cqa;$InuV6$!bqd2?{in7 zS4h1_*C^6(*0Ewc79tLh$HT*r2V1nnORa(GZc%M87Qkw22;nOdsDnywAuxUSPXG&S z>2z}R!0aE$&7H2;@I|ne1p|*8l-l3Ig&ESc6`i!#?6KDlO}Y$-oUcXF zn|nD3mDF9V2S^^xhDo3Nbm-*OO1E2cTA=DV2mR3n2(H4i=;x7WX!1NuL_*9eseFu6 zTYv_!h)QX~$EnYx5^fBEe_Lmx5~xxqeCeO{B0&dlsU(UQk%>TkQC!jAl`bin&*~*7 zQF-uZ?E4x__W;sZ4JErdEadz7(3~_xbN>NhJJ%{Si1(g*GKNz3zo(*ec*&PWvu;;- zt;fIuk+o

i+?RVLt;WIbQ=AaCc@AavLo|F^7mpZ^L7;2qcC_rzB4mu2Pcv`)Rt> zTJ$XPI|mf)sK2VkL;dvIT$=)KK2m_REML7B4N0<6Lm`mJ|0#ePWG}#wu+ZHbJO|w+ znNwM(2u)LtjF`e1Ic(3+eNNZ(;lka2HUwC0}MgOXjb#)#&;PHw## z25BoC!Ow9!T<}66l z>2u$m(d!4LsqwyQKS_DS*{kN6T*UhoE24CcN!W#Evw{Rt#)Il!-W_G(Y91)8bfKLM zlhaB25D=)=e7P#78@q&18AIbV76BB`6z7K;y-+WJq837{F_;;J$}${-UNi@F%s$jQ zW|0OTqy%dDeGQQaZS<@Fi16UPc|Tm)X8`st6M~)pHJBfmb#8QC?SCy=<#E1+>(~EY z=}p~+v+@u=eq&PbLV9@`uXit3O+p#+%CeU441+_@7xCSdJB2$X;SW7P;(GAJp922Y z6sTH33*dn2ES$>vYj8s_Z{$}2*eoIFDlc>}b%u&&7F4W_3qf_Lw^5**YZ?0EzvfFd zluLlLjSwjN7ENZF7jFu7-SNy8KrXz!Q2351CA?it}5 zk&wq3hVZx@+|Rs%pYqAP`i#VQd&gX%i`fBM&PtP71Z{WVV;maZ&zzlrf_#ZZ(NDkm zZA4%rPRykQS7PL0F1&sdKGh=g6?K$%gTdB78H-YkRsl~SV*NM-7- zQ+Lin-`z6xPqE_zyL66uCjS{4Ger^<3q&%?MQFjnS3Ih)pbFKpM9;blf1@%f`0>d) zZG5S!k{YKbpa&jK=Sx}6^tSWbhJFzD#OEZ|&VHU+-Q%%w#+kTM(x1UtXYuVA+ooxw zX!Em<`L}X=5!D5x0F?n)<=~ib1MI8xAyNn)s2(Q2!hbO< zKG-9F_MgGtXhDajiLu1a`O2#g=r5i8xUV}o>HY4MySQeJq})R9;_{c~qY{i`p@9Sy zr#9Rw7rdK17-uWmj|e?n@z)=|J@T8xi4)vidu0ok2NJeY9@jj`Un*DN|DF~VH+$m! zG5mU|^A~r9T8h)!8=D{YTtbi+Y;5{3PriS@jzu1O$epojb36XM?((+h@X;Odsh#yN zAEJ-;wo69`xk-Dav5cgGce!;)I(G*mxcOULCdUqD0PZQy9m=Qb>y%!bx!P1T^0irR zb=Ygi75Q+v7zxH7n90wneRb@-VW;bk+f4X|I5#eMPw$IEP};MQ+p>j)?7?`Zp;rN^ zuoFuq9>>p=3dto(vA|31H~v|ycr`GSGbauf{yZg91l#iH)ME(7cpY7*bx0xJry>_V zeDF!aBw@L>k`okvt;Ew)j%Z;23Dt=x{KSwaf|=B1w@$^t{7e!z8h(W`wGW-B=0TY{ zfOVl9N1snQ1q(R?zu9ggdZ8k9IIY&H&GzbE%ziHe_qOn=}uwvqW zEMw#a!Mew}!`{jG#FzL21TB160TFhv3}GqTNNaE$KWjq5@tJlNt7KEi#i14a!H&dx zBYUBj@hOU@Bp(^ve5up<%H4Nz zU*a#|zgY_WmG=p{;HDd}b(CAQ*|fnRi$1+Ss7l!!3(Fl1yi$H}rowxR_6<(_eXb(p zXg@;VH*mwc3@jx%UVx&Qs^l2e!K{ukNj5bRMk*ZqF?{K{W7hkVDwj-1k>N{*L5#@s zP4>O*-(uu3b%+ryXHA6hztx7BD*B~lh2JuWcbVTmbLil?|Bo%LWG&JA^zpRjjx00f z*=O&FuhSk)+pXxt0;3Sa5uQZ%DdSh~8fXZA)hsaA5LTSxlsLR2KC%w~Ys0Ojb-_Dq zVc)4d5O02-r-(WvT>XhGAjLwLAW_~BEJ)e0!(>tfUayJ$?l*LMrs{PnH@Gu2jQq-K z*xR?-|0rYkYr<+^rPO~|nw#kPotg`yu({v7BXVb4M7DYUt~kl+URKwsBS|Y1VeJQN zd0WkM>!|mk|5>|{>?JmH`{uVR5^{}aujm?d@e0Yc(`Q_~nD;Iq(F0K$A!D=Ls|t3y z^eUT=cC&bF@+IO&M%JYo`fhg$x!-cwbK&cVoXU5~L^%patRe&i&*38dopzV~kJAq+P_j}*Ht{;#w4loURE-K{yf>y-R!ezO%)#I;wl zd)>B8z2%peREF$pIxXk$m$0u{<(0h&h;&I^;Sy{Oj^N0^kXP)t)^dVB3z{K#0QcQ3 z75Vk^m+IRs3K6=XAh;=ICJ=hs3Nmi>I3K6Q$RAy1Jp0-0#>DJMky(dtW5`? zF~lUGT(Qu*L4)dp?}Q3V6u7lK|JI>vNXaR+G5;yt3J{+aqJ_ITK@vq!NkU{}jN-c= zbhh#!eS_Sf7esch@u4Yc-n-yT+gp)*tc?oRJpcGT0>V>B4d`2Z%X#ESUh&}kkQ{3Q zDc2iY^PG-@PcM7hs!vS*LFob9TnJ%%vils2vfh!bEDR3|^_j3dx<+myK^Lnrb&lAV z?O#VBOai5wf8vPv4saBz&mx*wkz|rQ>{|nrSuc1zpJpcdM0$czd;o!%`IQWV+S#3i zoVhiK*?S<4iu-VBxX?-uA-|gSJajS}pp1P$ZKW%^IreJC(xA|C5DNkLCqyr3Wni5P zz%Fh85^4I?5tB>kRgl{n={rQg^z7eHB1CG9o>K3>;};1^iwfmXT3k{Dn=~d&5Z;3r z1ToU<1YR|VWi=Yq8D|U@hL$r^!-neaUBC^)z1|wwV~JrSw7^ofuQR&LUPihyd+JOP znKg$&dv$e;o>^)V7EtdFlUa^{e%PD^^j#i*)75WC^NsVVEK?8a7BzX}Wob#kYkfIs zl(3CDrTMQ@A7h3f^a+P88GbFG(yPz_mEQ2XU`DD^PzwO`)CzO5HwlLIQkCZCBRvE& zHn&2nWLB7^{Scg(CRwQH{8fBb2|P!6golpwfC!t>X&t*4+lXS#Fm<(>lLTOmv2b09 zPY-wdq3?ObsJf6FhmeaQfpHJgObeaOIdjneFu!q2VzAxxUvTFdRK;e z9EP44i|%cV4q_iu=iCA=t!^&rCN*M&ENeFLl`Kj^#+U0zH?nn(998xzGSWO5x>|flDVbOkM;EKiU7S151OfAg>43LNdFP2ZIH#=0J4RcIX-guMue@E9!6bi zr?6r-LrYbQ|2w2S-7gn3w{$9u)lPJuu%}++Y$#R_oa!@%?UDaJM5G>|X%`EBY=?-> zn;?yj{p!9p3@JDSzh#9GZ$%U8X*B65{6KWjGQ)rnAggpn2b#9m01RJZoP4FkPz{sf z-)n-o%9Bd4e(j&KCPWK=XyEurnj?Lv$@-iO@udV_IO6M#Nit7t28$rNs-?Da?)L=S z1mpyqQcT1-9JsWea)gyd1MUj}3gnIe8Bg&4Xc3{@Mbwgk*`-B82WmrW0NUsUo|g4j z=n~Rlx2=^=APTs_p2^uWGrUr|1zLgDlQ0o_ke?1N_w`#L(qB5jnn6|@h<5&FM?Zyp z>c2%nh)C4DZZGJ)4QPr-ZkEUwWtcj&e+Mznas2P7$}@sUgQ`_fRJ)l`0tz2GC>{Q< zYFyo5Uz5d?;p*YGRucR>&_4T^zq-E}19$AtGCcP8GW|1Idrxa&FZY8ql?C`i2Pg#f zBN%I=*Sw{(IhjtwpZ$TAsi8D!P*8Lax@)X0G#>g=V|O-|*1&kK(9;D@k+s{zrw|P+ zJJFtrLheA3-Jo{3$m5~)fv*bt{}0MWk|b$m?6{M}9cJ&VbE!YnQb^H*o4DksMMeQL zo1=&%oJ+wb_!?uV>RFnjc45z0^S3zm8vcLmy=7RJ+qW((hzg=oBBCH=AfR+ArG$cX zDJ_kNARwKJ2q>t4bO{0?-3B1FK&vQ7FGvCwV;ssaT^C_p0Mat-?yObsk_fb0JgqnuU>B z7~!e%&3o*PdWaExV*=nK+I-cZDyz}Y!B~RG+C$4FV%(Vae0Ums(fT>^zQ148i34Bs z_+R^?tE)e^Tt2ufgCh^EF~1?$|2IFl zJ^VMGS{1-G9CV{}`T7wExQ}~=L)u(?`i{IvTFz~TXp@a+{PXJHEll|xR;@&zTw4=> zdSFq=2t*ij%K@RYspPXr3x;EB6&k8A(Qq>GQ54834N#G`XdB=5&tO{%2JpYrV=m+kb%)m5(uIe8p6B=vki^X{b z;7$INhSw#G*2Y2@;K>wSPc+SC9cLm*ot~ zP~hjNIgktaUvSs59qg?yz9xQr4`5~?ouFu({E2^xx9~)4=gao}q~+NXXAk02QM?6B zq5p9+R>%YUuJLU^k>9Z}xheqI?7w@v@cLAc#%&>j!DfKyd}tQ#0o- zE@q% zn0csBV@~alpIs!md@sG!X{!$ntp?EurNIda3)qH>_7u~x;Ijq9UUKc%GhLyA0gl4) zUvv}@#<+x*qT!HSFt82ck@m-cw#@~`Wy3f^DH{yKe zy}Xrc!2EXDLl5$MNB#hScnIpA1NPf6gw7Bl8^e4A05pYgd#0cU`fLm7^QA_o&Cf#v zpsU2eCJc~hkKt~3cEpAfMFIaC967`cD5AAroiRqEjZr6I6+RDzWZFr|ncgULw;u7j z(uX3i(Aw1bA(y=!YY3IC^M{}gXK;+t>K#86Jkcc@;@t(1&0wi;o{W`sRQ7&g7@-e- zGy}<|p{pLi?yyK5)banfqH2_lCbgq9rifW%ZKtt7wORXLHZbOhU%xK z$Z|~djK~fwM-fiz%Z!5($p5@lad4@!JE5irpn6*&GSpI`Mok2%GRd^!B?*UxZ^xuw z&evJY@!KzdE*yg4sbdCNNz`dl>iV<_eQ? za7*DHQ67|GuSUu^aAj_CBp7eqTh0|-Msq}w2xFc|G1oQnw75~EfB_h}6^+(yh;*Lq z#gA+vrdu_oje14KN6#NDl*jBDzVg3KaQpb+z-!4Wjekra_=^Pqr+f6+|C-Z1FW_i< z+q7MN3LVuPr^|)jU7@7ApeWUs|8#V~;y19It(q@)$A|n>mC%qZRxyY{ofxIHei$}7 z*zgCbQ&N_JK5Ri51jn(IO(IBn)%4@bGi;4)-MK)&=m*lkq(PKP$Qq1mZs$+ZI4`>F zQQjnciEKDB;UD%2ZUD4vgNToQxQ;p5zZitBH+~3veFWeH{OPW(1KZ$!H^MAMAzhZ% z_RMiSnU2*p8hOF%^<}8Do(6)L!Qt6dCjQT)@W^4P&acq|p zz7+M*6GFVs;*A1kc*;8xNZE>&BbQ#o;vuOaSx;XmZX*!?53Rs;p|Gv`_S*H1h}6H-dnbH{8C>z z&a(TPRM%zy!wBhB_pdfGev5no%pRiHUjm1y<~C%{7wXjMj9?2}e#S21Qnz@0g@n~~ z?S})i^t0oSp&dR)KCfya(C8EHAAfn`i;C-_O4`}2eQ=bkP%HL8*=b6wR1Bzvun-C` z%eZa3OsJxrSYIGX1Embnvr|wIRwP;n@ggL3oC#z!ck(GtU%%wzlZB3c;jx$It9{NJ zW;L+AzE-?Yo=CQC^6O!q>k+>!J;SzWTw;GHJ9#cj9^ zGux$aq$sJ>H=xd5F66{|49?(^dZ3lvVt-tu#|7iM(B-|2`uhpJNIf7AM!mPe?U^UtOy`fpsX_0w zR(fsL=v8ht0Ynd|a8?9K`Z+$8l4G1~yT410{$1chz=<^9^MjQ~uuVcwIcN^)c1&5O zz-OC$&?z$lztQRu>5KNG0H4Fp^61HPdZ-aO%j~l8ItALctI&7t2{DW`hMrg~QfNc~ zY`w0xWxFeBxiCJw(B#q9TG^f{oV=7lNH_TX zCuemzUC$Zyr1MQjsETpj&LGquPia{|9d)F|ZD!TiU33%yT zfGG3K#uh7osZbT=5_2yvpLH9N4x#aI_||;%{@IsD&D;D@x`nAMHc*1D{f1 z%Mxkq^y&FaJx2T>fS(i+91nL~szvb`CR7C=d=7ZNXFX-mOzz@>wxtS=%15p0N6MSv zW=1Kv`X94*m%*44nf3%oOyCPRNwXQlHkthqv+m1VffjSfP4jcV45v=3SfXz0ERyj) zrDmG*VFz>&Ex&KVieKJ=BF+3}a>xdXi+n&$o3yiY70?~sD|a(Ktf4lm00%}v3i|F! zYw0OA+nr8Wr}l$>usiuPkdNrgN@JLdgb}bO0OtP52NyuM+xOI`P_Q0(bE8BoI{9y@ zKXaA6!?`oeQq%V55jA*lLeW5hcP)lIG3Nx4Nw&WB@X+B7ta4hEv(2jgZf<_!iQu`(RC2{LIs^_>vk;`wWv8 zu=ohdECwzX1*5Id0*S%nq!gt-?ncwK#HsyT<#fcU&;D>WNG)^Riwqd^TzqZf`lB3| zy!fGIG1ogr<+S`h0tEI~0gcps&EFZK&Z0{_oQG9kK8r9zkSI7foutolIEuI$aS=>t z;KW?6S`O_dh_*dJ{1|?yF-DweRmw&PrNI;PQ9Cn+@x3by3nq}x(H8bauPS+0FzlAW zI^+W7Lupp4e{4YMUiTYQN;<<8QT9R*GT>KHPkY?yJ;~9{W{^HF0}nSQG~mbnINoNzSyPJ30bTVH z2vJ^(!RknToTHFprnI%vzeX=o+Mh1XtHaR!`&QwBFF6sw0 zYId<#0rARWLDj$s;=j3q5vUjkGiqY;Mv#x}8tY$~v1+uQZ%=6E5Thh*MG`90pkb|M ztuFZ?$q5+6Urc25xoqNKU`Rb<^I0kgW!3mJO}n$&`pH^X_*X>hOH3fP-z0R+eY9hu zCeqzDuXT&a6-{TCwUPs+|0Ws&ZgC)a$^rl&*ZJ01JZd`p^5AfTJjH46qOn1xh0Zqa|Q$3?Dstf-lKgpPq?dOo2Z;%KQkb|UO zlqkA4P$@poG2cMDnXR5FHGj}L>2#~oAxL46MHQP=K(|Bvql$~7tcu(HW>yuoJ^>Pq zZdu_?G`s=a>Gz$mKwl^vcW2co*>?SD%sGL0!M~dl1(c?vBI{ELa3;g;<2R6KIi0w# z)l199qh+AOJy4eT4yI9wTCJEu2!!e@ZP!d(z+Dsw7~i$AQ~J|-?BuVUz1=O9L7DoA zX0V6UD0}Bk(2F$PT=)hv2ZjYc%kq|Hh8JxDaldi%t9vA8+C-X4;O_*_3mtEHeGWSC zZl{l&D{zrsTsj%$9fHci)EKj@LuMI3&O?b!2^=LuZ3t8k-F2tI;2GWp3DNORz!jH= z%AC-P80a$iP2OwokstV^n`uI8cPVJjZnAHgVi_S88}9(^IZoqY;ZnG1W3KWy+qO@4 zF@aEd78hy6-cnFmzF}bAAUN|=-1q?PxyjIw#IIVX9v1m6RVST`bPY(1@c1mPO94@#-o=Qu2sF#WeXO zgYxw4BYoK%#R8|Jr*j570#}=ZhM+AI9wy)#ZE7#D`PDTrQKkR%t4F@7PqcQ@*1u>m z^yTquvX522rGk6>d0AjzP=>%lba|lwb+loHf=Ki9m4NAeSLf<#hV3&TxYc!Rzb)!2 z^d2%c+LeObc?cSvfMw694!ky7TqEQd34Meh0@p7=5jbd{r8lxS-)s*y-Y~o7pQ_)* zIjx#i2qf~X`kd_iK&O4UQ(@-RSyJfob!@EY*>u;`%9mLdek#({&hEOl z=}rn#_FiBm>xR~6^Ow#Fezr}!G_&IN9O^YWKXX-Xu+*+gmav8&0I{L#Dh#3GxpzHB zFy72<3R=tL7jPBH0PHv^6itHVhr3S;r-o_g7SeH^yHF?}|6czrf8yZ*#KTpn7DuPh z<@$rk$y3P8T(1CfSq58}y%?IYbNcs<0%RcIjEWIfL&akY{K^2!p@98o;7aW$!>_p7jF{o;WHnKmZAW*j*%9*o zIRy@**Fmu7%oVp{(Ob(Oe`hH{-lfg=eI5S*>yEZJ9+5ZC@4KJ8{h&SQ>UQb%n z`fDegmV>0e9JL7c!3XdbWnd`I-(PgC!%_~W*|wY`fV}X+(U+G|wFzia69F9QZdR`s z$pBb*`Cv=4(I;sCANYj-Ypeg)R{yW9{%`TCA1r$a>E*QnJ143cX>w46JB0lV&wVrU zWLo|2Mc1o08yT>o9+1c`&Z%lgYa!Z^h?Vn8vxB`t3|hZT-V z4X6`^J{NEpm+@Y3Q$<-mbU@{RTN!goFalG4gZ^hYrEIzprXq~OhogBv@hh~vjOobDe3nIbInykUEYUtX}RbOlw5P@Gh{lT z1pK)|W&%@$#3rUTJa(EXbRUk0UKv`;TKk=C_~J+KYdd}>{Q1i*tRTQ^7BLLokIIJ2 z4l!?Uza_f155A@%SUfu5Z&5|w z+D}@P5m2&R%T|~Vg@@3R!b94=wwt1raO;3;AW_aDh8Px&`JwETd?CEP6+bU@S5Gry zU{UvW7;-t)Dc!7&)bvi-TO5?W0Rm_P2-Lp{OoR&>P+fI!H`00!5##HQi9TV77M|mh z_=p?=LSnF&Cf(_xBUgo*P63+t9Oib1KaB3f#VV*7#7SXs3iFY79zc~jlZU^EW zp1HK@r3wMiv-K&&-gXrdg1vNoE~@YsMC*1M=T^y{?q&Pq-zN4!x{0`uj44drydn(Y zAiM$*&ZBjj5H|he(g*R@Z~<(~O#;HkgF5_vt&91;u64oM6XMFiCulYpvHtT3BCcCy z(8k@@2yi7Y2#|9XdIrDv&8h$D+rfT~?^;~IY~%eSP@WKrbngCFzZxv~FB)3p8dxyj zwpHoBeechZ$rB{|CuN&#_+``{Ys|}o&vz9H1z>m_^hYq8qH~%$s0zpg>PgU!R*man zR)xMm_Q!-#+yHs)fE>q_kWHmJ>9#~8u%5qFXS5NY;31;tYzr|Zs&@#6$tfYNcnd!K z(g_9)2|zykrCu?-eaKDc$N@_Cd#*_%m3r+^eW2n}2itH%THM?$a_{fl<5g z?-;c>gm)C++;DL6Vmj(VZy;Sg8!H`Ug4m-;r?F?nYK(q*H?IWI8uv0) z1M|u5kTCLpGHO-cKlX4rQM$%^fZ9Vft+itLlZgSq&ob*39%U>&|AE? zgeA0wdG+UriZ2pubnzeO_65M!pXzFBF*ZpHu0rgrRiXO6K0*(xGT3DD`-CCP!)YKf zB>2l5Lay?TIDo+0p8neZ-HSlU81>-?0NDTNHy59lZFT%r^B&1j^obJ<*0Z!8(9bW4 z+IIfM0>C#Z0DGx6Ajlu{$s*L?_^4~FG9JR3LfJ^03D)#Jt&||@*S0-_9%(>{Mn@kU@MIIHUaKC-jZ&0KRMF2hoV5$G3-vbn%VgX zCq-N@mJ=RCF)~;Pv)tX4q{8d~6g;)_5?F)H!L1Dcth*Gv<6SU5OxwSb9^R4l_i}+U zykm|;hE_JbqtR`dY9ji$ukbWFwei z_K2S>-o2_eSiSwdKjfx}W7~Y0R7`rGIh6rUab&oCMH+0uMxydm z21La=R9MSMS44;!$L&DJ2uXS}?X&sO5&m=$+{jg7i*x9)Zg6|Xq1&??@x6{-wDwYi zpvGo+$hWHv#kEuU$}Z{5(BxS~g)gZA|+2IJ*kTBhzH4fu=vaBYcRYE_{fKJ%oJZ zR48&jsF4wd3&q_R(5du{YT!$FcR`)UnC0&?THYNp+vcvU62?3NHydn`{KVe^9F${p zVRLAS4=Pon9nT6?X|YIaZ>Z&#%(Bg^{)pH|OrxcXcEm1T)G7^bqr)tbBP`K|y=6{1 zBpeBP@9nQi=nZ@ku-u5>#MY5~8kcSW-1eb!ZU{ zMLUOa*wnHK2WH(Qlyw9BrH}zK>johnR%}yvMRtn+;1#0pgIC}@>;%5%WHbE)@6`9I zcS-+5C=YN^vc~AH&w7prqhTRLhaM)jS;vaofe7oGtgCOO!6Y6gd4XoY zFp}tCJ3i&L&Vwn#A-}pHjR5pea~qV6LAxN7jhCOhX0?P)fgkZd%oc<>KJ+<<3bH$X##!RQak+x?Yheiq^ib*A z@9SK=6^dm4o)tVb_x9qof7+dO%wXXEO5GA|PjJZb$$cXqF!1~nZsl>|@0Jm!!fo{r zr*Zfd=$gFcX*n(kFS12WraJZ>bWLKlTTWxlt?js?cdu$`Nn+yFZfE&B&4A3p_-nNL ziAZPVQ9w8@=7d98()g2GLO&;5aA{s%5jtm}@=4*e=_|B>gLpAfiCSaRH2lZqzP{4$ z{G%==Pv6z3$I~5T zYuNa1F-Ni;p%W{#_E14sOAW?@6EuE2`FHCMVYd?v^Pl(lS5R>*B!gkHB142xhR$0o z>;juu*#BnWFAfacV>lBZV<^{=9jTk=-&qEK5KD!9$m+5X@zgy}7fgsE6fN+NiT`L? zALpG~`5sX6Psl@y33*7%z0Y1#C&3(VI;aL*Z55#=fQt`EJU-EIO9{VvTZK6lwwGnE zN}Ft~#>Zc7R^>Ler2phVdEp!eY=AcTK3pj*BoW{C6>45XWuk*juutxPECTYi;gc)EBs7CW1h#Oa_b`8R7kmpaI7*SqABIANq$o_?&x31!w%Y?CgHcViYbgXY9X!dx;-AGgV!#zgv zY-eFlzPWpQoVf&OEs4l!Oswn9Bzu($vnTQIikAFy749%A@x)G@Sj!$e_3XijTA*`) zLpJA+8zcSsl;X-{+Ul%)`&NGEGDO?s)vaSlKWA>et>`pV_4gBl1+jx9a!jhi=uRSz z&i&Qmd-WYbj}}@(zF-fu2RfJsTq@O{5-$)}8!e$L_33|l5oFO0tn>k%`P)Dc)Vuaq z+f5IIy7t3Ap(YFr{%c2CICJwDEn&;jY#+yAeh(?Cvn}AFC~n(K>3)S@aFn9>T&QN? zdSDzCr#n-fhNoG;!{*}lH%Sd%1(@F=R13y|w5BCd08K=7tQsJ9UNm*fL~gb?!Cn_+ zlK;#ZH?U{v2HQog*^byxp_ML8lrdz&taMbBhm0vrseowgO;fyQ>WhWRH+A1dA}{h0 zWudoi5_S%Rd9yQxz^S^et7FP12+ntKVYD{Yz-bab(fRp&Ex&0&g%;**$1a%qtog2U zJ*j@*dE^$QN-|;9=l_z$178%N94&vdYiU+WN-A#F@ET?8JI&X`Tc) zUXv7D^0K#8p(*|Ooyq;oE520t%<{f&T4;fiXPuGrwuksl1xD)-?;mrzw4wTiv11fhL9jp`2nYK>;OLOs<0HYw8b!?PD<*k5 z%`->x6B>Wy*D&te+k4$_6DA~DQL!XX`p>HTLrGt!fqakdRCc)xoDk=#m&$e*A>X4v z%YkV)M$7)QX$|SAti(63l!(z=*Q>ia^fh?lmk41F$!Wf`H%oaIA#23q_IXNbzF@?M z+^Z`Yq!i5MLUcFbmYy@#HVPDkg+)OL<`8+4d_Mgm$I(GSLE-61yoI{cZHG^&;)ONv zo8rCbi?Kj9djNEn&P{4T!3RmawYeBGEF$ zpyvfzsKxVfHmLu;{@X+hdTsGO`ryhkl)N5IaM8%*$rEX3HqgAHgfrOXMmn5|`2wP0 z!n(NHN^Y|8$?N6$-q(Lw?ME2;;Fs#6!&4Q(K}(WK^ZCDoeZ*I4g5XaS#cA{#3#s)D zQ!_eM4ZAasc`ct|%^BD8^I>cwb|5xo@dwdR)hth@ z*h)mOumfke$Uwn?afP59_4oWeYYs+2wx*!V&4pOj0IzwBP-NF4fp4<2P(gsS(kbkR z_b%B=7w)k#sNokRTvHQCn3ciocgKxBq{)I95x@DF@^^H7%*@@6Cx83s%czWt|2P^` zvW~7q=Zg51dny7$41a}t+kiN_;;+1TKcUo^l!uS|C5V=4F)GHKyg%sBTQaE}_hW%kVj><0?lOh0o zK1Te5OF`u*+%I6oz0ajfI>9` z9whgR9N;C*W#De8+7h94@dv{KBKD^Ue>(dLC2U zH!s*oaG$BOlJIBIeDlJ1kl&}Fe$v$|Wi1{}1G{-LIdit86a&|2EvwLN8-`gPe8z?6<`bZi6ZUyK0tY?aT+lUm}S;pUadNBwyhV1 z&}>{4C)huoS@;WG?E&d>^={q=TxHj5Q2z;>Qh&!cmv2{%S`v@r6Cei%5a;t z8t^L~1Kl%wXSKgs@o^ap-kCw{TLgFm0W6Quv{vhCz<>e@FZT$UdW$CD-w~Y;P{VX~ zX-uQpG%Tm;?zukwKz{8C=5FvrN-}q&rwnexK{~H98XXKbF&Z6$F8IacMjO_qp>CS< zXk2|SSk4m!=w%F0;UYbvc>f1rcV}Q2nicyGL{s6u;pBGYOgfsZtE^_qnOAfi8=+;L z011>^eZipzxS+ocmJ;tB`ej>#^N#_KYQx?N7%&%L;M{irc;z5(UsDqT zELj3-#>*uxKS#>XF&l%Kx6)Vh`}Q3JnqR^XQv(4q^K?gW@18dMQr-)8~F{qzVL zdEdVCqYN=6pW|O=foJS7Y9-nZmi8o1?=HS|$wq)J$}Kc_hPQ=~EgP51Q?deSk90(-Mw#{YcP!Fo!QFLTmGyiy zMHa^C9*^OSo#3y!{ZhYipo?vqfhXxsGO2ukprWHD0Dw&a3pTe_ z`}MI@KeEp-zI{tK4-GFIRn+egZCEQ0j-n z@5BVYhEY?hMcQ|;yB2#~cxg6ok`{EtUSk|2j9UuYB>kU_TYBg13Q2Qf0=BRpc}wU{ zJoZb2F=M+P7zHD&W>zyzp34wE4{~gC0l@_IZz5Sc%fMRQ1Qu7?fJM8XWjp<(t~e72in7A96$*)%AC% zPP8nowll`miGi*@|$;E{{YR=35XY2N>f z^}io2pWJzVEA&Hzp2EimSzke2;=uJZLJBr(XvFO8qjJ;;!-S_RHrm z5?tDHfWorjr$Hnd3osXwVw%@1u+>0%n<32Lt5V=gv!bEpK+Cilm5oELfgx$97jp*Y zfQ>Q}7@=|_o6>2yHI=0ueCWI}Y3sA=$EWU!(N!yx3`gb;=*BWF0#I4y+XMFWoSAhr zTl&J*#|Q294Iak_X1N=2yVu~3%klF%Uil$pax+>n?oR4}T*$|iKab-45rJSV3Fa!P zXv#iRuQvYRCl@PLU~QZekQ*kzf?+3af1HJJT-H=49Ds8%n6YxYm2p=pi2^kqCfuYwox2l+cjyWNJfJ2OK!99D~lDx80;X_)Xwt!P?y&g|SY z8C;vtbVyriSSy%+Hugb9?0wWd>q;BVGbW7~wN0G|_L}EROlP|)YH96@o;fbPJ{H%| zp6L?yYa-$gLs_tK2F^ulEWA&mUvoH8Y>lK;aX|gu`&HM)J6}aFev3AO>3J>OZlVuo z*d4apZNz^BbGjAQdng1_%AKbPWt&x^tMFZ#3n!8EpwjQ#IA*7sNB)hdc5TomEiWS2frO`hgS9guKobOChwykf}W26@fGlLgt<>A(AWA}Sb;J89-H zdDPNeN(ynS%aVT-)7bA=s+~!5;6aNoViQHO_tf^qHr%AeH5{kCBYQpgo>NmMKhQ-J zvX3p|d^}XdYm?hlg-?(j640O4eqpOF=&O~3s^*iQhQko>{&s(%_ep*?#4=XAm+-6I zT>}e`$5+B^$zKiOZ9hpor^8q+3M@6g_8+?i%}&?7!-0@oOWchVLga9FAWACf*a`pM z*xRbW>0U3bYrT}vz9wmBU>xKn@IYkZ2>r;PaqcqSQflEb;->9*bzV|A`ajaE+<$`h z5;!)#B&D9CPicBBnw_L`pWi#Jc#bgvziQHkN9r_%sTM?T3^bjBEFF+oH=R1x6Us4IN>T4 zW3xuY?_6;%LIte5ZAs^g_zDr!T;Im=lS+IQ{nYaHcOcF=3Ft+69CgMGY1I4vehkr_ zrG$O}*JebpCk;Y?cJE0LL{VvQrK1byGHeQ`SA2g&oY%H;>i0BmmnW&`BrX~5MNq%g zX}}TT5xSSyXBE>0KYix=E_d`)Z5O zfag5rw^WskwD#oWA`78}#cgM2oX_g6@3;o*&&;l7?`?LM#b|HmSMy&FhbdHGDmbMR zHz#;Aun*rFqCa0PvOtV4I5fy5VM<5ucWpc4trL^?D++w!oHytqB{5XUn>PD0O8!|< zSTO8K;gr1iy%w33wo`^rWS(qa4^zJytEN?0a{ZNIp!2x#2d^f4#Q>VLK1QvLy07z3 zHJ^{HUB6}3d7psri?L@HMZep9X)fy(_Hs$h?b3niI{^IGUbDEyk)x0Q^UoB~EGvG$h?+Sk-y z>@0k>H`}$S9Ay!lFu2=br@@C~5uqXw6vzH5TLhcp%0XV4=w-U~D)n#wDIVMmrcTSYTAT<84w2%=J`c;> zZa0ka9BN{GV(R%&Pg>>VQ~xYaJDQj%wqFp&+&x`xyZAiIsTl;F(t*;nqQ|Av4qQ3X zBU5r5nW7In=O&5=BLm4a2*-G+LM-1Wi78)WPLaJ}|B_VMlldKm-LLm@LYHI18k8jT z>1b(1mMjSle_@jqeNHAzpW$=1dY;?@;-^dE4q6UD?glLq(S_*hu~)oZ z>M!1|xT)<}D&w-PS)u$me1MOVN?42KIjQAo;p~<9fT^krGZki)QfIFL;XOld!$k8> z=tAUL@fGFOXuqmof%WW?Wq-2Un@{()FC=F+tEFAhEmnPdU(#qh^@6po)Xy3mXS3Bm z4qqZlw!7Kt>fZm2@93twO{8xgS#Y83?0;nbiv@)4_&!7F6 zlXLD?9#^*azYP#2Sq@HHFjiu)z;J?^M%b^likJkBi4Hgnt2~HM_or@ zw}R)XnIKDX$ksCON%=2x_)#wQ~R89h(96mksr)9j3qs10y6MT)*;#Uzw_ zpTzxzPj>wcHY4f9d;+SPxiMTk-_OH$@I;<{QDP~pF^`lM5d=_veF&jyV<>QiDaMWCJJZ@8W=UDMrQN&F_Kocf#c)5%Yi|oCx zXR#3GzY|~5CSMRa%ziivz#xn<>c=NO(Z%@l-q>K81WItX+~c?aF7ldyuPz<27f8P= zO5phKNXFt=KAXEid!2R!XtC#yh=@>2uqsrM|IB1)ZgBFP3}36Sr%|Gd4Ye3lJWd@O za!*I(&bg4{a7!l$%c}gUz-ybFwjjEgWEqfj&#LZ{B?s26%OfmKGz+xa@*^RCKD_1o z{h6NHKgBm%{loEud+gRUm2J#p@rzV6wuoOU{Hv%ar*6r#q>#A1f7TcV#zqCZHA&*Z zw2j@Uve632O-OmS!Na~KJ-T26kPR5u5Ea7n^@YbFUwWiu^$OBfK7(Tlt!_+8IOc4r zwN|1chLJ4HH3s@mbnzc#nO{+hkpBVhlc>GFS9nP2Hc#cN#LBtf=R}_3IEgr9nh~|u zicL&>$qBzeh;lgacjrpFeVqPo24j zUwKMjcHoRk2tCQmpS8>`Q?!M*@WuNObA;?}Bm>9QobYjDiGgf=d+a7gLr+XJdPmy; zq9Mbo=A!z`5Di&7uB0BtzD~<2l#P!ZCGlB4H->(KpLNO?-1sEongfno;uBFmwXHbG z9X@$V&aXko-M~E@#9^2We#onymm|sW+b95{SCxFfXSQckz|p-KL&5W9tMKQIz|`@Z zT1{J*ih`z-xIVy}GV7<3AIl)^CoDByxOHf^PNkIih*PC(sZ14XZ>yfB%=HQ1LoaQ; zc^pAL{8a)>u#uy1{)w-3_J}r)tw<}xPU4Hnx=oy7xS}^F2z;1K*dmC!3Tz1Db{)J% z70U?HKiu2?ebX?r=_+qyJ$~^WA;-@+3$SS}i63o=enKtA^D&W~alqq*(>KF`K3f(y zCv0`4p5j{}--}R-Ry_wgE_N)a{k}oMuf%3x4PgpURZFB>SvRL|oCiGf9(FbhpdWpD5jnj+XD~ zFu|X<9_f-46Ad9G8|F>i%v>!DL=l;*ddilXmY3w&$q1|MT0eqrp2VRClX}HwIi1QG zg;>ne_s+ClB^qk-?P3q-%?o$7y?S`D=#iqB_LFy5Z?&ZZd7txe(X7+W<#|u`bl6w% zGb=3kVKF;tt37Mt+G$o4xuScvHBx?^Lz8Pb+;;q|AeCN||ISeA*m6T#^G(WM%|1>9 zZ-u1)SlKF4+{G+C%G=%qx;kXHF4-(+GgE=UZVM5*$Mr*V8 zE_3^xTme=zH&fn#MUJYv5?Qcg*Rzxt%RLW@Eat3U9Fj8NqUF5B6jJ0lrPt?2N4)PJb+)+7H^LTkiF}3Qu?R;B+soR|2`6}C93emK<`v%p#^(KznMV@cc?P0u zo`s`h+sXcJF5Mb7-%X16Nhk$8w~80Oh79*OqeO%?MB-4TuL)sg?XWn{tMkm%)R79# zjtoSU&M?o^pg5NyMCK({rA>a0_hkBBjko|YVcEtH7=Lhv@VnQ^r(Pou~=wXq#+qcr0L7$QSyuh$X(vh zUJm(Q>62`lnFFgnXzRh-O{;FH%;%zd{z0=IDP5ue;4a9V@|Xwm>Rh|jL0-hb+Ejwu zuf%KP?l6A-&l3>h^D?xx6kE|Fia7BIM|-9S&a-ad66jS>W#uF#YggWP*A%hRkzQrj zau{ciBA@+f0RvW6zzQ+ljX0 z#MbP4pq;zTWAlY8!c+5uRuqE}?zCP2yBU42^b67Hp%Am;&tE04aA+zIU(hW6>@054 zAzTCzWc|Hy;|RfYS*M8J+KQa6MIr>HoA%`-k%a7FYNBbIc<&mZ&Vl`X@YD)m&yt#~PqsDLPe_ewbXXpwP1FVc1$sV8dJuVE9I$TWjd z=ue+4j9~XprcbQlSS#uObjWy-Pc8eWyb4-L`R=ufl3xw0Dz!F6v&U!b*+#rZS(-Bv zo*zkGZ~%FwD7K?JRe53ePi}_tjT>ulDUYosZ0>x2%~tWofl>hJ$}QSlP@-E8xtsHB zlRx0gVBaN7N`_9T#O2`&DZeIv_um5-+Z+(RMkWJU`a0osG|o9u?T2T#8qV)=)Y(P& z;1m+E_IYN3FDq!eW?Y0x)N`2WQRYpeOUB@P*K`w~u*pLQ^Ord^!z!6%*ldXI zf|zYK{UfC~ZzO6J98t?#9qJ-i-P^pl_1ACF_DB0c5At=bHagHMMT!do~0-li8U9VGR(B8H5X}# z6XAJ~;90KMf!cKZ&E*UgVQ+@z&pp*mr6z78WK3e42%r@&{!%Gl`nKinH0SFu%OX48 z=YMLGtU=niibwuYIGJ#b^Lz({Fk@W>FX$z6`Tvl;51xNWRn9zOf9dPfCz~j7EaUn; z9%4gMwa!PSch1}WXqT=9OXjxV5+P>G%)ansz;7VRU)qbVg4@DuEtt=n`kc|UQj>|hp z2#($DE`5yx6_K;gAYnLr1+*~~u&{RwxMVKH48gb`)@dJ??1cATY9Cl9m~=&KG9`&l z^O%t@x;hhvGYXdyx7PNh)D`?8*a{fCTu=7Y&7uc)1$PAZmuIwIj^8usGCf)a-;jG7 zFHZ5%N4hi&5na#i(RqDeIjpTok0g%^2cONI=&b7bavp5{-rAmeyV`-~6}@Y8-m>Km zU>a|9j>Oe2Qa(KT^NjE)Z?m2B&3ba0D8JDX+@H@BPnqX3OGOj6UOh6DJsz1m;~7Le z^l(GYYf{n6$h7!=#k>Q~Q--hwzq8EJPnm8{57`NO#2z8cPt5$*hcpbT9}y-S7voy} zdM{o@mj8K1Xytep)7-;|m_jj=+ve4mt9DStTdm_XX49!Sis~CAd6twWmzlj6b^84y zmp`rh5l;`IEdFisFwgO>m|ABk0dL(F!Alk1^U*u$E_fZnUnes8==)w_Rv!M1UzPIo zY^);0hjC)cWsm4!+0RSd!0e2hJMOZj^d?l%u4gFw@k`rHOo>=!t`i@IrA8x&j(63ep0Xwp@5xJ*t?GfY#^@{tdD{-&V&mO+Zbi|rd9xbF*I zjxv*Z83Y21Y*3Qrm0O7S!_TFel;ME$Q{i`NSL7*EL^T z`u1!4Z-Rx=ZowLF0-EB&%TcJys<<^2D-%(E3wc}w)#|qHfS@>i0WK2_6VfT(c+YW1yri(75t+-Vk=1f+UBxUUq#uuTv0nx%g` zD%T?9D!wgtnwlg$xuh1JvjYmQ?ZTQA#38 zLEd9wg1BtB7jVhmI{u=Ijn>pZZp|38re+}MX8Z|{oDeX1!tV^Ub*?T_22!z;wkDog z8ki8^PIbv9aGJcGAzur_$-aAWnnLzZ0Ih2AWM^T!XPW6cDITrfno(mND5A( z7S3q`O)$MzfWP26-ryL)UPqKs%aO*`N^~+6%7FAN)OY+%#Y0vSMXcCXkkpAeNW6N0 zXx4njHWxNmuO045++`Ilr)Lda0x)7-w?Gxgg6$`-Swz-D-WP#ceYM0B)8T_nD2$QDdoh|#HdVnymi?g z%^%OGx~`f{?>(Dh3U~M^^mn6uqN_a9C)Yp)GETv_qOiLUGVsRpZw5{Ct;5w(+WjnjaJ)}wQQZC~y9>Al&hzT~j<>>uvLaMCN?T0cklo4s z>>$Ua7Qr4u|Bbu%4#)a^|HmU0*`$o@-9XvkV@5#~X0Nw6)HFR*@d`~|kPHxT{=QH>`o*2VQF=!N~92{zbZGrM)cw3#=tQFeo! zt@#k$uLNne*OGEFp(p1;0tme^voI%5B3f5TYDE3^$?tTLsK_uA*W}J+R`5n-N*ox? zVvfv*rT9F-(DeXm7(4L(an6dkbEcDjAV|Fi0~x|hNAoH127z-gOvLF?P>&ktF78|c zGkBv(_0dc(Ype*LTU~t07Q7Nt+i-#%avq5`6+~(qiFI5F=Ndm7f2FUKw#v@0u8KdO z=+>xa42*ZDu1o_0=asYm8X_I6Y7YFF9ryJFXV>YE(T)Sn7p#nryL?j9r|M_{HXu$W z)(V$Vp_fBiQnOXD_ZumXJv2Cbwl9`OU&OeSQIX-idq7{XF-j-lQWZLcMM_6GAFQ1q zgqzAY<$AILr41$Tkpu~LtVv)bTyTY(s(Utki;&2q?A)Yqu8YP2@-Xq?*cI~i$d40_ zW~|!m2Md=zy5t5D0P^RIVd7)iYCXsArpE1zm-;qj&8vF=;N~+f3OG0Co9{`D?wo+o znWkWT)mL_*f$kSzkX$bU?8$YEsl}IMVGr>^bv?Y4EX~r3_%{gw0pfN&imEqZV+90; z0l}too|Bh@C%I(vJ#d`?l@Xh~XBq))z&T8Zwju`oYfoX*f|Z=7z5+f+Ovp%{4Z zaJ7DuB(=8ubbakndQI@2`=~L?oZ7TIb!FXHw_;s(s4IuqIj;CJZ~TmP>0W4mdc(7A zb#&VhUY(Jo%=Rw*5yB?9FoZ=jRMi8_)1L)nQ6>Kpo0-cYGx=9rX!G z;$6jp>*lxaOA8@u@{(O&)m?2ied2rjd#CC*UXDGNnDCN6*9AXiQbDocL)e!q>{;EF zED#Hl)P>y_h7HfI%$mjSoHn)3sf0-VNXt)7zTTSHqEP*)mdxcL`cc3(eCxl&JA3?N z_)BxW?H;<`t?w@8E(F;W=k?VWmElM+F9^EQhv>y8nfAi%W~A*Hl8wp^j549PvI9L4 zPsTD?!8OIzrMGq?OFceL$|+p?^wYa!(&!JY!w$yRJan%=%os$M{XuQvY ze-BjIc*Tl}xv&ovWHWrc*t$~xCAlSPZWxaW1Q=69WPcSM7P}Ac{S2aN(NB36QNK^0 zlp7w0O4`ZYzT zU+*6CtG#bh8bhp4efUE2dxiH{;gPZ0W3{_LpvZSUyBe(k0+sDN7K(G3wJ@yGe)sT( zevC9G>dBh8MU|5f6=fx|mRDJW3kpiGVow+6Qtf0i%6RdQ1{ZSvWNP@t>azrIoybTv ziYZs9;)NwWt9;{zCs%Ncvk_VSgb!bdfb#)^K=#)lAak*xnKEeCN{KtNQ^qH!+>-Hn?$hHf z7d}&sAJMzO08#I_ z(MDWBL-{W3^I5i3MqVoDt~qg}GwJ~Bb4Eq#3GA0f(D^*5OA<|0_b_WyvvXsCbK7^3 zPX99Y+$wp64n&4dYYRy36i+};M}y#bNj5IFmFV1#{Ve_=3D1Lr#06!_h9~g|EU?Gr zcY4*4o^DixXi(W(Iw$7_e()jw#-39nmP@P?qZp$3!t_XeTmX$$a*{1&>;9QMA%{^o zu7I#EJUeikALvyTUckP+4rhchmy=4|!qZ0LNfh8UpT(E45&;cAj@3Q%h*s90NkWMi zEmU0L5pBUi2RRi1X_W765r&ls6AhNEzlZahZsC&FL9E%*7Vt@Eue?*4Vujrjw5F6< zf-kc4vU>;wz<$_g1^lZu8sm)cwbA~rj5TuY#N|C$FBLv>S*=5_zht)U)UH2IGBklF zDf;*L2!b_EIu#*gTL>9i#m~JhfWC1hI=0_9`TIb!tJ@n%-FR!`jh3qlDXDwW*cQ)(#!_{5dp z%zIX{1eWc&Pva936|T;Ya2rVv{jfAi`GH+22H%&ZIsUHxqP55xi}H`G-zo$4of{sU zNVvMm1$V0T?S;kCqhOP+8qKj0DYH=Ho28jkJ@Jo=lN)xbi<>2VL{@whZI%UoWI^*$ z^9DtJi3tgApG?A)E5jK$*XJzZ6R!*^qDkfZ;Mm_g)ABe29D5ELvQS*GBu5l7mtap| zf3lfIV1MG3Vw4+WVa1m+;Dcg%!gZJFm}3lsB9J z(3(D&rWInPxtJ|}Z!tGLABiJL6zIOxoTMTD1bg>*j(#|(1(RCE0T|daB z6t`z7Uig*Ao+ruCt!}Bf;P!D)(OdY%;@zB2P4U@k^CL}74aX-R{>c?l)y8_SDOG=H zTkwG$W){1)uQm~mZi@1YC-!t}@9&bszo~r<|6h(Po#ki2FwYao$NxB~qj<|1jr)iS zx#8}Zi1?Sgquhd!giY5yHf}0Cb@&PPMIwmtl7;Ppq8$GOT_a7$Q-5Otd~OpJaUU0b z?J8miRt;ICyXa<;=$H;2yC{%HvYcUbJpsEG4ux{_hCkK>t2*}y zx*|nRPDpff!qv-n%H@(Bx_U*ITyaoea0+JybIQ6HOTdl;Mt%sSWXVYputB{Pr|l zw=!qD$f8l*9wp5|k|cMuMoEXNHgwk=v71{Pt5@SRcPtpz3&E%oxVNkG(sv>N1`;lA&Z+{MU4K(2f6cd7^;bH*E=cm|A$=mP(2= zsD`*C_H9{c@TXLCgZvyblmV;$@ri}54k*Th{Q=cG3+EzK=ghcZkd9T1%$4Oq4$bGiL;tMhOm7L9&UnkyQ zl^n@DnnEs07KZbON~z%poXmPy|LhlsHa|%1;#}dIm!MBEG+L!}yWkA)Ft5~bTZ(BQ zct*1DG5AnNS3x&&W?_@}o(2*7VDsw2?_Gz4!4$~rBzS@%;b2zguf3>|rm~^@MHw4| zwF}+^it^>cZt_1F&tspk#`d%L>md>AzbRX)Cr~hHr8nw4XA5^lF!58euNvSe-AY@+ zNe>k*30}vA|mzYlkR|*oTvEmm&4I7h? zmYGBKB*weR6i!wY``l4*rdm<(unODzIXs`KF#__2BzUgxaO!BN49^H4=rqEi*bP%-Os^bI??$(V(b?m9uvHgs{dR}T# z5q`q_f;~~)Q3FBbrJ{F<*bmb7R9;R}2kwWYYiA32dEquwxqI4p$0pn)lA5&CA_gl> z4o=m>9b3WT0=9^YnT<5+kJ@IL0dn)Du>g8iklZO6%NZ8C`A)`>5> z(aUSF{VXtxOv}l|t^pYz77f_bwvgcSnWsPT<)E z4<9&w^Y5Ku3X#NRvnz|wnBYW^gLnrF>Vd;ou41DdpEUUJAsWp@bfaoZfjI~!&nNq1 z=6wc1RWxMe>BZ#W)9ilJ%`OmFePY+V%!^Y?ZFwg$oSJKbeXHla+dja=;e7Ma4 zzMb)x!b=eMDeXw7vMN3&SW$l7_%$rT%^e;S&1@|F_Yj`KA;i1-6wFo@Nq*)I&}r%Yr` z7YN7y7JZeGk}Vi#+)ZbP3r%7vEP)7&sXBgU99Ht0o#E|5lkxGfsz3vRQLsOz`mbQH zp*#O%w!}GVxToVWof>aJDCI6$#<2F?z;-tJ<&~e^uMP z{g`yc+Ky$0w`t`D&tQ|*vTqbbKRm3I-CPbF{YZ=@_(#n&zgr5vYUp$LsKZ~F|5=rC zxw!`Soj)Ey1o+n=2@V8@WldqPc$JiXJU}8PPb&nayC*^A6<~u!x1K)Ldv_m01^W?6 z=&Oj+l^D>K396`=9R)`31f>zTR-e>Y1NcZGDdexx9)sifF!#y{(nm!E_43So)=CU~ zuw8v~jzZW2j-`WBL0~k_2tjZKZigkkMi&^IyIbqa{->gg5VPgRWR=pOw9p@C=77r2 zZ^q%Fo(;*e@0GXhap56Y!vZs`tSrcZoR&7vUB-R|EfO)`46EL^a3W38cRFQlzy|JC zn%D_Ze30$wK$3|p71(9>_QO;b0rxR?V8vPjJny%XF(+SNKchkV~UkJFIi9|k~ z_}UuIr~6~+3D)*1ZK?nwog{}9Ax~P6QvXxmPhi)}!ik^lfuIpZEB(RT^_?(_r4kjl zmSD8m>&Kph?94<68se09ZH9gu4go^q@U!zA* z8GySC{GfmITE7+4(rzz|17n3=UG=SyA{e?e znf|xNHpQEM)V0R04*4&bFxa|bTH%{a2Vv`s?mH&jfUPrOkRZin%w&l2mRe-izc=|K zp!@7LWy|Vz40JKwbn~cUXQJFQd>kU7AS;R%NM7y>5H0`=eBQ2 z!Z4Rg^pP1zth)x49iiNW)>{&Q?_F8hoc3bASp+jBuo%uGvhRdb&dI-rzLN@e=GEG~ z9dPf9#2jgd{*TyG)FwbT2w}P=R?czi3rf-;;Z84W2uiYh?~UbE1TL5LcSRC|!7rsW zoRr*{sjP%Cy$qhf%pY(LM*k2|ZbB{Knpl4zdj+6?X!IAKUAT*YlL;_zst+dX?uT)1 zwkuGur(jyj3(z3B7l@{!`NQxqN21fv(CBp+2Jal5fRQbIFsqpmaK9wIE7hVESu%@H zZCVr#-F1R)**^H^>Nm@*#EJmfjXnXZ_Usjh>N03Xtqj&*NSlf8DB+S?e5ysdy)hzN z`KWhecqQxl!$42yz|;y{M7?5_05@aegF&m`_EoIF5C$ge4J~6N$+rcY=P@FIyR3SfJeLZ*S4yGCc2`$R+Cfg< z3n4hvQgxHi6zeej`8HUW4Gb=+sh?=_n6m5R)pDt$y4169`j=zX)H5`zsE={lS*f1I ztGytJrfltNuD`j|09{|*(OeQO*Vf1i=%i%cvxpFGXO4}y%?~#O8%MHgi7%SVu7B@C z2#b}kxt=t8rl9qmfB)BWk5mCyZc?8NrI#~N+uv$r4q^d2dOR1xQ@jvPCBF>%o&7aL zzH@ZesNs`K&6Mj5b$!YkQP@>A2LM&+mqh?us~|R5shE-7o|nB(J~ZI9kj{LUn6HQ> z!M2)?`n3+?#Gwv7d%$x6u9)6FuEV4_{J|!0$aE zY2@q=p-Wlnu=7tJpMtWiqa&KUiz712Z>c#b^OBcKMn1le)Ceo8r!_Hdy9JXsd9FnU zc>>f$(FevuI)x2=d!BC%RTG|e_HwNYjitiWiDi_lpJ=yXrd0QN`S&nPnjgj4ziLHfioN0 z0n>l1$*0{%BzN;4`G&PeKp6Ia;Zt2-F$MJUYf-vyCfd4TiB!Yx(}KyX>IeKS3A;_= zov2!}j*RFV$qYuEu2=`N8p{}lLGTLU8&F6(u{&{Y#9+O%6F(B(w-tpg ztu}d;Sy3k5u)T3AA#1|jic2DH4gqM50ov*8P%U9PlnYqTnR^#XuJKYPQY}OUWZ6rS z8lk~p;opA==^yy1?kKK~4AopD=WGsx z$fS`J`&*O^ZT-))p#lW>&<%L0OUu2V+Sp||+;bs4zi<^nk5E-?#h`IN_ii-kHhi0t z{jgEdE7q4Vg0gOwWVT)L*P^w@xZa7=n*eQemLf;f&B>sfNAK8kPZ+CGGhg}X%W(GX zswL>Lk=*|i07bXzdARKu`r->(SKB(D-JU`fw*I(LsPQrzx32>}m(pMTd?9g~f zsq3-*I_e;-xfTLlb0YUv&JA3--3hSO=Cbm)rm%Wm&fQm!7 zOw2py9J?B0ep1Lff-TIteG~nD{^YM!Cbst)*f1p?B}s;>E^GZs3Sgcg51pQFQWc^Z z*ZpUj{WHMv;9z75-6@iN(L`9UoLf6TlH3D@@ny4m|HoQl@Vg=M>^#n!YsCh>3zy>6 zWH+{-Y^~IM{8$-*)Pk0GLE9%xFG4ddE9}F$WLLq+JZ4}xzVlpAMh%pm;Jx48?vISG%E7$>_7FwZKdaKLgo6?6^$ukIw^?ord$k4CxFW0j9v z(7VwC9<`y`U%!S^K%cpOzmeu1?3!q$VLfPDGSnc;(EZKg5*x}g{7x@=Lk$CBeOyHq z^C#Aa8U&06(N9{!c_Et+V|U6*P9H-VjnxzFm2{9;i(|!DW4%=fa)RLEgmh^LcFVuW z!AdR*bOsT;Bn*vO=uv?r zJirC7!jwC1jLO+ri$hx4W<4TlLztXdl_!VS_az*`$%Nv5*P&&QT*wW^R9%u?rx(reM zV|`Evlmx~{d92@=A|E!er-$gyC!)NO_AwNNkmiJ`q_9K2#6f;=57sORaDW4cvMMi8 zM$hz{kZUXo2UULL@4WjaM7h(+iB4FnQ9c7ZBkn#N#^ZAqFnUR<9EG?HPgkVGK91%j zFc$@<@fjg;A*QhNc^A-;ra#FsV~A$$xqe#^*xitL@E_21sf)tV+xCUWiBLw-?-cva z=NaK8oPMts01nB*zX1-|^YQUV7PYy2-0=bk_q&Qg1r08+sDq>9xWs6NCJOCIAt4!V zrpcN1##7e8pim2E;Zdc`@C@{%JIdsjB|T|*Mhf5q zrw+6|cVL)J$USFpXs1HXB8=?xLCQ&NB@P?OH9*Fq;fL?>CwRoz;JJlJGp3*8u4_m9X-`8}N1>`*jYdHhx3g62dPtPn?_nhlCV zR19qZTO%U&dI?wcDg_1UWZ=)eg;E9RsMjGI)w)l}dgq8jys;N$Ek=~sgJ6acxAm@E zU;>+JOHSc`gpRmU0Dqujz0U*++GYGC1TZLQ_p|CSg|sg(dzdS(8UxX0ad(K=ID#Vi zP!SfHJ)}_Z_-jG{JfRi;pMWReujo(xlPK}x4>N?*Yxc(`Pz7Sz$nVDZp1T$nLqftNFP=&-kJOrWNvl1127@2g@NO_a74f?qnyHrSMtJB z$0S1ox6_BvPTz}Z|LZeS!A>7P@oeqvAyBDey;X?>Y59AbbhBW38M9Y5S9d04joanq@Yd%TeKu7 zLH=IS-sAS<#oOuvR%WNsb0nLqMVnUW-$)HS-oZ5>zX@H0YWE(OeSyBeQm9*AI1I<$ zFZb*;ZYS`3jEK4_>A80g#$NRq;lF+ps~p79fO-vU-ZoS(J)XKTh_0vL_+a9iFHdMl0>Zsfa>>ya~p*BZ4uB!HJ7XwM=RV16UZy z_bYt1L9lG+{eEi`51`0eAEZ6ycL0Aa_tBG08YS>FiXz4$u$m2hCATWrHSkFDm}`Dj(c)j21=4KPkn`(5X~+@42h>LRuHw`Ft$rh|8@BgEd=XlB z;D-BrNUrT?!CRM)gWRoLIloU~9eXPxDdf%p@r_aiBl4wo?7~ejMb}STDq)RCGhE&K z8#C9wmh*Pf#&owuGhY9PqC@-Dej^9%LR>)n1iq>jTC~t((4A9=|1>t~y7_P@fO( zZt&iA?rzL5vf50T24)`6A)o$N^Wf|RM*Vhne2l0^l?=CPWVa|0V4kmRr9Tg{T7HNK zwQoLo+g%KZRV!iL^LfDH>NHu6ssc8nsR8~d)7%GrIaVt``$~tpWnV8}U~|nKSQs$x z&~#2ExDG+^YsFY1M^krd64gUobZ_`rT!OITjkOl#7`U1kdGsZlAZ_6~jQ3^Z17!E< zq>PntXY-P9;pj1Fu~>#yusrBmR^ovKIR>>JSAg%;$n%)}8O$gDbmjnJgsTLqOWJnG zrP;J!GQSHLe%1}3+9WY4-2S;wmJrd3R+OzzF@ymR2xQ~A{ZOqSUu#VQ2o82vpy9|& zJ)2Wb0RX(IQD4wkuwNVR=zW>?LKKzUAG!LOnI+FA(!D>^eX~nZp~v=*lkZJ%1g@b( zVk!#=%Dcb+OZPbf>D0?>zmQ)*-AhJrn#3EMcFF5kVnwa>SH3rS9z?AKdB7PNfK3NJ zdp~sCnkd|3!nhKcQR#bT!<_um!(}9(0?`ymH;Ph&&eLwa3}sNY36PvFu}e!>hc`du z*yA#iXVX`a2R-&Rx2Me$Y!xAdl3qL5Leu&#nOR?40@Plq#*>zvq1Q=y zo*6-^mVB4TTcWpHM;Dq=8v^~Fy za9ZVaI|uLXZei4jOL>#5uge<8^Ea;W|>koSwyRL=vVh*61b%_3Za;oia%^aQJ%8=y}fT{o9b$WPqY&NfPvEcA}j6%u_9oBl~B7 z3B}+Tk%1DItEtshsh5uk=@W!}ZY>p-B;1BBox7nTojizkLS?-z$96;iEh-m5PdOc` zC_1?5Id(Wu_f8~S_x@0wgLkT3;g4mG0GB8uXrJ;t)O{#DGFBL+5cFPLUWEZtcejXe zsk`J`)AJHUh3wi{hFvQ1vO`h26-qL5_h(QxI@+-pXlt2xJ_(j}2F~q5^6m7mBnRDV5vl}6d z$}D~YK#8@V6gU_RSH>>9m-uimoy_@+DSV8XSC(Lg8ES^Jqj&Y`YeY(*K1T*b(OXqF zo1Ci!D^PhQuTf%L{Ra*IgcLCClK&;W>q7;b6&&v!6hTERVXvitE0bwV$c(>C!y%{X zm>{QE{CemQiz3Nq|FBWpaKnw=_>Z8(9W2=4Qho>GkJ#cWDsc*ahHCA4=HU{cVXh#P zoSmjayLq5tNWmS zZtDE;s6OQu)Uc`#SwFVYa;~7RfJyA7el}h}|5N2D0?k$5ItG`3zKR_;9U!M&E0}?UkV>v$KOb8o#Z`hT)=-@tFSgRZh}yo=FrQ1IH_}mT z>`D6LlH_coYnb}WAFF{By7I*7;_HF2=x(k2(X;frtSt$u`rw9i4oH%XjSGe%a{YYBi`zyjUORr@`f=H}9phfikNP7$WZt%zLb{KRT=j z9F41t!spWYX+PZ4S^WXd2bCAPJ836B$ZR}z-5av9xfGQp#aS{eoJ%zA(&Sd5aOmm* zCZIv!7xrs9wtJhBp>|jGO_qz3XYntg7V3jWt;*=!Ly-?pY1IBn2F`t%sPP9>Y7{cW z^V@Z?QZX8ac~N2G)brKrTv!Q33#BF{HPm;!_SFrr>m%mPGwxH5C*N;xo#DyI5aE2w z8`JwD!+|qR@cj6tE}-Ce8$~zb2HSBp#em>zq^87E2Epi}y_AfpvD<8ejd6lmBQmvL z9@{Si-SqeQQs0u)c=NBckslWv-7d@D>h~2>J1sCgbmtl68^AO)otQ$swAq8Z){z|c zwW{%l-r2ORVLTKDZJ6bs51tMDNzO09@<5lgA5plO_zP%e2Mug*G;LR9Pa*QhzD#}( z%Zpx{iv#)lyXK?clyI7TU}t*|Vh}91g%B!vfINBqD*fRkaM)8$_7es;k}^=#9^$(~ ztJbc|m$W|Pv!4cWlityXY|0s*5r3r2aPXECnN&;th)^~}AC}O>U z^ko%J39-6`0nUUcLziY3W#Zc~<|^+PALk$+=UKMe!C}GAEMCQXJKoqb9M*G-#*86Y zle8Rk8$l2)4$h$n>OGQ#n-w)9Rf2OU1WhfdtpS7IMpb);LX$P)t?g+k`5TH08E5br zQtua}K!bjke@E$*L!X+#n$9CRQH}V|DlWbQ?GaJd^W`l7&$hx=?AYu zc$_z8YicG8I*IjX?(mdpa;MpC1LyZ-kiY|R4KDG4h_~w10-LS1--e{DUb;TjDR0?T zh`ad2a%*CaJh_N*50oXvJA7sfrZ4VE8f!#bdz_{y{@`v#_dUEjWUt6A!HN-p@c$`)2%~f((1h_sgI}GW`Zd284)u#d zt0y-2Od-I}4xX%2i22#e;(?*?y*fskPfeNlU^(zB;m3q!_2?-C4RiLFs_2h1PofjN z2QG4x4G`K^>GUA4IekXS?8F`63Klj&y25jceAhVd{6cqMQ?gRVP`w3kiakUmvfRco zx7(w}6wh{>L~2~y78>T3<2N11r(|Vrc`)~r@LkCPZ^I4X!?>N6AX&l1CScmhdkF4q zFR87>lbtJ}Mn(Z4R>X&&-xsBj4CzS>>&%8`LM54b^amXLS2kWP96y2XrD&=uKO01?N z-l2O_oVimCG)w9$j*f-r_pW@&lA)E$lJXpgKT49er4}fFjsIJu&)=@ZQVRRqMsO~d1)E}u+Eq$kZ?bLWXtos zCnqp${6l@QFC`$|sYam<|I+;K@ja*)S&NM_`l%FjkCrP*bt)|q3dw@D_v_zmh z7>_U+($f07Sl%%uyPVp^hh=zMB%DmQ&?S1B2vBc-z!I2KA z?TvD;5qTzf_9hHSXiHiuym%yehvsbsUFm1!x$TlBwjCSHqt9$qHMpw}h}iir?Gy>o z_6rC?`1YTZA@bbA+`2RKq;I6w>bCgudH<+Ru15#&N4*>dOy#m)pl2O#Ru#$RPH5fE zEcjFiY-q>KtHuF)_KKS_G25~lJljXcbW5u8StaX0hQf8S1!z;m)CWSWwrrXPfvD1( zy)zazjKX#vu5Iv_@3BdAumsNQ;8lp5PRY*rkju{|%nbluByb)} z=oWor8AYS{I(Yq(LqGHs?1xDo?)uH?b`>j?=HZ#G^exg_0MI57JN~*Hs*Y5H8p^VUhPxmwVo0e>iMj(*w(rF?x%HC z7l2t@{nlB{@|s^KTRv5cjO;&?tnU7@nR3?U#A!;8i?Rxp%r)i>eS%K%e>LL2K;C#0 zL~}KV3#jkqzEqM!dTI(qqM0%4H%rs3dar!a;#B;=dlh`_9vYY+ldEhi}0|vLoDk91PT`r05m4V+- zzM-B2av#ae3YS!$=!U&J!s!Xf%a1qaftTDok=>OoL3fPd6zvDkmw{n6s;dq!`zgaI zJt!k6jehyQ945>LT;*rKz%4Ww$7V@*62m~V48&Oc>j{rRy4 z$C~5nZ?Y6_aJ4Z(pJG^LG>{^C&9mXf{iuqmjvEeaOQ0ct4s0iPgfnM(cQ-ZZes%8i z7W}vxHaFRo$u4OhNfP((PI&GKBUfs~&%OF3zwm5h?X1t~i`?l6H*OyhZ8mIKb2_=? za_T1xzzOXgabjPdk=qL-K35#E8>L7K9UkJ)PFx|>NEhBB&i18aCBo~D^dS`VVfTY}67 zMtlrTm1@*v-V^xn_XEk>1vXuRGyfoF%cdaa4eD`C68rus!9ZWQ&LWaAjN-FzJxp$) z=Bd#l&?D+$-HR^8C2 zXL;xKtaT=^YvZt;CYG4tMSbRmjBE@j_Y~Do6L)X@ia;j*E<0c6h|sW~4JG9-o*i@N zceLS?z!&Dfq3$W}-%GPnAG@OVzW($u%X{+Jqm@#$eY#yYZb+Y{aL%LX-YNzR3_ks1=NqYQJ!jAxZd^~~>hD5%=Xj{Z# z91B$T;P#~dRACo9KpCcP@KTZ2y8hCK!bmL{@p~`9uBRQnLwBhVdE^J&K22oTiLq~; zDULg)J$2ey;UXvTK}uRLo=tU2GlJtMpRCd^-EJ48%kM7KFS2hlxZV-r61FRd7AT_# z6HJ`7ZV{#?81x*GXA8WYB+kZ4ntz*XsEIB)#7y7&3B8a!_w42;Sd)S_-uldvO}+_a@gHT-o;(x)!Qr$;ggHsOx?%(#3uAZe&hv7?trFH z0=(P=W$~#0LlzIC0?slti1tYw>LnG=s9$R(KDRbW$x}*~{THG0y=`S1{U~uP7@%UCZ*b zlznMiO+^vyW%2x{-jhgKN=zhOTcY?VGv@7@# z^Op#ir9^)4Y!n}nzrS(e{n|OHY4?|bnl4VN@9fIfK&TGiTt%s4wW{2=!|`f(XE4*A zVa`JqD1}P8Y!rIkJwTzj$2LT-RB953+rw=jlzvp)%!e5p0Q=XIaBadEDdcBJUg}4Q2k1U1qikYMmUeR#8%^=$ z0ye4EaDe|`e2{o@BCy*D645$r5}Ps;M&!iPt{v|xKI<>N#3Ex;6Utsg>0$=z3@6MA znPJ`(w)5PymvRnhrxw4BpoA4qv|aStxc+jnv%bX0^Lc6c_4dc!J>Q-tJsg;_EZBdc zshYkw={~2eudNyz3H{%uT6(B-TBcX#&ND*(T2g_d`6D^eNJ{7LQrl=!`Pqt-Lv55< zdJN`qFj?t?5t=e!u!VX5{A@{@GO;AgNC~F#fA*|}_3CRtBS&~`14=_}s zDnzUinpAb%hHDL#Y#O1@h9^vyD+%#8t-OLjlWhWEoPCf54KhGj-%7x`W3%(vKv0?1u2Ie#G57ciP4;!dELw79u{w7ZEY_waGNZ6lMyjeXL^vy4K09~P{;_EvuV z4KhHdR18gDg>L8dze@qApdt7z(=uv`LIoe3ZKvgK&Mn_4-%aj^5VL6d$LtM0`n0vR z@myw*zZW(LhJ9={Kx&Yc@zOS=XahTdX}nYI3YtM5Al!bDy&i@EbODlnw(0uwoP)Wn zyOTof>FLIzBC;~v7hgR~hu#*8!b8f2yC5Gi=z;= zqD=qamF5E!Q^-E7Cb>-ojbt)Aels$HQFF}kle(m517z79%0DnbL+#D)Mxtdd)g47c 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 Date: Fri, 7 Jun 2024 09:15:00 -0400 Subject: [PATCH 100/126] 2991 remove SFTP and ACF titan related codes (#3003) * 2991 Removed SFTP and ACF titan related codes * update piplock --- .../File-Transfer-TDRS/README.md | 26 ---- .../File-Transfer-TDRS/diagram.drawio | 1 - .../File-Transfer-TDRS/diagram.png | Bin 174668 -> 0 bytes .../secret-key-rotation-steps.md | 56 -------- scripts/deploy-backend.sh | 3 - tdrs-backend/.env.example | 3 - tdrs-backend/Pipfile | 2 - tdrs-backend/Pipfile.lock | 84 ++--------- tdrs-backend/docker-compose.local.yml | 4 - tdrs-backend/docker-compose.yml | 4 - tdrs-backend/tdpservice/data_files/views.py | 12 +- .../tdpservice/scheduling/sftp_task.py | 135 ------------------ .../scheduling/test/test_file_upload.py | 91 ------------ tdrs-backend/tdpservice/settings/common.py | 11 -- tdrs-backend/tdpservice/settings/local.py | 9 -- 15 files changed, 10 insertions(+), 431 deletions(-) delete mode 100644 docs/Security-Compliance/File-Transfer-TDRS/README.md delete mode 100644 docs/Security-Compliance/File-Transfer-TDRS/diagram.drawio delete mode 100644 docs/Security-Compliance/File-Transfer-TDRS/diagram.png delete mode 100644 tdrs-backend/tdpservice/scheduling/sftp_task.py delete mode 100644 tdrs-backend/tdpservice/scheduling/test/test_file_upload.py diff --git a/docs/Security-Compliance/File-Transfer-TDRS/README.md b/docs/Security-Compliance/File-Transfer-TDRS/README.md deleted file mode 100644 index 0333257be..000000000 --- a/docs/Security-Compliance/File-Transfer-TDRS/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# Boundary diagram with file transfer from TDP to TDRS - - -The [TDP boundary diagram](../boundary-diagram.md) has been _temporarily_ modified herein to reflect updates to the data flow. - - - - -### Updated Data flow - -Data files from grantees will, for the most part, follow the original flow: -- users with `OFA Admin` and (STT) `Data Analyst` roles will upload and submit files via the web application -- upon submission, files will be scanned for viruses via ClamAV. Infected files will be discarded, and clean files will be stored in cloud.gov AWS S3 buckets. - -#### _What's new?_ -Files stored in cloud.gov's encrypted AWS S3 buckets will be transferred via SFTP to the ACFTitan server, which lives within the legacy system's (TDRS) ATO boundary diagram, as shown below. A more complete visual of the TDRS architecture and ATO boundary can be found [here](https://hhsgov.sharepoint.com/sites/TANFDataPortalOFA-TestPrivateChannel/Shared%20Documents/Forms/AllItems.aspx?id=%2Fsites%2FTANFDataPortalOFA%2DTestPrivateChannel%2FShared%20Documents%2FTest%20Private%20Channel%2FExamples%2FTDRS%2FBoundary%20Diagram%2FTANF%20Network%20Diagram%2EJPG&parent=%2Fsites%2FTANFDataPortalOFA%2DTestPrivateChannel%2FShared%20Documents%2FTest%20Private%20Channel%2FExamples%2FTDRS%2FBoundary%20Diagram) :lock:. - -These files will be picked up by the ACF OCIO Ops team, who maintain TDRS, for data processing and dB storage. This transfer process is temporary until TDP reaches parity with TDRS in terms of data processing, validation, and dB storage. More background on TDRS functionality can be found [here](../../Background/Current-TDRS.md) - -![Boundary diagram](diagram.png) - -## Updating - -- Download latest version pdf diagram [draw.io](diagram.drawio) -- Edit this diagram with [draw.io](https://app.diagrams.net/) -- Update the image and point download link to correct file diff --git a/docs/Security-Compliance/File-Transfer-TDRS/diagram.drawio b/docs/Security-Compliance/File-Transfer-TDRS/diagram.drawio deleted file mode 100644 index 2c22f92dd..000000000 --- a/docs/Security-Compliance/File-Transfer-TDRS/diagram.drawio +++ /dev/null @@ -1 +0,0 @@ -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 \ No newline at end of file diff --git a/docs/Security-Compliance/File-Transfer-TDRS/diagram.png b/docs/Security-Compliance/File-Transfer-TDRS/diagram.png deleted file mode 100644 index 476b82d338810d8feb458f4527ff4059976984ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174668 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 -**

ACF Titan Server Keys** -The ACF OCIO Ops team manages these credentials for all environments (dev, staging, and prod), so we will need to submit a service request ticket whenever we need keys rotated. - -Service requests tickets must be submitted by Government-authorized personnel with Government computers and PIV access (e.g. Raft tech lead for lower environments and TDP sys admins for production environment). Please follow the procedures below: - -1. Generate new public/private key pair - -Below is an example of how to generate new titan public/private key pair from _Git BASH for Windows_. Two files called `filename_where_newtitan_keypair_saved` are created: one is the _private_ key and the other is a _public_ key (the latter is saved with a _.pub_ extention). -(note: the info below is not associated with any real keys) - -``` -$ ssh-keygen -t rsa -b 4096 -Generating public/private rsa key pair. - -Enter file in which to save the key (/c/Users/username/.ssh/id_rsa): filename_where_newtitan_keypair_saved - -Enter passphrase (empty for no passphrase): - -Enter same passphrase again: - -Your identification has been saved in filename_where_newtitan_keypair_saved - -Your public key has been saved in filename_where_newtitan_keypair_saved.pub - -The key fingerprint is: -SHA256:BY6Nl0hCjIrI9yZMBGH2vbDFLCTq2DsFQXQTmLydwjI - -The key's randomart image is: -+---[RSA 4096]----+ -| X*B*.. . | -|+ O+=+ * o | -|=oo* *+ = . | -|Eo++B .. . | -|.+=oo. S | -| = o | -| o o | -| . | -| | -+----[SHA256]-----+ -``` - -2. Submit request tickets from government-issued email address and use the email template located on **page 2** of [this document.](https://hhsgov.sharepoint.com/:w:/r/sites/TANFDataPortalOFA/Shared%20Documents/compliance/Authentication%20%26%20Authorization/ACF%20AMS%20docs/OCIO%20OPERATIONS%20REQUEST%20TEMPLATES.docx?d=w5332585c1ecf49a4aeda17674f687154&csf=1&web=1&e=aQyIPz) cc OFA tech lead on lower environment requests. - -The request should include: -- the titan service account name (i.e. `tanfdp` for prod; `tanfdpdev` for dev/staging) -- the newly generated public key from `filename_where_newtitan_keypair_saved.pub` - -3. When OCIO confirms that the change has been made, add the private key from `filename_where_newtitan_keypair_saved` to CircleCI as an environment variable. The variable name is `ACFTITAN_KEY`. **Please note**: the value needs must be edited before adding to CircleCI. It should be a one-line string with underscores ("_") replacing the spaces at the end of every line. See example below: - -``` ------BEGIN OPENSSH PRIVATE KEY-----_somehashvalue_-----END OPENSSH PRIVATE KEY----- -``` - -4. Re-run the deployment workflow from CircleCI and confirm that the updated key value pair has been added to the relevant cloud.gov backend application. -
**
Django secret keys** diff --git a/scripts/deploy-backend.sh b/scripts/deploy-backend.sh index 3f53b6b59..24bef90d9 100755 --- a/scripts/deploy-backend.sh +++ b/scripts/deploy-backend.sh @@ -42,9 +42,6 @@ echo backend_app_name: "$backend_app_name" set_cf_envs() { var_list=( - "ACFTITAN_HOST" - "ACFTITAN_KEY" - "ACFTITAN_USERNAME" "AMS_CLIENT_ID" "AMS_CLIENT_SECRET" "AMS_CONFIGURATION_ENDPOINT" diff --git a/tdrs-backend/.env.example b/tdrs-backend/.env.example index af513c929..5ffe271c1 100644 --- a/tdrs-backend/.env.example +++ b/tdrs-backend/.env.example @@ -86,6 +86,3 @@ ELASTIC_HOST=elastic:9200 # testing CYPRESS_TOKEN=local-cypress-token - -# sftp -ACFTITAN_SFTP_PYTEST=local-acftitan-key diff --git a/tdrs-backend/Pipfile b/tdrs-backend/Pipfile index 7ab59800e..117e86c75 100644 --- a/tdrs-backend/Pipfile +++ b/tdrs-backend/Pipfile @@ -51,8 +51,6 @@ celery = "==5.2.6" redis = "==4.1.2" flower = "==1.1.0" django-celery-beat = "==2.2.1" -paramiko = "==2.11.0" -pytest_sftpserver = "==1.3.0" elasticsearch = "==7.13.4" # REQUIRED - v7.14.0 introduces breaking changes django-elasticsearch-dsl = "==7.3" django-elasticsearch-dsl-drf = "==0.22.5" diff --git a/tdrs-backend/Pipfile.lock b/tdrs-backend/Pipfile.lock index d62cb708b..c2cdbfdc0 100644 --- a/tdrs-backend/Pipfile.lock +++ b/tdrs-backend/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "e0b5d173936dd0ae24d434e543a96d139eed6ab962f1f92b1fe354d74d9a0599" + "sha256": "a082fb8d3118128843dec21e83b70a4ee5d9743a2e869918452d1b8c47533edc" }, "pipfile-spec": 6, "requires": { @@ -39,39 +39,6 @@ ], "version": "==2.4.1" }, - "bcrypt": { - "hashes": [ - "sha256:01746eb2c4299dd0ae1670234bf77704f581dd72cc180f444bfe74eb80495b64", - "sha256:037c5bf7c196a63dcce75545c8874610c600809d5d82c305dd327cd4969995bf", - "sha256:094fd31e08c2b102a14880ee5b3d09913ecf334cd604af27e1013c76831f7b05", - "sha256:0d4cf6ef1525f79255ef048b3489602868c47aea61f375377f0d00514fe4a78c", - "sha256:193bb49eeeb9c1e2db9ba65d09dc6384edd5608d9d672b4125e9320af9153a15", - "sha256:2505b54afb074627111b5a8dc9b6ae69d0f01fea65c2fcaea403448c503d3991", - "sha256:2ee15dd749f5952fe3f0430d0ff6b74082e159c50332a1413d51b5689cf06623", - "sha256:31adb9cbb8737a581a843e13df22ffb7c84638342de3708a98d5c986770f2834", - "sha256:3a5be252fef513363fe281bafc596c31b552cf81d04c5085bc5dac29670faa08", - "sha256:3d3b317050a9a711a5c7214bf04e28333cf528e0ed0ec9a4e55ba628d0f07c1a", - "sha256:48429c83292b57bf4af6ab75809f8f4daf52aa5d480632e53707805cc1ce9b74", - "sha256:4a8bea4c152b91fd8319fef4c6a790da5c07840421c2b785084989bf8bbb7455", - "sha256:4fb253d65da30d9269e0a6f4b0de32bd657a0208a6f4e43d3e645774fb5457f3", - "sha256:551b320396e1d05e49cc18dd77d970accd52b322441628aca04801bbd1d52a73", - "sha256:5f7cd3399fbc4ec290378b541b0cf3d4398e4737a65d0f938c7c0f9d5e686611", - "sha256:6004f5229b50f8493c49232b8e75726b568535fd300e5039e255d919fc3a07f2", - "sha256:6717543d2c110a155e6821ce5670c1f512f602eabb77dba95717ca76af79867d", - "sha256:6cac78a8d42f9d120b3987f82252bdbeb7e6e900a5e1ba37f6be6fe4e3848286", - "sha256:8a893d192dfb7c8e883c4576813bf18bb9d59e2cfd88b68b725990f033f1b978", - "sha256:8cbb119267068c2581ae38790e0d1fbae65d0725247a930fc9900c285d95725d", - "sha256:9f8ea645eb94fb6e7bea0cf4ba121c07a3a182ac52876493870033141aa687bc", - "sha256:c4c8d9b3e97209dd7111bf726e79f638ad9224b4691d1c7cfefa571a09b1b2d6", - "sha256:cb9c707c10bddaf9e5ba7cdb769f3e889e60b7d4fea22834b261f51ca2b89fed", - "sha256:d84702adb8f2798d813b17d8187d27076cca3cd52fe3686bb07a9083930ce650", - "sha256:ec3c2e1ca3e5c4b9edb94290b356d082b721f3f50758bce7cce11d8a7c89ce84", - "sha256:f44a97780677e7ac0ca393bd7982b19dbbd8d7228c1afe10b128fd9550eef5f1", - "sha256:f5698ce5292a4e4b9e5861f7e53b1d89242ad39d54c3da451a93cac17b61921a" - ], - "markers": "python_version >= '3.7'", - "version": "==4.1.3" - }, "billiard": { "hashes": [ "sha256:299de5a8da28a783d51b197d496bef4f1595dd023a93a4f59dde1886ae905547", @@ -694,14 +661,6 @@ "markers": "python_version >= '3.7'", "version": "==24.0" }, - "paramiko": { - "hashes": [ - "sha256:003e6bee7c034c21fbb051bf83dc0a9ee4106204dd3c53054c71452cc4ec3938", - "sha256:655f25dc8baf763277b933dfcea101d636581df8d6b9774d1fb653426b72c270" - ], - "index": "pypi", - "version": "==2.11.0" - }, "parso": { "hashes": [ "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18", @@ -868,36 +827,11 @@ "markers": "python_version >= '3.6'", "version": "==2.4.0" }, - "pynacl": { - "hashes": [ - "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858", - "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d", - "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93", - "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1", - "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92", - "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff", - "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba", - "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394", - "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b", - "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543" - ], - "markers": "python_version >= '3.6'", - "version": "==1.5.0" - }, - "pytest-sftpserver": { - "hashes": [ - "sha256:b7ac34a23f63d77e27f67b6a81c9418243733f027eeb8a3061d965b2da7e5cab", - "sha256:c5e8a37049866d4eabc711db9f1c09e1c02ab72ba290f5fd244939c9a188042f" - ], - "index": "pypi", - "version": "==1.3.0" - }, "python-crontab": { "hashes": [ - "sha256:6d5ba3c190ec76e4d252989a1644fcb233dbf53fbc8fceeb9febe1657b9fb1d4", - "sha256:79fb7465039ddfd4fb93d072d6ee0d45c1ac8bf1597f0686ea14fd4361dba379" + "sha256:f4ea1605d24533b67fa7a634ef26cb59a5f2e7954f6e677d2d7a2229959a2fc8" ], - "version": "==3.0.0" + "version": "==3.1.0" }, "python-dateutil": { "hashes": [ @@ -1040,11 +974,11 @@ }, "setuptools": { "hashes": [ - "sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987", - "sha256:c636ac361bc47580504644275c9ad802c50415c7522212252c033bd15f301f32" + "sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4", + "sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0" ], "markers": "python_version >= '3.8'", - "version": "==69.5.1" + "version": "==70.0.0" }, "six": { "hashes": [ @@ -1381,11 +1315,11 @@ }, "faker": { "hashes": [ - "sha256:6737cc6d591cd83421fdc5e494f6e2c1a6e32266214f158b745aa9fa15687c98", - "sha256:c153505618801f1704807b258a6010ea8cabf91f66f4788939bfdba83b887e76" + "sha256:45b84f47ff1ef86e3d1a8d11583ca871ecf6730fad0660edadc02576583a2423", + "sha256:cfe97c4857c4c36ee32ea4aaabef884895992e209bae4cbd26807cf3e05c6918" ], "markers": "python_version >= '3.8'", - "version": "==25.0.1" + "version": "==25.2.0" }, "flake8": { "hashes": [ diff --git a/tdrs-backend/docker-compose.local.yml b/tdrs-backend/docker-compose.local.yml index d2cd5289c..2de355c9c 100644 --- a/tdrs-backend/docker-compose.local.yml +++ b/tdrs-backend/docker-compose.local.yml @@ -68,12 +68,8 @@ services: - AMS_CLIENT_ID - AMS_CLIENT_SECRET - AMS_CONFIGURATION_ENDPOINT - - ACFTITAN_HOST - - ACFTITAN_KEY - - ACFTITAN_USERNAME - REDIS_URI=redis://redis-server:6379 - REDIS_SERVER_LOCAL=TRUE - - ACFTITAN_SFTP_PYTEST - SENDGRID_API_KEY volumes: - .:/tdpapp diff --git a/tdrs-backend/docker-compose.yml b/tdrs-backend/docker-compose.yml index dba1be5de..07d014fb5 100644 --- a/tdrs-backend/docker-compose.yml +++ b/tdrs-backend/docker-compose.yml @@ -91,12 +91,8 @@ services: - AMS_CLIENT_ID - AMS_CLIENT_SECRET - AMS_CONFIGURATION_ENDPOINT - - ACFTITAN_HOST - - ACFTITAN_KEY - - ACFTITAN_USERNAME - REDIS_URI=redis://redis-server:6379 - REDIS_SERVER_LOCAL=TRUE - - ACFTITAN_SFTP_PYTEST - CYPRESS_TOKEN - DJANGO_DEBUG - SENDGRID_API_KEY diff --git a/tdrs-backend/tdpservice/data_files/views.py b/tdrs-backend/tdpservice/data_files/views.py index dfcc71416..3f67d7cb3 100644 --- a/tdrs-backend/tdpservice/data_files/views.py +++ b/tdrs-backend/tdpservice/data_files/views.py @@ -18,7 +18,7 @@ from tdpservice.data_files.util import get_xls_serialized_file from tdpservice.data_files.models import DataFile, get_s3_upload_path from tdpservice.users.permissions import DataFilePermissions, IsApprovedPermission -from tdpservice.scheduling import sftp_task, parser_task +from tdpservice.scheduling import parser_task from tdpservice.data_files.s3_client import S3Client from tdpservice.parsers.models import ParserError from tdpservice.parsers.serializers import ParsingErrorSerializer @@ -59,7 +59,6 @@ def create(self, request, *args, **kwargs): # only if file is passed the virus scan and created successfully will we perform side-effects: # * Send to parsing - # * Upload to ACF-TITAN # * Send email to user logger.debug(f"{self.__class__.__name__}: status: {response.status_code}") @@ -74,15 +73,6 @@ def create(self, request, *args, **kwargs): parser_task.parse.delay(data_file_id) logger.info("Submitted parse task to queue for datafile %s.", data_file_id) - sftp_task.upload.delay( - data_file_pk=data_file_id, - server_address=settings.ACFTITAN_SERVER_ADDRESS, - local_key=settings.ACFTITAN_LOCAL_KEY, - username=settings.ACFTITAN_USERNAME, - port=22 - ) - logger.info("Submitted upload task to redis for datafile %s.", data_file_id) - app_name = settings.APP_NAME + '/' key = app_name + get_s3_upload_path(data_file, '') version_id = self.get_s3_versioning_id(response.data.get('original_filename'), key) diff --git a/tdrs-backend/tdpservice/scheduling/sftp_task.py b/tdrs-backend/tdpservice/scheduling/sftp_task.py deleted file mode 100644 index d4807ac88..000000000 --- a/tdrs-backend/tdpservice/scheduling/sftp_task.py +++ /dev/null @@ -1,135 +0,0 @@ -"""schedule tasks.""" - -from __future__ import absolute_import - -# The tasks - -import hashlib -import os - -from celery import shared_task -from django.conf import settings -import datetime -import paramiko -import logging -from tdpservice.data_files.models import DataFile, LegacyFileTransfer - -logger = logging.getLogger(__name__) - - -@shared_task(acks_late=True, worker_prefetch_multiplier=1) -def upload( - data_file_pk, - server_address=settings.ACFTITAN_SERVER_ADDRESS, - local_key=settings.ACFTITAN_LOCAL_KEY, - username=settings.ACFTITAN_USERNAME, - port=22, -): - """ - Upload to SFTP server. - - This task uploads the file in DataFile object with pk = data_file_pk - to sftp server as defined in Settings file - """ - # Upload file - data_file = DataFile.objects.get(id=data_file_pk) - file_transfer_record = LegacyFileTransfer( - data_file=data_file, - uploaded_by=data_file.user, - file_name=data_file.filename if data_file.filename is not None else "None", - ) - - def write_key_to_file(private_key): - """Paramiko require the key in file object format.""" - with open("temp_key_file", "w") as f: - f.write(private_key) - f.close() - return "temp_key_file" - - def create_dir(directory_name, sftp_server): - """Code snippet to create directory in SFTP server.""" - try: - sftp_server.chdir(directory_name) # Test if remote_path exists - except IOError: - sftp_server.mkdir(directory_name) # Create remote_path - sftp_server.chdir(directory_name) - - for attempt in range(1, 4): - logger.info("Attempt {} to upload file {}".format(attempt, data_file.filename)) - try: - # Create directory names for ACF titan - destination = str(data_file.filename) - today_date = datetime.datetime.today() - upper_directory_name = today_date.strftime("%Y%m%d") - lower_directory_name = today_date.strftime( - str(data_file.year) + "-" + str(data_file.quarter) - ) - - # Paramiko need local file - paramiko_local_file = data_file.file.read() - with open(destination, "wb") as f1: - f1.write(paramiko_local_file) - file_transfer_record.file_size = f1.tell() - file_transfer_record.file_shasum = hashlib.sha256( - paramiko_local_file - ).hexdigest() - f1.close() - - # Paramiko SSH connection requires private key as file - temp_key_file = write_key_to_file(local_key) - os.chmod(temp_key_file, 0o600) - - # Create SFTP/SSH connection - transport = paramiko.SSHClient() - transport.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - pkey = paramiko.RSAKey.from_private_key_file(temp_key_file) - transport.connect( - server_address, - pkey=pkey, - username=username, - port=port, - look_for_keys=False, - banner_timeout=30, - disabled_algorithms={"pubkeys": ["rsa-sha2-512", "rsa-sha2-256"]}, - ) - # remove temp key file - os.remove(temp_key_file) - sftp = transport.open_sftp() - - # Create remote directory - create_dir(settings.ACFTITAN_DIRECTORY, sftp_server=sftp) - create_dir(upper_directory_name, sftp_server=sftp) - create_dir(lower_directory_name, sftp_server=sftp) - - # Put the file in SFTP server - sftp.put(destination, destination) - - # Delete temp file - os.remove(destination) - logger.info( - "File {} has been successfully uploaded to {}".format( - destination, server_address - ) - ) - - # Add the log LegacyFileTransfer - file_transfer_record.result = LegacyFileTransfer.Result.COMPLETED - file_transfer_record.save() - transport.close() - return True - - except Exception as e: - logger.error( - "Attempt {} failed to upload {} with error:{}".format( - attempt, destination, e - ) - ) - transport.close() - else: - # All attempts failed - logger.error("Failed to upload {} after 3 attempts".format(destination)) - file_transfer_record.file_size = 0 - file_transfer_record.result = LegacyFileTransfer.Result.ERROR - file_transfer_record.save() - transport.close() - return False diff --git a/tdrs-backend/tdpservice/scheduling/test/test_file_upload.py b/tdrs-backend/tdpservice/scheduling/test/test_file_upload.py deleted file mode 100644 index 140ec6d64..000000000 --- a/tdrs-backend/tdpservice/scheduling/test/test_file_upload.py +++ /dev/null @@ -1,91 +0,0 @@ -"""Scheduling tests.""" - -from datetime import datetime - -import pytest -from paramiko import Transport -from paramiko.sftp_client import SFTPClient -from tdpservice.scheduling.sftp_task import upload -from tdpservice.data_files.test.factories import DataFileFactory -from tdpservice.stts.models import STT -from django.conf import settings - -""" -To mock sftp server, pytest_sftpserver (https://github.com/ulope/pytest-sftpserver) is used. -The package provides two main fixtures for testing: sftpserver and sftpclient. -""" - -@pytest.fixture -def stt_instance(region): - """Return an STT.""" - stt, _ = STT.objects.get_or_create( - name="first", - region=region, - postal_code="AR", - stt_code='234', - filenames={ - 'Aggregate Data': 'ADS.E2J.NDM3.TS22', - 'Active Case Data': 'test', - 'Closed Case Data': 'ADS.E2J.NDM2.TS22'} - ) - return stt - -@pytest.fixture -def data_file_instance(stt_instance): - """Prepare data file fixture instance for testing datafile.""" - return DataFileFactory.create( - created_at=datetime.now(), - stt=stt_instance - ) - - -@pytest.fixture -def sftp_connection_values(sftpserver): - """SFTP connection values for local sftp server.""" - server_address = sftpserver.host - local_key = settings.ACFTITAN_SFTP_PYTEST - username = "user" - port = sftpserver.port - return { - 'server_address': server_address, - 'username': username, - 'local_key': local_key, - 'port': port - } - - -@pytest.fixture(scope="session") -def sftpclient(sftpserver): - """SFTP client for local sftp server.""" - transport = Transport((sftpserver.host, sftpserver.port)) - transport.connect(username="a", password="b") - sftpclient = SFTPClient.from_transport(transport) - yield sftpclient - sftpclient.close() - transport.close() - - -@pytest.mark.django_db -def test_new_data_file(sftpserver, data_file_instance, sftp_connection_values, sftpclient): - """Datafile object for testing the file.""" - data_file_instance.save() - - """ - Need .serve_content to keep the communication alive - Here we put a dummy file somefile.txt in a_dir to keep the port open - """ - with sftpserver.serve_content({'a_dir': {'somefile.txt': "File content"}}): - upload(data_file_instance.pk, - server_address=sftp_connection_values['server_address'], - local_key=sftp_connection_values['local_key'], - username=sftp_connection_values['username'], - port=sftp_connection_values['port']) - - # Create directory structure as needed for ACF_TITAN to assert correct directory name - today_date = datetime.today() - upper_directory_name = today_date.strftime('%Y%m%d') - lower_directory_name = today_date.strftime(str(data_file_instance.year) + - '-' + - str(data_file_instance.quarter)) - assert sftpclient.listdir(upper_directory_name+'/'+lower_directory_name)[0] == \ - data_file_instance.filename diff --git a/tdrs-backend/tdpservice/settings/common.py b/tdrs-backend/tdpservice/settings/common.py index 6ca924fe0..d4f6e0c13 100644 --- a/tdrs-backend/tdpservice/settings/common.py +++ b/tdrs-backend/tdpservice/settings/common.py @@ -443,17 +443,6 @@ class Common(Configuration): '' ) - # ------- SFTP CONFIG - ACFTITAN_SERVER_ADDRESS = os.getenv('ACFTITAN_HOST', '') - """ - To be able to fit the PRIVATE KEY in one line as environment variable, we replace the EOL - with an underscore char. - The next line replaces the _ with EOL before using the PRIVATE KEY - """ - ACFTITAN_LOCAL_KEY = os.getenv('ACFTITAN_KEY', '').replace('_', '\n') - ACFTITAN_USERNAME = os.getenv('ACFTITAN_USERNAME', '') - ACFTITAN_DIRECTORY = os.getenv('ACFTITAN_DIRECTORY', '') - # -------- CELERY CONFIG REDIS_URI = os.getenv( 'REDIS_URI', diff --git a/tdrs-backend/tdpservice/settings/local.py b/tdrs-backend/tdpservice/settings/local.py index ae22cbcab..171608fe5 100644 --- a/tdrs-backend/tdpservice/settings/local.py +++ b/tdrs-backend/tdpservice/settings/local.py @@ -43,12 +43,3 @@ class Local(Common): } REDIS_SERVER_LOCAL = bool(strtobool(os.getenv("REDIS_SERVER_LOCAL", "TRUE"))) - - # SFTP TEST KEY - """ - To be able to fit the PRIVATE KEY in one line as environment variable, we replace the EOL - with an underscore char. - The next line replaces the _ with EOL before using the PRIVATE KEY - """ - ACFTITAN_SFTP_PYTEST = os.getenv("ACFTITAN_SFTP_PYTEST").replace('_', '\n') - APP_NAME = "tdrs-backend-local" From c1e2b7080be7bba8e910e310bff5aceeb6d230ce Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Wed, 12 Jun 2024 10:11:06 -0400 Subject: [PATCH 101/126] update error string --- tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx b/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx index 6b753cafc..22b8b3a80 100644 --- a/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx +++ b/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx @@ -51,7 +51,7 @@ function STTComboBox({ selectStt, selectedStt, handleBlur, error, sttType }) { ? `${toTitleCase(sttType)}*` : 'Associated State, Tribe, or Territory*' } - error={error ? 'A state, tribe, or territory is required' : undefined} + error={error ? `A ${sttType} is required` : undefined} handleSelect={selectStt} selected={selectedStt} handleBlur={handleBlur} From eb752bd50ebefb0cc6919e39036fc0f45289088a Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Wed, 12 Jun 2024 10:28:20 -0400 Subject: [PATCH 102/126] fix tests --- tdrs-frontend/src/components/Home/Home.test.jsx | 8 ++------ tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx | 6 +++++- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tdrs-frontend/src/components/Home/Home.test.jsx b/tdrs-frontend/src/components/Home/Home.test.jsx index 353430317..a58904d50 100644 --- a/tdrs-frontend/src/components/Home/Home.test.jsx +++ b/tdrs-frontend/src/components/Home/Home.test.jsx @@ -430,9 +430,7 @@ describe('Pre-approval Home page', () => { expect(getByText('First Name is required')).toBeInTheDocument() expect(getByText('Last Name is required')).toBeInTheDocument() - expect( - getByText('A state, tribe, or territory is required') - ).toBeInTheDocument() + expect(getByText('A state is required')).toBeInTheDocument() }) it('should not require an stt for ofa users', () => { @@ -479,9 +477,7 @@ describe('Pre-approval Home page', () => { expect(getByText('First Name is required')).toBeInTheDocument() expect(getByText('Last Name is required')).toBeInTheDocument() - expect( - queryByText('A state, tribe, or territory is required') - ).not.toBeInTheDocument() + expect(queryByText('A state is required')).not.toBeInTheDocument() }) it('should remove error message when you add a character and blur out of input', () => { diff --git a/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx b/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx index 22b8b3a80..d2ed13b80 100644 --- a/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx +++ b/tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx @@ -51,7 +51,11 @@ function STTComboBox({ selectStt, selectedStt, handleBlur, error, sttType }) { ? `${toTitleCase(sttType)}*` : 'Associated State, Tribe, or Territory*' } - error={error ? `A ${sttType} is required` : undefined} + error={ + error + ? `A ${sttType || 'state, tribe, or territory'} is required` + : undefined + } handleSelect={selectStt} selected={selectedStt} handleBlur={handleBlur} From c79a3b28631f160d13e26d7e745c629af38cbf1e Mon Sep 17 00:00:00 2001 From: robgendron <163159602+robgendron@users.noreply.github.com> Date: Fri, 14 Jun 2024 12:06:35 -0400 Subject: [PATCH 103/126] Update Team-Composition.md (#3011) Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> --- docs/How-We-Work/Team-Composition.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/How-We-Work/Team-Composition.md b/docs/How-We-Work/Team-Composition.md index e75776003..65a984d97 100644 --- a/docs/How-We-Work/Team-Composition.md +++ b/docs/How-We-Work/Team-Composition.md @@ -8,14 +8,13 @@ Please refer to the [Team Members doc](https://hhsgov.sharepoint.com/:w:/r/sites * Alexandra Pennington, OFA, tech lead **Raft** -* Connor Smith, Raft, facilitator/product manager -* Miles Reiter, Raft, design lead + senior ux/ui researcher and designer -* Diana Liang, Raft, ux/ui researcher and designer +* Rob Gendron, Raft, facilitator/product manager +* Victoria Amoroso, Raft, design lead + senior ux/ui researcher and designer +* Miles Reiter, Raft, senior ux/ui researcher and designer * Andrew Jameson, Raft, tech lead -* Cameron Smart, Raft, full stack engineer * Jan Timpe, Raft, full stack engineer * Mo Sohani, Raft, full stack engineer -* George Hudson, Raft, devops engineer +* Eric Lipe, Raft, full stack engineer ## Subject Matter Experts **OFA Data Team** From 9a8c3e81f275bb295563ecd0ff85d65c73cc73f7 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 17 Jun 2024 15:38:35 -0400 Subject: [PATCH 104/126] - Added useful debug logging to partial hash functions --- tdrs-backend/tdpservice/parsers/util.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index b26f5f266..02719c0e6 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -245,10 +245,13 @@ def remove_case_due_to_errors(self, should_remove, hash): def generate_t1_t4_hashes(line, record): """Return hashes for duplicate and partial duplicate detection for T1 & T4 records.""" + logger.debug(f"Partial Hash Field Values: {record.RecordType} {str(record.RPT_MONTH_YEAR)} {record.CASE_NUMBER}") return hash(line), hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) def generate_t2_t3_t5_hashes(line, record): """Return hashes for duplicate and partial duplicate detection for T2 & T3 & T5 records.""" + logger.debug(f"Partial Hash Field Values: {record.RecordType} {str(record.RPT_MONTH_YEAR)} {record.CASE_NUMBER} + {str(record.FAMILY_AFFILIATION)} {record.DATE_OF_BIRTH} {record.SSN}") return hash(line), hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) From 0fce22f784a4cc6c7c63fef3bb3571dfaa267b1d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 17 Jun 2024 16:14:44 -0400 Subject: [PATCH 105/126] - Updated duplicate detection to allow "partial duplicates" of s3 and s4 files - Added tests for partial dup s3/s4 --- .../parsers/case_consistency_validator.py | 7 ++- .../tdpservice/parsers/duplicate_manager.py | 4 +- tdrs-backend/tdpservice/parsers/row_schema.py | 4 +- .../tdpservice/parsers/test/conftest.py | 52 +++++++++++++++++++ .../tdpservice/parsers/test/test_parse.py | 10 +++- tdrs-backend/tdpservice/parsers/util.py | 4 +- 6 files changed, 72 insertions(+), 9 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 560243b39..39dc90474 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -111,8 +111,11 @@ def add_record(self, record, schema, line, line_number, case_has_errors): else: self.current_case = None # Section 3/4 records don't have a CASE_NUMBER, and they're broken into multiple records for the same line. - # Thus to keep the hash unique, we use the whole line to identify the "case" in this instance. - case_hash = hash(line) + # The duplicate manager saves us from dupe validating the records on teh same line, however, we use record + # type as the "case number" here because there should only ever be one line in a section 3/4 file with a + # record type. If we generate the same hash twice we guarentee an error and therefore need only check the + # record type. + case_hash = hash(record.RecordType) self.current_case_hash = case_hash diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 9e709c21e..72606c4b2 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -102,8 +102,10 @@ def __get_partial_dup_error_msg(self, schema, record_type, curr_line_number, exi f"{record_type} at line {curr_line_number}. Record is a partial duplicate of the " f"record at line number {existing_line_number}. Duplicated fields causing error: ") for i, name in enumerate(field_names): - if i == len(field_names) - 1: + if i == len(field_names) - 1 and len(field_names) != 1: err_msg += f"and {schema.get_field_by_name(name).friendly_name}." + elif len(field_names) == 1: + err_msg += f"{schema.get_field_by_name(name).friendly_name}." else: err_msg += f"{schema.get_field_by_name(name).friendly_name}, " return err_msg diff --git a/tdrs-backend/tdpservice/parsers/row_schema.py b/tdrs-backend/tdpservice/parsers/row_schema.py index 3c4a9362a..96f08581c 100644 --- a/tdrs-backend/tdpservice/parsers/row_schema.py +++ b/tdrs-backend/tdpservice/parsers/row_schema.py @@ -15,9 +15,9 @@ def __init__( document=None, # The default hash function covers all program types with record types ending in a 6 or 7. generate_hashes_func=lambda line, record: (hash(line), - None), + hash(record.RecordType)), should_skip_partial_dup_func=lambda record: False, - get_partial_hash_members_func=lambda: [], + get_partial_hash_members_func=lambda: ["RecordType"], preparsing_validators=[], postparsing_validators=[], fields=[], diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index be5dc0eea..fdf0c629c 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -661,6 +661,52 @@ def ssp_s2_partial_dup_file(): ) return parsing_file +@pytest.fixture +def tanf_s3_partial_dup_file(): + """Fixture for a section 3 file containing an exact duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="Aggregate Data", + file__name='s3_exact_duplicate.txt', + file__section='Aggregate Data', + file__data=(b'HEADER20214G06 TAN1 D\n' + b'T620214000127470001104500011146000043010000397700003924000084460000706800007222' + b'0000550428490000551413780000566432530007558100075921000755420000098100000970000' + b'0096800039298000393490003897200035302000356020003560200168447001690470016810700' + b'0464480004649800046203001219990012254900121904000001630000014900000151000003440' + b'000033100000276000002580000024100000187000054530000388100003884\n' + b'T620214000127470001104500011146000043010000397700003924000084460000706800007222' + b'0000550428490000551413780000566432530007558100075921000755420000098100000970000' + b'0096800039298000393490013897200035302000356020003560200168447001690470016810700' + b'0464480004649800046203001219990012254900121904000001630000014900000151000003440' + b'000033100000276000002580000024100000187000054530000388100003884\n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + +@pytest.fixture +def tanf_s4_partial_dup_file(): + """Fixture for a section 4 file containing a partial duplicate record.""" + parsing_file = ParsingFileFactory( + year=2022, + quarter='Q1', + section="Stratum Data", + file__name='s4_partial_duplicate.txt', + file__section='Stratum Data', + file__data=(b'HEADER20214S06 TAN1 D\n' + b'T720214101006853700680540068454103000312400037850003180104000347400036460003583106' + b'000044600004360000325299000506200036070003385202000039100002740000499 ' + b' \n' + b'T720214101006853700681540068454103000312400037850003180104000347400036460003583106' + b'000044600004360000325299000506200036070003385202000039100002740000499 ' + b' \n' + b'TRAILER0000001 ' + ) + ) + return parsing_file + @pytest.fixture def partial_dup_t1_err_msg(): """Fixture for t1 record partial duplicate error.""" @@ -674,3 +720,9 @@ def partial_dup_t5_err_msg(): return ("Partial duplicate record detected with record type {record_type} at line 3. Record is a partial " "duplicate of the record at line number 2. Duplicated fields causing error: record type, " "reporting month and year, case number, family affiliation, date of birth, and social security number.") + +@pytest.fixture +def partial_dup_s3_s4_err_msg(): + """Fixture for t7 record partial duplicate error.""" + return ("Partial duplicate record detected with record type {record_type} at line 3. Record is a partial " + "duplicate of the record at line number 2. Duplicated fields causing error: record type.") diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index cd45a7305..da1ca8845 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1705,7 +1705,7 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): ]) @pytest.mark.django_db() def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, request): - """Test handling invalid quarter value that raises a ValueError exception.""" + """Test cases for datafiles that have exact duplicate records.""" datafile = request.getfixturevalue(file) dfs.datafile = datafile @@ -1731,6 +1731,12 @@ def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, ('tanf_s2_partial_dup_file', 10000, TANF_T5, "T5", 3, "partial_dup_t5_err_msg"), # This forces an in memory and database deletion of records. ('tanf_s2_partial_dup_file', 1, TANF_T5, "T5", 3, "partial_dup_t5_err_msg"), + ('tanf_s3_partial_dup_file', 10000, TANF_T6, "T6", 1, "partial_dup_s3_s4_err_msg"), + # This forces an in memory and database deletion of records. + ('tanf_s3_partial_dup_file', 1, TANF_T6, "T6", 1, "partial_dup_s3_s4_err_msg"), + ('tanf_s4_partial_dup_file', 10000, TANF_T7, "T7", 1, "partial_dup_s3_s4_err_msg"), + # This forces an in memory and database deletion of records. + ('tanf_s4_partial_dup_file', 1, TANF_T7, "T7", 1, "partial_dup_s3_s4_err_msg"), ('ssp_s1_partial_dup_file', 10000, SSP_M1, "M1", 3, "partial_dup_t1_err_msg"), # This forces an in memory and database deletion of records. ('ssp_s1_partial_dup_file', 1, SSP_M1, "M1", 3, "partial_dup_t1_err_msg"), @@ -1740,7 +1746,7 @@ def test_parse_duplicate(file, batch_size, model, record_type, num_errors, dfs, ]) @pytest.mark.django_db() def test_parse_partial_duplicate(file, batch_size, model, record_type, num_errors, err_msg, dfs, request): - """Test handling invalid quarter value that raises a ValueError exception.""" + """Test cases for datafiles that have partial duplicate records.""" datafile = request.getfixturevalue(file) expected_error_msg = request.getfixturevalue(err_msg) diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 02719c0e6..8a49f0a8f 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -250,8 +250,8 @@ def generate_t1_t4_hashes(line, record): def generate_t2_t3_t5_hashes(line, record): """Return hashes for duplicate and partial duplicate detection for T2 & T3 & T5 records.""" - logger.debug(f"Partial Hash Field Values: {record.RecordType} {str(record.RPT_MONTH_YEAR)} {record.CASE_NUMBER} - {str(record.FAMILY_AFFILIATION)} {record.DATE_OF_BIRTH} {record.SSN}") + logger.debug(f"Partial Hash Field Values: {record.RecordType} {str(record.RPT_MONTH_YEAR)} {record.CASE_NUMBER} " + + f"{str(record.FAMILY_AFFILIATION)} {record.DATE_OF_BIRTH} {record.SSN}") return hash(line), hash(record.RecordType + str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER + str(record.FAMILY_AFFILIATION) + record.DATE_OF_BIRTH + record.SSN) From 610e0cdd1535b49c0635dbfc54324e6ae9522091 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Tue, 18 Jun 2024 09:54:45 -0400 Subject: [PATCH 106/126] - updated file status to be consistent with expectations --- tdrs-backend/tdpservice/parsers/models.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/models.py b/tdrs-backend/tdpservice/parsers/models.py index 1cbd8c5a5..bbf7535cd 100644 --- a/tdrs-backend/tdpservice/parsers/models.py +++ b/tdrs-backend/tdpservice/parsers/models.py @@ -111,12 +111,11 @@ def get_status(self): if errors is None: return DataFileSummary.Status.PENDING - elif precheck_errors.count() > 0 or case_consistency_errors.count() > 0 or \ - self.total_number_of_records_created == 0: + elif precheck_errors.count() > 0 or self.total_number_of_records_created == 0: return DataFileSummary.Status.REJECTED elif errors.count() == 0: return DataFileSummary.Status.ACCEPTED - elif row_precheck_errors.count() > 0: + elif row_precheck_errors.count() > 0 or case_consistency_errors.count() > 0: return DataFileSummary.Status.PARTIALLY_ACCEPTED else: return DataFileSummary.Status.ACCEPTED_WITH_ERRORS From d100935c617df999f86de0622443ddd6b90baa93 Mon Sep 17 00:00:00 2001 From: raftmsohani <97037188+raftmsohani@users.noreply.github.com> Date: Thu, 20 Jun 2024 09:40:54 -0400 Subject: [PATCH 107/126] added T-mobile ip address subnet (#3031) Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> --- tdrs-frontend/nginx/cloud.gov/ip_whitelist_ipv6.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/tdrs-frontend/nginx/cloud.gov/ip_whitelist_ipv6.conf b/tdrs-frontend/nginx/cloud.gov/ip_whitelist_ipv6.conf index ba40f179c..ef268bef8 100644 --- a/tdrs-frontend/nginx/cloud.gov/ip_whitelist_ipv6.conf +++ b/tdrs-frontend/nginx/cloud.gov/ip_whitelist_ipv6.conf @@ -517677,6 +517677,7 @@ allow 2606:A000:EFC0:6B:3DBD:F080::/90; allow 2606:A000:EFC0:6B:3DBD:F0C0::/91; allow 2606:A000:EFC0:6B:3DBD:F0E0::/93; allow 2606:A000:EFC0:6B:3DBD:F0E8::/98; +allow 2607:fb90::/31; allow 2610:A1:3068:252:0:4::/94; allow 2610:A1:3068:252:0:8::/93; allow 2610:A1:3068:252:0:10::/92; From 5127bfe5d4cac98947fb978125da1468d4b0565d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 20 Jun 2024 15:01:11 -0400 Subject: [PATCH 108/126] - Updated case_consistency validator to track which case has been validated to identify which case might need to be removed - decoupled dup manager and case consistency val error counts - Added more descriptive logging --- .../parsers/case_consistency_validator.py | 36 +++++++++------- .../tdpservice/parsers/duplicate_manager.py | 15 ++++--- tdrs-backend/tdpservice/parsers/parse.py | 8 ++-- tdrs-backend/tdpservice/parsers/util.py | 41 ++++++++++--------- 4 files changed, 57 insertions(+), 43 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 39dc90474..b222ee3c1 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -81,6 +81,16 @@ def clear_structs(self, seed_record_schema_pair=None): def update_removed(self, case_hash, was_removed): """Notify duplicate manager's CaseDuplicateDetectors whether they need to mark their records for DB removal.""" self.duplicate_manager.update_removed(case_hash, was_removed) + + def _get_case_hash(self, record): + # Section 3/4 records don't have a CASE_NUMBER, and they're broken into multiple records for the same line. + # The duplicate manager saves us from dupe validating the records on teh same line, however, we use record + # type as the "case number" here because there should only ever be one line in a section 3/4 file with a + # record type. If we generate the same hash twice we guarentee an error and therefore need only check the + # record type. + if not self.case_is_section_one_or_two: + return hash(record.RecordType) + return hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) def add_record(self, record, schema, line, line_number, case_has_errors): """Add record to cache, validate if new case is detected, and check for duplicate errors. @@ -94,35 +104,31 @@ def add_record(self, record, schema, line, line_number, case_has_errors): based on the records section) """ num_errors = 0 - case_hash = None + latest_case_hash = self._get_case_hash(record) + case_hash_to_remove = latest_case_hash self.current_rpt_month_year = record.RPT_MONTH_YEAR if self.case_is_section_one_or_two: - case_hash = hash(str(record.RPT_MONTH_YEAR) + record.CASE_NUMBER) - if case_hash != self.current_case_hash and self.current_case_hash is not None: + if latest_case_hash != self.current_case_hash and self.current_case_hash is not None: num_errors += self.validate() self.clear_structs((record, schema)) self.case_has_errors = case_has_errors self.has_validated = False + case_hash_to_remove = self.current_case_hash else: self.case_has_errors = self.case_has_errors if self.case_has_errors else case_has_errors self.add_record_to_structs((record, schema)) self.has_validated = False self.current_case = record.CASE_NUMBER - else: - self.current_case = None - # Section 3/4 records don't have a CASE_NUMBER, and they're broken into multiple records for the same line. - # The duplicate manager saves us from dupe validating the records on teh same line, however, we use record - # type as the "case number" here because there should only ever be one line in a section 3/4 file with a - # record type. If we generate the same hash twice we guarentee an error and therefore need only check the - # record type. - case_hash = hash(record.RecordType) - self.current_case_hash = case_hash + # Need to return the hash of what we just cat4 validated, i.e. case_hash_to_remove = self.current_case_hash. If + # we didn't cat4 validate then we return the latest case hash, i.e. case_hash_to_remove = latest_case_hash. + # However, we always call self.duplicate_manager.add_record with the latest case_hash. + self.duplicate_manager.add_record(record, latest_case_hash, schema, line, line_number) + num_errors += self.duplicate_manager.get_num_dup_errors(case_hash_to_remove) - num_errors += self.duplicate_manager.add_record(record, case_hash, schema, line, - line_number) + self.current_case_hash = latest_case_hash - return num_errors > 0, case_hash + return num_errors > 0, case_hash_to_remove, latest_case_hash def validate(self): """Perform category four validation on all cached records.""" diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index 72606c4b2..a2653401d 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -66,6 +66,10 @@ def has_errors(self): """Return case duplicate error state.""" return self.num_errors > 0 + def get_num_errors(self): + """Return the number of errors.""" + return self.num_errors + def get_records_for_post_parse_deletion(self): """Return record ids if case has duplicate errors.""" if self.num_errors > 0 and self.should_remove_from_db: @@ -117,7 +121,6 @@ def add_case_member(self, record, schema, line, line_number): @param schema: the schema from which the record was created @param line: the raw string line representing the record @param line_number: the line number the record was generated from in the datafile - @return: the number of duplicate errors """ # We do not run duplicate detection for records that have been generated on the same line: T3, M3, T6, M6, T7, # M7. This is because we would incorrectly generate both duplicate and partial duplicate errors. @@ -150,8 +153,6 @@ def add_case_member(self, record, schema, line, line_number): if partial_hash is not None and partial_hash not in self.partial_hashes: self.partial_hashes[partial_hash] = line_number - return self.num_errors - class DuplicateManager: """Manages all CaseDuplicateDetectors and their errors.""" @@ -176,12 +177,11 @@ def add_record(self, record, case_hash, schema, line, line_number): @param schema: the schema from which the record was created @param line: the raw string from the datafile representing the record @param line_number: the line number the record was generated from in the datafile - @return: the number of duplicate errors """ if case_hash not in self.case_duplicate_detectors: case_duplicate_detector = CaseDuplicateDetector(case_hash, self.generated_errors, self.generate_error) self.case_duplicate_detectors[case_hash] = case_duplicate_detector - return self.case_duplicate_detectors[case_hash].add_case_member(record, schema, line, line_number) + self.case_duplicate_detectors[case_hash].add_case_member(record, schema, line, line_number) def get_generated_errors(self): """Return all errors from all CaseDuplicateDetectors.""" @@ -214,3 +214,8 @@ def update_removed(self, case_hash, was_removed): case_duplicate_detector.set_should_remove_from_db(False) else: case_duplicate_detector.set_should_remove_from_db(True) + + def get_num_dup_errors(self, case_hash): + if case_hash in self.case_duplicate_detectors: + return self.case_duplicate_detectors.get(case_hash).get_num_errors() + return 0 diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 40631e7f9..df935a55c 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -338,11 +338,11 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas s = schema_manager.schemas[i] record.datafile = datafile record_has_errors = len(record_errors) > 0 - should_remove, case_hash = case_consistency_validator.add_record(record, s, line, + should_remove, case_hash_to_remove, case_hash = case_consistency_validator.add_record(record, s, line, line_number, record_has_errors) - unsaved_records.add_record(case_hash, (record, s.document)) - was_removed = unsaved_records.remove_case_due_to_errors(should_remove, case_hash) - case_consistency_validator.update_removed(case_hash, was_removed) + unsaved_records.add_record(case_hash, (record, s.document), line_number) + was_removed = unsaved_records.remove_case_due_to_errors(should_remove, case_hash_to_remove) + case_consistency_validator.update_removed(case_hash_to_remove, was_removed) # Add any generated cat4 errors to our error data structure & clear our caches errors list cat4_errors = case_consistency_validator.get_generated_errors() diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 8a49f0a8f..b9647cfe4 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -190,7 +190,7 @@ def __init__(self, section): self.cases_already_removed = set() self.serialized_cases = set() - def add_record(self, case_hash, record_doc_pair): + def add_record(self, case_hash, record_doc_pair, line_num): """Add a record_doc_pair to the sorted object if the case hasn't been removed already.""" record, document = record_doc_pair rpt_month_year = str(getattr(record, 'RPT_MONTH_YEAR')) @@ -198,8 +198,9 @@ def add_record(self, case_hash, record_doc_pair): if case_hash in self.cases_already_removed: logger.info("Record's case has already been removed due to category four errors. Not adding record with " f"info: ({record.RecordType}, {getattr(record, 'CASE_NUMBER', None)}, {rpt_month_year})") + return - if case_hash is not None and case_hash not in self.cases_already_removed: + if case_hash is not None: hashed_case = self.hash_sorted_cases.get(case_hash, {}) records = hashed_case.get(document, []) records.append(record) @@ -209,6 +210,8 @@ def add_record(self, case_hash, record_doc_pair): # We treat the nested dictionary here as a set because dictionaries are sorted while sets aren't. If we # don't have a sorted container we have test failures. self.cases.setdefault(document, dict())[record] = None + else: + logger.error(f"Error: Case hash for record at line #{line_num} was None!") def get_bulk_create_struct(self): """Return dict of form {document: Iterable(records)} for bulk_create_records to consume.""" @@ -221,26 +224,26 @@ def clear(self, all_created): self.hash_sorted_cases = dict() self.cases = dict() - def remove_case_due_to_errors(self, should_remove, hash): + def remove_case_due_to_errors(self, should_remove, case_hash): """Remove all records from memory given the hash.""" if should_remove: - if hash in self.cases_already_removed: + if case_hash in self.cases_already_removed: return True - if hash in self.hash_sorted_cases: - self.cases_already_removed.add(hash) - removed = self.hash_sorted_cases.pop(hash) - - # TODO: Can we do this without nested loops? - case_ids = list() - for records in removed.values(): - for record in records: - case_ids.append((record.RecordType, getattr(record, 'CASE_NUMBER', None), - record.RPT_MONTH_YEAR)) - for record_set in self.cases.values(): - record_set.pop(record, None) - logger.info("Case consistency errors generated, removing case from in memory cache. " - f"Record(s) info: {case_ids}.") - return True and hash not in self.serialized_cases + if case_hash in self.hash_sorted_cases: + self.cases_already_removed.add(case_hash) + removed = self.hash_sorted_cases.pop(case_hash) + + if logger.getEffectiveLevel() == logging.DEBUG: + case_ids = list() + for records in removed.values(): + for record in records: + case_ids.append((record.RecordType, getattr(record, 'CASE_NUMBER', None), + record.RPT_MONTH_YEAR)) + for record_set in self.cases.values(): + record_set.pop(record, None) + logger.debug("Case consistency errors generated, removing case from in memory cache. " + f"Record(s) info: {case_ids}.") + return True and case_hash not in self.serialized_cases return False def generate_t1_t4_hashes(line, record): From 57d7de4b246519a05d920cbd63e9c57844597c6c Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 20 Jun 2024 15:34:50 -0400 Subject: [PATCH 109/126] - Update tests --- .../parsers/test/test_case_consistency.py | 16 ++++++++-------- .../tdpservice/parsers/test/test_parse.py | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 770398838..1f896e5a0 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1323,19 +1323,19 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T t1_dup = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') line_number += 1 - has_errors, _ = case_consistency_validator.add_record(t1_dup, t1_schema, str(t1), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t1_dup, t1_schema, str(t1), line_number, False) line_number += 1 assert has_errors t2_dup = T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, SSN="111111111", DATE_OF_BIRTH="22222222") - has_errors, _ = case_consistency_validator.add_record(t2_dup, t2_schema, str(t2), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t2_dup, t2_schema, str(t2), line_number, False) line_number += 1 assert has_errors t3_dup = T3Factory.create(RecordType="T3", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, SSN="111111111", DATE_OF_BIRTH="22222222") - has_errors, _ = case_consistency_validator.add_record(t3_dup, t3_schema, str(t3s[0]), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t3_dup, t3_schema, str(t3s[0]), line_number, False) line_number += 1 assert has_errors @@ -1417,19 +1417,19 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f # Introduce partial dups t1_dup = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') line_number += 1 - has_errors, _ = case_consistency_validator.add_record(t1_dup, t1_schema, str(t1_dup), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t1_dup, t1_schema, str(t1_dup), line_number, False) line_number += 1 assert has_errors t2_dup = T2Factory.create(RecordType="T2", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, SSN="111111111", DATE_OF_BIRTH="22222222") - has_errors, _ = case_consistency_validator.add_record(t2_dup, t2_schema, str(t2_dup), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t2_dup, t2_schema, str(t2_dup), line_number, False) line_number += 1 assert has_errors t3_dup = T3Factory.create(RecordType="T3", RPT_MONTH_YEAR=202010, CASE_NUMBER='123', FAMILY_AFFILIATION=1, SSN="111111111", DATE_OF_BIRTH="22222222") - has_errors, _ = case_consistency_validator.add_record(t3_dup, t3_schema, str(t3_dup), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t3_dup, t3_schema, str(t3_dup), line_number, False) line_number += 1 assert has_errors @@ -1445,7 +1445,7 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f case_consistency_validator.clear_errors(clear_dup=False) t1_complete_dup = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') - has_errors, _ = case_consistency_validator.add_record(t1_complete_dup, t1_schema, str(t1), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t1_complete_dup, t1_schema, str(t1), line_number, False) errors = case_consistency_validator.get_generated_errors() assert len(errors) == 1 @@ -1571,7 +1571,7 @@ def test_section2_partial_duplicate_records_and_precedence(self, small_correct_f case_consistency_validator.clear_errors(clear_dup=False) t4_complete_dup = T4Factory.create(RecordType="T4", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') - has_errors, _ = case_consistency_validator.add_record(t4_complete_dup, t4_schema, str(t4), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t4_complete_dup, t4_schema, str(t4), line_number, False) errors = case_consistency_validator.get_generated_errors() assert len(errors) == 1 diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index da1ca8845..3d474b7cd 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -876,8 +876,8 @@ def test_parse_tanf_section2_file(tanf_section2_file, dfs): parse.parse_datafile(tanf_section2_file, dfs) - assert TANF_T4.objects.all().count() == 206 - assert TANF_T5.objects.all().count() == 558 + assert TANF_T4.objects.all().count() == 223 + assert TANF_T5.objects.all().count() == 605 parser_errors = ParserError.objects.filter(file=tanf_section2_file) From caa6dff8cbb73bb77a8ddcbf80bf1a7676e28aa5 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 20 Jun 2024 20:52:42 -0400 Subject: [PATCH 110/126] - Add edge case cat4 test - unblock util function that was causing errors --- .../tdpservice/parsers/test/conftest.py | 5 ++++ .../parsers/test/data/cat_4_edge_case.txt | 12 +++++++++ .../tdpservice/parsers/test/test_parse.py | 27 +++++++++++++++++++ tdrs-backend/tdpservice/parsers/util.py | 17 ++++++------ 4 files changed, 52 insertions(+), 9 deletions(-) create mode 100644 tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index fdf0c629c..d97de39a4 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -726,3 +726,8 @@ def partial_dup_s3_s4_err_msg(): """Fixture for t7 record partial duplicate error.""" return ("Partial duplicate record detected with record type {record_type} at line 3. Record is a partial " "duplicate of the record at line number 2. Duplicated fields causing error: record type.") + +@pytest.fixture +def cat4_edge_case_file(stt_user, stt): + """Fixture for cat_4_edge_case.txt.""" + return util.create_test_datafile('cat_4_edge_case.txt', stt_user, stt) \ No newline at end of file diff --git a/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt b/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt new file mode 100644 index 000000000..6ba5d4908 --- /dev/null +++ b/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt @@ -0,0 +1,12 @@ +HEADER20234A37000TAN1ED +T120231011111117835242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 +T120231011111119935242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 +T2202310111111199352299999999WWWWWWWWW2122222222221 13 1211 0 3106990 0 0 0 0 0 0 00000000000000000000000 +T320231011111119935499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT212222122 6306100000000 +T120231011111117836242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 +T2202310111111199362299999999WWWWWWWWW2122222222221 13 1211 0 3106990 0 0 0 0 0 0 00000000000000000000000 +T320231011111119937499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT212222122 6306100000000 +T120231011111119939242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 +T2202310111111199392299999999WWWWWWWWW2122222222221 13 1211 0 3106990 0 0 0 0 0 0 00000000000000000000000 +T320231011111119939499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT212222122 6306100000000 +TRAILER0000003 diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 3d474b7cd..4095a338f 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1765,3 +1765,30 @@ def test_parse_partial_duplicate(file, batch_size, model, record_type, num_error assert dup_error.error_message == expected_error_msg.format(record_type=record_type) model.objects.count() == 0 + +@pytest.mark.django_db() +def test_parse_cat_4_edge_case_file(cat4_edge_case_file, dfs): + """Test parsing file with a cat4 error edge case submission.""" + cat4_edge_case_file.year = 2024 + cat4_edge_case_file.quarter = 'Q1' + + dfs.datafile = cat4_edge_case_file + dfs.save() + + parse.parse_datafile(cat4_edge_case_file, dfs) + + parser_errors = ParserError.objects.filter(file=cat4_edge_case_file).filter( + error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) + for e in parser_errors: + print(e.error_message) + + assert TANF_T1.objects.all().count() == 2 + assert TANF_T2.objects.all().count() == 2 + assert TANF_T3.objects.all().count() == 4 + + assert dfs.total_number_of_records_in_file == 13 + assert dfs.total_number_of_records_created == 8 + + err = parser_errors.first() + assert err.error_message == ("Every T1 record should have at least one corresponding T2 or T3 record with the " + "same RPT_MONTH_YEAR and CASE_NUMBER.") diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index b9647cfe4..992b8d3b8 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -233,15 +233,14 @@ def remove_case_due_to_errors(self, should_remove, case_hash): self.cases_already_removed.add(case_hash) removed = self.hash_sorted_cases.pop(case_hash) - if logger.getEffectiveLevel() == logging.DEBUG: - case_ids = list() - for records in removed.values(): - for record in records: - case_ids.append((record.RecordType, getattr(record, 'CASE_NUMBER', None), - record.RPT_MONTH_YEAR)) - for record_set in self.cases.values(): - record_set.pop(record, None) - logger.debug("Case consistency errors generated, removing case from in memory cache. " + case_ids = list() + for records in removed.values(): + for record in records: + case_ids.append((record.RecordType, getattr(record, 'CASE_NUMBER', None), + record.RPT_MONTH_YEAR)) + for record_set in self.cases.values(): + record_set.pop(record, None) + logger.info("Case consistency errors generated, removing case from in memory cache. " f"Record(s) info: {case_ids}.") return True and case_hash not in self.serialized_cases return False From a4ac41143d7bdee4b24750bd7ccadb50a8ba15b8 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 21 Jun 2024 10:02:54 -0400 Subject: [PATCH 111/126] - Updated manager to correctly delete serialized records - Updated DFS to correctly count total records and total records created - Updated cat4 test case to be more extensive --- .../parsers/case_consistency_validator.py | 4 ++-- .../tdpservice/parsers/duplicate_manager.py | 13 ++++++++----- tdrs-backend/tdpservice/parsers/parse.py | 14 ++++++++------ .../parsers/test/data/cat_4_edge_case.txt | 7 +++++++ tdrs-backend/tdpservice/parsers/test/test_parse.py | 4 ++-- 5 files changed, 27 insertions(+), 15 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index b222ee3c1..9a0005326 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -78,9 +78,9 @@ def clear_structs(self, seed_record_schema_pair=None): if seed_record_schema_pair: self.add_record_to_structs(seed_record_schema_pair) - def update_removed(self, case_hash, was_removed): + def update_removed(self, case_hash, should_remove, was_removed): """Notify duplicate manager's CaseDuplicateDetectors whether they need to mark their records for DB removal.""" - self.duplicate_manager.update_removed(case_hash, was_removed) + self.duplicate_manager.update_removed(case_hash, should_remove, was_removed) def _get_case_hash(self, record): # Section 3/4 records don't have a CASE_NUMBER, and they're broken into multiple records for the same line. diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index a2653401d..d9a0a6fa3 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -72,7 +72,7 @@ def get_num_errors(self): def get_records_for_post_parse_deletion(self): """Return record ids if case has duplicate errors.""" - if self.num_errors > 0 and self.should_remove_from_db: + if self.should_remove_from_db: return self.record_ids return dict() @@ -122,11 +122,14 @@ def add_case_member(self, record, schema, line, line_number): @param line: the raw string line representing the record @param line_number: the line number the record was generated from in the datafile """ + # Add all records detector receives to id dictionary. That way if a line that has more than one record created + # from it will have all of it's records appropriately marked for deletion if need be. + self.record_ids.setdefault(schema.document, []).append(record.id) + # We do not run duplicate detection for records that have been generated on the same line: T3, M3, T6, M6, T7, # M7. This is because we would incorrectly generate both duplicate and partial duplicate errors. if self.current_line_number is None or self.current_line_number != line_number: self.current_line_number = line_number - self.record_ids.setdefault(schema.document, []).append(record.id) err_msg = None has_precedence = False is_new_max_precedence = False @@ -206,13 +209,13 @@ def get_records_to_remove(self): return records_to_remove - def update_removed(self, case_hash, was_removed): + def update_removed(self, case_hash, should_remove, was_removed): """Notify CaseDuplicateDetectors whether case could or could not be removed from memory.""" case_duplicate_detector = self.case_duplicate_detectors.get(case_hash, False) if case_duplicate_detector: - if was_removed: + if was_removed and not should_remove: case_duplicate_detector.set_should_remove_from_db(False) - else: + elif not was_removed and should_remove: case_duplicate_detector.set_should_remove_from_db(True) def get_num_dup_errors(self, case_hash): diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index df935a55c..57e1f5664 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -233,7 +233,7 @@ def create_no_records_created_pre_check_error(datafile, dfs): created = 1 return errors, created -def delete_serialized_records(duplicate_manager): +def delete_serialized_records(duplicate_manager, dfs): """Delete all records that have already been serialized to the DB that have cat4 errors.""" total_deleted = 0 for document, ids in duplicate_manager.get_records_to_remove().items(): @@ -247,10 +247,12 @@ def delete_serialized_records(duplicate_manager): # dependencies. If that ever changes, we should NOT use `_raw_delete`. num_deleted = qset._raw_delete(qset.db) total_deleted += num_deleted + dfs.total_number_of_records_created -= num_deleted logger.debug(f"Deleted {num_deleted} records of type: {model}.") except Exception as e: logging.error(f"Encountered error while deleting records of type {model}. Error message: {e}") - logger.info(f"Deleted a total of {total_deleted} records because of duplicate errors.") + if total_deleted: + logger.info(f"Deleted a total of {total_deleted} records from the DB because of case consistenecy errors.") def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, case_consistency_validator): """Parse lines with appropriate schema and return errors.""" @@ -320,7 +322,6 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas records = manager_parse_line(line, schema_manager, generate_error, datafile, is_encrypted) num_records = len(records) - dfs.total_number_of_records_in_file += num_records record_number = 0 for i in range(num_records): @@ -342,7 +343,8 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas line_number, record_has_errors) unsaved_records.add_record(case_hash, (record, s.document), line_number) was_removed = unsaved_records.remove_case_due_to_errors(should_remove, case_hash_to_remove) - case_consistency_validator.update_removed(case_hash_to_remove, was_removed) + case_consistency_validator.update_removed(case_hash_to_remove, should_remove, was_removed) + dfs.total_number_of_records_in_file += 1 # Add any generated cat4 errors to our error data structure & clear our caches errors list cat4_errors = case_consistency_validator.get_generated_errors() @@ -373,7 +375,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas should_remove = validate_case_consistency(case_consistency_validator) was_removed = unsaved_records.remove_case_due_to_errors(should_remove, case_hash) - case_consistency_validator.update_removed(case_hash, was_removed) + case_consistency_validator.update_removed(case_hash, should_remove, was_removed) # Only checking "all_created" here because records remained cached if bulk create fails. This is the last chance to # successfully create the records. @@ -399,7 +401,7 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas bulk_create_errors(unsaved_parser_errors, num_errors, flush=True) - delete_serialized_records(case_consistency_validator.duplicate_manager) + delete_serialized_records(case_consistency_validator.duplicate_manager, dfs) logger.debug(f"Cat4 validator cached {case_consistency_validator.total_cases_cached} cases and " f"validated {case_consistency_validator.total_cases_validated} of them.") diff --git a/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt b/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt index 6ba5d4908..46a6684ae 100644 --- a/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt +++ b/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt @@ -1,11 +1,18 @@ HEADER20234A37000TAN1ED +# First cat4 error T120231011111117835242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 + +# No cat4 errors T120231011111119935242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 T2202310111111199352299999999WWWWWWWWW2122222222221 13 1211 0 3106990 0 0 0 0 0 0 00000000000000000000000 T320231011111119935499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT212222122 6306100000000 + +# Three records all with different case numbers and three cat4 errors T120231011111117836242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 T2202310111111199362299999999WWWWWWWWW2122222222221 13 1211 0 3106990 0 0 0 0 0 0 00000000000000000000000 T320231011111119937499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT212222122 6306100000000 + +# No cat4 errors T120231011111119939242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 T2202310111111199392299999999WWWWWWWWW2122222222221 13 1211 0 3106990 0 0 0 0 0 0 00000000000000000000000 T320231011111119939499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT212222122 6306100000000 diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 4095a338f..fcebda84d 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1775,12 +1775,12 @@ def test_parse_cat_4_edge_case_file(cat4_edge_case_file, dfs): dfs.datafile = cat4_edge_case_file dfs.save() + settings.BULK_CREATE_BATCH_SIZE = 1 + parse.parse_datafile(cat4_edge_case_file, dfs) parser_errors = ParserError.objects.filter(file=cat4_edge_case_file).filter( error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY) - for e in parser_errors: - print(e.error_message) assert TANF_T1.objects.all().count() == 2 assert TANF_T2.objects.all().count() == 2 From daad0a0727a16ecfa1315f1c7f52bb1807d18cd1 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 21 Jun 2024 10:16:17 -0400 Subject: [PATCH 112/126] - Updated test --- tdrs-backend/tdpservice/parsers/test/test_parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index fcebda84d..817220407 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -876,8 +876,8 @@ def test_parse_tanf_section2_file(tanf_section2_file, dfs): parse.parse_datafile(tanf_section2_file, dfs) - assert TANF_T4.objects.all().count() == 223 - assert TANF_T5.objects.all().count() == 605 + assert TANF_T4.objects.all().count() == 206 + assert TANF_T5.objects.all().count() == 548 parser_errors = ParserError.objects.filter(file=tanf_section2_file) From 89b6d66ab33505e11961c024ea91220b8ddafb03 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 21 Jun 2024 10:22:24 -0400 Subject: [PATCH 113/126] - fix lint --- .../tdpservice/parsers/case_consistency_validator.py | 4 ++-- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 3 ++- tdrs-backend/tdpservice/parsers/parse.py | 7 +++++-- tdrs-backend/tdpservice/parsers/test/conftest.py | 2 +- .../tdpservice/parsers/test/test_case_consistency.py | 6 ++++-- tdrs-backend/tdpservice/parsers/util.py | 2 +- 6 files changed, 15 insertions(+), 9 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 9a0005326..7714cb3a7 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -81,7 +81,7 @@ def clear_structs(self, seed_record_schema_pair=None): def update_removed(self, case_hash, should_remove, was_removed): """Notify duplicate manager's CaseDuplicateDetectors whether they need to mark their records for DB removal.""" self.duplicate_manager.update_removed(case_hash, should_remove, was_removed) - + def _get_case_hash(self, record): # Section 3/4 records don't have a CASE_NUMBER, and they're broken into multiple records for the same line. # The duplicate manager saves us from dupe validating the records on teh same line, however, we use record @@ -121,7 +121,7 @@ def add_record(self, record, schema, line, line_number, case_has_errors): self.current_case = record.CASE_NUMBER # Need to return the hash of what we just cat4 validated, i.e. case_hash_to_remove = self.current_case_hash. If - # we didn't cat4 validate then we return the latest case hash, i.e. case_hash_to_remove = latest_case_hash. + # we didn't cat4 validate then we return the latest case hash, i.e. case_hash_to_remove = latest_case_hash. # However, we always call self.duplicate_manager.add_record with the latest case_hash. self.duplicate_manager.add_record(record, latest_case_hash, schema, line, line_number) num_errors += self.duplicate_manager.get_num_dup_errors(case_hash_to_remove) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index d9a0a6fa3..da55fd39b 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -217,8 +217,9 @@ def update_removed(self, case_hash, should_remove, was_removed): case_duplicate_detector.set_should_remove_from_db(False) elif not was_removed and should_remove: case_duplicate_detector.set_should_remove_from_db(True) - + def get_num_dup_errors(self, case_hash): + """Return the number of duplicate errors for a specific duplicate detector.""" if case_hash in self.case_duplicate_detectors: return self.case_duplicate_detectors.get(case_hash).get_num_errors() return 0 diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 57e1f5664..f9e43d0f7 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -339,8 +339,11 @@ def parse_datafile_lines(datafile, dfs, program_type, section, is_encrypted, cas s = schema_manager.schemas[i] record.datafile = datafile record_has_errors = len(record_errors) > 0 - should_remove, case_hash_to_remove, case_hash = case_consistency_validator.add_record(record, s, line, - line_number, record_has_errors) + should_remove, case_hash_to_remove, case_hash = case_consistency_validator.add_record(record, + s, + line, + line_number, + record_has_errors) unsaved_records.add_record(case_hash, (record, s.document), line_number) was_removed = unsaved_records.remove_case_due_to_errors(should_remove, case_hash_to_remove) case_consistency_validator.update_removed(case_hash_to_remove, should_remove, was_removed) diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py index d97de39a4..3dedf650e 100644 --- a/tdrs-backend/tdpservice/parsers/test/conftest.py +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -730,4 +730,4 @@ def partial_dup_s3_s4_err_msg(): @pytest.fixture def cat4_edge_case_file(stt_user, stt): """Fixture for cat_4_edge_case.txt.""" - return util.create_test_datafile('cat_4_edge_case.txt', stt_user, stt) \ No newline at end of file + return util.create_test_datafile('cat_4_edge_case.txt', stt_user, stt) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 1f896e5a0..2ff5b5fa4 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -1445,7 +1445,8 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f case_consistency_validator.clear_errors(clear_dup=False) t1_complete_dup = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') - has_errors, _, _ = case_consistency_validator.add_record(t1_complete_dup, t1_schema, str(t1), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t1_complete_dup, t1_schema, str(t1), + line_number, False) errors = case_consistency_validator.get_generated_errors() assert len(errors) == 1 @@ -1571,7 +1572,8 @@ def test_section2_partial_duplicate_records_and_precedence(self, small_correct_f case_consistency_validator.clear_errors(clear_dup=False) t4_complete_dup = T4Factory.create(RecordType="T4", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') - has_errors, _, _ = case_consistency_validator.add_record(t4_complete_dup, t4_schema, str(t4), line_number, False) + has_errors, _, _ = case_consistency_validator.add_record(t4_complete_dup, t4_schema, str(t4), + line_number, False) errors = case_consistency_validator.get_generated_errors() assert len(errors) == 1 diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 992b8d3b8..707985809 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -241,7 +241,7 @@ def remove_case_due_to_errors(self, should_remove, case_hash): for record_set in self.cases.values(): record_set.pop(record, None) logger.info("Case consistency errors generated, removing case from in memory cache. " - f"Record(s) info: {case_ids}.") + f"Record(s) info: {case_ids}.") return True and case_hash not in self.serialized_cases return False From cd9f441bced7e8f0f4f28f47b9ddef26ebf01292 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 21 Jun 2024 11:16:56 -0400 Subject: [PATCH 114/126] - Add elastic specific exception handling --- tdrs-backend/tdpservice/parsers/parse.py | 25 +++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index f9e43d0f7..ba404596b 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -13,6 +13,7 @@ from .schema_defs.utils import get_section_reference, get_program_model from .case_consistency_validator import CaseConsistencyValidator from elasticsearch.helpers.errors import BulkIndexError +from elasticsearch.exceptions import ElasticsearchException from tdpservice.data_files.models import DataFile logger = logging.getLogger(__name__) @@ -187,8 +188,16 @@ def rollback_records(unsaved_records, datafile): # dependencies. If that ever changes, we should NOT use `_raw_delete`. num_deleted = qset._raw_delete(qset.db) logger.debug(f"Deleted {num_deleted} records of type: {model}.") + except ElasticsearchException as e: + # Caught an Elastic exception, to ensure the quality of the DB, we will force the DB deletion and let + # Elastic clean up later. + logger.error("Encountered an Elastic exception, enforcing DB cleanup.") + logger.error(f"Elastic Error: {e}") + num_deleted, models = qset.delete() + logger.info("Succesfully performed DB cleanup after elastic failure.") except Exception as e: - logging.error(f"Encountered error while deleting records of type {model}. Error message: {e}") + logging.critical(f"Encountered error while deleting records of type {model}. No records deleted! " + f"Error message: {e}") def rollback_parser_errors(datafile): """Delete created errors in the event of a failure.""" @@ -242,15 +251,25 @@ def delete_serialized_records(duplicate_manager, dfs): qset = model.objects.filter(id__in=ids) # We must tell elastic to delete the documents first because after we call `_raw_delete` the queryset will # be empty which will tell elastic that nothing needs updated. - document.update(qset, action="delete") + document.update(qset, refresh=True, action="delete") # WARNING: we can use `_raw_delete` in this case because our record models don't have cascading # dependencies. If that ever changes, we should NOT use `_raw_delete`. num_deleted = qset._raw_delete(qset.db) total_deleted += num_deleted dfs.total_number_of_records_created -= num_deleted logger.debug(f"Deleted {num_deleted} records of type: {model}.") + except ElasticsearchException as e: + # Caught an Elastic exception, to ensure the quality of the DB, we will force the DB deletion and let + # Elastic clean up later. + logger.error("Encountered an Elastic exception, enforcing DB cleanup.") + logger.error(f"Elastic Error: {e}") + num_deleted, models = qset.delete() + total_deleted += num_deleted + dfs.total_number_of_records_created -= num_deleted + logger.info("Succesfully performed DB cleanup after elastic failure.") except Exception as e: - logging.error(f"Encountered error while deleting records of type {model}. Error message: {e}") + logging.critical(f"Encountered error while deleting records of type {model}. No records deleted! " + f"Error message: {e}") if total_deleted: logger.info(f"Deleted a total of {total_deleted} records from the DB because of case consistenecy errors.") From d6ad86fa77c84229242d8b917be3936b5f3484ed Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 21 Jun 2024 11:34:23 -0400 Subject: [PATCH 115/126] - add extra case to file for duplicate detection --- .../tdpservice/parsers/test/data/cat_4_edge_case.txt | 5 +++++ tdrs-backend/tdpservice/parsers/test/test_parse.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt b/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt index 46a6684ae..d9dc53305 100644 --- a/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt +++ b/tdrs-backend/tdpservice/parsers/test/data/cat_4_edge_case.txt @@ -16,4 +16,9 @@ T320231011111119937499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT21 T120231011111119939242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 T2202310111111199392299999999WWWWWWWWW2122222222221 13 1211 0 3106990 0 0 0 0 0 0 00000000000000000000000 T320231011111119939499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT212222122 6306100000000 + +# T1 Duplicate of first record with valid child records +T120231011111117835242 240198112 23111 1003 0 0 0 483 0 0 0 0 0 0 0 0 0 0 0222222 0 02229 22 +T2202310111111178352299999999WWWWWWWWW2122222222221 13 1211 0 3106990 0 0 0 0 0 0 00000000000000000000000 +T320231011111117835499999999WTTY9BWYW212221122 6306100000000120100702TTTTTTTTT212222122 6306100000000 TRAILER0000003 diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 817220407..7c11ca3a7 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1786,7 +1786,7 @@ def test_parse_cat_4_edge_case_file(cat4_edge_case_file, dfs): assert TANF_T2.objects.all().count() == 2 assert TANF_T3.objects.all().count() == 4 - assert dfs.total_number_of_records_in_file == 13 + assert dfs.total_number_of_records_in_file == 17 assert dfs.total_number_of_records_created == 8 err = parser_errors.first() From 324266be6e343723cde2739b21e1fd2d8d5a04fd Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 21 Jun 2024 11:50:26 -0400 Subject: [PATCH 116/126] - Added creation of LogEntry objects in exception blocks --- tdrs-backend/tdpservice/parsers/parse.py | 40 ++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index ba404596b..7cd8db49d 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -193,11 +193,28 @@ def rollback_records(unsaved_records, datafile): # Elastic clean up later. logger.error("Encountered an Elastic exception, enforcing DB cleanup.") logger.error(f"Elastic Error: {e}") + LogEntry.objects.log_action( + user_id=datafile.user.pk, + content_type_id=ContentType.objects.get_for_model(DataFile).pk, + object_id=datafile, + object_repr=f"Datafile id: {datafile.pk}; year: {datafile.year}, quarter: {datafile.quarter}", + action_flag=ADDITION, + change_message=f"Encountered error while indexing datafile documents: {e}", + ) num_deleted, models = qset.delete() logger.info("Succesfully performed DB cleanup after elastic failure.") except Exception as e: - logging.critical(f"Encountered error while deleting records of type {model}. No records deleted! " + logging.critical(f"Encountered error while deleting records of type {model}. NO RECORDS DELETED! " f"Error message: {e}") + LogEntry.objects.log_action( + user_id=datafile.user.pk, + content_type_id=ContentType.objects.get_for_model(DataFile).pk, + object_id=datafile, + object_repr=f"Datafile id: {datafile.pk}; year: {datafile.year}, quarter: {datafile.quarter}", + action_flag=ADDITION, + change_message=f"Encountered error while deleting records of type {model}. NO RECORDS DELETED! " + \ + f"Error message: {e}" + ) def rollback_parser_errors(datafile): """Delete created errors in the event of a failure.""" @@ -263,13 +280,32 @@ def delete_serialized_records(duplicate_manager, dfs): # Elastic clean up later. logger.error("Encountered an Elastic exception, enforcing DB cleanup.") logger.error(f"Elastic Error: {e}") + datafile = dfs.datafile + LogEntry.objects.log_action( + user_id=datafile.user.pk, + content_type_id=ContentType.objects.get_for_model(DataFile).pk, + object_id=datafile, + object_repr=f"Datafile id: {datafile.pk}; year: {datafile.year}, quarter: {datafile.quarter}", + action_flag=ADDITION, + change_message=f"Encountered error while indexing datafile documents: {e}", + ) num_deleted, models = qset.delete() total_deleted += num_deleted dfs.total_number_of_records_created -= num_deleted logger.info("Succesfully performed DB cleanup after elastic failure.") except Exception as e: - logging.critical(f"Encountered error while deleting records of type {model}. No records deleted! " + logging.critical(f"Encountered error while deleting records of type {model}. NO RECORDS DELETED! " f"Error message: {e}") + datafile = dfs.datafile + LogEntry.objects.log_action( + user_id=datafile.user.pk, + content_type_id=ContentType.objects.get_for_model(DataFile).pk, + object_id=datafile, + object_repr=f"Datafile id: {datafile.pk}; year: {datafile.year}, quarter: {datafile.quarter}", + action_flag=ADDITION, + change_message=f"Encountered error while deleting records of type {model}. NO RECORDS DELETED! " + \ + f"Error message: {e}" + ) if total_deleted: logger.info(f"Deleted a total of {total_deleted} records from the DB because of case consistenecy errors.") From 733b991488bba8527d1697b645437d0b01899f97 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 21 Jun 2024 12:28:20 -0400 Subject: [PATCH 117/126] - fix lint --- tdrs-backend/tdpservice/parsers/parse.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index 7cd8db49d..cd096de13 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -212,8 +212,8 @@ def rollback_records(unsaved_records, datafile): object_id=datafile, object_repr=f"Datafile id: {datafile.pk}; year: {datafile.year}, quarter: {datafile.quarter}", action_flag=ADDITION, - change_message=f"Encountered error while deleting records of type {model}. NO RECORDS DELETED! " + \ - f"Error message: {e}" + change_message=f"Encountered error while deleting records of type {model}. NO RECORDS DELETED! " + f"Error message: {e}" ) def rollback_parser_errors(datafile): @@ -303,8 +303,8 @@ def delete_serialized_records(duplicate_manager, dfs): object_id=datafile, object_repr=f"Datafile id: {datafile.pk}; year: {datafile.year}, quarter: {datafile.quarter}", action_flag=ADDITION, - change_message=f"Encountered error while deleting records of type {model}. NO RECORDS DELETED! " + \ - f"Error message: {e}" + change_message=f"Encountered error while deleting records of type {model}. NO RECORDS DELETED! " + f"Error message: {e}" ) if total_deleted: logger.info(f"Deleted a total of {total_deleted} records from the DB because of case consistenecy errors.") From 0eedd855fbe26753d9518ee4bd81784637a78a85 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 24 Jun 2024 13:02:27 -0400 Subject: [PATCH 118/126] - Add line number to duplicate error ParserError objects --- .../tdpservice/parsers/duplicate_manager.py | 5 +++-- tdrs-backend/tdpservice/parsers/parse.py | 2 +- tdrs-backend/tdpservice/parsers/util.py | 16 ++++++++++++++++ 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index da55fd39b..a4a56a23c 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -76,7 +76,7 @@ def get_records_for_post_parse_deletion(self): return self.record_ids return dict() - def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_precedence): + def __generate_error(self, err_msg, record, schema, line_number, has_precedence, is_new_max_precedence): """Add an error to the managers error dictionary. @param err_msg: string representation of the error message @@ -88,6 +88,7 @@ def __generate_error(self, err_msg, record, schema, has_precedence, is_new_max_p if has_precedence: error = self.generate_error( error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, + line_number= line_number, schema=schema, record=record, field=None, @@ -150,7 +151,7 @@ def add_case_member(self, record, schema, line, line_number): err_msg = self.__get_partial_dup_error_msg(schema, record.RecordType, line_number, existing_record_line_number) - self.__generate_error(err_msg, record, schema, has_precedence, is_new_max_precedence) + self.__generate_error(err_msg, record, schema, line_number, has_precedence, is_new_max_precedence) if line_hash not in self.record_hashes: self.record_hashes[line_hash] = line_number if partial_hash is not None and partial_hash not in self.partial_hashes: diff --git a/tdrs-backend/tdpservice/parsers/parse.py b/tdrs-backend/tdpservice/parsers/parse.py index cd096de13..b60aad1cf 100644 --- a/tdrs-backend/tdpservice/parsers/parse.py +++ b/tdrs-backend/tdpservice/parsers/parse.py @@ -49,7 +49,7 @@ def parse_datafile(datafile, dfs): section = header['type'] logger.debug(f"Program type: {program_type}, Section: {section}.") - cat4_error_generator = util.make_generate_parser_error(datafile, None) + cat4_error_generator = util.make_generate_case_consistency_parser_error(datafile) case_consistency_validator = CaseConsistencyValidator( header, program_type, diff --git a/tdrs-backend/tdpservice/parsers/util.py b/tdrs-backend/tdpservice/parsers/util.py index 707985809..bc8cb500e 100644 --- a/tdrs-backend/tdpservice/parsers/util.py +++ b/tdrs-backend/tdpservice/parsers/util.py @@ -85,6 +85,22 @@ def generate(schema, error_category, error_message, record=None, field=None): return generate +def make_generate_case_consistency_parser_error(datafile): + """Configure a generate_parser_error that is specific to case consistency errors.""" + def generate(schema, error_category, error_message, line_number=None, record=None, field=None): + return generate_parser_error( + datafile=datafile, + line_number=line_number, + schema=schema, + error_category=error_category, + error_message=error_message, + record=record, + field=field, + ) + + return generate + + def contains_encrypted_indicator(line, encryption_field): """Determine if line contains encryption indicator.""" if encryption_field is not None: From 4dcdf838201781f32967334a571750e1c8a8c544 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 24 Jun 2024 13:43:25 -0400 Subject: [PATCH 119/126] - Remove dup test class - Updated to use correct error generator --- .../parsers/test/test_case_consistency.py | 44 ++++++++--------- .../parsers/test/test_validators.py | 47 ------------------- 2 files changed, 22 insertions(+), 69 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 2ff5b5fa4..6d08aff7c 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -66,7 +66,7 @@ def test_add_record(self, small_correct_file_header, small_correct_file, tanf_s1 small_correct_file_header, small_correct_file_header['program_type'], STT.EntityType.STATE, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) line_number = 1 @@ -149,7 +149,7 @@ def test_section1_records_are_related_validator_pass( header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t1s = [ @@ -236,7 +236,7 @@ def test_section1_records_are_related_validator_fail_no_t2_or_t3( header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t1s = [ @@ -297,7 +297,7 @@ def test_section1_records_are_related_validator_fail_no_t1( header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t2s = [ @@ -394,7 +394,7 @@ def test_section1_records_are_related_validator_fail_no_family_affiliation( header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t1s = [ @@ -482,7 +482,7 @@ def test_section2_validator_pass(self, small_correct_file, header, T4Stuff, T5St header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -554,7 +554,7 @@ def test_section2_validator_fail_case_closure_employment( header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -627,7 +627,7 @@ def test_section2_validator_fail_case_closure_ftl(self, small_correct_file, head header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -708,7 +708,7 @@ def test_section2_records_are_related_validator_fail_no_t5s( header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -765,7 +765,7 @@ def test_section2_records_are_related_validator_fail_no_t4s( header, header['program_type'], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t5s = [ @@ -833,7 +833,7 @@ def test_section2_aabd_ssi_validator_pass_territory_adult_aadb(self, small_corre header, header['program_type'], STT.EntityType.TERRITORY, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -903,7 +903,7 @@ def test_section2_aabd_ssi_validator_fail_territory_adult_aabd(self, small_corre header, header['program_type'], STT.EntityType.TERRITORY, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -981,7 +981,7 @@ def test_section2_aabd_ssi_validator_pass_territory_child_aabd(self, small_corre header, header['program_type'], STT.EntityType.TERRITORY, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -1051,7 +1051,7 @@ def test_section2_aabd_ssi_validator_fail_state_aabd(self, small_correct_file, h header, header['program_type'], STT.EntityType.STATE, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -1129,7 +1129,7 @@ def test_section2_aabd_ssi_validator_fail_territory_ssi(self, small_correct_file header, header['program_type'], STT.EntityType.TERRITORY, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -1207,7 +1207,7 @@ def test_section2_aabd_ssi_validator_fail_state_ssi(self, small_correct_file, he header, header['program_type'], STT.EntityType.STATE, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t4s = [ @@ -1288,7 +1288,7 @@ def test_section1_duplicate_records(self, small_correct_file, header, T1Stuff, T header, header["program_type"], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t1 = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') @@ -1381,7 +1381,7 @@ def test_section1_partial_duplicate_records_and_precedence(self, small_correct_f header, header["program_type"], stt_type, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) t1 = T1Factory.create(RecordType="T1", RPT_MONTH_YEAR=202010, CASE_NUMBER='123') @@ -1482,7 +1482,7 @@ def test_section2_duplicate_records(self, small_correct_file, header, T4Stuff, T header, header["program_type"], STT.EntityType.STATE, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) line_number = 1 @@ -1538,7 +1538,7 @@ def test_section2_partial_duplicate_records_and_precedence(self, small_correct_f header, header["program_type"], STT.EntityType.STATE, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) line_number = 1 @@ -1605,7 +1605,7 @@ def test_family_affiliation_negate_partial_duplicate(self, small_correct_file, h header, header["program_type"], STT.EntityType.STATE, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) line_number = 1 @@ -1656,7 +1656,7 @@ def test_s3_s4_duplicates(self, small_correct_file, header, record_stuff): header, header["program_type"], STT.EntityType.STATE, - util.make_generate_parser_error(small_correct_file, None) + util.make_generate_case_consistency_parser_error(small_correct_file) ) line_number = 1 diff --git a/tdrs-backend/tdpservice/parsers/test/test_validators.py b/tdrs-backend/tdpservice/parsers/test/test_validators.py index e9d5ba2bc..c4ea62959 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_validators.py +++ b/tdrs-backend/tdpservice/parsers/test/test_validators.py @@ -1391,50 +1391,3 @@ def test_t3_m3_child_validator(): False, "The first child record is too short at 2 characters and must be at least 60 characters.", ) - -class TestCaseConsistencyValidator: - """Test case consistency (cat4) validators.""" - - def parse_header(self, datafile): - """Parse datafile header into header object.""" - rawfile = datafile.file - - # parse header, trailer - rawfile.seek(0) - header_line = rawfile.readline().decode().strip() - return schema_defs.header.parse_and_validate( - header_line, - util.make_generate_file_precheck_parser_error(datafile, 1) - ) - - @pytest.fixture - def tanf_s1_records(self): - """Return group of TANF Section 1 records.""" - t1 = TanfT1Factory.create() - t2 = TanfT2Factory.create() - t3 = TanfT3Factory.create() - t3_1 = TanfT3Factory.create() - return [t1, t2, t3, t3_1] - - @pytest.fixture - def tanf_s1_schemas(self): - """Return group of TANF Section 1 schemas.""" - s1 = schema_defs.tanf.t1.schemas[0] - s2 = schema_defs.tanf.t2.schemas[0] - s3 = schema_defs.tanf.t3.schemas[0] - return [s1, s2, s3, s3] - - @pytest.fixture - def small_correct_file(self, stt_user, stt): - """Fixture for small_correct_file.""" - return util.create_test_datafile('small_correct_file.txt', stt_user, stt) - - @pytest.fixture - def small_correct_file_header(self, small_correct_file): - """Return a valid header record.""" - header, header_is_valid, header_errors = self.parse_header(small_correct_file) - - if not header_is_valid: - logger.error('Header is not valid: %s', header_errors) - return None - return header From 12c90c7789ae76c450470f17166be892916a3e9a Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 24 Jun 2024 15:41:09 -0400 Subject: [PATCH 120/126] - fix lint --- tdrs-backend/tdpservice/parsers/duplicate_manager.py | 2 +- tdrs-backend/tdpservice/parsers/test/test_validators.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/duplicate_manager.py b/tdrs-backend/tdpservice/parsers/duplicate_manager.py index a4a56a23c..fe8da1992 100644 --- a/tdrs-backend/tdpservice/parsers/duplicate_manager.py +++ b/tdrs-backend/tdpservice/parsers/duplicate_manager.py @@ -88,7 +88,7 @@ def __generate_error(self, err_msg, record, schema, line_number, has_precedence, if has_precedence: error = self.generate_error( error_category=ParserErrorCategoryChoices.CASE_CONSISTENCY, - line_number= line_number, + line_number=line_number, schema=schema, record=record, field=None, diff --git a/tdrs-backend/tdpservice/parsers/test/test_validators.py b/tdrs-backend/tdpservice/parsers/test/test_validators.py index c4ea62959..db6d8bd78 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_validators.py +++ b/tdrs-backend/tdpservice/parsers/test/test_validators.py @@ -4,7 +4,6 @@ import logging from datetime import date from .. import validators -from .. import schema_defs, util from ..row_schema import RowSchema from tdpservice.parsers.test.factories import TanfT1Factory, TanfT2Factory, TanfT3Factory, TanfT5Factory, TanfT6Factory From 9511668dc9915067acc7ffd983305c7c857edac6 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 26 Jun 2024 12:23:43 -0400 Subject: [PATCH 121/126] - Updated based on review feedback --- .../parsers/case_consistency_validator.py | 22 +++++-------------- .../parsers/test/test_case_consistency.py | 6 ++--- 2 files changed, 9 insertions(+), 19 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 7714cb3a7..29bd60f1a 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -345,19 +345,7 @@ def __validate_s2_records_are_related(self): t5s = self.sorted_cases.get(t5_model, []) if len(t4s) > 0: - if len(t4s) > 1: - for record, schema in t4s[1:]: - self.__generate_and_add_error( - schema, - record, - field='RPT_MONTH_YEAR', - msg=( - f'There should only be one {t4_model_name} record ' - f'per RPT_MONTH_YEAR and CASE_NUMBER.' - ) - ) - num_errors += 1 - else: + if len(t4s) == 1: t4 = t4s[0] t4_record, t4_schema = t4 closure_reason = getattr(t4_record, 'CLOSURE_REASON') @@ -368,9 +356,11 @@ def __validate_s2_records_are_related(self): 'same RPT_MONTH_YEAR since CLOSURE_REASON = 1:Employment/excess earnings.' )) elif closure_reason == '03' and not is_ssp: - num_errors += self.__validate_case_closure_ftl(t4, t5s, ( - 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' - )) + num_errors += self.__validate_case_closure_ftl(t4, t5s, + ('At least one person who is head-of-household or spouse of head-of-household on case must ' + 'have countable months toward time limit >= 60 since CLOSURE_REASON = 03: federal 5 year ' + 'time limit.') + ) if len(t5s) == 0: for record, schema in t4s: self.__generate_and_add_error( diff --git a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py index 6d08aff7c..f65093d4e 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py +++ b/tdrs-backend/tdpservice/parsers/test/test_case_consistency.py @@ -673,9 +673,9 @@ def test_section2_validator_fail_case_closure_ftl(self, small_correct_file, head assert len(errors) == 1 assert num_errors == 1 assert errors[0].error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY - assert errors[0].error_message == ( - 'At least one person who is HoH or spouse of HoH on case must have FTL months >=60.' - ) + assert errors[0].error_message == ('At least one person who is head-of-household or spouse of ' + 'head-of-household on case must have countable months toward time limit >= ' + '60 since CLOSURE_REASON = 03: federal 5 year time limit.') @pytest.mark.parametrize("header,T4Stuff,T5Stuff,stt_type", [ ( From 33931d303a3e958cf49b36362d7ad12b9e83aa22 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 26 Jun 2024 12:51:56 -0400 Subject: [PATCH 122/126] - Update tests --- tdrs-backend/tdpservice/parsers/test/test_parse.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 7c11ca3a7..c3667c03a 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1688,16 +1688,16 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): @pytest.mark.parametrize("file, batch_size, model, record_type, num_errors", [ ('tanf_s1_exact_dup_file', 10000, TANF_T1, "T1", 3), ('tanf_s1_exact_dup_file', 1, TANF_T1, "T1", 3), # This forces an in memory and database deletion of records. - ('tanf_s2_exact_dup_file', 10000, TANF_T4, "T4", 4), - ('tanf_s2_exact_dup_file', 1, TANF_T4, "T4", 4), # This forces an in memory and database deletion of records. + ('tanf_s2_exact_dup_file', 10000, TANF_T4, "T4", 3), + ('tanf_s2_exact_dup_file', 1, TANF_T4, "T4", 3), # This forces an in memory and database deletion of records. ('tanf_s3_exact_dup_file', 10000, TANF_T6, "T6", 1), ('tanf_s3_exact_dup_file', 1, TANF_T6, "T6", 1), # This forces an in memory and database deletion of records. ('tanf_s4_exact_dup_file', 10000, TANF_T7, "T7", 1), ('tanf_s4_exact_dup_file', 1, TANF_T7, "T7", 1), # This forces an in memory and database deletion of records. ('ssp_s1_exact_dup_file', 10000, SSP_M1, "M1", 3), ('ssp_s1_exact_dup_file', 1, SSP_M1, "M1", 3), # This forces an in memory and database deletion of records. - ('ssp_s2_exact_dup_file', 10000, SSP_M4, "M4", 4), - ('ssp_s2_exact_dup_file', 1, SSP_M4, "M4", 4), # This forces an in memory and database deletion of records. + ('ssp_s2_exact_dup_file', 10000, SSP_M4, "M4", 3), + ('ssp_s2_exact_dup_file', 1, SSP_M4, "M4", 3), # This forces an in memory and database deletion of records. ('ssp_s3_exact_dup_file', 10000, SSP_M6, "M6", 1), ('ssp_s3_exact_dup_file', 1, SSP_M6, "M6", 1), # This forces an in memory and database deletion of records. ('ssp_s4_exact_dup_file', 10000, SSP_M7, "M7", 1), From c6ec73db04a02f5c4437abd27a90995a9ba8da73 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 26 Jun 2024 13:10:47 -0400 Subject: [PATCH 123/126] - fix lint --- .../tdpservice/parsers/case_consistency_validator.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py index 29bd60f1a..ce0d6a13c 100644 --- a/tdrs-backend/tdpservice/parsers/case_consistency_validator.py +++ b/tdrs-backend/tdpservice/parsers/case_consistency_validator.py @@ -357,10 +357,10 @@ def __validate_s2_records_are_related(self): )) elif closure_reason == '03' and not is_ssp: num_errors += self.__validate_case_closure_ftl(t4, t5s, - ('At least one person who is head-of-household or spouse of head-of-household on case must ' - 'have countable months toward time limit >= 60 since CLOSURE_REASON = 03: federal 5 year ' - 'time limit.') - ) + ('At least one person who is head-of-household or ' + 'spouse of head-of-household on case must have ' + 'countable months toward time limit >= 60 since ' + 'CLOSURE_REASON = 03: federal 5 year time limit.')) if len(t5s) == 0: for record, schema in t4s: self.__generate_and_add_error( From 14ca954cbd24a77da30036f47d9384d5f6884be6 Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Wed, 26 Jun 2024 13:56:17 -0400 Subject: [PATCH 124/126] don't show jurisdiction type for acf users --- tdrs-frontend/src/components/Home/Home.jsx | 94 +++++++++++----------- 1 file changed, 49 insertions(+), 45 deletions(-) diff --git a/tdrs-frontend/src/components/Home/Home.jsx b/tdrs-frontend/src/components/Home/Home.jsx index 294786739..47a10f4af 100644 --- a/tdrs-frontend/src/components/Home/Home.jsx +++ b/tdrs-frontend/src/components/Home/Home.jsx @@ -177,51 +177,55 @@ function Home() { handleChange={handleChange} handleBlur={handleBlur} /> -
-
- Jurisdiction Type -
- setJurisdictionType('state')} - /> - -
-
- setJurisdictionType('tribe')} - /> - -
-
- setJurisdictionType('territory')} - /> - -
-
-
+ {shouldShowSttComboBox && ( +
+
+ + Jurisdiction Type + +
+ setJurisdictionType('state')} + /> + +
+
+ setJurisdictionType('tribe')} + /> + +
+
+ setJurisdictionType('territory')} + /> + +
+
+
+ )} {jurisdictionType && shouldShowSttComboBox && (
Date: Fri, 28 Jun 2024 09:58:59 -0400 Subject: [PATCH 125/126] Create sprint-99-summary.md (#3038) * Create sprint-99-summary.md * Update docs/Sprint-Review/sprint-99-summary.md Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> --------- Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> --- docs/Sprint-Review/sprint-99-summary.md | 95 +++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 docs/Sprint-Review/sprint-99-summary.md diff --git a/docs/Sprint-Review/sprint-99-summary.md b/docs/Sprint-Review/sprint-99-summary.md new file mode 100644 index 000000000..11c81e076 --- /dev/null +++ b/docs/Sprint-Review/sprint-99-summary.md @@ -0,0 +1,95 @@ +# sprint-99-summary +5-8-2024 - 5-21-2024 +## Sprint Goals + +### Dev: + +_Support closing out (14) tickets in review & continue progress on Parity_ + +* \#2950 \[Django A11Y] \[Spike] Multiple filter option +* \#2509 Notification Submission Email +* \#2688 TANF Section 2 validation clean-up +* \#2795 \[Spike] - As tech lead, I need TDP to detect duplicate records within a file and not store them in the db. +* \#2949 As tech lead, I need the DAC CSV export file naming conventions to include fiscal period and datetime +* \#2950 As tech lead, I need the STT filter for search\_indexes to be updated +* \#2693 \[WIP] Category 2 error messages clean-up + +### DevOps: + +_Successful deployments across environments and pipeline stability investments_ + +* \#2870 ES re-indexing automation +* \#831 Application health monitoring + +### **Design:** + +_Close out (4) in-review items and refine Research & Design tickets for New Data Requirements & Django Admin Experience roadmap epics_ + +* \#2473 Email notification template supporting (due date reminders) +* \#2847 Knowledge Center Content +* \#2801 Friendly Name changes (Finalize) +* \#2909 research spike on-deck pending close-out of the above + + + +*** + +## Tickets + +### Completed/Merged + +* [#2509 As a data analyst, I need to know when my data has been processed with or w/o errors ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2509) +* [#2802 \[Django A11Y\] \[Spike\] Multiple filter option](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2802) +* [#2822 Resolve WebInspect scan findings for Jan-Feb 2024 ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2822) +* [#2826 As tech lead, I need some record types that currently require trailing spaces to be parsed](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2826) +* [#2842 Complete cat4 validation implementation](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2842) +* [#2870 Spike: As tech lead, I need elastic re-indexing to be automated ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2870) +* [#2884 Generate preparser errors when multi-record rows are the wrong length or are missing space-filled second records - M3 and Tribal T3](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2884) +* [#2938 Blank filled SSN not parsing and throws Nonetype error ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2938) +* [#2949 As tech lead, I need the DAC CSV export file naming conventions to include fiscal period and datetime](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2949) +* [#2966 Unify Duplicate Detection Across Program Types](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2966) +* [#2973 \[bug\] signing into frontend is not possible after cloud.gov maintenance](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2973) +* [#2987 Update zapproxy docker image version](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2987) + +### Submitted (QASP Review, OCIO Review) + +* [#2688 TANF Section 2 validation clean-up ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2688) +* [#2693 \[Error Audit\] Category 2 error messages clean-up ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2693) +* [#2801 Friendly name cleanup ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2801) +* [#2897 As a data analyst I want finalized language and guidance resources in Submission History & Error Reports ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2897) +* [#2749 As tech lead, I need validation checks to be consistent with FTANF validation checks](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2749) + +### Ready to Merge + +### Closed (Not Merged) + +* [#1345 \[Design Deliverable\] Email Template for Data Due Date Reminder](https://app.zenhub.com/workspaces/product-board-5f2c6cdc7c0bb1001bdc43a5/issues/gh/raft-tech/tanf-app/1345) + +### Moved to Next Sprint + +**In Progress** + +* [#2697 10 day account deactivation warning ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2697) +* [#831 \[Spike\] As a Tech Lead, I want to get alerts when there is a backend or frontend error that affects an STT user ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/831) +* [#2133 \[Dev\] Enhancement for Request Access form (Tribe discoverability) ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2133) +* [#2473 As a data analyst I want to be notified of approaching data deadlines](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2473) +* [#2677 add `SENDGRID_API_KEY` to deploy.backend.sh](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2677) +* [#2847 \[Design Deliverable\] Error Report Knowledge Center Explainer](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2847) +* [#2883 Pre-Made Reporting Dashboards on Kibana](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2883) +* [#2909 \[Research Spike\] OOtB OFA Kibana Experience & DIGIT Data Access](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2909) +* [#2946 Spike - remove sleep from zap scanner](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2946) +* [#2954 Extend SESSION\_COOKIE\_AGE](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2954) +* [#2978 As sys admin, I want to be able to reparse datafile sets](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2978) + +#### Blocked + +* [As tech lead, I need the STT filter for search\_indexes to be updated](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2950) + +**Raft Review** + +* [#2795 As tech lead, I need TDP to detect duplicate records within a file and not store them in the db. ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2795) +* [#2901 As an admin user, I want to be able to programmatically access to backend API](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2901) + +#### + +*** From 3097e58670164325b6d7c77f2ee0ba192c7ea75a Mon Sep 17 00:00:00 2001 From: robgendron <163159602+robgendron@users.noreply.github.com> Date: Fri, 28 Jun 2024 10:46:21 -0400 Subject: [PATCH 126/126] Create sprint-100-summary.md (#3039) * Create sprint-100-summary.md * Update docs/Sprint-Review/sprint-100-summary.md Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> * Update docs/Sprint-Review/sprint-100-summary.md Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> * Update docs/Sprint-Review/sprint-100-summary.md Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> --------- Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> --- docs/Sprint-Review/sprint-100-summary.md | 90 ++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 docs/Sprint-Review/sprint-100-summary.md diff --git a/docs/Sprint-Review/sprint-100-summary.md b/docs/Sprint-Review/sprint-100-summary.md new file mode 100644 index 000000000..a0cd956e9 --- /dev/null +++ b/docs/Sprint-Review/sprint-100-summary.md @@ -0,0 +1,90 @@ +# sprint-100-summary +5-22-2024 - 6-4-2024 +**Dev:** + +_**Starting 4.0 Enhancement Work & Post-Parity Clean Up**_ + +* Access Request Emails #2687 +* 10 day Account Deactivation Warning #2697 +* As tech lead, I need the STT filter for search\_indexes to be updated #2950 +* As a data analyst I want to be notified of approaching data deadlines #2473 +* As tech lead, I need the sftp file transfer feature to be deprecated #2991 +* DAC Datafile Parser Errors Filtering #3001 +* As tech lead, I need the sftp file transfer feature to be deprecated #2991 +* As tech lead, I need the `validate__FAM_AFF__HOH__Fed_Time` validator updated #2992 +* As sys admin, I want to be able to reparse datafile sets #2978\ + + +**DevOps:** + +_Successful deployments across environments and pipeline stability investments_ + +* Application health monitoring #831 +* should `SENDGRID_API_KEY` be added to deploy.backend.sh script #2677 +* Spike - remove sleep from zap scanner#2946 + +**Design:** + +_Finishing feedback on reviews and targeting final parsing language refinement_ + +* Finalize Error Report Guide #2847 +* Finalize Friendly Name Changes #2801 +* research spike on-deck pending close-out of the above #2909 +* Category 3 error messages clean-up #2792 - stretch + + + +## Tickets + +### Completed/Merged + +* [#2677 add `SENDGRID_API_KEY` to deploy.backend.sh](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2677) +* [#2688 TANF Section 2 validation clean-up](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2688) +* [#2697 10 day account deactivation warning](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2697) +* [#2749 As tech lead, I need validation checks to be consistent with FTANF validation checks](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2749) +* [#2901 As an admin user, I want to be able to programmatically access to backend API](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2901) +* [#2946 Spike - remove sleep from zap scanner](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2946) +* [#2992 As tech lead, I need the `validate__FAM_AFF__HOH__Fed_Time` validator updated](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2992) +* [#3001 DAC Datafile Parser Errors Filtering](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/3001) +* [#3000 \[Design Deliverable\] TDP Poster for summer 2024 conferences](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/3000) +### Submitted (QASP Review, OCIO Review) + +* [#2795 As tech lead, I need TDP to detect duplicate records within a file and not store them in the db. ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2795) +* [#2693 \[Error Audit\] Category 2 error messages clean-up ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2693) +* [#2801 Friendly name cleanup ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2801) +* [#2847 \[Design Deliverable\] Error Report Knowledge Center Explainer](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2847) +* [#2897 As a data analyst I want finalized language and guidance resources in Submission History & Error Reports ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2897) + +### Ready to Merge + +* + +### Closed (Not Merged) + +* + +### Moved to Next Sprint + +**In Progress** + +* [#831 \[Spike\] As a Tech Lead, I want to get alerts when there is a backend or frontend error that affects an STT user ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/831) +* [#2133 \[Dev\] Enhancement for Request Access form (Tribe discoverability) ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2133) +* [#2473 As a data analyst I want to be notified of approaching data deadlines](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2473) +* [#2697 10 day account deactivation warning ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2697) +* [#2909 \[Research Spike\] OOtB OFA Kibana Experience & DIGIT Data Access](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2909) +* [#2950 As tech lead, I need the STT filter for search\_indexes to be updated ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2950) +* [#2954 Extend SESSION\_COOKIE\_AGE](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2954) +* [#2978 As sys admin, I want to be able to reparse datafile sets](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2978) +* [#2980 As a developer I want to test django-508 repo](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2980) +* [#2991 As tech lead, I need the sftp file transfer feature to be deprecated](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2991) +* [#3004 Implement (small) data lifecycle (backup/archive ES)](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/3004) +* [#3008 As a software engineer, I want to be able to test django-admin-508](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/3008) +* [#3021 \[Design Deliverable\] Updated KC Release Notes & Update Indicator FAQ](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/3021) + +#### Blocked + +* + +**Raft Review** + +* [#2883 Pre-Made Reporting Dashboards on Kibana](https://app.zenhub.com/workspaces/sprint-board-5f18ab06dfd91c000f7e682e/issues/gh/raft-tech/tanf-app/2883)