From ed9995e06cb6e99d32f3b7788bc22a03f07deafd Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Wed, 10 Jul 2019 21:43:55 +0300 Subject: [PATCH 01/16] PSOC6_SB: Initial commit to add CY8CPROTO_064_SB to mbed-os sources. --- features/storage/nvstore/mbed_lib.json | 6 + .../GeneratedSource/cycfg.c | 34 + .../GeneratedSource/cycfg.h | 47 + .../GeneratedSource/cycfg_clocks.c | 41 + .../GeneratedSource/cycfg_clocks.h | 52 + .../GeneratedSource/cycfg_notices.h | 30 + .../GeneratedSource/cycfg_peripherals.c | 77 + .../GeneratedSource/cycfg_peripherals.h | 75 + .../GeneratedSource/cycfg_pins.c | 426 ++ .../GeneratedSource/cycfg_pins.h | 326 ++ .../GeneratedSource/cycfg_qspi_memslot.c | 265 ++ .../GeneratedSource/cycfg_qspi_memslot.h | 50 + .../GeneratedSource/cycfg_routing.c | 29 + .../GeneratedSource/cycfg_routing.h | 56 + .../GeneratedSource/cycfg_system.c | 475 +++ .../GeneratedSource/cycfg_system.h | 82 + .../TARGET_CY8CPROTO_064_SB/PeripheralNames.h | 117 + .../TARGET_CY8CPROTO_064_SB/PeripheralPins.c | 465 +++ .../TARGET_CY8CPROTO_064_SB/PinNames.h | 135 + .../cybsp_cy8cproto_064_sb.c | 54 + .../cybsp_cy8cproto_064_sb.h | 74 + .../TARGET_CY8CPROTO_064_SB/cybsp_types.h | 157 + .../cycfg_qspi_memslot.cyqspi | 63 + .../TARGET_CY8CPROTO_064_SB/design.modus | 468 +++ .../TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct | 314 ++ .../TOOLCHAIN_ARM/startup_psoc6_01_cm4.S | 643 +++ .../TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld | 464 ++ .../TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S | 631 +++ .../TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf | 271 ++ .../TOOLCHAIN_IAR/startup_psoc6_01_cm4.S | 1141 +++++ .../TARGET_MCU_PSOC6_M4/system_psoc6_cm4.c | 552 +++ .../device/system_psoc6.h | 675 +++ .../psoc6_static_srm.h | 85 + .../secure_image_parameters.json | 17 + .../devices/include/cyb06447bzi_d54.h | 2 +- .../TARGET_PSOC6/sb-tools/.gitignore | 1 + .../TARGET_PSOC6/sb-tools/README.md | 145 + .../sb-tools/encrypted_image_runner.py | 215 + .../sb-tools/entrance_exam_runner.py | 45 + .../sb-tools/execute/entrance_exam.py | 68 + .../TARGET_PSOC6/sb-tools/execute/enums.py | 30 + .../sb-tools/execute/gen_data_from_json.py | 38 + .../TARGET_PSOC6/sb-tools/execute/helper.py | 59 + .../sb-tools/execute/p6_memory_map.py | 17 + .../TARGET_PSOC6/sb-tools/execute/p6_reg.py | 95 + .../sb-tools/execute/programmer/__init__.py | 18 + .../sb-tools/execute/programmer/base.py | 179 + .../sb-tools/execute/programmer/exceptions.py | 23 + .../sb-tools/execute/programmer/programmer.py | 29 + .../execute/programmer/pyocd_wrapper.py | 272 ++ .../sb-tools/execute/provision_device.py | 105 + .../TARGET_PSOC6/sb-tools/execute/sys_call.py | 198 + .../sb-tools/imgtool/aes_cipher.py | 106 + .../sb-tools/imgtool/create_aesHeader.py | 46 + .../TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py | 68 + .../TARGET_PSOC6/sb-tools/imgtool/imgtool.py | 198 + .../sb-tools/imgtool/imgtool/__init__.py | 13 + .../sb-tools/imgtool/imgtool/image.py | 269 ++ .../sb-tools/imgtool/imgtool/keys/__init__.py | 76 + .../sb-tools/imgtool/imgtool/keys/ecdsa.py | 102 + .../imgtool/imgtool/keys/ecdsa_test.py | 99 + .../sb-tools/imgtool/imgtool/keys/general.py | 35 + .../sb-tools/imgtool/imgtool/keys/rsa.py | 95 + .../sb-tools/imgtool/imgtool/keys/rsa_test.py | 102 + .../sb-tools/imgtool/imgtool/version.py | 53 + .../TARGET_PSOC6/sb-tools/keys/keygen.py | 73 + .../CypressBootloader_CM0p.hex | 2375 +++++++++++ .../CypressBootloader_CM0p.jwt | 1 + .../CypressBootloader_CM0p.hex | 3714 +++++++++++++++++ .../CypressBootloader_CM0p.jwt | 1 + .../TARGET_PSOC6/sb-tools/prebuild/LICENSE | 51 + .../sb-tools/prebuild/cy_auth.jwt | 1 + .../sb-tools/prebuild/hsm_state.json | 18 + .../sb-tools/prebuild/oem_state.json | 18 + .../Apache/LICENSE-2.0.txt | 202 + .../third_party_licenses/Apache/README.txt | 5 + .../MIT/cjason-license.txt | 23 + .../Other/bsd_base64_license.txt | 63 + .../prepare/policy_single_stage_CM4.json | 113 + .../prepare/policy_single_stage_CM4_smif.json | 115 + .../prepare/provisioning_lib/cyprov_crypto.py | 116 + .../provisioning_lib/cyprov_customer.py | 50 + .../prepare/provisioning_lib/cyprov_entity.py | 46 + .../prepare/provisioning_lib/cyprov_hsm.py | 443 ++ .../prepare/provisioning_lib/cyprov_oem.py | 143 + .../prepare/provisioning_lib/cyprov_pem.py | 79 + .../prepare/provisioning_lib/cyprov_types.py | 29 + .../sb-tools/prepare/provisioning_packet.py | 133 + .../sb-tools/provision_device_runner.py | 80 + .../TARGET_PSOC6/sb-tools/requirements.txt | 7 + .../sb-tools/test/test_data/blinky_large.hex | 1410 +++++++ .../sb-tools/test/test_data/blinky_small.hex | 30 + .../sb-tools/test/test_pyocd_wrapper.py | 301 ++ .../sb-tools/test/test_utility.py | 39 + targets/targets.json | 15 + tools/targets/PSOC6.py | 346 +- tools/targets/__init__.py | 11 + 97 files changed, 21243 insertions(+), 6 deletions(-) create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_notices.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralNames.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralPins.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PinNames.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_types.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cycfg_qspi_memslot.cyqspi create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/design.modus create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/system_psoc6_cm4.c create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/system_psoc6.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/psoc6_static_srm.h create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/secure_image_parameters.json create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/.gitignore create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/encrypted_image_runner.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/entrance_exam_runner.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/entrance_exam.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/enums.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/gen_data_from_json.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/helper.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_memory_map.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_reg.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/__init__.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/base.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/exceptions.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/programmer.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/pyocd_wrapper.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/provision_device.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/sys_call.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/create_aesHeader.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/__init__.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/image.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/__init__.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa_test.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/general.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa_test.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/version.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/keys/keygen.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/LICENSE create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/cy_auth.jwt create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/hsm_state.json create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/oem_state.json create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/LICENSE-2.0.txt create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/README.txt create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/MIT/cjason-license.txt create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4.json create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4_smif.json create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_crypto.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_customer.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_entity.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_hsm.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_oem.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_pem.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_types.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_packet.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/provision_device_runner.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/requirements.txt create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_large.hex create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_small.hex create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_pyocd_wrapper.py create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_utility.py diff --git a/features/storage/nvstore/mbed_lib.json b/features/storage/nvstore/mbed_lib.json index ea7c1641e99..a1cc58a7325 100644 --- a/features/storage/nvstore/mbed_lib.json +++ b/features/storage/nvstore/mbed_lib.json @@ -49,6 +49,12 @@ "area_1_size": 16384, "area_2_address": "0x100FC000", "area_2_size": 16384 + }, + "CY8CPROTO_064_SB": { + "area_1_address": "0x10048000", + "area_1_size": 16384, + "area_2_address": "0x1004C000", + "area_2_size": 16384 } } } diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.c new file mode 100644 index 00000000000..cb430a41643 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.c @@ -0,0 +1,34 @@ +/******************************************************************************* +* File Name: cycfg.c +* +* Description: +* Wrapper function to initialize all generated code. +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#include "cycfg.h" + +void init_cycfg_all(void) +{ + init_cycfg_system(); + init_cycfg_clocks(); + init_cycfg_routing(); + init_cycfg_peripherals(); + init_cycfg_pins(); +} diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.h new file mode 100644 index 00000000000..9abc7f0f4ab --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.h @@ -0,0 +1,47 @@ +/******************************************************************************* +* File Name: cycfg.h +* +* Description: +* Simple wrapper header containing all generated files. +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#if !defined(CYCFG_H) +#define CYCFG_H + +#if defined(__cplusplus) +extern "C" { +#endif + +#include "cycfg_notices.h" +#include "cycfg_system.h" +#include "cycfg_clocks.h" +#include "cycfg_routing.h" +#include "cycfg_peripherals.h" +#include "cycfg_pins.h" + +void init_cycfg_all(void); + + +#if defined(__cplusplus) +} +#endif + + +#endif /* CYCFG_H */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.c new file mode 100644 index 00000000000..54dbf991f99 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.c @@ -0,0 +1,41 @@ +/******************************************************************************* +* File Name: cycfg_clocks.c +* +* Description: +* Clock configuration +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#include "cycfg_clocks.h" + + +void init_cycfg_clocks(void) +{ + Cy_SysClk_PeriphDisableDivider(CY_SYSCLK_DIV_16_BIT, 0U); + Cy_SysClk_PeriphSetDivider(CY_SYSCLK_DIV_16_BIT, 0U, 499U); + Cy_SysClk_PeriphEnableDivider(CY_SYSCLK_DIV_16_BIT, 0U); + + Cy_SysClk_PeriphDisableDivider(CY_SYSCLK_DIV_8_BIT, 0U); + Cy_SysClk_PeriphSetDivider(CY_SYSCLK_DIV_8_BIT, 0U, 35U); + Cy_SysClk_PeriphEnableDivider(CY_SYSCLK_DIV_8_BIT, 0U); + + Cy_SysClk_PeriphDisableDivider(CY_SYSCLK_DIV_8_BIT, 1U); + Cy_SysClk_PeriphSetDivider(CY_SYSCLK_DIV_8_BIT, 1U, 3U); + Cy_SysClk_PeriphEnableDivider(CY_SYSCLK_DIV_8_BIT, 1U); +} diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.h new file mode 100644 index 00000000000..aef4c18422f --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.h @@ -0,0 +1,52 @@ +/******************************************************************************* +* File Name: cycfg_clocks.h +* +* Description: +* Clock configuration +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#if !defined(CYCFG_CLOCKS_H) +#define CYCFG_CLOCKS_H + +#include "cycfg_notices.h" +#include "cy_sysclk.h" + +#if defined(__cplusplus) +extern "C" { +#endif + +#define peri_0_div_16_0_ENABLED 1U +#define peri_0_div_16_0_HW CY_SYSCLK_DIV_16_BIT +#define peri_0_div_16_0_NUM 0U +#define CYBSP_DEBUG_UART_CLK_DIV_ENABLED 1U +#define CYBSP_DEBUG_UART_CLK_DIV_HW CY_SYSCLK_DIV_8_BIT +#define CYBSP_DEBUG_UART_CLK_DIV_NUM 0U +#define CYBSP_I2C_CLK_DIV_ENABLED 1U +#define CYBSP_I2C_CLK_DIV_HW CY_SYSCLK_DIV_8_BIT +#define CYBSP_I2C_CLK_DIV_NUM 1U + +void init_cycfg_clocks(void); + +#if defined(__cplusplus) +} +#endif + + +#endif /* CYCFG_CLOCKS_H */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_notices.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_notices.h new file mode 100644 index 00000000000..90f1013f8a7 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_notices.h @@ -0,0 +1,30 @@ +/******************************************************************************* +* File Name: cycfg_notices.h +* +* Description: +* Contains warnings and errors that occurred while generating code for the +* design. +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#if !defined(CYCFG_NOTICES_H) +#define CYCFG_NOTICES_H + + +#endif /* CYCFG_NOTICES_H */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.c new file mode 100644 index 00000000000..3fce96da0b7 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.c @@ -0,0 +1,77 @@ +/******************************************************************************* +* File Name: cycfg_peripherals.c +* +* Description: +* Peripheral Hardware Block configuration +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#include "cycfg_peripherals.h" + +const cy_stc_scb_ezi2c_config_t CYBSP_I2C_config = +{ + .numberOfAddresses = CY_SCB_EZI2C_ONE_ADDRESS, + .slaveAddress1 = 8U, + .slaveAddress2 = 0U, + .subAddressSize = CY_SCB_EZI2C_SUB_ADDR8_BITS, + .enableWakeFromSleep = false, +}; +const cy_stc_scb_uart_config_t CYBSP_DEBUG_UART_config = +{ + .uartMode = CY_SCB_UART_STANDARD, + .enableMutliProcessorMode = false, + .smartCardRetryOnNack = false, + .irdaInvertRx = false, + .irdaEnableLowPowerReceiver = false, + .oversample = 12, + .enableMsbFirst = false, + .dataWidth = 8UL, + .parity = CY_SCB_UART_PARITY_NONE, + .stopBits = CY_SCB_UART_STOP_BITS_1, + .enableInputFilter = false, + .breakWidth = 11UL, + .dropOnFrameError = false, + .dropOnParityError = false, + .receiverAddress = 0x0UL, + .receiverAddressMask = 0x0UL, + .acceptAddrInFifo = false, + .enableCts = false, + .ctsPolarity = CY_SCB_UART_ACTIVE_LOW, + .rtsRxFifoLevel = 0UL, + .rtsPolarity = CY_SCB_UART_ACTIVE_LOW, + .rxFifoTriggerLevel = 63UL, + .rxFifoIntEnableMask = 0UL, + .txFifoTriggerLevel = 63UL, + .txFifoIntEnableMask = 0UL, +}; +const cy_stc_smif_config_t CYBSP_QSPI_config = +{ + .mode = (uint32_t)CY_SMIF_NORMAL, + .deselectDelay = CYBSP_QSPI_DESELECT_DELAY, + .rxClockSel = (uint32_t)CY_SMIF_SEL_INV_INTERNAL_CLK, + .blockEvent = (uint32_t)CY_SMIF_BUS_ERROR, +}; + + +void init_cycfg_peripherals(void) +{ + Cy_SysClk_PeriphAssignDivider(PCLK_SCB3_CLOCK, CY_SYSCLK_DIV_8_BIT, 1U); + + Cy_SysClk_PeriphAssignDivider(PCLK_SCB5_CLOCK, CY_SYSCLK_DIV_8_BIT, 0U); +} diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.h new file mode 100644 index 00000000000..871b62dc66e --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.h @@ -0,0 +1,75 @@ +/******************************************************************************* +* File Name: cycfg_peripherals.h +* +* Description: +* Peripheral Hardware Block configuration +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#if !defined(CYCFG_PERIPHERALS_H) +#define CYCFG_PERIPHERALS_H + +#include "cycfg_notices.h" +#include "cy_scb_ezi2c.h" +#include "cy_sysclk.h" +#include "cy_scb_uart.h" +#include "cy_smif.h" +#include "cycfg_qspi_memslot.h" + +#if defined(__cplusplus) +extern "C" { +#endif + +#define CYBSP_I2C_ENABLED 1U +#define CYBSP_I2C_HW SCB3 +#define CYBSP_I2C_IRQ scb_3_interrupt_IRQn +#define CYBSP_DEBUG_UART_ENABLED 1U +#define CYBSP_DEBUG_UART_HW SCB5 +#define CYBSP_DEBUG_UART_IRQ scb_5_interrupt_IRQn +#define CYBSP_QSPI_ENABLED 1U +#define CYBSP_QSPI_HW SMIF0 +#define CYBSP_QSPI_IRQ smif_interrupt_IRQn +#define CYBSP_QSPI_MEMORY_MODE_ALIGMENT_ERROR (0UL) +#define CYBSP_QSPI_RX_DATA_FIFO_UNDERFLOW (0UL) +#define CYBSP_QSPI_TX_COMMAND_FIFO_OVERFLOW (0UL) +#define CYBSP_QSPI_TX_DATA_FIFO_OVERFLOW (0UL) +#define CYBSP_QSPI_RX_FIFO_TRIGEER_LEVEL (0UL) +#define CYBSP_QSPI_TX_FIFO_TRIGEER_LEVEL (0UL) +#define CYBSP_QSPI_DATALINES0_1 (1UL) +#define CYBSP_QSPI_DATALINES2_3 (1UL) +#define CYBSP_QSPI_DATALINES4_5 (0UL) +#define CYBSP_QSPI_DATALINES6_7 (0UL) +#define CYBSP_QSPI_SS0 (1UL) +#define CYBSP_QSPI_SS1 (0UL) +#define CYBSP_QSPI_SS2 (0UL) +#define CYBSP_QSPI_SS3 (0UL) +#define CYBSP_QSPI_DESELECT_DELAY 7 + +extern const cy_stc_scb_ezi2c_config_t CYBSP_I2C_config; +extern const cy_stc_scb_uart_config_t CYBSP_DEBUG_UART_config; +extern const cy_stc_smif_config_t CYBSP_QSPI_config; + +void init_cycfg_peripherals(void); + +#if defined(__cplusplus) +} +#endif + + +#endif /* CYCFG_PERIPHERALS_H */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.c new file mode 100644 index 00000000000..18d8b8518ec --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.c @@ -0,0 +1,426 @@ +/******************************************************************************* +* File Name: cycfg_pins.c +* +* Description: +* Pin configuration +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#include "cycfg_pins.h" + +const cy_stc_gpio_pin_config_t CYBSP_WCO_IN_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_ANALOG, + .hsiom = CYBSP_WCO_IN_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_WCO_OUT_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_ANALOG, + .hsiom = CYBSP_WCO_OUT_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_SW2_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_PULLUP, + .hsiom = CYBSP_SW2_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_QSPI_SS_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG_IN_OFF, + .hsiom = CYBSP_QSPI_SS_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_QSPI_D3_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG, + .hsiom = CYBSP_QSPI_D3_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_QSPI_D2_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG, + .hsiom = CYBSP_QSPI_D2_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_QSPI_D1_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG, + .hsiom = CYBSP_QSPI_D1_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_QSPI_D0_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG, + .hsiom = CYBSP_QSPI_D0_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_QSPI_SCK_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG_IN_OFF, + .hsiom = CYBSP_QSPI_SCK_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_ECO_IN_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_ANALOG, + .hsiom = CYBSP_ECO_IN_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_ECO_OUT_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_ANALOG, + .hsiom = CYBSP_ECO_OUT_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_LED3_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG_IN_OFF, + .hsiom = CYBSP_LED3_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_USB_DP_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_ANALOG, + .hsiom = CYBSP_USB_DP_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_USB_DM_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_ANALOG, + .hsiom = CYBSP_USB_DM_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_LED4_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG_IN_OFF, + .hsiom = CYBSP_LED4_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t ioss_0_port_5_pin_0_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_HIGHZ, + .hsiom = ioss_0_port_5_pin_0_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t ioss_0_port_5_pin_1_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG_IN_OFF, + .hsiom = ioss_0_port_5_pin_1_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_I2C_SCL_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_OD_DRIVESLOW, + .hsiom = CYBSP_I2C_SCL_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_I2C_SDA_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_OD_DRIVESLOW, + .hsiom = CYBSP_I2C_SDA_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_1_2, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_SWO_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_STRONG_IN_OFF, + .hsiom = CYBSP_SWO_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_FULL, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_SWDIO_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_PULLUP, + .hsiom = CYBSP_SWDIO_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_FULL, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; +const cy_stc_gpio_pin_config_t CYBSP_SWCLK_config = +{ + .outVal = 1, + .driveMode = CY_GPIO_DM_PULLDOWN, + .hsiom = CYBSP_SWCLK_HSIOM, + .intEdge = CY_GPIO_INTR_DISABLE, + .intMask = 0UL, + .vtrip = CY_GPIO_VTRIP_CMOS, + .slewRate = CY_GPIO_SLEW_FAST, + .driveSel = CY_GPIO_DRIVE_FULL, + .vregEn = 0UL, + .ibufMode = 0UL, + .vtripSel = 0UL, + .vrefSel = 0UL, + .vohSel = 0UL, +}; + + +void init_cycfg_pins(void) +{ + Cy_GPIO_Pin_Init(CYBSP_WCO_IN_PORT, CYBSP_WCO_IN_PIN, &CYBSP_WCO_IN_config); + + Cy_GPIO_Pin_Init(CYBSP_WCO_OUT_PORT, CYBSP_WCO_OUT_PIN, &CYBSP_WCO_OUT_config); + + Cy_GPIO_Pin_Init(CYBSP_SW2_PORT, CYBSP_SW2_PIN, &CYBSP_SW2_config); + + Cy_GPIO_Pin_Init(CYBSP_QSPI_SS_PORT, CYBSP_QSPI_SS_PIN, &CYBSP_QSPI_SS_config); + + Cy_GPIO_Pin_Init(CYBSP_QSPI_D3_PORT, CYBSP_QSPI_D3_PIN, &CYBSP_QSPI_D3_config); + + Cy_GPIO_Pin_Init(CYBSP_QSPI_D2_PORT, CYBSP_QSPI_D2_PIN, &CYBSP_QSPI_D2_config); + + Cy_GPIO_Pin_Init(CYBSP_QSPI_D1_PORT, CYBSP_QSPI_D1_PIN, &CYBSP_QSPI_D1_config); + + Cy_GPIO_Pin_Init(CYBSP_QSPI_D0_PORT, CYBSP_QSPI_D0_PIN, &CYBSP_QSPI_D0_config); + + Cy_GPIO_Pin_Init(CYBSP_QSPI_SCK_PORT, CYBSP_QSPI_SCK_PIN, &CYBSP_QSPI_SCK_config); + + Cy_GPIO_Pin_Init(CYBSP_ECO_IN_PORT, CYBSP_ECO_IN_PIN, &CYBSP_ECO_IN_config); + + Cy_GPIO_Pin_Init(CYBSP_ECO_OUT_PORT, CYBSP_ECO_OUT_PIN, &CYBSP_ECO_OUT_config); + + Cy_GPIO_Pin_Init(CYBSP_LED3_PORT, CYBSP_LED3_PIN, &CYBSP_LED3_config); + + Cy_GPIO_Pin_Init(CYBSP_USB_DP_PORT, CYBSP_USB_DP_PIN, &CYBSP_USB_DP_config); + + Cy_GPIO_Pin_Init(CYBSP_USB_DM_PORT, CYBSP_USB_DM_PIN, &CYBSP_USB_DM_config); + + Cy_GPIO_Pin_Init(CYBSP_LED4_PORT, CYBSP_LED4_PIN, &CYBSP_LED4_config); + + Cy_GPIO_Pin_Init(ioss_0_port_5_pin_0_PORT, ioss_0_port_5_pin_0_PIN, &ioss_0_port_5_pin_0_config); + + Cy_GPIO_Pin_Init(ioss_0_port_5_pin_1_PORT, ioss_0_port_5_pin_1_PIN, &ioss_0_port_5_pin_1_config); + + Cy_GPIO_Pin_Init(CYBSP_I2C_SCL_PORT, CYBSP_I2C_SCL_PIN, &CYBSP_I2C_SCL_config); + + Cy_GPIO_Pin_Init(CYBSP_I2C_SDA_PORT, CYBSP_I2C_SDA_PIN, &CYBSP_I2C_SDA_config); + + Cy_GPIO_Pin_Init(CYBSP_SWO_PORT, CYBSP_SWO_PIN, &CYBSP_SWO_config); + + Cy_GPIO_Pin_Init(CYBSP_SWDIO_PORT, CYBSP_SWDIO_PIN, &CYBSP_SWDIO_config); + + Cy_GPIO_Pin_Init(CYBSP_SWCLK_PORT, CYBSP_SWCLK_PIN, &CYBSP_SWCLK_config); +} diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.h new file mode 100644 index 00000000000..d6937cc557f --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.h @@ -0,0 +1,326 @@ +/******************************************************************************* +* File Name: cycfg_pins.h +* +* Description: +* Pin configuration +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#if !defined(CYCFG_PINS_H) +#define CYCFG_PINS_H + +#include "cycfg_notices.h" +#include "cy_gpio.h" +#include "cycfg_routing.h" + +#if defined(__cplusplus) +extern "C" { +#endif + +#define CYBSP_WCO_IN_ENABLED 1U +#define CYBSP_WCO_IN_PORT GPIO_PRT0 +#define CYBSP_WCO_IN_PORT_NUM 0U +#define CYBSP_WCO_IN_PIN 0U +#define CYBSP_WCO_IN_NUM 0U +#define CYBSP_WCO_IN_DRIVEMODE CY_GPIO_DM_ANALOG +#define CYBSP_WCO_IN_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_0_pin_0_HSIOM + #define ioss_0_port_0_pin_0_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_WCO_IN_HSIOM ioss_0_port_0_pin_0_HSIOM +#define CYBSP_WCO_IN_IRQ ioss_interrupts_gpio_0_IRQn +#define CYBSP_WCO_OUT_ENABLED 1U +#define CYBSP_WCO_OUT_PORT GPIO_PRT0 +#define CYBSP_WCO_OUT_PORT_NUM 0U +#define CYBSP_WCO_OUT_PIN 1U +#define CYBSP_WCO_OUT_NUM 1U +#define CYBSP_WCO_OUT_DRIVEMODE CY_GPIO_DM_ANALOG +#define CYBSP_WCO_OUT_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_0_pin_1_HSIOM + #define ioss_0_port_0_pin_1_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_WCO_OUT_HSIOM ioss_0_port_0_pin_1_HSIOM +#define CYBSP_WCO_OUT_IRQ ioss_interrupts_gpio_0_IRQn +#define CYBSP_SW2_ENABLED 1U +#define CYBSP_SW2_PORT GPIO_PRT0 +#define CYBSP_SW2_PORT_NUM 0U +#define CYBSP_SW2_PIN 4U +#define CYBSP_SW2_NUM 4U +#define CYBSP_SW2_DRIVEMODE CY_GPIO_DM_PULLUP +#define CYBSP_SW2_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_0_pin_4_HSIOM + #define ioss_0_port_0_pin_4_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_SW2_HSIOM ioss_0_port_0_pin_4_HSIOM +#define CYBSP_SW2_IRQ ioss_interrupts_gpio_0_IRQn +#define CYBSP_QSPI_SS_ENABLED 1U +#define CYBSP_QSPI_SS_PORT GPIO_PRT11 +#define CYBSP_QSPI_SS_PORT_NUM 11U +#define CYBSP_QSPI_SS_PIN 2U +#define CYBSP_QSPI_SS_NUM 2U +#define CYBSP_QSPI_SS_DRIVEMODE CY_GPIO_DM_STRONG_IN_OFF +#define CYBSP_QSPI_SS_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_11_pin_2_HSIOM + #define ioss_0_port_11_pin_2_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_QSPI_SS_HSIOM ioss_0_port_11_pin_2_HSIOM +#define CYBSP_QSPI_SS_IRQ ioss_interrupts_gpio_11_IRQn +#define CYBSP_QSPI_D3_ENABLED 1U +#define CYBSP_QSPI_D3_PORT GPIO_PRT11 +#define CYBSP_QSPI_D3_PORT_NUM 11U +#define CYBSP_QSPI_D3_PIN 3U +#define CYBSP_QSPI_D3_NUM 3U +#define CYBSP_QSPI_D3_DRIVEMODE CY_GPIO_DM_STRONG +#define CYBSP_QSPI_D3_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_11_pin_3_HSIOM + #define ioss_0_port_11_pin_3_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_QSPI_D3_HSIOM ioss_0_port_11_pin_3_HSIOM +#define CYBSP_QSPI_D3_IRQ ioss_interrupts_gpio_11_IRQn +#define CYBSP_QSPI_D2_ENABLED 1U +#define CYBSP_QSPI_D2_PORT GPIO_PRT11 +#define CYBSP_QSPI_D2_PORT_NUM 11U +#define CYBSP_QSPI_D2_PIN 4U +#define CYBSP_QSPI_D2_NUM 4U +#define CYBSP_QSPI_D2_DRIVEMODE CY_GPIO_DM_STRONG +#define CYBSP_QSPI_D2_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_11_pin_4_HSIOM + #define ioss_0_port_11_pin_4_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_QSPI_D2_HSIOM ioss_0_port_11_pin_4_HSIOM +#define CYBSP_QSPI_D2_IRQ ioss_interrupts_gpio_11_IRQn +#define CYBSP_QSPI_D1_ENABLED 1U +#define CYBSP_QSPI_D1_PORT GPIO_PRT11 +#define CYBSP_QSPI_D1_PORT_NUM 11U +#define CYBSP_QSPI_D1_PIN 5U +#define CYBSP_QSPI_D1_NUM 5U +#define CYBSP_QSPI_D1_DRIVEMODE CY_GPIO_DM_STRONG +#define CYBSP_QSPI_D1_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_11_pin_5_HSIOM + #define ioss_0_port_11_pin_5_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_QSPI_D1_HSIOM ioss_0_port_11_pin_5_HSIOM +#define CYBSP_QSPI_D1_IRQ ioss_interrupts_gpio_11_IRQn +#define CYBSP_QSPI_D0_ENABLED 1U +#define CYBSP_QSPI_D0_PORT GPIO_PRT11 +#define CYBSP_QSPI_D0_PORT_NUM 11U +#define CYBSP_QSPI_D0_PIN 6U +#define CYBSP_QSPI_D0_NUM 6U +#define CYBSP_QSPI_D0_DRIVEMODE CY_GPIO_DM_STRONG +#define CYBSP_QSPI_D0_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_11_pin_6_HSIOM + #define ioss_0_port_11_pin_6_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_QSPI_D0_HSIOM ioss_0_port_11_pin_6_HSIOM +#define CYBSP_QSPI_D0_IRQ ioss_interrupts_gpio_11_IRQn +#define CYBSP_QSPI_SCK_ENABLED 1U +#define CYBSP_QSPI_SCK_PORT GPIO_PRT11 +#define CYBSP_QSPI_SCK_PORT_NUM 11U +#define CYBSP_QSPI_SCK_PIN 7U +#define CYBSP_QSPI_SCK_NUM 7U +#define CYBSP_QSPI_SCK_DRIVEMODE CY_GPIO_DM_STRONG_IN_OFF +#define CYBSP_QSPI_SCK_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_11_pin_7_HSIOM + #define ioss_0_port_11_pin_7_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_QSPI_SCK_HSIOM ioss_0_port_11_pin_7_HSIOM +#define CYBSP_QSPI_SCK_IRQ ioss_interrupts_gpio_11_IRQn +#define CYBSP_ECO_IN_ENABLED 1U +#define CYBSP_ECO_IN_PORT GPIO_PRT12 +#define CYBSP_ECO_IN_PORT_NUM 12U +#define CYBSP_ECO_IN_PIN 6U +#define CYBSP_ECO_IN_NUM 6U +#define CYBSP_ECO_IN_DRIVEMODE CY_GPIO_DM_ANALOG +#define CYBSP_ECO_IN_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_12_pin_6_HSIOM + #define ioss_0_port_12_pin_6_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_ECO_IN_HSIOM ioss_0_port_12_pin_6_HSIOM +#define CYBSP_ECO_IN_IRQ ioss_interrupts_gpio_12_IRQn +#define CYBSP_ECO_OUT_ENABLED 1U +#define CYBSP_ECO_OUT_PORT GPIO_PRT12 +#define CYBSP_ECO_OUT_PORT_NUM 12U +#define CYBSP_ECO_OUT_PIN 7U +#define CYBSP_ECO_OUT_NUM 7U +#define CYBSP_ECO_OUT_DRIVEMODE CY_GPIO_DM_ANALOG +#define CYBSP_ECO_OUT_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_12_pin_7_HSIOM + #define ioss_0_port_12_pin_7_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_ECO_OUT_HSIOM ioss_0_port_12_pin_7_HSIOM +#define CYBSP_ECO_OUT_IRQ ioss_interrupts_gpio_12_IRQn +#define CYBSP_LED3_ENABLED 1U +#define CYBSP_LED3_PORT GPIO_PRT13 +#define CYBSP_LED3_PORT_NUM 13U +#define CYBSP_LED3_PIN 7U +#define CYBSP_LED3_NUM 7U +#define CYBSP_LED3_DRIVEMODE CY_GPIO_DM_STRONG_IN_OFF +#define CYBSP_LED3_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_13_pin_7_HSIOM + #define ioss_0_port_13_pin_7_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_LED3_HSIOM ioss_0_port_13_pin_7_HSIOM +#define CYBSP_LED3_IRQ ioss_interrupts_gpio_13_IRQn +#define CYBSP_USB_DP_ENABLED 1U +#define CYBSP_USB_DP_PORT GPIO_PRT14 +#define CYBSP_USB_DP_PORT_NUM 14U +#define CYBSP_USB_DP_PIN 0U +#define CYBSP_USB_DP_NUM 0U +#define CYBSP_USB_DP_DRIVEMODE CY_GPIO_DM_ANALOG +#define CYBSP_USB_DP_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_14_pin_0_HSIOM + #define ioss_0_port_14_pin_0_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_USB_DP_HSIOM ioss_0_port_14_pin_0_HSIOM +#define CYBSP_USB_DP_IRQ ioss_interrupts_gpio_14_IRQn +#define CYBSP_USB_DM_ENABLED 1U +#define CYBSP_USB_DM_PORT GPIO_PRT14 +#define CYBSP_USB_DM_PORT_NUM 14U +#define CYBSP_USB_DM_PIN 1U +#define CYBSP_USB_DM_NUM 1U +#define CYBSP_USB_DM_DRIVEMODE CY_GPIO_DM_ANALOG +#define CYBSP_USB_DM_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_14_pin_1_HSIOM + #define ioss_0_port_14_pin_1_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_USB_DM_HSIOM ioss_0_port_14_pin_1_HSIOM +#define CYBSP_USB_DM_IRQ ioss_interrupts_gpio_14_IRQn +#define CYBSP_LED4_ENABLED 1U +#define CYBSP_LED4_PORT GPIO_PRT1 +#define CYBSP_LED4_PORT_NUM 1U +#define CYBSP_LED4_PIN 5U +#define CYBSP_LED4_NUM 5U +#define CYBSP_LED4_DRIVEMODE CY_GPIO_DM_STRONG_IN_OFF +#define CYBSP_LED4_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_1_pin_5_HSIOM + #define ioss_0_port_1_pin_5_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_LED4_HSIOM ioss_0_port_1_pin_5_HSIOM +#define CYBSP_LED4_IRQ ioss_interrupts_gpio_1_IRQn +#define ioss_0_port_5_pin_0_ENABLED 1U +#define ioss_0_port_5_pin_0_PORT GPIO_PRT5 +#define ioss_0_port_5_pin_0_PORT_NUM 5U +#define ioss_0_port_5_pin_0_PIN 0U +#define ioss_0_port_5_pin_0_NUM 0U +#define ioss_0_port_5_pin_0_DRIVEMODE CY_GPIO_DM_HIGHZ +#define ioss_0_port_5_pin_0_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_5_pin_0_HSIOM + #define ioss_0_port_5_pin_0_HSIOM HSIOM_SEL_GPIO +#endif +#define ioss_0_port_5_pin_0_IRQ ioss_interrupts_gpio_5_IRQn +#define ioss_0_port_5_pin_1_ENABLED 1U +#define ioss_0_port_5_pin_1_PORT GPIO_PRT5 +#define ioss_0_port_5_pin_1_PORT_NUM 5U +#define ioss_0_port_5_pin_1_PIN 1U +#define ioss_0_port_5_pin_1_NUM 1U +#define ioss_0_port_5_pin_1_DRIVEMODE CY_GPIO_DM_STRONG_IN_OFF +#define ioss_0_port_5_pin_1_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_5_pin_1_HSIOM + #define ioss_0_port_5_pin_1_HSIOM HSIOM_SEL_GPIO +#endif +#define ioss_0_port_5_pin_1_IRQ ioss_interrupts_gpio_5_IRQn +#define CYBSP_I2C_SCL_ENABLED 1U +#define CYBSP_I2C_SCL_PORT GPIO_PRT6 +#define CYBSP_I2C_SCL_PORT_NUM 6U +#define CYBSP_I2C_SCL_PIN 0U +#define CYBSP_I2C_SCL_NUM 0U +#define CYBSP_I2C_SCL_DRIVEMODE CY_GPIO_DM_OD_DRIVESLOW +#define CYBSP_I2C_SCL_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_6_pin_0_HSIOM + #define ioss_0_port_6_pin_0_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_I2C_SCL_HSIOM ioss_0_port_6_pin_0_HSIOM +#define CYBSP_I2C_SCL_IRQ ioss_interrupts_gpio_6_IRQn +#define CYBSP_I2C_SDA_ENABLED 1U +#define CYBSP_I2C_SDA_PORT GPIO_PRT6 +#define CYBSP_I2C_SDA_PORT_NUM 6U +#define CYBSP_I2C_SDA_PIN 1U +#define CYBSP_I2C_SDA_NUM 1U +#define CYBSP_I2C_SDA_DRIVEMODE CY_GPIO_DM_OD_DRIVESLOW +#define CYBSP_I2C_SDA_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_6_pin_1_HSIOM + #define ioss_0_port_6_pin_1_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_I2C_SDA_HSIOM ioss_0_port_6_pin_1_HSIOM +#define CYBSP_I2C_SDA_IRQ ioss_interrupts_gpio_6_IRQn +#define CYBSP_SWO_ENABLED 1U +#define CYBSP_SWO_PORT GPIO_PRT6 +#define CYBSP_SWO_PIN 4U +#define CYBSP_SWO_NUM 4U +#define CYBSP_SWO_DRIVEMODE CY_GPIO_DM_STRONG_IN_OFF +#define CYBSP_SWO_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_6_pin_4_HSIOM + #define ioss_0_port_6_pin_4_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_SWO_HSIOM ioss_0_port_6_pin_4_HSIOM +#define CYBSP_SWO_IRQ ioss_interrupts_gpio_6_IRQn +#define CYBSP_SWDIO_ENABLED 1U +#define CYBSP_SWDIO_PORT GPIO_PRT6 +#define CYBSP_SWDIO_PIN 6U +#define CYBSP_SWDIO_NUM 6U +#define CYBSP_SWDIO_DRIVEMODE CY_GPIO_DM_PULLUP +#define CYBSP_SWDIO_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_6_pin_6_HSIOM + #define ioss_0_port_6_pin_6_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_SWDIO_HSIOM ioss_0_port_6_pin_6_HSIOM +#define CYBSP_SWDIO_IRQ ioss_interrupts_gpio_6_IRQn +#define CYBSP_SWCLK_ENABLED 1U +#define CYBSP_SWCLK_PORT GPIO_PRT6 +#define CYBSP_SWCLK_PIN 7U +#define CYBSP_SWCLK_NUM 7U +#define CYBSP_SWCLK_DRIVEMODE CY_GPIO_DM_PULLDOWN +#define CYBSP_SWCLK_INIT_DRIVESTATE 1 +#ifndef ioss_0_port_6_pin_7_HSIOM + #define ioss_0_port_6_pin_7_HSIOM HSIOM_SEL_GPIO +#endif +#define CYBSP_SWCLK_HSIOM ioss_0_port_6_pin_7_HSIOM +#define CYBSP_SWCLK_IRQ ioss_interrupts_gpio_6_IRQn + +extern const cy_stc_gpio_pin_config_t CYBSP_WCO_IN_config; +extern const cy_stc_gpio_pin_config_t CYBSP_WCO_OUT_config; +extern const cy_stc_gpio_pin_config_t CYBSP_SW2_config; +extern const cy_stc_gpio_pin_config_t CYBSP_QSPI_SS_config; +extern const cy_stc_gpio_pin_config_t CYBSP_QSPI_D3_config; +extern const cy_stc_gpio_pin_config_t CYBSP_QSPI_D2_config; +extern const cy_stc_gpio_pin_config_t CYBSP_QSPI_D1_config; +extern const cy_stc_gpio_pin_config_t CYBSP_QSPI_D0_config; +extern const cy_stc_gpio_pin_config_t CYBSP_QSPI_SCK_config; +extern const cy_stc_gpio_pin_config_t CYBSP_ECO_IN_config; +extern const cy_stc_gpio_pin_config_t CYBSP_ECO_OUT_config; +extern const cy_stc_gpio_pin_config_t CYBSP_LED3_config; +extern const cy_stc_gpio_pin_config_t CYBSP_USB_DP_config; +extern const cy_stc_gpio_pin_config_t CYBSP_USB_DM_config; +extern const cy_stc_gpio_pin_config_t CYBSP_LED4_config; +extern const cy_stc_gpio_pin_config_t ioss_0_port_5_pin_0_config; +extern const cy_stc_gpio_pin_config_t ioss_0_port_5_pin_1_config; +extern const cy_stc_gpio_pin_config_t CYBSP_I2C_SCL_config; +extern const cy_stc_gpio_pin_config_t CYBSP_I2C_SDA_config; +extern const cy_stc_gpio_pin_config_t CYBSP_SWO_config; +extern const cy_stc_gpio_pin_config_t CYBSP_SWDIO_config; +extern const cy_stc_gpio_pin_config_t CYBSP_SWCLK_config; + +void init_cycfg_pins(void); + +#if defined(__cplusplus) +} +#endif + + +#endif /* CYCFG_PINS_H */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.c new file mode 100644 index 00000000000..d430d4908fd --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.c @@ -0,0 +1,265 @@ +/******************************************************************************* +* File Name: cycfg_qspi_memslot.c +* +* Description: +* Provides definitions of the SMIF-driver memory configuration. +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#include "cycfg_qspi_memslot.h" + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0xEBU, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_QUAD, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0x01U, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_QUAD, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 4U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_QUAD +}; + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeEnCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0x06U, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_SINGLE, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0xFFFFFFFFU, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_SINGLE, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 0U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_SINGLE +}; + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeDisCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0x04U, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_SINGLE, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0xFFFFFFFFU, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_SINGLE, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 0U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_SINGLE +}; + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_eraseCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0x20U, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_SINGLE, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0xFFFFFFFFU, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_SINGLE, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 0U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_SINGLE +}; + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_chipEraseCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0x60U, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_SINGLE, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0xFFFFFFFFU, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_SINGLE, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 0U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_SINGLE +}; + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_programCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0x38U, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_SINGLE, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0xFFFFFFFFU, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_QUAD, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 0U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_QUAD +}; + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegQeCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0x35U, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_SINGLE, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0xFFFFFFFFU, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_SINGLE, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 0U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_SINGLE +}; + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegWipCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0x05U, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_SINGLE, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0xFFFFFFFFU, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_SINGLE, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 0U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_SINGLE +}; + +cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeStsRegQeCmd = +{ + /* The 8-bit command. 1 x I/O read command. */ + .command = 0x01U, + /* The width of the command transfer. */ + .cmdWidth = CY_SMIF_WIDTH_SINGLE, + /* The width of the address transfer. */ + .addrWidth = CY_SMIF_WIDTH_SINGLE, + /* The 8-bit mode byte. This value is 0xFFFFFFFF when there is no mode present. */ + .mode = 0xFFFFFFFFU, + /* The width of the mode command transfer. */ + .modeWidth = CY_SMIF_WIDTH_SINGLE, + /* The number of dummy cycles. A zero value suggests no dummy cycles. */ + .dummyCycles = 0U, + /* The width of the data transfer. */ + .dataWidth = CY_SMIF_WIDTH_SINGLE +}; + +cy_stc_smif_mem_device_cfg_t deviceCfg_S25FL128S_SlaveSlot_0 = +{ + /* Specifies the number of address bytes used by the memory slave device. */ + .numOfAddrBytes = 0x03U, + /* The size of the memory. */ + .memSize = 0x1000000U, + /* Specifies the Read command. */ + .readCmd = &S25FL128S_SlaveSlot_0_readCmd, + /* Specifies the Write Enable command. */ + .writeEnCmd = &S25FL128S_SlaveSlot_0_writeEnCmd, + /* Specifies the Write Disable command. */ + .writeDisCmd = &S25FL128S_SlaveSlot_0_writeDisCmd, + /* Specifies the Erase command. */ + .eraseCmd = &S25FL128S_SlaveSlot_0_eraseCmd, + /* Specifies the sector size of each erase. */ + .eraseSize = 0x0001000U, + /* Specifies the Chip Erase command. */ + .chipEraseCmd = &S25FL128S_SlaveSlot_0_chipEraseCmd, + /* Specifies the Program command. */ + .programCmd = &S25FL128S_SlaveSlot_0_programCmd, + /* Specifies the page size for programming. */ + .programSize = 0x0000200U, + /* Specifies the command to read the QE-containing status register. */ + .readStsRegQeCmd = &S25FL128S_SlaveSlot_0_readStsRegQeCmd, + /* Specifies the command to read the WIP-containing status register. */ + .readStsRegWipCmd = &S25FL128S_SlaveSlot_0_readStsRegWipCmd, + /* Specifies the command to write into the QE-containing status register. */ + .writeStsRegQeCmd = &S25FL128S_SlaveSlot_0_writeStsRegQeCmd, + /* The mask for the status register. */ + .stsRegBusyMask = 0x01U, + /* The mask for the status register. */ + .stsRegQuadEnableMask = 0x02U, + /* The max time for the erase type-1 cycle-time in ms. */ + .eraseTime = 140U, + /* The max time for the chip-erase cycle-time in ms. */ + .chipEraseTime = 40000U, + /* The max time for the page-program cycle-time in us. */ + .programTime = 250U +}; + +cy_stc_smif_mem_config_t S25FL128S_SlaveSlot_0 = +{ + /* Determines the slot number where the memory device is placed. */ + .slaveSelect = CY_SMIF_SLAVE_SELECT_0, + /* Flags. */ + .flags = CY_SMIF_FLAG_WR_EN, + /* The data-line selection options for a slave device. */ + .dataSelect = CY_SMIF_DATA_SEL0, + /* The base address the memory slave is mapped to in the PSoC memory map. + Valid when the memory-mapped mode is enabled. */ + .baseAddress = 0x18000000U, + /* The size allocated in the PSoC memory map, for the memory slave device. + The size is allocated from the base address. Valid when the memory mapped mode is enabled. */ + .memMappedSize = 0x10000U, + /* If this memory device is one of the devices in the dual quad SPI configuration. + Valid when the memory mapped mode is enabled. */ + .dualQuadSlots = 0, + /* The configuration of the device. */ + .deviceCfg = &deviceCfg_S25FL128S_SlaveSlot_0 +}; + +cy_stc_smif_mem_config_t* smifMemConfigs[] = { + &S25FL128S_SlaveSlot_0 +}; + +cy_stc_smif_block_config_t smifBlockConfig = +{ + /* The number of SMIF memories defined. */ + .memCount = CY_SMIF_DEVICE_NUM, + /* The pointer to the array of memory config structures of size memCount. */ + .memConfig = (cy_stc_smif_mem_config_t**)smifMemConfigs, + /* The version of the SMIF driver. */ + .majorVersion = CY_SMIF_DRV_VERSION_MAJOR, + /* The version of the SMIF driver. */ + .minorVersion = CY_SMIF_DRV_VERSION_MINOR +}; + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.h new file mode 100644 index 00000000000..116f1e52042 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.h @@ -0,0 +1,50 @@ +/******************************************************************************* +* File Name: cycfg_qspi_memslot.h +* +* Description: +* Provides declarations of the SMIF-driver memory configuration. +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#ifndef CYCFG_QSPI_MEMSLOT_H +#define CYCFG_QSPI_MEMSLOT_H +#include "cy_smif_memslot.h" + +#define CY_SMIF_DEVICE_NUM 1 + +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readCmd; +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeEnCmd; +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeDisCmd; +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_eraseCmd; +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_chipEraseCmd; +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_programCmd; +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegQeCmd; +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegWipCmd; +extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeStsRegQeCmd; + +extern cy_stc_smif_mem_device_cfg_t deviceCfg_S25FL128S_SlaveSlot_0; + +extern cy_stc_smif_mem_config_t S25FL128S_SlaveSlot_0; +extern cy_stc_smif_mem_config_t* smifMemConfigs[CY_SMIF_DEVICE_NUM]; + +extern cy_stc_smif_block_config_t smifBlockConfig; + + +#endif /*CY_SMIF_MEMCONFIG_H*/ + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.c new file mode 100644 index 00000000000..095e0b0b975 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.c @@ -0,0 +1,29 @@ +/******************************************************************************* +* File Name: cycfg_routing.c +* +* Description: +* Establishes all necessary connections between hardware elements. +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#include "cycfg_routing.h" + +void init_cycfg_routing(void) +{ +} diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.h new file mode 100644 index 00000000000..eff29bf6931 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.h @@ -0,0 +1,56 @@ +/******************************************************************************* +* File Name: cycfg_routing.h +* +* Description: +* Establishes all necessary connections between hardware elements. +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#if !defined(CYCFG_ROUTING_H) +#define CYCFG_ROUTING_H + +#if defined(__cplusplus) +extern "C" { +#endif + +#include "cycfg_notices.h" +void init_cycfg_routing(void); +#define init_cycfg_connectivity() init_cycfg_routing() +#define ioss_0_port_0_pin_0_ANALOG P0_0_SRSS_WCO_IN +#define ioss_0_port_0_pin_1_ANALOG P0_1_SRSS_WCO_OUT +#define ioss_0_port_11_pin_2_HSIOM P11_2_SMIF_SPI_SELECT0 +#define ioss_0_port_11_pin_3_HSIOM P11_3_SMIF_SPI_DATA3 +#define ioss_0_port_11_pin_4_HSIOM P11_4_SMIF_SPI_DATA2 +#define ioss_0_port_11_pin_5_HSIOM P11_5_SMIF_SPI_DATA1 +#define ioss_0_port_11_pin_6_HSIOM P11_6_SMIF_SPI_DATA0 +#define ioss_0_port_11_pin_7_HSIOM P11_7_SMIF_SPI_CLK +#define ioss_0_port_5_pin_0_HSIOM P5_0_SCB5_UART_RX +#define ioss_0_port_5_pin_1_HSIOM P5_1_SCB5_UART_TX +#define ioss_0_port_6_pin_0_HSIOM P6_0_SCB3_I2C_SCL +#define ioss_0_port_6_pin_1_HSIOM P6_1_SCB3_I2C_SDA +#define ioss_0_port_6_pin_4_HSIOM P6_4_CPUSS_SWJ_SWO_TDO +#define ioss_0_port_6_pin_6_HSIOM P6_6_CPUSS_SWJ_SWDIO_TMS +#define ioss_0_port_6_pin_7_HSIOM P6_7_CPUSS_SWJ_SWCLK_TCLK + +#if defined(__cplusplus) +} +#endif + + +#endif /* CYCFG_ROUTING_H */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.c new file mode 100644 index 00000000000..42eb4f6cba9 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.c @@ -0,0 +1,475 @@ +/******************************************************************************* +* File Name: cycfg_system.c +* +* Description: +* System configuration +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#include "cycfg_system.h" + +#define CY_CFG_SYSCLK_ECO_ERROR 1 +#define CY_CFG_SYSCLK_ALTHF_ERROR 2 +#define CY_CFG_SYSCLK_PLL_ERROR 3 +#define CY_CFG_SYSCLK_FLL_ERROR 4 +#define CY_CFG_SYSCLK_WCO_ERROR 5 +#define CY_CFG_SYSCLK_CLKBAK_ENABLED 1 +#define CY_CFG_SYSCLK_CLKFAST_ENABLED 1 +#define CY_CFG_SYSCLK_FLL_ENABLED 1 +#define CY_CFG_SYSCLK_CLKHF0_ENABLED 1 +#define CY_CFG_SYSCLK_CLKHF0_FREQ_MHZ 100UL +#define CY_CFG_SYSCLK_CLKHF0_CLKPATH CY_SYSCLK_CLKHF_IN_CLKPATH0 +#define CY_CFG_SYSCLK_CLKHF2_ENABLED 1 +#define CY_CFG_SYSCLK_CLKHF2_FREQ_MHZ 50UL +#define CY_CFG_SYSCLK_CLKHF2_CLKPATH CY_SYSCLK_CLKHF_IN_CLKPATH0 +#define CY_CFG_SYSCLK_ILO_ENABLED 1 +#define CY_CFG_SYSCLK_IMO_ENABLED 1 +#define CY_CFG_SYSCLK_CLKLF_ENABLED 1 +#define CY_CFG_SYSCLK_CLKPATH0_ENABLED 1 +#define CY_CFG_SYSCLK_CLKPATH0_SOURCE CY_SYSCLK_CLKPATH_IN_IMO +#define CY_CFG_SYSCLK_CLKPATH1_ENABLED 1 +#define CY_CFG_SYSCLK_CLKPATH1_SOURCE CY_SYSCLK_CLKPATH_IN_IMO +#define CY_CFG_SYSCLK_CLKPATH2_ENABLED 1 +#define CY_CFG_SYSCLK_CLKPATH2_SOURCE CY_SYSCLK_CLKPATH_IN_IMO +#define CY_CFG_SYSCLK_CLKPATH3_ENABLED 1 +#define CY_CFG_SYSCLK_CLKPATH3_SOURCE CY_SYSCLK_CLKPATH_IN_IMO +#define CY_CFG_SYSCLK_CLKPATH4_ENABLED 1 +#define CY_CFG_SYSCLK_CLKPATH4_SOURCE CY_SYSCLK_CLKPATH_IN_IMO +#define CY_CFG_SYSCLK_CLKPERI_ENABLED 1 +#define CY_CFG_SYSCLK_CLKSLOW_ENABLED 1 +#define CY_CFG_SYSCLK_WCO_ENABLED 1 +#define CY_CFG_PWR_ENABLED 1 +#define CY_CFG_PWR_INIT 1 +#define CY_CFG_PWR_USING_PMIC 0 +#define CY_CFG_PWR_VBACKUP_USING_VDDD 1 +#define CY_CFG_PWR_LDO_VOLTAGE CY_SYSPM_LDO_VOLTAGE_LP +#define CY_CFG_PWR_USING_ULP 0 + +static const cy_stc_fll_manual_config_t srss_0_clock_0_fll_0_fllConfig = +{ + .fllMult = 500U, + .refDiv = 20U, + .ccoRange = CY_SYSCLK_FLL_CCO_RANGE4, + .enableOutputDiv = true, + .lockTolerance = 10U, + .igain = 9U, + .pgain = 5U, + .settlingCount = 8U, + .outputMode = CY_SYSCLK_FLLPLL_OUTPUT_OUTPUT, + .cco_Freq = 355U, +}; + +__WEAK void cycfg_ClockStartupError(uint32_t error) +{ + (void)error; /* Suppress the compiler warning */ + while(1); +} +__STATIC_INLINE void Cy_SysClk_ClkBakInit() +{ + Cy_SysClk_ClkBakSetSource(CY_SYSCLK_BAK_IN_WCO); +} +__STATIC_INLINE void Cy_SysClk_ClkFastInit() +{ + Cy_SysClk_ClkFastSetDivider(0U); +} +__STATIC_INLINE void Cy_SysClk_FllInit() +{ + if (CY_SYSCLK_SUCCESS != Cy_SysClk_FllManualConfigure(&srss_0_clock_0_fll_0_fllConfig)) + { + cycfg_ClockStartupError(CY_CFG_SYSCLK_FLL_ERROR); + } + if (CY_SYSCLK_SUCCESS != Cy_SysClk_FllEnable(200000UL)) + { + cycfg_ClockStartupError(CY_CFG_SYSCLK_FLL_ERROR); + } +} +__STATIC_INLINE void Cy_SysClk_ClkHf0Init() +{ + Cy_SysClk_ClkHfSetSource(0U, CY_CFG_SYSCLK_CLKHF0_CLKPATH); + Cy_SysClk_ClkHfSetDivider(0U, CY_SYSCLK_CLKHF_NO_DIVIDE); +} +__STATIC_INLINE void Cy_SysClk_ClkHf2Init() +{ + Cy_SysClk_ClkHfSetSource(CY_CFG_SYSCLK_CLKHF2, CY_CFG_SYSCLK_CLKHF2_CLKPATH); + Cy_SysClk_ClkHfSetDivider(CY_CFG_SYSCLK_CLKHF2, CY_SYSCLK_CLKHF_DIVIDE_BY_2); + Cy_SysClk_ClkHfEnable(CY_CFG_SYSCLK_CLKHF2); +} +__STATIC_INLINE void Cy_SysClk_IloInit() +{ + /* The WDT is unlocked in the default startup code */ + Cy_SysClk_IloEnable(); + Cy_SysClk_IloHibernateOn(true); +} +__STATIC_INLINE void Cy_SysClk_ClkLfInit() +{ + /* The WDT is unlocked in the default startup code */ + Cy_SysClk_ClkLfSetSource(CY_SYSCLK_CLKLF_IN_WCO); +} +__STATIC_INLINE void Cy_SysClk_ClkPath0Init() +{ + Cy_SysClk_ClkPathSetSource(0U, CY_CFG_SYSCLK_CLKPATH0_SOURCE); +} +__STATIC_INLINE void Cy_SysClk_ClkPath1Init() +{ + Cy_SysClk_ClkPathSetSource(1U, CY_CFG_SYSCLK_CLKPATH1_SOURCE); +} +__STATIC_INLINE void Cy_SysClk_ClkPath2Init() +{ + Cy_SysClk_ClkPathSetSource(2U, CY_CFG_SYSCLK_CLKPATH2_SOURCE); +} +__STATIC_INLINE void Cy_SysClk_ClkPath3Init() +{ + Cy_SysClk_ClkPathSetSource(3U, CY_CFG_SYSCLK_CLKPATH3_SOURCE); +} +__STATIC_INLINE void Cy_SysClk_ClkPath4Init() +{ + Cy_SysClk_ClkPathSetSource(4U, CY_CFG_SYSCLK_CLKPATH4_SOURCE); +} +__STATIC_INLINE void Cy_SysClk_ClkPeriInit() +{ + Cy_SysClk_ClkPeriSetDivider(1U); +} +__STATIC_INLINE void Cy_SysClk_ClkSlowInit() +{ + Cy_SysClk_ClkSlowSetDivider(0U); +} +__STATIC_INLINE void Cy_SysClk_WcoInit() +{ + (void)Cy_GPIO_Pin_FastInit(GPIO_PRT0, 0U, 0x00U, 0x00U, HSIOM_SEL_GPIO); + (void)Cy_GPIO_Pin_FastInit(GPIO_PRT0, 1U, 0x00U, 0x00U, HSIOM_SEL_GPIO); + if (CY_SYSCLK_SUCCESS != Cy_SysClk_WcoEnable(1000000UL)) + { + cycfg_ClockStartupError(CY_CFG_SYSCLK_WCO_ERROR); + } +} +__STATIC_INLINE void init_cycfg_power(void) +{ + /* Reset the Backup domain on POR, XRES, BOD only if Backup domain is supplied by VDDD */ + #if (CY_CFG_PWR_VBACKUP_USING_VDDD) + if (0u == Cy_SysLib_GetResetReason() /* POR, XRES, or BOD */) + { + Cy_SysLib_ResetBackupDomain(); + Cy_SysClk_IloDisable(); + Cy_SysClk_IloInit(); + } + #else /* Dedicated Supply */ + Cy_SysPm_BackupSetSupply(CY_SYSPM_VDDBACKUP_VBACKUP); + #endif /* CY_CFG_PWR_VBACKUP_USING_VDDD */ + + /* Configure core regulator */ + #if CY_CFG_PWR_USING_LDO + Cy_SysPm_LdoSetVoltage(CY_SYSPM_LDO_VOLTAGE_LP); + Cy_SysPm_LdoSetMode(CY_SYSPM_LDO_MODE_NORMAL); + #else + Cy_SysPm_BuckEnable(CY_SYSPM_BUCK_OUT1_VOLTAGE_LP); + #endif /* CY_CFG_PWR_USING_LDO */ + /* Configure PMIC */ + Cy_SysPm_UnlockPmic(); + #if CY_CFG_PWR_USING_PMIC + Cy_SysPm_PmicEnableOutput(); + #else + Cy_SysPm_PmicDisableOutput(); + #endif /* CY_CFG_PWR_USING_PMIC */ +} + + +void init_cycfg_system(void) +{ + /* Set worst case memory wait states (! ultra low power, 150 MHz), will update at the end */ + Cy_SysLib_SetWaitStates(false, 150UL); + #ifdef CY_CFG_PWR_ENABLED + #ifdef CY_CFG_PWR_INIT + init_cycfg_power(); + #else + #warning Power system will not be configured. Update power personality to v1.20 or later. + #endif /* CY_CFG_PWR_INIT */ + #endif /* CY_CFG_PWR_ENABLED */ + + /* Reset the core clock path to default and disable all the FLLs/PLLs */ + Cy_SysClk_ClkHfSetDivider(0U, CY_SYSCLK_CLKHF_NO_DIVIDE); + Cy_SysClk_ClkFastSetDivider(0U); + Cy_SysClk_ClkPeriSetDivider(1U); + Cy_SysClk_ClkSlowSetDivider(0U); + for (uint32_t pll = CY_SRSS_NUM_PLL; pll > 0UL; --pll) /* PLL 1 is the first PLL. 0 is invalid. */ + { + (void)Cy_SysClk_PllDisable(pll); + } + Cy_SysClk_ClkPathSetSource(CY_SYSCLK_CLKHF_IN_CLKPATH1, CY_SYSCLK_CLKPATH_IN_IMO); + + if ((CY_SYSCLK_CLKHF_IN_CLKPATH0 == Cy_SysClk_ClkHfGetSource(0UL)) && + (CY_SYSCLK_CLKPATH_IN_WCO == Cy_SysClk_ClkPathGetSource(CY_SYSCLK_CLKHF_IN_CLKPATH0))) + { + Cy_SysClk_ClkHfSetSource(0U, CY_SYSCLK_CLKHF_IN_CLKPATH1); + } + + Cy_SysClk_FllDisable(); + Cy_SysClk_ClkPathSetSource(CY_SYSCLK_CLKHF_IN_CLKPATH0, CY_SYSCLK_CLKPATH_IN_IMO); + Cy_SysClk_ClkHfSetSource(0UL, CY_SYSCLK_CLKHF_IN_CLKPATH0); + #ifdef CY_IP_MXBLESS + (void)Cy_BLE_EcoReset(); + #endif + + + /* Enable all source clocks */ + #ifdef CY_CFG_SYSCLK_PILO_ENABLED + Cy_SysClk_PiloInit(); + #endif + + #ifdef CY_CFG_SYSCLK_WCO_ENABLED + Cy_SysClk_WcoInit(); + #endif + + #ifdef CY_CFG_SYSCLK_CLKLF_ENABLED + Cy_SysClk_ClkLfInit(); + #endif + + #ifdef CY_CFG_SYSCLK_ALTHF_ENABLED + Cy_SysClk_AltHfInit(); + #endif + + #ifdef CY_CFG_SYSCLK_ECO_ENABLED + Cy_SysClk_EcoInit(); + #endif + + #ifdef CY_CFG_SYSCLK_EXTCLK_ENABLED + Cy_SysClk_ExtClkInit(); + #endif + + /* Configure CPU clock dividers */ + #ifdef CY_CFG_SYSCLK_CLKFAST_ENABLED + Cy_SysClk_ClkFastInit(); + #endif + + #ifdef CY_CFG_SYSCLK_CLKPERI_ENABLED + Cy_SysClk_ClkPeriInit(); + #endif + + #ifdef CY_CFG_SYSCLK_CLKSLOW_ENABLED + Cy_SysClk_ClkSlowInit(); + #endif + + #if ((CY_CFG_SYSCLK_CLKPATH0_SOURCE == CY_SYSCLK_CLKPATH_IN_WCO) && (CY_CFG_SYSCLK_CLKHF0_CLKPATH == CY_SYSCLK_CLKHF_IN_CLKPATH0)) + /* Configure HFCLK0 to temporarily run from IMO to initialize other clocks */ + Cy_SysClk_ClkPathSetSource(1UL, CY_SYSCLK_CLKPATH_IN_IMO); + Cy_SysClk_ClkHfSetSource(0UL, CY_SYSCLK_CLKHF_IN_CLKPATH1); + #else + #ifdef CY_CFG_SYSCLK_CLKPATH1_ENABLED + Cy_SysClk_ClkPath1Init(); + #endif + #endif + + /* Configure Path Clocks */ + #ifdef CY_CFG_SYSCLK_CLKPATH0_ENABLED + Cy_SysClk_ClkPath0Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH2_ENABLED + Cy_SysClk_ClkPath2Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH3_ENABLED + Cy_SysClk_ClkPath3Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH4_ENABLED + Cy_SysClk_ClkPath4Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH5_ENABLED + Cy_SysClk_ClkPath5Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH6_ENABLED + Cy_SysClk_ClkPath6Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH7_ENABLED + Cy_SysClk_ClkPath7Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH8_ENABLED + Cy_SysClk_ClkPath8Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH9_ENABLED + Cy_SysClk_ClkPath9Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH10_ENABLED + Cy_SysClk_ClkPath10Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH11_ENABLED + Cy_SysClk_ClkPath11Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH12_ENABLED + Cy_SysClk_ClkPath12Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH13_ENABLED + Cy_SysClk_ClkPath13Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH14_ENABLED + Cy_SysClk_ClkPath14Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKPATH15_ENABLED + Cy_SysClk_ClkPath15Init(); + #endif + + /* Configure and enable FLL */ + #ifdef CY_CFG_SYSCLK_FLL_ENABLED + Cy_SysClk_FllInit(); + #endif + + Cy_SysClk_ClkHf0Init(); + + #if ((CY_CFG_SYSCLK_CLKPATH0_SOURCE == CY_SYSCLK_CLKPATH_IN_WCO) && (CY_CFG_SYSCLK_CLKHF0_CLKPATH == CY_SYSCLK_CLKHF_IN_CLKPATH0)) + #ifdef CY_CFG_SYSCLK_CLKPATH1_ENABLED + /* Apply the ClkPath1 user setting */ + Cy_SysClk_ClkPath1Init(); + #endif + #endif + + /* Configure and enable PLLs */ + #ifdef CY_CFG_SYSCLK_PLL0_ENABLED + Cy_SysClk_Pll0Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL1_ENABLED + Cy_SysClk_Pll1Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL2_ENABLED + Cy_SysClk_Pll2Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL3_ENABLED + Cy_SysClk_Pll3Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL4_ENABLED + Cy_SysClk_Pll4Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL5_ENABLED + Cy_SysClk_Pll5Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL6_ENABLED + Cy_SysClk_Pll6Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL7_ENABLED + Cy_SysClk_Pll7Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL8_ENABLED + Cy_SysClk_Pll8Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL9_ENABLED + Cy_SysClk_Pll9Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL10_ENABLED + Cy_SysClk_Pll10Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL11_ENABLED + Cy_SysClk_Pll11Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL12_ENABLED + Cy_SysClk_Pll12Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL13_ENABLED + Cy_SysClk_Pll13Init(); + #endif + #ifdef CY_CFG_SYSCLK_PLL14_ENABLED + Cy_SysClk_Pll14Init(); + #endif + + /* Configure HF clocks */ + #ifdef CY_CFG_SYSCLK_CLKHF1_ENABLED + Cy_SysClk_ClkHf1Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF2_ENABLED + Cy_SysClk_ClkHf2Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF3_ENABLED + Cy_SysClk_ClkHf3Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF4_ENABLED + Cy_SysClk_ClkHf4Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF5_ENABLED + Cy_SysClk_ClkHf5Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF6_ENABLED + Cy_SysClk_ClkHf6Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF7_ENABLED + Cy_SysClk_ClkHf7Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF8_ENABLED + Cy_SysClk_ClkHf8Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF9_ENABLED + Cy_SysClk_ClkHf9Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF10_ENABLED + Cy_SysClk_ClkHf10Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF11_ENABLED + Cy_SysClk_ClkHf11Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF12_ENABLED + Cy_SysClk_ClkHf12Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF13_ENABLED + Cy_SysClk_ClkHf13Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF14_ENABLED + Cy_SysClk_ClkHf14Init(); + #endif + #ifdef CY_CFG_SYSCLK_CLKHF15_ENABLED + Cy_SysClk_ClkHf15Init(); + #endif + + /* Configure miscellaneous clocks */ + #ifdef CY_CFG_SYSCLK_CLKTIMER_ENABLED + Cy_SysClk_ClkTimerInit(); + #endif + + #ifdef CY_CFG_SYSCLK_CLKALTSYSTICK_ENABLED + Cy_SysClk_ClkAltSysTickInit(); + #endif + + #ifdef CY_CFG_SYSCLK_CLKPUMP_ENABLED + Cy_SysClk_ClkPumpInit(); + #endif + + #ifdef CY_CFG_SYSCLK_CLKBAK_ENABLED + Cy_SysClk_ClkBakInit(); + #endif + + /* Configure default enabled clocks */ + #ifdef CY_CFG_SYSCLK_ILO_ENABLED + Cy_SysClk_IloInit(); + #else + Cy_SysClk_IloDisable(); + #endif + + #ifndef CY_CFG_SYSCLK_IMO_ENABLED + #error the IMO must be enabled for proper chip operation + #endif + + #ifdef CY_CFG_SYSCLK_MFO_ENABLED + Cy_SysClk_MfoInit(); + #endif + + #ifdef CY_CFG_SYSCLK_CLKMF_ENABLED + Cy_SysClk_ClkMfInit(); + #endif + + /* Set accurate flash wait states */ + #if (defined (CY_CFG_PWR_ENABLED) && defined (CY_CFG_SYSCLK_CLKHF0_ENABLED)) + Cy_SysLib_SetWaitStates(CY_CFG_PWR_USING_ULP != 0, CY_CFG_SYSCLK_CLKHF0_FREQ_MHZ); + #endif + + /* Update System Core Clock values for correct Cy_SysLib_Delay functioning */ + SystemCoreClockUpdate(); +} diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.h new file mode 100644 index 00000000000..cc47de73c76 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.h @@ -0,0 +1,82 @@ +/******************************************************************************* +* File Name: cycfg_system.h +* +* Description: +* System configuration +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + +#if !defined(CYCFG_SYSTEM_H) +#define CYCFG_SYSTEM_H + +#include "cycfg_notices.h" +#include "cy_sysclk.h" +#include "cy_gpio.h" +#include "cy_syspm.h" + +#if defined(__cplusplus) +extern "C" { +#endif + +#define cpuss_0_dap_0_ENABLED 1U +#define srss_0_clock_0_ENABLED 1U +#define srss_0_clock_0_bakclk_0_ENABLED 1U +#define srss_0_clock_0_fastclk_0_ENABLED 1U +#define srss_0_clock_0_fll_0_ENABLED 1U +#define srss_0_clock_0_hfclk_0_ENABLED 1U +#define CY_CFG_SYSCLK_CLKHF0 0UL +#define srss_0_clock_0_hfclk_2_ENABLED 1U +#define CY_CFG_SYSCLK_CLKHF2 2UL +#define srss_0_clock_0_ilo_0_ENABLED 1U +#define srss_0_clock_0_imo_0_ENABLED 1U +#define srss_0_clock_0_lfclk_0_ENABLED 1U +#define CY_CFG_SYSCLK_CLKLF_FREQ_HZ 32768 +#define srss_0_clock_0_pathmux_0_ENABLED 1U +#define srss_0_clock_0_pathmux_1_ENABLED 1U +#define srss_0_clock_0_pathmux_2_ENABLED 1U +#define srss_0_clock_0_pathmux_3_ENABLED 1U +#define srss_0_clock_0_pathmux_4_ENABLED 1U +#define srss_0_clock_0_periclk_0_ENABLED 1U +#define srss_0_clock_0_slowclk_0_ENABLED 1U +#define srss_0_clock_0_wco_0_ENABLED 1U +#define srss_0_power_0_ENABLED 1U +#define CY_CFG_PWR_MODE_LP 0x01UL +#define CY_CFG_PWR_MODE_ULP 0x02UL +#define CY_CFG_PWR_MODE_ACTIVE 0x04UL +#define CY_CFG_PWR_MODE_SLEEP 0x08UL +#define CY_CFG_PWR_MODE_DEEPSLEEP 0x10UL +#define CY_CFG_PWR_SYS_IDLE_MODE CY_CFG_PWR_MODE_DEEPSLEEP +#define CY_CFG_PWR_SYS_ACTIVE_MODE CY_CFG_PWR_MODE_LP +#define CY_CFG_PWR_DEEPSLEEP_LATENCY 0UL +#define CY_CFG_PWR_USING_LDO 1 +#define CY_CFG_PWR_VDDA_MV 3300 +#define CY_CFG_PWR_VDDD_MV 3300 +#define CY_CFG_PWR_VBACKUP_MV 3300 +#define CY_CFG_PWR_VDD_NS_MV 3300 +#define CY_CFG_PWR_VDDIO0_MV 3300 +#define CY_CFG_PWR_VDDIO1_MV 3300 + +void init_cycfg_system(void); + +#if defined(__cplusplus) +} +#endif + + +#endif /* CYCFG_SYSTEM_H */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralNames.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralNames.h new file mode 100644 index 00000000000..d2b32d667e8 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralNames.h @@ -0,0 +1,117 @@ +/* + * mbed Microcontroller Library + * Copyright (c) 2017-2018 Future Electronics + * Copyright (c) 2019 Cypress Semiconductor Corporation + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef MBED_PERIPHERALNAMES_H +#define MBED_PERIPHERALNAMES_H + +#include "cmsis.h" +#include "PinNames.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum { + UART_0 = (int)SCB0_BASE, + UART_1 = (int)SCB1_BASE, + UART_2 = (int)SCB2_BASE, + UART_3 = (int)SCB3_BASE, + UART_4 = (int)SCB4_BASE, + UART_5 = (int)SCB5_BASE, + UART_6 = (int)SCB6_BASE, + UART_7 = (int)SCB7_BASE, +} UARTName; + + +typedef enum { + SPI_0 = (int)SCB0_BASE, + SPI_1 = (int)SCB1_BASE, + SPI_2 = (int)SCB2_BASE, + SPI_3 = (int)SCB3_BASE, + SPI_4 = (int)SCB4_BASE, + SPI_5 = (int)SCB5_BASE, + SPI_6 = (int)SCB6_BASE, + SPI_7 = (int)SCB7_BASE, + SPI_8 = (int)SCB8_BASE, +} SPIName; + +typedef enum { + I2C_0 = (int)SCB0_BASE, + I2C_1 = (int)SCB1_BASE, + I2C_2 = (int)SCB2_BASE, + I2C_3 = (int)SCB3_BASE, + I2C_4 = (int)SCB4_BASE, + I2C_5 = (int)SCB5_BASE, + I2C_6 = (int)SCB6_BASE, + I2C_7 = (int)SCB7_BASE, + I2C_8 = (int)SCB8_BASE, +} I2CName; + +typedef enum { + PWM_32b_0 = TCPWM0_BASE, + PWM_32b_1, + PWM_32b_2, + PWM_32b_3, + PWM_32b_4, + PWM_32b_5, + PWM_32b_6, + PWM_32b_7, + PWM_16b_0 = TCPWM1_BASE, + PWM_16b_1, + PWM_16b_2, + PWM_16b_3, + PWM_16b_4, + PWM_16b_5, + PWM_16b_6, + PWM_16b_7, + PWM_16b_8, + PWM_16b_9, + PWM_16b_10, + PWM_16b_11, + PWM_16b_12, + PWM_16b_13, + PWM_16b_14, + PWM_16b_15, + PWM_16b_16, + PWM_16b_17, + PWM_16b_18, + PWM_16b_19, + PWM_16b_20, + PWM_16b_21, + PWM_16b_22, + PWM_16b_23, +} PWMName; + +typedef enum { + ADC_0 = (int)SAR_BASE, +} ADCName; + +typedef enum { + DAC_0 = (int)CTDAC0_BASE, +} DACName; + +typedef enum { + SMIF_0 = (int)SMIF0_BASE, +} SMIFName; + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralPins.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralPins.c new file mode 100644 index 00000000000..cfd1be0c795 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralPins.c @@ -0,0 +1,465 @@ +/* + * mbed Microcontroller Library + * Copyright (c) 2017-2018 Future Electronics + * Copyright (c) 2019 Cypress Semiconductor Corporation + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "PeripheralNames.h" +#include "PeripheralPins.h" +#include "pinmap.h" + +#if DEVICE_SERIAL +//*** SERIAL *** +const PinMap PinMap_UART_RX[] = { + {P0_2, UART_0, CYHAL_PIN_IN_FUNCTION( P0_2_SCB0_UART_RX)}, + {P1_0, UART_7, CYHAL_PIN_IN_FUNCTION( P1_0_SCB7_UART_RX)}, + {P2_0, UART_1, CYHAL_PIN_IN_FUNCTION( P2_0_SCB1_UART_RX)}, + {P3_0, UART_2, CYHAL_PIN_IN_FUNCTION( P3_0_SCB2_UART_RX)}, + {P4_0, UART_7, CYHAL_PIN_IN_FUNCTION( P4_0_SCB7_UART_RX)}, + {P5_0, UART_5, CYHAL_PIN_IN_FUNCTION( P5_0_SCB5_UART_RX)}, + {P6_0, UART_3, CYHAL_PIN_IN_FUNCTION( P6_0_SCB3_UART_RX)}, + {P6_4, UART_6, CYHAL_PIN_IN_FUNCTION( P6_4_SCB6_UART_RX)}, + {P7_0, UART_4, CYHAL_PIN_IN_FUNCTION( P7_0_SCB4_UART_RX)}, + {P8_0, UART_4, CYHAL_PIN_IN_FUNCTION( P8_0_SCB4_UART_RX)}, + {P9_0, UART_2, CYHAL_PIN_IN_FUNCTION( P9_0_SCB2_UART_RX)}, + {P10_0, UART_1, CYHAL_PIN_IN_FUNCTION( P10_0_SCB1_UART_RX)}, + {P11_0, UART_5, CYHAL_PIN_IN_FUNCTION( P11_0_SCB5_UART_RX)}, + {P12_0, UART_6, CYHAL_PIN_IN_FUNCTION( P12_0_SCB6_UART_RX)}, + {P13_0, UART_6, CYHAL_PIN_IN_FUNCTION( P13_0_SCB6_UART_RX)}, + {NC, NC, 0} +}; +const PinMap PinMap_UART_TX[] = { + {P0_3, UART_0, CYHAL_PIN_OUT_FUNCTION( P0_3_SCB0_UART_TX)}, + {P1_1, UART_7, CYHAL_PIN_OUT_FUNCTION( P1_1_SCB7_UART_TX)}, + {P2_1, UART_1, CYHAL_PIN_OUT_FUNCTION( P2_1_SCB1_UART_TX)}, + {P3_1, UART_2, CYHAL_PIN_OUT_FUNCTION( P3_1_SCB2_UART_TX)}, + {P4_1, UART_7, CYHAL_PIN_OUT_FUNCTION( P4_1_SCB7_UART_TX)}, + {P5_1, UART_5, CYHAL_PIN_OUT_FUNCTION( P5_1_SCB5_UART_TX)}, + {P6_1, UART_3, CYHAL_PIN_OUT_FUNCTION( P6_1_SCB3_UART_TX)}, + {P6_5, UART_6, CYHAL_PIN_OUT_FUNCTION( P6_5_SCB6_UART_TX)}, + {P7_1, UART_4, CYHAL_PIN_OUT_FUNCTION( P7_1_SCB4_UART_TX)}, + {P8_1, UART_4, CYHAL_PIN_OUT_FUNCTION( P8_1_SCB4_UART_TX)}, + {P9_1, UART_2, CYHAL_PIN_OUT_FUNCTION( P9_1_SCB2_UART_TX)}, + {P10_1, UART_1, CYHAL_PIN_OUT_FUNCTION( P10_1_SCB1_UART_TX)}, + {P11_1, UART_5, CYHAL_PIN_OUT_FUNCTION( P11_1_SCB5_UART_TX)}, + {P12_1, UART_6, CYHAL_PIN_OUT_FUNCTION( P12_1_SCB6_UART_TX)}, + {P13_1, UART_6, CYHAL_PIN_OUT_FUNCTION( P13_1_SCB6_UART_TX)}, + {NC, NC, 0} +}; +const PinMap PinMap_UART_RTS[] = { + {P0_4, UART_0, CYHAL_PIN_OUT_FUNCTION( P0_4_SCB0_UART_RTS)}, + {P1_2, UART_7, CYHAL_PIN_OUT_FUNCTION( P1_2_SCB7_UART_RTS)}, + {P2_2, UART_1, CYHAL_PIN_OUT_FUNCTION( P2_2_SCB1_UART_RTS)}, + {P3_2, UART_2, CYHAL_PIN_OUT_FUNCTION( P3_2_SCB2_UART_RTS)}, + {P5_2, UART_5, CYHAL_PIN_OUT_FUNCTION( P5_2_SCB5_UART_RTS)}, + {P6_2, UART_3, CYHAL_PIN_OUT_FUNCTION( P6_2_SCB3_UART_RTS)}, + {P6_6, UART_6, CYHAL_PIN_OUT_FUNCTION( P6_6_SCB6_UART_RTS)}, + {P7_2, UART_4, CYHAL_PIN_OUT_FUNCTION( P7_2_SCB4_UART_RTS)}, + {P8_2, UART_4, CYHAL_PIN_OUT_FUNCTION( P8_2_SCB4_UART_RTS)}, + {P9_2, UART_2, CYHAL_PIN_OUT_FUNCTION( P9_2_SCB2_UART_RTS)}, + {P10_2, UART_1, CYHAL_PIN_OUT_FUNCTION( P10_2_SCB1_UART_RTS)}, + {P11_2, UART_5, CYHAL_PIN_OUT_FUNCTION( P11_2_SCB5_UART_RTS)}, + {P12_2, UART_6, CYHAL_PIN_OUT_FUNCTION( P12_2_SCB6_UART_RTS)}, + {NC, NC, 0} +}; +const PinMap PinMap_UART_CTS[] = { + {P0_5, UART_0, CYHAL_PIN_IN_FUNCTION( P0_5_SCB0_UART_CTS)}, + {P1_3, UART_7, CYHAL_PIN_IN_FUNCTION( P1_3_SCB7_UART_CTS)}, + {P2_3, UART_1, CYHAL_PIN_IN_FUNCTION( P2_3_SCB1_UART_CTS)}, + {P3_3, UART_2, CYHAL_PIN_IN_FUNCTION( P3_3_SCB2_UART_CTS)}, + {P5_3, UART_5, CYHAL_PIN_IN_FUNCTION( P5_3_SCB5_UART_CTS)}, + {P6_3, UART_3, CYHAL_PIN_IN_FUNCTION( P6_3_SCB3_UART_CTS)}, + {P6_7, UART_6, CYHAL_PIN_IN_FUNCTION( P6_7_SCB6_UART_CTS)}, + {P7_3, UART_4, CYHAL_PIN_IN_FUNCTION( P7_3_SCB4_UART_CTS)}, + {P8_3, UART_4, CYHAL_PIN_IN_FUNCTION( P8_3_SCB4_UART_CTS)}, + {P9_3, UART_2, CYHAL_PIN_IN_FUNCTION( P9_3_SCB2_UART_CTS)}, + {P10_3, UART_1, CYHAL_PIN_IN_FUNCTION( P10_3_SCB1_UART_CTS)}, + {P11_3, UART_5, CYHAL_PIN_IN_FUNCTION( P11_3_SCB5_UART_CTS)}, + {P12_3, UART_6, CYHAL_PIN_IN_FUNCTION( P12_3_SCB6_UART_CTS)}, + {NC, NC, 0} +}; +#endif // DEVICE_SERIAL + + +#if DEVICE_I2C +//*** I2C *** +const PinMap PinMap_I2C_SCL[] = { + {P0_2, I2C_0, CYHAL_PIN_OD_FUNCTION( P0_2_SCB0_I2C_SCL)}, + {P1_0, I2C_7, CYHAL_PIN_OD_FUNCTION( P1_0_SCB7_I2C_SCL)}, + {P2_0, I2C_1, CYHAL_PIN_OD_FUNCTION( P2_0_SCB1_I2C_SCL)}, + {P3_0, I2C_2, CYHAL_PIN_OD_FUNCTION( P3_0_SCB2_I2C_SCL)}, + {P4_0, I2C_7, CYHAL_PIN_OD_FUNCTION( P4_0_SCB7_I2C_SCL)}, + {P5_0, I2C_5, CYHAL_PIN_OD_FUNCTION( P5_0_SCB5_I2C_SCL)}, + {P6_0, I2C_3, CYHAL_PIN_OD_FUNCTION( P6_0_SCB3_I2C_SCL)}, + {P6_4, I2C_6, CYHAL_PIN_OD_FUNCTION( P6_4_SCB6_I2C_SCL)}, + {P7_0, I2C_4, CYHAL_PIN_OD_FUNCTION( P7_0_SCB4_I2C_SCL)}, + {P8_0, I2C_4, CYHAL_PIN_OD_FUNCTION( P8_0_SCB4_I2C_SCL)}, + {P9_0, I2C_2, CYHAL_PIN_OD_FUNCTION( P9_0_SCB2_I2C_SCL)}, + {P10_0, I2C_1, CYHAL_PIN_OD_FUNCTION( P10_0_SCB1_I2C_SCL)}, + {P11_0, I2C_5, CYHAL_PIN_OD_FUNCTION( P11_0_SCB5_I2C_SCL)}, + {P12_0, I2C_6, CYHAL_PIN_OD_FUNCTION( P12_0_SCB6_I2C_SCL)}, + {P13_0, I2C_6, CYHAL_PIN_OD_FUNCTION( P13_0_SCB6_I2C_SCL)}, + {NC, NC, 0} +}; +const PinMap PinMap_I2C_SDA[] = { + {P0_3, I2C_0, CYHAL_PIN_OD_FUNCTION( P0_3_SCB0_I2C_SDA)}, + {P1_1, I2C_7, CYHAL_PIN_OD_FUNCTION( P1_1_SCB7_I2C_SDA)}, + {P2_1, I2C_1, CYHAL_PIN_OD_FUNCTION( P2_1_SCB1_I2C_SDA)}, + {P3_1, I2C_2, CYHAL_PIN_OD_FUNCTION( P3_1_SCB2_I2C_SDA)}, + {P4_1, I2C_7, CYHAL_PIN_OD_FUNCTION( P4_1_SCB7_I2C_SDA)}, + {P5_1, I2C_5, CYHAL_PIN_OD_FUNCTION( P5_1_SCB5_I2C_SDA)}, + {P6_1, I2C_3, CYHAL_PIN_OD_FUNCTION( P6_1_SCB3_I2C_SDA)}, + {P6_5, I2C_6, CYHAL_PIN_OD_FUNCTION( P6_5_SCB6_I2C_SDA)}, + {P7_1, I2C_4, CYHAL_PIN_OD_FUNCTION( P7_1_SCB4_I2C_SDA)}, + {P8_1, I2C_4, CYHAL_PIN_OD_FUNCTION( P8_1_SCB4_I2C_SDA)}, + {P9_1, I2C_2, CYHAL_PIN_OD_FUNCTION( P9_1_SCB2_I2C_SDA)}, + {P10_1, I2C_1, CYHAL_PIN_OD_FUNCTION( P10_1_SCB1_I2C_SDA)}, + {P11_1, I2C_5, CYHAL_PIN_OD_FUNCTION( P11_1_SCB5_I2C_SDA)}, + {P12_1, I2C_6, CYHAL_PIN_OD_FUNCTION( P12_1_SCB6_I2C_SDA)}, + {P13_1, I2C_6, CYHAL_PIN_OD_FUNCTION( P13_1_SCB6_I2C_SDA)}, + {NC, NC, 0} +}; +#endif // DEVICE_I2C + +#if DEVICE_SPI +//*** SPI *** +const PinMap PinMap_SPI_MOSI[] = { + {P0_2, SPI_0, CYHAL_PIN_OUT_FUNCTION( P0_2_SCB0_SPI_MOSI)}, + {P1_0, SPI_7, CYHAL_PIN_OUT_FUNCTION( P1_0_SCB7_SPI_MOSI)}, + {P2_0, SPI_1, CYHAL_PIN_OUT_FUNCTION( P2_0_SCB1_SPI_MOSI)}, + {P3_0, SPI_2, CYHAL_PIN_OUT_FUNCTION( P3_0_SCB2_SPI_MOSI)}, + {P4_0, SPI_7, CYHAL_PIN_OUT_FUNCTION( P4_0_SCB7_SPI_MOSI)}, + {P5_0, SPI_5, CYHAL_PIN_OUT_FUNCTION( P5_0_SCB5_SPI_MOSI)}, + {P6_0, SPI_3, CYHAL_PIN_OUT_FUNCTION( P6_0_SCB3_SPI_MOSI)}, + {P6_4, SPI_6, CYHAL_PIN_OUT_FUNCTION( P6_4_SCB6_SPI_MOSI)}, + {P7_0, SPI_4, CYHAL_PIN_OUT_FUNCTION( P7_0_SCB4_SPI_MOSI)}, + {P8_0, SPI_4, CYHAL_PIN_OUT_FUNCTION( P8_0_SCB4_SPI_MOSI)}, + {P9_0, SPI_2, CYHAL_PIN_OUT_FUNCTION( P9_0_SCB2_SPI_MOSI)}, + {P10_0, SPI_1, CYHAL_PIN_OUT_FUNCTION( P10_0_SCB1_SPI_MOSI)}, + {P11_0, SPI_5, CYHAL_PIN_OUT_FUNCTION( P11_0_SCB5_SPI_MOSI)}, + {P12_0, SPI_6, CYHAL_PIN_OUT_FUNCTION( P12_0_SCB6_SPI_MOSI)}, + {P13_0, SPI_6, CYHAL_PIN_OUT_FUNCTION( P13_0_SCB6_SPI_MOSI)}, + {NC, NC, 0} +}; +const PinMap PinMap_SPI_MISO[] = { + {P0_3, SPI_0, CYHAL_PIN_IN_FUNCTION( P0_3_SCB0_SPI_MISO)}, + {P1_1, SPI_7, CYHAL_PIN_IN_FUNCTION( P1_1_SCB7_SPI_MISO)}, + {P2_1, SPI_1, CYHAL_PIN_IN_FUNCTION( P2_1_SCB1_SPI_MISO)}, + {P3_1, SPI_2, CYHAL_PIN_IN_FUNCTION( P3_1_SCB2_SPI_MISO)}, + {P4_1, SPI_7, CYHAL_PIN_IN_FUNCTION( P4_1_SCB7_SPI_MISO)}, + {P5_1, SPI_5, CYHAL_PIN_IN_FUNCTION( P5_1_SCB5_SPI_MISO)}, + {P6_1, SPI_3, CYHAL_PIN_IN_FUNCTION( P6_1_SCB3_SPI_MISO)}, + {P6_5, SPI_6, CYHAL_PIN_IN_FUNCTION( P6_5_SCB6_SPI_MISO)}, + {P7_1, SPI_4, CYHAL_PIN_IN_FUNCTION( P7_1_SCB4_SPI_MISO)}, + {P8_1, SPI_4, CYHAL_PIN_IN_FUNCTION( P8_1_SCB4_SPI_MISO)}, + {P9_1, SPI_2, CYHAL_PIN_IN_FUNCTION( P9_1_SCB2_SPI_MISO)}, + {P10_1, SPI_1, CYHAL_PIN_IN_FUNCTION( P10_1_SCB1_SPI_MISO)}, + {P11_1, SPI_5, CYHAL_PIN_IN_FUNCTION( P11_1_SCB5_SPI_MISO)}, + {P12_1, SPI_6, CYHAL_PIN_IN_FUNCTION( P12_1_SCB6_SPI_MISO)}, + {P13_1, SPI_6, CYHAL_PIN_IN_FUNCTION( P13_1_SCB6_SPI_MISO)}, + {NC, NC, 0} +}; +const PinMap PinMap_SPI_SCLK[] = { + {P0_4, SPI_0, CYHAL_PIN_OUT_FUNCTION( P0_4_SCB0_SPI_CLK)}, + {P1_2, SPI_7, CYHAL_PIN_OUT_FUNCTION( P1_2_SCB7_SPI_CLK)}, + {P2_2, SPI_1, CYHAL_PIN_OUT_FUNCTION( P2_2_SCB1_SPI_CLK)}, + {P3_2, SPI_2, CYHAL_PIN_OUT_FUNCTION( P3_2_SCB2_SPI_CLK)}, + {P5_2, SPI_5, CYHAL_PIN_OUT_FUNCTION( P5_2_SCB5_SPI_CLK)}, + {P6_2, SPI_3, CYHAL_PIN_OUT_FUNCTION( P6_2_SCB3_SPI_CLK)}, + {P6_6, SPI_6, CYHAL_PIN_OUT_FUNCTION( P6_6_SCB6_SPI_CLK)}, + {P7_2, SPI_4, CYHAL_PIN_OUT_FUNCTION( P7_2_SCB4_SPI_CLK)}, + {P8_2, SPI_4, CYHAL_PIN_OUT_FUNCTION( P8_2_SCB4_SPI_CLK)}, + {P9_2, SPI_2, CYHAL_PIN_OUT_FUNCTION( P9_2_SCB2_SPI_CLK)}, + {P10_2, SPI_1, CYHAL_PIN_OUT_FUNCTION( P10_2_SCB1_SPI_CLK)}, + {P11_2, SPI_5, CYHAL_PIN_OUT_FUNCTION( P11_2_SCB5_SPI_CLK)}, + {P12_2, SPI_6, CYHAL_PIN_OUT_FUNCTION( P12_2_SCB6_SPI_CLK)}, + {NC, NC, 0} +}; +const PinMap PinMap_SPI_SSEL[] = { + {P0_5, SPI_0, CYHAL_PIN_OUT_FUNCTION( P0_5_SCB0_SPI_SELECT0)}, + {P1_3, SPI_7, CYHAL_PIN_OUT_FUNCTION( P1_3_SCB7_SPI_SELECT0)}, + {P2_3, SPI_1, CYHAL_PIN_OUT_FUNCTION( P2_3_SCB1_SPI_SELECT0)}, + {P3_3, SPI_2, CYHAL_PIN_OUT_FUNCTION( P3_3_SCB2_SPI_SELECT0)}, + {P5_3, SPI_5, CYHAL_PIN_OUT_FUNCTION( P5_3_SCB5_SPI_SELECT0)}, + {P6_3, SPI_3, CYHAL_PIN_OUT_FUNCTION( P6_3_SCB3_SPI_SELECT0)}, + {P6_7, SPI_6, CYHAL_PIN_OUT_FUNCTION( P6_7_SCB6_SPI_SELECT0)}, + {P7_3, SPI_4, CYHAL_PIN_OUT_FUNCTION( P7_3_SCB4_SPI_SELECT0)}, + {P8_3, SPI_4, CYHAL_PIN_OUT_FUNCTION( P8_3_SCB4_SPI_SELECT0)}, + {P9_3, SPI_2, CYHAL_PIN_OUT_FUNCTION( P9_3_SCB2_SPI_SELECT0)}, + {P10_3, SPI_1, CYHAL_PIN_OUT_FUNCTION( P10_3_SCB1_SPI_SELECT0)}, + {P11_3, SPI_5, CYHAL_PIN_OUT_FUNCTION( P11_3_SCB5_SPI_SELECT0)}, + {P12_3, SPI_6, CYHAL_PIN_OUT_FUNCTION( P12_3_SCB6_SPI_SELECT0)}, + {NC, NC, 0} +}; +#endif // DEVICE_SPI + +#if DEVICE_PWMOUT +//*** PWM *** +const PinMap PinMap_PWM_OUT[] = { + // 16-bit PWM outputs + {P0_0, PWM_16b_0, CYHAL_PIN_OUT_FUNCTION(P0_0_TCPWM1_LINE0)}, + {P0_2, PWM_16b_1, CYHAL_PIN_OUT_FUNCTION(P0_2_TCPWM1_LINE1)}, + {P0_4, PWM_16b_2, CYHAL_PIN_OUT_FUNCTION(P0_4_TCPWM1_LINE2)}, + {P1_0, PWM_16b_3, CYHAL_PIN_OUT_FUNCTION(P1_0_TCPWM1_LINE3)}, + {P1_2, PWM_16b_12, CYHAL_PIN_OUT_FUNCTION(P1_2_TCPWM1_LINE12)}, + {P1_4, PWM_16b_13, CYHAL_PIN_OUT_FUNCTION(P1_4_TCPWM1_LINE13)}, + {P2_0, PWM_16b_15, CYHAL_PIN_OUT_FUNCTION(P2_0_TCPWM1_LINE15)}, + {P2_2, PWM_16b_16, CYHAL_PIN_OUT_FUNCTION(P2_2_TCPWM1_LINE16)}, + {P2_4, PWM_16b_17, CYHAL_PIN_OUT_FUNCTION(P2_4_TCPWM1_LINE17)}, + {P2_6, PWM_16b_18, CYHAL_PIN_OUT_FUNCTION(P2_6_TCPWM1_LINE18)}, + {P3_0, PWM_16b_19, CYHAL_PIN_OUT_FUNCTION(P3_0_TCPWM1_LINE19)}, + {P3_2, PWM_16b_20, CYHAL_PIN_OUT_FUNCTION(P3_2_TCPWM1_LINE20)}, + {P3_4, PWM_16b_21, CYHAL_PIN_OUT_FUNCTION(P3_4_TCPWM1_LINE21)}, + {P4_0, PWM_16b_22, CYHAL_PIN_OUT_FUNCTION(P4_0_TCPWM1_LINE22)}, + {P5_0, PWM_16b_4, CYHAL_PIN_OUT_FUNCTION(P5_0_TCPWM1_LINE4)}, + {P5_2, PWM_16b_5, CYHAL_PIN_OUT_FUNCTION(P5_2_TCPWM1_LINE5)}, + {P5_4, PWM_16b_6, CYHAL_PIN_OUT_FUNCTION(P5_4_TCPWM1_LINE6)}, + {P5_6, PWM_16b_7, CYHAL_PIN_OUT_FUNCTION(P5_6_TCPWM1_LINE7)}, + {P6_0, PWM_16b_8, CYHAL_PIN_OUT_FUNCTION(P6_0_TCPWM1_LINE8)}, + {P6_2, PWM_16b_9, CYHAL_PIN_OUT_FUNCTION(P6_2_TCPWM1_LINE9)}, + {P6_4, PWM_16b_10, CYHAL_PIN_OUT_FUNCTION(P6_4_TCPWM1_LINE10)}, + {P6_6, PWM_16b_11, CYHAL_PIN_OUT_FUNCTION(P6_6_TCPWM1_LINE11)}, + {P7_0, PWM_16b_12, CYHAL_PIN_OUT_FUNCTION(P7_0_TCPWM1_LINE12)}, + {P7_2, PWM_16b_13, CYHAL_PIN_OUT_FUNCTION(P7_2_TCPWM1_LINE13)}, + {P7_4, PWM_16b_14, CYHAL_PIN_OUT_FUNCTION(P7_4_TCPWM1_LINE14)}, + {P7_6, PWM_16b_15, CYHAL_PIN_OUT_FUNCTION(P7_6_TCPWM1_LINE15)}, + {P8_0, PWM_16b_16, CYHAL_PIN_OUT_FUNCTION(P8_0_TCPWM1_LINE16)}, + {P8_2, PWM_16b_17, CYHAL_PIN_OUT_FUNCTION(P8_2_TCPWM1_LINE17)}, + {P8_4, PWM_16b_18, CYHAL_PIN_OUT_FUNCTION(P8_4_TCPWM1_LINE18)}, + {P8_6, PWM_16b_19, CYHAL_PIN_OUT_FUNCTION(P8_6_TCPWM1_LINE19)}, + {P9_0, PWM_16b_20, CYHAL_PIN_OUT_FUNCTION(P9_0_TCPWM1_LINE20)}, + {P9_2, PWM_16b_21, CYHAL_PIN_OUT_FUNCTION(P9_2_TCPWM1_LINE21)}, + {P9_4, PWM_16b_0, CYHAL_PIN_OUT_FUNCTION(P9_4_TCPWM1_LINE0)}, + {P9_6, PWM_16b_1, CYHAL_PIN_OUT_FUNCTION(P9_6_TCPWM1_LINE1)}, + {P10_0, PWM_16b_22, CYHAL_PIN_OUT_FUNCTION(P10_0_TCPWM1_LINE22)}, + {P10_2, PWM_16b_23, CYHAL_PIN_OUT_FUNCTION(P10_2_TCPWM1_LINE23)}, + {P10_4, PWM_16b_0, CYHAL_PIN_OUT_FUNCTION(P10_4_TCPWM1_LINE0)}, + {P10_6, PWM_16b_2, CYHAL_PIN_OUT_FUNCTION(P10_6_TCPWM1_LINE2)}, + {P11_0, PWM_16b_1, CYHAL_PIN_OUT_FUNCTION(P11_0_TCPWM1_LINE1)}, + {P11_2, PWM_16b_2, CYHAL_PIN_OUT_FUNCTION(P11_2_TCPWM1_LINE2)}, + {P11_4, PWM_16b_3, CYHAL_PIN_OUT_FUNCTION(P11_4_TCPWM1_LINE3)}, + {P12_0, PWM_16b_4, CYHAL_PIN_OUT_FUNCTION(P12_0_TCPWM1_LINE4)}, + {P12_2, PWM_16b_5, CYHAL_PIN_OUT_FUNCTION(P12_2_TCPWM1_LINE5)}, + {P12_4, PWM_16b_6, CYHAL_PIN_OUT_FUNCTION(P12_4_TCPWM1_LINE6)}, + {P12_6, PWM_16b_7, CYHAL_PIN_OUT_FUNCTION(P12_6_TCPWM1_LINE7)}, + {P13_0, PWM_16b_8, CYHAL_PIN_OUT_FUNCTION(P13_0_TCPWM1_LINE8)}, + {P13_2, PWM_16b_9, CYHAL_PIN_OUT_FUNCTION(P13_2_TCPWM1_LINE9)}, + {P13_4, PWM_16b_10, CYHAL_PIN_OUT_FUNCTION(P13_4_TCPWM1_LINE10)}, + {P13_6, PWM_16b_11, CYHAL_PIN_OUT_FUNCTION(P13_6_TCPWM1_LINE11)}, + // 16-bit PWM inverted outputs + {P0_1, PWM_16b_0, CYHAL_PIN_OUT_FUNCTION(P0_1_TCPWM1_LINE_COMPL0)}, + {P0_3, PWM_16b_1, CYHAL_PIN_OUT_FUNCTION(P0_3_TCPWM1_LINE_COMPL1)}, + {P0_5, PWM_16b_2, CYHAL_PIN_OUT_FUNCTION(P0_5_TCPWM1_LINE_COMPL2)}, + {P1_1, PWM_16b_3, CYHAL_PIN_OUT_FUNCTION(P1_1_TCPWM1_LINE_COMPL3)}, + {P1_3, PWM_16b_12, CYHAL_PIN_OUT_FUNCTION(P1_3_TCPWM1_LINE_COMPL12)}, + {P1_5, PWM_16b_14, CYHAL_PIN_OUT_FUNCTION(P1_5_TCPWM1_LINE_COMPL14)}, + {P2_1, PWM_16b_15, CYHAL_PIN_OUT_FUNCTION(P2_1_TCPWM1_LINE_COMPL15)}, + {P2_3, PWM_16b_16, CYHAL_PIN_OUT_FUNCTION(P2_3_TCPWM1_LINE_COMPL16)}, + {P2_5, PWM_16b_17, CYHAL_PIN_OUT_FUNCTION(P2_5_TCPWM1_LINE_COMPL17)}, + {P2_7, PWM_16b_18, CYHAL_PIN_OUT_FUNCTION(P2_7_TCPWM1_LINE_COMPL18)}, + {P3_1, PWM_16b_19, CYHAL_PIN_OUT_FUNCTION(P3_1_TCPWM1_LINE_COMPL19)}, + {P3_3, PWM_16b_20, CYHAL_PIN_OUT_FUNCTION(P3_3_TCPWM1_LINE_COMPL20)}, + {P3_5, PWM_16b_21, CYHAL_PIN_OUT_FUNCTION(P3_5_TCPWM1_LINE_COMPL21)}, + {P4_1, PWM_16b_22, CYHAL_PIN_OUT_FUNCTION(P4_1_TCPWM1_LINE_COMPL22)}, + {P5_1, PWM_16b_4, CYHAL_PIN_OUT_FUNCTION(P5_1_TCPWM1_LINE_COMPL4)}, + {P5_3, PWM_16b_5, CYHAL_PIN_OUT_FUNCTION(P5_3_TCPWM1_LINE_COMPL5)}, + {P5_5, PWM_16b_6, CYHAL_PIN_OUT_FUNCTION(P5_5_TCPWM1_LINE_COMPL6)}, + {P5_7, PWM_16b_7, CYHAL_PIN_OUT_FUNCTION(P5_7_TCPWM1_LINE_COMPL7)}, + {P6_1, PWM_16b_8, CYHAL_PIN_OUT_FUNCTION(P6_1_TCPWM1_LINE_COMPL8)}, + {P6_3, PWM_16b_9, CYHAL_PIN_OUT_FUNCTION(P6_3_TCPWM1_LINE_COMPL9)}, + {P6_5, PWM_16b_10, CYHAL_PIN_OUT_FUNCTION(P6_5_TCPWM1_LINE_COMPL10)}, + {P6_7, PWM_16b_11, CYHAL_PIN_OUT_FUNCTION(P6_7_TCPWM1_LINE_COMPL11)}, + {P7_1, PWM_16b_12, CYHAL_PIN_OUT_FUNCTION(P7_1_TCPWM1_LINE_COMPL12)}, + {P7_3, PWM_16b_13, CYHAL_PIN_OUT_FUNCTION(P7_3_TCPWM1_LINE_COMPL13)}, + {P7_5, PWM_16b_14, CYHAL_PIN_OUT_FUNCTION(P7_5_TCPWM1_LINE_COMPL14)}, + {P7_7, PWM_16b_15, CYHAL_PIN_OUT_FUNCTION(P7_7_TCPWM1_LINE_COMPL15)}, + {P8_1, PWM_16b_16, CYHAL_PIN_OUT_FUNCTION(P8_1_TCPWM1_LINE_COMPL16)}, + {P8_3, PWM_16b_17, CYHAL_PIN_OUT_FUNCTION(P8_3_TCPWM1_LINE_COMPL17)}, + {P8_5, PWM_16b_18, CYHAL_PIN_OUT_FUNCTION(P8_5_TCPWM1_LINE_COMPL18)}, + {P8_7, PWM_16b_19, CYHAL_PIN_OUT_FUNCTION(P8_7_TCPWM1_LINE_COMPL19)}, + {P9_1, PWM_16b_20, CYHAL_PIN_OUT_FUNCTION(P9_1_TCPWM1_LINE_COMPL20)}, + {P9_3, PWM_16b_21, CYHAL_PIN_OUT_FUNCTION(P9_3_TCPWM1_LINE_COMPL21)}, + {P9_5, PWM_16b_0, CYHAL_PIN_OUT_FUNCTION(P9_5_TCPWM1_LINE_COMPL0)}, + {P9_7, PWM_16b_1, CYHAL_PIN_OUT_FUNCTION(P9_7_TCPWM1_LINE_COMPL1)}, + {P10_1, PWM_16b_22, CYHAL_PIN_OUT_FUNCTION(P10_1_TCPWM1_LINE_COMPL22)}, + {P10_3, PWM_16b_23, CYHAL_PIN_OUT_FUNCTION(P10_3_TCPWM1_LINE_COMPL23)}, + {P10_5, PWM_16b_0, CYHAL_PIN_OUT_FUNCTION(P10_5_TCPWM1_LINE_COMPL0)}, + {P10_7, PWM_16b_2, CYHAL_PIN_OUT_FUNCTION(P10_7_TCPWM1_LINE_COMPL2)}, + {P11_1, PWM_16b_1, CYHAL_PIN_OUT_FUNCTION(P11_1_TCPWM1_LINE_COMPL1)}, + {P11_3, PWM_16b_2, CYHAL_PIN_OUT_FUNCTION(P11_3_TCPWM1_LINE_COMPL2)}, + {P11_5, PWM_16b_3, CYHAL_PIN_OUT_FUNCTION(P11_5_TCPWM1_LINE_COMPL3)}, + {P12_1, PWM_16b_4, CYHAL_PIN_OUT_FUNCTION(P12_1_TCPWM1_LINE_COMPL4)}, + {P12_3, PWM_16b_5, CYHAL_PIN_OUT_FUNCTION(P12_3_TCPWM1_LINE_COMPL5)}, + {P12_5, PWM_16b_6, CYHAL_PIN_OUT_FUNCTION(P12_5_TCPWM1_LINE_COMPL6)}, + {P12_7, PWM_16b_7, CYHAL_PIN_OUT_FUNCTION(P12_7_TCPWM1_LINE_COMPL7)}, + {P13_1, PWM_16b_8, CYHAL_PIN_OUT_FUNCTION(P13_1_TCPWM1_LINE_COMPL8)}, + {P13_3, PWM_16b_9, CYHAL_PIN_OUT_FUNCTION(P13_3_TCPWM1_LINE_COMPL9)}, + {P13_5, PWM_16b_10, CYHAL_PIN_OUT_FUNCTION(P13_5_TCPWM1_LINE_COMPL10)}, + {P13_7, PWM_16b_11, CYHAL_PIN_OUT_FUNCTION(P13_7_TCPWM1_LINE_COMPL11)}, + // 32-bit PWM outputs + {P0_0, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P0_0_TCPWM0_LINE0)}, + {P0_2, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P0_2_TCPWM0_LINE1)}, + {P0_4, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P0_4_TCPWM0_LINE2)}, + {P1_0, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P1_0_TCPWM0_LINE3)}, + {P1_2, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P1_2_TCPWM0_LINE4)}, + {P1_4, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P1_4_TCPWM0_LINE5)}, + {P2_0, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P2_0_TCPWM0_LINE6)}, + {P2_2, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P2_2_TCPWM0_LINE7)}, + {P2_4, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P2_4_TCPWM0_LINE0)}, + {P2_6, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P2_6_TCPWM0_LINE1)}, + {P3_0, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P3_0_TCPWM0_LINE2)}, + {P3_2, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P3_2_TCPWM0_LINE3)}, + {P3_4, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P3_4_TCPWM0_LINE4)}, + {P4_0, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P4_0_TCPWM0_LINE5)}, + {P5_0, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P5_0_TCPWM0_LINE4)}, + {P5_2, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P5_2_TCPWM0_LINE5)}, + {P5_4, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P5_4_TCPWM0_LINE6)}, + {P5_6, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P5_6_TCPWM0_LINE7)}, + {P6_0, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P6_0_TCPWM0_LINE0)}, + {P6_2, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P6_2_TCPWM0_LINE1)}, + {P6_4, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P6_4_TCPWM0_LINE2)}, + {P6_6, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P6_6_TCPWM0_LINE3)}, + {P7_0, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P7_0_TCPWM0_LINE4)}, + {P7_2, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P7_2_TCPWM0_LINE5)}, + {P7_4, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P7_4_TCPWM0_LINE6)}, + {P7_6, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P7_6_TCPWM0_LINE7)}, + {P8_0, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P8_0_TCPWM0_LINE0)}, + {P8_2, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P8_2_TCPWM0_LINE1)}, + {P8_4, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P8_4_TCPWM0_LINE2)}, + {P8_6, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P8_6_TCPWM0_LINE3)}, + {P9_0, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P9_0_TCPWM0_LINE4)}, + {P9_2, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P9_2_TCPWM0_LINE5)}, + {P9_4, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P9_4_TCPWM0_LINE7)}, + {P9_6, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P9_6_TCPWM0_LINE0)}, + {P10_0, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P10_0_TCPWM0_LINE6)}, + {P10_2, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P10_2_TCPWM0_LINE7)}, + {P10_4, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P10_4_TCPWM0_LINE0)}, + {P10_6, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P10_6_TCPWM0_LINE1)}, + {P11_0, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P11_0_TCPWM0_LINE1)}, + {P11_2, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P11_2_TCPWM0_LINE2)}, + {P11_4, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P11_4_TCPWM0_LINE3)}, + {P12_0, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P12_0_TCPWM0_LINE4)}, + {P12_2, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P12_2_TCPWM0_LINE5)}, + {P12_4, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P12_4_TCPWM0_LINE6)}, + {P12_6, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P12_6_TCPWM0_LINE7)}, + {P13_0, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P13_0_TCPWM0_LINE0)}, + {P13_2, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P13_2_TCPWM0_LINE1)}, + {P13_4, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P13_4_TCPWM0_LINE2)}, + {P13_6, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P13_6_TCPWM0_LINE3)}, + // 32-bit PWM inverted outputs + {P0_1, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P0_1_TCPWM0_LINE_COMPL0)}, + {P0_3, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P0_3_TCPWM0_LINE_COMPL1)}, + {P0_5, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P0_5_TCPWM0_LINE_COMPL2)}, + {P1_1, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P1_1_TCPWM0_LINE_COMPL3)}, + {P1_3, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P1_3_TCPWM0_LINE_COMPL4)}, + {P1_5, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P1_5_TCPWM0_LINE_COMPL5)}, + {P2_1, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P2_1_TCPWM0_LINE_COMPL6)}, + {P2_3, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P2_3_TCPWM0_LINE_COMPL7)}, + {P2_5, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P2_5_TCPWM0_LINE_COMPL0)}, + {P2_7, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P2_7_TCPWM0_LINE_COMPL1)}, + {P3_1, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P3_1_TCPWM0_LINE_COMPL2)}, + {P3_3, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P3_3_TCPWM0_LINE_COMPL3)}, + {P3_5, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P3_5_TCPWM0_LINE_COMPL4)}, + {P4_1, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P4_1_TCPWM0_LINE_COMPL5)}, + {P5_1, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P5_1_TCPWM0_LINE_COMPL4)}, + {P5_3, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P5_3_TCPWM0_LINE_COMPL5)}, + {P5_5, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P5_5_TCPWM0_LINE_COMPL6)}, + {P5_7, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P5_7_TCPWM0_LINE_COMPL7)}, + {P6_1, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P6_1_TCPWM0_LINE_COMPL0)}, + {P6_3, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P6_3_TCPWM0_LINE_COMPL1)}, + {P6_5, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P6_5_TCPWM0_LINE_COMPL2)}, + {P6_7, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P6_7_TCPWM0_LINE_COMPL3)}, + {P7_1, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P7_1_TCPWM0_LINE_COMPL4)}, + {P7_3, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P7_3_TCPWM0_LINE_COMPL5)}, + {P7_5, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P7_5_TCPWM0_LINE_COMPL6)}, + {P7_7, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P7_7_TCPWM0_LINE_COMPL7)}, + {P8_1, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P8_1_TCPWM0_LINE_COMPL0)}, + {P8_3, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P8_3_TCPWM0_LINE_COMPL1)}, + {P8_5, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P8_5_TCPWM0_LINE_COMPL2)}, + {P8_7, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P8_7_TCPWM0_LINE_COMPL3)}, + {P9_1, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P9_1_TCPWM0_LINE_COMPL4)}, + {P9_3, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P9_3_TCPWM0_LINE_COMPL5)}, + {P9_5, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P9_5_TCPWM0_LINE_COMPL7)}, + {P9_7, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P9_7_TCPWM0_LINE_COMPL0)}, + {P10_1, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P10_1_TCPWM0_LINE_COMPL6)}, + {P10_3, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P10_3_TCPWM0_LINE_COMPL7)}, + {P10_5, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P10_5_TCPWM0_LINE_COMPL0)}, + {P10_7, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P10_7_TCPWM0_LINE_COMPL1)}, + {P11_1, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P11_1_TCPWM0_LINE_COMPL1)}, + {P11_3, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P11_3_TCPWM0_LINE_COMPL2)}, + {P11_5, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P11_5_TCPWM0_LINE_COMPL3)}, + {P12_1, PWM_32b_4, CYHAL_PIN_OUT_FUNCTION(P12_1_TCPWM0_LINE_COMPL4)}, + {P12_3, PWM_32b_5, CYHAL_PIN_OUT_FUNCTION(P12_3_TCPWM0_LINE_COMPL5)}, + {P12_5, PWM_32b_6, CYHAL_PIN_OUT_FUNCTION(P12_5_TCPWM0_LINE_COMPL6)}, + {P12_7, PWM_32b_7, CYHAL_PIN_OUT_FUNCTION(P12_7_TCPWM0_LINE_COMPL7)}, + {P13_1, PWM_32b_0, CYHAL_PIN_OUT_FUNCTION(P13_1_TCPWM0_LINE_COMPL0)}, + {P13_3, PWM_32b_1, CYHAL_PIN_OUT_FUNCTION(P13_3_TCPWM0_LINE_COMPL1)}, + {P13_5, PWM_32b_2, CYHAL_PIN_OUT_FUNCTION(P13_5_TCPWM0_LINE_COMPL2)}, + {P13_7, PWM_32b_3, CYHAL_PIN_OUT_FUNCTION(P13_7_TCPWM0_LINE_COMPL3)}, + {NC, NC, 0} +}; +#endif // DEVICE_PWMOUT + +#if DEVICE_ANALOGIN +const PinMap PinMap_ADC[] = { + {P10_0, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {P10_1, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {P10_2, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {P10_3, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {P10_4, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {P10_5, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {P10_6, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {P10_7, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {NC, NC, 0} +}; +#endif // DEVICE_ANALOGIN + +#if DEVICE_ANALOGOUT +const PinMap PinMap_DAC[] = { + {P9_6, DAC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_CTDAC)}, + {P10_5, DAC_0, CY_GPIO_CFG_CREATE(HSIOM_SEL_AMUXA, CY_GPIO_DM_ANALOG)}, // CTDAC connects to the P10_5 pin through the AMUXA bus + {NC, NC, 0} +}; +#endif // DEVICE_ANALOGIN + +#if DEVICE_QSPI +const PinMap PinMap_QSPI_SCLK[] = { // does not use PERI clock, uses HFCLK2 + {P11_7, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_7_SMIF_SPI_CLK, 0)}, + {NC, NC, 0} +}; + +// Ensure that the spi_data pins are defined in the order 0 to 7 +const PinMap PinMap_QSPI_DATA[] = { // does not use PERI clock, uses HFCLK2 + {P11_6, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_6_SMIF_SPI_DATA0, 0)}, // spi_data0 + {P11_5, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_5_SMIF_SPI_DATA1, 0)}, // spi_data1 + {P11_4, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_4_SMIF_SPI_DATA2, 0)}, // spi_data2 + {P11_3, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_3_SMIF_SPI_DATA3, 0)}, // spi_data3 + {P12_0, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_0_SMIF_SPI_DATA4, 0)}, // spi_data4 + {P12_1, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_1_SMIF_SPI_DATA5, 0)}, // spi_data5 + {P12_2, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_2_SMIF_SPI_DATA6, 0)}, // spi_data6 + {P12_3, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_3_SMIF_SPI_DATA7, 0)}, // spi_data7 + {NC, NC, 0} +}; + +// Ensure that the spi_select pins are defined in the order 0 to 3 +const PinMap PinMap_QSPI_SSEL[] = { // does not use PERI clock, uses HFCLK2 + {P11_2, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_2_SMIF_SPI_SELECT0, 0)}, // spi_select0 + {P11_1, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_1_SMIF_SPI_SELECT1, 0)}, // spi_select1 + {P11_0, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_0_SMIF_SPI_SELECT2, 0)}, // spi_select2 + {P12_4, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_4_SMIF_SPI_SELECT3, 0)}, // spi_select3 + {NC, NC, 0} +}; +#endif // DEVICE_QSPI diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PinNames.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PinNames.h new file mode 100644 index 00000000000..faacf57baf1 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PinNames.h @@ -0,0 +1,135 @@ +/* + * mbed Microcontroller Library + * Copyright (c) 2017-2018 Future Electronics + * Copyright (c) 2019 Cypress Semiconductor Corporation + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef MBED_PINNAMES_H +#define MBED_PINNAMES_H + +#include "cmsis.h" +#include "PinNamesTypes.h" +#include "PortNames.h" +#include "cyhal_pin_package.h" +#include "cyhal_utils.h" + +typedef cyhal_gpio_t PinName; + +// Arduino connector namings +#define A0 P10_0 +#define A1 P10_1 +#define A2 P10_2 +#define A3 P10_3 +#define A4 P10_4 +#define A5 P10_5 + +#define D0 P5_0 +#define D1 P5_1 +#define D2 P5_2 +#define D3 P5_3 +#define D4 P5_4 +#define D5 P5_5 +#define D6 P5_6 +#define D7 P0_2 +#define D8 P13_0 +#define D9 P13_1 +#define D10 P12_3 +#define D11 P12_0 +#define D12 P12_1 +#define D13 P12_2 +#define D14 P6_1 +#define D15 P6_0 + + // Generic signal names + +#define I2C_SCL P6_0 +#define I2C_SDA P6_1 + +#define SPI_MOSI P12_0 +#define SPI_MISO P12_1 +#define SPI_CLK P12_2 +#define SPI_CS P12_4 + +#define UART_RX P5_0 +#define UART_TX P5_1 +#define UART_RTS P5_2 +#define UART_CTS P5_3 + + // Reset pin unavailable + + +#define SWITCH2 P0_4 +#define LED1 P13_7 +#define LED2 P1_5 + +#define LED_RED LED1 +#define LED_GREEN LED2 + +#define USER_BUTTON SWITCH2 +#define BUTTON1 USER_BUTTON + +#define QSPI_CLK P11_7 +#define QSPI_IO_0 P11_6 +#define QSPI_IO_1 P11_5 +#define QSPI_IO_2 P11_4 +#define QSPI_IO_3 P11_3 +#define QSPI_SEL P11_2 + + // Standardized interfaces names +#define STDIO_UART_TX UART_TX +#define STDIO_UART_RX UART_RX +#define STDIO_UART_CTS UART_CTS +#define STDIO_UART_RTS UART_RTS + +#define CY_STDIO_UART_RX STDIO_UART_RX +#define CY_STDIO_UART_TX STDIO_UART_TX +#define CY_STDIO_UART_CTS STDIO_UART_CTS +#define CY_STDIO_UART_RTS STDIO_UART_RTS + +#define CY_BT_UART_RX BT_UART_RX +#define CY_BT_UART_TX BT_UART_TX +#define CY_BT_UART_CTS BT_UART_CTS +#define CY_BT_UART_RTS BT_UART_RTS + +#define CY_BT_PIN_POWER BT_PIN_POWER +#define CY_BT_PIN_HOST_WAKE BT_PIN_HOST_WAKE +#define CY_BT_PIN_DEVICE_WAKE BT_PIN_DEVICE_WAKE + + +#define USBTX UART_TX +#define USBRX UART_RX + +#define AOUT P9_6 + +// PinName[15-0] = Port[15-8] + Pin[4-0] +static inline unsigned CY_PIN(PinName pin) +{ + return pin & 0x07; +} + +static inline unsigned CY_PORT(PinName pin) +{ + return (pin >> 8) & 0xFF; +} + +// Because MBED pin mapping API does not allow to map multiple instances of the PWM +// to be mapped to the same pin, we create special pin names to force 32-bit PWM unit +// usage instead of standard 16-bit PWM. + +#define PWM32(pin) CY_PIN_FORCE_PWM_32(pin) + + +#endif diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.c new file mode 100644 index 00000000000..179bcc28cad --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.c @@ -0,0 +1,54 @@ +/***************************************************************************//** +* \file cybsp_cy8cproto_064_sb.c +* +* Description: +* Provides APIs for interacting with the hardware contained on the Cypress +* CY8CPROTO-064-SB pioneer kit. +* +******************************************************************************** +* \copyright +* Copyright 2018-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*******************************************************************************/ + +//#include "cybsp_retarget.h" +#include "cybsp_cy8cproto_064_sb.h" +#include "cycfg.h" + +#if defined(__cplusplus) +extern "C" { +#endif + +cy_rslt_t cybsp_init(void) +{ + init_cycfg_system(); + cy_rslt_t result = cybsp_led_init(CYBSP_USER_LED1); + result |= cybsp_led_init(CYBSP_USER_LED2); + result |= cybsp_btn_init(CYBSP_USER_BTN1); + +#if defined(CYBSP_RETARGET_ENABLED) + /* Initialize retargetting stdio to 'DEBUG_UART' peripheral */ + if (CY_RSLT_SUCCESS == result) + { + result = cybsp_retarget_init(); + } +#endif + + return result; +} + +#if defined(__cplusplus) +} +#endif diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.h new file mode 100644 index 00000000000..626a5fb73f9 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.h @@ -0,0 +1,74 @@ +/***************************************************************************//** +* \file cybsp_cy8cproto_064_sb.h +* +* Description: +* Provides APIs for interacting with the hardware contained on the Cypress +* CY8CPROTO-064-SB pioneer kit. +* +******************************************************************************** +* \copyright +* Copyright 2018-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*******************************************************************************/ + +/** +* \addtogroup group_bsp_cy8cproto_064_sb CY8CPROTO-064-SB +* \ingroup group_bsp +* \{ +* CY8CPROTO-064-SB PSoC 64 SecureBoot Prototyping Kit is a low-cost Prototyping +* Kit based on PSoC 64 SecureBoot MCU to enable customers to prototype and +* design with the PSoC 64 SecureBoot device. +* +*
Kit Features:
+* +* +*
Kit Contents:
+* +* +* \defgroup group_bsp_cy8cproto_064_sb_macros Macros +* \defgroup group_bsp_cy8cproto_064_sb_functions Functions +* \defgroup group_bsp_cy8cproto_064_sb_enums Enumerated Types +*/ + +#pragma once + +#include +#include +#include "cybsp_api_core.h" +#include "cybsp_types.h" + +#if defined(__cplusplus) +extern "C" { +#endif + +/** \cond INTERNAL */ + +// TODO: add BSP pin mappings + +/** \endcond */ + +#if defined(__cplusplus) +} +#endif + +/** \} group_bsp_cy8cproto_064_sb */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_types.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_types.h new file mode 100644 index 00000000000..553088655f8 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_types.h @@ -0,0 +1,157 @@ +/***************************************************************************//** +* \file CY8CPROTO-064-SB/cybsp_types.h +* +* Description: +* Provides APIs for interacting with the hardware contained on the Cypress +* CY8CPROTO-064-SB kit. +* +******************************************************************************** +* \copyright +* Copyright 2018-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*******************************************************************************/ + +/** +* \addtogroup group_bsp_cy8cproto_064_sb CY8CPROTO-064-SB +* \ingroup group_bsp +* \{ +* \defgroup group_bsp_cy8cproto_064_sb_macros Macros +* \defgroup group_bsp_cy8cproto_064_sb_enums Enumerated Types +*/ + +#pragma once + +#include "cyhal.h" + +#if defined(__cplusplus) +extern "C" { +#endif + +/** +* \addtogroup group_bsp_cy8cproto_064_sb_macros +* \{ +*/ + +/* Board components mapping */ +/** Pin: LED3 in the CY8CPROTO-064-SB board */ +#define CYBSP_LED3 P13_7 +/** Pin: LED4 in the CY8CPROTO-064-SB board */ +#define CYBSP_LED4 P1_5 +/** Pin: SW2 in the CY8CPROTO-064-SB board */ +#define CYBSP_SW2 P0_4 + +/* Board peripheral count */ +/** Macro: Number of LEDs on CY8CPROTO-064-SB board */ +#define CYBSP_LED_COUNT 2 +/** Macro: Number of buttons on CY8CPROTO-064-SB board */ +#define CYBSP_BTN_COUNT 1 + +/* Generic signal names */ +/** Pin: WCO input */ +#define CYBSP_WCO_IN P0_0 +/** Pin: WCO output */ +#define CYBSP_WCO_OUT P0_1 + +/** Pin: ECO input */ +#define CYBSP_ECO_IN P12_6 +/** Pin: ECO output */ +#define CYBSP_ECO_OUT P12_7 + +/** Pin: UART RX */ +#define CYBSP_UART_RX P5_0 +/** Pin: UART TX */ +#define CYBSP_UART_TX P5_1 + +/** Pin: UART RX */ +#define CYBSP_DEBUG_UART_RX P5_0 +/** Pin: UART TX */ +#define CYBSP_DEBUG_UART_TX P5_1 + +/** Pin: I2C SCL */ +#define CYBSP_I2C_SCL P6_0 +/** Pin: I2C SDA */ +#define CYBSP_I2C_SDA P6_1 + +/** Pin: SWDIO */ +#define CYBSP_SWDIO P6_6 +/** Pin: SWDCK */ +#define CYBSP_SWDCK P6_7 +/** Pin: SWO */ +#define CYBSP_SWO P6_4 + +/** Pin: QUAD SPI SS */ +#define CYBSP_QSPI_SS P11_2 +/** Pin: QUAD SPI D3 */ +#define CYBSP_QSPI_D3 P11_3 +/** Pin: QUAD SPI D2 */ +#define CYBSP_QSPI_D2 P11_4 +/** Pin: QUAD SPI D1 */ +#define CYBSP_QSPI_D1 P11_5 +/** Pin: QUAD SPI D0 */ +#define CYBSP_QSPI_D0 P11_6 +/** Pin: QUAD SPI SCK */ +#define CYBSP_QSPI_SCK P11_7 + +/** Pin: USB Device D+ */ +#define CYBSP_USB_DP P14_0 +/** Pin: USB Device D- */ +#define CYBSP_USB_DM P14_1 + +/** \} group_bsp_cy8cproto_064_sb_macros */ + +/** +* \addtogroup group_bsp_cy8cproto_064_sb_enums +* \{ +*/ + +/** Enum defining the different states for the LED. */ +typedef enum +{ + CYBSP_LED_STATE_ON = 0, + CYBSP_LED_STATE_OFF = 1, +} cybsp_led_state_t; + +/** Enum defining the different states for a button. */ +typedef enum +{ + CYBSP_BTN_PRESSED = 0, + CYBSP_BTN_OFF = 1, +} cybsp_btn_state_t; + +/** Enum defining the different LED pins on the board. */ +typedef enum +{ + CYBSP_LED_RED = CYBSP_LED3, + CYBSP_LED_GREEN = CYBSP_LED4, + + CYBSP_USER_LED = CYBSP_LED_RED, + CYBSP_USER_LED1 = CYBSP_LED_RED, + CYBSP_USER_LED2 = CYBSP_LED_GREEN, +} cybsp_led_t; + +/** Enum defining the different button pins on the board. */ +typedef enum +{ + CYBSP_USER_BTN = CYBSP_SW2, + CYBSP_USER_BTN1 = CYBSP_SW2, +} cybsp_btn_t; + +/** \} group_bsp_cy8cproto_064_sb_enums */ + +#if defined(__cplusplus) +} +#endif + +/** \} group_bsp_cy8cproto_064_sb */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cycfg_qspi_memslot.cyqspi b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cycfg_qspi_memslot.cyqspi new file mode 100644 index 00000000000..3b668965d30 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cycfg_qspi_memslot.cyqspi @@ -0,0 +1,63 @@ + + + + PSoC 6.xml + + + 0 + S25FL128S + false + None + 0x18000000 + 0x10000 + 0x1800FFFF + true + false + QUAD_SPI_DATA_0_3 + S25FL128S + false + + + 1 + Not used + false + None + 0x18010000 + 0x10000 + 0x1801FFFF + false + false + SPI_MOSI_MISO_DATA_0_1 + default_memory.xml + false + + + 2 + Not used + false + None + 0x18020000 + 0x10000 + 0x1802FFFF + false + false + SPI_MOSI_MISO_DATA_0_1 + default_memory.xml + false + + + 3 + Not used + false + None + 0x18030000 + 0x10000 + 0x1803FFFF + false + false + SPI_MOSI_MISO_DATA_0_1 + default_memory.xml + false + + + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/design.modus b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/design.modus new file mode 100644 index 00000000000..8efc4fa4c1e --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/design.modus @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct new file mode 100644 index 00000000000..6d3b172fedd --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct @@ -0,0 +1,314 @@ +#! armclang -E --target=arm-arm-none-eabi -x c -mcpu=cortex-m4 +; The first line specifies a preprocessor command that the linker invokes +; to pass a scatter file through a C preprocessor. + +;******************************************************************************* +;* \file cyb06xx7_cm4_dual.sct +;* \version 2.50 +;* +;* Linker file for the ARMCC. +;* +;* The main purpose of the linker script is to describe how the sections in the +;* input files should be mapped into the output file, and to control the memory +;* layout of the output file. +;* +;* \note The entry point location is fixed and starts at 0x10000000. The valid +;* application image should be placed there. +;* +;* \note The linker files included with the PDL template projects must be +;* generic and handle all common use cases. Your project may not use every +;* section defined in the linker files. In that case you may see the warnings +;* during the build process: L6314W (no section matches pattern) and/or L6329W +;* (pattern only matches removed unused sections). In your project, you can +;* suppress the warning by passing the "--diag_suppress=L6314W,L6329W" option to +;* the linker, simply comment out or remove the relevant code in the linker +;* file. +;* +;******************************************************************************* +;* \copyright +;* Copyright 2016-2019 Cypress Semiconductor Corporation +;* SPDX-License-Identifier: Apache-2.0 +;* +;* Licensed under the Apache License, Version 2.0 (the "License"); +;* you may not use this file except in compliance with the License. +;* You may obtain a copy of the License at +;* +;* http://www.apache.org/licenses/LICENSE-2.0 +;* +;* Unless required by applicable law or agreed to in writing, software +;* distributed under the License is distributed on an "AS IS" BASIS, +;* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;* See the License for the specific language governing permissions and +;* limitations under the License. +;******************************************************************************/ + +#if !defined(MBED_ROM_START) + #define MBED_ROM_START 0x10000400 +#endif + +;* MBED_APP_START is being used by the bootloader build script and +;* will be calculate by the system. Without bootloader the MBED_APP_START +;* is equal to MBED_ROM_START +;* +#if !defined(MBED_APP_START) + #define MBED_APP_START MBED_ROM_START +#endif + +#if !defined(MBED_ROM_SIZE) + #define MBED_ROM_SIZE 0x000CFC00 +#endif + +;* MBED_APP_SIZE is being used by the bootloader build script and +;* will be calculate by the system. Without bootloader the MBED_APP_SIZE +;* is equal to MBED_ROM_SIZE +;* +#if !defined(MBED_APP_SIZE) + #define MBED_APP_SIZE MBED_ROM_SIZE +#endif + +#if !defined(MBED_RAM_START) + #define MBED_RAM_START 0x08002000 +#endif + +#if !defined(MBED_RAM_SIZE) + #define MBED_RAM_SIZE 0x0001E000 +#endif + +#if !defined(MBED_BOOT_STACK_SIZE) + #define MBED_BOOT_STACK_SIZE 0x400 +#endif + +#define STACK_SIZE MBED_BOOT_STACK_SIZE + +; The defines below describe the location and size of blocks of memory in the target. +; Use these defines to specify the memory regions available for allocation. + +; The following defines control RAM and flash memory allocation for the CM4 core. +; You can change the memory allocation by editing RAM and Flash defines. +; Note that 2 KB of RAM (at the end of the SRAM) are reserved for system use. +; Using this memory region for other purposes will lead to unexpected behavior. +; Your changes must be aligned with the corresponding defines for CM0+ core in 'xx_cm0plus.scat', +; where 'xx' is the device group; for example, 'cy8c6xx7_cm0plus.scat'. +; RAM +#define RAM_START MBED_RAM_START +#define RAM_SIZE MBED_RAM_SIZE +; Flash +#define FLASH_START MBED_APP_START +#define FLASH_SIZE MBED_APP_SIZE + +; The following defines describe a 32K flash region used for EEPROM emulation. +; This region can also be used as the general purpose flash. +; You can assign sections to this memory region for only one of the cores. +; Note some middleware (e.g. BLE, Emulated EEPROM) can place their data into this memory region. +; Therefore, repurposing this memory region will prevent such middleware from operation. +#define EM_EEPROM_START 0x14000000 +#define EM_EEPROM_SIZE 0x8000 + +; The following defines describe device specific memory regions and must not be changed. +; Supervisory flash: User data +#define SFLASH_USER_DATA_START 0x16000800 +#define SFLASH_USER_DATA_SIZE 0x00000800 + +; Supervisory flash: Normal Access Restrictions (NAR) +#define SFLASH_NAR_START 0x16001A00 +#define SFLASH_NAR_SIZE 0x00000200 + +; Supervisory flash: Public Key +#define SFLASH_PUBLIC_KEY_START 0x16005A00 +#define SFLASH_PUBLIC_KEY_SIZE 0x00000C00 + +; Supervisory flash: Table of Content # 2 +#define SFLASH_TOC_2_START 0x16007C00 +#define SFLASH_TOC_2_SIZE 0x00000200 + +; Supervisory flash: Table of Content # 2 Copy +#define SFLASH_RTOC_2_START 0x16007E00 +#define SFLASH_RTOC_2_SIZE 0x00000200 + +; External memory +#define XIP_START 0x18000000 +#define XIP_SIZE 0x08000000 + +; eFuse +#define EFUSE_START 0x90700000 +#define EFUSE_SIZE 0x100000 + +; Size and start address of the Cortex-M0+ application image +#define FLASH_CM0P_SIZE 0x40000 +#define FLASH_CM0P_START (FLASH_START + FLASH_SIZE - FLASH_CM0P_SIZE) + +; Size and start address of the Cortex-M4 application image +#define FLASH_CM4_SIZE (FLASH_SIZE - FLASH_CM0P_SIZE) +#define FLASH_CM4_START FLASH_START + + +; Cortex-M0+ application image +LR_IROM FLASH_CM0P_START FLASH_CM0P_SIZE +{ + .cy_m0p_image +0 FLASH_CM0P_SIZE + { + * (.cy_m0p_image) + } +} + +; Cortex-M4 application image +LR_IROM1 FLASH_CM4_START FLASH_CM4_SIZE +{ + ER_FLASH_VECTORS +0 + { + * (RESET, +FIRST) + } + + ER_FLASH_CODE +0 FIXED + { + * (InRoot$$Sections) + * (+RO) + } + + ER_RAM_VECTORS RAM_START UNINIT + { + * (RESET_RAM, +FIRST) + } + + RW_RAM_DATA +0 + { + * (.cy_ramfunc) + .ANY (+RW, +ZI) + } + + ; Place variables in the section that should not be initialized during the + ; device startup. + RW_IRAM1 +0 UNINIT + { + * (.noinit) + } + + ; Application heap area (HEAP) + ARM_LIB_HEAP +0 EMPTY ((RAM_START+RAM_SIZE)-AlignExpr(ImageLimit(RW_IRAM1), 8)-STACK_SIZE) + { + } + + ; Stack region growing down + ARM_LIB_STACK (RAM_START+RAM_SIZE) EMPTY -STACK_SIZE + { + } + + ; Used for the digital signature of the secure application and the + ; Bootloader SDK application. The size of the section depends on the required + ; data size. + .cy_app_signature (FLASH_START + FLASH_SIZE - 256) 256 + { + * (.cy_app_signature) + } +} + + +; Emulated EEPROM Flash area +LR_EM_EEPROM EM_EEPROM_START EM_EEPROM_SIZE +{ + .cy_em_eeprom +0 + { + * (.cy_em_eeprom) + } +} + +; Supervisory flash: User data +LR_SFLASH_USER_DATA SFLASH_USER_DATA_START SFLASH_USER_DATA_SIZE +{ + .cy_sflash_user_data +0 + { + * (.cy_sflash_user_data) + } +} + +; Supervisory flash: Normal Access Restrictions (NAR) +LR_SFLASH_NAR SFLASH_NAR_START SFLASH_NAR_SIZE +{ + .cy_sflash_nar +0 + { + * (.cy_sflash_nar) + } +} + +; Supervisory flash: Public Key +LR_SFLASH_PUBLIC_KEY SFLASH_PUBLIC_KEY_START SFLASH_PUBLIC_KEY_SIZE +{ + .cy_sflash_public_key +0 + { + * (.cy_sflash_public_key) + } +} + +; Supervisory flash: Table of Content # 2 +LR_SFLASH_TOC_2 SFLASH_TOC_2_START SFLASH_TOC_2_SIZE +{ + .cy_toc_part2 +0 + { + * (.cy_toc_part2) + } +} + +; Supervisory flash: Table of Content # 2 Copy +LR_SFLASH_RTOC_2 SFLASH_RTOC_2_START SFLASH_RTOC_2_SIZE +{ + .cy_rtoc_part2 +0 + { + * (.cy_rtoc_part2) + } +} + + +; Places the code in the Execute in Place (XIP) section. See the smif driver documentation for details. +LR_EROM XIP_START XIP_SIZE +{ + .cy_xip +0 + { + * (.cy_xip) + } +} + + +; eFuse +LR_EFUSE EFUSE_START EFUSE_SIZE +{ + .cy_efuse +0 + { + * (.cy_efuse) + } +} + + +; The section is used for additional metadata (silicon revision, Silicon/JTAG ID, etc.) storage. +CYMETA 0x90500000 +{ + .cymeta +0 { * (.cymeta) } +} + +/* The following symbols used by the cymcuelftool. */ +/* Flash */ +#define __cy_memory_0_start 0x10000000 +#define __cy_memory_0_length 0x00100000 +#define __cy_memory_0_row_size 0x200 + +/* Emulated EEPROM Flash area */ +#define __cy_memory_1_start 0x14000000 +#define __cy_memory_1_length 0x8000 +#define __cy_memory_1_row_size 0x200 + +/* Supervisory Flash */ +#define __cy_memory_2_start 0x16000000 +#define __cy_memory_2_length 0x8000 +#define __cy_memory_2_row_size 0x200 + +/* XIP */ +#define __cy_memory_3_start 0x18000000 +#define __cy_memory_3_length 0x08000000 +#define __cy_memory_3_row_size 0x200 + +/* eFuse */ +#define __cy_memory_4_start 0x90700000 +#define __cy_memory_4_length 0x100000 +#define __cy_memory_4_row_size 1 + + +/* [] END OF FILE */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S new file mode 100644 index 00000000000..023ea2184dc --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S @@ -0,0 +1,643 @@ +;/**************************************************************************//** +; * @file startup_psoc6_01_cm4.S +; * @brief CMSIS Core Device Startup File for +; * ARMCM4 Device Series +; * @version V5.00 +; * @date 02. March 2016 +; ******************************************************************************/ +;/* +; * Copyright (c) 2009-2016 ARM Limited. All rights reserved. +; * +; * SPDX-License-Identifier: Apache-2.0 +; * +; * Licensed under the Apache License, Version 2.0 (the License); you may +; * not use this file except in compliance with the License. +; * You may obtain a copy of the License at +; * +; * www.apache.org/licenses/LICENSE-2.0 +; * +; * Unless required by applicable law or agreed to in writing, software +; * distributed under the License is distributed on an AS IS BASIS, WITHOUT +; * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +; * See the License for the specific language governing permissions and +; * limitations under the License. +; */ + + PRESERVE8 + THUMB + +; Vector Table Mapped to Address 0 at Reset + + AREA RESET, DATA, READONLY + EXPORT __Vectors + EXPORT __Vectors_End + EXPORT __Vectors_Size + + IMPORT |Image$$ARM_LIB_STACK$$Base| +__Vectors DCD |Image$$ARM_LIB_STACK$$Base| ; Top of Stack + + DCD Reset_Handler ; Reset Handler + + DCD 0x0000000D ; NMI Handler located at ROM code + DCD HardFault_Handler ; Hard Fault Handler + DCD MemManage_Handler ; MPU Fault Handler + DCD BusFault_Handler ; Bus Fault Handler + DCD UsageFault_Handler ; Usage Fault Handler + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD SVC_Handler ; SVCall Handler + DCD DebugMon_Handler ; Debug Monitor Handler + DCD 0 ; Reserved + DCD PendSV_Handler ; PendSV Handler + DCD SysTick_Handler ; SysTick Handler + + ; External interrupts Description + DCD ioss_interrupts_gpio_0_IRQHandler ; GPIO Port Interrupt #0 + DCD ioss_interrupts_gpio_1_IRQHandler ; GPIO Port Interrupt #1 + DCD ioss_interrupts_gpio_2_IRQHandler ; GPIO Port Interrupt #2 + DCD ioss_interrupts_gpio_3_IRQHandler ; GPIO Port Interrupt #3 + DCD ioss_interrupts_gpio_4_IRQHandler ; GPIO Port Interrupt #4 + DCD ioss_interrupts_gpio_5_IRQHandler ; GPIO Port Interrupt #5 + DCD ioss_interrupts_gpio_6_IRQHandler ; GPIO Port Interrupt #6 + DCD ioss_interrupts_gpio_7_IRQHandler ; GPIO Port Interrupt #7 + DCD ioss_interrupts_gpio_8_IRQHandler ; GPIO Port Interrupt #8 + DCD ioss_interrupts_gpio_9_IRQHandler ; GPIO Port Interrupt #9 + DCD ioss_interrupts_gpio_10_IRQHandler ; GPIO Port Interrupt #10 + DCD ioss_interrupts_gpio_11_IRQHandler ; GPIO Port Interrupt #11 + DCD ioss_interrupts_gpio_12_IRQHandler ; GPIO Port Interrupt #12 + DCD ioss_interrupts_gpio_13_IRQHandler ; GPIO Port Interrupt #13 + DCD ioss_interrupts_gpio_14_IRQHandler ; GPIO Port Interrupt #14 + DCD ioss_interrupt_gpio_IRQHandler ; GPIO All Ports + DCD ioss_interrupt_vdd_IRQHandler ; GPIO Supply Detect Interrupt + DCD lpcomp_interrupt_IRQHandler ; Low Power Comparator Interrupt + DCD scb_8_interrupt_IRQHandler ; Serial Communication Block #8 (DeepSleep capable) + DCD srss_interrupt_mcwdt_0_IRQHandler ; Multi Counter Watchdog Timer interrupt + DCD srss_interrupt_mcwdt_1_IRQHandler ; Multi Counter Watchdog Timer interrupt + DCD srss_interrupt_backup_IRQHandler ; Backup domain interrupt + DCD srss_interrupt_IRQHandler ; Other combined Interrupts for SRSS (LVD, WDT, CLKCAL) + DCD pass_interrupt_ctbs_IRQHandler ; CTBm Interrupt (all CTBms) + DCD bless_interrupt_IRQHandler ; Bluetooth Radio interrupt + DCD cpuss_interrupts_ipc_0_IRQHandler ; CPUSS Inter Process Communication Interrupt #0 + DCD cpuss_interrupts_ipc_1_IRQHandler ; CPUSS Inter Process Communication Interrupt #1 + DCD cpuss_interrupts_ipc_2_IRQHandler ; CPUSS Inter Process Communication Interrupt #2 + DCD cpuss_interrupts_ipc_3_IRQHandler ; CPUSS Inter Process Communication Interrupt #3 + DCD cpuss_interrupts_ipc_4_IRQHandler ; CPUSS Inter Process Communication Interrupt #4 + DCD cpuss_interrupts_ipc_5_IRQHandler ; CPUSS Inter Process Communication Interrupt #5 + DCD cpuss_interrupts_ipc_6_IRQHandler ; CPUSS Inter Process Communication Interrupt #6 + DCD cpuss_interrupts_ipc_7_IRQHandler ; CPUSS Inter Process Communication Interrupt #7 + DCD cpuss_interrupts_ipc_8_IRQHandler ; CPUSS Inter Process Communication Interrupt #8 + DCD cpuss_interrupts_ipc_9_IRQHandler ; CPUSS Inter Process Communication Interrupt #9 + DCD cpuss_interrupts_ipc_10_IRQHandler ; CPUSS Inter Process Communication Interrupt #10 + DCD cpuss_interrupts_ipc_11_IRQHandler ; CPUSS Inter Process Communication Interrupt #11 + DCD cpuss_interrupts_ipc_12_IRQHandler ; CPUSS Inter Process Communication Interrupt #12 + DCD cpuss_interrupts_ipc_13_IRQHandler ; CPUSS Inter Process Communication Interrupt #13 + DCD cpuss_interrupts_ipc_14_IRQHandler ; CPUSS Inter Process Communication Interrupt #14 + DCD cpuss_interrupts_ipc_15_IRQHandler ; CPUSS Inter Process Communication Interrupt #15 + DCD scb_0_interrupt_IRQHandler ; Serial Communication Block #0 + DCD scb_1_interrupt_IRQHandler ; Serial Communication Block #1 + DCD scb_2_interrupt_IRQHandler ; Serial Communication Block #2 + DCD scb_3_interrupt_IRQHandler ; Serial Communication Block #3 + DCD scb_4_interrupt_IRQHandler ; Serial Communication Block #4 + DCD scb_5_interrupt_IRQHandler ; Serial Communication Block #5 + DCD scb_6_interrupt_IRQHandler ; Serial Communication Block #6 + DCD scb_7_interrupt_IRQHandler ; Serial Communication Block #7 + DCD csd_interrupt_IRQHandler ; CSD (Capsense) interrupt + DCD cpuss_interrupts_dw0_0_IRQHandler ; CPUSS DataWire #0, Channel #0 + DCD cpuss_interrupts_dw0_1_IRQHandler ; CPUSS DataWire #0, Channel #1 + DCD cpuss_interrupts_dw0_2_IRQHandler ; CPUSS DataWire #0, Channel #2 + DCD cpuss_interrupts_dw0_3_IRQHandler ; CPUSS DataWire #0, Channel #3 + DCD cpuss_interrupts_dw0_4_IRQHandler ; CPUSS DataWire #0, Channel #4 + DCD cpuss_interrupts_dw0_5_IRQHandler ; CPUSS DataWire #0, Channel #5 + DCD cpuss_interrupts_dw0_6_IRQHandler ; CPUSS DataWire #0, Channel #6 + DCD cpuss_interrupts_dw0_7_IRQHandler ; CPUSS DataWire #0, Channel #7 + DCD cpuss_interrupts_dw0_8_IRQHandler ; CPUSS DataWire #0, Channel #8 + DCD cpuss_interrupts_dw0_9_IRQHandler ; CPUSS DataWire #0, Channel #9 + DCD cpuss_interrupts_dw0_10_IRQHandler ; CPUSS DataWire #0, Channel #10 + DCD cpuss_interrupts_dw0_11_IRQHandler ; CPUSS DataWire #0, Channel #11 + DCD cpuss_interrupts_dw0_12_IRQHandler ; CPUSS DataWire #0, Channel #12 + DCD cpuss_interrupts_dw0_13_IRQHandler ; CPUSS DataWire #0, Channel #13 + DCD cpuss_interrupts_dw0_14_IRQHandler ; CPUSS DataWire #0, Channel #14 + DCD cpuss_interrupts_dw0_15_IRQHandler ; CPUSS DataWire #0, Channel #15 + DCD cpuss_interrupts_dw1_0_IRQHandler ; CPUSS DataWire #1, Channel #0 + DCD cpuss_interrupts_dw1_1_IRQHandler ; CPUSS DataWire #1, Channel #1 + DCD cpuss_interrupts_dw1_2_IRQHandler ; CPUSS DataWire #1, Channel #2 + DCD cpuss_interrupts_dw1_3_IRQHandler ; CPUSS DataWire #1, Channel #3 + DCD cpuss_interrupts_dw1_4_IRQHandler ; CPUSS DataWire #1, Channel #4 + DCD cpuss_interrupts_dw1_5_IRQHandler ; CPUSS DataWire #1, Channel #5 + DCD cpuss_interrupts_dw1_6_IRQHandler ; CPUSS DataWire #1, Channel #6 + DCD cpuss_interrupts_dw1_7_IRQHandler ; CPUSS DataWire #1, Channel #7 + DCD cpuss_interrupts_dw1_8_IRQHandler ; CPUSS DataWire #1, Channel #8 + DCD cpuss_interrupts_dw1_9_IRQHandler ; CPUSS DataWire #1, Channel #9 + DCD cpuss_interrupts_dw1_10_IRQHandler ; CPUSS DataWire #1, Channel #10 + DCD cpuss_interrupts_dw1_11_IRQHandler ; CPUSS DataWire #1, Channel #11 + DCD cpuss_interrupts_dw1_12_IRQHandler ; CPUSS DataWire #1, Channel #12 + DCD cpuss_interrupts_dw1_13_IRQHandler ; CPUSS DataWire #1, Channel #13 + DCD cpuss_interrupts_dw1_14_IRQHandler ; CPUSS DataWire #1, Channel #14 + DCD cpuss_interrupts_dw1_15_IRQHandler ; CPUSS DataWire #1, Channel #15 + DCD cpuss_interrupts_fault_0_IRQHandler ; CPUSS Fault Structure Interrupt #0 + DCD cpuss_interrupts_fault_1_IRQHandler ; CPUSS Fault Structure Interrupt #1 + DCD cpuss_interrupt_crypto_IRQHandler ; CRYPTO Accelerator Interrupt + DCD cpuss_interrupt_fm_IRQHandler ; FLASH Macro Interrupt + DCD cpuss_interrupts_cm0_cti_0_IRQHandler ; CM0+ CTI #0 + DCD cpuss_interrupts_cm0_cti_1_IRQHandler ; CM0+ CTI #1 + DCD cpuss_interrupts_cm4_cti_0_IRQHandler ; CM4 CTI #0 + DCD cpuss_interrupts_cm4_cti_1_IRQHandler ; CM4 CTI #1 + DCD tcpwm_0_interrupts_0_IRQHandler ; TCPWM #0, Counter #0 + DCD tcpwm_0_interrupts_1_IRQHandler ; TCPWM #0, Counter #1 + DCD tcpwm_0_interrupts_2_IRQHandler ; TCPWM #0, Counter #2 + DCD tcpwm_0_interrupts_3_IRQHandler ; TCPWM #0, Counter #3 + DCD tcpwm_0_interrupts_4_IRQHandler ; TCPWM #0, Counter #4 + DCD tcpwm_0_interrupts_5_IRQHandler ; TCPWM #0, Counter #5 + DCD tcpwm_0_interrupts_6_IRQHandler ; TCPWM #0, Counter #6 + DCD tcpwm_0_interrupts_7_IRQHandler ; TCPWM #0, Counter #7 + DCD tcpwm_1_interrupts_0_IRQHandler ; TCPWM #1, Counter #0 + DCD tcpwm_1_interrupts_1_IRQHandler ; TCPWM #1, Counter #1 + DCD tcpwm_1_interrupts_2_IRQHandler ; TCPWM #1, Counter #2 + DCD tcpwm_1_interrupts_3_IRQHandler ; TCPWM #1, Counter #3 + DCD tcpwm_1_interrupts_4_IRQHandler ; TCPWM #1, Counter #4 + DCD tcpwm_1_interrupts_5_IRQHandler ; TCPWM #1, Counter #5 + DCD tcpwm_1_interrupts_6_IRQHandler ; TCPWM #1, Counter #6 + DCD tcpwm_1_interrupts_7_IRQHandler ; TCPWM #1, Counter #7 + DCD tcpwm_1_interrupts_8_IRQHandler ; TCPWM #1, Counter #8 + DCD tcpwm_1_interrupts_9_IRQHandler ; TCPWM #1, Counter #9 + DCD tcpwm_1_interrupts_10_IRQHandler ; TCPWM #1, Counter #10 + DCD tcpwm_1_interrupts_11_IRQHandler ; TCPWM #1, Counter #11 + DCD tcpwm_1_interrupts_12_IRQHandler ; TCPWM #1, Counter #12 + DCD tcpwm_1_interrupts_13_IRQHandler ; TCPWM #1, Counter #13 + DCD tcpwm_1_interrupts_14_IRQHandler ; TCPWM #1, Counter #14 + DCD tcpwm_1_interrupts_15_IRQHandler ; TCPWM #1, Counter #15 + DCD tcpwm_1_interrupts_16_IRQHandler ; TCPWM #1, Counter #16 + DCD tcpwm_1_interrupts_17_IRQHandler ; TCPWM #1, Counter #17 + DCD tcpwm_1_interrupts_18_IRQHandler ; TCPWM #1, Counter #18 + DCD tcpwm_1_interrupts_19_IRQHandler ; TCPWM #1, Counter #19 + DCD tcpwm_1_interrupts_20_IRQHandler ; TCPWM #1, Counter #20 + DCD tcpwm_1_interrupts_21_IRQHandler ; TCPWM #1, Counter #21 + DCD tcpwm_1_interrupts_22_IRQHandler ; TCPWM #1, Counter #22 + DCD tcpwm_1_interrupts_23_IRQHandler ; TCPWM #1, Counter #23 + DCD udb_interrupts_0_IRQHandler ; UDB Interrupt #0 + DCD udb_interrupts_1_IRQHandler ; UDB Interrupt #1 + DCD udb_interrupts_2_IRQHandler ; UDB Interrupt #2 + DCD udb_interrupts_3_IRQHandler ; UDB Interrupt #3 + DCD udb_interrupts_4_IRQHandler ; UDB Interrupt #4 + DCD udb_interrupts_5_IRQHandler ; UDB Interrupt #5 + DCD udb_interrupts_6_IRQHandler ; UDB Interrupt #6 + DCD udb_interrupts_7_IRQHandler ; UDB Interrupt #7 + DCD udb_interrupts_8_IRQHandler ; UDB Interrupt #8 + DCD udb_interrupts_9_IRQHandler ; UDB Interrupt #9 + DCD udb_interrupts_10_IRQHandler ; UDB Interrupt #10 + DCD udb_interrupts_11_IRQHandler ; UDB Interrupt #11 + DCD udb_interrupts_12_IRQHandler ; UDB Interrupt #12 + DCD udb_interrupts_13_IRQHandler ; UDB Interrupt #13 + DCD udb_interrupts_14_IRQHandler ; UDB Interrupt #14 + DCD udb_interrupts_15_IRQHandler ; UDB Interrupt #15 + DCD pass_interrupt_sar_IRQHandler ; SAR ADC interrupt + DCD audioss_interrupt_i2s_IRQHandler ; I2S Audio interrupt + DCD audioss_interrupt_pdm_IRQHandler ; PDM/PCM Audio interrupt + DCD profile_interrupt_IRQHandler ; Energy Profiler interrupt + DCD smif_interrupt_IRQHandler ; Serial Memory Interface interrupt + DCD usb_interrupt_hi_IRQHandler ; USB Interrupt + DCD usb_interrupt_med_IRQHandler ; USB Interrupt + DCD usb_interrupt_lo_IRQHandler ; USB Interrupt + DCD pass_interrupt_dacs_IRQHandler ; Consolidated interrrupt for all DACs + +__Vectors_End + +__Vectors_Size EQU __Vectors_End - __Vectors + EXPORT __ramVectors + AREA RESET_RAM, READWRITE, NOINIT +__ramVectors SPACE __Vectors_Size + + + AREA |.text|, CODE, READONLY + + +; Weak function for startup customization +; +; Note. The global resources are not yet initialized (for example global variables, peripherals, clocks) +; because this function is executed as the first instruction in the ResetHandler. +; The PDL is also not initialized to use the proper register offsets. +; The user of this function is responsible for initializing the PDL and resources before using them. +; +Cy_OnResetUser PROC + EXPORT Cy_OnResetUser [WEAK] + BX LR + ENDP + +; Reset Handler +Reset_Handler PROC + EXPORT Reset_Handler [WEAK] + IMPORT Cy_SystemInitFpuEnable + IMPORT __main + + ; Define strong function for startup customization + BL Cy_OnResetUser + + ; Disable global interrupts + CPSID I + + ; Copy vectors from ROM to RAM + LDR r1, =__Vectors + LDR r0, =__ramVectors + LDR r2, =__Vectors_Size +Vectors_Copy + LDR r3, [r1] + STR r3, [r0] + ADDS r0, r0, #4 + ADDS r1, r1, #4 + SUBS r2, r2, #1 + CMP r2, #0 + BNE Vectors_Copy + + ; Update Vector Table Offset Register. */ + LDR r0, =__ramVectors + LDR r1, =0xE000ED08 + STR r0, [r1] + dsb 0xF + + ; Enable the FPU if used + LDR R0, =Cy_SystemInitFpuEnable + BLX R0 + + LDR R0, =__main + BLX R0 + + ; Should never get here + B . + + ENDP + +; Dummy Exception Handlers (infinite loops which can be modified) +NMI_Handler PROC + EXPORT NMI_Handler [WEAK] + B . + ENDP + +Cy_SysLib_FaultHandler PROC + EXPORT Cy_SysLib_FaultHandler [WEAK] + B . + ENDP +HardFault_Wrapper\ + PROC + EXPORT HardFault_Wrapper [WEAK] + movs r0, #4 + mov r1, LR + tst r0, r1 + beq L_MSP + mrs r0, PSP + bl L_API_call +L_MSP + mrs r0, MSP +L_API_call + bl Cy_SysLib_FaultHandler + ENDP +HardFault_Handler\ + PROC + EXPORT HardFault_Handler [WEAK] + B HardFault_Wrapper + ENDP +MemManage_Handler\ + PROC + EXPORT MemManage_Handler [WEAK] + B HardFault_Wrapper + ENDP +BusFault_Handler\ + PROC + EXPORT BusFault_Handler [WEAK] + B HardFault_Wrapper + ENDP +UsageFault_Handler\ + PROC + EXPORT UsageFault_Handler [WEAK] + B HardFault_Wrapper + ENDP +SVC_Handler PROC + EXPORT SVC_Handler [WEAK] + B . + ENDP +DebugMon_Handler\ + PROC + EXPORT DebugMon_Handler [WEAK] + B . + ENDP +PendSV_Handler PROC + EXPORT PendSV_Handler [WEAK] + B . + ENDP +SysTick_Handler PROC + EXPORT SysTick_Handler [WEAK] + B . + ENDP + +Default_Handler PROC + EXPORT Default_Handler [WEAK] + EXPORT ioss_interrupts_gpio_0_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_1_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_2_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_3_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_4_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_5_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_6_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_7_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_8_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_9_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_10_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_11_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_12_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_13_IRQHandler [WEAK] + EXPORT ioss_interrupts_gpio_14_IRQHandler [WEAK] + EXPORT ioss_interrupt_gpio_IRQHandler [WEAK] + EXPORT ioss_interrupt_vdd_IRQHandler [WEAK] + EXPORT lpcomp_interrupt_IRQHandler [WEAK] + EXPORT scb_8_interrupt_IRQHandler [WEAK] + EXPORT srss_interrupt_mcwdt_0_IRQHandler [WEAK] + EXPORT srss_interrupt_mcwdt_1_IRQHandler [WEAK] + EXPORT srss_interrupt_backup_IRQHandler [WEAK] + EXPORT srss_interrupt_IRQHandler [WEAK] + EXPORT pass_interrupt_ctbs_IRQHandler [WEAK] + EXPORT bless_interrupt_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_0_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_1_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_2_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_3_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_4_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_5_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_6_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_7_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_8_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_9_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_10_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_11_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_12_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_13_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_14_IRQHandler [WEAK] + EXPORT cpuss_interrupts_ipc_15_IRQHandler [WEAK] + EXPORT scb_0_interrupt_IRQHandler [WEAK] + EXPORT scb_1_interrupt_IRQHandler [WEAK] + EXPORT scb_2_interrupt_IRQHandler [WEAK] + EXPORT scb_3_interrupt_IRQHandler [WEAK] + EXPORT scb_4_interrupt_IRQHandler [WEAK] + EXPORT scb_5_interrupt_IRQHandler [WEAK] + EXPORT scb_6_interrupt_IRQHandler [WEAK] + EXPORT scb_7_interrupt_IRQHandler [WEAK] + EXPORT csd_interrupt_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_0_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_1_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_2_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_3_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_4_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_5_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_6_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_7_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_8_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_9_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_10_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_11_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_12_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_13_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_14_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw0_15_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_0_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_1_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_2_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_3_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_4_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_5_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_6_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_7_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_8_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_9_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_10_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_11_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_12_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_13_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_14_IRQHandler [WEAK] + EXPORT cpuss_interrupts_dw1_15_IRQHandler [WEAK] + EXPORT cpuss_interrupts_fault_0_IRQHandler [WEAK] + EXPORT cpuss_interrupts_fault_1_IRQHandler [WEAK] + EXPORT cpuss_interrupt_crypto_IRQHandler [WEAK] + EXPORT cpuss_interrupt_fm_IRQHandler [WEAK] + EXPORT cpuss_interrupts_cm0_cti_0_IRQHandler [WEAK] + EXPORT cpuss_interrupts_cm0_cti_1_IRQHandler [WEAK] + EXPORT cpuss_interrupts_cm4_cti_0_IRQHandler [WEAK] + EXPORT cpuss_interrupts_cm4_cti_1_IRQHandler [WEAK] + EXPORT tcpwm_0_interrupts_0_IRQHandler [WEAK] + EXPORT tcpwm_0_interrupts_1_IRQHandler [WEAK] + EXPORT tcpwm_0_interrupts_2_IRQHandler [WEAK] + EXPORT tcpwm_0_interrupts_3_IRQHandler [WEAK] + EXPORT tcpwm_0_interrupts_4_IRQHandler [WEAK] + EXPORT tcpwm_0_interrupts_5_IRQHandler [WEAK] + EXPORT tcpwm_0_interrupts_6_IRQHandler [WEAK] + EXPORT tcpwm_0_interrupts_7_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_0_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_1_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_2_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_3_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_4_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_5_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_6_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_7_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_8_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_9_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_10_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_11_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_12_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_13_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_14_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_15_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_16_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_17_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_18_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_19_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_20_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_21_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_22_IRQHandler [WEAK] + EXPORT tcpwm_1_interrupts_23_IRQHandler [WEAK] + EXPORT udb_interrupts_0_IRQHandler [WEAK] + EXPORT udb_interrupts_1_IRQHandler [WEAK] + EXPORT udb_interrupts_2_IRQHandler [WEAK] + EXPORT udb_interrupts_3_IRQHandler [WEAK] + EXPORT udb_interrupts_4_IRQHandler [WEAK] + EXPORT udb_interrupts_5_IRQHandler [WEAK] + EXPORT udb_interrupts_6_IRQHandler [WEAK] + EXPORT udb_interrupts_7_IRQHandler [WEAK] + EXPORT udb_interrupts_8_IRQHandler [WEAK] + EXPORT udb_interrupts_9_IRQHandler [WEAK] + EXPORT udb_interrupts_10_IRQHandler [WEAK] + EXPORT udb_interrupts_11_IRQHandler [WEAK] + EXPORT udb_interrupts_12_IRQHandler [WEAK] + EXPORT udb_interrupts_13_IRQHandler [WEAK] + EXPORT udb_interrupts_14_IRQHandler [WEAK] + EXPORT udb_interrupts_15_IRQHandler [WEAK] + EXPORT pass_interrupt_sar_IRQHandler [WEAK] + EXPORT audioss_interrupt_i2s_IRQHandler [WEAK] + EXPORT audioss_interrupt_pdm_IRQHandler [WEAK] + EXPORT profile_interrupt_IRQHandler [WEAK] + EXPORT smif_interrupt_IRQHandler [WEAK] + EXPORT usb_interrupt_hi_IRQHandler [WEAK] + EXPORT usb_interrupt_med_IRQHandler [WEAK] + EXPORT usb_interrupt_lo_IRQHandler [WEAK] + EXPORT pass_interrupt_dacs_IRQHandler [WEAK] + +ioss_interrupts_gpio_0_IRQHandler +ioss_interrupts_gpio_1_IRQHandler +ioss_interrupts_gpio_2_IRQHandler +ioss_interrupts_gpio_3_IRQHandler +ioss_interrupts_gpio_4_IRQHandler +ioss_interrupts_gpio_5_IRQHandler +ioss_interrupts_gpio_6_IRQHandler +ioss_interrupts_gpio_7_IRQHandler +ioss_interrupts_gpio_8_IRQHandler +ioss_interrupts_gpio_9_IRQHandler +ioss_interrupts_gpio_10_IRQHandler +ioss_interrupts_gpio_11_IRQHandler +ioss_interrupts_gpio_12_IRQHandler +ioss_interrupts_gpio_13_IRQHandler +ioss_interrupts_gpio_14_IRQHandler +ioss_interrupt_gpio_IRQHandler +ioss_interrupt_vdd_IRQHandler +lpcomp_interrupt_IRQHandler +scb_8_interrupt_IRQHandler +srss_interrupt_mcwdt_0_IRQHandler +srss_interrupt_mcwdt_1_IRQHandler +srss_interrupt_backup_IRQHandler +srss_interrupt_IRQHandler +pass_interrupt_ctbs_IRQHandler +bless_interrupt_IRQHandler +cpuss_interrupts_ipc_0_IRQHandler +cpuss_interrupts_ipc_1_IRQHandler +cpuss_interrupts_ipc_2_IRQHandler +cpuss_interrupts_ipc_3_IRQHandler +cpuss_interrupts_ipc_4_IRQHandler +cpuss_interrupts_ipc_5_IRQHandler +cpuss_interrupts_ipc_6_IRQHandler +cpuss_interrupts_ipc_7_IRQHandler +cpuss_interrupts_ipc_8_IRQHandler +cpuss_interrupts_ipc_9_IRQHandler +cpuss_interrupts_ipc_10_IRQHandler +cpuss_interrupts_ipc_11_IRQHandler +cpuss_interrupts_ipc_12_IRQHandler +cpuss_interrupts_ipc_13_IRQHandler +cpuss_interrupts_ipc_14_IRQHandler +cpuss_interrupts_ipc_15_IRQHandler +scb_0_interrupt_IRQHandler +scb_1_interrupt_IRQHandler +scb_2_interrupt_IRQHandler +scb_3_interrupt_IRQHandler +scb_4_interrupt_IRQHandler +scb_5_interrupt_IRQHandler +scb_6_interrupt_IRQHandler +scb_7_interrupt_IRQHandler +csd_interrupt_IRQHandler +cpuss_interrupts_dw0_0_IRQHandler +cpuss_interrupts_dw0_1_IRQHandler +cpuss_interrupts_dw0_2_IRQHandler +cpuss_interrupts_dw0_3_IRQHandler +cpuss_interrupts_dw0_4_IRQHandler +cpuss_interrupts_dw0_5_IRQHandler +cpuss_interrupts_dw0_6_IRQHandler +cpuss_interrupts_dw0_7_IRQHandler +cpuss_interrupts_dw0_8_IRQHandler +cpuss_interrupts_dw0_9_IRQHandler +cpuss_interrupts_dw0_10_IRQHandler +cpuss_interrupts_dw0_11_IRQHandler +cpuss_interrupts_dw0_12_IRQHandler +cpuss_interrupts_dw0_13_IRQHandler +cpuss_interrupts_dw0_14_IRQHandler +cpuss_interrupts_dw0_15_IRQHandler +cpuss_interrupts_dw1_0_IRQHandler +cpuss_interrupts_dw1_1_IRQHandler +cpuss_interrupts_dw1_2_IRQHandler +cpuss_interrupts_dw1_3_IRQHandler +cpuss_interrupts_dw1_4_IRQHandler +cpuss_interrupts_dw1_5_IRQHandler +cpuss_interrupts_dw1_6_IRQHandler +cpuss_interrupts_dw1_7_IRQHandler +cpuss_interrupts_dw1_8_IRQHandler +cpuss_interrupts_dw1_9_IRQHandler +cpuss_interrupts_dw1_10_IRQHandler +cpuss_interrupts_dw1_11_IRQHandler +cpuss_interrupts_dw1_12_IRQHandler +cpuss_interrupts_dw1_13_IRQHandler +cpuss_interrupts_dw1_14_IRQHandler +cpuss_interrupts_dw1_15_IRQHandler +cpuss_interrupts_fault_0_IRQHandler +cpuss_interrupts_fault_1_IRQHandler +cpuss_interrupt_crypto_IRQHandler +cpuss_interrupt_fm_IRQHandler +cpuss_interrupts_cm0_cti_0_IRQHandler +cpuss_interrupts_cm0_cti_1_IRQHandler +cpuss_interrupts_cm4_cti_0_IRQHandler +cpuss_interrupts_cm4_cti_1_IRQHandler +tcpwm_0_interrupts_0_IRQHandler +tcpwm_0_interrupts_1_IRQHandler +tcpwm_0_interrupts_2_IRQHandler +tcpwm_0_interrupts_3_IRQHandler +tcpwm_0_interrupts_4_IRQHandler +tcpwm_0_interrupts_5_IRQHandler +tcpwm_0_interrupts_6_IRQHandler +tcpwm_0_interrupts_7_IRQHandler +tcpwm_1_interrupts_0_IRQHandler +tcpwm_1_interrupts_1_IRQHandler +tcpwm_1_interrupts_2_IRQHandler +tcpwm_1_interrupts_3_IRQHandler +tcpwm_1_interrupts_4_IRQHandler +tcpwm_1_interrupts_5_IRQHandler +tcpwm_1_interrupts_6_IRQHandler +tcpwm_1_interrupts_7_IRQHandler +tcpwm_1_interrupts_8_IRQHandler +tcpwm_1_interrupts_9_IRQHandler +tcpwm_1_interrupts_10_IRQHandler +tcpwm_1_interrupts_11_IRQHandler +tcpwm_1_interrupts_12_IRQHandler +tcpwm_1_interrupts_13_IRQHandler +tcpwm_1_interrupts_14_IRQHandler +tcpwm_1_interrupts_15_IRQHandler +tcpwm_1_interrupts_16_IRQHandler +tcpwm_1_interrupts_17_IRQHandler +tcpwm_1_interrupts_18_IRQHandler +tcpwm_1_interrupts_19_IRQHandler +tcpwm_1_interrupts_20_IRQHandler +tcpwm_1_interrupts_21_IRQHandler +tcpwm_1_interrupts_22_IRQHandler +tcpwm_1_interrupts_23_IRQHandler +udb_interrupts_0_IRQHandler +udb_interrupts_1_IRQHandler +udb_interrupts_2_IRQHandler +udb_interrupts_3_IRQHandler +udb_interrupts_4_IRQHandler +udb_interrupts_5_IRQHandler +udb_interrupts_6_IRQHandler +udb_interrupts_7_IRQHandler +udb_interrupts_8_IRQHandler +udb_interrupts_9_IRQHandler +udb_interrupts_10_IRQHandler +udb_interrupts_11_IRQHandler +udb_interrupts_12_IRQHandler +udb_interrupts_13_IRQHandler +udb_interrupts_14_IRQHandler +udb_interrupts_15_IRQHandler +pass_interrupt_sar_IRQHandler +audioss_interrupt_i2s_IRQHandler +audioss_interrupt_pdm_IRQHandler +profile_interrupt_IRQHandler +smif_interrupt_IRQHandler +usb_interrupt_hi_IRQHandler +usb_interrupt_med_IRQHandler +usb_interrupt_lo_IRQHandler +pass_interrupt_dacs_IRQHandler + + B . + ENDP + + ALIGN + + +; User Initial Stack & Heap + IMPORT __use_two_region_memory + + END + + +; [] END OF FILE diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld new file mode 100644 index 00000000000..913663190b0 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld @@ -0,0 +1,464 @@ +/***************************************************************************//** +* \file cyb06xx7_cm4_dual.ld +* \version 2.50 +* +* Linker file for the GNU C compiler. +* +* The main purpose of the linker script is to describe how the sections in the +* input files should be mapped into the output file, and to control the memory +* layout of the output file. +* +* \note The entry point location is fixed and starts at 0x10000000. The valid +* application image should be placed there. +* +* \note The linker files included with the PDL template projects must be generic +* and handle all common use cases. Your project may not use every section +* defined in the linker files. In that case you may see warnings during the +* build process. In your project, you can simply comment out or remove the +* relevant code in the linker file. +* +******************************************************************************** +* \copyright +* Copyright 2016-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*******************************************************************************/ + +OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm") +SEARCH_DIR(.) +GROUP(-lgcc -lc -lnosys) +ENTRY(Reset_Handler) + +#if !defined(MBED_ROM_START) + #define MBED_ROM_START 0x10000400 +#endif + +/* MBED_APP_START is being used by the bootloader build script and +* will be calculate by the system. Without bootloader the MBED_APP_START +* is equal to MBED_ROM_START +*/ +#if !defined(MBED_APP_START) + #define MBED_APP_START MBED_ROM_START +#endif + +#if !defined(MBED_ROM_SIZE) + #define MBED_ROM_SIZE 0x000CFC00 +#endif + +/* MBED_APP_SIZE is being used by the bootloader build script and +* will be calculate by the system. Without bootloader the MBED_APP_SIZE +* is equal to MBED_ROM_SIZE +*/ +#if !defined(MBED_APP_SIZE) + #define MBED_APP_SIZE MBED_ROM_SIZE +#endif + +#if !defined(MBED_RAM_START) + #define MBED_RAM_START 0x08002000 +#endif + +#if !defined(MBED_RAM_SIZE) + #define MBED_RAM_SIZE 0x0001E000 +#endif + +#if !defined(MBED_BOOT_STACK_SIZE) + #define MBED_BOOT_STACK_SIZE 0x400 +#endif + +STACK_SIZE = MBED_BOOT_STACK_SIZE; + +/* Force symbol to be entered in the output file as an undefined symbol. Doing +* this may, for example, trigger linking of additional modules from standard +* libraries. You may list several symbols for each EXTERN, and you may use +* EXTERN multiple times. This command has the same effect as the -u command-line +* option. +*/ +EXTERN(Reset_Handler) + +/* The MEMORY section below describes the location and size of blocks of memory in the target. +* Use this section to specify the memory regions available for allocation. +*/ +MEMORY +{ + /* The ram and flash regions control RAM and flash memory allocation for the CM4 core. + * You can change the memory allocation by editing the 'ram' and 'flash' regions. + * Note that 2 KB of RAM (at the end of the SRAM) are reserved for system use. + * Using this memory region for other purposes will lead to unexpected behavior. + * Your changes must be aligned with the corresponding memory regions for CM0+ core in 'xx_cm0plus.ld', + * where 'xx' is the device group; for example, 'cy8c6xx7_cm0plus.ld'. + */ + ram (rwx) : ORIGIN = MBED_RAM_START, LENGTH = MBED_RAM_SIZE + flash (rx) : ORIGIN = MBED_APP_START, LENGTH = MBED_APP_SIZE + + /* This is a 32K flash region used for EEPROM emulation. This region can also be used as the general purpose flash. + * You can assign sections to this memory region for only one of the cores. + * Note some middleware (e.g. BLE, Emulated EEPROM) can place their data into this memory region. + * Therefore, repurposing this memory region will prevent such middleware from operation. + */ + em_eeprom (rx) : ORIGIN = 0x14000000, LENGTH = 0x8000 /* 32 KB */ + + /* The following regions define device specific memory regions and must not be changed. */ + sflash_user_data (rx) : ORIGIN = 0x16000800, LENGTH = 0x800 /* Supervisory flash: User data */ + sflash_nar (rx) : ORIGIN = 0x16001A00, LENGTH = 0x200 /* Supervisory flash: Normal Access Restrictions (NAR) */ + sflash_public_key (rx) : ORIGIN = 0x16005A00, LENGTH = 0xC00 /* Supervisory flash: Public Key */ + sflash_toc_2 (rx) : ORIGIN = 0x16007C00, LENGTH = 0x200 /* Supervisory flash: Table of Content # 2 */ + sflash_rtoc_2 (rx) : ORIGIN = 0x16007E00, LENGTH = 0x200 /* Supervisory flash: Table of Content # 2 Copy */ + xip (rx) : ORIGIN = 0x18000000, LENGTH = 0x8000000 /* 128 MB */ + efuse (r) : ORIGIN = 0x90700000, LENGTH = 0x100000 /* 1 MB */ +} + +/* Size and start address of the Cortex-M0+ application image */ +FLASH_CM0P_SIZE = 0x40000; +FLASH_CM0P_START = ORIGIN(flash) + LENGTH(flash) - FLASH_CM0P_SIZE; +/* Size and start address of the Cortex-M4 application image */ +FLASH_CM4_SIZE = LENGTH(flash) - FLASH_CM0P_SIZE; +FLASH_CM4_START = ORIGIN(flash); + +/* Library configurations */ +GROUP(libgcc.a libc.a libm.a libnosys.a) + +/* Linker script to place sections and symbol values. Should be used together + * with other linker script that defines memory regions FLASH and RAM. + * It references following symbols, which must be defined in code: + * Reset_Handler : Entry of reset handler + * + * It defines following symbols, which code can use without definition: + * __exidx_start + * __exidx_end + * __copy_table_start__ + * __copy_table_end__ + * __zero_table_start__ + * __zero_table_end__ + * __etext + * __data_start__ + * __preinit_array_start + * __preinit_array_end + * __init_array_start + * __init_array_end + * __fini_array_start + * __fini_array_end + * __data_end__ + * __bss_start__ + * __bss_end__ + * __end__ + * end + * __HeapLimit + * __StackLimit + * __StackTop + * __stack + * __Vectors_End + * __Vectors_Size + */ + + +SECTIONS +{ + /* Cortex-M0+ application image */ + .cy_m0p_image FLASH_CM0P_START : + { + . = ALIGN(4); + __cy_m0p_code_start = . ; + KEEP(*(.cy_m0p_image)) + __cy_m0p_code_end = . ; + } > flash + + /* Cortex-M4 application image */ + .text FLASH_CM4_START : + { + . = ALIGN(4); + __Vectors = . ; + KEEP(*(.vectors)) + . = ALIGN(4); + __Vectors_End = .; + __Vectors_Size = __Vectors_End - __Vectors; + __end__ = .; + + . = ALIGN(4); + *(.text*) + + KEEP(*(.init)) + KEEP(*(.fini)) + + /* .ctors */ + *crtbegin.o(.ctors) + *crtbegin?.o(.ctors) + *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors) + *(SORT(.ctors.*)) + *(.ctors) + + /* .dtors */ + *crtbegin.o(.dtors) + *crtbegin?.o(.dtors) + *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors) + *(SORT(.dtors.*)) + *(.dtors) + + /* Read-only code (constants). */ + *(.rodata .rodata.* .constdata .constdata.* .conststring .conststring.*) + + KEEP(*(.eh_frame*)) + } > flash + + + .ARM.extab : + { + *(.ARM.extab* .gnu.linkonce.armextab.*) + } > flash + + __exidx_start = .; + + .ARM.exidx : + { + *(.ARM.exidx* .gnu.linkonce.armexidx.*) + } > flash + __exidx_end = .; + + + /* To copy multiple ROM to RAM sections, + * uncomment .copy.table section and, + * define __STARTUP_COPY_MULTIPLE in startup_psoc6_01_cm4.S */ + .copy.table : + { + . = ALIGN(4); + __copy_table_start__ = .; + + /* Copy interrupt vectors from flash to RAM */ + LONG (__Vectors) /* From */ + LONG (__ram_vectors_start__) /* To */ + LONG (__Vectors_End - __Vectors) /* Size */ + + /* Copy data section to RAM */ + LONG (__etext) /* From */ + LONG (__data_start__) /* To */ + LONG (__data_end__ - __data_start__) /* Size */ + + __copy_table_end__ = .; + } > flash + + + /* To clear multiple BSS sections, + * uncomment .zero.table section and, + * define __STARTUP_CLEAR_BSS_MULTIPLE in startup_psoc6_01_cm4.S */ + .zero.table : + { + . = ALIGN(4); + __zero_table_start__ = .; + LONG (__bss_start__) + LONG (__bss_end__ - __bss_start__) + __zero_table_end__ = .; + } > flash + + __etext = . ; + + + .ramVectors (NOLOAD) : ALIGN(8) + { + __ram_vectors_start__ = .; + KEEP(*(.ram_vectors)) + __ram_vectors_end__ = .; + } > ram + + + .data __ram_vectors_end__ : AT (__etext) + { + __data_start__ = .; + + *(vtable) + *(.data*) + + . = ALIGN(4); + /* preinit data */ + PROVIDE_HIDDEN (__preinit_array_start = .); + KEEP(*(.preinit_array)) + PROVIDE_HIDDEN (__preinit_array_end = .); + + . = ALIGN(4); + /* init data */ + PROVIDE_HIDDEN (__init_array_start = .); + KEEP(*(SORT(.init_array.*))) + KEEP(*(.init_array)) + PROVIDE_HIDDEN (__init_array_end = .); + + + . = ALIGN(4); + /* finit data */ + PROVIDE_HIDDEN (__fini_array_start = .); + KEEP(*(SORT(.fini_array.*))) + KEEP(*(.fini_array)) + PROVIDE_HIDDEN (__fini_array_end = .); + + KEEP(*(.jcr*)) + . = ALIGN(4); + + KEEP(*(.cy_ramfunc*)) + . = ALIGN(4); + + __data_end__ = .; + + } > ram + + + /* Place variables in the section that should not be initialized during the + * device startup. + */ + .noinit (NOLOAD) : ALIGN(8) + { + KEEP(*(.noinit)) + } > ram + + + /* The uninitialized global or static variables are placed in this section. + * + * The NOLOAD attribute tells linker that .bss section does not consume + * any space in the image. The NOLOAD attribute changes the .bss type to + * NOBITS, and that makes linker to A) not allocate section in memory, and + * A) put information to clear the section with all zeros during application + * loading. + * + * Without the NOLOAD attribute, the .bss section might get PROGBITS type. + * This makes linker to A) allocate zeroed section in memory, and B) copy + * this section to RAM during application loading. + */ + .bss (NOLOAD): + { + . = ALIGN(4); + __bss_start__ = .; + *(.bss*) + *(COMMON) + . = ALIGN(4); + __bss_end__ = .; + } > ram + + + .heap (NOLOAD): + { + __HeapBase = .; + __end__ = .; + end = __end__; + KEEP(*(.heap*)) + . = ORIGIN(ram) + LENGTH(ram) - STACK_SIZE; + __HeapLimit = .; + } > ram + + + /* Set stack top to end of RAM, and stack limit move down by + * size of stack_dummy section */ + __StackTop = ORIGIN(ram) + LENGTH(ram); + __StackLimit = __StackTop - STACK_SIZE; + PROVIDE(__stack = __StackTop); + + /* Check if data + heap + stack exceeds RAM limit */ + ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack") + + + /* Used for the digital signature of the secure application and the Bootloader SDK application. + * The size of the section depends on the required data size. */ + .cy_app_signature ORIGIN(flash) + LENGTH(flash) - 256 : + { + KEEP(*(.cy_app_signature)) + } > flash + + + /* Emulated EEPROM Flash area */ + .cy_em_eeprom : + { + KEEP(*(.cy_em_eeprom)) + } > em_eeprom + + + /* Supervisory Flash: User data */ + .cy_sflash_user_data : + { + KEEP(*(.cy_sflash_user_data)) + } > sflash_user_data + + + /* Supervisory Flash: Normal Access Restrictions (NAR) */ + .cy_sflash_nar : + { + KEEP(*(.cy_sflash_nar)) + } > sflash_nar + + + /* Supervisory Flash: Public Key */ + .cy_sflash_public_key : + { + KEEP(*(.cy_sflash_public_key)) + } > sflash_public_key + + + /* Supervisory Flash: Table of Content # 2 */ + .cy_toc_part2 : + { + KEEP(*(.cy_toc_part2)) + } > sflash_toc_2 + + + /* Supervisory Flash: Table of Content # 2 Copy */ + .cy_rtoc_part2 : + { + KEEP(*(.cy_rtoc_part2)) + } > sflash_rtoc_2 + + + /* Places the code in the Execute in Place (XIP) section. See the smif driver + * documentation for details. + */ + .cy_xip : + { + KEEP(*(.cy_xip)) + } > xip + + + /* eFuse */ + .cy_efuse : + { + KEEP(*(.cy_efuse)) + } > efuse + + + /* These sections are used for additional metadata (silicon revision, + * Silicon/JTAG ID, etc.) storage. + */ + .cymeta 0x90500000 : { KEEP(*(.cymeta)) } :NONE +} + + +/* The following symbols used by the cymcuelftool. */ +/* Flash */ +__cy_memory_0_start = 0x10000000; +__cy_memory_0_length = 0x00100000; +__cy_memory_0_row_size = 0x200; + +/* Emulated EEPROM Flash area */ +__cy_memory_1_start = 0x14000000; +__cy_memory_1_length = 0x8000; +__cy_memory_1_row_size = 0x200; + +/* Supervisory Flash */ +__cy_memory_2_start = 0x16000000; +__cy_memory_2_length = 0x8000; +__cy_memory_2_row_size = 0x200; + +/* XIP */ +__cy_memory_3_start = 0x18000000; +__cy_memory_3_length = 0x08000000; +__cy_memory_3_row_size = 0x200; + +/* eFuse */ +__cy_memory_4_start = 0x90700000; +__cy_memory_4_length = 0x100000; +__cy_memory_4_row_size = 1; + +/* EOF */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S new file mode 100644 index 00000000000..3c2f44d1e07 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S @@ -0,0 +1,631 @@ +/**************************************************************************//** + * @file startup_psoc6_01_cm4.S + * @brief CMSIS Core Device Startup File for + * ARMCM4 Device Series + * @version V5.00 + * @date 02. March 2016 + ******************************************************************************/ +/* + * Copyright (c) 2009-2016 ARM Limited. All rights reserved. + * + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the License); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + /* Address of the NMI handler */ + #define CY_NMI_HANLDER_ADDR 0x0000000D + + /* The CPU VTOR register */ + #define CY_CPU_VTOR_ADDR 0xE000ED08 + + /* Copy flash vectors and data section to RAM */ + #define __STARTUP_COPY_MULTIPLE + + /* Clear single BSS section */ + #define __STARTUP_CLEAR_BSS + + .syntax unified + .arch armv7-m + + .section .stack + .align 3 +#ifdef __STACK_SIZE + .equ Stack_Size, __STACK_SIZE +#else + .equ Stack_Size, 0x00001000 +#endif + .globl __StackTop + .globl __StackLimit +__StackLimit: + .space Stack_Size + .size __StackLimit, . - __StackLimit +__StackTop: + .size __StackTop, . - __StackTop + + .section .heap + .align 3 +#ifdef __HEAP_SIZE + .equ Heap_Size, __HEAP_SIZE +#else + .equ Heap_Size, 0x00000400 +#endif + .globl __HeapBase + .globl __HeapLimit +__HeapBase: + .if Heap_Size + .space Heap_Size + .endif + .size __HeapBase, . - __HeapBase +__HeapLimit: + .size __HeapLimit, . - __HeapLimit + + .section .vectors + .align 2 + .globl __Vectors +__Vectors: + .long __StackTop /* Top of Stack */ + .long Reset_Handler /* Reset Handler */ + .long CY_NMI_HANLDER_ADDR /* NMI Handler */ + .long HardFault_Handler /* Hard Fault Handler */ + .long MemManage_Handler /* MPU Fault Handler */ + .long BusFault_Handler /* Bus Fault Handler */ + .long UsageFault_Handler /* Usage Fault Handler */ + .long 0 /* Reserved */ + .long 0 /* Reserved */ + .long 0 /* Reserved */ + .long 0 /* Reserved */ + .long SVC_Handler /* SVCall Handler */ + .long DebugMon_Handler /* Debug Monitor Handler */ + .long 0 /* Reserved */ + .long PendSV_Handler /* PendSV Handler */ + .long SysTick_Handler /* SysTick Handler */ + + /* External interrupts Description */ + .long ioss_interrupts_gpio_0_IRQHandler /* GPIO Port Interrupt #0 */ + .long ioss_interrupts_gpio_1_IRQHandler /* GPIO Port Interrupt #1 */ + .long ioss_interrupts_gpio_2_IRQHandler /* GPIO Port Interrupt #2 */ + .long ioss_interrupts_gpio_3_IRQHandler /* GPIO Port Interrupt #3 */ + .long ioss_interrupts_gpio_4_IRQHandler /* GPIO Port Interrupt #4 */ + .long ioss_interrupts_gpio_5_IRQHandler /* GPIO Port Interrupt #5 */ + .long ioss_interrupts_gpio_6_IRQHandler /* GPIO Port Interrupt #6 */ + .long ioss_interrupts_gpio_7_IRQHandler /* GPIO Port Interrupt #7 */ + .long ioss_interrupts_gpio_8_IRQHandler /* GPIO Port Interrupt #8 */ + .long ioss_interrupts_gpio_9_IRQHandler /* GPIO Port Interrupt #9 */ + .long ioss_interrupts_gpio_10_IRQHandler /* GPIO Port Interrupt #10 */ + .long ioss_interrupts_gpio_11_IRQHandler /* GPIO Port Interrupt #11 */ + .long ioss_interrupts_gpio_12_IRQHandler /* GPIO Port Interrupt #12 */ + .long ioss_interrupts_gpio_13_IRQHandler /* GPIO Port Interrupt #13 */ + .long ioss_interrupts_gpio_14_IRQHandler /* GPIO Port Interrupt #14 */ + .long ioss_interrupt_gpio_IRQHandler /* GPIO All Ports */ + .long ioss_interrupt_vdd_IRQHandler /* GPIO Supply Detect Interrupt */ + .long lpcomp_interrupt_IRQHandler /* Low Power Comparator Interrupt */ + .long scb_8_interrupt_IRQHandler /* Serial Communication Block #8 (DeepSleep capable) */ + .long srss_interrupt_mcwdt_0_IRQHandler /* Multi Counter Watchdog Timer interrupt */ + .long srss_interrupt_mcwdt_1_IRQHandler /* Multi Counter Watchdog Timer interrupt */ + .long srss_interrupt_backup_IRQHandler /* Backup domain interrupt */ + .long srss_interrupt_IRQHandler /* Other combined Interrupts for SRSS (LVD, WDT, CLKCAL) */ + .long pass_interrupt_ctbs_IRQHandler /* CTBm Interrupt (all CTBms) */ + .long bless_interrupt_IRQHandler /* Bluetooth Radio interrupt */ + .long cpuss_interrupts_ipc_0_IRQHandler /* CPUSS Inter Process Communication Interrupt #0 */ + .long cpuss_interrupts_ipc_1_IRQHandler /* CPUSS Inter Process Communication Interrupt #1 */ + .long cpuss_interrupts_ipc_2_IRQHandler /* CPUSS Inter Process Communication Interrupt #2 */ + .long cpuss_interrupts_ipc_3_IRQHandler /* CPUSS Inter Process Communication Interrupt #3 */ + .long cpuss_interrupts_ipc_4_IRQHandler /* CPUSS Inter Process Communication Interrupt #4 */ + .long cpuss_interrupts_ipc_5_IRQHandler /* CPUSS Inter Process Communication Interrupt #5 */ + .long cpuss_interrupts_ipc_6_IRQHandler /* CPUSS Inter Process Communication Interrupt #6 */ + .long cpuss_interrupts_ipc_7_IRQHandler /* CPUSS Inter Process Communication Interrupt #7 */ + .long cpuss_interrupts_ipc_8_IRQHandler /* CPUSS Inter Process Communication Interrupt #8 */ + .long cpuss_interrupts_ipc_9_IRQHandler /* CPUSS Inter Process Communication Interrupt #9 */ + .long cpuss_interrupts_ipc_10_IRQHandler /* CPUSS Inter Process Communication Interrupt #10 */ + .long cpuss_interrupts_ipc_11_IRQHandler /* CPUSS Inter Process Communication Interrupt #11 */ + .long cpuss_interrupts_ipc_12_IRQHandler /* CPUSS Inter Process Communication Interrupt #12 */ + .long cpuss_interrupts_ipc_13_IRQHandler /* CPUSS Inter Process Communication Interrupt #13 */ + .long cpuss_interrupts_ipc_14_IRQHandler /* CPUSS Inter Process Communication Interrupt #14 */ + .long cpuss_interrupts_ipc_15_IRQHandler /* CPUSS Inter Process Communication Interrupt #15 */ + .long scb_0_interrupt_IRQHandler /* Serial Communication Block #0 */ + .long scb_1_interrupt_IRQHandler /* Serial Communication Block #1 */ + .long scb_2_interrupt_IRQHandler /* Serial Communication Block #2 */ + .long scb_3_interrupt_IRQHandler /* Serial Communication Block #3 */ + .long scb_4_interrupt_IRQHandler /* Serial Communication Block #4 */ + .long scb_5_interrupt_IRQHandler /* Serial Communication Block #5 */ + .long scb_6_interrupt_IRQHandler /* Serial Communication Block #6 */ + .long scb_7_interrupt_IRQHandler /* Serial Communication Block #7 */ + .long csd_interrupt_IRQHandler /* CSD (Capsense) interrupt */ + .long cpuss_interrupts_dw0_0_IRQHandler /* CPUSS DataWire #0, Channel #0 */ + .long cpuss_interrupts_dw0_1_IRQHandler /* CPUSS DataWire #0, Channel #1 */ + .long cpuss_interrupts_dw0_2_IRQHandler /* CPUSS DataWire #0, Channel #2 */ + .long cpuss_interrupts_dw0_3_IRQHandler /* CPUSS DataWire #0, Channel #3 */ + .long cpuss_interrupts_dw0_4_IRQHandler /* CPUSS DataWire #0, Channel #4 */ + .long cpuss_interrupts_dw0_5_IRQHandler /* CPUSS DataWire #0, Channel #5 */ + .long cpuss_interrupts_dw0_6_IRQHandler /* CPUSS DataWire #0, Channel #6 */ + .long cpuss_interrupts_dw0_7_IRQHandler /* CPUSS DataWire #0, Channel #7 */ + .long cpuss_interrupts_dw0_8_IRQHandler /* CPUSS DataWire #0, Channel #8 */ + .long cpuss_interrupts_dw0_9_IRQHandler /* CPUSS DataWire #0, Channel #9 */ + .long cpuss_interrupts_dw0_10_IRQHandler /* CPUSS DataWire #0, Channel #10 */ + .long cpuss_interrupts_dw0_11_IRQHandler /* CPUSS DataWire #0, Channel #11 */ + .long cpuss_interrupts_dw0_12_IRQHandler /* CPUSS DataWire #0, Channel #12 */ + .long cpuss_interrupts_dw0_13_IRQHandler /* CPUSS DataWire #0, Channel #13 */ + .long cpuss_interrupts_dw0_14_IRQHandler /* CPUSS DataWire #0, Channel #14 */ + .long cpuss_interrupts_dw0_15_IRQHandler /* CPUSS DataWire #0, Channel #15 */ + .long cpuss_interrupts_dw1_0_IRQHandler /* CPUSS DataWire #1, Channel #0 */ + .long cpuss_interrupts_dw1_1_IRQHandler /* CPUSS DataWire #1, Channel #1 */ + .long cpuss_interrupts_dw1_2_IRQHandler /* CPUSS DataWire #1, Channel #2 */ + .long cpuss_interrupts_dw1_3_IRQHandler /* CPUSS DataWire #1, Channel #3 */ + .long cpuss_interrupts_dw1_4_IRQHandler /* CPUSS DataWire #1, Channel #4 */ + .long cpuss_interrupts_dw1_5_IRQHandler /* CPUSS DataWire #1, Channel #5 */ + .long cpuss_interrupts_dw1_6_IRQHandler /* CPUSS DataWire #1, Channel #6 */ + .long cpuss_interrupts_dw1_7_IRQHandler /* CPUSS DataWire #1, Channel #7 */ + .long cpuss_interrupts_dw1_8_IRQHandler /* CPUSS DataWire #1, Channel #8 */ + .long cpuss_interrupts_dw1_9_IRQHandler /* CPUSS DataWire #1, Channel #9 */ + .long cpuss_interrupts_dw1_10_IRQHandler /* CPUSS DataWire #1, Channel #10 */ + .long cpuss_interrupts_dw1_11_IRQHandler /* CPUSS DataWire #1, Channel #11 */ + .long cpuss_interrupts_dw1_12_IRQHandler /* CPUSS DataWire #1, Channel #12 */ + .long cpuss_interrupts_dw1_13_IRQHandler /* CPUSS DataWire #1, Channel #13 */ + .long cpuss_interrupts_dw1_14_IRQHandler /* CPUSS DataWire #1, Channel #14 */ + .long cpuss_interrupts_dw1_15_IRQHandler /* CPUSS DataWire #1, Channel #15 */ + .long cpuss_interrupts_fault_0_IRQHandler /* CPUSS Fault Structure Interrupt #0 */ + .long cpuss_interrupts_fault_1_IRQHandler /* CPUSS Fault Structure Interrupt #1 */ + .long cpuss_interrupt_crypto_IRQHandler /* CRYPTO Accelerator Interrupt */ + .long cpuss_interrupt_fm_IRQHandler /* FLASH Macro Interrupt */ + .long cpuss_interrupts_cm0_cti_0_IRQHandler /* CM0+ CTI #0 */ + .long cpuss_interrupts_cm0_cti_1_IRQHandler /* CM0+ CTI #1 */ + .long cpuss_interrupts_cm4_cti_0_IRQHandler /* CM4 CTI #0 */ + .long cpuss_interrupts_cm4_cti_1_IRQHandler /* CM4 CTI #1 */ + .long tcpwm_0_interrupts_0_IRQHandler /* TCPWM #0, Counter #0 */ + .long tcpwm_0_interrupts_1_IRQHandler /* TCPWM #0, Counter #1 */ + .long tcpwm_0_interrupts_2_IRQHandler /* TCPWM #0, Counter #2 */ + .long tcpwm_0_interrupts_3_IRQHandler /* TCPWM #0, Counter #3 */ + .long tcpwm_0_interrupts_4_IRQHandler /* TCPWM #0, Counter #4 */ + .long tcpwm_0_interrupts_5_IRQHandler /* TCPWM #0, Counter #5 */ + .long tcpwm_0_interrupts_6_IRQHandler /* TCPWM #0, Counter #6 */ + .long tcpwm_0_interrupts_7_IRQHandler /* TCPWM #0, Counter #7 */ + .long tcpwm_1_interrupts_0_IRQHandler /* TCPWM #1, Counter #0 */ + .long tcpwm_1_interrupts_1_IRQHandler /* TCPWM #1, Counter #1 */ + .long tcpwm_1_interrupts_2_IRQHandler /* TCPWM #1, Counter #2 */ + .long tcpwm_1_interrupts_3_IRQHandler /* TCPWM #1, Counter #3 */ + .long tcpwm_1_interrupts_4_IRQHandler /* TCPWM #1, Counter #4 */ + .long tcpwm_1_interrupts_5_IRQHandler /* TCPWM #1, Counter #5 */ + .long tcpwm_1_interrupts_6_IRQHandler /* TCPWM #1, Counter #6 */ + .long tcpwm_1_interrupts_7_IRQHandler /* TCPWM #1, Counter #7 */ + .long tcpwm_1_interrupts_8_IRQHandler /* TCPWM #1, Counter #8 */ + .long tcpwm_1_interrupts_9_IRQHandler /* TCPWM #1, Counter #9 */ + .long tcpwm_1_interrupts_10_IRQHandler /* TCPWM #1, Counter #10 */ + .long tcpwm_1_interrupts_11_IRQHandler /* TCPWM #1, Counter #11 */ + .long tcpwm_1_interrupts_12_IRQHandler /* TCPWM #1, Counter #12 */ + .long tcpwm_1_interrupts_13_IRQHandler /* TCPWM #1, Counter #13 */ + .long tcpwm_1_interrupts_14_IRQHandler /* TCPWM #1, Counter #14 */ + .long tcpwm_1_interrupts_15_IRQHandler /* TCPWM #1, Counter #15 */ + .long tcpwm_1_interrupts_16_IRQHandler /* TCPWM #1, Counter #16 */ + .long tcpwm_1_interrupts_17_IRQHandler /* TCPWM #1, Counter #17 */ + .long tcpwm_1_interrupts_18_IRQHandler /* TCPWM #1, Counter #18 */ + .long tcpwm_1_interrupts_19_IRQHandler /* TCPWM #1, Counter #19 */ + .long tcpwm_1_interrupts_20_IRQHandler /* TCPWM #1, Counter #20 */ + .long tcpwm_1_interrupts_21_IRQHandler /* TCPWM #1, Counter #21 */ + .long tcpwm_1_interrupts_22_IRQHandler /* TCPWM #1, Counter #22 */ + .long tcpwm_1_interrupts_23_IRQHandler /* TCPWM #1, Counter #23 */ + .long udb_interrupts_0_IRQHandler /* UDB Interrupt #0 */ + .long udb_interrupts_1_IRQHandler /* UDB Interrupt #1 */ + .long udb_interrupts_2_IRQHandler /* UDB Interrupt #2 */ + .long udb_interrupts_3_IRQHandler /* UDB Interrupt #3 */ + .long udb_interrupts_4_IRQHandler /* UDB Interrupt #4 */ + .long udb_interrupts_5_IRQHandler /* UDB Interrupt #5 */ + .long udb_interrupts_6_IRQHandler /* UDB Interrupt #6 */ + .long udb_interrupts_7_IRQHandler /* UDB Interrupt #7 */ + .long udb_interrupts_8_IRQHandler /* UDB Interrupt #8 */ + .long udb_interrupts_9_IRQHandler /* UDB Interrupt #9 */ + .long udb_interrupts_10_IRQHandler /* UDB Interrupt #10 */ + .long udb_interrupts_11_IRQHandler /* UDB Interrupt #11 */ + .long udb_interrupts_12_IRQHandler /* UDB Interrupt #12 */ + .long udb_interrupts_13_IRQHandler /* UDB Interrupt #13 */ + .long udb_interrupts_14_IRQHandler /* UDB Interrupt #14 */ + .long udb_interrupts_15_IRQHandler /* UDB Interrupt #15 */ + .long pass_interrupt_sar_IRQHandler /* SAR ADC interrupt */ + .long audioss_interrupt_i2s_IRQHandler /* I2S Audio interrupt */ + .long audioss_interrupt_pdm_IRQHandler /* PDM/PCM Audio interrupt */ + .long profile_interrupt_IRQHandler /* Energy Profiler interrupt */ + .long smif_interrupt_IRQHandler /* Serial Memory Interface interrupt */ + .long usb_interrupt_hi_IRQHandler /* USB Interrupt */ + .long usb_interrupt_med_IRQHandler /* USB Interrupt */ + .long usb_interrupt_lo_IRQHandler /* USB Interrupt */ + .long pass_interrupt_dacs_IRQHandler /* Consolidated interrrupt for all DACs */ + + + .size __Vectors, . - __Vectors + .equ __VectorsSize, . - __Vectors + + .section .ram_vectors + .align 2 + .globl __ramVectors +__ramVectors: + .space __VectorsSize + .size __ramVectors, . - __ramVectors + + + .text + .thumb + .thumb_func + .align 2 + + /* + * Device startup customization + * + * Note. The global resources are not yet initialized (for example global variables, peripherals, clocks) + * because this function is executed as the first instruction in the ResetHandler. + * The PDL is also not initialized to use the proper register offsets. + * The user of this function is responsible for initializing the PDL and resources before using them. + */ + .weak Cy_OnResetUser + .func Cy_OnResetUser, Cy_OnResetUser + .type Cy_OnResetUser, %function + +Cy_OnResetUser: + bx lr + .size Cy_OnResetUser, . - Cy_OnResetUser + .endfunc + + /* Reset handler */ + .weak Reset_Handler + .type Reset_Handler, %function + +Reset_Handler: + bl Cy_OnResetUser + cpsid i + +/* Firstly it copies data from read only memory to RAM. There are two schemes + * to copy. One can copy more than one sections. Another can only copy + * one section. The former scheme needs more instructions and read-only + * data to implement than the latter. + * Macro __STARTUP_COPY_MULTIPLE is used to choose between two schemes. */ + +#ifdef __STARTUP_COPY_MULTIPLE +/* Multiple sections scheme. + * + * Between symbol address __copy_table_start__ and __copy_table_end__, + * there are array of triplets, each of which specify: + * offset 0: LMA of start of a section to copy from + * offset 4: VMA of start of a section to copy to + * offset 8: size of the section to copy. Must be multiply of 4 + * + * All addresses must be aligned to 4 bytes boundary. + */ + ldr r4, =__copy_table_start__ + ldr r5, =__copy_table_end__ + +.L_loop0: + cmp r4, r5 + bge .L_loop0_done + ldr r1, [r4] + ldr r2, [r4, #4] + ldr r3, [r4, #8] + +.L_loop0_0: + subs r3, #4 + ittt ge + ldrge r0, [r1, r3] + strge r0, [r2, r3] + bge .L_loop0_0 + + adds r4, #12 + b .L_loop0 + +.L_loop0_done: +#else +/* Single section scheme. + * + * The ranges of copy from/to are specified by following symbols + * __etext: LMA of start of the section to copy from. Usually end of text + * __data_start__: VMA of start of the section to copy to + * __data_end__: VMA of end of the section to copy to + * + * All addresses must be aligned to 4 bytes boundary. + */ + ldr r1, =__etext + ldr r2, =__data_start__ + ldr r3, =__data_end__ + +.L_loop1: + cmp r2, r3 + ittt lt + ldrlt r0, [r1], #4 + strlt r0, [r2], #4 + blt .L_loop1 +#endif /*__STARTUP_COPY_MULTIPLE */ + +/* This part of work usually is done in C library startup code. Otherwise, + * define this macro to enable it in this startup. + * + * There are two schemes too. One can clear multiple BSS sections. Another + * can only clear one section. The former is more size expensive than the + * latter. + * + * Define macro __STARTUP_CLEAR_BSS_MULTIPLE to choose the former. + * Otherwise define macro __STARTUP_CLEAR_BSS to choose the later. + */ +#ifdef __STARTUP_CLEAR_BSS_MULTIPLE +/* Multiple sections scheme. + * + * Between symbol address __copy_table_start__ and __copy_table_end__, + * there are array of tuples specifying: + * offset 0: Start of a BSS section + * offset 4: Size of this BSS section. Must be multiply of 4 + */ + ldr r3, =__zero_table_start__ + ldr r4, =__zero_table_end__ + +.L_loop2: + cmp r3, r4 + bge .L_loop2_done + ldr r1, [r3] + ldr r2, [r3, #4] + movs r0, 0 + +.L_loop2_0: + subs r2, #4 + itt ge + strge r0, [r1, r2] + bge .L_loop2_0 + + adds r3, #8 + b .L_loop2 +.L_loop2_done: +#elif defined (__STARTUP_CLEAR_BSS) +/* Single BSS section scheme. + * + * The BSS section is specified by following symbols + * __bss_start__: start of the BSS section. + * __bss_end__: end of the BSS section. + * + * Both addresses must be aligned to 4 bytes boundary. + */ + ldr r1, =__bss_start__ + ldr r2, =__bss_end__ + + movs r0, 0 +.L_loop3: + cmp r1, r2 + itt lt + strlt r0, [r1], #4 + blt .L_loop3 +#endif /* __STARTUP_CLEAR_BSS_MULTIPLE || __STARTUP_CLEAR_BSS */ + + /* Update Vector Table Offset Register. */ + ldr r0, =__ramVectors + ldr r1, =CY_CPU_VTOR_ADDR + str r0, [r1] + dsb 0xF + + /* Enable the FPU if used */ + bl Cy_SystemInitFpuEnable + + bl _start + + /* Should never get here */ + b . + + .pool + .size Reset_Handler, . - Reset_Handler + + .align 1 + .thumb_func + .weak Default_Handler + .type Default_Handler, %function + +Default_Handler: + b . + .size Default_Handler, . - Default_Handler + + + .weak Cy_SysLib_FaultHandler + .type Cy_SysLib_FaultHandler, %function + +Cy_SysLib_FaultHandler: + b . + .size Cy_SysLib_FaultHandler, . - Cy_SysLib_FaultHandler + .type Fault_Handler, %function + +Fault_Handler: + /* Storing LR content for Creator call stack trace */ + push {LR} + movs r0, #4 + mov r1, LR + tst r0, r1 + beq .L_MSP + mrs r0, PSP + b .L_API_call +.L_MSP: + mrs r0, MSP +.L_API_call: + /* Compensation of stack pointer address due to pushing 4 bytes of LR */ + adds r0, r0, #4 + bl Cy_SysLib_FaultHandler + b . + .size Fault_Handler, . - Fault_Handler + +.macro def_fault_Handler fault_handler_name + .weak \fault_handler_name + .set \fault_handler_name, Fault_Handler + .endm + +/* Macro to define default handlers. Default handler + * will be weak symbol and just dead loops. They can be + * overwritten by other handlers */ + .macro def_irq_handler handler_name + .weak \handler_name + .set \handler_name, Default_Handler + .endm + + def_irq_handler NMI_Handler + + def_fault_Handler HardFault_Handler + def_fault_Handler MemManage_Handler + def_fault_Handler BusFault_Handler + def_fault_Handler UsageFault_Handler + + def_irq_handler SVC_Handler + def_irq_handler DebugMon_Handler + def_irq_handler PendSV_Handler + def_irq_handler SysTick_Handler + + def_irq_handler ioss_interrupts_gpio_0_IRQHandler /* GPIO Port Interrupt #0 */ + def_irq_handler ioss_interrupts_gpio_1_IRQHandler /* GPIO Port Interrupt #1 */ + def_irq_handler ioss_interrupts_gpio_2_IRQHandler /* GPIO Port Interrupt #2 */ + def_irq_handler ioss_interrupts_gpio_3_IRQHandler /* GPIO Port Interrupt #3 */ + def_irq_handler ioss_interrupts_gpio_4_IRQHandler /* GPIO Port Interrupt #4 */ + def_irq_handler ioss_interrupts_gpio_5_IRQHandler /* GPIO Port Interrupt #5 */ + def_irq_handler ioss_interrupts_gpio_6_IRQHandler /* GPIO Port Interrupt #6 */ + def_irq_handler ioss_interrupts_gpio_7_IRQHandler /* GPIO Port Interrupt #7 */ + def_irq_handler ioss_interrupts_gpio_8_IRQHandler /* GPIO Port Interrupt #8 */ + def_irq_handler ioss_interrupts_gpio_9_IRQHandler /* GPIO Port Interrupt #9 */ + def_irq_handler ioss_interrupts_gpio_10_IRQHandler /* GPIO Port Interrupt #10 */ + def_irq_handler ioss_interrupts_gpio_11_IRQHandler /* GPIO Port Interrupt #11 */ + def_irq_handler ioss_interrupts_gpio_12_IRQHandler /* GPIO Port Interrupt #12 */ + def_irq_handler ioss_interrupts_gpio_13_IRQHandler /* GPIO Port Interrupt #13 */ + def_irq_handler ioss_interrupts_gpio_14_IRQHandler /* GPIO Port Interrupt #14 */ + def_irq_handler ioss_interrupt_gpio_IRQHandler /* GPIO All Ports */ + def_irq_handler ioss_interrupt_vdd_IRQHandler /* GPIO Supply Detect Interrupt */ + def_irq_handler lpcomp_interrupt_IRQHandler /* Low Power Comparator Interrupt */ + def_irq_handler scb_8_interrupt_IRQHandler /* Serial Communication Block #8 (DeepSleep capable) */ + def_irq_handler srss_interrupt_mcwdt_0_IRQHandler /* Multi Counter Watchdog Timer interrupt */ + def_irq_handler srss_interrupt_mcwdt_1_IRQHandler /* Multi Counter Watchdog Timer interrupt */ + def_irq_handler srss_interrupt_backup_IRQHandler /* Backup domain interrupt */ + def_irq_handler srss_interrupt_IRQHandler /* Other combined Interrupts for SRSS (LVD, WDT, CLKCAL) */ + def_irq_handler pass_interrupt_ctbs_IRQHandler /* CTBm Interrupt (all CTBms) */ + def_irq_handler bless_interrupt_IRQHandler /* Bluetooth Radio interrupt */ + def_irq_handler cpuss_interrupts_ipc_0_IRQHandler /* CPUSS Inter Process Communication Interrupt #0 */ + def_irq_handler cpuss_interrupts_ipc_1_IRQHandler /* CPUSS Inter Process Communication Interrupt #1 */ + def_irq_handler cpuss_interrupts_ipc_2_IRQHandler /* CPUSS Inter Process Communication Interrupt #2 */ + def_irq_handler cpuss_interrupts_ipc_3_IRQHandler /* CPUSS Inter Process Communication Interrupt #3 */ + def_irq_handler cpuss_interrupts_ipc_4_IRQHandler /* CPUSS Inter Process Communication Interrupt #4 */ + def_irq_handler cpuss_interrupts_ipc_5_IRQHandler /* CPUSS Inter Process Communication Interrupt #5 */ + def_irq_handler cpuss_interrupts_ipc_6_IRQHandler /* CPUSS Inter Process Communication Interrupt #6 */ + def_irq_handler cpuss_interrupts_ipc_7_IRQHandler /* CPUSS Inter Process Communication Interrupt #7 */ + def_irq_handler cpuss_interrupts_ipc_8_IRQHandler /* CPUSS Inter Process Communication Interrupt #8 */ + def_irq_handler cpuss_interrupts_ipc_9_IRQHandler /* CPUSS Inter Process Communication Interrupt #9 */ + def_irq_handler cpuss_interrupts_ipc_10_IRQHandler /* CPUSS Inter Process Communication Interrupt #10 */ + def_irq_handler cpuss_interrupts_ipc_11_IRQHandler /* CPUSS Inter Process Communication Interrupt #11 */ + def_irq_handler cpuss_interrupts_ipc_12_IRQHandler /* CPUSS Inter Process Communication Interrupt #12 */ + def_irq_handler cpuss_interrupts_ipc_13_IRQHandler /* CPUSS Inter Process Communication Interrupt #13 */ + def_irq_handler cpuss_interrupts_ipc_14_IRQHandler /* CPUSS Inter Process Communication Interrupt #14 */ + def_irq_handler cpuss_interrupts_ipc_15_IRQHandler /* CPUSS Inter Process Communication Interrupt #15 */ + def_irq_handler scb_0_interrupt_IRQHandler /* Serial Communication Block #0 */ + def_irq_handler scb_1_interrupt_IRQHandler /* Serial Communication Block #1 */ + def_irq_handler scb_2_interrupt_IRQHandler /* Serial Communication Block #2 */ + def_irq_handler scb_3_interrupt_IRQHandler /* Serial Communication Block #3 */ + def_irq_handler scb_4_interrupt_IRQHandler /* Serial Communication Block #4 */ + def_irq_handler scb_5_interrupt_IRQHandler /* Serial Communication Block #5 */ + def_irq_handler scb_6_interrupt_IRQHandler /* Serial Communication Block #6 */ + def_irq_handler scb_7_interrupt_IRQHandler /* Serial Communication Block #7 */ + def_irq_handler csd_interrupt_IRQHandler /* CSD (Capsense) interrupt */ + def_irq_handler cpuss_interrupts_dw0_0_IRQHandler /* CPUSS DataWire #0, Channel #0 */ + def_irq_handler cpuss_interrupts_dw0_1_IRQHandler /* CPUSS DataWire #0, Channel #1 */ + def_irq_handler cpuss_interrupts_dw0_2_IRQHandler /* CPUSS DataWire #0, Channel #2 */ + def_irq_handler cpuss_interrupts_dw0_3_IRQHandler /* CPUSS DataWire #0, Channel #3 */ + def_irq_handler cpuss_interrupts_dw0_4_IRQHandler /* CPUSS DataWire #0, Channel #4 */ + def_irq_handler cpuss_interrupts_dw0_5_IRQHandler /* CPUSS DataWire #0, Channel #5 */ + def_irq_handler cpuss_interrupts_dw0_6_IRQHandler /* CPUSS DataWire #0, Channel #6 */ + def_irq_handler cpuss_interrupts_dw0_7_IRQHandler /* CPUSS DataWire #0, Channel #7 */ + def_irq_handler cpuss_interrupts_dw0_8_IRQHandler /* CPUSS DataWire #0, Channel #8 */ + def_irq_handler cpuss_interrupts_dw0_9_IRQHandler /* CPUSS DataWire #0, Channel #9 */ + def_irq_handler cpuss_interrupts_dw0_10_IRQHandler /* CPUSS DataWire #0, Channel #10 */ + def_irq_handler cpuss_interrupts_dw0_11_IRQHandler /* CPUSS DataWire #0, Channel #11 */ + def_irq_handler cpuss_interrupts_dw0_12_IRQHandler /* CPUSS DataWire #0, Channel #12 */ + def_irq_handler cpuss_interrupts_dw0_13_IRQHandler /* CPUSS DataWire #0, Channel #13 */ + def_irq_handler cpuss_interrupts_dw0_14_IRQHandler /* CPUSS DataWire #0, Channel #14 */ + def_irq_handler cpuss_interrupts_dw0_15_IRQHandler /* CPUSS DataWire #0, Channel #15 */ + def_irq_handler cpuss_interrupts_dw1_0_IRQHandler /* CPUSS DataWire #1, Channel #0 */ + def_irq_handler cpuss_interrupts_dw1_1_IRQHandler /* CPUSS DataWire #1, Channel #1 */ + def_irq_handler cpuss_interrupts_dw1_2_IRQHandler /* CPUSS DataWire #1, Channel #2 */ + def_irq_handler cpuss_interrupts_dw1_3_IRQHandler /* CPUSS DataWire #1, Channel #3 */ + def_irq_handler cpuss_interrupts_dw1_4_IRQHandler /* CPUSS DataWire #1, Channel #4 */ + def_irq_handler cpuss_interrupts_dw1_5_IRQHandler /* CPUSS DataWire #1, Channel #5 */ + def_irq_handler cpuss_interrupts_dw1_6_IRQHandler /* CPUSS DataWire #1, Channel #6 */ + def_irq_handler cpuss_interrupts_dw1_7_IRQHandler /* CPUSS DataWire #1, Channel #7 */ + def_irq_handler cpuss_interrupts_dw1_8_IRQHandler /* CPUSS DataWire #1, Channel #8 */ + def_irq_handler cpuss_interrupts_dw1_9_IRQHandler /* CPUSS DataWire #1, Channel #9 */ + def_irq_handler cpuss_interrupts_dw1_10_IRQHandler /* CPUSS DataWire #1, Channel #10 */ + def_irq_handler cpuss_interrupts_dw1_11_IRQHandler /* CPUSS DataWire #1, Channel #11 */ + def_irq_handler cpuss_interrupts_dw1_12_IRQHandler /* CPUSS DataWire #1, Channel #12 */ + def_irq_handler cpuss_interrupts_dw1_13_IRQHandler /* CPUSS DataWire #1, Channel #13 */ + def_irq_handler cpuss_interrupts_dw1_14_IRQHandler /* CPUSS DataWire #1, Channel #14 */ + def_irq_handler cpuss_interrupts_dw1_15_IRQHandler /* CPUSS DataWire #1, Channel #15 */ + def_irq_handler cpuss_interrupts_fault_0_IRQHandler /* CPUSS Fault Structure Interrupt #0 */ + def_irq_handler cpuss_interrupts_fault_1_IRQHandler /* CPUSS Fault Structure Interrupt #1 */ + def_irq_handler cpuss_interrupt_crypto_IRQHandler /* CRYPTO Accelerator Interrupt */ + def_irq_handler cpuss_interrupt_fm_IRQHandler /* FLASH Macro Interrupt */ + def_irq_handler cpuss_interrupts_cm0_cti_0_IRQHandler /* CM0+ CTI #0 */ + def_irq_handler cpuss_interrupts_cm0_cti_1_IRQHandler /* CM0+ CTI #1 */ + def_irq_handler cpuss_interrupts_cm4_cti_0_IRQHandler /* CM4 CTI #0 */ + def_irq_handler cpuss_interrupts_cm4_cti_1_IRQHandler /* CM4 CTI #1 */ + def_irq_handler tcpwm_0_interrupts_0_IRQHandler /* TCPWM #0, Counter #0 */ + def_irq_handler tcpwm_0_interrupts_1_IRQHandler /* TCPWM #0, Counter #1 */ + def_irq_handler tcpwm_0_interrupts_2_IRQHandler /* TCPWM #0, Counter #2 */ + def_irq_handler tcpwm_0_interrupts_3_IRQHandler /* TCPWM #0, Counter #3 */ + def_irq_handler tcpwm_0_interrupts_4_IRQHandler /* TCPWM #0, Counter #4 */ + def_irq_handler tcpwm_0_interrupts_5_IRQHandler /* TCPWM #0, Counter #5 */ + def_irq_handler tcpwm_0_interrupts_6_IRQHandler /* TCPWM #0, Counter #6 */ + def_irq_handler tcpwm_0_interrupts_7_IRQHandler /* TCPWM #0, Counter #7 */ + def_irq_handler tcpwm_1_interrupts_0_IRQHandler /* TCPWM #1, Counter #0 */ + def_irq_handler tcpwm_1_interrupts_1_IRQHandler /* TCPWM #1, Counter #1 */ + def_irq_handler tcpwm_1_interrupts_2_IRQHandler /* TCPWM #1, Counter #2 */ + def_irq_handler tcpwm_1_interrupts_3_IRQHandler /* TCPWM #1, Counter #3 */ + def_irq_handler tcpwm_1_interrupts_4_IRQHandler /* TCPWM #1, Counter #4 */ + def_irq_handler tcpwm_1_interrupts_5_IRQHandler /* TCPWM #1, Counter #5 */ + def_irq_handler tcpwm_1_interrupts_6_IRQHandler /* TCPWM #1, Counter #6 */ + def_irq_handler tcpwm_1_interrupts_7_IRQHandler /* TCPWM #1, Counter #7 */ + def_irq_handler tcpwm_1_interrupts_8_IRQHandler /* TCPWM #1, Counter #8 */ + def_irq_handler tcpwm_1_interrupts_9_IRQHandler /* TCPWM #1, Counter #9 */ + def_irq_handler tcpwm_1_interrupts_10_IRQHandler /* TCPWM #1, Counter #10 */ + def_irq_handler tcpwm_1_interrupts_11_IRQHandler /* TCPWM #1, Counter #11 */ + def_irq_handler tcpwm_1_interrupts_12_IRQHandler /* TCPWM #1, Counter #12 */ + def_irq_handler tcpwm_1_interrupts_13_IRQHandler /* TCPWM #1, Counter #13 */ + def_irq_handler tcpwm_1_interrupts_14_IRQHandler /* TCPWM #1, Counter #14 */ + def_irq_handler tcpwm_1_interrupts_15_IRQHandler /* TCPWM #1, Counter #15 */ + def_irq_handler tcpwm_1_interrupts_16_IRQHandler /* TCPWM #1, Counter #16 */ + def_irq_handler tcpwm_1_interrupts_17_IRQHandler /* TCPWM #1, Counter #17 */ + def_irq_handler tcpwm_1_interrupts_18_IRQHandler /* TCPWM #1, Counter #18 */ + def_irq_handler tcpwm_1_interrupts_19_IRQHandler /* TCPWM #1, Counter #19 */ + def_irq_handler tcpwm_1_interrupts_20_IRQHandler /* TCPWM #1, Counter #20 */ + def_irq_handler tcpwm_1_interrupts_21_IRQHandler /* TCPWM #1, Counter #21 */ + def_irq_handler tcpwm_1_interrupts_22_IRQHandler /* TCPWM #1, Counter #22 */ + def_irq_handler tcpwm_1_interrupts_23_IRQHandler /* TCPWM #1, Counter #23 */ + def_irq_handler udb_interrupts_0_IRQHandler /* UDB Interrupt #0 */ + def_irq_handler udb_interrupts_1_IRQHandler /* UDB Interrupt #1 */ + def_irq_handler udb_interrupts_2_IRQHandler /* UDB Interrupt #2 */ + def_irq_handler udb_interrupts_3_IRQHandler /* UDB Interrupt #3 */ + def_irq_handler udb_interrupts_4_IRQHandler /* UDB Interrupt #4 */ + def_irq_handler udb_interrupts_5_IRQHandler /* UDB Interrupt #5 */ + def_irq_handler udb_interrupts_6_IRQHandler /* UDB Interrupt #6 */ + def_irq_handler udb_interrupts_7_IRQHandler /* UDB Interrupt #7 */ + def_irq_handler udb_interrupts_8_IRQHandler /* UDB Interrupt #8 */ + def_irq_handler udb_interrupts_9_IRQHandler /* UDB Interrupt #9 */ + def_irq_handler udb_interrupts_10_IRQHandler /* UDB Interrupt #10 */ + def_irq_handler udb_interrupts_11_IRQHandler /* UDB Interrupt #11 */ + def_irq_handler udb_interrupts_12_IRQHandler /* UDB Interrupt #12 */ + def_irq_handler udb_interrupts_13_IRQHandler /* UDB Interrupt #13 */ + def_irq_handler udb_interrupts_14_IRQHandler /* UDB Interrupt #14 */ + def_irq_handler udb_interrupts_15_IRQHandler /* UDB Interrupt #15 */ + def_irq_handler pass_interrupt_sar_IRQHandler /* SAR ADC interrupt */ + def_irq_handler audioss_interrupt_i2s_IRQHandler /* I2S Audio interrupt */ + def_irq_handler audioss_interrupt_pdm_IRQHandler /* PDM/PCM Audio interrupt */ + def_irq_handler profile_interrupt_IRQHandler /* Energy Profiler interrupt */ + def_irq_handler smif_interrupt_IRQHandler /* Serial Memory Interface interrupt */ + def_irq_handler usb_interrupt_hi_IRQHandler /* USB Interrupt */ + def_irq_handler usb_interrupt_med_IRQHandler /* USB Interrupt */ + def_irq_handler usb_interrupt_lo_IRQHandler /* USB Interrupt */ + def_irq_handler pass_interrupt_dacs_IRQHandler /* Consolidated interrrupt for all DACs */ + + .end + + +/* [] END OF FILE */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf new file mode 100644 index 00000000000..3c0902869da --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf @@ -0,0 +1,271 @@ +/***************************************************************************//** +* \file cyb06xx7_cm4_dual.icf +* \version 2.50 +* +* Linker file for the IAR compiler. +* +* The main purpose of the linker script is to describe how the sections in the +* input files should be mapped into the output file, and to control the memory +* layout of the output file. +* +* \note The entry point is fixed and starts at 0x10000000. The valid application +* image should be placed there. +* +* \note The linker files included with the PDL template projects must be generic +* and handle all common use cases. Your project may not use every section +* defined in the linker files. In that case you may see warnings during the +* build process. In your project, you can simply comment out or remove the +* relevant code in the linker file. +* +******************************************************************************** +* \copyright +* Copyright 2016-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*******************************************************************************/ + +/*###ICF### Section handled by ICF editor, don't touch! ****/ +/*-Editor annotation file-*/ +/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_4.xml" */ +/*-Specials-*/ +define symbol __ICFEDIT_intvec_start__ = 0x00000000; + +if (!isdefinedsymbol(MBED_ROM_START)) { + define symbol MBED_ROM_START = 0x10000400; +} + +/* MBED_APP_START is being used by the bootloader build script and + * will be calculate by the system. Without bootloader the MBED_APP_START + * is equal to MBED_ROM_START + */ +if (!isdefinedsymbol(MBED_APP_START)) { + define symbol MBED_APP_START = MBED_ROM_START; +} + +if (!isdefinedsymbol(MBED_ROM_SIZE)) { + define symbol MBED_ROM_SIZE = 0x000CFC00; +} + +/* MBED_APP_SIZE is being used by the bootloader build script and + * will be calculate by the system. Without bootloader the MBED_APP_SIZE + * is equal to MBED_ROM_SIZE + */ +if (!isdefinedsymbol(MBED_APP_SIZE)) { + define symbol MBED_APP_SIZE = MBED_ROM_SIZE; +} + +if (!isdefinedsymbol(MBED_RAM_START)) { + define symbol MBED_RAM_START = 0x08002000; +} + +if (!isdefinedsymbol(MBED_RAM_SIZE)) { + define symbol MBED_RAM_SIZE = 0x0001E000; +} + +if (!isdefinedsymbol(MBED_BOOT_STACK_SIZE)) { + define symbol MBED_BOOT_STACK_SIZE = 0x400; +} + +/* The symbols below define the location and size of blocks of memory in the target. + * Use these symbols to specify the memory regions available for allocation. + */ + +/* The following symbols control RAM and flash memory allocation for the CM4 core. + * You can change the memory allocation by editing RAM and Flash symbols. + * Note that 2 KB of RAM (at the end of the SRAM) are reserved for system use. + * Using this memory region for other purposes will lead to unexpected behavior. + * Your changes must be aligned with the corresponding symbols for CM0+ core in 'xx_cm0plus.icf', + * where 'xx' is the device group; for example, 'cy8c6xx7_cm0plus.icf'. + */ +/* RAM */ +define symbol __ICFEDIT_region_IRAM1_start__ = MBED_RAM_START; +define symbol __ICFEDIT_region_IRAM1_end__ = (MBED_RAM_START + MBED_RAM_SIZE); +/* Flash */ +define symbol __ICFEDIT_region_IROM1_start__ = MBED_APP_START; +define symbol __ICFEDIT_region_IROM1_end__ = (MBED_APP_START + MBED_APP_SIZE); + +/* The following symbols define a 32K flash region used for EEPROM emulation. + * This region can also be used as the general purpose flash. + * You can assign sections to this memory region for only one of the cores. + * Note some middleware (e.g. BLE, Emulated EEPROM) can place their data into this memory region. + * Therefore, repurposing this memory region will prevent such middleware from operation. + */ +define symbol __ICFEDIT_region_IROM2_start__ = 0x14000000; +define symbol __ICFEDIT_region_IROM2_end__ = 0x14007FFF; + +/* The following symbols define device specific memory regions and must not be changed. */ +/* Supervisory FLASH - User Data */ +define symbol __ICFEDIT_region_IROM3_start__ = 0x16000800; +define symbol __ICFEDIT_region_IROM3_end__ = 0x160007FF; + +/* Supervisory FLASH - Normal Access Restrictions (NAR) */ +define symbol __ICFEDIT_region_IROM4_start__ = 0x16001A00; +define symbol __ICFEDIT_region_IROM4_end__ = 0x16001BFF; + +/* Supervisory FLASH - Public Key */ +define symbol __ICFEDIT_region_IROM5_start__ = 0x16005A00; +define symbol __ICFEDIT_region_IROM5_end__ = 0x160065FF; + +/* Supervisory FLASH - Table of Content # 2 */ +define symbol __ICFEDIT_region_IROM6_start__ = 0x16007C00; +define symbol __ICFEDIT_region_IROM6_end__ = 0x16007DFF; + +/* Supervisory FLASH - Table of Content # 2 Copy */ +define symbol __ICFEDIT_region_IROM7_start__ = 0x16007E00; +define symbol __ICFEDIT_region_IROM7_end__ = 0x16007FFF; + +/* eFuse */ +define symbol __ICFEDIT_region_IROM8_start__ = 0x90700000; +define symbol __ICFEDIT_region_IROM8_end__ = 0x907FFFFF; + +/* XIP */ +define symbol __ICFEDIT_region_EROM1_start__ = 0x18000000; +define symbol __ICFEDIT_region_EROM1_end__ = 0x1FFFFFFF; + +define symbol __ICFEDIT_region_EROM2_start__ = 0x0; +define symbol __ICFEDIT_region_EROM2_end__ = 0x0; +define symbol __ICFEDIT_region_EROM3_start__ = 0x0; +define symbol __ICFEDIT_region_EROM3_end__ = 0x0; + + +define symbol __ICFEDIT_region_IRAM2_start__ = 0x0; +define symbol __ICFEDIT_region_IRAM2_end__ = 0x0; +define symbol __ICFEDIT_region_ERAM1_start__ = 0x0; +define symbol __ICFEDIT_region_ERAM1_end__ = 0x0; +define symbol __ICFEDIT_region_ERAM2_start__ = 0x0; +define symbol __ICFEDIT_region_ERAM2_end__ = 0x0; +define symbol __ICFEDIT_region_ERAM3_start__ = 0x0; +define symbol __ICFEDIT_region_ERAM3_end__ = 0x0; +/*-Sizes-*/ +if (!isdefinedsymbol(__STACK_SIZE)) { + define symbol __ICFEDIT_size_cstack__ = MBED_BOOT_STACK_SIZE; +} else { + define symbol __ICFEDIT_size_cstack__ = __STACK_SIZE; +} + +/* Defines the minimum heap size. The actual heap size will be expanded to the end of the stack region */ +if (!isdefinedsymbol(__HEAP_SIZE)) { + define symbol __ICFEDIT_size_heap__ = 0x400; +} else { + define symbol __ICFEDIT_size_heap__ = __HEAP_SIZE; +} +/**** End of ICF editor section. ###ICF###*/ + +define memory mem with size = 4G; +define region IROM1_region = mem:[from __ICFEDIT_region_IROM1_start__ to __ICFEDIT_region_IROM1_end__]; +define region IROM2_region = mem:[from __ICFEDIT_region_IROM2_start__ to __ICFEDIT_region_IROM2_end__]; +define region IROM3_region = mem:[from __ICFEDIT_region_IROM3_start__ to __ICFEDIT_region_IROM3_end__]; +define region IROM4_region = mem:[from __ICFEDIT_region_IROM4_start__ to __ICFEDIT_region_IROM4_end__]; +define region IROM5_region = mem:[from __ICFEDIT_region_IROM5_start__ to __ICFEDIT_region_IROM5_end__]; +define region IROM6_region = mem:[from __ICFEDIT_region_IROM6_start__ to __ICFEDIT_region_IROM6_end__]; +define region IROM7_region = mem:[from __ICFEDIT_region_IROM7_start__ to __ICFEDIT_region_IROM7_end__]; +define region IROM8_region = mem:[from __ICFEDIT_region_IROM8_start__ to __ICFEDIT_region_IROM8_end__]; +define region EROM1_region = mem:[from __ICFEDIT_region_EROM1_start__ to __ICFEDIT_region_EROM1_end__]; +define region IRAM1_region = mem:[from __ICFEDIT_region_IRAM1_start__ to __ICFEDIT_region_IRAM1_end__]; + +define block RAM_DATA {readwrite section .data}; +define block RAM_OTHER {readwrite section * }; +define block RAM_NOINIT {readwrite section .noinit}; +define block RAM_BSS {readwrite section .bss}; +define block RAM with fixed order {block RAM_DATA, block RAM_OTHER, block RAM_NOINIT, block RAM_BSS}; + +define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; +define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; + +define block RO {first section .intvec, readonly}; + +/*-Initializations-*/ +initialize by copy { readwrite }; +do not initialize { section .noinit, section .intvec_ram }; + +/*-Placement-*/ + +/* Flash */ +place at start of IROM1_region { block RO }; +".cy_app_signature" : place at address (__ICFEDIT_region_IROM1_end__ - 0x200) { section .cy_app_signature }; + +/* Emulated EEPROM Flash area */ +".cy_em_eeprom" : place at start of IROM2_region { section .cy_em_eeprom }; + +/* Supervisory Flash - User Data */ +".cy_sflash_user_data" : place at start of IROM3_region { section .cy_sflash_user_data }; + +/* Supervisory Flash - NAR */ +".cy_sflash_nar" : place at start of IROM4_region { section .cy_sflash_nar }; + +/* Supervisory Flash - Public Key */ +".cy_sflash_public_key" : place at start of IROM5_region { section .cy_sflash_public_key }; + +/* Supervisory Flash - TOC2 */ +".cy_toc_part2" : place at start of IROM6_region { section .cy_toc_part2 }; + +/* Supervisory Flash - RTOC2 */ +".cy_rtoc_part2" : place at start of IROM7_region { section .cy_rtoc_part2 }; + +/* eFuse */ +".cy_efuse" : place at start of IROM8_region { section .cy_efuse }; + +/* Execute in Place (XIP). See the smif driver documentation for details. */ +".cy_xip" : place at start of EROM1_region { section .cy_xip }; + +/* RAM */ +place at start of IRAM1_region { readwrite section .intvec_ram}; +place in IRAM1_region { block RAM}; +place in IRAM1_region { block HEAP}; +place at end of IRAM1_region { block CSTACK }; + +/* These sections are used for additional metadata (silicon revision, Silicon/JTAG ID, etc.) storage. */ +".cymeta" : place at address mem : 0x90500000 { readonly section .cymeta }; + + +keep { section .cy_app_signature, + section .cy_em_eeprom, + section .cy_sflash_user_data, + section .cy_sflash_nar, + section .cy_sflash_public_key, + section .cy_toc_part2, + section .cy_rtoc_part2, + section .cy_efuse, + section .cy_xip, + section .cymeta, + }; + + +/* The following symbols used by the cymcuelftool. */ +/* Flash */ +define exported symbol __cy_memory_0_start = 0x10000000; +define exported symbol __cy_memory_0_length = 0x00100000; +define exported symbol __cy_memory_0_row_size = 0x200; + +/* Emulated EEPROM Flash area */ +define exported symbol __cy_memory_1_start = 0x14000000; +define exported symbol __cy_memory_1_length = 0x8000; +define exported symbol __cy_memory_1_row_size = 0x200; + +/* Supervisory Flash */ +define exported symbol __cy_memory_2_start = 0x16000000; +define exported symbol __cy_memory_2_length = 0x8000; +define exported symbol __cy_memory_2_row_size = 0x200; + +/* XIP */ +define exported symbol __cy_memory_3_start = 0x18000000; +define exported symbol __cy_memory_3_length = 0x08000000; +define exported symbol __cy_memory_3_row_size = 0x200; + +/* eFuse */ +define exported symbol __cy_memory_4_start = 0x90700000; +define exported symbol __cy_memory_4_length = 0x100000; +define exported symbol __cy_memory_4_row_size = 1; + +/* EOF */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S new file mode 100644 index 00000000000..75747c4face --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S @@ -0,0 +1,1141 @@ +;/**************************************************************************//** +; * @file startup_psoc6_01_cm4.S +; * @brief CMSIS Core Device Startup File for +; * ARMCM4 Device Series +; * @version V5.00 +; * @date 08. March 2016 +; ******************************************************************************/ +;/* +; * Copyright (c) 2009-2016 ARM Limited. All rights reserved. +; * +; * SPDX-License-Identifier: Apache-2.0 +; * +; * Licensed under the Apache License, Version 2.0 (the License); you may +; * not use this file except in compliance with the License. +; * You may obtain a copy of the License at +; * +; * www.apache.org/licenses/LICENSE-2.0 +; * +; * Unless required by applicable law or agreed to in writing, software +; * distributed under the License is distributed on an AS IS BASIS, WITHOUT +; * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +; * See the License for the specific language governing permissions and +; * limitations under the License. +; */ + +; +; The modules in this file are included in the libraries, and may be replaced +; by any user-defined modules that define the PUBLIC symbol _program_start or +; a user defined start symbol. +; To override the cstartup defined in the library, simply add your modified +; version to the workbench project. +; +; The vector table is normally located at address 0. +; When debugging in RAM, it can be located in RAM, aligned to at least 2^6. +; The name "__vector_table" has special meaning for C-SPY: +; it is where the SP start value is found, and the NVIC vector +; table register (VTOR) is initialized to this address if != 0. +; +; Cortex-M version +; + + MODULE ?cstartup + + ;; Forward declaration of sections. + SECTION CSTACK:DATA:NOROOT(3) + SECTION .intvec_ram:DATA:NOROOT(2) + SECTION .intvec:CODE:NOROOT(2) + + EXTERN __iar_program_start + EXTERN SystemInit + EXTERN Cy_SystemInitFpuEnable + EXTERN __iar_data_init3 + PUBLIC __vector_table + PUBLIC __vector_table_0x1c + PUBLIC __Vectors + PUBLIC __Vectors_End + PUBLIC __Vectors_Size + PUBLIC __ramVectors + + DATA + +__vector_table + DCD sfe(CSTACK) + DCD Reset_Handler + + DCD 0x0000000D ; NMI_Handler is defined in ROM code + DCD HardFault_Handler + DCD MemManage_Handler + DCD BusFault_Handler + DCD UsageFault_Handler +__vector_table_0x1c + DCD 0 + DCD 0 + DCD 0 + DCD 0 + DCD SVC_Handler + DCD DebugMon_Handler + DCD 0 + DCD PendSV_Handler + DCD SysTick_Handler + + ; External interrupts Description + DCD ioss_interrupts_gpio_0_IRQHandler ; GPIO Port Interrupt #0 + DCD ioss_interrupts_gpio_1_IRQHandler ; GPIO Port Interrupt #1 + DCD ioss_interrupts_gpio_2_IRQHandler ; GPIO Port Interrupt #2 + DCD ioss_interrupts_gpio_3_IRQHandler ; GPIO Port Interrupt #3 + DCD ioss_interrupts_gpio_4_IRQHandler ; GPIO Port Interrupt #4 + DCD ioss_interrupts_gpio_5_IRQHandler ; GPIO Port Interrupt #5 + DCD ioss_interrupts_gpio_6_IRQHandler ; GPIO Port Interrupt #6 + DCD ioss_interrupts_gpio_7_IRQHandler ; GPIO Port Interrupt #7 + DCD ioss_interrupts_gpio_8_IRQHandler ; GPIO Port Interrupt #8 + DCD ioss_interrupts_gpio_9_IRQHandler ; GPIO Port Interrupt #9 + DCD ioss_interrupts_gpio_10_IRQHandler ; GPIO Port Interrupt #10 + DCD ioss_interrupts_gpio_11_IRQHandler ; GPIO Port Interrupt #11 + DCD ioss_interrupts_gpio_12_IRQHandler ; GPIO Port Interrupt #12 + DCD ioss_interrupts_gpio_13_IRQHandler ; GPIO Port Interrupt #13 + DCD ioss_interrupts_gpio_14_IRQHandler ; GPIO Port Interrupt #14 + DCD ioss_interrupt_gpio_IRQHandler ; GPIO All Ports + DCD ioss_interrupt_vdd_IRQHandler ; GPIO Supply Detect Interrupt + DCD lpcomp_interrupt_IRQHandler ; Low Power Comparator Interrupt + DCD scb_8_interrupt_IRQHandler ; Serial Communication Block #8 (DeepSleep capable) + DCD srss_interrupt_mcwdt_0_IRQHandler ; Multi Counter Watchdog Timer interrupt + DCD srss_interrupt_mcwdt_1_IRQHandler ; Multi Counter Watchdog Timer interrupt + DCD srss_interrupt_backup_IRQHandler ; Backup domain interrupt + DCD srss_interrupt_IRQHandler ; Other combined Interrupts for SRSS (LVD, WDT, CLKCAL) + DCD pass_interrupt_ctbs_IRQHandler ; CTBm Interrupt (all CTBms) + DCD bless_interrupt_IRQHandler ; Bluetooth Radio interrupt + DCD cpuss_interrupts_ipc_0_IRQHandler ; CPUSS Inter Process Communication Interrupt #0 + DCD cpuss_interrupts_ipc_1_IRQHandler ; CPUSS Inter Process Communication Interrupt #1 + DCD cpuss_interrupts_ipc_2_IRQHandler ; CPUSS Inter Process Communication Interrupt #2 + DCD cpuss_interrupts_ipc_3_IRQHandler ; CPUSS Inter Process Communication Interrupt #3 + DCD cpuss_interrupts_ipc_4_IRQHandler ; CPUSS Inter Process Communication Interrupt #4 + DCD cpuss_interrupts_ipc_5_IRQHandler ; CPUSS Inter Process Communication Interrupt #5 + DCD cpuss_interrupts_ipc_6_IRQHandler ; CPUSS Inter Process Communication Interrupt #6 + DCD cpuss_interrupts_ipc_7_IRQHandler ; CPUSS Inter Process Communication Interrupt #7 + DCD cpuss_interrupts_ipc_8_IRQHandler ; CPUSS Inter Process Communication Interrupt #8 + DCD cpuss_interrupts_ipc_9_IRQHandler ; CPUSS Inter Process Communication Interrupt #9 + DCD cpuss_interrupts_ipc_10_IRQHandler ; CPUSS Inter Process Communication Interrupt #10 + DCD cpuss_interrupts_ipc_11_IRQHandler ; CPUSS Inter Process Communication Interrupt #11 + DCD cpuss_interrupts_ipc_12_IRQHandler ; CPUSS Inter Process Communication Interrupt #12 + DCD cpuss_interrupts_ipc_13_IRQHandler ; CPUSS Inter Process Communication Interrupt #13 + DCD cpuss_interrupts_ipc_14_IRQHandler ; CPUSS Inter Process Communication Interrupt #14 + DCD cpuss_interrupts_ipc_15_IRQHandler ; CPUSS Inter Process Communication Interrupt #15 + DCD scb_0_interrupt_IRQHandler ; Serial Communication Block #0 + DCD scb_1_interrupt_IRQHandler ; Serial Communication Block #1 + DCD scb_2_interrupt_IRQHandler ; Serial Communication Block #2 + DCD scb_3_interrupt_IRQHandler ; Serial Communication Block #3 + DCD scb_4_interrupt_IRQHandler ; Serial Communication Block #4 + DCD scb_5_interrupt_IRQHandler ; Serial Communication Block #5 + DCD scb_6_interrupt_IRQHandler ; Serial Communication Block #6 + DCD scb_7_interrupt_IRQHandler ; Serial Communication Block #7 + DCD csd_interrupt_IRQHandler ; CSD (Capsense) interrupt + DCD cpuss_interrupts_dw0_0_IRQHandler ; CPUSS DataWire #0, Channel #0 + DCD cpuss_interrupts_dw0_1_IRQHandler ; CPUSS DataWire #0, Channel #1 + DCD cpuss_interrupts_dw0_2_IRQHandler ; CPUSS DataWire #0, Channel #2 + DCD cpuss_interrupts_dw0_3_IRQHandler ; CPUSS DataWire #0, Channel #3 + DCD cpuss_interrupts_dw0_4_IRQHandler ; CPUSS DataWire #0, Channel #4 + DCD cpuss_interrupts_dw0_5_IRQHandler ; CPUSS DataWire #0, Channel #5 + DCD cpuss_interrupts_dw0_6_IRQHandler ; CPUSS DataWire #0, Channel #6 + DCD cpuss_interrupts_dw0_7_IRQHandler ; CPUSS DataWire #0, Channel #7 + DCD cpuss_interrupts_dw0_8_IRQHandler ; CPUSS DataWire #0, Channel #8 + DCD cpuss_interrupts_dw0_9_IRQHandler ; CPUSS DataWire #0, Channel #9 + DCD cpuss_interrupts_dw0_10_IRQHandler ; CPUSS DataWire #0, Channel #10 + DCD cpuss_interrupts_dw0_11_IRQHandler ; CPUSS DataWire #0, Channel #11 + DCD cpuss_interrupts_dw0_12_IRQHandler ; CPUSS DataWire #0, Channel #12 + DCD cpuss_interrupts_dw0_13_IRQHandler ; CPUSS DataWire #0, Channel #13 + DCD cpuss_interrupts_dw0_14_IRQHandler ; CPUSS DataWire #0, Channel #14 + DCD cpuss_interrupts_dw0_15_IRQHandler ; CPUSS DataWire #0, Channel #15 + DCD cpuss_interrupts_dw1_0_IRQHandler ; CPUSS DataWire #1, Channel #0 + DCD cpuss_interrupts_dw1_1_IRQHandler ; CPUSS DataWire #1, Channel #1 + DCD cpuss_interrupts_dw1_2_IRQHandler ; CPUSS DataWire #1, Channel #2 + DCD cpuss_interrupts_dw1_3_IRQHandler ; CPUSS DataWire #1, Channel #3 + DCD cpuss_interrupts_dw1_4_IRQHandler ; CPUSS DataWire #1, Channel #4 + DCD cpuss_interrupts_dw1_5_IRQHandler ; CPUSS DataWire #1, Channel #5 + DCD cpuss_interrupts_dw1_6_IRQHandler ; CPUSS DataWire #1, Channel #6 + DCD cpuss_interrupts_dw1_7_IRQHandler ; CPUSS DataWire #1, Channel #7 + DCD cpuss_interrupts_dw1_8_IRQHandler ; CPUSS DataWire #1, Channel #8 + DCD cpuss_interrupts_dw1_9_IRQHandler ; CPUSS DataWire #1, Channel #9 + DCD cpuss_interrupts_dw1_10_IRQHandler ; CPUSS DataWire #1, Channel #10 + DCD cpuss_interrupts_dw1_11_IRQHandler ; CPUSS DataWire #1, Channel #11 + DCD cpuss_interrupts_dw1_12_IRQHandler ; CPUSS DataWire #1, Channel #12 + DCD cpuss_interrupts_dw1_13_IRQHandler ; CPUSS DataWire #1, Channel #13 + DCD cpuss_interrupts_dw1_14_IRQHandler ; CPUSS DataWire #1, Channel #14 + DCD cpuss_interrupts_dw1_15_IRQHandler ; CPUSS DataWire #1, Channel #15 + DCD cpuss_interrupts_fault_0_IRQHandler ; CPUSS Fault Structure Interrupt #0 + DCD cpuss_interrupts_fault_1_IRQHandler ; CPUSS Fault Structure Interrupt #1 + DCD cpuss_interrupt_crypto_IRQHandler ; CRYPTO Accelerator Interrupt + DCD cpuss_interrupt_fm_IRQHandler ; FLASH Macro Interrupt + DCD cpuss_interrupts_cm0_cti_0_IRQHandler ; CM0+ CTI #0 + DCD cpuss_interrupts_cm0_cti_1_IRQHandler ; CM0+ CTI #1 + DCD cpuss_interrupts_cm4_cti_0_IRQHandler ; CM4 CTI #0 + DCD cpuss_interrupts_cm4_cti_1_IRQHandler ; CM4 CTI #1 + DCD tcpwm_0_interrupts_0_IRQHandler ; TCPWM #0, Counter #0 + DCD tcpwm_0_interrupts_1_IRQHandler ; TCPWM #0, Counter #1 + DCD tcpwm_0_interrupts_2_IRQHandler ; TCPWM #0, Counter #2 + DCD tcpwm_0_interrupts_3_IRQHandler ; TCPWM #0, Counter #3 + DCD tcpwm_0_interrupts_4_IRQHandler ; TCPWM #0, Counter #4 + DCD tcpwm_0_interrupts_5_IRQHandler ; TCPWM #0, Counter #5 + DCD tcpwm_0_interrupts_6_IRQHandler ; TCPWM #0, Counter #6 + DCD tcpwm_0_interrupts_7_IRQHandler ; TCPWM #0, Counter #7 + DCD tcpwm_1_interrupts_0_IRQHandler ; TCPWM #1, Counter #0 + DCD tcpwm_1_interrupts_1_IRQHandler ; TCPWM #1, Counter #1 + DCD tcpwm_1_interrupts_2_IRQHandler ; TCPWM #1, Counter #2 + DCD tcpwm_1_interrupts_3_IRQHandler ; TCPWM #1, Counter #3 + DCD tcpwm_1_interrupts_4_IRQHandler ; TCPWM #1, Counter #4 + DCD tcpwm_1_interrupts_5_IRQHandler ; TCPWM #1, Counter #5 + DCD tcpwm_1_interrupts_6_IRQHandler ; TCPWM #1, Counter #6 + DCD tcpwm_1_interrupts_7_IRQHandler ; TCPWM #1, Counter #7 + DCD tcpwm_1_interrupts_8_IRQHandler ; TCPWM #1, Counter #8 + DCD tcpwm_1_interrupts_9_IRQHandler ; TCPWM #1, Counter #9 + DCD tcpwm_1_interrupts_10_IRQHandler ; TCPWM #1, Counter #10 + DCD tcpwm_1_interrupts_11_IRQHandler ; TCPWM #1, Counter #11 + DCD tcpwm_1_interrupts_12_IRQHandler ; TCPWM #1, Counter #12 + DCD tcpwm_1_interrupts_13_IRQHandler ; TCPWM #1, Counter #13 + DCD tcpwm_1_interrupts_14_IRQHandler ; TCPWM #1, Counter #14 + DCD tcpwm_1_interrupts_15_IRQHandler ; TCPWM #1, Counter #15 + DCD tcpwm_1_interrupts_16_IRQHandler ; TCPWM #1, Counter #16 + DCD tcpwm_1_interrupts_17_IRQHandler ; TCPWM #1, Counter #17 + DCD tcpwm_1_interrupts_18_IRQHandler ; TCPWM #1, Counter #18 + DCD tcpwm_1_interrupts_19_IRQHandler ; TCPWM #1, Counter #19 + DCD tcpwm_1_interrupts_20_IRQHandler ; TCPWM #1, Counter #20 + DCD tcpwm_1_interrupts_21_IRQHandler ; TCPWM #1, Counter #21 + DCD tcpwm_1_interrupts_22_IRQHandler ; TCPWM #1, Counter #22 + DCD tcpwm_1_interrupts_23_IRQHandler ; TCPWM #1, Counter #23 + DCD udb_interrupts_0_IRQHandler ; UDB Interrupt #0 + DCD udb_interrupts_1_IRQHandler ; UDB Interrupt #1 + DCD udb_interrupts_2_IRQHandler ; UDB Interrupt #2 + DCD udb_interrupts_3_IRQHandler ; UDB Interrupt #3 + DCD udb_interrupts_4_IRQHandler ; UDB Interrupt #4 + DCD udb_interrupts_5_IRQHandler ; UDB Interrupt #5 + DCD udb_interrupts_6_IRQHandler ; UDB Interrupt #6 + DCD udb_interrupts_7_IRQHandler ; UDB Interrupt #7 + DCD udb_interrupts_8_IRQHandler ; UDB Interrupt #8 + DCD udb_interrupts_9_IRQHandler ; UDB Interrupt #9 + DCD udb_interrupts_10_IRQHandler ; UDB Interrupt #10 + DCD udb_interrupts_11_IRQHandler ; UDB Interrupt #11 + DCD udb_interrupts_12_IRQHandler ; UDB Interrupt #12 + DCD udb_interrupts_13_IRQHandler ; UDB Interrupt #13 + DCD udb_interrupts_14_IRQHandler ; UDB Interrupt #14 + DCD udb_interrupts_15_IRQHandler ; UDB Interrupt #15 + DCD pass_interrupt_sar_IRQHandler ; SAR ADC interrupt + DCD audioss_interrupt_i2s_IRQHandler ; I2S Audio interrupt + DCD audioss_interrupt_pdm_IRQHandler ; PDM/PCM Audio interrupt + DCD profile_interrupt_IRQHandler ; Energy Profiler interrupt + DCD smif_interrupt_IRQHandler ; Serial Memory Interface interrupt + DCD usb_interrupt_hi_IRQHandler ; USB Interrupt + DCD usb_interrupt_med_IRQHandler ; USB Interrupt + DCD usb_interrupt_lo_IRQHandler ; USB Interrupt + DCD pass_interrupt_dacs_IRQHandler ; Consolidated interrrupt for all DACs + +__Vectors_End + +__Vectors EQU __vector_table +__Vectors_Size EQU __Vectors_End - __Vectors + + SECTION .intvec_ram:DATA:REORDER:NOROOT(2) +__ramVectors + DS32 __Vectors_Size + + + THUMB + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;; Default handlers +;; + PUBWEAK Default_Handler + SECTION .text:CODE:REORDER:NOROOT(2) +Default_Handler + B Default_Handler + + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;; Weak function for startup customization +;; +;; Note. The global resources are not yet initialized (for example global variables, peripherals, clocks) +;; because this function is executed as the first instruction in the ResetHandler. +;; The PDL is also not initialized to use the proper register offsets. +;; The user of this function is responsible for initializing the PDL and resources before using them. +;; + PUBWEAK Cy_OnResetUser + SECTION .text:CODE:REORDER:NOROOT(2) +Cy_OnResetUser + BX LR + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;; Define strong version to return zero for +;; __iar_program_start to skip data sections +;; initialization. +;; + PUBLIC __low_level_init + SECTION .text:CODE:REORDER:NOROOT(2) +__low_level_init + MOVS R0, #0 + BX LR + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;; Default interrupt handlers. +;; + PUBWEAK Reset_Handler + SECTION .text:CODE:REORDER:NOROOT(2) +Reset_Handler + + ; Define strong function for startup customization + LDR R0, =Cy_OnResetUser + BLX R0 + + ; Disable global interrupts + CPSID I + + ; Copy vectors from ROM to RAM + LDR r1, =__vector_table + LDR r0, =__ramVectors + LDR r2, =__Vectors_Size +intvec_copy + LDR r3, [r1] + STR r3, [r0] + ADDS r0, r0, #4 + ADDS r1, r1, #4 + SUBS r2, r2, #1 + CMP r2, #0 + BNE intvec_copy + + ; Update Vector Table Offset Register + LDR r0, =__ramVectors + LDR r1, =0xE000ED08 + STR r0, [r1] + dsb + + ; Enable the FPU if used + LDR R0, =Cy_SystemInitFpuEnable + BLX R0 + + ; Initialize data sections + LDR R0, =__iar_data_init3 + BLX R0 + + LDR R0, =SystemInit + BLX R0 + + LDR R0, =__iar_program_start + BLX R0 + +; Should never get here +Cy_Main_Exited + B Cy_Main_Exited + + + PUBWEAK NMI_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +NMI_Handler + B NMI_Handler + + + PUBWEAK Cy_SysLib_FaultHandler + SECTION .text:CODE:REORDER:NOROOT(1) +Cy_SysLib_FaultHandler + B Cy_SysLib_FaultHandler + + PUBWEAK HardFault_Wrapper + SECTION .text:CODE:REORDER:NOROOT(1) +HardFault_Wrapper + IMPORT Cy_SysLib_FaultHandler + movs r0, #4 + mov r1, LR + tst r0, r1 + beq L_MSP + mrs r0, PSP + b L_API_call +L_MSP + mrs r0, MSP +L_API_call + ; Storing LR content for Creator call stack trace + push {LR} + bl Cy_SysLib_FaultHandler + + PUBWEAK HardFault_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +HardFault_Handler + B HardFault_Wrapper + + PUBWEAK MemManage_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +MemManage_Handler + B HardFault_Wrapper + + PUBWEAK BusFault_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +BusFault_Handler + B HardFault_Wrapper + + PUBWEAK UsageFault_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +UsageFault_Handler + B HardFault_Wrapper + + PUBWEAK SVC_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +SVC_Handler + B SVC_Handler + + PUBWEAK DebugMon_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +DebugMon_Handler + B DebugMon_Handler + + PUBWEAK PendSV_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +PendSV_Handler + B PendSV_Handler + + PUBWEAK SysTick_Handler + SECTION .text:CODE:REORDER:NOROOT(1) +SysTick_Handler + B SysTick_Handler + + + ; External interrupts + PUBWEAK ioss_interrupts_gpio_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_0_IRQHandler + B ioss_interrupts_gpio_0_IRQHandler + + PUBWEAK ioss_interrupts_gpio_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_1_IRQHandler + B ioss_interrupts_gpio_1_IRQHandler + + PUBWEAK ioss_interrupts_gpio_2_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_2_IRQHandler + B ioss_interrupts_gpio_2_IRQHandler + + PUBWEAK ioss_interrupts_gpio_3_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_3_IRQHandler + B ioss_interrupts_gpio_3_IRQHandler + + PUBWEAK ioss_interrupts_gpio_4_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_4_IRQHandler + B ioss_interrupts_gpio_4_IRQHandler + + PUBWEAK ioss_interrupts_gpio_5_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_5_IRQHandler + B ioss_interrupts_gpio_5_IRQHandler + + PUBWEAK ioss_interrupts_gpio_6_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_6_IRQHandler + B ioss_interrupts_gpio_6_IRQHandler + + PUBWEAK ioss_interrupts_gpio_7_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_7_IRQHandler + B ioss_interrupts_gpio_7_IRQHandler + + PUBWEAK ioss_interrupts_gpio_8_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_8_IRQHandler + B ioss_interrupts_gpio_8_IRQHandler + + PUBWEAK ioss_interrupts_gpio_9_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_9_IRQHandler + B ioss_interrupts_gpio_9_IRQHandler + + PUBWEAK ioss_interrupts_gpio_10_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_10_IRQHandler + B ioss_interrupts_gpio_10_IRQHandler + + PUBWEAK ioss_interrupts_gpio_11_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_11_IRQHandler + B ioss_interrupts_gpio_11_IRQHandler + + PUBWEAK ioss_interrupts_gpio_12_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_12_IRQHandler + B ioss_interrupts_gpio_12_IRQHandler + + PUBWEAK ioss_interrupts_gpio_13_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_13_IRQHandler + B ioss_interrupts_gpio_13_IRQHandler + + PUBWEAK ioss_interrupts_gpio_14_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupts_gpio_14_IRQHandler + B ioss_interrupts_gpio_14_IRQHandler + + PUBWEAK ioss_interrupt_gpio_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupt_gpio_IRQHandler + B ioss_interrupt_gpio_IRQHandler + + PUBWEAK ioss_interrupt_vdd_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +ioss_interrupt_vdd_IRQHandler + B ioss_interrupt_vdd_IRQHandler + + PUBWEAK lpcomp_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +lpcomp_interrupt_IRQHandler + B lpcomp_interrupt_IRQHandler + + PUBWEAK scb_8_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_8_interrupt_IRQHandler + B scb_8_interrupt_IRQHandler + + PUBWEAK srss_interrupt_mcwdt_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +srss_interrupt_mcwdt_0_IRQHandler + B srss_interrupt_mcwdt_0_IRQHandler + + PUBWEAK srss_interrupt_mcwdt_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +srss_interrupt_mcwdt_1_IRQHandler + B srss_interrupt_mcwdt_1_IRQHandler + + PUBWEAK srss_interrupt_backup_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +srss_interrupt_backup_IRQHandler + B srss_interrupt_backup_IRQHandler + + PUBWEAK srss_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +srss_interrupt_IRQHandler + B srss_interrupt_IRQHandler + + PUBWEAK pass_interrupt_ctbs_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +pass_interrupt_ctbs_IRQHandler + B pass_interrupt_ctbs_IRQHandler + + PUBWEAK bless_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +bless_interrupt_IRQHandler + B bless_interrupt_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_0_IRQHandler + B cpuss_interrupts_ipc_0_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_1_IRQHandler + B cpuss_interrupts_ipc_1_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_2_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_2_IRQHandler + B cpuss_interrupts_ipc_2_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_3_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_3_IRQHandler + B cpuss_interrupts_ipc_3_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_4_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_4_IRQHandler + B cpuss_interrupts_ipc_4_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_5_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_5_IRQHandler + B cpuss_interrupts_ipc_5_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_6_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_6_IRQHandler + B cpuss_interrupts_ipc_6_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_7_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_7_IRQHandler + B cpuss_interrupts_ipc_7_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_8_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_8_IRQHandler + B cpuss_interrupts_ipc_8_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_9_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_9_IRQHandler + B cpuss_interrupts_ipc_9_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_10_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_10_IRQHandler + B cpuss_interrupts_ipc_10_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_11_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_11_IRQHandler + B cpuss_interrupts_ipc_11_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_12_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_12_IRQHandler + B cpuss_interrupts_ipc_12_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_13_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_13_IRQHandler + B cpuss_interrupts_ipc_13_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_14_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_14_IRQHandler + B cpuss_interrupts_ipc_14_IRQHandler + + PUBWEAK cpuss_interrupts_ipc_15_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_ipc_15_IRQHandler + B cpuss_interrupts_ipc_15_IRQHandler + + PUBWEAK scb_0_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_0_interrupt_IRQHandler + B scb_0_interrupt_IRQHandler + + PUBWEAK scb_1_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_1_interrupt_IRQHandler + B scb_1_interrupt_IRQHandler + + PUBWEAK scb_2_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_2_interrupt_IRQHandler + B scb_2_interrupt_IRQHandler + + PUBWEAK scb_3_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_3_interrupt_IRQHandler + B scb_3_interrupt_IRQHandler + + PUBWEAK scb_4_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_4_interrupt_IRQHandler + B scb_4_interrupt_IRQHandler + + PUBWEAK scb_5_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_5_interrupt_IRQHandler + B scb_5_interrupt_IRQHandler + + PUBWEAK scb_6_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_6_interrupt_IRQHandler + B scb_6_interrupt_IRQHandler + + PUBWEAK scb_7_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +scb_7_interrupt_IRQHandler + B scb_7_interrupt_IRQHandler + + PUBWEAK csd_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +csd_interrupt_IRQHandler + B csd_interrupt_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_0_IRQHandler + B cpuss_interrupts_dw0_0_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_1_IRQHandler + B cpuss_interrupts_dw0_1_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_2_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_2_IRQHandler + B cpuss_interrupts_dw0_2_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_3_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_3_IRQHandler + B cpuss_interrupts_dw0_3_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_4_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_4_IRQHandler + B cpuss_interrupts_dw0_4_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_5_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_5_IRQHandler + B cpuss_interrupts_dw0_5_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_6_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_6_IRQHandler + B cpuss_interrupts_dw0_6_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_7_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_7_IRQHandler + B cpuss_interrupts_dw0_7_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_8_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_8_IRQHandler + B cpuss_interrupts_dw0_8_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_9_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_9_IRQHandler + B cpuss_interrupts_dw0_9_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_10_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_10_IRQHandler + B cpuss_interrupts_dw0_10_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_11_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_11_IRQHandler + B cpuss_interrupts_dw0_11_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_12_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_12_IRQHandler + B cpuss_interrupts_dw0_12_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_13_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_13_IRQHandler + B cpuss_interrupts_dw0_13_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_14_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_14_IRQHandler + B cpuss_interrupts_dw0_14_IRQHandler + + PUBWEAK cpuss_interrupts_dw0_15_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw0_15_IRQHandler + B cpuss_interrupts_dw0_15_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_0_IRQHandler + B cpuss_interrupts_dw1_0_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_1_IRQHandler + B cpuss_interrupts_dw1_1_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_2_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_2_IRQHandler + B cpuss_interrupts_dw1_2_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_3_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_3_IRQHandler + B cpuss_interrupts_dw1_3_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_4_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_4_IRQHandler + B cpuss_interrupts_dw1_4_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_5_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_5_IRQHandler + B cpuss_interrupts_dw1_5_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_6_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_6_IRQHandler + B cpuss_interrupts_dw1_6_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_7_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_7_IRQHandler + B cpuss_interrupts_dw1_7_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_8_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_8_IRQHandler + B cpuss_interrupts_dw1_8_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_9_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_9_IRQHandler + B cpuss_interrupts_dw1_9_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_10_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_10_IRQHandler + B cpuss_interrupts_dw1_10_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_11_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_11_IRQHandler + B cpuss_interrupts_dw1_11_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_12_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_12_IRQHandler + B cpuss_interrupts_dw1_12_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_13_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_13_IRQHandler + B cpuss_interrupts_dw1_13_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_14_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_14_IRQHandler + B cpuss_interrupts_dw1_14_IRQHandler + + PUBWEAK cpuss_interrupts_dw1_15_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_dw1_15_IRQHandler + B cpuss_interrupts_dw1_15_IRQHandler + + PUBWEAK cpuss_interrupts_fault_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_fault_0_IRQHandler + B cpuss_interrupts_fault_0_IRQHandler + + PUBWEAK cpuss_interrupts_fault_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_fault_1_IRQHandler + B cpuss_interrupts_fault_1_IRQHandler + + PUBWEAK cpuss_interrupt_crypto_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupt_crypto_IRQHandler + B cpuss_interrupt_crypto_IRQHandler + + PUBWEAK cpuss_interrupt_fm_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupt_fm_IRQHandler + B cpuss_interrupt_fm_IRQHandler + + PUBWEAK cpuss_interrupts_cm0_cti_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_cm0_cti_0_IRQHandler + B cpuss_interrupts_cm0_cti_0_IRQHandler + + PUBWEAK cpuss_interrupts_cm0_cti_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_cm0_cti_1_IRQHandler + B cpuss_interrupts_cm0_cti_1_IRQHandler + + PUBWEAK cpuss_interrupts_cm4_cti_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_cm4_cti_0_IRQHandler + B cpuss_interrupts_cm4_cti_0_IRQHandler + + PUBWEAK cpuss_interrupts_cm4_cti_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +cpuss_interrupts_cm4_cti_1_IRQHandler + B cpuss_interrupts_cm4_cti_1_IRQHandler + + PUBWEAK tcpwm_0_interrupts_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_0_interrupts_0_IRQHandler + B tcpwm_0_interrupts_0_IRQHandler + + PUBWEAK tcpwm_0_interrupts_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_0_interrupts_1_IRQHandler + B tcpwm_0_interrupts_1_IRQHandler + + PUBWEAK tcpwm_0_interrupts_2_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_0_interrupts_2_IRQHandler + B tcpwm_0_interrupts_2_IRQHandler + + PUBWEAK tcpwm_0_interrupts_3_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_0_interrupts_3_IRQHandler + B tcpwm_0_interrupts_3_IRQHandler + + PUBWEAK tcpwm_0_interrupts_4_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_0_interrupts_4_IRQHandler + B tcpwm_0_interrupts_4_IRQHandler + + PUBWEAK tcpwm_0_interrupts_5_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_0_interrupts_5_IRQHandler + B tcpwm_0_interrupts_5_IRQHandler + + PUBWEAK tcpwm_0_interrupts_6_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_0_interrupts_6_IRQHandler + B tcpwm_0_interrupts_6_IRQHandler + + PUBWEAK tcpwm_0_interrupts_7_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_0_interrupts_7_IRQHandler + B tcpwm_0_interrupts_7_IRQHandler + + PUBWEAK tcpwm_1_interrupts_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_0_IRQHandler + B tcpwm_1_interrupts_0_IRQHandler + + PUBWEAK tcpwm_1_interrupts_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_1_IRQHandler + B tcpwm_1_interrupts_1_IRQHandler + + PUBWEAK tcpwm_1_interrupts_2_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_2_IRQHandler + B tcpwm_1_interrupts_2_IRQHandler + + PUBWEAK tcpwm_1_interrupts_3_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_3_IRQHandler + B tcpwm_1_interrupts_3_IRQHandler + + PUBWEAK tcpwm_1_interrupts_4_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_4_IRQHandler + B tcpwm_1_interrupts_4_IRQHandler + + PUBWEAK tcpwm_1_interrupts_5_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_5_IRQHandler + B tcpwm_1_interrupts_5_IRQHandler + + PUBWEAK tcpwm_1_interrupts_6_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_6_IRQHandler + B tcpwm_1_interrupts_6_IRQHandler + + PUBWEAK tcpwm_1_interrupts_7_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_7_IRQHandler + B tcpwm_1_interrupts_7_IRQHandler + + PUBWEAK tcpwm_1_interrupts_8_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_8_IRQHandler + B tcpwm_1_interrupts_8_IRQHandler + + PUBWEAK tcpwm_1_interrupts_9_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_9_IRQHandler + B tcpwm_1_interrupts_9_IRQHandler + + PUBWEAK tcpwm_1_interrupts_10_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_10_IRQHandler + B tcpwm_1_interrupts_10_IRQHandler + + PUBWEAK tcpwm_1_interrupts_11_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_11_IRQHandler + B tcpwm_1_interrupts_11_IRQHandler + + PUBWEAK tcpwm_1_interrupts_12_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_12_IRQHandler + B tcpwm_1_interrupts_12_IRQHandler + + PUBWEAK tcpwm_1_interrupts_13_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_13_IRQHandler + B tcpwm_1_interrupts_13_IRQHandler + + PUBWEAK tcpwm_1_interrupts_14_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_14_IRQHandler + B tcpwm_1_interrupts_14_IRQHandler + + PUBWEAK tcpwm_1_interrupts_15_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_15_IRQHandler + B tcpwm_1_interrupts_15_IRQHandler + + PUBWEAK tcpwm_1_interrupts_16_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_16_IRQHandler + B tcpwm_1_interrupts_16_IRQHandler + + PUBWEAK tcpwm_1_interrupts_17_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_17_IRQHandler + B tcpwm_1_interrupts_17_IRQHandler + + PUBWEAK tcpwm_1_interrupts_18_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_18_IRQHandler + B tcpwm_1_interrupts_18_IRQHandler + + PUBWEAK tcpwm_1_interrupts_19_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_19_IRQHandler + B tcpwm_1_interrupts_19_IRQHandler + + PUBWEAK tcpwm_1_interrupts_20_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_20_IRQHandler + B tcpwm_1_interrupts_20_IRQHandler + + PUBWEAK tcpwm_1_interrupts_21_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_21_IRQHandler + B tcpwm_1_interrupts_21_IRQHandler + + PUBWEAK tcpwm_1_interrupts_22_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_22_IRQHandler + B tcpwm_1_interrupts_22_IRQHandler + + PUBWEAK tcpwm_1_interrupts_23_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +tcpwm_1_interrupts_23_IRQHandler + B tcpwm_1_interrupts_23_IRQHandler + + PUBWEAK udb_interrupts_0_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_0_IRQHandler + B udb_interrupts_0_IRQHandler + + PUBWEAK udb_interrupts_1_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_1_IRQHandler + B udb_interrupts_1_IRQHandler + + PUBWEAK udb_interrupts_2_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_2_IRQHandler + B udb_interrupts_2_IRQHandler + + PUBWEAK udb_interrupts_3_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_3_IRQHandler + B udb_interrupts_3_IRQHandler + + PUBWEAK udb_interrupts_4_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_4_IRQHandler + B udb_interrupts_4_IRQHandler + + PUBWEAK udb_interrupts_5_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_5_IRQHandler + B udb_interrupts_5_IRQHandler + + PUBWEAK udb_interrupts_6_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_6_IRQHandler + B udb_interrupts_6_IRQHandler + + PUBWEAK udb_interrupts_7_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_7_IRQHandler + B udb_interrupts_7_IRQHandler + + PUBWEAK udb_interrupts_8_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_8_IRQHandler + B udb_interrupts_8_IRQHandler + + PUBWEAK udb_interrupts_9_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_9_IRQHandler + B udb_interrupts_9_IRQHandler + + PUBWEAK udb_interrupts_10_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_10_IRQHandler + B udb_interrupts_10_IRQHandler + + PUBWEAK udb_interrupts_11_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_11_IRQHandler + B udb_interrupts_11_IRQHandler + + PUBWEAK udb_interrupts_12_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_12_IRQHandler + B udb_interrupts_12_IRQHandler + + PUBWEAK udb_interrupts_13_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_13_IRQHandler + B udb_interrupts_13_IRQHandler + + PUBWEAK udb_interrupts_14_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_14_IRQHandler + B udb_interrupts_14_IRQHandler + + PUBWEAK udb_interrupts_15_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +udb_interrupts_15_IRQHandler + B udb_interrupts_15_IRQHandler + + PUBWEAK pass_interrupt_sar_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +pass_interrupt_sar_IRQHandler + B pass_interrupt_sar_IRQHandler + + PUBWEAK audioss_interrupt_i2s_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +audioss_interrupt_i2s_IRQHandler + B audioss_interrupt_i2s_IRQHandler + + PUBWEAK audioss_interrupt_pdm_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +audioss_interrupt_pdm_IRQHandler + B audioss_interrupt_pdm_IRQHandler + + PUBWEAK profile_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +profile_interrupt_IRQHandler + B profile_interrupt_IRQHandler + + PUBWEAK smif_interrupt_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +smif_interrupt_IRQHandler + B smif_interrupt_IRQHandler + + PUBWEAK usb_interrupt_hi_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +usb_interrupt_hi_IRQHandler + B usb_interrupt_hi_IRQHandler + + PUBWEAK usb_interrupt_med_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +usb_interrupt_med_IRQHandler + B usb_interrupt_med_IRQHandler + + PUBWEAK usb_interrupt_lo_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +usb_interrupt_lo_IRQHandler + B usb_interrupt_lo_IRQHandler + + PUBWEAK pass_interrupt_dacs_IRQHandler + SECTION .text:CODE:REORDER:NOROOT(1) +pass_interrupt_dacs_IRQHandler + B pass_interrupt_dacs_IRQHandler + + + END + + +; [] END OF FILE diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/system_psoc6_cm4.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/system_psoc6_cm4.c new file mode 100644 index 00000000000..a5408385ee6 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/system_psoc6_cm4.c @@ -0,0 +1,552 @@ +/***************************************************************************//** +* \file system_psoc6_cm4.c +* \version 2.50 +* +* The device system-source file. +* +******************************************************************************** +* \copyright +* Copyright 2016-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*******************************************************************************/ + +#include +#include "system_psoc6.h" +#include "cy_device.h" +#include "cy_device_headers.h" +#include "cy_syslib.h" +#include "cy_wdt.h" + +#if !defined(CY_IPC_DEFAULT_CFG_DISABLE) + #include "cy_ipc_sema.h" + #include "cy_ipc_pipe.h" + #include "cy_ipc_drv.h" + + #if defined(CY_DEVICE_PSOC6ABLE2) + #include "cy_flash.h" + #endif /* defined(CY_DEVICE_PSOC6ABLE2) */ +#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ + + +/******************************************************************************* +* SystemCoreClockUpdate() +*******************************************************************************/ + +/** Default HFClk frequency in Hz */ +#define CY_CLK_HFCLK0_FREQ_HZ_DEFAULT (8000000UL) + +/** Default PeriClk frequency in Hz */ +#define CY_CLK_PERICLK_FREQ_HZ_DEFAULT (4000000UL) + +/** Default SlowClk system core frequency in Hz */ +#define CY_CLK_SYSTEM_FREQ_HZ_DEFAULT (8000000UL) + +/** IMO frequency in Hz */ +#define CY_CLK_IMO_FREQ_HZ (8000000UL) + +/** HVILO frequency in Hz */ +#define CY_CLK_HVILO_FREQ_HZ (32000UL) + +/** PILO frequency in Hz */ +#define CY_CLK_PILO_FREQ_HZ (32768UL) + +/** WCO frequency in Hz */ +#define CY_CLK_WCO_FREQ_HZ (32768UL) + +/** ALTLF frequency in Hz */ +#define CY_CLK_ALTLF_FREQ_HZ (32768UL) + + +/** +* Holds the SlowClk (Cortex-M0+) or FastClk (Cortex-M4) system core clock, +* which is the system clock frequency supplied to the SysTick timer and the +* processor core clock. +* This variable implements CMSIS Core global variable. +* Refer to the [CMSIS documentation] +* (http://www.keil.com/pack/doc/CMSIS/Core/html/group__system__init__gr.html "System and Clock Configuration") +* for more details. +* This variable can be used by debuggers to query the frequency +* of the debug timer or to configure the trace clock speed. +* +* \attention Compilers must be configured to avoid removing this variable in case +* the application program is not using it. Debugging systems require the variable +* to be physically present in memory so that it can be examined to configure the debugger. */ +uint32_t SystemCoreClock = CY_CLK_SYSTEM_FREQ_HZ_DEFAULT; + +/** Holds the HFClk0 clock frequency. Updated by \ref SystemCoreClockUpdate(). */ +uint32_t cy_Hfclk0FreqHz = CY_CLK_HFCLK0_FREQ_HZ_DEFAULT; + +/** Holds the PeriClk clock frequency. Updated by \ref SystemCoreClockUpdate(). */ +uint32_t cy_PeriClkFreqHz = CY_CLK_PERICLK_FREQ_HZ_DEFAULT; + +/** Holds the Alternate high frequency clock in Hz. Updated by \ref SystemCoreClockUpdate(). */ +#if (defined (CY_IP_MXBLESS) && (CY_IP_MXBLESS == 1UL)) || defined (CY_DOXYGEN) + uint32_t cy_BleEcoClockFreqHz = CY_CLK_ALTHF_FREQ_HZ; +#endif /* (defined (CY_IP_MXBLESS) && (CY_IP_MXBLESS == 1UL)) || defined (CY_DOXYGEN) */ + +/* SCB->CPACR */ +#define SCB_CPACR_CP10_CP11_ENABLE (0xFUL << 20u) + + +/******************************************************************************* +* SystemInit() +*******************************************************************************/ + +/* CLK_FLL_CONFIG default values */ +#define CY_FB_CLK_FLL_CONFIG_VALUE (0x01000000u) +#define CY_FB_CLK_FLL_CONFIG2_VALUE (0x00020001u) +#define CY_FB_CLK_FLL_CONFIG3_VALUE (0x00002800u) +#define CY_FB_CLK_FLL_CONFIG4_VALUE (0x000000FFu) + + +/******************************************************************************* +* SystemCoreClockUpdate (void) +*******************************************************************************/ + +/* Do not use these definitions directly in your application */ +#define CY_DELAY_MS_OVERFLOW_THRESHOLD (0x8000u) +#define CY_DELAY_1K_THRESHOLD (1000u) +#define CY_DELAY_1K_MINUS_1_THRESHOLD (CY_DELAY_1K_THRESHOLD - 1u) +#define CY_DELAY_1M_THRESHOLD (1000000u) +#define CY_DELAY_1M_MINUS_1_THRESHOLD (CY_DELAY_1M_THRESHOLD - 1u) +uint32_t cy_delayFreqHz = CY_CLK_SYSTEM_FREQ_HZ_DEFAULT; + +uint32_t cy_delayFreqKhz = (CY_CLK_SYSTEM_FREQ_HZ_DEFAULT + CY_DELAY_1K_MINUS_1_THRESHOLD) / + CY_DELAY_1K_THRESHOLD; + +uint8_t cy_delayFreqMhz = (uint8_t)((CY_CLK_SYSTEM_FREQ_HZ_DEFAULT + CY_DELAY_1M_MINUS_1_THRESHOLD) / + CY_DELAY_1M_THRESHOLD); + +uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD * + ((CY_CLK_SYSTEM_FREQ_HZ_DEFAULT + CY_DELAY_1K_MINUS_1_THRESHOLD) / CY_DELAY_1K_THRESHOLD); + +#define CY_ROOT_PATH_SRC_IMO (0UL) +#define CY_ROOT_PATH_SRC_EXT (1UL) +#if (SRSS_ECO_PRESENT == 1U) + #define CY_ROOT_PATH_SRC_ECO (2UL) +#endif /* (SRSS_ECO_PRESENT == 1U) */ +#if (SRSS_ALTHF_PRESENT == 1U) + #define CY_ROOT_PATH_SRC_ALTHF (3UL) +#endif /* (SRSS_ALTHF_PRESENT == 1U) */ +#define CY_ROOT_PATH_SRC_DSI_MUX (4UL) +#define CY_ROOT_PATH_SRC_DSI_MUX_HVILO (16UL) +#define CY_ROOT_PATH_SRC_DSI_MUX_WCO (17UL) +#if (SRSS_ALTLF_PRESENT == 1U) + #define CY_ROOT_PATH_SRC_DSI_MUX_ALTLF (18UL) +#endif /* (SRSS_ALTLF_PRESENT == 1U) */ +#if (SRSS_PILO_PRESENT == 1U) + #define CY_ROOT_PATH_SRC_DSI_MUX_PILO (19UL) +#endif /* (SRSS_PILO_PRESENT == 1U) */ + + +/******************************************************************************* +* Function Name: SystemInit +****************************************************************************//** +* \cond +* Initializes the system: +* - Restores FLL registers to the default state for single core devices. +* - Unlocks and disables WDT. +* - Calls Cy_PDL_Init() function to define the driver library. +* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. +* - Calls \ref SystemCoreClockUpdate(). +* \endcond +*******************************************************************************/ +void SystemInit(void) +{ + Cy_PDL_Init(CY_DEVICE_CFG); + +#ifdef __CM0P_PRESENT + #if (__CM0P_PRESENT == 0) + /* Restore FLL registers to the default state as they are not restored by the ROM code */ + uint32_t copy = SRSS->CLK_FLL_CONFIG; + copy &= ~SRSS_CLK_FLL_CONFIG_FLL_ENABLE_Msk; + SRSS->CLK_FLL_CONFIG = copy; + + copy = SRSS->CLK_ROOT_SELECT[0u]; + copy &= ~SRSS_CLK_ROOT_SELECT_ROOT_DIV_Msk; /* Set ROOT_DIV = 0*/ + SRSS->CLK_ROOT_SELECT[0u] = copy; + + SRSS->CLK_FLL_CONFIG = CY_FB_CLK_FLL_CONFIG_VALUE; + SRSS->CLK_FLL_CONFIG2 = CY_FB_CLK_FLL_CONFIG2_VALUE; + SRSS->CLK_FLL_CONFIG3 = CY_FB_CLK_FLL_CONFIG3_VALUE; + SRSS->CLK_FLL_CONFIG4 = CY_FB_CLK_FLL_CONFIG4_VALUE; + + /* Unlock and disable WDT */ + Cy_WDT_Unlock(); + Cy_WDT_Disable(); + #endif /* (__CM0P_PRESENT == 0) */ +#endif /* __CM0P_PRESENT */ + + Cy_SystemInit(); + SystemCoreClockUpdate(); + +#if !defined(CY_IPC_DEFAULT_CFG_DISABLE) + +#ifdef __CM0P_PRESENT + #if (__CM0P_PRESENT == 0) + /* Allocate and initialize semaphores for the system operations. */ + static uint32_t ipcSemaArray[CY_IPC_SEMA_COUNT / CY_IPC_SEMA_PER_WORD]; + (void) Cy_IPC_Sema_Init(CY_IPC_CHAN_SEMA, CY_IPC_SEMA_COUNT, ipcSemaArray); + #else + (void) Cy_IPC_Sema_Init(CY_IPC_CHAN_SEMA, 0ul, NULL); + #endif /* (__CM0P_PRESENT) */ +#else + (void) Cy_IPC_Sema_Init(CY_IPC_CHAN_SEMA, 0ul, NULL); +#endif /* __CM0P_PRESENT */ + + + /******************************************************************************** + * + * Initializes the system pipes. The system pipes are used by BLE and Flash. + * + * If the default startup file is not used, or SystemInit() is not called in your + * project, call the following three functions prior to executing any flash or + * EmEEPROM write or erase operation: + * -# Cy_IPC_Sema_Init() + * -# Cy_IPC_Pipe_Config() + * -# Cy_IPC_Pipe_Init() + * -# Cy_Flash_Init() + * + *******************************************************************************/ + /* Create an array of endpoint structures */ + static cy_stc_ipc_pipe_ep_t systemIpcPipeEpArray[CY_IPC_MAX_ENDPOINTS]; + + Cy_IPC_Pipe_Config(systemIpcPipeEpArray); + + static cy_ipc_pipe_callback_ptr_t systemIpcPipeSysCbArray[CY_SYS_CYPIPE_CLIENT_CNT]; + + static const cy_stc_ipc_pipe_config_t systemIpcPipeConfigCm4 = + { + /* .ep0ConfigData */ + { + /* .ipcNotifierNumber */ CY_IPC_INTR_CYPIPE_EP0, + /* .ipcNotifierPriority */ CY_SYS_INTR_CYPIPE_PRIOR_EP0, + /* .ipcNotifierMuxNumber */ CY_SYS_INTR_CYPIPE_MUX_EP0, + /* .epAddress */ CY_IPC_EP_CYPIPE_CM0_ADDR, + /* .epConfig */ CY_SYS_CYPIPE_CONFIG_EP0 + }, + /* .ep1ConfigData */ + { + /* .ipcNotifierNumber */ CY_IPC_INTR_CYPIPE_EP1, + /* .ipcNotifierPriority */ CY_SYS_INTR_CYPIPE_PRIOR_EP1, + /* .ipcNotifierMuxNumber */ 0u, + /* .epAddress */ CY_IPC_EP_CYPIPE_CM4_ADDR, + /* .epConfig */ CY_SYS_CYPIPE_CONFIG_EP1 + }, + /* .endpointClientsCount */ CY_SYS_CYPIPE_CLIENT_CNT, + /* .endpointsCallbacksArray */ systemIpcPipeSysCbArray, + /* .userPipeIsrHandler */ &Cy_SysIpcPipeIsrCm4 + }; + + if (cy_device->flashPipeRequired != 0u) + { + Cy_IPC_Pipe_Init(&systemIpcPipeConfigCm4); + } + +#if defined(CY_DEVICE_PSOC6ABLE2) + Cy_Flash_Init(); +#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ + +#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ +} + + +/******************************************************************************* +* Function Name: Cy_SystemInit +****************************************************************************//** +* +* The function is called during device startup. Once project compiled as part of +* the PSoC Creator project, the Cy_SystemInit() function is generated by the +* PSoC Creator. +* +* The function generated by PSoC Creator performs all of the necessary device +* configuration based on the design settings. This includes settings from the +* Design Wide Resources (DWR) such as Clocks and Pins as well as any component +* configuration that is necessary. +* +*******************************************************************************/ +__WEAK void Cy_SystemInit(void) +{ + /* Empty weak function. The actual implementation to be in the PSoC Creator + * generated strong function. + */ +} + + +/******************************************************************************* +* Function Name: SystemCoreClockUpdate +****************************************************************************//** +* +* Gets core clock frequency and updates \ref SystemCoreClock, \ref +* cy_Hfclk0FreqHz, and \ref cy_PeriClkFreqHz. +* +* Updates global variables used by the \ref Cy_SysLib_Delay(), \ref +* Cy_SysLib_DelayUs(), and \ref Cy_SysLib_DelayCycles(). +* +*******************************************************************************/ +void SystemCoreClockUpdate (void) +{ + uint32_t srcFreqHz; + uint32_t pathFreqHz; + uint32_t fastClkDiv; + uint32_t periClkDiv; + uint32_t rootPath; + uint32_t srcClk; + + /* Get root path clock for the high-frequency clock # 0 */ + rootPath = _FLD2VAL(SRSS_CLK_ROOT_SELECT_ROOT_MUX, SRSS->CLK_ROOT_SELECT[0u]); + + /* Get source of the root path clock */ + srcClk = _FLD2VAL(SRSS_CLK_PATH_SELECT_PATH_MUX, SRSS->CLK_PATH_SELECT[rootPath]); + + /* Get frequency of the source */ + switch (srcClk) + { + case CY_ROOT_PATH_SRC_IMO: + srcFreqHz = CY_CLK_IMO_FREQ_HZ; + break; + + case CY_ROOT_PATH_SRC_EXT: + srcFreqHz = CY_CLK_EXT_FREQ_HZ; + break; + + #if (SRSS_ECO_PRESENT == 1U) + case CY_ROOT_PATH_SRC_ECO: + srcFreqHz = CY_CLK_ECO_FREQ_HZ; + break; + #endif /* (SRSS_ECO_PRESENT == 1U) */ + +#if defined (CY_IP_MXBLESS) && (CY_IP_MXBLESS == 1UL) && (SRSS_ALTHF_PRESENT == 1U) + case CY_ROOT_PATH_SRC_ALTHF: + srcFreqHz = cy_BleEcoClockFreqHz; + break; +#endif /* defined (CY_IP_MXBLESS) && (CY_IP_MXBLESS == 1UL) && (SRSS_ALTHF_PRESENT == 1U) */ + + case CY_ROOT_PATH_SRC_DSI_MUX: + { + uint32_t dsi_src; + dsi_src = _FLD2VAL(SRSS_CLK_DSI_SELECT_DSI_MUX, SRSS->CLK_DSI_SELECT[rootPath]); + switch (dsi_src) + { + case CY_ROOT_PATH_SRC_DSI_MUX_HVILO: + srcFreqHz = CY_CLK_HVILO_FREQ_HZ; + break; + + case CY_ROOT_PATH_SRC_DSI_MUX_WCO: + srcFreqHz = CY_CLK_WCO_FREQ_HZ; + break; + + #if (SRSS_ALTLF_PRESENT == 1U) + case CY_ROOT_PATH_SRC_DSI_MUX_ALTLF: + srcFreqHz = CY_CLK_ALTLF_FREQ_HZ; + break; + #endif /* (SRSS_ALTLF_PRESENT == 1U) */ + + #if (SRSS_PILO_PRESENT == 1U) + case CY_ROOT_PATH_SRC_DSI_MUX_PILO: + srcFreqHz = CY_CLK_PILO_FREQ_HZ; + break; + #endif /* (SRSS_PILO_PRESENT == 1U) */ + + default: + srcFreqHz = CY_CLK_HVILO_FREQ_HZ; + break; + } + } + break; + + default: + srcFreqHz = CY_CLK_EXT_FREQ_HZ; + break; + } + + if (rootPath == 0UL) + { + /* FLL */ + bool fllLocked = ( 0UL != _FLD2VAL(SRSS_CLK_FLL_STATUS_LOCKED, SRSS->CLK_FLL_STATUS)); + bool fllOutputOutput = ( 3UL == _FLD2VAL(SRSS_CLK_FLL_CONFIG3_BYPASS_SEL, SRSS->CLK_FLL_CONFIG3)); + bool fllOutputAuto = ((0UL == _FLD2VAL(SRSS_CLK_FLL_CONFIG3_BYPASS_SEL, SRSS->CLK_FLL_CONFIG3)) || + (1UL == _FLD2VAL(SRSS_CLK_FLL_CONFIG3_BYPASS_SEL, SRSS->CLK_FLL_CONFIG3))); + if ((fllOutputAuto && fllLocked) || fllOutputOutput) + { + uint32_t fllMult; + uint32_t refDiv; + uint32_t outputDiv; + + fllMult = _FLD2VAL(SRSS_CLK_FLL_CONFIG_FLL_MULT, SRSS->CLK_FLL_CONFIG); + refDiv = _FLD2VAL(SRSS_CLK_FLL_CONFIG2_FLL_REF_DIV, SRSS->CLK_FLL_CONFIG2); + outputDiv = _FLD2VAL(SRSS_CLK_FLL_CONFIG_FLL_OUTPUT_DIV, SRSS->CLK_FLL_CONFIG) + 1UL; + + pathFreqHz = ((srcFreqHz / refDiv) * fllMult) / outputDiv; + } + else + { + pathFreqHz = srcFreqHz; + } + } + else if ((rootPath == 1UL) || (rootPath == 2UL)) + { + /* PLL */ + bool pllLocked = ( 0UL != _FLD2VAL(SRSS_CLK_PLL_STATUS_LOCKED, SRSS->CLK_PLL_STATUS[rootPath - 1UL])); + bool pllOutputOutput = ( 3UL == _FLD2VAL(SRSS_CLK_PLL_CONFIG_BYPASS_SEL, SRSS->CLK_PLL_CONFIG[rootPath - 1UL])); + bool pllOutputAuto = ((0UL == _FLD2VAL(SRSS_CLK_PLL_CONFIG_BYPASS_SEL, SRSS->CLK_PLL_CONFIG[rootPath - 1UL])) || + (1UL == _FLD2VAL(SRSS_CLK_PLL_CONFIG_BYPASS_SEL, SRSS->CLK_PLL_CONFIG[rootPath - 1UL]))); + if ((pllOutputAuto && pllLocked) || pllOutputOutput) + { + uint32_t feedbackDiv; + uint32_t referenceDiv; + uint32_t outputDiv; + + feedbackDiv = _FLD2VAL(SRSS_CLK_PLL_CONFIG_FEEDBACK_DIV, SRSS->CLK_PLL_CONFIG[rootPath - 1UL]); + referenceDiv = _FLD2VAL(SRSS_CLK_PLL_CONFIG_REFERENCE_DIV, SRSS->CLK_PLL_CONFIG[rootPath - 1UL]); + outputDiv = _FLD2VAL(SRSS_CLK_PLL_CONFIG_OUTPUT_DIV, SRSS->CLK_PLL_CONFIG[rootPath - 1UL]); + + pathFreqHz = ((srcFreqHz * feedbackDiv) / referenceDiv) / outputDiv; + + } + else + { + pathFreqHz = srcFreqHz; + } + } + else + { + /* Direct */ + pathFreqHz = srcFreqHz; + } + + /* Get frequency after hf_clk pre-divider */ + pathFreqHz = pathFreqHz >> _FLD2VAL(SRSS_CLK_ROOT_SELECT_ROOT_DIV, SRSS->CLK_ROOT_SELECT[0u]); + cy_Hfclk0FreqHz = pathFreqHz; + + /* Fast Clock Divider */ + fastClkDiv = 1u + _FLD2VAL(CPUSS_CM4_CLOCK_CTL_FAST_INT_DIV, CPUSS->CM4_CLOCK_CTL); + + /* Peripheral Clock Divider */ + periClkDiv = 1u + _FLD2VAL(CPUSS_CM0_CLOCK_CTL_PERI_INT_DIV, CPUSS->CM0_CLOCK_CTL); + cy_PeriClkFreqHz = pathFreqHz / periClkDiv; + + pathFreqHz = pathFreqHz / fastClkDiv; + SystemCoreClock = pathFreqHz; + + /* Sets clock frequency for Delay API */ + cy_delayFreqHz = SystemCoreClock; + cy_delayFreqMhz = (uint8_t)((cy_delayFreqHz + CY_DELAY_1M_MINUS_1_THRESHOLD) / CY_DELAY_1M_THRESHOLD); + cy_delayFreqKhz = (cy_delayFreqHz + CY_DELAY_1K_MINUS_1_THRESHOLD) / CY_DELAY_1K_THRESHOLD; + cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD * cy_delayFreqKhz; +} + + +/******************************************************************************* +* Function Name: Cy_SystemInitFpuEnable +****************************************************************************//** +* +* Enables the FPU if it is used. The function is called from the startup file. +* +*******************************************************************************/ +void Cy_SystemInitFpuEnable(void) +{ + #if defined (__FPU_USED) && (__FPU_USED == 1U) + uint32_t interruptState; + interruptState = Cy_SysLib_EnterCriticalSection(); + SCB->CPACR |= SCB_CPACR_CP10_CP11_ENABLE; + __DSB(); + __ISB(); + Cy_SysLib_ExitCriticalSection(interruptState); + #endif /* (__FPU_USED) && (__FPU_USED == 1U) */ +} + + +#if !defined(CY_IPC_DEFAULT_CFG_DISABLE) +/******************************************************************************* +* Function Name: Cy_SysIpcPipeIsrCm4 +****************************************************************************//** +* +* This is the interrupt service routine for the system pipe. +* +*******************************************************************************/ +void Cy_SysIpcPipeIsrCm4(void) +{ + Cy_IPC_Pipe_ExecuteCallback(CY_IPC_EP_CYPIPE_CM4_ADDR); +} +#endif + + +/******************************************************************************* +* Function Name: Cy_MemorySymbols +****************************************************************************//** +* +* The intention of the function is to declare boundaries of the memories for the +* MDK compilers. For the rest of the supported compilers, this is done using +* linker configuration files. The following symbols used by the cymcuelftool. +* +*******************************************************************************/ +#if defined (__ARMCC_VERSION) && (__ARMCC_VERSION < 6010050) +__asm void Cy_MemorySymbols(void) +{ + /* Flash */ + EXPORT __cy_memory_0_start + EXPORT __cy_memory_0_length + EXPORT __cy_memory_0_row_size + + /* Working Flash */ + EXPORT __cy_memory_1_start + EXPORT __cy_memory_1_length + EXPORT __cy_memory_1_row_size + + /* Supervisory Flash */ + EXPORT __cy_memory_2_start + EXPORT __cy_memory_2_length + EXPORT __cy_memory_2_row_size + + /* XIP */ + EXPORT __cy_memory_3_start + EXPORT __cy_memory_3_length + EXPORT __cy_memory_3_row_size + + /* eFuse */ + EXPORT __cy_memory_4_start + EXPORT __cy_memory_4_length + EXPORT __cy_memory_4_row_size + + /* Flash */ +__cy_memory_0_start EQU __cpp(CY_FLASH_BASE) +__cy_memory_0_length EQU __cpp(CY_FLASH_SIZE) +__cy_memory_0_row_size EQU 0x200 + + /* Flash region for EEPROM emulation */ +__cy_memory_1_start EQU __cpp(CY_EM_EEPROM_BASE) +__cy_memory_1_length EQU __cpp(CY_EM_EEPROM_SIZE) +__cy_memory_1_row_size EQU 0x200 + + /* Supervisory Flash */ +__cy_memory_2_start EQU __cpp(CY_SFLASH_BASE) +__cy_memory_2_length EQU __cpp(CY_SFLASH_SIZE) +__cy_memory_2_row_size EQU 0x200 + + /* XIP */ +__cy_memory_3_start EQU __cpp(CY_XIP_BASE) +__cy_memory_3_length EQU __cpp(CY_XIP_SIZE) +__cy_memory_3_row_size EQU 0x200 + + /* eFuse */ +__cy_memory_4_start EQU __cpp(0x90700000) +__cy_memory_4_length EQU __cpp(0x100000) +__cy_memory_4_row_size EQU __cpp(1) +} +#endif /* defined (__ARMCC_VERSION) && (__ARMCC_VERSION < 6010050) */ + + +/* [] END OF FILE */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/system_psoc6.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/system_psoc6.h new file mode 100644 index 00000000000..53bc71262c6 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/system_psoc6.h @@ -0,0 +1,675 @@ +/***************************************************************************//** +* \file system_psoc6.h +* \version 2.50 +* +* \brief Device system header file. +* +******************************************************************************** +* \copyright +* Copyright 2016-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*******************************************************************************/ + + +#ifndef _SYSTEM_PSOC6_H_ +#define _SYSTEM_PSOC6_H_ + +/** +* \addtogroup group_system_config +* \{ +* Provides device startup, system configuration, and linker script files. +* The system startup provides the followings features: +* - See \ref group_system_config_device_initialization for the: +* * \ref group_system_config_dual_core_device_initialization +* * \ref group_system_config_single_core_device_initialization +* - \ref group_system_config_device_memory_definition +* - \ref group_system_config_heap_stack_config +* - \ref group_system_config_merge_apps +* - \ref group_system_config_default_handlers +* - \ref group_system_config_device_vector_table +* - \ref group_system_config_cm4_functions +* +* \section group_system_config_configuration Configuration Considerations +* +* \subsection group_system_config_device_memory_definition Device Memory Definition +* The flash and RAM allocation for each CPU is defined by the linker scripts. +* For dual-core devices, the physical flash and RAM memory is shared between the CPU cores. +* 2 KB of RAM (allocated at the end of RAM) are reserved for system use. +* For Single-Core devices the system reserves additional 80 bytes of RAM. +* Using the reserved memory area for other purposes will lead to unexpected behavior. +* +* \note The linker files provided with the PDL are generic and handle all common +* use cases. Your project may not use every section defined in the linker files. +* In that case you may see warnings during the build process. To eliminate build +* warnings in your project, you can simply comment out or remove the relevant +* code in the linker file. +* +* ARM GCC\n +* The flash and RAM sections for the CPU are defined in the linker files: +* 'xx_yy.ld', where 'xx' is the device group, and 'yy' is the target CPU; for example, +* 'cy8c6xx7_cm0plus.ld' and 'cy8c6xx7_cm4_dual.ld'. +* \note If the start of the Cortex-M4 application image is changed, the value +* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The +* \ref CY_CORTEX_M4_APPL_ADDR macro should be used as the parameter for the +* Cy_SysEnableCM4() function call. +* +* Change the flash and RAM sizes by editing the macros value in the +* linker files for both CPUs: +* - 'xx_cm0plus.ld', where 'xx' is the device group: +* \code +* flash (rx) : ORIGIN = 0x10000000, LENGTH = 0x00080000 +* ram (rwx) : ORIGIN = 0x08000000, LENGTH = 0x00024000 +* \endcode +* - 'xx_cm4_dual.ld', where 'xx' is the device group: +* \code +* flash (rx) : ORIGIN = 0x10080000, LENGTH = 0x00080000 +* ram (rwx) : ORIGIN = 0x08024000, LENGTH = 0x00023800 +* \endcode +* +* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the rom ORIGIN's +* value in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. Do this +* by either: +* - Passing the following commands to the compiler:\n +* \code -D CY_CORTEX_M4_APPL_ADDR=0x10080000 \endcode +* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where 'xx' is device family:\n +* \code #define CY_CORTEX_M4_APPL_ADDR (0x10080000u) \endcode +* +* ARM MDK\n +* The flash and RAM sections for the CPU are defined in the linker files: +* 'xx_yy.scat', where 'xx' is the device group, and 'yy' is the target CPU; for example, +* 'cy8c6xx7_cm0plus.scat' and 'cy8c6xx7_cm4_dual.scat'. +* \note If the start of the Cortex-M4 application image is changed, the value +* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The +* \ref CY_CORTEX_M4_APPL_ADDR macro should be used as the parameter for the \ref +* Cy_SysEnableCM4() function call. +* +* \note The linker files provided with the PDL are generic and handle all common +* use cases. Your project may not use every section defined in the linker files. +* In that case you may see the warnings during the build process: +* L6314W (no section matches pattern) and/or L6329W +* (pattern only matches removed unused sections). In your project, you can +* suppress the warning by passing the "--diag_suppress=L6314W,L6329W" option to +* the linker. You can also comment out or remove the relevant code in the linker +* file. +* +* Change the flash and RAM sizes by editing the macros value in the +* linker files for both CPUs: +* - 'xx_cm0plus.scat', where 'xx' is the device group: +* \code +* #define FLASH_START 0x10000000 +* #define FLASH_SIZE 0x00080000 +* #define RAM_START 0x08000000 +* #define RAM_SIZE 0x00024000 +* \endcode +* - 'xx_cm4_dual.scat', where 'xx' is the device group: +* \code +* #define FLASH_START 0x10080000 +* #define FLASH_SIZE 0x00080000 +* #define RAM_START 0x08024000 +* #define RAM_SIZE 0x00023800 +* \endcode +* +* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START +* value in the 'xx_cm4_dual.scat' file, +* where 'xx' is the device group. Do this by either: +* - Passing the following commands to the compiler:\n +* \code -D CY_CORTEX_M4_APPL_ADDR=0x10080000 \endcode +* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where +* 'xx' is device family:\n +* \code #define CY_CORTEX_M4_APPL_ADDR (0x10080000u) \endcode +* +* IAR\n +* The flash and RAM sections for the CPU are defined in the linker files: +* 'xx_yy.icf', where 'xx' is the device group, and 'yy' is the target CPU; for example, +* 'cy8c6xx7_cm0plus.icf' and 'cy8c6xx7_cm4_dual.icf'. +* \note If the start of the Cortex-M4 application image is changed, the value +* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The +* \ref CY_CORTEX_M4_APPL_ADDR macro should be used as the parameter for the \ref +* Cy_SysEnableCM4() function call. +* +* Change the flash and RAM sizes by editing the macros value in the +* linker files for both CPUs: +* - 'xx_cm0plus.icf', where 'xx' is the device group: +* \code +* define symbol __ICFEDIT_region_IROM1_start__ = 0x10000000; +* define symbol __ICFEDIT_region_IROM1_end__ = 0x10080000; +* define symbol __ICFEDIT_region_IRAM1_start__ = 0x08000000; +* define symbol __ICFEDIT_region_IRAM1_end__ = 0x08024000; +* \endcode +* - 'xx_cm4_dual.icf', where 'xx' is the device group: +* \code +* define symbol __ICFEDIT_region_IROM1_start__ = 0x10080000; +* define symbol __ICFEDIT_region_IROM1_end__ = 0x10100000; +* define symbol __ICFEDIT_region_IRAM1_start__ = 0x08024000; +* define symbol __ICFEDIT_region_IRAM1_end__ = 0x08047800; +* \endcode +* +* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the +* __ICFEDIT_region_IROM1_start__ value in the 'xx_cm4_dual.icf' file, where 'xx' +* is the device group. Do this by either: +* - Passing the following commands to the compiler:\n +* \code -D CY_CORTEX_M4_APPL_ADDR=0x10080000 \endcode +* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where +* 'xx' is device family:\n +* \code #define CY_CORTEX_M4_APPL_ADDR (0x10080000u) \endcode +* +* \subsection group_system_config_device_initialization Device Initialization +* After a power-on-reset (POR), the boot process is handled by the boot code +* from the on-chip ROM that is always executed by the Cortex-M0+ core. The boot +* code passes the control to the Cortex-M0+ startup code located in flash. +* +* \subsubsection group_system_config_dual_core_device_initialization Dual-Core Devices +* The Cortex-M0+ startup code performs the device initialization by a call to +* SystemInit() and then calls the main() function. The Cortex-M4 core is disabled +* by default. Enable the core using the \ref Cy_SysEnableCM4() function. +* See \ref group_system_config_cm4_functions for more details. +* \note Startup code executes SystemInit() function for the both Cortex-M0+ and Cortex-M4 cores. +* The function has a separate implementation on each core. +* Both function implementations unlock and disable the WDT. +* Therefore enable the WDT after both cores have been initialized. +* +* \subsubsection group_system_config_single_core_device_initialization Single-Core Devices +* The Cortex-M0+ core is not user-accessible on these devices. In this case the +* Flash Boot handles setup of the CM0+ core and starts the Cortex-M4 core. +* +* \subsection group_system_config_heap_stack_config Heap and Stack Configuration +* There are two ways to adjust heap and stack configurations: +* -# Editing source code files +* -# Specifying via command line +* +* By default, the stack size is set to 0x00001000 and the heap size is set to 0x00000400. +* +* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC +* - Editing source code files\n +* The heap and stack sizes are defined in the assembler startup files +* (e.g. startup_psoc6_01_cm0plus.S and startup_psoc6_01_cm4.S). +* Change the heap and stack sizes by modifying the following lines:\n +* \code .equ Stack_Size, 0x00001000 \endcode +* \code .equ Heap_Size, 0x00000400 \endcode +* +* - Specifying via command line\n +* Change the heap and stack sizes passing the following commands to the compiler:\n +* \code -D __STACK_SIZE=0x000000400 \endcode +* \code -D __HEAP_SIZE=0x000000100 \endcode +* +* \subsubsection group_system_config_heap_stack_config_mdk ARM MDK +* - Editing source code files\n +* The heap and stack sizes are defined in the assembler startup files +* (e.g. startup_psoc6_01_cm0plus.s and startup_psoc6_01_cm4.s). +* Change the heap and stack sizes by modifying the following lines:\n +* \code Stack_Size EQU 0x00001000 \endcode +* \code Heap_Size EQU 0x00000400 \endcode +* +* - Specifying via command line\n +* Change the heap and stack sizes passing the following commands to the assembler:\n +* \code "--predefine=___STACK_SIZE SETA 0x000000400" \endcode +* \code "--predefine=__HEAP_SIZE SETA 0x000000100" \endcode +* +* \subsubsection group_system_config_heap_stack_config_iar IAR +* - Editing source code files\n +* The heap and stack sizes are defined in the linker scatter files: 'xx_yy.icf', +* where 'xx' is the device family, and 'yy' is the target CPU; for example, +* cy8c6xx7_cm0plus.icf and cy8c6xx7_cm4_dual.icf. +* Change the heap and stack sizes by modifying the following lines:\n +* \code Stack_Size EQU 0x00001000 \endcode +* \code Heap_Size EQU 0x00000400 \endcode +* +* - Specifying via command line\n +* Change the heap and stack sizes passing the following commands to the +* linker (including quotation marks):\n +* \code --define_symbol __STACK_SIZE=0x000000400 \endcode +* \code --define_symbol __HEAP_SIZE=0x000000100 \endcode +* +* \subsection group_system_config_merge_apps Merging CM0+ and CM4 Executables +* The CM0+ project and linker script build the CM0+ application image. Similarly, +* the CM4 linker script builds the CM4 application image. Each specifies +* locations, sizes, and contents of sections in memory. See +* \ref group_system_config_device_memory_definition for the symbols and default +* values. +* +* The cymcuelftool is invoked by a post-build command. The precise project +* setting is IDE-specific. +* +* The cymcuelftool combines the two executables. The tool examines the +* executables to ensure that memory regions either do not overlap, or contain +* identical bytes (shared). If there are no problems, it creates a new ELF file +* with the merged image, without changing any of the addresses or data. +* +* \subsection group_system_config_default_handlers Default Interrupt Handlers Definition +* The default interrupt handler functions are defined as weak functions to a dummy +* handler in the startup file. The naming convention for the interrupt handler names +* is \_IRQHandler. A default interrupt handler can be overwritten in +* user code by defining the handler function using the same name. For example: +* \code +* void scb_0_interrupt_IRQHandler(void) +*{ +* ... +*} +* \endcode +* +* \subsection group_system_config_device_vector_table Vectors Table Copy from Flash to RAM +* This process uses memory sections defined in the linker script. The startup +* code actually defines the contents of the vector table and performs the copy. +* \subsubsection group_system_config_device_vector_table_gcc ARM GCC +* The linker script file is 'xx_yy.ld', where 'xx' is the device family, and +* 'yy' is the target CPU; for example, cy8c6xx7_cm0plus.ld and cy8c6xx7_cm4_dual.ld. +* It defines sections and locations in memory.\n +* Copy interrupt vectors from flash to RAM: \n +* From: \code LONG (__Vectors) \endcode +* To: \code LONG (__ram_vectors_start__) \endcode +* Size: \code LONG (__Vectors_End - __Vectors) \endcode +* The vector table address (and the vector table itself) are defined in the +* assembler startup files (e.g. startup_psoc6_01_cm0plus.S and startup_psoc6_01_cm4.S). +* The code in these files copies the vector table from Flash to RAM. +* \subsubsection group_system_config_device_vector_table_mdk ARM MDK +* The linker script file is 'xx_yy.scat', where 'xx' is the device family, +* and 'yy' is the target CPU; for example, cy8c6xx7_cm0plus.scat and +* cy8c6xx7_cm4_dual.scat. The linker script specifies that the vector table +* (RESET_RAM) shall be first in the RAM section.\n +* RESET_RAM represents the vector table. It is defined in the assembler startup +* files (e.g. startup_psoc6_01_cm0plus.s and startup_psoc6_01_cm4.s). +* The code in these files copies the vector table from Flash to RAM. +* +* \subsubsection group_system_config_device_vector_table_iar IAR +* The linker script file is 'xx_yy.icf', where 'xx' is the device family, and +* 'yy' is the target CPU; for example, cy8c6xx7_cm0plus.icf and cy8c6xx7_cm4_dual.icf. +* This file defines the .intvec_ram section and its location. +* \code place at start of IRAM1_region { readwrite section .intvec_ram}; \endcode +* The vector table address (and the vector table itself) are defined in the +* assembler startup files (e.g. startup_psoc6_01_cm0plus.s and startup_psoc6_01_cm4.s). +* The code in these files copies the vector table from Flash to RAM. +* +* \section group_system_config_more_information More Information +* Refer to the PDL User Guide for the +* more details. +* +* \section group_system_config_MISRA MISRA Compliance +* +* +* +* +* +* +* +* +* +* +* +* +* +* +*
MISRA RuleRule Class (Required/Advisory)Rule DescriptionDescription of Deviation(s)
2.3RThe character sequence // shall not be used within a comment.The comments provide a useful WEB link to the documentation.
+* +* \section group_system_config_changelog Changelog +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +* +*
VersionChangesReason for Change
2.50Updated assembler files, C files, linker scripts.Dynamic allocated HEAP size for Arm Compiler 6, IAR 8.
2.40Updated assembler files, C files, linker scripts.Added Arm Compiler 6 support.
2.30Added assembler files, linker scripts for Mbed OS.Added Arm Mbed OS embedded operating system support.
Updated linker scripts to extend the Flash and Ram memories size available for the CM4 core.Enhanced PDL usability.
2.20Moved the Cy_IPC_SystemSemaInit(), Cy_IPC_SystemPipeInit() functions implementation from IPC to Startup.Changed the IPC driver configuration method from compile time to run time.
2.10Added constructor attribute to SystemInit() function declaration for ARM MDK compiler. \n +* Removed $Sub$$main symbol for ARM MDK compiler. +* uVision Debugger support.
Updated description of the Startup behavior for Single-Core Devices. \n +* Added note about WDT disabling by SystemInit() function. +* Documentation improvement.
2.0Added restoring of FLL registers to the default state in SystemInit() API for single core devices. +* Single core device support. +*
Added Normal Access Restrictions, Public Key, TOC part2 and TOC part2 copy to Supervisory flash linker memory regions. \n +* Renamed 'wflash' memory region to 'em_eeprom'. +* Linker scripts usability improvement.
Added Cy_IPC_SystemSemaInit(), Cy_IPC_SystemPipeInit(), Cy_Flash_Init() functions call to SystemInit() API.Reserved system resources for internal operations.
Added clearing and releasing of IPC structure #7 (reserved for the Deep-Sleep operations) to SystemInit() API.To avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering.
1.0Initial version
+* +* +* \defgroup group_system_config_macro Macro +* \{ +* \defgroup group_system_config_system_macro System +* \defgroup group_system_config_cm4_status_macro Cortex-M4 Status +* \defgroup group_system_config_user_settings_macro User Settings +* \} +* \defgroup group_system_config_functions Functions +* \{ +* \defgroup group_system_config_system_functions System +* \defgroup group_system_config_cm4_functions Cortex-M4 Control +* \} +* \defgroup group_system_config_globals Global Variables +* +* \} +*/ + +/** +* \addtogroup group_system_config_system_functions +* \{ +* \details +* The following system functions implement CMSIS Core functions. +* Refer to the [CMSIS documentation] +* (http://www.keil.com/pack/doc/CMSIS/Core/html/group__system__init__gr.html "System and Clock Configuration") +* for more details. +* \} +*/ + +#ifdef __cplusplus +extern "C" { +#endif + + +/******************************************************************************* +* Include files +*******************************************************************************/ +#include + + +/******************************************************************************* +* Global preprocessor symbols/macros ('define') +*******************************************************************************/ +#if ((defined(__GNUC__) && (__ARM_ARCH == 6) && (__ARM_ARCH_6M__ == 1)) || \ + (defined (__ICCARM__) && (__CORE__ == __ARM6M__)) || \ + (defined(__ARMCC_VERSION) && (__TARGET_ARCH_THUMB == 3))) + #define CY_SYSTEM_CPU_CM0P 1UL +#else + #define CY_SYSTEM_CPU_CM0P 0UL +#endif + +#if defined (CY_PSOC_CREATOR_USED) && (CY_PSOC_CREATOR_USED == 1U) + #include "cyfitter.h" +#endif /* (CY_PSOC_CREATOR_USED) && (CY_PSOC_CREATOR_USED == 1U) */ + + + + +/******************************************************************************* +* +* START OF USER SETTINGS HERE +* =========================== +* +* All lines with '<<<' can be set by user. +* +*******************************************************************************/ + +/** +* \addtogroup group_system_config_user_settings_macro +* \{ +*/ + +#if defined (CYDEV_CLK_EXTCLK__HZ) + #define CY_CLK_EXT_FREQ_HZ (CYDEV_CLK_EXTCLK__HZ) +#else + /***************************************************************************//** + * External Clock Frequency (in Hz, [value]UL). If compiled within + * PSoC Creator and the clock is enabled in the DWR, the value from DWR used. + * Otherwise, edit the value below. + * (USER SETTING) + *******************************************************************************/ + #define CY_CLK_EXT_FREQ_HZ (24000000UL) /* <<< 24 MHz */ +#endif /* (CYDEV_CLK_EXTCLK__HZ) */ + + +#if defined (CYDEV_CLK_ECO__HZ) + #define CY_CLK_ECO_FREQ_HZ (CYDEV_CLK_ECO__HZ) +#else + /***************************************************************************//** + * \brief External crystal oscillator frequency (in Hz, [value]UL). If compiled + * within PSoC Creator and the clock is enabled in the DWR, the value from DWR + * used. + * (USER SETTING) + *******************************************************************************/ + #define CY_CLK_ECO_FREQ_HZ (24000000UL) /* <<< 24 MHz */ +#endif /* (CYDEV_CLK_ECO__HZ) */ + + +#if defined (CYDEV_CLK_ALTHF__HZ) + #define CY_CLK_ALTHF_FREQ_HZ (CYDEV_CLK_ALTHF__HZ) +#else + /***************************************************************************//** + * \brief Alternate high frequency (in Hz, [value]UL). If compiled within + * PSoC Creator and the clock is enabled in the DWR, the value from DWR used. + * Otherwise, edit the value below. + * (USER SETTING) + *******************************************************************************/ + #define CY_CLK_ALTHF_FREQ_HZ (32000000UL) /* <<< 32 MHz */ +#endif /* (CYDEV_CLK_ALTHF__HZ) */ + + +/***************************************************************************//** +* \brief Start address of the Cortex-M4 application ([address]UL) +* (USER SETTING) +*******************************************************************************/ +#if !defined (CY_CORTEX_M4_APPL_ADDR) + #define CY_CORTEX_M4_APPL_ADDR (CY_FLASH_BASE + 0x2000U) /* <<< 8 kB of flash is reserved for the Cortex-M0+ application */ +#endif /* (CY_CORTEX_M4_APPL_ADDR) */ + + +/***************************************************************************//** +* \brief IPC Semaphores allocation ([value]UL). +* (USER SETTING) +*******************************************************************************/ +#define CY_IPC_SEMA_COUNT (128UL) /* <<< This will allow 128 (4*32) semaphores */ + + +/***************************************************************************//** +* \brief IPC Pipe definitions ([value]UL). +* (USER SETTING) +*******************************************************************************/ +#define CY_IPC_MAX_ENDPOINTS (8UL) /* <<< 8 endpoints */ + + +/******************************************************************************* +* +* END OF USER SETTINGS HERE +* ========================= +* +*******************************************************************************/ + +/** \} group_system_config_user_settings_macro */ + + +/** +* \addtogroup group_system_config_system_macro +* \{ +*/ + +#if (CY_SYSTEM_CPU_CM0P == 1UL) || defined(CY_DOXYGEN) + /** The Cortex-M0+ startup driver identifier */ + #define CY_STARTUP_M0P_ID ((uint32_t)((uint32_t)((0x0EU) & 0x3FFFU) << 18U)) +#endif /* (CY_SYSTEM_CPU_CM0P == 1UL) */ + +#if (CY_SYSTEM_CPU_CM0P != 1UL) || defined(CY_DOXYGEN) + /** The Cortex-M4 startup driver identifier */ + #define CY_STARTUP_M4_ID ((uint32_t)((uint32_t)((0x0FU) & 0x3FFFU) << 18U)) +#endif /* (CY_SYSTEM_CPU_CM0P != 1UL) */ + +/** \} group_system_config_system_macro */ + + +/** +* \addtogroup group_system_config_system_functions +* \{ +*/ +extern void SystemInit(void); + +extern void SystemCoreClockUpdate(void); +/** \} group_system_config_system_functions */ + + +/** +* \addtogroup group_system_config_cm4_functions +* \{ +*/ +extern uint32_t Cy_SysGetCM4Status(void); +extern void Cy_SysEnableCM4(uint32_t vectorTableOffset); +extern void Cy_SysDisableCM4(void); +extern void Cy_SysRetainCM4(void); +extern void Cy_SysResetCM4(void); +/** \} group_system_config_cm4_functions */ + + +/** \cond */ +extern void Default_Handler (void); + +void Cy_SysIpcPipeIsrCm0(void); +void Cy_SysIpcPipeIsrCm4(void); + +extern void Cy_SystemInit(void); +extern void Cy_SystemInitFpuEnable(void); + +extern uint32_t cy_delayFreqHz; +extern uint32_t cy_delayFreqKhz; +extern uint8_t cy_delayFreqMhz; +extern uint32_t cy_delay32kMs; +/** \endcond */ + + +#if (CY_SYSTEM_CPU_CM0P == 1UL) || defined(CY_DOXYGEN) +/** +* \addtogroup group_system_config_cm4_status_macro +* \{ +*/ +#define CY_SYS_CM4_STATUS_ENABLED (3U) /**< The Cortex-M4 core is enabled: power on, clock on, no isolate, no reset and no retain. */ +#define CY_SYS_CM4_STATUS_DISABLED (0U) /**< The Cortex-M4 core is disabled: power off, clock off, isolate, reset and no retain. */ +#define CY_SYS_CM4_STATUS_RETAINED (2U) /**< The Cortex-M4 core is retained. power off, clock off, isolate, no reset and retain. */ +#define CY_SYS_CM4_STATUS_RESET (1U) /**< The Cortex-M4 core is in the Reset mode: clock off, no isolated, no retain and reset. */ +/** \} group_system_config_cm4_status_macro */ + +#endif /* (CY_SYSTEM_CPU_CM0P == 1UL) */ + + +/******************************************************************************* +* IPC Configuration +* ========================= +*******************************************************************************/ +/* IPC CY_PIPE default configuration */ +#define CY_SYS_CYPIPE_CLIENT_CNT (8UL) + +#define CY_SYS_INTR_CYPIPE_MUX_EP0 (1UL) /* IPC CYPRESS PIPE */ +#define CY_SYS_INTR_CYPIPE_PRIOR_EP0 (1UL) /* Notifier Priority */ +#define CY_SYS_INTR_CYPIPE_PRIOR_EP1 (1UL) /* Notifier Priority */ + +#define CY_SYS_CYPIPE_CHAN_MASK_EP0 (0x0001UL << CY_IPC_CHAN_CYPIPE_EP0) +#define CY_SYS_CYPIPE_CHAN_MASK_EP1 (0x0001UL << CY_IPC_CHAN_CYPIPE_EP1) + + +/******************************************************************************/ +/* + * The System pipe configuration defines the IPC channel number, interrupt + * number, and the pipe interrupt mask for the endpoint. + * + * The format of the endPoint configuration + * Bits[31:16] Interrupt Mask + * Bits[15:8 ] IPC interrupt + * Bits[ 7:0 ] IPC channel + */ + +/* System Pipe addresses */ +/* CyPipe defines */ + +#define CY_SYS_CYPIPE_INTR_MASK ( CY_SYS_CYPIPE_CHAN_MASK_EP0 | CY_SYS_CYPIPE_CHAN_MASK_EP1 ) + +#define CY_SYS_CYPIPE_CONFIG_EP0 ( (CY_SYS_CYPIPE_INTR_MASK << CY_IPC_PIPE_CFG_IMASK_Pos) \ + | (CY_IPC_INTR_CYPIPE_EP0 << CY_IPC_PIPE_CFG_INTR_Pos) \ + | CY_IPC_CHAN_CYPIPE_EP0) +#define CY_SYS_CYPIPE_CONFIG_EP1 ( (CY_SYS_CYPIPE_INTR_MASK << CY_IPC_PIPE_CFG_IMASK_Pos) \ + | (CY_IPC_INTR_CYPIPE_EP1 << CY_IPC_PIPE_CFG_INTR_Pos) \ + | CY_IPC_CHAN_CYPIPE_EP1) + +/******************************************************************************/ + + +/** \addtogroup group_system_config_globals +* \{ +*/ + +extern uint32_t SystemCoreClock; +extern uint32_t cy_BleEcoClockFreqHz; +extern uint32_t cy_Hfclk0FreqHz; +extern uint32_t cy_PeriClkFreqHz; + +/** \} group_system_config_globals */ + + + +/** \cond INTERNAL */ +/******************************************************************************* +* Backward compatibility macro. The following code is DEPRECATED and must +* not be used in new projects +*******************************************************************************/ + +/* BWC defines for functions related to enter/exit critical section */ +#define Cy_SaveIRQ Cy_SysLib_EnterCriticalSection +#define Cy_RestoreIRQ Cy_SysLib_ExitCriticalSection +#define CY_SYS_INTR_CYPIPE_EP0 (CY_IPC_INTR_CYPIPE_EP0) +#define CY_SYS_INTR_CYPIPE_EP1 (CY_IPC_INTR_CYPIPE_EP1) + +/** \endcond */ + +#ifdef __cplusplus +} +#endif + +#endif /* _SYSTEM_PSOC6_H_ */ + + +/* [] END OF FILE */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/psoc6_static_srm.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/psoc6_static_srm.h new file mode 100644 index 00000000000..f265e20da70 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/psoc6_static_srm.h @@ -0,0 +1,85 @@ +/* + * mbed Microcontroller Library + * Copyright (c) 2017-2018 Future Electronics + * Copyright (c) 2019 Cypress Semiconductor Corporation + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + + */ + +/* + * This file defines hardware resources reserved by device-generated code. These + * resources are accessed directly by the Peripheral Driver library (PDL). + * + * There are four classes of resources that must be declared here: + * 1 CYCFG_ASSIGNED_PORTS macro defines which ports and pins are reserved. + * You define these as a colon separated list of ports and pins reserved + * using macro SRM_PORT(port_num, pins), once for each reserved port. + * SRM_PORT macro arguments are port number (in the range 0 ... 14) and + * pins, which is a hex value with a bit set for each reserved pin on a port. + * + * 2 CYCFG_ASSIGNED_DIVIDERS macro defines which clock dividers are reserved. + * You define these as a colon separated list of dividers reserved + * using macro SRM_DIVIDER(type, reservations), once for each required + * divider type. + * SRM_DIVIDER arguments are divider type (one of cy_en_divider_types_t + * values) and reservations, which is a hex mask value with a bit set for + * each reserved divider of a given type. + * + * 3 CYCFG_ASSIGNED_SCBS macro defines which SCB blocks are reserved. + * You define these as a colon separated list of SCBs reserved using + * macro SRM_SCB(n), which argument is SCB number in a range 0 ... 7. + * + * 4 CYCFG_ASSIGNED_TCPWM macro defines which TCPWM blocks are reserved. + * You define these as a colon separated list of TCPWMs reserved using + * macro SRM_TCPWM(n), which argument is TCPWM number in a range 0 ... 31. + * + * Examples: + * #define CYCFG_ASSIGNED_PORTS SRM_PORT(0, 0x30), SRM_PORT(5, 0x03) + * + * #define CYCFG_ASSIGNED_DIVIDERS SRM_DIVIDER(CY_SYSCLK_DIV_8_BIT, 0x01) + * + * #define CYCFG_ASSIGNED_SCBS SRM_SCB(2) + * + * #define CYCFG_ASSIGNED_TCPWMS + * + */ + +/* P0_0 and P0_1 reserved for WCO, +* P1_0 reserved for CSD TX, +* P2_0 ... P2_5 reserved for SDHC +* P6-4, P6-6 and P6_7 reserved for SWD, +* P7_1, P7_2 and P7_7 reserved for CSD Capacitors +* P8_1 ... P8_7 reserved for CSD Buttons +* P11_2 ... P11_7 reserved for QSPI +* P14_0 ... P14_1 reserved for USB +*/ +#define CYCFG_ASSIGNED_PORTS SRM_PORT(0, 0x03), SRM_PORT(1, 0x01),\ + SRM_PORT(2, 0x3f), SRM_PORT(6, 0xd0),\ + SRM_PORT(7, 0x86), SRM_PORT(8, 0xfe),\ + SRM_PORT(11, 0xfc), SRM_PORT(14, 0x03) + +/* +* 8-bit divider 0 reserved for UDB +* 8-bit divider 4 reserved for CSD +* 16-bit divider 0 reserved for USB +*/ +#define CYCFG_ASSIGNED_DIVIDERS SRM_DIVIDER(CY_SYSCLK_DIV_8_BIT, 0x11), \ + SRM_DIVIDER(CY_SYSCLK_DIV_16_BIT, 0x01) + +#define CYCFG_ASSIGNED_SCBS + +#define CYCFG_ASSIGNED_TCPWMS + +/* End of File */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/secure_image_parameters.json b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/secure_image_parameters.json new file mode 100644 index 00000000000..7e2c874a4b6 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/secure_image_parameters.json @@ -0,0 +1,17 @@ +{ + "boot0" : { + "VERSION" : "0.1", + "ROLLBACK_COUNTER" : "0" + }, + + "boot1" : { + "VERSION" : "0.1", + "ROLLBACK_COUNTER" : "0" + }, + + "sdk_path" : "targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/", + "priv_key_file": "keys/USERAPP_CM4_KEY_PRIV.pem", + "aes_key_file": "keys/image-aes-128.key", + "dev_pub_key_file": "keys/dev_pub_key.pem", + "policy_file": "prepare/policy_single_stage_CM4.json" +} diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/devices/include/cyb06447bzi_d54.h b/targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/devices/include/cyb06447bzi_d54.h index 3bbae0d9003..92d90a89b9c 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/devices/include/cyb06447bzi_d54.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/devices/include/cyb06447bzi_d54.h @@ -458,7 +458,7 @@ typedef enum { #define CY_SRAM_BASE 0x08000000UL #define CY_SRAM_SIZE 0x00048000UL #define CY_FLASH_BASE 0x10000000UL -#define CY_FLASH_SIZE 0x00100000UL +#define CY_FLASH_SIZE 0x000D0000UL #define CY_EM_EEPROM_BASE 0x14000000UL #define CY_EM_EEPROM_SIZE 0x00008000UL #define CY_XIP_BASE 0x18000000UL diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/.gitignore b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/.gitignore new file mode 100644 index 00000000000..601bb601e2c --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/.gitignore @@ -0,0 +1 @@ +packet \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md new file mode 100644 index 00000000000..c28419aba83 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md @@ -0,0 +1,145 @@ +This directory contains tools and scripts for generating keys, preparing provisioning packets and execution of provisioning. +These files are relevant to CY8CPROTO_064_SB or CY8CPROTO_064_SB_M0_PSA, CY8CPROTO_064_SB_PSA targets. +Version of Python required is 3.7+ + +# DEVICE PROVISIONING + +## 1. Generate new keys by executing the following commands from ./keys: + + *Create keys for image signing:* + + python keygen.py -k 8 --jwk USERAPP_CM4_KEY.json --pem-priv USERAPP_CM4_KEY_PRIV.pem + + *Create key for image encryption:* + + python keygen.py --aes aes.key + + +**_NOTE_:** DO NOT COMMIT any new keys to repository. --- + +## 2. Create provisioning packets: +Use *provisioning_packet.py* from ./prepare folder. + +Options: + + --oem OEM key file. + --hsm HSM key file. + --cyboot Cypress Bootloader image certificate. + --cyauth Provisioning authorization certificate. + --policy Policy file. + --out Output directory. + --ckey Customer key that will be used for image signing. Use the option multiple times to specify multiple keys. + --devcert Chain of trust certificate. Use the option multiple times to specify multiple certificates. + +* To create packet for CY8CPROTO_064_SB target using single-stage policy (CM4 only): + + python provisioning_packet.py --policy policy_single_stage_CM4.json --out ../packet --cyboot ../prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt --ckey ../keys/USERAPP_CM4_KEY.json + +* To use external memory (via SMIF) as staging(upgrade) area (slot_1) of NSPE (CM4) image use policy file with corresponding name: + + python provisioning_packet.py --policy policy_single_stage_CM4_smif.json --out ../packet --cyboot ../prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt --ckey ../keys/USERAPP_CM4_KEY.json + +Prebuild folder contains CyBootloader_WithLogs and CyBootloader_Release with corresponding *.hex and *.jwt files. + * WithLogs prints execution results to terminal. + * Release does not print to terminal and boots up silently. + +**_NOTE:_** CypressBootloader_CM0p.jwt and CypressBootloader_CM0p.hex must be used in pair from the same directory in provisioning packet generation (.packets/prov_cmd.jwt) and provisioning procedure itself. + +## 3. Run entrance exam + + python entrance_exam_runner.py + +## 4. Perform provisioning: +**_ATTENTION:_** Proceed to **UPGRADE IMAGES** section first if UPGRADE image is needed. + +Execute *provision_device_runner.py*. +The script will run with the default arguments if no arguments specified. + +Default arguments can be overridden with a custom: + + --prov-jwt Path to provisioning JWT file (packet which contains all data necessary for provisioning, including policy, authorization packets and keys) + --hex Path to Cypress Bootloader HEX binary file + --pubkey-json File where to save public key in JSON format + --pubkey-pem File where to save public key in PEM format + +*Example:* + + python provision_device_runner.py --prov-jwt packet/prov_cmd.jwt --hex prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex --pubkey-json keys/dev_pub_key.json --pubkey-pem keys/dev_pub_key.pem + +**_NOTE:_** PSoC6 supply voltage of 2.5V is required to perform provisioning. + +## UPGRADE IMAGES + +Secure Boot enabled targets support image upgrades, if specified by policy. There are two types of upgrade images supported: +- signed, non encrypted +- signed, encrypted + +The upgrade images types are determined by the following policy setting (firmware sections): + +- **_"smif_id":_** 0, - should be set to 2 if AUGUST_CYW43012 target is used, 1 - if CY8CPROTO_064_SB, 0 - SMIF disabled +- **_"upgrade":_** true/false, - should be set to *true* if UPGRADE supported, *false* - if disabled +- **_"encrypt":_** true/false, - should be set to *true* if encrypted UPGRADE supported, *false* - if disabled +- **_"encrypt_key_id":_** 1, - should remain unchanged, means that Device Key will be used in ECDH/HKDF protocol + +Requirements: +- Policy with **_smif.json** from prepare/ folder should be used. +For encrypted image: +- aes.key generated, as described in **DEVICE_PROVISIONING - 1** +- dev_pub_key.pem must be placed in keys/ folder (this key is generated in provisioning procedure) +- secure_image_parameters.json file in the target directory must contain valid keys' paths + +Non encrypted UPGRADE image +**_Example policy for CY8CPROTO_064_SB:_** + + "smif_id": 1, + "upgrade": true, + "encrypt": false, + "encrypt_key_id": 1, + +Encrypted UPGRADE image: + +**_Example policy for CY8CPROTO_064_SB:_** + + "smif_id": 1, + "upgrade": true, + "encrypt": true, + "encrypt_key_id": 1, + +Modified policy file should be used for provisioning the device, as described in paragraph 4. + +Now mbed-os application or test can be built as described in section **TESTS**. Images for UPGRADE are generated at build time, according to policy. + +- Non enrypted UPGRADE image file name ends with **_upgrade.hex_** +- Enrypted UPGRADE image file name ends with **_enc_upgrade.hex_** + +Upgrade image can be programmed to target board using Daplink. Upgrade procedure is performed after first reset. + +**_Encrypt generic image:_** +The generic HEX file (for example one that is produced by mbed-os build system) can be converted into encrypted image by using encrypted_image_runner.py script located in sb-tools. Usage example: + + python encrypted_image_runner.py --sdk-path . --hex-file someApplication.hex --key-priv keys/MCUBOOT_CM0P_KEY_PRIV.pem --key-pub keys/dev_pub_key.pem --key-aes keys/aes.key --ver 0.1 --img-id 3 --rlb-count 0 --slot-size 0x50000 --pad 1 --img-offset 402653184 + +- **_--sdk-path_** - Path to Secure Boot tools folder +- **_--key-priv_** - ECC Private key used for image signing and for generating shared secret as per ECDH/HKDF. +- **_--key-pub_** - ECC Public key used for image signing and for generating shared secret as per ECDH/HKDF. Only device Key can be used in current implementation. It is generated by provisioning procedure. +- **_--key-aes_** - AES128 key and IV file raw image will be encrypted with. +- **_--img-id_** - Image ID of encrypted image. Must match one mentioned in policy for UPGRADE image. +- **_--slot-size_** - Slot_1 (UPGRADE) size. Must match one mentioned in policy for UPGRADE image. +- **_--ver_** - Version of image. Make sure it matches one defined in secure_image_parameters.json for a given HEX. +- **_--rlb-count_** - Rollback counter. Make sure it matches one defined in secure_image_parameters.json for a given HEX. +- **_--img-offset_** - Starting address offset for UPGRADE image - passed as integer, as represented in policy + +# TESTS + +1. Build and run tests for CY8CPROTO_064_SB target with command: + + Run commands: + mbed test --compile -m CY8CPROTO_064_SB -t GCC_ARM -n tests-mbed* -v + +# TROUBLESHOOTING: + +1. In case of messages like "unable to find device" execute "mbedls -m 1907:CY8CPROTO_064_SB", then check with "mbedls" if device is detected as CY8CPROTO_064_SB with code 1907. +2. Keys, from ./keys folder is used for signing images by default, these keys should be used for provisioning. +3. Consider using CyBootloader from CyBootloader_WithLogs folder. It produces logs, which are useful to understand whether CyBootloader works correctly. +4. When running application with SMIF and _smif.json policy the field "smif_id" should be set to 1 for CY8CPROTO_064_SB. +5. Low frequency quartz (32768 Hz) oscillator have to be soldered on CY8CPROTO_064_SB (not present in stock version of board). diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/encrypted_image_runner.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/encrypted_image_runner.py new file mode 100644 index 00000000000..2d50c8e4787 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/encrypted_image_runner.py @@ -0,0 +1,215 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +import sys +import click +import subprocess +import binascii +from pathlib import Path, PurePath + +from intelhex import IntelHex, hex2bin, bin2hex +from intelhex.compat import asbytes + +HEADER_SIZE = 0x400 +AES_HEADER="aes_header.txt" # near the script file + +def check_file_exist(file): + if not Path(file).exists(): + print("ERROR: File %s not found. Check script arguments."% file) + return False + else: + return True + +def get_final_hex_name(file): + """ + Determine if script is called from mbed-os build system + for Secure Boot target processing or directly + """ + for part in PurePath(file).parts: + if "_unsigned.hex" in part: + # suppose file came from mbed-os build execution + return file[:-13] + "_enc_upgrade.hex" + # suppose stand alone script execution + return file[:-4] + "_enc_upgrade.hex" + +def manage_output(process, input_f, output_f): + """ + Function takes care of subprocess + """ + stderr = process.communicate()[1] + rc = process.wait() + + if rc != 0: + print("ERROR: Encryption script ended with error!") + print("ERROR: " + stderr.decode("utf-8")) + raise Exception("imgtool finished execution with errors!") + + if check_file_exist(output_f): + os.remove(input_f) + +@click.command() +@click.option('--sdk-path', 'sdk_path', + default=Path("."), + type=click.STRING, + help='Path to Secure Boot tools in case running script from outside') +@click.option('--hex-file', 'hex_file', + default=None, + type=click.STRING, + help='Hex file to process') +@click.option('--key-priv', 'key_priv', + default=None, + type=click.STRING, + help='Private key file to use for signing BOOT or UPGRADE image') +@click.option('--key-pub', 'key_pub', + default=None, + type=click.STRING, + help='Path to device public key - obtained from device on provisioning stage') +@click.option('--key-aes', 'key_aes', + default=None, + type=click.STRING, + help='Path to encryption key') +@click.option('--ver', 'version', + default=None, + type=click.STRING, + help='Version') +@click.option('--img-id', 'img_id', + default=None, + type=click.STRING, + help='Image ID - should correspond to values, used in policy file') +@click.option('--rlb-count', 'rlb_count', + default=None, + type=click.STRING, + help='Rollback counter value') +@click.option('--slot-size', 'slot_size', + default=None, + type=click.STRING, + help='Size of slot available for BOOT or UPGRADE image') +@click.option('--pad', 'pad', + default=False, + is_flag=True, + help='Add padding to image - required for UPGRADE image') +@click.option('--img-offset', 'img_offset', + default=None, + type=click.STRING, + help='Offset of hex file for UPGRADE image') + +def main(sdk_path, + hex_file, + key_priv, + key_pub, + key_aes, + version, + img_id, + rlb_count, + slot_size, + pad, + img_offset): + """ + Function consequentially performs operations with provided hex file + and produces an encrypted and signed hex file for UPGRADE + """ + + check_file_exist(key_priv) + check_file_exist(key_pub) + check_file_exist(key_aes) + check_file_exist(hex_file) + + in_f = hex_file[:-4] + "_i.bin" + out_f = hex_file[:-4] + "_o.bin" + + hex_file_final = get_final_hex_name(hex_file) + print("Image UPGRADE:" + hex_file_final) + + # ih = IntelHex(hex_file) + # img_start_addr = ih.start_addr['EIP'] + + hex2bin(hex_file, in_f) #bin_file) + + # $PYTHON $IMGTOOL sign --key $KEY --header-size $HEADER_SIZE --pad-header --align 8 --version $VERSION --image-id $ID --rollback_counter $ROLLBACK_COUNTER --slot-size $SLOT_SIZE --overwrite-only $binFileName $signedFileName is_file_created $signedFileName + + # call imgtool for signature + process = subprocess.Popen([sys.executable, sdk_path + "/imgtool/imgtool.py", "sign", + "--key", key_priv, + "--header-size", str(hex(HEADER_SIZE)), + "--pad-header", + "--align", "8", + "--version", version, + "--image-id", img_id, + "--rollback_counter", rlb_count, + "--slot-size", slot_size, + "--overwrite-only", + in_f, + out_f], + stdout=subprocess.PIPE, stderr=subprocess.PIPE) + manage_output(process, in_f, out_f) + + # AES + # $PYTHON $(dirname "${IMGTOOL}")"/create_aesHeader.py" -k $KEY -p $KEY_DEV --key_to_encrypt "$KEY_AES" $AES_HEADER + # call aesHeader for crypto header generation + process = subprocess.Popen([sys.executable, sdk_path + "/imgtool/create_aesHeader.py", + "-k", key_priv, + "-p", key_pub, + "--key_to_encrypt", key_aes, + AES_HEADER], + stdout=subprocess.PIPE, stderr=subprocess.PIPE) + + # catch stderr outputs + stderr = process.communicate() + rc = process.wait() + check_file_exist(AES_HEADER) + + # aes_cipher.py script file should be in the same folder as imgtool.py + # $PYTHON $(dirname "${IMGTOOL}")"/aes_cipher.py" -k $KEY_AES $signedFileName $aes_encryptedFileName + # is_file_created $aes_encryptedFileName + # encrypt signed image + process = subprocess.Popen([sys.executable, sdk_path + "/imgtool/aes_cipher.py", + "-k", key_aes, + out_f, + in_f], + stdout=subprocess.PIPE, stderr=subprocess.PIPE) + manage_output(process, out_f, in_f) + + # second part - obtain signed image from encrypted file - with padding - for staging area + # $PYTHON $IMGTOOL sign --key $KEY --header-size $HEADER_SIZE --pad-header --align 8 --version $VERSION --image-id $ID --rollback_counter $ROLLBACK_COUNTER --slot-size $SLOT_SIZE --overwrite-only $PAD -a $AES_HEADER $aes_encryptedFileName $signedEncFileName + # is_file_created $signedEncFileName + + # call imgtool for signature + process = subprocess.Popen([sys.executable, sdk_path + "/imgtool/imgtool.py", "sign", + "--key", key_priv, + "--header-size", str(hex(HEADER_SIZE)), + "--pad-header", + "--align", "8", + "--version", version, + "--image-id", img_id, + "--rollback_counter", rlb_count, + "--slot-size", slot_size, + "--overwrite-only", + "--pad", + "-a", AES_HEADER, + in_f, + out_f], + #bin_sig_enc, + #bin_sig_enc_sig], + stdout=subprocess.PIPE, stderr=subprocess.PIPE) + manage_output(process, in_f, out_f) + + bin2hex(out_f, hex_file_final, int(img_offset)) + os.remove(out_f) + + os.remove(AES_HEADER) + +if __name__ == "__main__": + main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/entrance_exam_runner.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/entrance_exam_runner.py new file mode 100644 index 00000000000..ead6127934b --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/entrance_exam_runner.py @@ -0,0 +1,45 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import sys +from execute.enums import DebugCore +from execute.helper import get_target_name +from execute.programmer.programmer import ProgrammingTool +from execute.entrance_exam import entrance_exam + +TOOL_NAME = 'pyocd' # Programming/debugging tool used for communication with device +ACCESS_PORT = DebugCore.debug_sys_ap # Access port used for entrance exam + + +def main(): + """ + Provides high level support for entrance exam procedure. + """ + target = get_target_name(TOOL_NAME, ACCESS_PORT) + if not target: + print('Invalid access port.') + sys.exit(1) + + status = False + tool = ProgrammingTool.create(TOOL_NAME) + if tool.connect(target): + status = entrance_exam(tool) + + if not status: + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/entrance_exam.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/entrance_exam.py new file mode 100644 index 00000000000..8757f02db33 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/entrance_exam.py @@ -0,0 +1,68 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +from time import sleep +from execute.helper import check_mode +from execute.enums import ProtectionState +from execute.gen_data_from_json import ENTRANCE_EXAM_FW_STATUS_REG, ENTRANCE_EXAM_FW_STATUS_MASK, \ + ENTRANCE_EXAM_FW_STATUS_VAL, ENTRANCE_EXAM_REGION_HASH_ADDR, ENTRANCE_EXAM_REGION_HASH_SIZE, \ + ENTRANCE_EXAM_REGION_HASH_MODE, ENTRANCE_EXAM_REGION_HASH_EXPECTED_VAL +from execute.sys_call import region_hash + + +def entrance_exam(tool): + """ + Checks device life-cycle, Flashboot firmware and Flash state. + :param tool: Programming/debugging tool used for communication with device. + :return: True if entrance exam passed, otherwise False. + """ + # Check the device life-cycle stage + print('Check device protection state:') + if not check_mode(tool, ProtectionState.secure): + return False + + # Check if any firmware is launched by FlashBoot and running on the device + print(os.linesep + 'Read Flashboot firmware status:') + fb_firmware_status = tool.read32(ENTRANCE_EXAM_FW_STATUS_REG) + print(f'FB Firmware status = {hex(fb_firmware_status)}') + print(f'Received FB_FW_STATUS = {hex(fb_firmware_status & ENTRANCE_EXAM_FW_STATUS_MASK)}') + print(f'Expected FB_FW_STATUS = {hex(ENTRANCE_EXAM_FW_STATUS_VAL)}') + is_exam_pass = (fb_firmware_status & ENTRANCE_EXAM_FW_STATUS_MASK) == ENTRANCE_EXAM_FW_STATUS_VAL + if is_exam_pass: + print('PASS: FB Firmware status is as expected') + else: + print('FAIL: FB Firmware status is not as expected') + if fb_firmware_status == 0xA1000100: + print('Test firmware exists and running on CM4 core. Device is in SECURE UNCLAIMED mode') + elif fb_firmware_status == 0xA1000101: + print('Secure firmware exists and running on CM0p core. Device is in SECURE CLAIMED mode') + return False + + # Check flash for malicious firmware + print(os.linesep + 'Check if Main Flash of the device is empty:') + if region_hash(tool, ENTRANCE_EXAM_REGION_HASH_ADDR, ENTRANCE_EXAM_REGION_HASH_SIZE, + ENTRANCE_EXAM_REGION_HASH_MODE, ENTRANCE_EXAM_REGION_HASH_EXPECTED_VAL): + print('PASS: Flash value is as expected') + print() + print('*****************************************') + print(' ENTRANCE EXAM TEST PASSED ') + print('*****************************************') + tool.reset() + sleep(0.2) + else: + print('FAIL: Flash value is not as expected') + return False + return True diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/enums.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/enums.py new file mode 100644 index 00000000000..7624fc3f129 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/enums.py @@ -0,0 +1,30 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from enum import IntEnum, Enum + + +class DebugCore(Enum): + """ + Provides set of access ports for programming/debugging. + """ + debug_cm0_ap, debug_cm4_ap, debug_sys_ap = range(3) + + +class ProtectionState(IntEnum): + """ + Provides set of device life-cycle stages. + """ + unknown, virgin, normal, secure, dead = range(5) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/gen_data_from_json.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/gen_data_from_json.py new file mode 100644 index 00000000000..b2b815e8798 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/gen_data_from_json.py @@ -0,0 +1,38 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +################################################################################# +# ENTRANCE EXAM REGISTER AND VARIABLE CONSTANTS +################################################################################# +ENTRANCE_EXAM_EFUSE_ASSET_HASH_BASE_REG = 0x402C0840 +ENTRANCE_EXAM_ASSET_HASH_LEN = 16 +ENTRANCE_EXAM_ASSET_HASH_ZEROS = 72 +ENTRANCE_EXAM_ASSET_HASH_EXPECTED_STR = "0xD9 0x1B 0x11 0xAA 0x5D 0x75 0x68 0x6A " \ + "0x12 0x10 0xE0 0x88 0x38 0xE1 0x2B 0x79" + +ENTRANCE_EXAM_LIFECYCLE_STAGE_REG = 0x402C082b +ENTRANCE_EXAM_LIFECYCLE_STAGE_EXPECTED_VAL = 0x01 + +ENTRANCE_EXAM_FW_STATUS_REG = 0x08044800 +ENTRANCE_EXAM_FW_STATUS_VAL = 0xF0000000 +ENTRANCE_EXAM_FW_STATUS_MASK = 0xF0800000 + +ENTRANCE_EXAM_SRAM_ADDR = 0x0802c000 +ENTRANCE_EXAM_SRAM_SIZE = 0x00004000 + +ENTRANCE_EXAM_REGION_HASH_ADDR = 0x10000000 +ENTRANCE_EXAM_REGION_HASH_SIZE = 0x000e0000 +ENTRANCE_EXAM_REGION_HASH_MODE = 255 +ENTRANCE_EXAM_REGION_HASH_EXPECTED_VAL = 0x00 diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/helper.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/helper.py new file mode 100644 index 00000000000..6264202c9e3 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/helper.py @@ -0,0 +1,59 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from execute.enums import DebugCore, ProtectionState +from execute.p6_reg import CYREG_CPUSS_PROTECTION, CYREG_IPC2_STRUCT_DATA, CYREG_EFUSE_SECURE_HASH + + +def check_mode(tool, expected_mode: ProtectionState): + """ + Checks device protection state and compares with the expected. + :return: The device protection state. + """ + mode_name = expected_mode.name.upper() + if tool.read32(CYREG_CPUSS_PROTECTION) != int(expected_mode): + print(f'FAIL: Device is not in {mode_name} mode, error code: {hex(tool.read32(CYREG_IPC2_STRUCT_DATA))}') + print('Read Secure Hash from eFUSEs:') # 00 expected on virgin device + got_factory_hash = '' + i = 0 + while i < 24: + hash_byte_val = hex(tool.read8(CYREG_EFUSE_SECURE_HASH + i)) + got_factory_hash += hash_byte_val + ' ' + i += 1 + print(f"Received SECURE_HASH: '{got_factory_hash}'") + return False + print(f'PASS: Device is in {mode_name} mode') + return True + + +def get_target_name(tool_name, access_port): + """ + Gets name of the target based on programming tool and access port. + :param tool_name: The name of programming/debugging tool. + :param access_port: The access port used for communication. + :return: The target name. + """ + if tool_name == 'pyocd': + if access_port == DebugCore.debug_cm0_ap: + target = 'cy8c64xx_cm0' + elif access_port == DebugCore.debug_cm4_ap: + target = 'cy8c64xx_cm4' + elif access_port == DebugCore.debug_sys_ap: + target = 'cy8c64xx_cm4_full' + else: + raise ValueError(f"Unhandled access port value: '{access_port}'") + else: + raise ValueError(f"Unhandled programming tool: '{tool_name}'") + return target diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_memory_map.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_memory_map.py new file mode 100644 index 00000000000..98700bf20cb --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_memory_map.py @@ -0,0 +1,17 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +FLASH_ADDRESS = 0x10000000 +FLASH_SIZE = 0x000e0000 diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_reg.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_reg.py new file mode 100644 index 00000000000..2e8e630aed9 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_reg.py @@ -0,0 +1,95 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +################################################################################# +# PSOC6 BLE REGISTER ADDRESSES +################################################################################# +CYREG_IPC2_STRUCT_ACQUIRE = 0x40230040 # 0x40220040 2M +CYREG_IPC2_STRUCT_NOTIFY = 0x40230048 +CYREG_IPC2_STRUCT_DATA = 0x4023004C +CYREG_IPC2_STRUCT_DATA1 = 0x40230050 # for 2M only +CYREG_IPC2_STRUCT_LOCK_STATUS = 0x40230050 # 0x4023005C +CYREG_CPUSS_PROTECTION = 0x40210500 # 0x4023005C 2M + +CYREG_EFUSE_FACTORY_HASH = 0x402c082c +CYREG_EFUSE_LIFECYCLE_STAGE = 0x402c082b +CYREG_EFUSE_SECURE_HASH = 0x402c0814 +CYREG_EFUSE_LAST_BYTE = 0x402c0879 + +NVSTORE_AREA_1_ADDRESS = 0x100FB600 +NVSTORE_OEM_ADDRESS = 0x100FFA00 +NVSTORE_DEV_KEY_ADDRESS = 0x100FFC00 +NVSTORE_UDS_ADDRESS = 0x100FFE00 + +################################################################################# +# PSOC6 BLE SFLASH ADDRESSES +################################################################################# +SFLASH_TOC1_ADDR = 0x16007800 +SFLASH_TOC1_LEN = 0x1C +SFLASH_TOC2_ADDR = 0x16007c00 +SFLASH_TOC2_LEN = 0x30 +TOC1_ROW_IDX = 60 +TOC1_DUPL_ROW_IDX = 61 +TOC2_ROW_IDX = 62 +TOC2_DUPL_ROW_IDX = 63 +TOC1_BYTE_SIZE = 0x1C # Stored as 1st word of TOC1 +MAGIC_NUMBER1 = 0x01211219 # Stored as 2nd word of TOC1 +NUM_OBJECTS_TOC1 = 0x4 # Stored as 3rd word of TOC1 +SFLASH_TRIM_START_ADDR = 0x16000200 # Stored as 4th word of TOC1 +SFLASH_HV_PARAM_TABLE_ADDR = 0x16000400 +SRAM_HV_PARAM_TABLE_ADDR = 0x08001000 # Only for *C PSoC6ABLE2 silicon +SFLASH_UNIQUEID_START_ADDR = 0x16000600 # Stored as 5th word of TOC1 +FLASHBOOT_START_ADDR = 0x16002000 # Stored as 6th word of TOC1 +SFLASH_SYSCALL_TABLE_PTR_ADDR = 0x16000004 # Stored as 7th word of TOC1 +SFLASH_SYSCALL_TABLE_PTR = 0x16004100 +SFLASH_SKIP_HASH = 0x16000008 +SFLASH_FLL_CONTROL = 0x16000008 +SFLASH_NORMAL_ACCESS_CTL = 0x16000008 +MAGIC_NUMBER2 = 0x01211220 +SFLASH_FLL_EN_IDX = 0x2 + +################################################################################# +# CONSTANTS AND DEFINITIONS +################################################################################# +# any random SRAM address. Fixing it to 0x2000 for all sram_scratch purposes. +# SRAM_SCRATCH = 0x08046000 +# SRAM_SCRATCH_SIZE = 0x00000800 +FLASH_START_ADDR = 0x10000000 +FLASH_SHA256_STR_ADDR = 0x10000100 +FLASH_SHA256_STR_LEN = 12 +FLASH_SHA256_DIG_ADDR = 0x10000110 +FLASH_SIZE = 0x200000 # 2 MB for PSoC 6A-2M +SFLASH_START_ADDR = 0x16000000 +SFLASH_SIZE = 0x8000 + +GENERAL_TRIM_TABLE_HASH_ADDR = 0x16000200 +TRIM_START_ADDR = 0x16000203 +TRIM_TABLE_LEN_ADDR = 0x16000200 +WFLASH_START_ADDR = 0x14000000 +WFLASH_SIZE = 0x8000 +SRAM_START_ADDR = 0x08000000 +SRAM_SIZE = 0x48000 +# SRAM_PUB_ADDR = 0x08046800 # 2M: 0x080ff400 +ADDR_FMPARAMSTRUCT = 0x08000800 +FLASH_ROW_SIZE = 512 +# Number of trials +TRIAL_MAX = 300 +SYSTEM_RESET = 0x0 +ONLY_CM4_RESET = 0x1 +INVALIDRESETTYPE = 0x3 +R_ACCESS = 0x01 +W_ACCESS = 0x02 +X_ACCESS = 0x04 +NIL_ACCESS = 0x00 diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/__init__.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/__init__.py new file mode 100644 index 00000000000..acba3a75512 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/__init__.py @@ -0,0 +1,18 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from . import base +from . import programmer +from . import pyocd_wrapper diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/base.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/base.py new file mode 100644 index 00000000000..0bd3d25f101 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/base.py @@ -0,0 +1,179 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from enum import Enum +from abc import ABCMeta, abstractmethod + + +class ResetType(Enum): + SW = 1, + HW = 2 + + +class Interface(Enum): + SWD = 1 + JTAG = 2 + + +class ProgrammerBase(metaclass=ABCMeta): + def __init__(self): + pass + + @abstractmethod + def connect(self, target_name=None, interface=None): + """ + Connects to target. + :param target_name: The target name. + :param interface: Debug interface. + :return: True if connected successfully, otherwise False. + """ + raise NotImplementedError() + + @abstractmethod + def disconnect(self): + """ + Disconnects from target. + """ + raise NotImplementedError() + + @abstractmethod + def set_frequency(self, value_khz): + """ + Sets probe frequency. + :param value_khz: Frequency in kHz. + """ + raise NotImplementedError() + + @abstractmethod + def halt(self): + """ + Halts the target. + """ + raise NotImplementedError() + + @abstractmethod + def resume(self): + """ + Resumes the execution + """ + raise NotImplementedError() + + @abstractmethod + def reset(self, reset_type=ResetType.SW): + """ + Resets the target. + :param reset_type: The reset type. + """ + raise NotImplementedError() + + @abstractmethod + def reset_and_halt(self, reset_type=ResetType.SW): + """ + Resets the target and halts the CPU immediately after reset. + :param reset_type: The reset type. + """ + raise NotImplementedError() + + @abstractmethod + def read8(self, address): + """ + Reads 8-bit value from specified memory location. + :param address: The memory address to read. + :return: The read value. + """ + raise NotImplementedError() + + @abstractmethod + def read16(self, address): + """ + Reads 16-bit value from specified memory location. + :param address: The memory address to read. + :return: The read value. + """ + raise NotImplementedError() + + @abstractmethod + def read32(self, address): + """ + Reads 32-bit value from specified memory location. + :param address: The memory address to read. + :return: The read value. + """ + raise NotImplementedError() + + @abstractmethod + def write8(self, address, value): + """ + Writes 8-bit value by specified memory location. + :param address: The memory address to write. + :param value: The 8-bit value to write. + """ + raise NotImplementedError() + + @abstractmethod + def write16(self, address, value): + """ + Writes 16-bit value by specified memory location. + :param address: The memory address to write. + :param value: The 16-bit value to write. + """ + raise NotImplementedError() + + @abstractmethod + def write32(self, address, value): + """ + Writes 32-bit value by specified memory location. + :param address: The memory address to write. + :param value: The 32-bit value to write. + """ + raise NotImplementedError() + + @abstractmethod + def read_reg(self, reg_name): + """ + Gets value of a core register. + :param reg_name: Core register name. + :return: The register value. + """ + raise NotImplementedError() + + @abstractmethod + def write_reg(self, reg_name, value): + """ + Sets value of a core register. + :param reg_name: Core register name. + :param value: The value to set. + """ + raise NotImplementedError() + + @abstractmethod + def erase(self, address, size): + """ + Erases entire device flash or specified sectors. + :param address: The memory location. + :param size: The memory size. + """ + raise NotImplementedError() + + @abstractmethod + def program(self, filename, file_format=None, address=None): + """ + Programs a file into flash. + :param filename: Path to a file. + :param file_format: File format. Default is to use the file's extension. + :param address: Base address used for the address where to flash a binary. + :return: True if programmed successfully, otherwise False. + """ + raise NotImplementedError() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/exceptions.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/exceptions.py new file mode 100644 index 00000000000..0183ced9e30 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/exceptions.py @@ -0,0 +1,23 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from pyocd.core.exceptions import TransferFaultError + + +class ExtendedTransferFaultError(TransferFaultError): + def __str__(self): + desc = super().__str__() + desc += ' If address points to a register it should be aligned with the register size.' + return desc diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/programmer.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/programmer.py new file mode 100644 index 00000000000..2beda8b8c70 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/programmer.py @@ -0,0 +1,29 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from execute.programmer.pyocd_wrapper import Pyocd + + +tools = { + 'pyocd': Pyocd +} + + +class ProgrammingTool: + @staticmethod + def create(name): + tool_type = tools[name] + tool = tool_type() + return tool diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/pyocd_wrapper.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/pyocd_wrapper.py new file mode 100644 index 00000000000..076250a4fbc --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/pyocd_wrapper.py @@ -0,0 +1,272 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from execute.programmer.base import ProgrammerBase, Interface, ResetType +from pyocd.core.helpers import ConnectHelper +from pyocd.core import exceptions +from pyocd.flash import loader +from pyocd.flash.loader import FlashEraser +from pyocd import coresight +from execute.programmer.exceptions import ExtendedTransferFaultError + + +class Pyocd(ProgrammerBase): + def __init__(self): + super(Pyocd, self).__init__() + self.session = None + self.board = None + self.target = None + self.probe = None + + def connect(self, target_name=None, interface=None, probe_id=None): + """ + Connects to target using default debug interface. + :param target_name: The target name. + :param interface: Debug interface. + :param probe_id: Probe serial number. + :return: True if connected successfully, otherwise False. + """ + if interface: + raise NotImplementedError + else: + if target_name: + options = { + 'target_override': target_name + } + else: + options = {} + self.session = ConnectHelper.session_with_chosen_probe(blocking=True, options=options, board_id=probe_id, unique_id=probe_id) + if self.session is None: + return False + self.board = self.session.board + try: + self.session.open() + except exceptions.TransferFaultError as e: + if not self.board.target.is_locked(): + print(f"Transfer fault while initializing board: {e}") + return False + except Exception as e: + print(f"Exception while initializing board: {e}") + return False + + self.target = self.board.target + self.probe = self.session.probe + + # Write infinite loop into RAM and start core execution + self.halt() + # B662 - CPSIE I - Enable IRQ by clearing PRIMASK + # E7FE - B - Jump to address (argument is an offset) + self.write32(0x08000000, 0xE7FEB662) + self.write_reg('pc', 0x08000000) + self.write_reg('sp', 0x08001000) + self.write_reg('xpsr', 0x01000000) + self.resume() + + return True + + def disconnect(self): + """ + Closes active connection. + """ + if self.session is None: + raise ValueError('Debug session is not initialized.') + self.session.close() + + def set_frequency(self, value_khz): + """ + Sets probe frequency. + :param value_khz: Frequency in kHz. + """ + if self.probe is None: + raise ValueError('Debug probe is not initialized.') + self.probe.set_clock(value_khz * 1000) + + def halt(self): + """ + Halts the target. + """ + if self.session is None: + raise ValueError('Debug session is not initialized.') + self.target.halt() + + def resume(self): + """ + Resumes the execution + """ + if self.target is None: + raise ValueError('Target is not initialized.') + self.target.resume() + + def reset(self, reset_type=ResetType.SW): + """ + Resets the target. + :param reset_type: The reset type. + """ + if self.target is None: + raise ValueError('Target is not initialized.') + self.target.reset(reset_type=reset_type) + + def reset_and_halt(self, reset_type=ResetType.SW): + """ + Resets the target and halts the CPU immediately after reset. + :param reset_type: The reset type. + """ + if self.target is None: + raise ValueError('Target is not initialized.') + self.target.reset_and_halt(reset_type=reset_type) + + def read8(self, address): + """ + Reads 8-bit value from specified memory location. + :param address: The memory address to read. + :return: The read value. + """ + if self.target is None: + raise ValueError('Target is not initialized.') + try: + data = self.target.read_memory(address, transfer_size=8) + except exceptions.TransferFaultError as e: + raise ExtendedTransferFaultError(e.fault_address, e.fault_length) + return data + + def read16(self, address): + """ + Reads 16-bit value from specified memory location. + :param address: The memory address to read. + :return: The read value. + """ + if self.target is None: + raise ValueError('Target is not initialized.') + if (address & 0x01) == 0: + try: + data = self.target.read_memory(address, transfer_size=16) + except exceptions.TransferFaultError as e: + raise ExtendedTransferFaultError(e.fault_address, e.fault_length) + return data + else: + raise ValueError('Address not aligned.') + + def read32(self, address): + """ + Reads 32-bit value from specified memory location. + :param address: The memory address to read. + :return: The read value. + """ + if self.target is None: + raise ValueError('Target is not initialized.') + if (address & 0x03) == 0: + try: + data = self.target.read_memory(address, transfer_size=32) + except exceptions.TransferFaultError as e: + raise ExtendedTransferFaultError(e.fault_address, e.fault_length) + return data + else: + raise ValueError('Address not aligned.') + + def write8(self, address, value): + """ + Writes 8-bit value by specified memory location. + :param address: The memory address to write. + :param value: The 8-bit value to write. + """ + if self.target is None: + raise ValueError('Target is not initialized.') + try: + data = self.target.write_memory(address, value, transfer_size=8) + except exceptions.TransferFaultError as e: + raise ExtendedTransferFaultError(e.fault_address, e.fault_length) + return data + + def write16(self, address, value): + """ + Writes 16-bit value by specified memory location. + :param address: The memory address to write. + :param value: The 16-bit value to write. + """ + if self.target is None: + raise ValueError('Target is not initialized.') + try: + data = self.target.write_memory(address, value, transfer_size=16) + except exceptions.TransferFaultError as e: + raise ExtendedTransferFaultError(e.fault_address, e.fault_length) + return data + + def write32(self, address, value): + """ + Writes 32-bit value by specified memory location. + :param address: The memory address to write. + :param value: The 32-bit value to write. + """ + if self.target is None: + raise ValueError('Target is not initialized.') + try: + data = self.target.write_memory(address, value, transfer_size=32) + except exceptions.TransferFaultError as e: + raise ExtendedTransferFaultError(e.fault_address, e.fault_length) + return data + + def read_reg(self, reg_name): + """ + Gets value of a core register. + :param reg_name: Core register name. + :return: The register value. + """ + reg = reg_name.lower() + if reg in coresight.cortex_m.CORE_REGISTER: + value = self.target.read_core_register(reg) + return value + else: + raise ValueError(f'Unknown core register {reg}.') + + def write_reg(self, reg_name, value): + """ + Sets value of a core register. + :param reg_name: Core register name. + :param value: The value to set. + :return: The register value. + """ + reg = reg_name.lower() + if reg in coresight.cortex_m.CORE_REGISTER: + self.target.write_core_register(reg, value) + else: + raise ValueError(f'Unknown core register {reg}.') + + def erase(self, address, size): + """ + Erases entire device flash or specified sectors. + :param address: The memory location. + :param size: The memory size. + """ + region = self.session.target.memory_map.get_region_for_address(address) + if not region: + raise ValueError('Address 0x%08x is not within a memory region.' % address) + if not region.is_flash: + raise ValueError('Address 0x%08x is not in flash.' % address) + eraser = FlashEraser(self.session, FlashEraser.Mode.SECTOR) + address_range = f"{hex(address)}-{hex(address + size)}" + eraser.erase([address_range]) + + def program(self, filename, file_format=None, address=None): + """ + Programs a file into flash. + :param filename: Path to a file. + :param file_format: File format. Default is to use the file's extension. + :param address: Base address used for the address where to flash a binary. + :return: True if programmed successfully, otherwise False. + """ + if self.session is None: + raise ValueError('Debug session is not initialized.') + programmer = loader.FileProgrammer(self.session, chip_erase='sector') + programmer.program(filename, base_address=address, file_format=file_format) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/provision_device.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/provision_device.py new file mode 100644 index 00000000000..cb135b2b543 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/provision_device.py @@ -0,0 +1,105 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +from time import sleep +from execute.helper import check_mode +from execute.enums import ProtectionState +from execute.sys_call import get_prov_details, provision_keys_and_policies +from execute.p6_memory_map import FLASH_ADDRESS, FLASH_SIZE +from execute.gen_data_from_json import ENTRANCE_EXAM_FW_STATUS_REG, ENTRANCE_EXAM_FW_STATUS_MASK, \ + ENTRANCE_EXAM_FW_STATUS_VAL +from execute.p6_reg import CYREG_CPUSS_PROTECTION, NVSTORE_AREA_1_ADDRESS + + +def provision_execution(tool, pub_key_json, prov_cmd_jwt, cy_bootloader_hex): + """ + Programs Cypress Bootloader and calls system calls for device provisioning. + :param tool: Programming/debugging tool used for communication with device. + :param pub_key_json: File where to save public key in JSON format. + :param prov_cmd_jwt: Path to provisioning JWT file (packet which contains + all data necessary for provisioning, including policy, authorization + packets and keys). + :param cy_bootloader_hex: Path to Cypress Bootloader program file. + :return: True if provisioning passed, otherwise False. + """ + tool.set_frequency(200) + + print("CPUSS.PROTECTION state: '0': UNKNOWN. '1': VIRGIN. '2': NORMAL. '3': SECURE. '4': DEAD.") + print(hex(CYREG_CPUSS_PROTECTION), hex(tool.read32(CYREG_CPUSS_PROTECTION))) + + reset_device(tool) + result, key = get_prov_details(tool, 1) + print('Device public key has been read successfully.' if result else 'FAIL: Cannot read device public key.') + print(key) + + with open(os.path.join(pub_key_json), 'w') as json_file: + json_file.write(key) + + # Check the device life-cycle stage + print('Check device protection state') + if not check_mode(tool, ProtectionState.secure): + return False + + print(os.linesep + 'Erase main flash and TOC3:') + print('erasing...') + tool.erase(FLASH_ADDRESS, FLASH_SIZE) + reset_device(tool) + + print(os.linesep + 'Read FB Firmware status:') + fb_firmware_status = tool.read32(ENTRANCE_EXAM_FW_STATUS_REG) + print(f'FB Firmware status = {hex(fb_firmware_status)}') + # Print Expected and received LIFECYCLE_STAGE values + print(f'Received FB_FW_STATUS = {hex(fb_firmware_status & ENTRANCE_EXAM_FW_STATUS_MASK)}') + print(f'Expected FB_FW_STATUS = {hex(ENTRANCE_EXAM_FW_STATUS_VAL)}') + # Verify if received value is the same as expected + is_exam_pass = (fb_firmware_status & ENTRANCE_EXAM_FW_STATUS_MASK) == ENTRANCE_EXAM_FW_STATUS_VAL + print('PASS: FB Firmware status is as expected' if is_exam_pass else 'FAIL: FB Firmware status is not as expected') + + if is_exam_pass: + print(os.linesep + 'PROGRAMMING APP HEX:') + tool.program(cy_bootloader_hex) + reset_device(tool) + + if is_exam_pass: + print(os.linesep + 'Run provisioning syscall') + blow_secure_fuse = 1 # indicates whether to convert device to SECURE CLAIMED mode + is_exam_pass = provision_keys_and_policies(tool, blow_secure_fuse, os.path.join(prov_cmd_jwt)) + print(hex(NVSTORE_AREA_1_ADDRESS) + ': ', sep=' ', end='', flush=True) + if is_exam_pass: + i = 0 + while i < 8 * 4: # output 8 words + print(hex(tool.read32(NVSTORE_AREA_1_ADDRESS + i)) + ' ', sep=' ', end='', flush=True) + i += 4 + print(os.linesep) + else: + print('FAIL: Unexpected ProvisionKeysAndPolicies syscall response') + + if is_exam_pass: + print('*****************************************') + print(" PROVISIONING PASSED ") + print("*****************************************") + + reset_device(tool) + return is_exam_pass + + +def reset_device(tool): + """ + Resets device and waits for device initialization. + :param tool: Programming/debugging tool used for communication with device. + """ + tool.reset() + sleep(0.2) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/sys_call.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/sys_call.py new file mode 100644 index 00000000000..a74bc4fce42 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/sys_call.py @@ -0,0 +1,198 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +from execute.gen_data_from_json import ENTRANCE_EXAM_SRAM_ADDR, ENTRANCE_EXAM_SRAM_SIZE +from execute.p6_reg import CYREG_IPC2_STRUCT_ACQUIRE, CYREG_IPC2_STRUCT_DATA, CYREG_IPC2_STRUCT_NOTIFY, \ + CYREG_IPC2_STRUCT_LOCK_STATUS + +PROVISION_KEYS_AND_POLICIES_OPCODE = 0x33 # ProvisionKeysAndPolicies API opcode +GET_PROV_DETAILS_OPCODE = 0x37 # GetProvDetails() API opcode +REGION_HASH_OPCODE = 0x31 # RegionHash() API opcode + + +def region_hash(tool, address, length, mode, exp_value): + """ + Procedure calls RegionHash syscall over IPC and read response. + :param tool: Programming/debugging tool used for communication with device. + :param address: Region hash address. + :param length: Region hash size. + :param mode: Region hash mode. + :param exp_value: Region hash expected value. + :return: True if syscall executed successfully, otherwise False. + """ + # Acquire IPC structure + tool.write32(CYREG_IPC2_STRUCT_ACQUIRE, 0x80000000) + ipc_acquire = 0 + while (ipc_acquire & 0x80000000) == 0: + ipc_acquire = tool.read32(CYREG_IPC2_STRUCT_ACQUIRE) + + # Set RAM address and Opcode + op_code = (REGION_HASH_OPCODE << 24) + (exp_value << 16) + (mode << 8) + 0 + tool.write32(CYREG_IPC2_STRUCT_DATA, ENTRANCE_EXAM_SRAM_ADDR) + tool.write32(ENTRANCE_EXAM_SRAM_ADDR, op_code) + + scratch_addr = ENTRANCE_EXAM_SRAM_ADDR + 0x08 + tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x04, scratch_addr) + tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x08, length) + tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x0C, address) + + # IPC_STRUCT[ipc_id].IPC_NOTIFY - + tool.write32(CYREG_IPC2_STRUCT_NOTIFY, 0x00000001) + + # Wait on response + response = 0x80000000 + while (response & 0x80000000) != 0: + response = tool.read32(CYREG_IPC2_STRUCT_LOCK_STATUS) + response = tool.read32(ENTRANCE_EXAM_SRAM_ADDR) + + if (response & 0xFF000000) == 0xa0000000: + print('Region compare complete') + return True + else: + print('Region compare error response:') + print(hex(CYREG_IPC2_STRUCT_DATA), hex(tool.read32(CYREG_IPC2_STRUCT_DATA))) + print(hex(ENTRANCE_EXAM_SRAM_ADDR), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR))) + print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x04), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x04))) + print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x08), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x08))) + print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x0C), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x0C))) + return False + + +def get_prov_details(tool, key_id): + """ + Calls GetProvDetails syscall over IPC. + :param tool: Programming/debugging tool used for communication with device. + :param key_id: Public key ID. + :return: True if get provision details successfully, otherwise False. + """ + # Acquire IPC structure + tool.write32(CYREG_IPC2_STRUCT_ACQUIRE, 0x80000000) + print(hex(CYREG_IPC2_STRUCT_ACQUIRE), hex(tool.read32(CYREG_IPC2_STRUCT_ACQUIRE))) + ipc_acquire = 0 + while (ipc_acquire & 0x80000000) == 0: + ipc_acquire = tool.read32(CYREG_IPC2_STRUCT_ACQUIRE) + + # Set RAM address and Opcode + op_code = GET_PROV_DETAILS_OPCODE << 24 + tool.write32(CYREG_IPC2_STRUCT_DATA, ENTRANCE_EXAM_SRAM_ADDR) # IPC_STRUCT.DATA + tool.write32(ENTRANCE_EXAM_SRAM_ADDR, op_code) # SRAM_SCRATCH + + scratch_addr = ENTRANCE_EXAM_SRAM_ADDR + 0x08 + tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x04, scratch_addr) + tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x08, key_id) + tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x0C, 0x0) + + # IPC_STRUCT[ipc_id].IPC_NOTIFY - + tool.write32(CYREG_IPC2_STRUCT_NOTIFY, 0x00000001) + + # Wait on response + response = 0x80000000 + while (response & 0x80000000) != 0: + response = tool.read32(CYREG_IPC2_STRUCT_LOCK_STATUS) + response = tool.read32(ENTRANCE_EXAM_SRAM_ADDR) + + print(hex(CYREG_IPC2_STRUCT_DATA), hex(tool.read32(CYREG_IPC2_STRUCT_DATA))) + print(hex(ENTRANCE_EXAM_SRAM_ADDR), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR))) # Expected MSB=0xA0 + print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x04), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x04))) + print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x08), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x08))) + + is_exam_pass = (response & 0xFF000000) == 0xa0000000 + if is_exam_pass: + scratch_addr = tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x04) + read_hash_size = tool.read32(scratch_addr + 0x00) + read_hash_addr = tool.read32(scratch_addr + 0x04) + + i = 0 + response = '' + while i < read_hash_size: + # Save data in string format + hash_byte_chr = chr(tool.read8(read_hash_addr + i)) + response += hash_byte_chr + i += 1 + response = response.strip() + else: + print(hex(CYREG_IPC2_STRUCT_DATA), tool.read32(CYREG_IPC2_STRUCT_DATA)) + print(hex(ENTRANCE_EXAM_SRAM_ADDR), tool.read32(ENTRANCE_EXAM_SRAM_ADDR)) + response = None + + return is_exam_pass, response + + +def provision_keys_and_policies(tool, blow_secure_efuse, filename): + """ + Calls ProvisionKeysAndPolicies syscall over IPC. + :param tool: Programming/debugging tool used for communication with device. + :param blow_secure_efuse: Indicates whether to convert device to SECURE CLAIMED mode. + :param filename: Path to provisioning JWT file (packet which contains + all data necessary for provisioning, including policy, authorization + packets and keys). + :return: True if sending provision keys and policies passed, otherwise False + """ + file_size = os.path.getsize(filename) + if file_size > ENTRANCE_EXAM_SRAM_SIZE: + print('JWT packet too long') + return False + + print('UDS eFuses will be blown' if blow_secure_efuse == 1 else 'UDS eFuses will NOT be blown') + print(f'JWT packet size: {file_size}') + with open(filename, 'r+') as jwt_file: + jwt_file.seek(0) + content = jwt_file.read() + jwt_chars = list(content) + + # Acquires IPC structure. + tool.write32(CYREG_IPC2_STRUCT_ACQUIRE, 0x80000000) + print(hex(CYREG_IPC2_STRUCT_ACQUIRE), hex(tool.read32(CYREG_IPC2_STRUCT_ACQUIRE))) + + ipc_acquire = 0 + while (ipc_acquire & 0x80000000) == 0: + ipc_acquire = tool.read32(CYREG_IPC2_STRUCT_ACQUIRE) + + # Set RAM address and Opcode + tool.write32(CYREG_IPC2_STRUCT_DATA, ENTRANCE_EXAM_SRAM_ADDR) + tool.write32(ENTRANCE_EXAM_SRAM_ADDR, (PROVISION_KEYS_AND_POLICIES_OPCODE << 24) + (blow_secure_efuse << 16)) + + scratch_addr = ENTRANCE_EXAM_SRAM_ADDR + 0x08 + tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x04, scratch_addr) + tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x08, file_size + 0x04) + scratch_addr = ENTRANCE_EXAM_SRAM_ADDR + 0x0C + + for char in jwt_chars: + tool.write8(scratch_addr, ord(char)) + scratch_addr += 1 + + # IPC_STRUCT[ipc_id].IPC_NOTIFY - + tool.write32(CYREG_IPC2_STRUCT_NOTIFY, 0x00000001) + print(hex(CYREG_IPC2_STRUCT_NOTIFY), hex(tool.read32(CYREG_IPC2_STRUCT_NOTIFY))) + # Wait on response + response = 0x80000000 + while (response & 0x80000000) != 0: + response = tool.read32(CYREG_IPC2_STRUCT_LOCK_STATUS) + + # Read response for test + print(hex(CYREG_IPC2_STRUCT_DATA), hex(tool.read32(CYREG_IPC2_STRUCT_DATA))) + print(hex(ENTRANCE_EXAM_SRAM_ADDR) + ': ', sep=' ', end='', flush=True) + i = 0 + while i < 4 * 4: # output 4 words + print(hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR)) + ' ', sep=' ', end='', flush=True) + i += 4 + print(os.linesep) + + response = tool.read32(ENTRANCE_EXAM_SRAM_ADDR) + result = (response & 0xFF000000) == 0xa0000000 + + print('ProvisionKeysAndPolicies', 'complete' if result else f'error response: {hex(response)}') + return result diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py new file mode 100644 index 00000000000..4165163263a --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py @@ -0,0 +1,106 @@ + +import click + +from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes +from cryptography.hazmat.primitives.ciphers.aead import AESGCM +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import padding + + +class AESCipher(object): + + def __init__(self, key, IV): + + self.backend = default_backend() + self.key = AESCipher.get_bytes(key) + self.iv = AESCipher.get_bytes(IV) + self.block_size = 128 + + @staticmethod + def get_bytes(inputdata): + if type(inputdata) is str: + return str.encode(inputdata,'utf-8') + elif type(inputdata) is bytes: + return inputdata + else: + raise Exception("Unknown input data type...") + + +class AESCipherCBC(AESCipher): + + def __init__(self, key, IV): + super().__init__(key, IV) + self.cipher = Cipher(algorithms.AES(self.key), modes.CBC(self.iv), backend=self.backend) + + def encrypt(self, raw): + encryptor = self.cipher.encryptor() + padder = padding.PKCS7(self.block_size).padder() + return encryptor.update(padder.update(raw) + padder.finalize()) + encryptor.finalize() + + def decrypt(self, enc): + decryptor = self.cipher.decryptor() + unpadder = padding.PKCS7(self.block_size).unpadder() + return unpadder.update(decryptor.update(enc) + decryptor.finalize()) + unpadder.finalize() + + +class AESCipherGCM(AESCipher): + + def __init__(self, key, IV, auth_data): + super().__init__(key, IV) + self.cipher = AESGCM(self.key) + self.auth_data = str.encode(auth_data,'utf-8') + + def encrypt(self, raw): + return self.cipher.encrypt(self.iv, raw, self.auth_data) + + def decrypt(self, enc): + return self.cipher.decrypt(self.iv, enc, self.auth_data) + +def read_key_from_file(keyfile): + + with open(keyfile) as f: + content = f.read().splitlines() + if len(content) < 2: + raise Exception("Not anough AES input data: in the file should be two lines: key, iv ...") + key = bytes.fromhex(content[0]) + iv = bytes.fromhex(content[1]) + + if 8*len(key) not in set([128, 192, 256]): + raise Exception("Invalid AES Key length: should be 128, 192 or 256 bits") + check_iv_length(iv) + + return key, iv + +def check_iv_length(iv): + if 8*len(iv) != 128: + raise Exception("Invalid AES IV length: should be 128 bits") + return True + +@click.command() +@click.option('-k', '--keyfile') +@click.option('-a', '--auth_data', default='default data') +@click.option('-m', '--mode', default='CBC') +@click.argument('inputfile') +@click.argument('outputfile') +def main(keyfile, auth_data, mode, inputfile, outputfile): + + key, iv = read_key_from_file(keyfile) + + if mode == 'CBC': + check_iv_length(iv) + aes = AESCipherCBC(key, iv) + elif mode == 'GCM': + aes = AESCipherGCM(key, iv, auth_data) + else: + raise Exception("Selected mode is not supported...") + + inFile = open(inputfile,"rb") + outFile = open(outputfile,"wb") + + outFile.write(aes.encrypt(inFile.read())) + + inFile.close() + outFile.close() + +if __name__ == "__main__": + main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/create_aesHeader.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/create_aesHeader.py new file mode 100644 index 00000000000..b21307ed455 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/create_aesHeader.py @@ -0,0 +1,46 @@ +import codecs +import click + +from aes_cipher import * +from ecc_kdf import ECDH_KDF + +def get_header_info(kdf_object, key_to_encrypt_file): + + aes = AESCipherCBC(kdf_object.aes_key, kdf_object.iv) + #print (kdf_object.aes_key.hex()) + + key_to_enc, iv_to_enc = read_key_from_file(key_to_encrypt_file) + key_encrypted = aes.encrypt(key_to_enc + iv_to_enc) + + if kdf_object.salt is None or kdf_object.info is None: + raise Exception('salt and info should be presented...') + if len(kdf_object.salt) != 16 or len(kdf_object.info) != 16: + raise Exception('salt and info fields length should be 16 bytes...') + + return key_encrypted + kdf_object.salt + kdf_object.info + + +@click.command() +@click.option('-a', '--algorithm', default='ECC') #assymetric algorithm for KDF +@click.option('-k', '--private_key') #host side key pair file +@click.option('-p', '--public_key') #device side public key +@click.option('-l', '--key_length', default=16) #derived key (AES) length +@click.option('-s', '--salt', default=None) #salt for KDF +@click.option('-i', '--info', default=b'_handshake_data_') #info data for KDF +@click.option('--key_to_encrypt') #AES key file name (key and iv are used for image encryption), should be AES encrypted, using derived key +@click.argument('outputfile') #AES_header info file name + +def main(algorithm, private_key, public_key, key_length, salt, info, key_to_encrypt, outputfile): + kdf_object = None + if(algorithm == 'ECC'): + kdf_object = ECDH_KDF(private_key, public_key, key_length, salt, info) + else: + raise Exception('Algorithm not supported...') + + aes_header = get_header_info(kdf_object, key_to_encrypt) + + with open(outputfile, 'wb') as header_out: + header_out.write(aes_header) + +if __name__ == "__main__": + main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py new file mode 100644 index 00000000000..90d2a034299 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py @@ -0,0 +1,68 @@ + +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import hashes +from cryptography.hazmat.primitives.asymmetric import ec +from cryptography.hazmat.primitives.kdf.hkdf import HKDF + +from cryptography.hazmat.primitives import serialization + +import codecs +import os + +class ECDH_KDF(object): + + def __init__(self, private_key, public_key, key_length, salt, info): + + salt_length = 16 + + self.backend = default_backend() + self.host_key_pair = serialization.load_pem_private_key(self.read_key_bytes(private_key), password=None, backend=self.backend) + + #Deserialize public key: extract from private or directly from pem file + try: + self.device_public_key = serialization.load_pem_private_key(self.read_key_bytes(public_key), password=None, backend=self.backend).public_key() + except: + self.device_public_key = serialization.load_pem_public_key(self.read_key_bytes(public_key), backend=self.backend) + + self.key_length = key_length + self.iv_length = 16 + + if salt is not None: + self.salt = ECDH_KDF.get_bytes(salt) + else: + self.salt = os.urandom(salt_length) + self.info = ECDH_KDF.get_bytes(info) + + self.derived_key = self.derive_key() + self.aes_key = self.derived_key[:self.key_length] + self.iv = self.derived_key[self.key_length:] + + @staticmethod + def get_bytes(inputdata): + if type(inputdata) is str: + return str.encode(inputdata,'utf-8') + elif type(inputdata) is bytes: + return inputdata + else: + raise Exception("Unknown input data type...") + + def read_key_bytes(self, key_file): + with open(key_file, "rb") as key_file: + return key_file.read() + + def derive_key(self): + + shared_key = self.host_key_pair.exchange(ec.ECDH(), self.device_public_key) + derived_key = HKDF(algorithm=hashes.SHA256(), # Perform key derivation. + length=self.key_length + self.iv_length, + salt=self.salt, + info=self.info, + backend=self.backend).derive(shared_key) + + return derived_key + +def main(): + pass + +if __name__ == "__main__": + main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool.py new file mode 100644 index 00000000000..ee92438bdd2 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool.py @@ -0,0 +1,198 @@ +#! /usr/bin/env python3 +# +# Copyright 2017 Linaro Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import click +import getpass +from imgtool import keys +from imgtool import image +from imgtool.version import decode_version + + +def gen_rsa2048(keyfile, passwd): + keys.RSA2048.generate().export_private(path=keyfile, passwd=passwd) + + +def gen_ecdsa_p256(keyfile, passwd): + keys.ECDSA256P1.generate().export_private(keyfile, passwd=passwd) + + +def gen_ecdsa_p224(keyfile, passwd): + print("TODO: p-224 not yet implemented") + + +valid_langs = ['c', 'rust'] +keygens = { + 'rsa-2048': gen_rsa2048, + 'ecdsa-p256': gen_ecdsa_p256, + 'ecdsa-p224': gen_ecdsa_p224, +} + + +def load_key(keyfile): + # TODO: better handling of invalid pass-phrase + key = keys.load(keyfile) + if key is not None: + return key + passwd = getpass.getpass("Enter key passphrase: ").encode('utf-8') + return keys.load(keyfile, passwd) + + +def get_password(): + while True: + passwd = getpass.getpass("Enter key passphrase: ") + passwd2 = getpass.getpass("Reenter passphrase: ") + if passwd == passwd2: + break + print("Passwords do not match, try again") + + # Password must be bytes, always use UTF-8 for consistent + # encoding. + return passwd.encode('utf-8') + + +@click.option('-p', '--password', is_flag=True, + help='Prompt for password to protect key') +@click.option('-t', '--type', metavar='type', required=True, + type=click.Choice(keygens.keys())) +@click.option('-k', '--key', metavar='filename', required=True) +@click.command(help='Generate pub/private keypair') +def keygen(type, key, password): + password = get_password() if password else None + keygens[type](key, password) + + +@click.option('-l', '--lang', metavar='lang', default=valid_langs[0], + type=click.Choice(valid_langs)) +@click.option('-k', '--key', metavar='filename', required=True) +@click.command(help='Get public key from keypair') +def getpub(key, lang): + key = load_key(key) + if key is None: + print("Invalid passphrase") + elif lang == 'c': + key.emit_c() + elif lang == 'rust': + key.emit_rust() + else: + raise ValueError("BUG: should never get here!") + + +def validate_version(ctx, param, value): + try: + decode_version(value) + return value + except ValueError as e: + raise click.BadParameter("{}".format(e)) + + +class BasedIntParamType(click.ParamType): + name = 'integer' + + def convert(self, value, param, ctx): + try: + if value[:2].lower() == '0x': + return int(value[2:], 16) + elif value[:1] == '0': + return int(value, 8) + return int(value, 10) + except ValueError: + self.fail('%s is not a valid integer' % value, param, ctx) + + +def load_data_from_file(filename): + FileObj = open(filename, 'rb') + data = FileObj.read() + FileObj.close() + return data + + +@click.argument('outfile') +@click.argument('infile') +@click.option('--overwrite-only', default=False, is_flag=True, + help='Use overwrite-only instead of swap upgrades') +@click.option('-M', '--max-sectors', type=int, + help='When padding allow for this amount of sectors (defaults to 128)') +@click.option('--pad', default=False, is_flag=True, + help='Pad image to --slot-size bytes, adding trailer magic') +@click.option('-S', '--slot-size', type=BasedIntParamType(), required=True, + help='Size of the slot where the image will be written') +@click.option('--pad-header', default=False, is_flag=True, + help='Add --header-size zeroed bytes at the beginning of the image') +@click.option('-H', '--header-size', type=BasedIntParamType(), required=True) +@click.option('-v', '--version', callback=validate_version, required=True) +@click.option('--align', type=click.Choice(['1', '2', '4', '8']), + required=True) +@click.option('-k', '--key', metavar='filename') +@click.option('-a', '--aes-header-file', default=None, metavar='filename') +@click.option('--image-id', required=True, type=int, help='Image ID') +@click.option('--rollback_counter', default=None, type=int, help='Rollback monotonic counter value') +@click.command(help='Create a signed or unsigned image') +def sign(key, align, version, header_size, pad_header, slot_size, pad, + max_sectors, overwrite_only, aes_header_file, image_id, rollback_counter, infile, outfile): + + if aes_header_file is not None : + aes_header = load_data_from_file(aes_header_file) + else: + aes_header = None + + img = image.Image.load(infile, version=decode_version(version), + header_size=header_size, pad_header=pad_header, + pad=pad, align=int(align), slot_size=slot_size, + max_sectors=max_sectors, + overwrite_only=overwrite_only, aes_header_data=aes_header, + image_id=image_id, rollback_counter=rollback_counter) + key = load_key(key) if key else None + img.sign(key) + + if pad: + img.pad_to(slot_size) + + img.save(outfile) + + +class AliasesGroup(click.Group): + + _aliases = { + "create": "sign", + } + + def list_commands(self, ctx): + cmds = [k for k in self.commands] + aliases = [k for k in self._aliases] + return sorted(cmds + aliases) + + def get_command(self, ctx, cmd_name): + rv = click.Group.get_command(self, ctx, cmd_name) + if rv is not None: + return rv + if cmd_name in self._aliases: + return click.Group.get_command(self, ctx, self._aliases[cmd_name]) + return None + + +@click.command(cls=AliasesGroup, + context_settings=dict(help_option_names=['-h', '--help'])) +def imgtool(): + pass + + +imgtool.add_command(keygen) +imgtool.add_command(getpub) +imgtool.add_command(sign) + + +if __name__ == '__main__': + imgtool() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/__init__.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/__init__.py new file mode 100644 index 00000000000..107921f94e9 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/__init__.py @@ -0,0 +1,13 @@ +# Copyright 2017 Linaro Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/image.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/image.py new file mode 100644 index 00000000000..34cf0c02a58 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/image.py @@ -0,0 +1,269 @@ +# Copyright 2018 Nordic Semiconductor ASA +# Copyright 2017 Linaro Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +Image signing and management. +""" + +from . import version as versmod +from intelhex import IntelHex +import hashlib +import struct +import os.path +import os + +IMAGE_MAGIC = 0x96f3b83d +IMAGE_HEADER_SIZE = 32 +BIN_EXT = "bin" +INTEL_HEX_EXT = "hex" +DEFAULT_MAX_SECTORS = 128 + +# Image header flags. +IMAGE_F = { + 'PIC': 0x0000001, + 'NON_BOOTABLE': 0x0000010, } + +TLV_VALUES = { + 'KEYHASH': 0x01, + 'SHA256': 0x10, + 'RSA2048': 0x20, + 'ECDSA224': 0x21, + 'ECDSA256': 0x22, } + +TLV_INFO_SIZE = 4 +TLV_INFO_MAGIC = 0x6907 + +boot_magic = bytes([ + 0x77, 0xc2, 0x95, 0xf3, + 0x60, 0xd2, 0xef, 0x7f, + 0x35, 0x52, 0x50, 0x0f, + 0x2c, 0xb6, 0x79, 0x80, ]) + +class TLV(): + def __init__(self): + self.buf = bytearray() + + def add(self, kind, payload): + """Add a TLV record. Kind should be a string found in TLV_VALUES above.""" + buf = struct.pack(' 0: + if obj.base_addr: + # Adjust base_addr for new header + obj.base_addr -= obj.header_size + obj.payload = (b'\000' * obj.header_size) + obj.payload + + obj.check() + return obj + + def __init__(self, version=None, header_size=IMAGE_HEADER_SIZE, pad=0, + align=1, slot_size=0, max_sectors=DEFAULT_MAX_SECTORS, + overwrite_only=False, aes_header_data=None, image_id=1, rollback_counter=0): + self.version = version or versmod.decode_version("0") + self.header_size = header_size or IMAGE_HEADER_SIZE + self.pad = pad + self.align = align + self.slot_size = slot_size + self.max_sectors = max_sectors + self.overwrite_only = overwrite_only + self.aes_header_data = aes_header_data + self.image_id = image_id + self.rollback_counter = rollback_counter + + def __repr__(self): + return "".format( + self.version, + self.header_size, + self.base_addr if self.base_addr is not None else "N/A", + self.align, + self.slot_size, + self.max_sectors, + self.overwrite_only, + self.__class__.__name__, + len(self.payload)) + + def check(self): + """Perform some sanity checking of the image.""" + # If there is a header requested, make sure that the image + # starts with all zeros. + if self.header_size > 0: + if any(v != 0 for v in self.payload[0:self.header_size]): + raise Exception("Padding requested, but image does not start with zeros") + if self.slot_size > 0: + tsize = self._trailer_size(self.align, self.max_sectors, + self.overwrite_only) + padding = self.slot_size - (len(self.payload) + tsize) + if padding < 0: + msg = "Image size (0x{:x}) + trailer (0x{:x}) exceeds requested size 0x{:x}".format( + len(self.payload), tsize, self.slot_size) + raise Exception(msg) + + def sign(self, key, add_padding = True): + + DECRYPT_BLOCK_SIZE = 256 #future AES decription buffer size, is used for align FW image and trailer size + + if add_padding: + pl_size = len(self.payload) + pad_len = (DECRYPT_BLOCK_SIZE - pl_size % DECRYPT_BLOCK_SIZE) % DECRYPT_BLOCK_SIZE + #self.payload += bytearray(os.urandom(pad_len)) + self.payload += bytearray(pad_len) + + self.add_header(key) + if (self.aes_header_data is not None): + self.add_AES_header() + + tlv = TLV() + + # Note that ecdsa wants to do the hashing itself, which means + # we get to hash it twice. + sha = hashlib.sha256() + sha.update(self.payload) + digest = sha.digest() + + tlv.add('SHA256', digest) + + if key is not None: + pub = key.get_public_bytes() + sha = hashlib.sha256() + sha.update(pub) + pubbytes = sha.digest() + tlv.add('KEYHASH', pubbytes) + + sig = key.sign(bytes(self.payload)) + tlv.add(key.sig_tlv(), sig) + + trailer = tlv.get() + self.payload += trailer + + if add_padding: + trailer_size = len(trailer) + tr_rem_len = (DECRYPT_BLOCK_SIZE - trailer_size % DECRYPT_BLOCK_SIZE ) % DECRYPT_BLOCK_SIZE + #self.payload += bytearray(os.urandom(tr_rem_len)) + self.payload += bytearray(tr_rem_len) + + def add_header(self, key): + """Install the image header. + + The key is needed to know the type of signature, and + approximate the size of the signature.""" + + flags = 0 + + fmt = ('<' + + # type ImageHdr struct { + 'I' + # Magic uint32 + 'I' + # LoadAddr uint32 + 'H' + # HdrSz uint16 + 'B' + # Image ID uint8 + 'B' + # Rollback monotonic counter value uint8 + 'I' + # ImgSz uint32 + 'I' + # Flags uint32 + 'BBHI' + # Vers ImageVersion + 'I' # Pad2 uint32 + ) # } + assert struct.calcsize(fmt) == IMAGE_HEADER_SIZE + header = struct.pack(fmt, + IMAGE_MAGIC, + 0, # LoadAddr + self.header_size, + self.image_id, + self.rollback_counter, + len(self.payload) - self.header_size, # ImageSz + flags, # Flags + self.version.major, + self.version.minor or 0, + self.version.revision or 0, + self.version.build or 0, + 0) # Pad2 + self.payload = bytearray(self.payload) + self.payload[:len(header)] = header + + def add_AES_header(self): + """Install AES header just after main image header + + The header contains: + AES Key, IV (encrypted with AES CBC) + salt - random sequence for ECDH KDF + info - information for ECDH KDF + """ + + aes_header_bytes = self.aes_header_data #str.encode(self.aes_header_data,'utf-8') + headerAES = struct.pack( "@%ds" % (len(aes_header_bytes)), aes_header_bytes ) + self.payload[IMAGE_HEADER_SIZE:IMAGE_HEADER_SIZE + len(headerAES)] = headerAES + + + def _trailer_size(self, write_size, max_sectors, overwrite_only): + # NOTE: should already be checked by the argument parser + if overwrite_only: + return 8 * 2 + 16 + else: + if write_size not in set([1, 2, 4, 8]): + raise Exception("Invalid alignment: {}".format(write_size)) + m = DEFAULT_MAX_SECTORS if max_sectors is None else max_sectors + return m * 3 * write_size + 8 * 2 + 16 + + def pad_to(self, size): + """Pad the image to the given size, with the given flash alignment.""" + tsize = self._trailer_size(self.align, self.max_sectors, + self.overwrite_only) + padding = size - (len(self.payload) + tsize) + pbytes = b'\xff' * padding + pbytes += b'\xff' * (tsize - len(boot_magic)) + pbytes += boot_magic + self.payload += pbytes + + +class HexImage(Image): + + def load(self, path): + ih = IntelHex(path) + return ih.tobinarray(), ih.minaddr() + + def save(self, path): + h = IntelHex() + h.frombytes(bytes = self.payload, offset = self.base_addr) + h.tofile(path, 'hex') + +class BinImage(Image): + + def load(self, path): + with open(path, 'rb') as f: + return f.read(), None + + def save(self, path): + with open(path, 'wb') as f: + f.write(self.payload) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/__init__.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/__init__.py new file mode 100644 index 00000000000..da5b083193b --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/__init__.py @@ -0,0 +1,76 @@ +# Copyright 2017 Linaro Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +Cryptographic key management for imgtool. +""" + +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import serialization +from cryptography.hazmat.primitives.asymmetric.rsa import RSAPrivateKey, RSAPublicKey +from cryptography.hazmat.primitives.asymmetric.ec import EllipticCurvePrivateKey, EllipticCurvePublicKey + +from .rsa import RSA2048, RSA2048Public, RSAUsageError +from .ecdsa import ECDSA256P1, ECDSA256P1Public, ECDSAUsageError + +class PasswordRequired(Exception): + """Raised to indicate that the key is password protected, but a + password was not specified.""" + pass + +def load(path, passwd=None): + """Try loading a key from the given path. Returns None if the password wasn't specified.""" + with open(path, 'rb') as f: + raw_pem = f.read() + try: + pk = serialization.load_pem_private_key( + raw_pem, + password=passwd, + backend=default_backend()) + # Unfortunately, the crypto library raises unhelpful exceptions, + # so we have to look at the text. + except TypeError as e: + msg = str(e) + if "private key is encrypted" in msg: + return None + raise e + except ValueError: + # This seems to happen if the key is a public key, let's try + # loading it as a public key. + pk = serialization.load_pem_public_key( + raw_pem, + backend=default_backend()) + + if isinstance(pk, RSAPrivateKey): + if pk.key_size != 2048: + raise Exception("Unsupported RSA key size: " + pk.key_size) + return RSA2048(pk) + elif isinstance(pk, RSAPublicKey): + if pk.key_size != 2048: + raise Exception("Unsupported RSA key size: " + pk.key_size) + return RSA2048Public(pk) + elif isinstance(pk, EllipticCurvePrivateKey): + if pk.curve.name != 'secp256r1': + raise Exception("Unsupported EC curve: " + pk.curve.name) + if pk.key_size != 256: + raise Exception("Unsupported EC size: " + pk.key_size) + return ECDSA256P1(pk) + elif isinstance(pk, EllipticCurvePublicKey): + if pk.curve.name != 'secp256r1': + raise Exception("Unsupported EC curve: " + pk.curve.name) + if pk.key_size != 256: + raise Exception("Unsupported EC size: " + pk.key_size) + return ECDSA256P1Public(pk) + else: + raise Exception("Unknown key type: " + str(type(pk))) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa.py new file mode 100644 index 00000000000..f541d16d1a4 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa.py @@ -0,0 +1,102 @@ +""" +ECDSA key management +""" + +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import serialization +from cryptography.hazmat.primitives.asymmetric import ec +from cryptography.hazmat.primitives.hashes import SHA256 + +from .general import KeyClass + +class ECDSAUsageError(Exception): + pass + +class ECDSA256P1Public(KeyClass): + def __init__(self, key): + self.key = key + + def shortname(self): + return "ecdsa" + + def _unsupported(self, name): + raise ECDSAUsageError("Operation {} requires private key".format(name)) + + def _get_public(self): + return self.key + + def get_public_bytes(self): + # The key is embedded into MBUboot in "SubjectPublicKeyInfo" format + return self._get_public().public_bytes( + encoding=serialization.Encoding.DER, + format=serialization.PublicFormat.SubjectPublicKeyInfo) + + def export_private(self, path, passwd=None): + self._unsupported('export_private') + + def export_public(self, path): + """Write the public key to the given file.""" + pem = self._get_public().public_bytes( + encoding=serialization.Encoding.PEM, + format=serialization.PublicFormat.SubjectPublicKeyInfo) + with open(path, 'wb') as f: + f.write(pem) + + def sig_type(self): + return "ECDSA256_SHA256" + + def sig_tlv(self): + return "ECDSA256" + + def sig_len(self): + # The DER encoding depends on the high bit, and can be + # anywhere from 70 to 72 bytes. Because we have to fill in + # the length field before computing the signature, however, + # we'll give the largest, and the sig checking code will allow + # for it to be up to two bytes larger than the actual + # signature. + return 72 + +class ECDSA256P1(ECDSA256P1Public): + """ + Wrapper around an ECDSA private key. + """ + + def __init__(self, key): + """key should be an instance of EllipticCurvePrivateKey""" + self.key = key + + @staticmethod + def generate(): + pk = ec.generate_private_key( + ec.SECP256R1(), + backend=default_backend()) + return ECDSA256P1(pk) + + def _get_public(self): + return self.key.public_key() + + def export_private(self, path, passwd=None): + """Write the private key to the given file, protecting it with the optional password.""" + if passwd is None: + enc = serialization.NoEncryption() + else: + enc = serialization.BestAvailableEncryption(passwd) + pem = self.key.private_bytes( + encoding=serialization.Encoding.PEM, + format=serialization.PrivateFormat.PKCS8, + encryption_algorithm=enc) + with open(path, 'wb') as f: + f.write(pem) + + def raw_sign(self, payload): + """Return the actual signature""" + return self.key.sign( + data=payload, + signature_algorithm=ec.ECDSA(SHA256())) + + def sign(self, payload): + # To make fixed length, pad with one or two zeros. + sig = self.raw_sign(payload) + sig += b'\000' * (self.sig_len() - len(sig)) + return sig diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa_test.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa_test.py new file mode 100644 index 00000000000..8cb3220f802 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa_test.py @@ -0,0 +1,99 @@ +""" +Tests for ECDSA keys +""" + +import io +import os.path +import sys +import tempfile +import unittest + +from cryptography.exceptions import InvalidSignature +from cryptography.hazmat.primitives.asymmetric import ec +from cryptography.hazmat.primitives.hashes import SHA256 + +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../..'))) + +from imgtool.keys import load, ECDSA256P1, ECDSAUsageError + +class EcKeyGeneration(unittest.TestCase): + + def setUp(self): + self.test_dir = tempfile.TemporaryDirectory() + + def tname(self, base): + return os.path.join(self.test_dir.name, base) + + def tearDown(self): + self.test_dir.cleanup() + + def test_keygen(self): + name1 = self.tname("keygen.pem") + k = ECDSA256P1.generate() + k.export_private(name1, b'secret') + + self.assertIsNone(load(name1)) + + k2 = load(name1, b'secret') + + pubname = self.tname('keygen-pub.pem') + k2.export_public(pubname) + pk2 = load(pubname) + + # We should be able to export the public key from the loaded + # public key, but not the private key. + pk2.export_public(self.tname('keygen-pub2.pem')) + self.assertRaises(ECDSAUsageError, + pk2.export_private, self.tname('keygen-priv2.pem')) + + def test_emit(self): + """Basic sanity check on the code emitters.""" + k = ECDSA256P1.generate() + + ccode = io.StringIO() + k.emit_c(ccode) + self.assertIn("ecdsa_pub_key", ccode.getvalue()) + self.assertIn("ecdsa_pub_key_len", ccode.getvalue()) + + rustcode = io.StringIO() + k.emit_rust(rustcode) + self.assertIn("ECDSA_PUB_KEY", rustcode.getvalue()) + + def test_emit_pub(self): + """Basic sanity check on the code emitters.""" + pubname = self.tname("public.pem") + k = ECDSA256P1.generate() + k.export_public(pubname) + + k2 = load(pubname) + + ccode = io.StringIO() + k2.emit_c(ccode) + self.assertIn("ecdsa_pub_key", ccode.getvalue()) + self.assertIn("ecdsa_pub_key_len", ccode.getvalue()) + + rustcode = io.StringIO() + k2.emit_rust(rustcode) + self.assertIn("ECDSA_PUB_KEY", rustcode.getvalue()) + + def test_sig(self): + k = ECDSA256P1.generate() + buf = b'This is the message' + sig = k.raw_sign(buf) + + # The code doesn't have any verification, so verify this + # manually. + k.key.public_key().verify( + signature=sig, + data=buf, + signature_algorithm=ec.ECDSA(SHA256())) + + # Modify the message to make sure the signature fails. + self.assertRaises(InvalidSignature, + k.key.public_key().verify, + signature=sig, + data=b'This is thE message', + signature_algorithm=ec.ECDSA(SHA256())) + +if __name__ == '__main__': + unittest.main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/general.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/general.py new file mode 100644 index 00000000000..3ba34cb186e --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/general.py @@ -0,0 +1,35 @@ +"""General key class.""" + +import sys + +AUTOGEN_MESSAGE = "/* Autogenerated by imgtool.py, do not edit. */" + +class KeyClass(object): + def _public_emit(self, header, trailer, indent, file=sys.stdout, len_format=None): + print(AUTOGEN_MESSAGE, file=file) + print(header, end='', file=file) + encoded = self.get_public_bytes() + for count, b in enumerate(encoded): + if count % 8 == 0: + print("\n" + indent, end='', file=file) + else: + print(" ", end='', file=file) + print("0x{:02x},".format(b), end='', file=file) + print("\n" + trailer, file=file) + if len_format is not None: + print(len_format.format(len(encoded)), file=file) + + def emit_c(self, file=sys.stdout): + self._public_emit( + header="const unsigned char {}_pub_key[] = {{".format(self.shortname()), + trailer="};", + indent=" ", + len_format="const unsigned int {}_pub_key_len = {{}};".format(self.shortname()), + file=file) + + def emit_rust(self, file=sys.stdout): + self._public_emit( + header="static {}_PUB_KEY: &'static [u8] = &[".format(self.shortname().upper()), + trailer="];", + indent=" ", + file=file) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa.py new file mode 100644 index 00000000000..4ddbfc646ea --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa.py @@ -0,0 +1,95 @@ +""" +RSA Key management +""" + +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import serialization +from cryptography.hazmat.primitives.asymmetric import rsa +from cryptography.hazmat.primitives.asymmetric.padding import PSS, MGF1 +from cryptography.hazmat.primitives.hashes import SHA256 + +from .general import KeyClass + +class RSAUsageError(Exception): + pass + +class RSA2048Public(KeyClass): + """The public key can only do a few operations""" + def __init__(self, key): + self.key = key + + def shortname(self): + return "rsa" + + def _unsupported(self, name): + raise RSAUsageError("Operation {} requires private key".format(name)) + + def _get_public(self): + return self.key + + def get_public_bytes(self): + # The key embedded into MCUboot is in PKCS1 format. + return self._get_public().public_bytes( + encoding=serialization.Encoding.DER, + format=serialization.PublicFormat.PKCS1) + + def export_private(self, path, passwd=None): + self._unsupported('export_private') + + def export_public(self, path): + """Write the public key to the given file.""" + pem = self._get_public().public_bytes( + encoding=serialization.Encoding.PEM, + format=serialization.PublicFormat.SubjectPublicKeyInfo) + with open(path, 'wb') as f: + f.write(pem) + + def sig_type(self): + return "PKCS1_PSS_RSA2048_SHA256" + + def sig_tlv(self): + return "RSA2048" + + def sig_len(self): + return 256 + +class RSA2048(RSA2048Public): + """ + Wrapper around an 2048-bit RSA key, with imgtool support. + """ + + def __init__(self, key): + """The key should be a private key from cryptography""" + self.key = key + + @staticmethod + def generate(): + pk = rsa.generate_private_key( + public_exponent=65537, + key_size=2048, + backend=default_backend()) + return RSA2048(pk) + + def _get_public(self): + return self.key.public_key() + + def export_private(self, path, passwd=None): + """Write the private key to the given file, protecting it with the optional password.""" + if passwd is None: + enc = serialization.NoEncryption() + else: + enc = serialization.BestAvailableEncryption(passwd) + pem = self.key.private_bytes( + encoding=serialization.Encoding.PEM, + format=serialization.PrivateFormat.PKCS8, + encryption_algorithm=enc) + with open(path, 'wb') as f: + f.write(pem) + + def sign(self, payload): + # The verification code only allows the salt length to be the + # same as the hash length, 32. + return self.key.sign( + data=payload, + padding=PSS(mgf=MGF1(SHA256()), salt_length=32), + algorithm=SHA256()) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa_test.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa_test.py new file mode 100644 index 00000000000..81518780a61 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa_test.py @@ -0,0 +1,102 @@ +""" +Tests for RSA keys +""" + +import io +import os +import sys +import tempfile +import unittest + +from cryptography.exceptions import InvalidSignature +from cryptography.hazmat.primitives.asymmetric.padding import PSS, MGF1 +from cryptography.hazmat.primitives.hashes import SHA256 + +# Setup sys path so 'imgtool' is in it. +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../..'))) + +from imgtool.keys import load, RSA2048, RSAUsageError + +class KeyGeneration(unittest.TestCase): + + def setUp(self): + self.test_dir = tempfile.TemporaryDirectory() + + def tname(self, base): + return os.path.join(self.test_dir.name, base) + + def tearDown(self): + self.test_dir.cleanup() + + def test_keygen(self): + name1 = self.tname("keygen.pem") + k = RSA2048.generate() + k.export_private(name1, b'secret') + + # Try loading the key without a password. + self.assertIsNone(load(name1)) + + k2 = load(name1, b'secret') + + pubname = self.tname('keygen-pub.pem') + k2.export_public(pubname) + pk2 = load(pubname) + + # We should be able to export the public key from the loaded + # public key, but not the private key. + pk2.export_public(self.tname('keygen-pub2.pem')) + self.assertRaises(RSAUsageError, pk2.export_private, self.tname('keygen-priv2.pem')) + + def test_emit(self): + """Basic sanity check on the code emitters.""" + k = RSA2048.generate() + + ccode = io.StringIO() + k.emit_c(ccode) + self.assertIn("rsa_pub_key", ccode.getvalue()) + self.assertIn("rsa_pub_key_len", ccode.getvalue()) + + rustcode = io.StringIO() + k.emit_rust(rustcode) + self.assertIn("RSA_PUB_KEY", rustcode.getvalue()) + + def test_emit_pub(self): + """Basic sanity check on the code emitters, from public key.""" + pubname = self.tname("public.pem") + k = RSA2048.generate() + k.export_public(pubname) + + k2 = load(pubname) + + ccode = io.StringIO() + k2.emit_c(ccode) + self.assertIn("rsa_pub_key", ccode.getvalue()) + self.assertIn("rsa_pub_key_len", ccode.getvalue()) + + rustcode = io.StringIO() + k2.emit_rust(rustcode) + self.assertIn("RSA_PUB_KEY", rustcode.getvalue()) + + def test_sig(self): + k = RSA2048.generate() + buf = b'This is the message' + sig = k.sign(buf) + + # The code doesn't have any verification, so verify this + # manually. + k.key.public_key().verify( + signature=sig, + data=buf, + padding=PSS(mgf=MGF1(SHA256()), salt_length=32), + algorithm=SHA256()) + + # Modify the message to make sure the signature fails. + self.assertRaises(InvalidSignature, + k.key.public_key().verify, + signature=sig, + data=b'This is thE message', + padding=PSS(mgf=MGF1(SHA256()), salt_length=32), + algorithm=SHA256()) + +if __name__ == '__main__': + unittest.main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/version.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/version.py new file mode 100644 index 00000000000..8910e0b1a43 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/version.py @@ -0,0 +1,53 @@ +# Copyright 2017 Linaro Limited +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +Semi Semantic Versioning + +Implements a subset of semantic versioning that is supportable by the image +header. +""" + +from collections import namedtuple +import re + +SemiSemVersion = namedtuple('SemiSemVersion', ['major', 'minor', 'revision', + 'build']) + +version_re = re.compile( + r"""^([1-9]\d*|0)(\.([1-9]\d*|0)(\.([1-9]\d*|0)(\+([1-9]\d*|0))?)?)?$""") + + +def decode_version(text): + """Decode the version string, which should be of the form maj.min.rev+build + """ + m = version_re.match(text) + if m: + result = SemiSemVersion( + int(m.group(1)) if m.group(1) else 0, + int(m.group(3)) if m.group(3) else 0, + int(m.group(5)) if m.group(5) else 0, + int(m.group(7)) if m.group(7) else 0) + return result + else: + msg = "Invalid version number, should be maj.min.rev+build with later " + msg += "parts optional" + raise ValueError(msg) + + +if __name__ == '__main__': + print(decode_version("1.2")) + print(decode_version("1.0")) + print(decode_version("0.0.2+75")) + print(decode_version("0.0.0+00")) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/keys/keygen.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/keys/keygen.py new file mode 100644 index 00000000000..f23e74a91f6 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/keys/keygen.py @@ -0,0 +1,73 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +import click +import json +from jwcrypto import jwk + +CUSTOMER_KEY_ID_MIN = 6 +CUSTOMER_KEY_ID_MAX = 10 + +kid_help = 'Key ID to define key slot number in the key storage. Key ID must be in range {}.' + +@click.command() +@click.option('-k', '--kid', 'kId', + type=click.IntRange(CUSTOMER_KEY_ID_MIN, CUSTOMER_KEY_ID_MAX), + default=CUSTOMER_KEY_ID_MIN, + help=kid_help.format(str(list(range(CUSTOMER_KEY_ID_MIN, CUSTOMER_KEY_ID_MAX+1))))) +@click.option('--jwk', 'jwKey', + type=click.File('w'), + default='key.json', + help='Name of the key in JWK format to create.') +@click.option('--pem-priv', 'pemPriv', + type=click.File('wb'), + default=None, + help='Name of the private key in PEM format to create. If it is not given PEM file will not be created.') +@click.option('--pem-pub', 'pemPub', + type=click.File('wb'), + default=None, + help='Name of the public key in PEM format to create. If it is not given PEM file will not be created.') +@click.option('--aes', 'aes', + type=click.File('w'), + default=None, + help='Name of the AES-128 key to create. If it is given only AES key wiil be created and JWK will not.') +def main(kId, jwKey, pemPriv, pemPub, aes): + if aes == None: + key = jwk.JWK.generate(kty='EC', crv='P-256', use='sig') + + keyJson = json.loads(key.export(private_key=True)) + keyJson['kid'] = str(kId) + + keyStr = json.dumps(keyJson, indent=4) + jwKey.write(keyStr) + + if pemPriv != None: + pemPriv.write(key.export_to_pem(private_key=True, password=None)) + + if pemPub != None: + pemPub.write(key.export_to_pem(private_key=False, password=None)) + + print(keyStr) + else: + key = os.urandom(16) + iv = os.urandom(16) + file = key.hex() + '\n' + iv.hex() + aes.write(file) + print('AES-128 KEY: ', key.hex(), sep='\t') + print('AES-128 IV:', iv.hex(), sep='\t') + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex new file mode 100644 index 00000000000..05f2ecc028d --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex @@ -0,0 +1,2375 @@ +:02000004100DDD +:1000000000C00208334B0D100D000000A14B0D1075 +:1000100000000000000000000000000000000000E0 +:100020000000000000000000000000009D4B0D10CB +:1000300000000000000000009D4B0D109D4B0D10B6 +:100040009D4B0D109D4B0D109D4B0D109D4B0D109C +:100050009D4B0D109D4B0D109D4B0D109D4B0D108C +:100060009D4B0D109D4B0D109D4B0D109D4B0D107C +:100070009D4B0D109D4B0D109D4B0D109D4B0D106C +:100080009D4B0D109D4B0D109D4B0D109D4B0D105C +:100090009D4B0D109D4B0D109D4B0D109D4B0D104C +:1000A0009D4B0D109D4B0D109D4B0D109D4B0D103C +:1000B0009D4B0D109D4B0D109D4B0D109D4B0D102C +:1000C00010B5064C2378002B07D1054B002B02D02E +:1000D000044800E000BF0123237010BDECA7020814 +:1000E00000000000008B0D10044B10B5002B03D056 +:1000F0000349044800E000BF10BDC04600000000F6 +:10010000F0A70208008B0D100021124B124A10B507 +:10011000D8601C68002C06DB914202D101204042CD +:1001200010BD0131F5E79142F8D00121996000211D +:100130001C69002C03DA9142F0D00131F8E79142BA +:10014000ECD0A0220368120600209342E8D01800E9 +:10015000E6E7C04600002340983A00001FB50023A0 +:100160000193D82300049B05C018029001AB02A89C +:100170000C000393FFF7C8FF002801D1019B236007 +:1001800004B010BD13B5084BC47A986801A9C0B279 +:10019000FFF7E4FF002803D1019B9C42804116BD7C +:1001A00001204042FBE7C04610AE02081FB5064BD7 +:1001B0000004C018029001AB02A801910393FFF75D +:1001C000A3FF05B000BDC0460001003610B5034BCB +:1001D000C17A9868C0B2FFF7E9FF10BD10AE0208FF +:1001E000F0B50F000400002685B0BE4201D100200A +:1001F0003EE0A0221F4BD2009A582378032A04D055 +:10020000092B02D801361034EFE71B4A0A33DB0012 +:1002100099580029F6D0D3185B6801AD2B7163782B +:1002200001916B71A3782900AB71E378A068EB7141 +:1002300023792B7263796B72E3886B8102F0B0FBD8 +:10024000002815D1237B2900AB71637BA068EB717B +:10025000E3896B8102F04AFB002809D1A06802F013 +:1002600025FC002804D1A06802F008FC0028C9D0B1 +:1002700005B0F0BD0000214010AE020870B50600C8 +:100280000024104AA3019B180F491A68A3015B18A8 +:100290001B68002A04DA0134102CF2D1002070BD52 +:1002A000002BF8DB094B3100E518AD01280002F006 +:1002B0001DFB0028F3D1280002F0E0FB0028EAD063 +:1002C000EDE7C04604202440242024408090000113 +:1002D00073B50E0004000025B54201D1002076BDA3 +:1002E0006A462378694613706378E0685370A37890 +:1002F0009370E378D370A388938002F06BFE00289C +:10030000EDD16A46A37969461370E379E0685370CA +:10031000237A93706389938002F000FE0028DED177 +:10032000E06802F0CDFE0028D9D1E06802F0AEFE10 +:1003300010340028D3D10135CEE773B50E00040088 +:100340000025B54201D1002076BD6A462378694672 +:1003500013706378E0685370A3789370E378D37078 +:10036000A388938002F036FD0028EDD16A46A37978 +:1003700069461370E379E0685370237A9370638958 +:10038000938002F0CBFC0028DED1E06802F0A2FDF1 +:100390000028D9D1E06802F079FD10340028D3D1CB +:1003A0000135CEE7F0B50F000400002685B0BE424F +:1003B00002D1002005B0F0BD236801AD019323797F +:1003C00029002B71637960696B71A379AB71E37953 +:1003D000EB71237A2B72637A6B7263896B8102F003 +:1003E000DDFB0028E6D1237B2900AB71637B6069CC +:1003F000EB71A37B2B72238A6B8102F06FFB0028C9 +:10040000D8D1606902F066FC0028D3D1606902F09F +:100410003DFC18340028CDD10136C8E730B5174B64 +:1004200085B001930D2301AD2B71437804006B71EE +:1004300083782900AB71C378EB7103792B72437910 +:100440006B72C38880686B8102F0AAFA002813D10E +:10045000237B2900AB71637BA068EB71E3896B811F +:1004600002F044FA002807D1A06802F01FFB002820 +:1004700002D1A06802F002FB05B030BD00C0020846 +:10048000B02310B55B055B78124C232B1BD00B21DE +:100490002000FFF7A5FE00281AD10F48FFF7EEFE57 +:1004A000002815D10A210D48FFF712FF00280FD1AF +:1004B00004210B48FFF741FF002809D10121094819 +:1004C000FFF770FF04E02000FFF7A8FF0028DED050 +:1004D00010BDC046AC7B0D10A87A0D10B47A0D107B +:1004E000547B0D10947B0D1010B501210148FFF7CE +:1004F00077FE10BD5C7C0D100022124B124910B526 +:10050000D8601C68002C05DB8A4201D1012010BD97 +:100510000132F6E78A42F9D001229A6000220B49A3 +:100520001C69002C03DA8A42F0D00132F8E78A42D3 +:10053000ECD0A0220368120600209342E7D01800F6 +:10054000E5E7C04600002340983A00000094357764 +:1005500010B5D42488B005930A9BA40506930B9B81 +:100560000094029002AC68460194039104920793B0 +:10057000FFF7C2FF08B010BD00B5064B89B000936D +:10058000029002AB6846019303910492FFF7B4FF17 +:1005900009B000BD000B003510B5074C88B00094C1 +:1005A000029002AC68460194039104920593FFF710 +:1005B000A3FF08B010BDC046000E003500B5064BC5 +:1005C00089B00093029002AB6846019303910492B4 +:1005D000FFF792FF09B000BD000C003510B588B0E0 +:1005E00005930A9B074C06930B9B0094029002AC68 +:1005F00068460194039104920793FFF77DFF08B0CA +:1006000010BDC046000D003500B5054B89B0009304 +:10061000029002AB68460193FFF76EFF09B000BD80 +:10062000000A003500B5054B89B00093029002AB7B +:1006300068460193FFF760FF09B000BD0005003573 +:1006400000B5064B89B00093029002AB6846019357 +:1006500003910492FFF750FF09B000BD000400357C +:100660001FB5054B02900093684602AB01930391BE +:10067000FFF742FF05B000BD001000357FB5064B07 +:100680000390019301A803AB029304910592FFF735 +:1006900033FF07B000BDC0460011003510B5074C50 +:1006A00086B00094029002AC6846019403910492D3 +:1006B0000593FFF721FF06B010BDC04600120035BC +:1006C00010B5074C86B00094029002AC68460194C5 +:1006D000039104920593FFF70FFF06B010BDC046CB +:1006E000000900357FB5054B0390019301A803ABCA +:1006F0000293FFF701FF07B000BDC04600060035BA +:100700007FB5064B0390019301A803AB02930491BC +:100710000592FFF7F1FE07B000BDC04600070035A7 +:100720007FB5054B0390019301A803AB029304919D +:10073000FFF7E2FE07B000BD000800357FB5064BAD +:100740000390019301A803AB029304910592FFF774 +:10075000D3FE07B000BDC0460002003510B5074CFF +:1007600086B00094029002AC684601940391049212 +:100770000593FFF7C1FE06B010BDC046000100356D +:1007800010B58CB006930E9B0A4C07930F9B0194F7 +:100790000893109B03900993119B03AC0A93129B3F +:1007A00001A80294049105920B93FFF7A5FE0CB0EB +:1007B00010BDC04600030035F0B58DB01D0012AB72 +:1007C00040CB02921B780F000393002305AA04A9D3 +:1007D0000493059300F03DF9041E3BD1204B3A00F1 +:1007E00000930599029B049806F050FC002834DD24 +:1007F000022007AA06A9FF300694079401F0AEF97B +:10080000002803D12900069800F0F4FF812007AAF0 +:1008100006A9400001F0A2F9652400281ED131008C +:10082000069800F077FD041E14D108A9380000F0E6 +:1008300028F9041E0ED131000B9800F063FB041E52 +:1008400008D1039A29000B9800F03AF9040008989F +:1008500006F0B2FB20000DB0F0BD14246442F9E7AD +:10086000005F2D00F0B51F00002387B002910392B6 +:1008700004A905AA0493059300F0EBF8041E2ED1F9 +:10088000059800F07FF8040006F0C0FE051E31D088 +:100890001A4B0200009305992300049806F0F6FB1A +:1008A000002822DD280006F0E1FB061E20D0010012 +:1008B000134800F09FF8002814D00069002811D0D8 +:1008C000039B220000930197029B2900FFF774FF0E +:1008D0000400300006F070FB280006F0A1FE2000A6 +:1008E00007B0F0BD01246442F3E714246442F3E747 +:1008F0000524FBE764246442F1E7C046005F2D0055 +:100900006C7C0D1010B5010004000B4806F08CFF44 +:10091000002398420DD02100084806F085FF0123EE +:10092000002806D02100064806F07EFF43424341DE +:100930005B00180010BDC046737D0D107C7D0D104E +:10094000887D0D1010B5010004000B4806F06CFF07 +:10095000002398420DD02100084806F065FF0123CE +:10096000002806D02100064806F05EFF43424341BE +:100970005B00180010BDC0468D7D0D10967D0D10DA +:100980009E7D0D1003235843800898430430704720 +:10099000F8B5C3680D000860062B21D18468124F9A +:1009A000002C01D12000F8BD266A002E06D03100AF +:1009B0000E4806F039FF002802D16C602468EFE78A +:1009C00031000B4806F030FF002801D1AC60F5E79C +:1009D0003100380006F028FF0028EFD1EC60EDE789 +:1009E00002204042DFE7C046B57D0D10A67D0D1008 +:1009F000AC7D0D10F0B507000D00002491B001AEE4 +:100A0000002D02D1280011B0F0BD296A002904D0C0 +:100A1000380006F009FF0028F4D0AB68002B06D0A0 +:100A20000E2C12D8A200955101341D00E8E72B6866 +:100A3000002BFAD1002C0AD0013CA3009B591B6863 +:100A4000002BF2D1002CF7D1EFE70025DAE72500E3 +:100A5000D8E7F8B50E002E21170006F0D7FE041EC9 +:100A60000CD0451C2E21280006F0D0FE002805D011 +:100A7000001B0138386000203560F8BD1620404268 +:100A8000FBE770B5050000200C0006F07BFA28009B +:100A900006F0ECFA002803D02100FFF779FF70BDC3 +:100AA00005204042FBE7002304220133002901D145 +:100AB000904203D952001D2BF7D102331800704722 +:100AC000F0B589B005900C000100C24807920027DC +:100AD000FFF790FFB84200D145E18568069702957F +:100AE0000497029B002B00D08AE0EB68062B00D015 +:100AF00039E12E00B84F31003800FFF77BFF079A2D +:100B0000037E9A4200D0DEE03100B448FFF772FF66 +:100B10008369237029003800FFF76CFF2278037E79 +:100B20009A4200D1A8E12D68002DF3D12900AC48EC +:100B3000FFF760FF002806D02300FF335B7B012B0B +:100B400001D18369A3602900A648FFF753FF00285D +:100B500008D02300FF339B7A012B03D1C3685A1EB0 +:100B6000934163702900A048FFF744FF002808D094 +:100B70002300FF331B7B012B03D1C3685A1E934113 +:100B8000E37029009948FFF735FF002806D02300BD +:100B9000FF331B7B012B01D183692371290094480A +:100BA000FFF728FF002809D02300FF331B7E012B0D +:100BB00004D1C3685A1E9341E21CD37729008D48A3 +:100BC000FFF718FF002800D1A6E0C368052B00D06E +:100BD000A2E082682300200012331530FF33FF307B +:100BE000002A00D198E01978012903D119009669EB +:100BF000F5390E700133984200D18DE01268EFE7AD +:100C000002997D48FFF7F6FE002804D0836801931F +:100C1000019B002B03D1029B1B68029361E70199A2 +:100C20007648FFF7E7FE00284AD0036974491800A8 +:100C3000039306F0F9FD002842D07249039806F0AC +:100C4000F3FD00283CD000266F4AB3009958039862 +:100C500006F0EAFD071E05D00136172EF4D1052750 +:100C6000183E7F4201996948FFF7C4FE002801D071 +:100C70008369069301996648FFF7BCFE002804D0FB +:100C8000C1698069FFF70FFF0490731C18D0049BA3 +:100C9000002B15DD92227300E31852009A5C012AA2 +:100CA00004D1320006990A32D20011512622FF32B5 +:100CB0009B5C012B04D10A36F600049BA6197360D5 +:100CC000019B1B68A3E73668002E00D012E721E7DE +:100CD0004C49380006F0A8FD002800D0FFE03100A4 +:100CE0004A48FFF787FE002806D02300FF331B7C0D +:100CF000012B01D18369636131004548FFF77AFE1A +:100D0000002800D1EBE02300FF331B7C012B00D037 +:100D1000E5E08369A361E2E029003E48FFF76AFE4F +:100D2000002817D0C368052B14D182682300200047 +:100D300015331830FF33FF30002A0BD01978012902 +:100D400003D119009669F5390E700133984201D02C +:100D50001268F1E729003048FFF74CFE002835D033 +:100D600000278369A37005992C48FFF743FE0028EC +:100D700058D000258668002E54D031002448FFF753 +:100D800039FE00280BD063191A001A32FF3212788C +:100D9000012A04D102326A439B1882699A623100A7 +:100DA0001F48FFF727FE00280BD063191A001932DD +:100DB000FF321278012A04D102326A439B188269F9 +:100DC0005A6202350A2D2DD03668D4E7A07007008C +:100DD000C9E7C046737D0D10DC7C0D10917C0D10B1 +:100DE000987C0D10BA7D0D10A27C0D10AA7C0D1000 +:100DF000B97C0D10C07C0D10757C0D10C27D0D10DE +:100E00007F7C0D10847C0D10C0A00208127E0D1096 +:100E10008C7C0D10CA7C0D10D77C0D10DF7C0D1062 +:100E2000E97C0D1005992F48FFF7E4FD051E20D041 +:100E300001002D48FFF7DEFD00280AD02423FF33F0 +:100E4000E35C012B05D1C3685A1E934122004D3249 +:100E5000137029002548FFF7CDFD002809D0912304 +:100E60005B00E35C012B04D1C3684C345A1E9341F0 +:100E70002370380009B0F0BD29001D48FFF7BAFD06 +:100E8000002800D152E68668002E00D14EE63100DF +:100E90001848FFF7AFFD002821D007691649380030 +:100EA00006F0C2FC002800D012E731001348FFF71B +:100EB000A1FD002806D02300FF339B7B012B01D12D +:100EC0008369E36031000E48FFF794FD002806D0E7 +:100ED0002300FF33DB7B012B01D18369236136685B +:100EE000D2E7C046EF7C0D10FB7C0D10077D0D1086 +:100EF000757C0D10C27D0D107F7C0D10127E0D10C3 +:100F00008C7C0D10F8B507000C000100BA48FFF703 +:100F100071FDBA4E051E2AD001003000FFF76AFDB0 +:100F2000002808D0230068331B78012B03D1006907 +:100F3000FFF708FD20702900B148FFF75BFD00288E +:100F400008D0230069331B78012B03D10069FFF718 +:100F5000D9FC60702900AB48FFF74CFD002806D093 +:100F600023006A331B78012B01D18369A3703900F8 +:100F7000A548FFF73FFD051E2AD001003000FFF70E +:100F800039FD002808D023006B331B78012B03D1D7 +:100F90000069FFF7D7FCE07029009948FFF72AFDA8 +:100FA000002808D023006C331B78012B03D1006983 +:100FB000FFF7A8FC207129009248FFF71BFD0028CD +:100FC00006D023006D331B78012B01D18369637137 +:100FD00039008E48FFF70EFD051E00D184E00100A8 +:100FE0003000FFF707FD002808D023006E331B7880 +:100FF000012B03D10069FFF7A5FCA07129008048EF +:10100000FFF7F8FC002808D023006F331B78012B72 +:1010100003D10069FFF776FCE07129007948FFF7FA +:10102000E9FC002806D0230070331B78012B01D186 +:101030008369237229007648FFF7DCFC002808D07A +:10104000230071331B78012B03D1C3685A1E9341CF +:10105000637229006F48FFF7CDFC002808D02300F9 +:1010600072331B78012B03D1C3685A1E9341A372BC +:1010700029006948FFF7BEFC002808D0230073331D +:101080001B78012B03D1C3685A1E9341E3722900D8 +:101090006248FFF7AFFC002808D0230074331B78A8 +:1010A000012B03D1C3685A1E9341237329005C4866 +:1010B000FFF7A0FC002808D0230075331B78012B14 +:1010C00003D1C3685A1E9341637329005548FFF743 +:1010D00091FC002808D0230076331B78012B03D124 +:1010E000C3685A1E9341A37339004F48FFF782FC2F +:1010F000050001003000FFF77DFC002808D0230028 +:1011000077331B78012B03D10069FFF71BFC207498 +:1011100029003C48FFF76EFC002808D023008C33E0 +:101120001B78012B03D12300826964331A702900D4 +:101130003E48FFF75FFC00282AD000268768002F72 +:1011400026D039003A48FFF755FC00280AD0A319E9 +:101150001A0078321278012A04D1023272439B18A5 +:1011600082695A6139003348FFF744FC00280AD0ED +:10117000A3191A0079321278012A04D1023272437B +:101180009B1882699A6102360A2E01D03F68D6E721 +:1011900029002948FFF72EFC00282BD00025032723 +:1011A0008668002E26D031002148FFF723FC002856 +:1011B0000AD063191A0082321278012A04D13A0047 +:1011C0006A439B188269DA6331001A48FFF712FC00 +:1011D00000280AD063191A0083321278012A04D138 +:1011E0003A006A439B1882691A6402350A2D01D0BD +:1011F0003668D6E70020F8BD197D0D101D7D0D1055 +:10120000287D0D10307D0D10347D0D10377D0D10B3 +:101210003E7D0D10467D0D10657D0D10237E0D1059 +:101220002D7E0D10347E0D104B7D0D104F7D0D1059 +:10123000E97C0D108C7C0D105D7D0D1070B50400E7 +:101240000D0086B00021142201A806F01DFA290025 +:101250002000FFF7CFFB0400002C18D021001C4811 +:10126000FFF7C8FB0028F7D00569002D0AD0194EFA +:101270002900300006F0D8FA00280BD1310001A86F +:1012800006F0DCFA210001A8FFF7B4FB04002000FF +:1012900006B070BD104E2900300006F0C5FA0028D7 +:1012A000ECD029000D4806F0BFFA0028E6D00C4E1D +:1012B0002900300006F0B8FA0028DFD029000948DC +:1012C00006F0B2FA0028DDD121000748C1E7C04688 +:1012D000C27D0D10EA7D0D10D37D0D10DA7D0D104D +:1012E000E27D0D10C77D0D10CD7D0D1010B5FFF7FF +:1012F00081FB0124002809D08168002906D0044818 +:10130000FFF778FB002801D0C468E4B2200010BDCC +:101310006B7D0D10F0B5050085B000200C0005F0C8 +:1013200031FE280005F0A2FE0190002800D14BE21A +:101330000100A148FFF75EFB051E00D0B4E00123C9 +:101340005B42009301999D48FFF754FB051E00D0B6 +:10135000EEE001235B42009301999948FFF74AFBB5 +:10136000051E00D03EE101235B42009301999548A0 +:10137000FFF740FB071E00D122E2934E0100300030 +:10138000FFF75CFF390005003000FFF7AFFF0600F4 +:10139000002D00D1F6E12869FFF7D4FA2300773356 +:1013A00020741E70894E39003000FFF747FF390066 +:1013B00005003000FFF79AFF002D00D1E6E1230081 +:1013C000AA6964331A702833187039008048FFF70F +:1013D00011FB051E00D1E6E101007E48FFF72EFF5C +:1013E000290006007B48FFF781FF0390002E00D103 +:1013F000D0E1B369029329007748FFF71FFF290066 +:1014000006007548FFF772FF002E00D1C7E1B669EC +:10141000230022002100143378323C31029D5E60AB +:101420001D606D462D7B0833507015700232994255 +:10143000F4D139006948FFF7DDFA061E00D1BFE19B +:10144000644F01003800FFF7F9FE31000500380055 +:10145000FFF74CFF0390002D00D1A8E1AB69029388 +:101460005D4F31003800FFF7E9FE3100050038001C +:10147000FFF73CFF002D00D19EE1AD692300220063 +:101480003C338232643402995D6019606946097B9D +:101490000833507011700232A342F4D1019805F064 +:1014A0008BFD009805B0F0BD474F01003800FFF7F5 +:1014B000C5FE290006003800FFF718FF0700002EC0 +:1014C0002FD03069FFF73EFA2300683320701F7079 +:1014D0000023434F290038000093FFF7AFFE290097 +:1014E00006003800FFF702FF0700002E1CD030690D +:1014F000FFF708FA2300693360701F70334F29002B +:101500003800FFF79BFE290006003800FFF7EEFECB +:10151000002E00D113E7B369A37023006A3318705B +:1015200010E701235B42D4E701235B420093E5E728 +:10153000254F01003800FFF781FE29000600380022 +:10154000FFF7D4FE0700002E2DD03069FFF7FAF91F +:1015500023006B33E0701F70214F29003800FFF724 +:101560006DFE290006003800FFF7C0FE0700002EC0 +:101570001DD03069FFF7C6F923006C3320711F704E +:10158000124F29003800FFF759FE290006003800E5 +:10159000FFF7ACFE002E00D1DBE6B36963712300D8 +:1015A0006D331870D8E601235B420093D4E7012322 +:1015B0005B420093E4E7C046197D0D10347D0D10A9 +:1015C000377D0D104B7D0D101D7D0D10307D0D10E4 +:1015D0004F7D0D10E97C0D108C7C0D105D7D0D1084 +:1015E000287D0D107A4F01003800FFF727FE2900F3 +:1015F00006003800FFF77AFE0700002E00D1A1E0B8 +:101600003069FFF79FF923006E33A0711F70714F8F +:1016100029003800FFF712FE290006003800FFF706 +:1016200065FE0700002E00D190E03069FFF76AF9EF +:1016300023006F33E0711F70674F29003800FFF7F8 +:10164000FDFD290006003800FFF750FE002E00D1F6 +:1016500080E0B36923722300703318705F4F290054 +:101660003800FFF7EBFD290006003800FFF73EFECB +:10167000002E73D0F3685A1E9341637223007133B6 +:101680001870574F29003800FFF7D8FD29000600D1 +:101690003800FFF72BFE002E64D0F3685A1E9341EA +:1016A000A3722300723318704E4F29003800FFF7E1 +:1016B000C5FD290006003800FFF718FE002E55D0A2 +:1016C000F3685A1E9341E372230073331870464F38 +:1016D00029003800FFF7B2FD290006003800FFF7A7 +:1016E00005FE002E46D0F3685A1E93412373230053 +:1016F000743318703D4F29003800FFF79FFD290013 +:1017000006003800FFF7F2FD002E37D0F3685A1EAE +:1017100093416373230075331870354F29003800E7 +:10172000FFF78CFD290006003800FFF7DFFD002ED3 +:1017300000D118E6F3685A1E9341A3732300763351 +:10174000187013E601235B42009360E701235B42BC +:10175000009371E701235B4200937FE701235B4223 +:1017600000938EE701235B4200939DE701235B42D8 +:101770000093ACE701235B420093BBE701235B428C +:101780000093CAE701235B4200930BE601235B420F +:1017900000931AE601235B42029600932BE6012395 +:1017A0005B42009334E601235B42009341E6012350 +:1017B0005B420295009353E601235B4200935DE692 +:1017C00001235B42009369E605235B42009368E6D0 +:1017D0001D7D0D10287D0D10307D0D103E7D0D10EE +:1017E000467D0D10657D0D10237E0D102D7E0D1094 +:1017F000347E0D10F0B5050085B000200C0005F01A +:10180000C1FB280005F032FC0190002800D181E1E5 +:101810000100C248FFF7EEF8051E00D13AE1C04FC3 +:1018200001003800FFF70AFD290006003800FFF725 +:101830005DFD002E00D109E1B36923702300FF3361 +:1018400058720023B74F290038000093FFF7F6FCC9 +:10185000290006003800FFF749FD002E00D1F8E00E +:10186000F3685A1E934163702300FF339872AE4FA2 +:1018700029003800FFF7E2FC290006003800FFF7D6 +:1018800035FD002E00D1E8E0F3685A1E9341E37065 +:101890002300FF331873A54F29003800FFF7CEFC53 +:1018A000290006003800FFF721FD002E00D1D8E006 +:1018B000B369A3602300FF3358739D4F290038009C +:1018C000FFF7BCFC290006003800FFF70FFD002ED3 +:1018D00000D1CAE02200B369FF32DBB223779074F3 +:1018E0006377D074A3771075924F29003800FFF703 +:1018F000A5FC290006003800FFF7F8FC002E00D1F7 +:10190000B7E02200B369FF32DBB2611CE3775075A8 +:10191000CB77A11C9075CB77D075874E290030000E +:10192000FFF78CFC290007003000FFF7DFFC002FD9 +:1019300000D1A2E0FB685A1E9341E21CD37723003A +:10194000FF33187601997D48FFF754F80600002F01 +:1019500000D19FE023000122794FFF3301009A73E9 +:10196000DA731A745A743800FFF768FC3100050006 +:101970003800FFF7BBFC0390002D00D181E0AB697C +:101980000293704F31003800FFF758FC310005001A +:101990003800FFF7ABFC002D00D177E0AD692200E5 +:1019A00021002300253209315033FF32FF31029EDE +:1019B0005D601E606E46367B0833167050700232D2 +:1019C0008B42F4D101996048FFF714F8061E00D14C +:1019D0006DE05E4F01003800FFF730FC310005007C +:1019E0003800FFF783FC0390002D57D0AB690293BA +:1019F000544F31003800FFF721FC3100050038005A +:101A0000FFF774FC002D4ED0AD69220023002100A9 +:101A100019322433FF324C31029E5D601E606E46E7 +:101A2000367B08335070167002329942F4D1019916 +:101A30004748FEF7DFFF051E3DD101235B420093BF +:101A4000019805F0B9FA009805B0F0BD01235B429A +:101A5000F8E601235B42009309E701235B42009310 +:101A600019E701235B42009327E701235B420093C0 +:101A70003AE701235B4200934FE701235B42009367 +:101A800060E701235B42029500937AE701235B4202 +:101A9000009384E701235B42009393E701235B42B9 +:101AA00002950093A4E701235B420093ADE7012375 +:101AB0005B420093BBE7274F01003800FFF7BEFBF6 +:101AC000290006003800FFF711FC002E1ED0F36835 +:101AD0005A1E934122004C32137091235B00E05454 +:101AE0001D4F29003800FFF7A9FB29000600380028 +:101AF000FFF7FCFB002EA0D0F3685A1E9341220092 +:101B00004D3213702423FF33E05499E701235B42E5 +:101B10000093E5E705235B42009394E7737D0D1086 +:101B2000DC7C0D10BA7D0D10A27C0D10987C0D1080 +:101B3000C07C0D10CA7C0D10B97C0D10757C0D1089 +:101B4000127E0D108C7C0D10DF7C0D10E97C0D10C9 +:101B5000EF7C0D10077D0D10FB7C0D107FB5DC2395 +:101B60009B0500936C46002302AD01950290154839 +:101B70006B60C460144C0668002E07DBA34203D1DF +:101B80000120404204B070BD0133F4E7A342F7D016 +:101B90000123836000230669002E03DAA342EFD0FD +:101BA0000133F8E7A342EBD0A02300981B0698422C +:101BB00001D00098E6E7029B002013606B680B6081 +:101BC000E0E7C04600002340983A0000F0B5170057 +:101BD0008A22434C9200A544079008910EA8002148 +:101BE000BFB2099305F050FD0CAA0BA93800FEF70F +:101BF000A5FD00260500B0422CD1C02280210B9B00 +:101C0000D2051A40C9058A4237D10C9BDC1DE40875 +:101C100020000D9405F0FAFC0925061E1AD00100DB +:101C20000DAB22003800FEF799FD051E12D16B4660 +:101C3000198C102304930293079B079A3033019366 +:101C4000284B40320392009332000D9B0EA8FEF702 +:101C500097FD0500300005F0E3FC002D05D12022A2 +:101C600009990EA8FEF7ECFC05000EA8FEF7DAFCB9 +:101C7000280099239B009D44F0BD1B4A934207D145 +:101C80000C9B5C0809230134E4085C433B34BFE748 +:101C9000164A934203D10C9BDC082934B8E7144A56 +:101CA000934205D103240C9BDB085C435A34AFE715 +:101CB000104A934205D103240C9BDB085C434A3451 +:101CC000A6E70D4A1B0C1B0493429ED00B4A04004E +:101CD00093429DD10C9BDC1DE4081234640097E70D +:101CE0009CFDFFFF0901202200000170000001603F +:101CF000000002700000026000000370000003603A +:101D00000230800803D001300238FCD1C046C04602 +:101D10007047EFF3108072B6704780F310887047F9 +:101D2000014B18607047C046E0AD0208044B1B68C9 +:101D30001A0008321B68D26F9B181868000E704793 +:101D4000E0AD0208054B1B681A0008321B68D26F11 +:101D50009B181868000AC0B27047C046E0AD020880 +:101D60001D4B98420FD010D840282FD005D80028FE +:101D700030D0102828D019481EE0802828D0802391 +:101D80005B009842F7D1144816E0154B984214D0E6 +:101D900008D8A0231B0698421CD0124B9842EAD1C7 +:101DA000A0200BE0104B98420AD0104B984209D06B +:101DB0000F4B9842DFD10F487047A420C003FBE7C8 +:101DC0000D48F9E70D48F7E70D48F5E70D48F3E74B +:101DD0000D48F1E70020EFE706005200FF00520037 +:101DE000010000F0090000A0040000F0050000F070 +:101DF000030000F0010052000200520003005200F4 +:101E000001005000020050000500520070B50A4D5C +:101E100004002B6831331B78834204D8E62107483D +:101E2000490002F087FA2B681A00B0321088444348 +:101E3000186A201870BDC046E0AD02082C800D1055 +:101E400010B50020FFF7E2FF0A4B1C682300B433F3 +:101E50001B68C0180368002B0ADB074B1868FFF7E4 +:101E60007FFF012263689A609A68002AFCD110BD46 +:101E70000248FCE7E0AD020808A802080200500092 +:101E80000D4B10B51860002804D0FE235B42038080 +:101E900000234380094B1B681A0050321278002A35 +:101EA00008D051331B78002B04D0022204490020B3 +:101EB00000F086FB10BDC04618A80208E0AD02087D +:101EC000C1A3020870B5C4050500E40D28D102F0D5 +:101ED00077FE144B144A1A605D609C60DC60134B03 +:101EE0001B6854331978002915D0FFF71FFF040031 +:101EF000FFF728FFFA210134013060430C4B0D4CF1 +:101F000089004443186805F0B5F90100200005F088 +:101F1000B1F9094BC1188020400005F0B5FD70BD36 +:101F20000648FCE708A802080001001CE0AD020812 +:101F300020A1020860F590009808000006005200F9 +:101F400070B5C40506000D00E40D2AD1002928D083 +:101F500002F036FE144B154A1A605C609E60DD602C +:101F6000134B1B6852331978002915D0FFF7DEFE9A +:101F70000400FFF7E7FEFA210134013060430D4B06 +:101F80000D4C89004443186805F074F901002000E5 +:101F900005F070F9094BC1188020400005F074FD70 +:101FA00070BD0748FCE7C04608A80208000100050C +:101FB000E0AD020820A10208C0EA21014826000085 +:101FC0000600520070B506000C001500072903D961 +:101FD0001449154802F0AEF91F232A009A4303D092 +:101FE0001249114802F0A6F9114B1B689A695B6906 +:101FF000B01AC0090001C0181F231D40032C07D8C8 +:10200000E400A340A54002689A431543056070BDF3 +:10201000043CE400A340A54042689A431543456050 +:10202000F5E7C04691020000BE800D10920200004C +:10203000E0AD0208F0B585B000900D001400002856 +:1020400000D138E1002A00D135E1072903D94E211A +:102050009A4802F06FF92368012B03D94F21974862 +:1020600002F068F90F2362689A4303D05021934825 +:1020700002F060F91F22237A934303D051218F4845 +:1020800002F058F9E368032B03D952218B4802F080 +:1020900051F92369012B03D95321884802F04AF9E9 +:1020A0006369012B03D95421844802F043F9A369E1 +:1020B000012B03D95521814802F03CF9E369032B38 +:1020C00003D956217D4802F035F9236A012B03D943 +:1020D00057217A4802F02EF9636A012B03D958215F +:1020E000764802F027F9A36A012B03D959217348D6 +:1020F00002F020F9E36A032B03D95A216F4802F05A +:1021000019F9236B072B03D95B216C4802F012F9F4 +:102110002668072D04D9CC216948890002F00AF904 +:102120000122AA400192012E07D96649644802F0B3 +:1021300001F9009B019A9A6004E0002EF9D1009BFE +:10214000019A5A606668072D03D95F495C4802F01E +:10215000F1F80F2332009A4303D05C49584802F04B +:10216000E9F80F215A4FAB0002933B6808007D331A +:102170001A78009B0E40D2181368A9009C46AB0049 +:10218000984063468E4083431E431660227A29009E +:102190000098FFF717FFE668082D03D94D49484816 +:1021A00002F0C8F8032E03D94B49454802F0C2F8A3 +:1021B000032108006B0003933B686F00B8400E409A +:1021C000BE407C331A78009B9A18136883431E43E1 +:1021D00016602669082D03D94049394802F0AAF84B +:1021E000012E03D93E49364802F0A4F8019A009B1B +:1021F000D74301221640AE409B693B401E43009BE3 +:102200009E616669072D03D936492D4802F092F880 +:10221000012E03D934492A4802F08CF801202C4BB6 +:1022200006401968AE400B0084467E331B78009A46 +:10223000D3181A68174037431F600B0062467F337C +:102240001878009B6E001818A36910361340AB4035 +:10225000E56902321540B540B2402B43019D076845 +:102260002A4397433B4303600220042580310A78C8 +:10227000009B9A18636A11685B000340A06A8000A3 +:10228000284003436046256A284018250343E06A36 +:10229000C00028400343206BFF244001204003433B +:1022A000FE20029D80000540AB400020A1430B436F +:1022B000136005B0F0BD0D48FBE7C04677800D10F8 +:1022C000BE800D1031030000CD030000CE030000DE +:1022D000E0AD0208F1060000F20600007206000000 +:1022E000730600000C0400000D04000001005A00F9 +:1022F0000B4B70B51B680500B4331B680C00C3188A +:102300001B68002B09DA0B0C03D00649064802F0C3 +:1023100011F80020A4B26C6070BD0448FCE7C04610 +:10232000E0AD0208DE0200002C800D1001008A00E2 +:10233000036870B505000C00002B0BDAC2600B0CB3 +:1023400004D0B1210448890001F0F4FF0020A4B2B8 +:10235000AC6070BD0148FCE72C800D1001008A00C4 +:1023600070B505000C1E03D1A221084801F0E2FF60 +:10237000074B1B68B4331B68EB181B68002B03DA90 +:102380000020EB68236070BD0248FCE706810D1059 +:10239000E0AD020801008A00024B1A68002A00D151 +:1023A000186070471CA80208F0B5314D1F002B685B +:1023B00085B0040002910392002B03D1BE212D4869 +:1023C00001F0B8FF2C23FF225C432B683D001C1951 +:1023D0003B0A3F0CA760284F134063603B681540E1 +:1023E000256031331B789D4204D3E6212348490000 +:1023F00001F0A0FF3B681A00B032128855431A6AF8 +:102400003233AD1825611B7865689D4204D3F421F1 +:102410001A48490001F08EFF3B681E6A2B0080338A +:102420005B01F3186361A36801931B0C09D0134F80 +:102430001349380001F07EFF82213800890001F045 +:1024400079FF019B6D011B041A0C13430D4A75198A +:10245000AD182B60039BE361029B23620023A36101 +:102460000A9B002B01D01B88A38105B0F0BDC0469C +:102470001CA8020850810D10E0AD02082C800D1040 +:102480000702000008100000F0B5040085B0002825 +:1024900003D15B21214801F04DFF6368032B03D971 +:1024A0005D211E4801F046FFE36A002B03D1612144 +:1024B0001A4801F03FFF236B002B03D1622117481C +:1024C00001F038FFA36802AD2B80154B22681B6812 +:1024D000E16ADB8EE0689B18AB706368A26A0393C5 +:1024E00000952369266A676AFFF75EFF00213B00BB +:1024F0000A0000913000FFF757FF216B280001F020 +:10250000A1FE0022AB5E002B06DB1F2213401E3A09 +:102510009A401300034A136005B0F0BD50810D10BE +:10252000E0AD020800E100E0F7B504000F00151E61 +:10253000019304D183211D48490001F0FBFE1C4E8C +:102540003368002B04D108211848FF3101F0F2FE56 +:102550002C235C4332685F4314192669D719002E77 +:1025600020D0BB69002B1FD13368002B1CDA01225D +:102570006368140011009C407B6899402B68090433 +:102580009BB20B432B60019BF5607B62BA61230C0D +:1025900004D0B1210748890001F0CCFE0020A4B28C +:1025A000B460FEBD0448FCE70448FAE750810D1012 +:1025B0001CA802082C800D1004028A0007028A0061 +:1025C000F8B5114F04003B680E001500002B04D134 +:1025D00068210E48FF3101F0ADFE2C2060433C68BD +:1025E0002418236A002B04D16C210848FF3101F024 +:1025F000A1FEE369AB4204D90020236AAD00EE508E +:10260000F8BD0348FCE7C0461CA8020850810D1025 +:102610000A028A00002373B504000193984204D192 +:10262000ED212C48490001F085FE2369002B04D1DF +:10263000DC212848FF3101F07DFE6369002B04D1C5 +:10264000EE212448490001F075FE236A002B04D1D5 +:10265000DE212048FF3101F06DFE6269D5682B0C48 +:1026600022D01B04136013681B4B20691B68B43312 +:102670001B68C3181B68002B16DA01A9FFF770FE50 +:102680000026B0420CD10198E26903681E0CDBB24F +:102690009A4205D9226A9B009B58002B00D098478C +:1026A00031002069FFF724FEADB2002D09D0636927 +:1026B0001D6000251B68636AAB4205D098476562C0 +:1026C000A56163691B6873BDA36A002BF8D09847A6 +:1026D000F6E7C04650810D10E0AD020870B5084C19 +:1026E00005002368002B04D1DD210648490001F0D4 +:1026F00021FE2C20454320684019FFF78BFF70BD59 +:102700001CA8020850810D1070B50A4D04002B68FA +:1027100031331B78834204D8E6210748490001F091 +:1027200009FE2B681A00B03210884443186A20183A +:1027300070BDC046E0AD02082C800D10F8B5174BF7 +:102740000D001B6831331B78834225D9002923D023 +:102750001F240B681C401FD1FFF7D6FF07002B6812 +:102760000F4EDA0821003060686804F08DFF210008 +:102770003800FFF7BDFD21002A003068FFF7D8FDC3 +:10278000041E07D101003068FFF7B2FD03002000EE +:10279000002B00D00348F8BD0348FCE7E0AD020879 +:1027A00020A8020801018A0003018A00F7B5184F2A +:1027B00004003B680191DE683368834226D9002516 +:1027C000A94202D1FFF7A5FA050038680368002B7B +:1027D0001ADA1F2201232240934064097268A40080 +:1027E0001419226813420DD09A432260002400215C +:1027F000FFF77EFD019B002B02D12800FFF78DFA29 +:102800002000FEBD034CF2E7034CF3E7034CF7E76F +:1028100020A80208020188000301880004018A0040 +:102820000A4B1B68DB681A6882420DD959681F235E +:10283000420918401E3B8340920050581840431EE6 +:102840009841034BC01870470248FCE720A80208D3 +:102850000001880004018A0070B5154E0400336839 +:102860000D009B6CC340DB0703D4A721114801F086 +:1028700061FD0F2D03D9A8210E4801F05BFDF02268 +:102880002B041203290013400F2211400B4331681F +:10289000A402096964188021C9016350605810407E +:1028A000401B431E9841044B4042184070BDC04637 +:1028B000E0AD02089B810D100300C20070B5094D08 +:1028C00004002B689B6CC340DB0703D4C721064878 +:1028D00001F030FD2B6810341B69A402E0580F236F +:1028E000184070BDE0AD02089B810D1070B504006A +:1028F0000D00002804D17A212448FF3101F01AFD8F +:102900006B89DB0B04D0BD212048490001F012FD8A +:102910000222AB799343012B04D07C211B48FF3169 +:1029200001F008FD0222EB799343012B04D0BE2174 +:102930001648490001F0FEFC6A897F231100994383 +:1029400022D10721AB7952020B4013436A7A31310D +:1029500092071343EA79D2000A4013430122297AED +:102960004A40920113431A0009490A409A420BD186 +:102970006262606A0840801A43425841054B4042F7 +:102980001840054BC01870BD0448FCE79B810D1032 +:10299000DBFEFFE0FDFF3DFF0300C2000100C200BF +:1029A00070B504000D00002804D1C2212E48FF316B +:1029B00001F0C0FC6B89DB0B04D0E1212A484900FF +:1029C00001F0B8FCAB79072B04D9C4212648FF31AC +:1029D00001F0B0FCEB79072B04D9E2212248490031 +:1029E00001F0A8FC2B79073B182B04D9C6211E48FF +:1029F000FF3101F09FFC6B897F22190091430A1E71 +:102A00002ED12968FF3291430A006979A8790A43D7 +:102A100007215B02084018436B7A31319B0718434A +:102A2000EB79DB000B4018430123297A4B40F82156 +:102A30009B0118432B7949051B060B400343636038 +:102A40002260216891420DD16068084A1040C01A86 +:102A500043425841064B40421840064BC01870BDD7 +:102A60000548FCE70348FAE79B810D10FFFEFFFFD6 +:102A7000FDFF3DFF0300C2000100C20010B5041EAF +:102A800004D1FF210748490001F054FC8023626A09 +:102A90001B0613436362606A034BC00F0138184082 +:102AA00010BDC0469B810D100300C20010B5041E6E +:102AB00003D10749074801F03DFC802362681B06EB +:102AC000134363606068044BC00F0138184010BDA9 +:102AD0004E0200009B810D100300C20070B504007F +:102AE0000D00002803D12449244801F023FC0222D0 +:102AF000AB799343012B04D0A5212048C90001F0F4 +:102B000019FC0222EB799343012B03D01C491B488B +:102B100001F010FC1B4B1B682F331A78012A26D1B9 +:102B200069897F230800984323D10720AB794902A4 +:102B300003400B43697A313089070B43E979C900B7 +:102B400001400B43297A4A40920113431A000E496F +:102B50000A409A420DD16262606A0840801A43427C +:102B600058410A4B40421840094BC01870BD0948F3 +:102B7000FCE70948FAE7C046270500009B810D10D5 +:102B800029050000E0AD0208DBFEFFE0FDFF3DFF90 +:102B90000300C2000200C2000100C20070B50500BF +:102BA0000C00002803D12F492F4801F0C3FBA37963 +:102BB000032B03D92D492C4801F0BCFBE379032BEF +:102BC00003D92B49284801F0B5FB2379073B182B83 +:102BD00004D9AF212448C90001F0ACFB254B1B6888 +:102BE0002F331A78012A36D161897F230800984350 +:102BF00033D10720A379490203400B43617A313076 +:102C000089070B43E179C90001400B43217A4A400F +:102C1000F821920113432279490512060A40134311 +:102C20001A0015490A409A4217D1FF232068984399 +:102C3000030060796A6003432B60286898420ED1D4 +:102C400068680840801A434258410C4B4042184083 +:102C50000B4BC01870BD0B48FCE70B48FAE708485F +:102C6000F8E7C046750500009B810D107605000051 +:102C700077050000E0AD0208DBFEFFFFFDFF3DFF32 +:102C80000300C2000200C2000100C20010B5041E11 +:102C900003D10B490B4801F04DFB0B4B1B682F3345 +:102CA0001B78012B0AD18023626A1B0613436362DF +:102CB000606A064BC00F0138184010BD0448FCE79D +:102CC000BD0500009B810D10E0AD02080300C200AD +:102CD0000200C20010B5041E03D10B490B4801F0DD +:102CE00029FB0B4B1B682F331B78012B0AD1802348 +:102CF00062681B06134363606068064BC00F0138AF +:102D0000184010BD0448FCE7160600009B810D101A +:102D1000E0AD02080300C2000200C20070B504006A +:102D20000D00002803D12149214801F003FB2B7835 +:102D3000032B03D91F491E4801F0FCFA6B78032BC3 +:102D400003D91D491A4801F0F5FA1C4B1B682F33B3 +:102D50001A78012A26D1A9887F230800984323D115 +:102D600007202B78490203400B43E978313089076B +:102D70000B436978C90001400B43A9784A4092018E +:102D800013431A000E490A409A420DD16262606AEA +:102D90000840801A434258410A4B404218400A4BAF +:102DA000C01870BD0948FCE70948FAE7560800005A +:102DB0009B810D105708000058080000E0AD020884 +:102DC000DBFEFFE0FDFF3DFF0300C2000200C2008A +:102DD0000100C20070B504000D00002803D1214994 +:102DE000214801F0A7FA2B78032B03D91F491E486D +:102DF00001F0A0FA6B78032B03D91D491A4801F0A2 +:102E000099FA1C4B1B682F331A78012A26D1A988FE +:102E10007F230800984323D107202B7849020340E1 +:102E20000B43E978313089070B436978C9000140C9 +:102E30000B43A9784A40920113431A000E490A40F5 +:102E40009A420DD1626060680840801A434258413E +:102E50000A4B404218400A4BC01870BD0948FCE7B5 +:102E60000948FAE7A70800009B810D10A808000098 +:102E7000A9080000E0AD0208DBFEFFE0FDFF3DFF1A +:102E80000300C2000200C2000100C20010B5041E0F +:102E900003D10B490B4801F04DFA0B4B1B682F3344 +:102EA0001B78012B0AD18023626A1B0613436362DD +:102EB000606A064BC00F0138184010BD0448FCE79B +:102EC000EB0800009B810D10E0AD02080300C2007A +:102ED0000200C20010B5041E03D10B490B4801F0DB +:102EE00029FA0B4B1B682F331B78012B0AD1802347 +:102EF00062681B06134363606068064BC00F0138AD +:102F0000184010BD0448FCE7440900009B810D10E7 +:102F1000E0AD02080300C2000200C20070B5040068 +:102F20000D00002803D12149214801F003FA2B7834 +:102F3000032B03D91F491E4801F0FCF96B78032BC2 +:102F400003D91D491A4801F0F5F91C4B1B682F33B2 +:102F50001A78012A26D1A9887F230800984323D113 +:102F600007202B78490203400B43E9783130890769 +:102F70000B436978C90001400B43A9784A4092018C +:102F800013431A000E490A409A420DD16262606AE8 +:102F90000840801A434258410A4B404218400A4BAD +:102FA000C01870BD0948FCE70948FAE7A809000005 +:102FB0009B810D10A9090000AA090000E0AD0208DC +:102FC000DBFEFFE0FDFF3DFF0300C2000200C20088 +:102FD0000100C20070B504000D00002803D1214992 +:102FE000214801F0A7F92B78032B03D91F491E486C +:102FF00001F0A0F96B78032B03D91D491A4801F0A1 +:1030000099F91C4B1B682F331A78012A26D1A988FD +:103010007F230800984323D107202B7849020340DF +:103020000B43E978313089070B436978C9000140C7 +:103030000B43A9784A40920113431A000E490A40F3 +:103040009A420DD1626060680840801A434258413C +:103050000A4B404218400A4BC01870BD0948FCE7B3 +:103060000948FAE7F90900009B810D10FA090000F0 +:10307000FB090000E0AD0208DBFEFFE0FDFF3DFFC5 +:103080000300C2000200C2000100C200094B1B681D +:103090002F331B78012B0AD18023426A1B0613436E +:1030A0004362406A044BC00F013818407047034820 +:1030B000FCE7C046E0AD02080300C2000200C20007 +:1030C000094B1B682F331B78012B0AD180234268E0 +:1030D0001B06134343604068044BC00F013818407F +:1030E00070470348FCE7C046E0AD02080300C20099 +:1030F0000200C200036810B50400002B07D00120B5 +:1031000001F00EF92368013B2360002B01D0002061 +:1031100010BD0148FCE7C0460200B200030A087077 +:103120004B70030C000E8B70C870704770B50400B4 +:103130000D00002841D000293FD0002B3DD05A621D +:10314000F9220321D20083588B4383502B68DBB2D2 +:10315000012B03D957311A4801F0ECF8AB68DBB208 +:10316000032B03D95B21164801F0E4F86B68072BA9 +:1031700003D95C21124801F0DDF8EB68DBB2012BCA +:1031800003D95D210E4801F0D5F8C022E021AB68DB +:1031900092011B0313406A68C90212040A401343D8 +:1031A0000122296800200A4080211343EA6849046B +:1031B00012060A401343236070BD0248FCE7C04674 +:1031C000E2810D100400B20010B50400012907D9F6 +:1031D000A021074801F0AEF801232268134304E060 +:1031E0000029F9D1012203689343236010BDC04632 +:1031F000E2810D1070B54E1EF3B204001500012BD4 +:1032000007D9042925D0082927D0E521154801F040 +:1032100091F8032D03D9E621124801F08BF8072E0F +:1032200014D8300004F01CF8041312171212121BE9 +:1032300080231B01E418002C08D0C0222D04920228 +:1032400023681540084A13401D43256070BD88233C +:10325000EFE7032ADFD89023EBE7032ADBD8982394 +:10326000E7E7C046E2810D10FFFFFCFFF0B5160056 +:1032700089B005930EAB04CB01901B7802910493A7 +:1032800010AB1D78331FDBB20392129CFA2B04D8CB +:103290003E213B48FF3101F04DF8049B043BDBB27B +:1032A000FA2B04D89F213648490001F043F86B1EE1 +:1032B000012B08D9FB222B1F134204D04021304898 +:1032C000FF3101F037F8119B2D02DF07039B360415 +:1032D000002B46D0059B002B04D1A0212848490093 +:1032E00001F028F8049BFF2B04D142212448FF3130 +:1032F00001F020F8F0231B011D40636A0793C023EF +:103300009B021E40029B2B4333433E0C00270024AC +:10331000C0221F43019B20001F650727049B9202C8 +:103320001B0413401D43039B9C4202D2154B984241 +:1033300001D109B0F0BD019B5B6C3B40032B0CD865 +:10334000059B03991B5D01342B4332008C4200D254 +:1033500000221343019AE4B2136507A8FFF7CAFEDF +:10336000E1E7F0231B011D40636A3F0C0793C02374 +:103370009B021E40029B2B4333433E00C7E7C046DF +:10338000E2810D100200B200F7B50193043BDBB2FD +:1033900005000F001600099CFA2B04D8D521164809 +:1033A000490000F0C7FF002E21D007226B6C1340AC +:1033B000032B1ED88023C021721EDB0292B21A4357 +:1033C000019B89021B040B4013432B65381E0DD053 +:1033D000089B2760F922A660E36102230020A36115 +:1033E000D200A958013B0B436660AB50FEBD0348B9 +:1033F000FCE70348FAE7C046E2810D100400B20082 +:103400000100B200F7B50193043BDBB205000F00E9 +:103410001600099CFA2B04D89C211648890000F05C +:1034200089FF002E22D007226B6C1340032B1FD87C +:103430008023C021721E92031B03920B1A43019B2F +:1034400089021B040B4013432B65381E0DD0089BCB +:10345000E760F9226661236204230020A361D200A1 +:10346000A958023B0B432661AB50FEBD0248FCE766 +:103470000248FAE7E2810D100400B2000100B20038 +:10348000F0B51F00043BDBB28FB006000D00140046 +:10349000FA2B03D85B495C4800F04CFF002C00D1AC +:1034A000ABE00722736C1340032B00D9A7E0631E27 +:1034B0009B039A0B80231B031343C0223F049202F9 +:1034C00017401F433765281E0ED0149B00205B6AEF +:1034D00007950393042309940C900A930A9B042BE9 +:1034E00002D14A4B984201D10FB0F0BD099B079C15 +:1034F00000933300C43301931D680F231D40009BCC +:103500009D4200D91D00002D17D1009B07940993FF +:10351000002B0CD1F92202210320D200B3588B4397 +:10352000B3500A900C9B002B01D00C9B9847009B3A +:1035300003A80993FFF7DEFDD0E7082D0AD1370075 +:10354000D83738682100FFF7E9FD3868211DFFF7FB +:10355000E5FD05E0012D09D13300D0331B68237050 +:10356000009B64195B1B0093019BC5E7022D06D1EC +:103570003300D4331B6823701B0A6370F0E7032DFC +:103580000AD13300D4331B6823701B0A63703300E5 +:10359000D0331B68A370E3E73700D83738682100C1 +:1035A000042DD4D0052D06D1FFF7B8FD3300D0335C +:1035B0001B682371D4E7062D08D1FFF7AFFD330058 +:1035C000D4331B6823711B0A6371C9E7072D0CD123 +:1035D000FFF7A4FD3300D4331B6823711B0A63710A +:1035E0003300D0331B68A371BAE7FFF797FD386843 +:1035F000211DFFF793FD0825B2E7054874E705484C +:1036000072E7C046CD020000E2810D100200B20058 +:103610000400B2000100B20000290CD00722436C64 +:103620001340032B09D8C023013989B21B03194366 +:103630000165002070470248FCE70248FAE7C046EF +:103640000400B2000100B20000230B604B608B60ED +:103650000B61CB604B618B61802302681B061343B7 +:103660000360704730B58B6987B0DB680C001500CC +:10367000002B0FD019681A79012303932378C9B25C +:103680000293FF230193002304950093FFF7EEFDBF +:1036900007B030BD0048FBE78000B20070B51600EF +:1036A00000220400080086B00A9D039204951900C8 +:1036B000037800920293FF23200001931300FFF789 +:1036C000D5FD002806D1030000950122310020001D +:1036D000FFF7D6FE06B070BD30B50F24012385B0CC +:1036E0008D696C442370AB6A002B0BD01B68009271 +:1036F000DBB22200FFF7D2FF002803D12378AA6BA8 +:10370000134023702078431E9841C0B205B030BDED +:10371000F0B587B017000C9A05000C001E00FFF7EB +:10372000A1FF002812D1A3690122DB6B022B00D07C +:103730001300039222780C990292002204910093C4 +:1037400001923B0031002800FFF790FD07B0F0BD6B +:103750000023F0B58F6989B00D00F96A07AC060047 +:103760000292238099425FD03A6B9A425CD0BB6A46 +:10377000002B59D01B68096812680593029BC9B2D7 +:1037800003910492009322000B002900FFF786FFAB +:1037900000282FD16B46FF6B1B7C0493402F1ED05B +:1037A000802F29D0022F41D16B46029A1B7D290020 +:1037B000009230002200FFF771FF00281AD10D227D +:1037C000029B04A900935218039B29003000FFF7C5 +:1037D00065FF00280ED163781F43677002E02378ED +:1037E0001F4327702200029B0093049B2900300096 +:1037F000FFF78EFF09B0F0BD0D22029B04A90093D4 +:103800005218039B29003000FFF748FF0028F1D130 +:10381000802362785B4213430D226370029B04A9EC +:1038200000935218049BE1E70148E3E70148E1E710 +:103830008000B2000300B200F0B51F008B6989B0B0 +:103840001C6A0500002C47D0002A47D0586A0E9EFB +:10385000B04243D34869C6B24869002800D10E7807 +:1038600021682079C9B2079110990296049100212C +:103870000391617901911B6807990093130002007D +:103880002800FFF7F3FC002824D1A1684B1C12D1BB +:103890002169002904D02800FFF7BEFE002819D1B5 +:1038A000109A237D01920F9A3900009228000E9AF7 +:1038B000FFF76AFD0EE0109B227B0493FF23039029 +:1038C000019300900300C9B202962800FFF7CEFCD6 +:1038D0000028DDD009B0F0BD0148FBE70148F9E759 +:1038E0008000B2000400B200F0B5CDB006000C1E9E +:1038F0000692089303D1C449C44800F01BFD00237D +:103900000BAF656B3B80BB70089A06993000FFF7E0 +:1039100071FC002D03D1BE4A10004DB0F0BD2B68E4 +:103920002A79D9B2529B3000049300230393069B5B +:1039300002936B790193032300933B00FFF796FCFE +:10394000021EE9D129693000FFF766FE021EE3D1AD +:1039500052992B7D0CAD01910090FF32290030006F +:10396000FFF750FD021ED7D1529B5E6AA94B5299B8 +:103970008869032812D09A42CED0002E0CD00120A4 +:10398000013E00F0CDFC3200531E9A41A24B524240 +:103990001A40A04BD218E9E73200E8E7002ABBD171 +:1039A0002B78532BB7D16B78462BB4D1AB78442B03 +:1039B000B1D1EB78502BAED12B79052BABD96B79EC +:1039C000012BA8D1297BA3686D18AD7806956D08E9 +:1039D0000540012D00D8B1E0022D00D1ADE00F254A +:1039E0001F278E080936B6004CA880190138FF3809 +:1039F0000068BC46054001356D00079505093D404E +:103A0000079F01356F4309970327400A3840834DCC +:103A10004000405B099D45430DA8256485596646D5 +:103A2000280E3040079E013070436E0F37407C4EA9 +:103A30007F00BE5B40277043606460462E0A0640EC +:103A400010382840AD0400D4383F01304000013622 +:103A500046437E430CA8A6640E1D87197D78079007 +:103A60002802FD782D0605430798865D3543BE780C +:103A70003604354364D40135ED080798656047186E +:103A80003D0028352E78012528003609B0403E7FBC +:103A90006062B5400698A5610CAD800655D502263A +:103AA0000898B043012850D0082084467F7A8C447F +:103AB0001F60002760461F71079F5E713F5C7F0992 +:103AC0005BD1033E9E6060461F262D5C35401D6124 +:103AD00002251D750623E56804262B6000232B7143 +:103AE000256907982E602B71E5695C362E602B7175 +:103AF0004118487F6569022728602B716B71012589 +:103B0000266A01206D42337137607371B56033618D +:103B100033750526A063A06A3A310660266B0371EF +:103B2000337108784006400F052800D9F4E6E16AB1 +:103B300003F096FB65787E847878042020604EE759 +:103B40008026033D3606354397E70698400618D58C +:103B500002260898B043012813D00A2084466E1824 +:103B6000F67A8C441E60002660461E715E712F5CE2 +:103B70007F09B74201D1013EA4E7FF271E739F6072 +:103B8000A1E710270698074017D06E18F67B012092 +:103B90001E600F00002658711E710E37EE5D76090B +:103BA00007D1013E9E60ED5D1F2635401D61012558 +:103BB0008FE7FF2618739E60F5E7012606983040D0 +:103BC00014D00C2084468C4460466E18767B1F719E +:103BD0001E605F712E5C760904D1013E9E606046D6 +:103BE0002D5CE1E7FF261F739E60F8E703251D604B +:103BF000043D187158719D60186118756AE7E56396 +:103C000035600D6088E6C046F90300003A820D1069 +:103C10000500B2000200B200FEFF4DFF2A820D1027 +:103C200032820D100123E763336034330B6073E697 +:103C30004023E3633F3B33600433F7E78023E363D0 +:103C4000423B33600133F1E7F0B589B0029007924F +:103C5000002800D11EE1002900D11BE14B6805932B +:103C6000002B00D116E1002A00D113E10B68069366 +:103C7000002B00D10EE10023C02603930493B6026B +:103C8000039B059A9B00D458002C4DD023785A1ED4 +:103C9000012A09D90422043B9343DBB2002B03D051 +:103CA0006E217D4800F046FB237A032B03D96F2158 +:103CB000794800F03FFBA369002B03D170217648BF +:103CC00000F038FBA3691B68013B032B03D971216A +:103CD000714800F02FFB2278501E072800D9D7E04A +:103CE00003F0BEFA0432D635D6D6D6388021029BF0 +:103CF00009015D18237A2968684F1804304039405B +:103D00000143042029606168014226D00799029886 +:103D10000091A169FFF7E8FD00281ED00823039A4F +:103D20009340049A1A430492039B01330393039A2A +:103D3000069B9342A4D10020049B002B02D0B2200A +:103D40000004184309B0F0BD029B8821D0E7029B14 +:103D50009021CDE7029B9821CAE763689B07E3D5D2 +:103D60002169E06803F00CFB002903D08C214A484C +:103D700000F0E0FA23694A4A934202D95A1E1342DC +:103D800003D08D21444800F0D5FAFF218C466746C8 +:103D9000E168A069B9438268036AA9602169494260 +:103DA000B943E96001680320013901406069471E99 +:103DB000B841000201432962002A2DD01068002179 +:103DC000471C08D067460740802011790006090487 +:103DD00031400743394329645179906809043140DF +:103DE00069640021471C07D08027117BC0B20904F9 +:103DF0003F063140384301430020A96411698142E4 +:103E000005D01F3001390140802000060843E864D6 +:103E1000127D120432402A65002B2CD01968002232 +:103E2000481C07D080201A79C9B21204000632401B +:103E300001430A432A665A799968120432406A6635 +:103E40000022481C07D080201A7BC9B21204000649 +:103E5000324001430A430021AA661A698A4205D00A +:103E60001F31013A0A40802109061143E9661B7D92 +:103E70001B0433402B6702216268FF31114080220E +:103E8000237A12061B0433400A4313432B604BE78B +:103E9000044851E7034855E73A820D10FFFFFCFF45 +:103EA000FFFF00000400B200104B1B683C331B787E +:103EB000834219D9042910D94B1EFF3B132B13D869 +:103EC0001F2319400A4B8000C018C02304229B0006 +:103ED000C1504033C250002070470723D0301940F2 +:103EE000034B8000C150F6E70248F5E7E0AD020859 +:103EF0000000264001004A0010B50F4B04001B686B +:103F00003C331B78834204D8A3210C48490000F0BD +:103F100011FA0B4BA400E418D0239B00E0580723B0 +:103F20001840042807D1C0239B00E0581F230340FA +:103F300080204000184310BDE0AD020889820D10BA +:103F400000002640F7B5041E03D14649464800F05C +:103F5000F1F9B023454DDB00EB58002B00DA7FE090 +:103F6000434B22689A4203D942493F4800F0E2F9A4 +:103F7000E2792368511E8A419B0312069B0B13436F +:103F8000B022D200AB50A3883B4FBB4204D994214E +:103F90003548890000F0CEF92389384EB34203D961 +:103FA0003749314800F0C6F92389A28835491B04F6 +:103FB000D204D20C0B401343334AAB50A37A019185 +:103FC0000F2B04D996212848890000F0B3F9E37A31 +:103FD0000F2B03D92D49244800F0ACF9A389BB422B +:103FE00003D92B49204800F0A5F9FF22E37A29499B +:103FF0001B011340A28912020A400F211343A27A27 +:104000000A40C0211343A27B890512070A401343CB +:10401000B122D200AB50A379042B03D91E49124818 +:1040200000F088F9238AB34204D999210E48890007 +:1040300000F080F9E020A379184AC0001B02A958BB +:104040000340174801400B43AB50238A01981B04DF +:10405000A95803401348014000200B43AB50FEBD5C +:104060001148FCE73F02000089820D100000264045 +:10407000FFFF030049020000FF1F0000FF010000D6 +:10408000510200000000FF018405000059020000F9 +:104090005A02000000FF1F00630200008C050000B0 +:1040A000FFF8FFFFFFFF00FE03004A00F7B5802284 +:1040B000B22607000500324B324C1206E158F600DA +:1040C0000A43E25000930422A359134201D1002D68 +:1040D00035D1B1208023C00022582B499B050A40CE +:1040E000134323500191002F01D0002D06D0B022A0 +:1040F0008023D200A1581B060B43A3500126B223F4 +:10410000DB00E358334224D1002D1DD1002F24D0F1 +:10411000B121C9006258019B1C481A4080239B05AD +:104120001343B0226350D200A3585B005B08A35036 +:10413000009B009AE3585B005B08A350FEBD012082 +:1041400000F0EEF8013DBEE7300000F0E9F8013D77 +:10415000D5E7002F01D0002DDAD0B122C0230020F6 +:10416000D200A1589B050B43A3508742E6D0681E9E +:1041700085416842064D054B2840C018DEE7C04621 +:104180008C05000000002640FFFFFFCF02004A0020 +:10419000FEFFB5FF70B51A4E050033680C001A001B +:1041A00028321278012A15D182080721100088438D +:1041B0000FD103202840C00084401B6892002033A8 +:1041C0009B182200FF24844019684A4014404C4048 +:1041D0001C6070BD5B8FDBB28B4203D17F2109482D +:1041E00000F0A8F807208022054080203368920163 +:1041F0001B680006A4180543A400E550E9E7C04683 +:10420000E0AD0208D2820D100A4B70B59B680A4ED1 +:1042100010300D008400B34209D1002904D1A0213F +:104220000648490000F086F83059355170BD044BFE +:104230001859FBE700ED00E000A00208D2820D1043 +:1042400000000D10F8B506000D00002841D04368AD +:10425000032B03D93B21204800F06CF80023F05ECB +:10426000002828DBB178FFF795FF0024FF22032701 +:1042700094460023F05E716883B21F40FF006646DB +:10428000BA4089013140D243B940002815DB134EB2 +:1042900083089B009B19C026B6009F593A401143E2 +:1042A00099510F4B9A680F4B9A4202D12900FFF7A0 +:1042B000ABFF2000F8BD0C4CD8E70F263340083B7D +:1042C000074E9B089B009B19DE6932401143D96160 +:1042D000E7E7054CEDE7C046D2820D1000E100E0B3 +:1042E00000ED00E000A002080100560070B5802536 +:1042F00004002D02AC4205D8064B18686043FDF758 +:10430000FFFC70BD044B1868FDF7FAFC034BE41882 +:10431000F0E7C04630A1020828A102080080FFFF94 +:1043200010B5034B1B785843FDF7EAFC10BDC0469F +:1043300034A1020870B50D00044C010018222000C1 +:1043400003F095FAA56101BEFEE7C046B0A70208DA +:104350008022054B12069A64986C044BC043C01728 +:104360001840034BC018704700002740FDFFB9FFFD +:10437000030046008022054B120198585B68DBB2AF +:10438000002B02D08023DB02184370470000264038 +:10439000FEE7000002680A4B10B5DA6142681A6253 +:1043A00082685A62C2689A620269DA6242691A6372 +:1043B00082695A63C2699A63FFF7EAFF10BDC0467B +:1043C000B0A70208F0B51922002800D14B322A4BC1 +:1043D0008A4292411B6852421C00A83424881D68FE +:1043E000671903253E68AE4316433E601E68A41954 +:1043F0002768224E374027601C00AA3424881E6894 +:10440000A7193E68AE4332433A601A681B4EA218A1 +:1044100014682640166000280ED00020102904D908 +:10442000213088428041404201300F225B68196888 +:10443000914308431860F0BD1A00553212788A4241 +:10444000F3D21A005632127801208A42EDD21A00B5 +:104450005732127800188A42E7D21A00583212787E +:1044600028008A42E1D21A005932107888428041ED +:1044700040420430D9E7C046E0AD0208FFFCFFFF30 +:10448000B0235B055A782120002A01D05878C0B2A9 +:104490007047B0235B059A89002A02D0988980B2C0 +:1044A000704780204000FBE770B5FFF7F2FF8023E4 +:1044B000184A5B00984215D111680F240B000222A4 +:1044C000983318680B6818180368A34313430360F4 +:1044D00008009C300B6801685B181968A1430A4307 +:1044E0001A6070BD1268B0201100C02598311468A0 +:1044F0000968094B4005C35861180C68AD002B438F +:1045000023430B6011009C3113680A689B18034A0F +:104510008258E5E7E0AD02084818000044180000A2 +:1045200070B5FFF7B6FF8023184A5B00984215D19B +:1045300011680F240B000322983318680B681818B1 +:104540000368A3431343036008009C300B680168B1 +:104550005B181968A1430A431A6070BD1268B02441 +:104560001100C120C0269831156809686405400112 +:10457000235869180D68B60033432B430B601100B4 +:104580009C3113680A689B182258E5E7E0AD0208E1 +:1045900010B5FFF77EFF8023114A5B0098420DD1D2 +:1045A000136810491A00983212681B689B181A6821 +:1045B0001140C022D2010A431A6010BDB021126816 +:1045C000094B4905CB581100C02098310968126881 +:1045D00080005218116803430B431360EDE7C04697 +:1045E000E0AD0208FF8FFFFF1818000070B5FFF75D +:1045F00050FF8023144A5B0098420DD11368134981 +:104600001A00983212681B689B181A6811408022A1 +:10461000D2010A431A6070BD1268B0241100C0268E +:10462000983115680A4809686405235869180D68A7 +:10463000B60033432B430B6011009C3113680A68AA +:104640009B182258E6E7C046E0AD0208FF8FFFFF47 +:104650004C18000010B50020FEF730F90400FFF7F9 +:104660000FFF01221300222801D863426341134047 +:10467000180010BD10B5074C236831331B78002B90 +:1046800004D1E62104484900FFF754FE2368186A64 +:1046900010BDC046E0AD02082C800D1030B50400FE +:1046A00085B00D00042803D927492848FFF742FEAA +:1046B0006B1E012B07D9FB222B1F134203D0244969 +:1046C0002248FFF737FE234BA400E458042D01D005 +:1046D000012D1AD100200FE0A3682B420BD1E36813 +:1046E00029001A685B6802920193039302A8236869 +:1046F0009847194B1C606469002C04D0174B9842F2 +:10470000EAD1012DE8D105B030BD022D06D1124B02 +:104710001B68181EF7D01C6903E01C006369002B9E +:10472000FBD10020002CEED0A3682B4209D1E36816 +:1047300029001A685B6802920193039302A8236818 +:1047400098472469EEE7C046E50900001B830D1079 +:10475000E609000048A8020844A80208FF00420039 +:10476000F8B50400012803D92A492B48FFF7E2FDD8 +:10477000FFF786FE85B2FFF78CFE0700002080263B +:10478000FEF79CF87600002811D1B74211D1222DF6 +:104790000FD88025214B6D041B6824065968204BD7 +:1047A0002C40CA581F4D2A401443CC50F8BDB74284 +:1047B00029D0FFF75FFF0500B7420FD1621E944179 +:1047C000802362425B001A40174BD2180121280057 +:1047D000FDF7AEFD002808D01448E7E7621E9441BB +:1047E000022362421A40124BEFE70C4B1B68B433B2 +:1047F0001B68EB181A68002AFCDBEB6800201B0E14 +:10480000A02BE9D1D2E7222DE6D9FFF733FF05002F +:10481000D4E7C0467F0A00001B830D10E0AD0208FC +:1048200018F00000FFFFFFFE01000030040042000E +:104830000100000CF7B50700012803D929492A48CF +:10484000FFF778FDFFF725FE80235B0098421CD020 +:10485000FDF75FFAB0230190244D254A5B05002F38 +:104860001AD0244903205958A950234A23499C5C53 +:104870001F226B58E4B293431A000B2313436B506F +:10488000FFF74EFDFFF7B2FE12E0FFF7E3FE002850 +:10489000DED11B4E3000FEBDAF50E8220120D20019 +:1048A0009C5CFFF75DFFE4B2061E0DD1FFF7FCFD37 +:1048B0001F21124A0C40AB588B431C43AC50002FB5 +:1048C00006D1FFF765FE3E000198FDF726FAE1E705 +:1048D0000720FFF725FDFFF723FE0020FFF740FF2D +:1048E0000600F1E7530800001B830D10000026406E +:1048F000307F000010180000410700001CFF00007E +:104900000300420010B5041E03D111491148FFF7FE +:1049100011FDF222104BD2011B68DB689A5822600D +:10492000F022D2019A5862600C4A9A58A2600C4A4E +:104930009A58E2600B4A9A5822610B4A9A5862616F +:104940000A4A9A58A2610A4A9B58E36110BDC046C0 +:10495000D40A00001B830D10E0AD020804780000AB +:10496000087800000C78000010780000147800002F +:104970001878000010B5041E03D110491048FFF745 +:10498000D9FCF0220F4B61681B68D201DB6899509B +:10499000A1680D4A9950E1680C4A995021690C4A66 +:1049A000995061690B4A9950A1690B4A9950E16984 +:1049B0000A4A99502168E832995010BDFC0A00005B +:1049C0001B830D10E0AD0208047800000878000099 +:1049D0000C780000107800001478000018780000AF +:1049E000F7B50700012803D940494148FFF7A2FC69 +:1049F000404D6B68002B4AD1FDF78BF96B68019035 +:104A0000002B56D13C4E33681A0043321278002AEC +:104A100007D09B68E0331B68DB0602D53748FFF7F9 +:104A200071FFFFF736FD80235B00984246D13800C6 +:104A300003F01AF8002433681A0043321278002A6F +:104A400017D0002815D09B68E0331B68DB0610D513 +:104A5000FFF716FD294B212808D032681300B03328 +:104A6000198807234B43126A9B18DB681800FFF76D +:104A700081FF0198FDF751F9002C0ED16B68002BD6 +:104A800003D008210120FFF709FE2000FEBD01210F +:104A90000800FFF703FE041EAED06B68002B03D0A6 +:104AA00002210120FFF7FAFD154B9C42EDD0154C79 +:104AB000EBE704210120FFF7F1FDA3E7FFF7DAFDA3 +:104AC0003368B4331B68C0180368002B0BDB042366 +:104AD0000D4A11690B431361012F02D030BF002032 +:104AE000A8E720BFFBE70020054CA4E7AE020000CA +:104AF0001B830D1048A80208E0AD020824A8020894 +:104B000005004200FF00420000ED00E0C0228020CE +:104B1000064952008B58C0059B009B0803438B50ED +:104B2000802388581B0603438B50704700002640A3 +:104B30007047FFF7FDFF72B6124C134DAC4209DA15 +:104B400021686268A368043B02DBC858D050FAE7CA +:104B50000C34F3E70D4B0E4CA34208DA19685A687F +:104B60000020043A01DB8850FBE70833F4E70948EA +:104B700009490860BFF34F8F00F0E4F800F09CFA99 +:104B8000FEE700000C8B0D10248B0D10248B0D10F4 +:104B9000348B0D1000A0020808ED00E0FEE7FEE7F0 +:104BA00000B504207146084202D0EFF3098001E00D +:104BB000EFF308800430FFF7EDFBFEE770470000DD +:104BC000E02370B5504C9B00E2580F23D021072002 +:104BD00013409A00121989005158014066D00429E7 +:104BE00058D04A48002B66D1B223B1220321DB0002 +:104BF000D200E558A358A6581B0F360F0B400E42A3 +:104C000004D0A258120F0A40012A01D1EA0701D4A8 +:104C1000032B11D1B0233E4ADB00E558A158E658DA +:104C2000C904C90C02F026FBAD03AD0B6843F101CA +:104C3000C90F013102F01EFBE0239B00E3589B06E5 +:104C40009B0FD840334B1860334B1C691969240AF9 +:104C5000090E013102F00EFB304BE1B21860013158 +:104C600002F008FB2E4B040018602E4B2E491860F2 +:104C70002E4BC01802F0FEFAFA212D4B8900187055 +:104C80002C4BE01802F0F6FA2B4B18602B4BC003AC +:104C9000186070BDC021890052581F210A40112A96 +:104CA00001D0132A04D1802000029BE7244899E711 +:104CB000FA20C00196E7012BBED1C823C0220321F0 +:104CC000DB00D200E558A358A6581B0F360F0B4047 +:104CD0000E4204D0A258120F0A40012A01D1EA075D +:104CE00001D4032BA8D1C022D200A358A158A558A3 +:104CF0007F221F261340090A3140584302F0BAFAB6 +:104D0000290C314096E7C0460000264000366E016F +:104D10008405000020A102080000214024A102080F +:104D20001CA102082CA1020840420F003F420F00C4 +:104D300034A10208E703000030A1020828A10208FC +:104D400000127A0010B51B48FCF7EAFFB022E02100 +:104D50003020194CD200A35889005B005B08A35097 +:104D600063588343635080235B04A350134B144A5E +:104D7000E250A02204339201E250FF22114BE25094 +:104D8000FFF7C4FEC02201215200A3588B43A35059 +:104D9000FFF714FFFFF714FFB0235B055A78002AD2 +:104DA00002D05B78212B03D10022074BDA605A60D6 +:104DB00010BDC046747F0D10000026408405000021 +:104DC000010002008C050000E0002340024BD86F78 +:104DD000032318407047C0460400214010B5FCF77B +:104DE00098FF0749074ACB6F1A40074B1343CB671D +:104DF000102306490A681A42FCD0FCF78EFF10BD4A +:104E000004002140FCFF00000100FA058800214059 +:104E100070B583050600002B04D0E8211048FF314F +:104E2000FFF788FA0F4CFCF774FFE36F0500DB43D4 +:104E30009B0701D1FFF7D2FFB0230B4A9B00D6504E +:104E4000E36F0A4A0A491A400A4B1343E3671023E7 +:104E50000A681A42FCD02800FCF75FFF70BDC0460C +:104E600063830D100400214000002140FCFF00007E +:104E7000880021400300FA0510B562B600F0B0F9D1 +:104E8000FFF744FEC0220120024952008B588343A1 +:104E90008B5010BD0000264010B50020FDF71EFC11 +:104EA00010BD0000802310B50C4C032023602300AC +:104EB000210008336360FDF741FC0948FDF76CFAF7 +:104EC000084B1B6851331B78002B02D00648FDF7B6 +:104ED000DBFA20001830FCF7D3FF10BD00C0020839 +:104EE0003CC00208E0AD0208C0830D1010B50448B4 +:104EF000044A0021121A02F0C7FBFBF7F5FA10BDB5 +:104F00000000020800A002080022E82313B5019265 +:104F1000019C9B0523430193019B090419430191C3 +:104F2000019B000218430123019001990B43019357 +:104F30000199124BD96012491868002806DB8A4291 +:104F400002D10120404216BD0132F5E78A42F8D075 +:104F500001229A6000221869002803DA8A42F0D000 +:104F60000132F8E78A42ECD0DB6800200193A023ED +:104F7000019A1B069A42E6D00198E4E7000023401C +:104F8000983A000010B5084B0024DB78013B012B58 +:104F900007D801210800FFF7B7FF04006420FFF7DE +:104FA000A5F9200010BDC04664AF0208A02270B56C +:104FB0000E4DD200AA580400032A01D0FFF7E2FFE9 +:104FC0000B4B1B68002B06DA0A4B0B4ADA6472B6ED +:104FD00002F062FD62B6AC239B00EC50074B9C6074 +:104FE000236883F3088863689847FEE70000214040 +:104FF00000012640000023402143341200ED00E070 +:1050000070B50400FFF7BEFF144B1B68002B1DDAC0 +:10501000134B144ADA6472B6B023134A134D9B0043 +:105020001348EA50C36F134A13491A40134B1343F2 +:10503000C36710230A681A42FCD00120FFF756F913 +:10504000B0239B00EC5002F027FD62B62000FFF772 +:10505000DFFE0020FFF7C4FCFBE7C046000126404E +:10506000000023402143341200400016000021407C +:1050700004002140FCFF0000880021400300FA05E5 +:1050800010B500280ED1FFF77DFF074B1B68002BE2 +:1050900003DA064B064ADA6472B60648FFF7B8FE32 +:1050A00002F0EAFC10BDC04600012640000023408B +:1050B000214334120040001670B586B0FFF7F2FEAF +:1050C000FFF7DAFE80203D4A3D4B01A91A604000FF +:1050D0006A46FCF743FD041E31D13A4D03003A4ABB +:1050E00029000198FBF7BEFB041E28D1F021EA68D5 +:1050F000364B090652189A602A69DA606A695218B2 +:10510000DA61AA691A62FBF7BBF9041E17D1022300 +:10511000EB56002B13D02E4A013B9B002D4D9B5884 +:105120002B6000F0C9FB2C4A060029682B4800F0D0 +:105130001BFC002E0ED101212848FEF745F86042E5 +:10514000604103ACFFF79CFF200001F02BFC00281E +:1051500002D0FEE73400F2E702A9207900F091FCCA +:1051600043425841FFF78CFF029BA468E418039B5D +:105170001B89E418FFF7BAFE43425841FFF780FF4E +:10518000104B1878042818D802F06AF803030707B0 +:105190000F002000FFF70AFFFEE702210020FDF7C5 +:1051A0005BFB2000FFF702FFF6E706210E20FDF76C +:1051B00053FB2000FFF724FFEEE7FEE70C840D1001 +:1051C000E4AD020810AE020864AF020840A1020874 +:1051D00038A102085CA80208E8AD020800004240BD +:1051E00010B500F009F800F035F800F043F800F0D1 +:1051F00005F900F02DF810BD80218022124BC90066 +:105200001B68D205986810B542501A007432128893 +:105210000E4C121810680440D42080012043106006 +:105220001C001A0072347032247812789868733334 +:10523000A2401C780323A340134380221206134389 +:105240004350435810BDC046E0AD0208FF00FFFFC9 +:1052500070470000054B1B681A003F321278052A80 +:1052600003D900219A68024BD1507047E0AD020883 +:10527000140C000010B51D4C1D4A00212000FCF745 +:10528000D9FE20001B4C1C4A0121FCF7D3FE1B4A0F +:1052900002212000FCF7CEFE194A03212000FCF772 +:1052A000C9FE184A04212000FCF7C4FE164A052155 +:1052B0002000FCF7BFFE154A06212000FCF7BAFECD +:1052C0002000134C134A0721FCF7B4FE124A0421B4 +:1052D0002000FCF7AFFE114A06212000FCF7AAFED1 +:1052E0000F4A07212000FCF7A5FE10BD0000324048 +:1052F00060850D108005324094850D102C850D10B1 +:10530000C4840D1090840D105C840D1028840D1041 +:1053100000033240F8840D10C8850D10FC850D1077 +:1053200030860D1010B50A4B1B683E331B78834244 +:105330000BD9E0220F24074B8000C018920083583D +:10534000A34319438150002010BD0348FCE7C04629 +:10535000E0AD02080000264001004A0010B50A4BEB +:105360001B683E331B7883420CD9E0223024074B64 +:105370008000C018920083580901A343194381504B +:10538000002010BD0248FCE7E0AD02080000264006 +:1053900001004A00054B06491B681A000832D26F0B +:1053A0001B689B181A680A401A607047E0AD020833 +:1053B000FF00FFFF074B1B68190008311A68CB6F0D +:1053C0008021D218136849041B021B0A0B43136087 +:1053D0007047C046E0AD0208054B06491B681A003D +:1053E000883212681B689B181A680A401A60704756 +:1053F000E0AD0208FF00FFFFFEE70000F8B59621D0 +:105400000020FEF7DFFFFEF7B5FF002801D1FEF711 +:105410009FFF0120FFF70EFA644B65495A6C0A4062 +:10542000E82189010A435A645A6C120AD2B23A2A14 +:1054300004D15A6C5F4802401143596400210800AE +:10544000FFF78CFFFFF7C8FFFFF7B4FFFFF7A2FFDE +:10545000594D5A4C2B685A4F3D331B78002B0ED0B8 +:10546000C0268023F600A2599B053A401343A3515E +:105470000120FEF755FFA3595B005B08A3510021F3 +:105480000120FEF711FD2B683E331B78002B03D162 +:105490004C494D48FEF74EFFE0239B00E6580F2392 +:1054A0001E400AD13000FEF727FD1223FF33984239 +:1054B00003D101213000FFF735FFB122D200A358FC +:1054C00000213B408027BF051F43A750083AA3583F +:1054D00008005B005B08A3503C4AA3585B005B08D4 +:1054E000A350FEF7E1FC00210800FFF71BFFFFF7C8 +:1054F00073FFFFF75FFFFFF74DFF00210120FEF76D +:10550000D3FC01210020FFF70DFF00210800FEF76A +:10551000CBFC00210220FEF7C7FC00210320FEF790 +:10552000C3FC00210420FEF7BFFC2948FEF70AFD5A +:10553000002802D00420FFF75FFF2648FEF7B6FDE3 +:10554000002802D00420FFF757FF00210800FFF7D2 +:10555000E9FE00210800FFF701FF00210120FEF70E +:10556000A3FC00210220FFF7DDFE01210220FFF74E +:10557000F5FE2B683E331B78022B06D9E2228023EE +:105580009200A1581B060B43A3508022124B120617 +:10559000E15800200A430121E250E2580A43E25058 +:1055A0006331FEF70FFFFFF70BFBF8BD000027404C +:1055B000FF00FFFFFFC5FFDFE0AD0208000026404F +:1055C000FFFFFFCF6E06000064860D108C05000003 +:1055D000B0860D10400D03000C05000043780278E2 +:1055E0001B021A438378C0781B0413430006184338 +:1055F00070470000F7B5A54BA54A9A58D10700D4CB +:105600007BE00F22A34FBB683D680093A24BDC6F89 +:105610000193009B1440073A141B9C4200D91C00C4 +:105620009E4E002C18D1009B3D60BB60002B0CD11E +:10563000F92201209549D2008B5883438B50B861E1 +:10564000FB69002B01D0FB699847F8230122DB009E +:105650008E49CA50CB58F7BD082C16D12800FFF749 +:10566000BDFF3060281DFFF7B9FF3060009B2D198A +:105670001B1B0093019BDC6F0F231C40073B1C1B73 +:10568000009B9C42CDD91C00CBE7012C03D12A788A +:10569000834B1A60EAE7022C06D12A786B781B024A +:1056A0001343804A1360E1E7032C07D16B782A7813 +:1056B0001B0213437B4A1360AA78E9E72800FFF72F +:1056C0008DFF042CD1D03060052C01D12A79DFE781 +:1056D000062C02D12A796B79E1E7072C07D16B7987 +:1056E0002A791B0213436F4A1360AA79D0E7281D59 +:1056F000FFF774FF08243060B8E7910700D4A4E0F6 +:105700000F22644D68496C69EB6808688C4602405A +:10571000A24200D922006549654E002A16D1EB60ED +:105720006C61002C0DD1F92202215848D200835817 +:105730008B4383500320A8612B6A002B01D02B6A76 +:105740009847F8236C61DB00022281E7082A19D10F +:105750000868070A18705F70070C000E9F70D870F9 +:105760000868070A18715F71070C000E9F71D871E5 +:105770009B18A41A62460F2012680240A242CCD99C +:105780002200CAE7012A03D14A4800681870EFE7EF +:10579000022A04D130681870000A5870E8E7032A1A +:1057A00007D130681870000A587042480068987035 +:1057B000DEE7042A08D10868070A18705F70070C32 +:1057C000000E9F70D870D3E7052A0BD10868070A2E +:1057D00018705F70070C000ED87036489F70006814 +:1057E0001871C5E7062A0CD10868070A18705F709F +:1057F000070C000E9F70D87030681871000A58713D +:10580000B6E7072A0FD10868070A18705F70070CFF +:10581000000E9F70D87030681871000A58712548C2 +:1058200000689871A4E70A68100A1A705870100C82 +:10583000120E9870DA700A68100A1A715871100CFA +:10584000120EDA719871082292E704210A4207D0F9 +:105850000520104A9061F822D20099509B58FAE630 +:1058600008210A4202D00B4A0620F3E71020024228 +:1058700006D00721074A9161F822D2009850EDE73F +:105880002020024200D1E6E6024AF4E7000042404E +:10589000CC070000E8AD02080800424098004240F2 +:1058A0009000424094004240C4004240D800424030 +:1058B000D4004240D000424037B568460200154B44 +:1058C00012CB12C262B61449FEF7BCFCFA22134D89 +:1058D00092002B0012491348FDF728FC041E13D137 +:1058E000020001210F48FDF785FC29000D48FDF756 +:1058F000ABFE2A000C490B48FEF7A6F9041E03D1A3 +:1059000001000848FDF760FC8022084B20001A6067 +:105910003EBDC04654890D10F5550D10E8AD020886 +:1059200018840D100000424044890D1000E100E091 +:105930000C4B1B689B691B68032B08D10023CB70A1 +:1059400083B21B0A88704B70000C08707047042BE0 +:10595000FCD183B2C8701B0A000C48708B70000A1F +:10596000F3E7C0465CA80208F0B50F2787B002AB8A +:10597000FF18002316003B708B690500DA6BDB6AA9 +:1059800003921B683A00DBB200960C00FDF786FE1E +:10599000002813D16B463A781B7B1A409A420DD0EF +:1059A000320021002800FDF7D3FE002806D1320086 +:1059B00021002800FDF790FE0028F8D107B0F0BDC7 +:1059C000F0B589B004000E00049217221A4D059319 +:1059D000296802A88B6912189F6ADB6A20001B687D +:1059E0000096DBB2FDF75AFE002823D13200296869 +:1059F0002000FDF737FE00281CD1059B0190009385 +:105A00000296049B0E9A29682000FDF715FF0028D6 +:105A100010D1320029682000FDF75EFE0028F8D181 +:105A200017223B6802A900965218DBB229682000B1 +:105A3000FDF734FE09B0F0BD5CA8020870B54B68F4 +:105A4000056801229D4216D38A689B1800229D4258 +:105A500011D20C694B699C420FD20C236343CE6870 +:105A60000134F3180E685A701E705A8042685D60E7 +:105A70009A6001220C61100070BD0C235B428B61A7 +:105A8000F9E76F2804D1802300205B050B60704785 +:105A900016204042FBE7000010B50F4B02001879BA +:105AA000904215D0187E904214D018002C30047803 +:105AB0000120404294420AD1033014224243101D77 +:105AC0001818086000209B181A6901321A6110BD6D +:105AD0000020F2E70120F0E740A10208002809D0E9 +:105AE0000438054B02689A4204D10369002B01D0A7 +:105AF000013B03617047C046EFBE0DD070B5150085 +:105B00001E00446805480C190121FDF75DFB3200B9 +:105B10002900200000F00AF970BDC0460000424094 +:105B2000F0B51500F022144F87B003933B6844682A +:105B3000DB6812060C199B18A34216D800210F48E7 +:105B4000FDF742FB3B6805AED8688023201A5B0551 +:105B5000C0183100FFF7ECFE0096039B2A000849AD +:105B60000648FFF72DFF07B0F0BD039A290020007B +:105B700000F072F9F7E7C0465CA802080000424056 +:105B8000E8AD0208F0B51500F022254F44683B68E7 +:105B90001206DB680C199B18C5B0A3423AD8002145 +:105BA0002048FDF711FB80220021520004A801F0DB +:105BB0006BFD3B680020D9688023641A5B052E0AC0 +:105BC000E418002E14D0002801D045B0F0BD03AF7A +:105BD00020003900FFF7ACFE802300975B0004AA89 +:105BE000114910480134FFF7EBFEFF34013EE8E7AE +:105BF000EDB2002DE9D00028E7D103AE310020003E +:105C0000FFF796FE00962B0004AA07490548FFF708 +:105C1000D7FEDAE72900200000F028F9D5E7C046D2 +:105C20005CA8020800004240E8AD020810B5007808 +:105C300000F08CF910BD013070470000431E022BAC +:105C400015D8022808D003280BD00A4B98680860A2 +:105C5000DB68002013607047064BD86908601B6A38 +:105C6000F7E7F0231B030B6080235B01F1E70120C2 +:105C70004042F0E740A1020830B589B00C001500A1 +:105C800002A903AA0190FFF7D9FF002811D12368C8 +:105C900005900693084B079001AA186807490495D8 +:105CA00000F00EF80798002801D1059B236009B089 +:105CB00030BD01204042FAE7E4AD02083D5A0D1024 +:105CC000F0B50024260043688BB002911B6906A939 +:105CD00005A8039298470194069BB34201D80BB0E4 +:105CE000F0BD059BF700DF197B68019D0893019BC0 +:105CF0003A68EB1A9A4202D801360195ECE707940C +:105D00000995039907A8029B98470028E7D0089BAC +:105D10000135E418EBE70000024B036001230B6040 +:105D20007047C0465C890D10002070470B00802131 +:105D300010B549054118180001F09DFC002010BD68 +:105D4000F0B5264CF023A5440024039020001B0648 +:105D5000CB1801935B0A5B0204AF0292FD1A029A10 +:105D6000A24201D900280CD01D4B984234D01D4BC3 +:105D7000984231D0431E9841400085239B009D44AA +:105D8000F0BD8022010092009E18019A9A421DD80F +:105D9000029AA2421AD9039A125DEA54002906D146 +:105DA0008021490559180978511A4A1E9141013438 +:105DB0000133B342E9D1002904D00B4B3900F0186C +:105DC000FCF7BEF8094BED183300C8E780225205F6 +:105DD0009A181278EA54EBE70120CEE7ECFDFFFFBA +:105DE000020052000600520000FEFF0F00FEFFFFFF +:105DF00000207047F8B5124C0023A1421CD91E00A8 +:105E0000104C8D18AC425E410F4CA14215D91F00B9 +:105E10000E4CAC425F413C000D4FB94202D90D4FD0 +:105E2000AF425B41344323430124002B02D0FFF7F0 +:105E300087FF04002000F8BD1E0000242300F1E7C6 +:105E4000FFFFFF0F00001010FFFFFF130080001482 +:105E5000FF070016000A00160B00802110B5490547 +:105E600041181800FFF7C6FF10BD00008023F0B5F1 +:105E70005B05C0184518334CEB05A544C605DB0D82 +:105E8000F60D01936B0A039333005A1E9341400AA7 +:105E9000C0186B0A1B1A009343021F0000240293D0 +:105EA000009B002B3ED1002E1AD0274A029B94461D +:105EB00063441C001900320004A801F0DCFB200040 +:105EC000FCF700F843425841FFF7DAF821003200AE +:105ED00004A8FFF78FFF040060426041FFF7D0F88D +:105EE000019B002B19D08024A400E41A2200290071 +:105EF00004A801F0C0FB039B5802FBF7E3FF4342F9 +:105F00005841FFF7BDF82200290004A8FFF772FFEF +:105F1000040060426041FFF7B3F8200085239B0036 +:105F20009D44F0BD3800FBF7CDFF040060426041A6 +:105F3000FFF7A6F880239B00FF18009B013B00930E +:105F4000AEE7C046ECFDFFFF00FEFFFF04207047F8 +:105F500010B510220949040001F07EFB012300283E +:105F600008D0230010332268013205D104349C424A +:105F7000F9D10323180010BD0223FBE77C890D1023 +:105F800030B5040091B001200D00FFF779F8A16849 +:105F9000102310396A462000FFF7B0FD002802D018 +:105FA000012011B030BD6846FFF7D2FF287023787A +:105FB000032B0CD10120FFF763F8A1680123AA1C71 +:105FC00018392000FFF79AFD431E9841E9E70120A8 +:105FD000FFF756F80120FFF753F8A1686A1C203933 +:105FE00001232000FFF78AFD0028E3D0D8E737B56A +:105FF0000D00C0B201A9FFF74FFD0124002807D111 +:1060000029000198FFF7BCFF04000198FFF766FD27 +:1060100020003EBDF7B501206946FFF7E8FF0028E4 +:1060200038D101AC21000230FFF7E1FF002831D167 +:106030002078A678184C6B46220019789D785F78F6 +:1060400012322378002B01D08B421ED16378002BB3 +:1060500001D0834219D1A378002B01D0AB4214D1D7 +:10606000E378002B01D0B3420FD12379002B0AD162 +:10607000022200206379023BDBB29A424041FEF7E4 +:10608000FFFF6079FEBDBB42F2D006349442D8D106 +:106090000120F7E7FF20F5E78C890D10F0B597B0E8 +:1060A0001CAB1B780390049313781400302B16D18B +:1060B0009378022B13D106AD40220021280001F075 +:1060C000E3FAE278A1184B79901D0979C018029083 +:1060D000022904D1D1186078043188422AD01020D6 +:1060E00017B0F0BD059A0F1A5618B446A444664678 +:1060F00036790822B44604AEB61862462037F25507 +:1061000001318842EED100220299C91A64189A42DC +:106110000AD16B46188A402300950193039A203BCD +:106120000A49FAF715FADBE7D11AA05C4031685446 +:106130000132ECE7202B00DD20231000202A00DDB7 +:106140002020121A00210592DBE7C0460900061044 +:10615000002803D1044B1B7F18007047002301283F +:10616000FAD1014BDB7FF7E710AE0208F0B5F7B0CC +:106170000500029111A8594917000493FAF770FA23 +:1061800000284CD17C9B002B3FD100242B89EA684E +:106190009B180393039BA34214D9039B049E1B1BD0 +:1061A0009E4200D91E0033003A0021000298FFF7FA +:1061B000A5FC002833D13200390011A8FAF75EFAA5 +:1061C00000282ED008AB202209A911A8FAF766FAF8 +:1061D000002824D17E9B002B04D0202209A918007E +:1061E00001F049FAEB682C8907ADE4182A00042372 +:1061F00021000298FFF782FC002810D1384B2A8832 +:106200009A4210D00120404209E07D9B002BBCDD6A +:106210001A007C9911A8FAF731FA0028B5D077B0A6 +:10622000F0BDA419B6E76B8801251B19059304344A +:10623000039004906D42059B9C4205D3049B002B68 +:10624000E0D003980138EAE708AF04233A002100C0 +:106250000298FFF753FC0028E1D13B787E88102B91 +:1062600017D1202ECED1211D330011AA0298FFF79D +:1062700045FC0028D3D1320011A909A801F0ECF99E +:106280000028BFD10123049308AB5B880433E418D2 +:10629000D1E7012B04D17F98FFF75AFF0500F3E700 +:1062A000222BF1D13300483BB82BABD8211D330052 +:1062B00011AA0298FFF722FC0028A3D1EDB27B8837 +:1062C00011AA0095202109A80125FFF7E7FE6D42DC +:1062D0000028D9D101230393D6E7C0460900000165 +:1062E00007690000F7B50700002401262000FFF72A +:1062F000A2FC01A9C0B2FFF7CFFB3500011E0AD1F5 +:106300002C2363430B4A0198D2182023FFF7F6FB96 +:106310000500681E85410198FFF7E0FB002D04D0C1 +:10632000012C00D13D002800FEBD012CFBD0340023 +:10633000DCE7C04660A8020873B50C00C0B201A932 +:106340001500FFF7A9FB0126002807D12A0021002C +:106350000198FFF717FC0600701E86410198FFF7B1 +:10636000BDFB300076BD0000F0B52C2444432F4B1C +:1063700087B01C1923680500013301D1012049E0D1 +:106380002369DB06FAD4FFF756FC04A9C0B2FFF775 +:1063900083FB03000120002B3DD1E368268905AF74 +:1063A000F6183A00042331000498FFF7A7FB0028F1 +:1063B000E4D11F4B3A889A4201D1788880192C2366 +:1063C0006B431A4AD3181B6A9B688342D6D3194B76 +:1063D000A27A1B789A42D1D12000F9F7D3FE002887 +:1063E000CCD1154B22689A4217D18023029001909C +:1063F000009003955B00114A04992000FFF7B6FE58 +:1064000000280AD10498FFF769FB2000F9F7DEFEA7 +:10641000431E9841404207B0F0BD002DAED0049815 +:1064200000218268FFF7AEFBA8E7C04660A802081B +:106430000769000010AE02083DB8F396D0AC020820 +:106440000023F0B5B04CB14AB14DA5440120136012 +:106450002B60FFF789FFAF4B040001201F79FFF786 +:1064600077FE002C47D1AC4BC2B2DB6C39005E68C2 +:1064700080235B05F3180293A84BF618300013AB8A +:10648000FBF7A4FB041E36D105A8FAF72BF98021EF +:10649000A34A890005A8FAF733F905A90B20FAF7F2 +:1064A0003FF9041E27D1102313AA9E490B20FAF7A7 +:1064B00007F90123041E2B601DD1994A0B211BA84B +:1064C000FAF75AF8041E16D1102217A91BA8FAF7DA +:1064D00075F8041E0FD1202204AB2DAD019300925C +:1064E0002B0031001BA8FAF779F8049B0400202B3D +:1064F00010D001246442864B1B68002B05D00B2072 +:10650000FAF782F8002800D004002000D3239B0073 +:106510009D44F0BD0028EED1020004AB29001BA869 +:10652000FAF73AF8041EE6D107AE33002A0013CA80 +:1065300013C37D4F126831A91A603800102201F090 +:106540009AF805A90C20FAF7EBF8041ED3D1102312 +:10655000320074490C20FAF7B3F801226B4B041E89 +:106560001A60C8D171496DA8FAF77AF8041EC2D131 +:10657000029B029A1B890C21D3181BA8684A03931B +:10658000F9F7FAFF041EB6D1102239001BA8FAF75A +:1065900015F8041EAFD1802604AB76000193009657 +:1065A0002B00320003991BA8FAF718F8049B04008B +:1065B000B3429ED100289ED12D9B2E89AA7A309F6E +:1065C0003199581C00D194E7C90600D591E752498A +:1065D000C96C8968B94200D28BE755498B4200D01B +:1065E00087E74C4B1B78934200D082E7802229003A +:1065F00052006DA8FAF742F8041E00D07BE7F619A6 +:10660000330AF6B2771EBE4101279B190293039B02 +:106610003E029E19029BBB4222D9002C00D06AE7A1 +:1066200004AB019380232DAA5B000093130080220A +:10663000310052001BA8F9F7D1FF8023049A04000F +:106640005B009A4209D1002805D11A002DA96DA836 +:10665000FAF714F804000137D9E701246442FAE795 +:10666000002C00D047E704AF3B0020220BA96DA807 +:10667000FAF714F8041E00D03DE78022520001977B +:1066800000922B0031001BA8F9F7A8FF041E00D0D0 +:1066900031E702003B0029001BA8F9F77DFF2D9B85 +:1066A000244A9BB20400934200D022E7002800D085 +:1066B00021E72E9AD3B2102B00D01AE7120C202A11 +:1066C00000D016E72FA90BA800F0C6FF041E00D0CB +:1066D00011E7379BDBB2012B00D00AE70120FFF75F +:1066E00037FD409BDAB2222A00D002E71B0C482B70 +:1066F00000D0FEE6C0B2009041AA20210BA8FFF70F +:10670000CDFC0400F7E6C046B4FCFFFFFCAF020876 +:10671000F8AF020810AE020860A8020820000010BE +:106720000001600401000040C0AC02080900000143 +:106730003DB8F396076900000023F0B51D4C070033 +:10674000A5446946022000930193FFF7A5F90028AC +:106750000ED001260098002801D0FFF7BFF901985C +:10676000002801D0FFF7BAF93000134B9D44F0BD6B +:1067700001A90120FFF790F90600041EE9D1009855 +:10678000A742E7D980233D1BDB009D4200D91D00B5 +:106790002B0002AA2100FFF7B1F90028D9D12B0064 +:1067A00002AA21000198FFF7BBF90028D1D1641992 +:1067B000E5E7C046F4FBFFFF0C040000F0B5002441 +:1067C0002500584F9BB0BB6A0293029BAB4263D13A +:1067D000554BDB78002B00D19FE0002305A9022058 +:1067E00005930693FFF758F9002821D106A9013037 +:1067F000FFF752F900281BD14C4A0C2108A8F9F7E1 +:10680000BBFE002814D11022494908A8F9F7D6FE8A +:10681000041E0DD10600BB6B0133FF330293059BB1 +:106820005B680393029BB34200D86CE0002C44D019 +:106830000598002801D0FFF751F90698002801D0EB +:10684000FFF74CF93B4B1B68002B02D00C20F9F7EB +:10685000DBFE10220021364800F016FF3B6D0021C0 +:106860009A680220FFF768FD43425841FEF708FC92 +:106870000C237A6D396D013A5343CB185A68496835 +:106880000220511A9A68FFF757FD43425841FEF71C +:10689000F7FB00201BB0F0BD0C236B437A6A21008C +:1068A000D3189E6801203200FFF746FD434258414D +:1068B000FEF7E6FBA419013587E7029B9D1B8023A9 +:1068C000DB009D4200D91D00039B009599191A4BCE +:1068D0002A00C91807AB019308A8184BF9F77EFEE8 +:1068E000079B0400AB420BD100289BD12B00134A1D +:1068F00031000698FFF714F9002899D1761991E72D +:10690000012464428EE7002C00D091E707AB2200FF +:106910000A4908A8F9F740FE8AE72000FFF70CFFB4 +:106920009CE7C04660A8020810AE0208000160049F +:10693000C0AC0208FCAF020800040010C0A80208A6 +:1069400073B5164E164CF368626A5B0A01A9012002 +:106950000193FFF791F9012500281AD1019B226DBF +:10696000A362F36801A95B0A02300193FFF784F97F +:10697000051E10D1019B206A6365FFF757F90600D9 +:10698000A06DFFF753F9331C864200D2031C5C3420 +:106990002370280076BD0125FBE7C04640A1020810 +:1069A00060A80208F0B50C265A4F89B0FB68009029 +:1069B0005C0A7443200000F029FE0190200000F0E2 +:1069C00025FE019B544C0290636220650020FFF776 +:1069D00032F92100C0B22031FFF75EF8434258413E +:1069E000FEF74EFB0120FFF726F92100C0B24C3123 +:1069F000FFF752F843425841FEF742FB21000320C3 +:106A00005831FFF749F843425841FEF739FBFFF789 +:106A100097FF051E6BD1FFF765FC051E67D1FB686C +:106A2000A06A5B0A98424FD8626D9A424CD8904255 +:106A30004AD108234643626A216D08369E4226D118 +:106A4000364E7378002B3FD00C22002105A800F0B1 +:106A50001BFE0120FEF714FBFFF7DCFA831E050086 +:106A6000022B07D8F378002B19D0FFF7E9FC002898 +:106A70001BD005250120FEF703FB012D24D0002D9E +:106A800001DD052D1BDD0020FEF7FAFAFEE71800F8 +:106A9000D558CB580C309D4216D10300CEE70120CB +:106AA000FFF762FCE3E7032521E00120FEF7E8FAA7 +:106AB000FFF784FE43425841FEF7E2FADAE700208E +:106AC000FFF710FC051E12D10020FFF74DFC05005A +:106AD00068426841FEF7D4FA002DE4D1236A009998 +:106AE0005A780A715B680C600393039A8A60019874 +:106AF00000F096FD029800F093FDA06DFEF7EEFF0A +:106B0000E06CFEF7EBFF206AFEF7E8FF280009B013 +:106B1000F0BDC04640A1020860A8020810AE0208FD +:106B200010B5017804000A00303AD3B2092B1FD8FF +:106B300011000A0161780B00303BD8B2092824D833 +:106B40009918A27809011300303BD8B209282AD835 +:106B50005A18E378120118003038C1B28018092998 +:106B600005D91900413905292BD8373B981810BD94 +:106B70000B00413B052B01D83739DAE70B00613BAD +:106B80000020052BF3D85739D3E70B00413B052BE9 +:106B900002D837398918D4E70B00613B0020052B58 +:106BA000E5D85739F6E71300413B052B02D8373AB1 +:106BB0005218CEE71300613B0020052BD7D8573A77 +:106BC000F6E71900613900200529D0D8573BCDE7F9 +:106BD000F7B50B7807004E1C222B0FD00026554B23 +:106BE00019603000FEBD02331A780130222A08D025 +:106BF000002A06D05C2AF6D00133F5E733000020E6 +:106C0000F2E74D4B1B6898470190041E07D1019E87 +:106C1000E7E7721C5C2B13D0237001341600337825 +:106C2000222B01D0002BF4D1002323703378223B98 +:106C30005A425341F618019B3B610423FB60D0E7A5 +:106C400073786E2B17D007D8611C622B0CD0662B83 +:106C50000FD0237001340AE0742B0ED0752B0ED0A8 +:106C6000722BF6D10D23F4E7082323700C000132B8 +:106C7000D4E70C23F9E70A23EBE70923E9E7B01C83 +:106C8000FFF74EFF2D4B2E49C3180500721D8B4296 +:106C9000EDD90028EBD02B4BC3188B4227D8B37902 +:106CA0005C2BE4D1F379752BE1D130000830FFF78C +:106CB00037FF3200214B2249C3180B328B42D6D802 +:106CC000214BAD021D4080238005800D05435B02F2 +:106CD000ED181E4BE11C9D4223D803234C1E3F2080 +:106CE00080212840494201432170AD0910E07F28EE +:106CF00009D8012301341648611EC05C013B0543DD +:106D00000D70E418B3E7134B9842E2D80223023423 +:106D10003F20802128404942013C01432170AD09B8 +:106D2000E9E73F20802328405B420343E370AD093D +:106D30000423D3E7D0AD020880A102080024FFFF9E +:106D4000FF0300000028FFFF00FC0F00FFFF000012 +:106D50009E890D10FF070000002803D00378013B37 +:106D60001F2B00D970470130F6E70000064B10B525 +:106D70001B6828209847041E03D02822002100F019 +:106D800083FC200010BDC04680A10208F0B50500BC +:106D900087B00E1E01D1002413E004227549300093 +:106DA00000F054FD002803D10223EB60341D08E0FD +:106DB00005227149300000F049FD002804D1E86047 +:106DC000741D200007B0F0BD04226C49300000F0B3 +:106DD0003DFD002806D101230122EB600023AA61BA +:106DE000EB61E3E73378222B05D131002800FFF770 +:106DF000EFFE0400E5E71A00303AD2B22D2B01D0A5 +:106E0000092A1AD8340000E0013423781A00303AF5 +:106E1000092AF9D92D2BF7D0A71B3A003100684673 +:106E200000F029FC00236A466846D35500F0E4FBD5 +:106E30000323A861E961EB60C3E75B2B37D1563BC5 +:106E4000EB60701CFFF788FF037804005D2B01D115 +:106E50000134B6E7FFF78AFF061EA8609BD020002A +:106E6000FFF77AFF01003000FFF790FFFFF774FF94 +:106E70000400002C00D18EE723782C2B04D05D2B4E +:106E8000E6D03F4B1C6086E7FFF770FF051E00D180 +:106E900081E730604660601CFFF75EFF010028005C +:106EA000FFF774FFFFF758FF2E000400E1E77B2B8C +:106EB0005DD1753BEB60701CFFF74EFF037804005B +:106EC0007D2BC5D0FFF752FF061EA86000D162E7F8 +:106ED0002000FFF741FF01003000FFF779FEFFF7C8 +:106EE0003BFF002800D156E7002433693461336248 +:106EF00003783A2B02D0224B186062E70130FFF78B +:106F00002BFF01003000FFF741FFFFF725FF0400D2 +:106F1000002C00D13FE723782C2B02D07D2B97D07B +:106F2000AFE7FFF723FF051E00D134E7306046606E +:106F3000601CFFF711FF01002800FFF749FEFFF773 +:106F40000BFF002800D126E700242B692C612B625F +:106F500003783A2BCFD10130FFF7FEFE0100280065 +:106F6000FFF714FFFFF7F8FE2E000400D0E7044BF4 +:106F70001E6010E7A5890D10AA890D10B0890D10AB +:106F8000D0AD02080849094A002803D1084B0B601C +:106F9000084B07E00368002B00D1054B0B604368EA +:106FA000002BF5D01360704780A102087CA1020875 +:106FB0000D760D1021760D10F8B5802604007600B0 +:106FC000002C00D1F8BDE3682768334204D1A068E3 +:106FD000002801D0FFF7F0FFE3680B4D334204D1E6 +:106FE0002069002801D02B6898478022E36892002E +:106FF000134204D1206A002801D02B689847200052 +:107000002B6898473C00DBE77CA10208F7B5050038 +:107010000E000192FFF7AAFE0023134F04003B600D +:1070200098420CD02800FFF797FE01002000FFF7E0 +:10703000ADFE051E05D12000FFF7BEFF0024200095 +:10704000FEBD019B002B0AD0FFF786FE03780500EA +:10705000002B04D02000FFF7AFFF3D60EEE7002ECD +:10706000EDD03560EBE7C046D0AD0208002210B588 +:107070001100FFF7CBFF10BD0300093B0122042BD9 +:1070800002D920384242424110007047F0B5002535 +:10709000170006002C0089B003930E9B02901B0C76 +:1070A000DBB204930E9B00911B0ADBB205930E9B8F +:1070B000DBB20793731C069333780193002B08D03F +:1070C000009B002B22DB029A731C9B1A009A9A42A7 +:1070D0001CDA0E9BDBB2002B00D1B4E0019A9A427D +:1070E00000D0AEE0009B002B06DB029A731C9B1ABB +:1070F000009A934200DDA4E0B31C7678032D00D9FA +:10710000A1E0280000F0ACF88989637B0198FFF7C3 +:10711000B3FF002839D1079B019A9342D9D04F4E33 +:107120001100300000F072FB031E08D1049B019A8D +:1071300093420BD0059B93426FD133003F33032D15 +:1071400023D8280000F08CF80510233533003E3397 +:10715000F5E7002F06D0039A94425ED23F4A9B1A6D +:107160009B003B55012510E0621C002F0BD00399BA +:107170008A4252D239493C195B1A217818110143CD +:107180001B012170BB5414000225069E92E7621C6D +:10719000002F0BD003998A423FD230493C195B1A29 +:1071A0002178981001439B012170BB5414000325E2 +:1071B000EBE7002F08D0039A94422ED227493A19C0 +:1071C0005B1A11780B43137001340025DDE71D00B5 +:1071D000002E22D0009B002B22DB029B009AEB1A90 +:1071E0009A421DDA019BB34217D1009B002B04DDAC +:1071F000029B009AEB1A93420FDC2E786B1C029ACA +:107200009D1A002E04D0009B002B11DBAB420FDA3D +:10721000002F18D03B5D002B15D00124644219E0EB +:107220003000FFF729FF0028DCD02E780135CFE7AA +:107230003000FFF721FF0028EFD0029B5E5D013593 +:10724000DFE7002DE9D1039B9C42E6D2002F01D05D +:1072500000233B55200009B0F0BDC046B5890D1094 +:1072600002B4714649084900095C49008E4402BCD9 +:107270007047C046002243088B4274D303098B42F7 +:107280005FD3030A8B4244D3030B8B4228D3030CF6 +:107290008B420DD3FF22090212BA030C8B4202D398 +:1072A0001212090265D0030B8B4219D300E0090AC0 +:1072B000C30B8B4201D3CB03C01A5241830B8B42C9 +:1072C00001D38B03C01A5241430B8B4201D34B03B2 +:1072D000C01A5241030B8B4201D30B03C01A524117 +:1072E000C30A8B4201D3CB02C01A5241830A8B429C +:1072F00001D38B02C01A5241430A8B4201D34B0285 +:10730000C01A5241030A8B4201D30B02C01A5241E8 +:10731000CDD2C3098B4201D3CB01C01A524183099C +:107320008B4201D38B01C01A524143098B4201D3D6 +:107330004B01C01A524103098B4201D30B01C01A01 +:107340005241C3088B4201D3CB00C01A524183087B +:107350008B4201D38B00C01A524143088B4201D3A8 +:107360004B00C01A5241411A00D201465241104608 +:107370007047FFE701B5002000F006F802BDC046E7 +:107380000029F7D076E770477047C046002B11D12F +:10739000002A0FD1002900D1002802D00021C943C2 +:1073A000081C07B4024802A14018029003BDC04661 +:1073B000D9FFFFFF03B4684601B5029800F030F82A +:1073C000019B9E4602B00CBC7047C046F0B5CE464D +:1073D000474615042D0C2E0080B50704140C3F0CF5 +:1073E0009946030C7E435D43674363437F19340C26 +:1073F000E4199C46A54203D980235B029846C44405 +:107400004B4643435143250C36046544360C240453 +:10741000A4195B19591820000CBC90469946F0BD80 +:10742000F0B54F464646D646C0B5040082B00D00C2 +:10743000914698468B422FD82CD04146484600F0C2 +:10744000CFF829000600200000F0CAF8331A9C4645 +:10745000203B9A4600D576E04B46524693401F00AB +:107460004B46624693401E00AF4228D825D0534673 +:10747000A41BBD41002B00DA7BE000220023009218 +:1074800001930123524693400193012362469340A6 +:10749000009318E08242D0D9002200230092019389 +:1074A0000A9B002B01D01C605D600098019902B01E +:1074B0001CBC90469946A246F0BDA342D7D90022F3 +:1074C0000023009201936346002BE9D0FB07984606 +:1074D000414672080A437B0866460EE0AB4201D182 +:1074E000A2420CD8A41A9D41012024196D4100210B +:1074F000013E24184D41002E06D0AB42EED9013E8C +:1075000024196D41002EF8D10098019953460019B5 +:107510006941002B23DB2B005246D3402A006446EE +:10752000E2401C0053461500002B2DDB2600574679 +:10753000BE40330026006746BE403200801A9941A3 +:1075400000900191ACE7624620239B1A4A46DA403C +:107550006146130042468A4017001F4380E7624697 +:1075600020239B1A2A0066469A402300F3401343C7 +:10757000D4E76246202300219B1A00220091019249 +:107580000122DA40019280E72023624626009B1AFE +:10759000DE402F00B0466646B74046463B003343C8 +:1075A000C8E7C0461C2101231B04984201D3000CEC +:1075B00010391B0A984201D3000A08391B09984266 +:1075C00001D30009043902A2105C40187047C0467C +:1075D000040302020101010100000000000000009C +:1075E00010B5002903D1FFF7DDFF203002E0081CB1 +:1075F000FFF7D8FF10BDC04610B50A22002100F0E9 +:10760000F7F910BDEC3000687047000010B5034B6F +:107610000100186800F08AF810BDC04684A1020875 +:1076200010B5034B0100186800F036F810BDC046D5 +:1076300084A1020882B0002900D101A9101E06D041 +:10764000002B06D013780B601078431E984102B0CF +:10765000704702204042FAE730B50024A24201D12F +:10766000002005E0035D651C0C5DA34201D0181BE2 +:1076700030BD2C00F2E7002310B59A4200D110BDB6 +:10768000CC5CC4540133F8E703001218934200D1D4 +:10769000704719700133F9E770B50500002910D063 +:1076A0000C1F2368002B00DAE418280000F0C0F952 +:1076B0001D4A1368002B05D163601460280000F098 +:1076C000B8F970BDA34209D9216860188342F3D18B +:1076D00018685B6841182160EEE713005A68002AB9 +:1076E00001D0A242F9D919685818A0420BD12068DC +:1076F0000918581819608242E0D110685268411880 +:1077000019605A60DAE7A04202D90C232B60D5E752 +:1077100021686018824203D11068526841182160C4 +:1077200062605C60CAE7C046D4AD0208032370B54E +:10773000CD1C9D43083506000C2D1ED20C25A942F8 +:107740001DD8300000F074F9254A14682100002982 +:1077500019D1244C2368002B03D1300000F044F8E9 +:1077600020602900300000F03FF8431C2BD10C238F +:107770003000336000F05DF903E0002DDFDA0C2308 +:107780003360002070BD0B685B1B19D40B2B03D931 +:107790000B60CC18256003E04B688C420DD1136060 +:1077A000300000F046F9200007220B30231D9043E3 +:1077B000C31AE7D05A42E250E4E763600C00EFE7F7 +:1077C0000C004968C3E70323C41C9C43A042E1D0DA +:1077D000211A300000F008F8431CDBD1C7E7C0468F +:1077E000D4AD0208D8AD0208002370B5064C0500E0 +:1077F0000800236000F01EF9431C03D12368002B0E +:1078000000D02B6070BDC04604B00208C9B2037836 +:10781000002B04D08B4200D170470130F7E74B4278 +:10782000594149420840F7E702780B78002A03D013 +:10783000013001319A42F7D0D01A704703000A781C +:1078400001311A700133002AF9D17047002330B595 +:107850009A420AD0013AC45CCD5CAC4204D1934256 +:1078600002D00133002CF6D1631B180030BD30B5B7 +:107870000500002A00D130BD0C78013A6B1C2C7039 +:107880000131002C05D19A189A42F4D01C700133B2 +:10789000FAE71D00EDE70000F0B51F000E008DB007 +:1078A0000B900291039212983478FFF7ABFE0822F6 +:1078B00000194378751C134053D12D2C53D1747883 +:1078C000B51C01330193002F00D18AE0102F0AD19B +:1078D000302C08D120222B789343582B00D07AE00B +:1078E00010276C780235019B002B41D1013B04939A +:1078F0003E4B05933A00FB17049805990893FFF750 +:1079000045FD002309900E00002000210A9222006C +:10791000303A092A31D81400A7423DDD5A1C1DD047 +:10792000B14236D802D1099B984232D8099B834292 +:1079300006D18E4204D101230A9A5B42A2420DDB9A +:107940000B00020008993800FFF740FDE31706948A +:107950000793069B079CC018614101232C780135D1 +:10796000D5E72E009FE72B2CACD1B51C7478A9E786 +:107970000023049380231B06BBE72200413A192A07 +:1079800001D8373CC8E72200613A192A04D8573C8D +:10799000C2E701235B42E1E75A1C09D10B9A23336A +:1079A0001360039B04980599002B0ED10DB0F0BD18 +:1079B000019A002A04D006000F0000217042B9414C +:1079C000039A002AF2D0002B01D06B1E0293039B76 +:1079D000029A1A60EAE73024002F00D083E70827D4 +:1079E00081E7302C00D175E70A277CE7FFFFFF7F96 +:1079F00037B51300064A05001068046A002C00D150 +:107A0000044C0A0000942900FFF746FF03B030BD84 +:107A100084A10208E8A102080B1E04D0FF2A04D9A1 +:107A20008A2303608B3B180070470A700123FAE732 +:107A300070477047044A1368002B00D1034B181895 +:107A4000106018007047C046DCAD02080000020854 +:107A5000F8B5C046F8BC08BC9E467047F8B5C046AD +:107A6000F8BC08BC9E46704701B40248844601BC7D +:107A7000604700BF1DA5020801B40248844601BC4E +:107A8000604700BF01A7020801B40248844601BC58 +:107A9000604700BFEFA3020801B40248844601BC5E +:107AA000604700BF03A702080000000007000103B1 +:107AB00000000100030300003F00010300000F006D +:107AC000C0102040030300004000010300000F002D +:107AD00000112040030300003F00010300000F00DD +:107AE00040112040030300007F00010300000F004D +:107AF00080112040000300000F00010300000F0070 +:107B000040122040030300003F00010300000F006B +:107B100080122040000300000F00010300000F004E +:107B200000162040000300000F00010300000F00BA +:107B300040162040000300000F00010300000F006A +:107B400080162040000300000F00010300000F001A +:107B500000172040000300007F00010300000F0019 +:107B600040002040030300007F00010300000F00DD +:107B7000C0002040030300007F00010300000F004D +:107B800000012040030300007F00010300000F00FC +:107B900080012040005001400900000300000F0058 +:107BA000010300000F00000000410140130007071F +:107BB00000007F008022244001030100000007072D +:107BC0000000030000212440010301000100070719 +:107BD00000000300C0202440010301000200070749 +:107BE00000000F008020244001030100050005056E +:107BF00000017E0040202440010301000600030331 +:107C000000017E0000202440010301000CC0000799 +:107C100000000F0000222440010301000D000101BB +:107C20000001700040222440010301000E00030304 +:107C300000000100C0212440010301000FC007071C +:107C400000000F0080212440010301001000030305 +:107C50000000040040212440010301000CDF000764 +:107C600000000F00402224400103010070726F7673 +:107C70005F726571007265736F7572636573004240 +:107C80004F4F5400555047524144450073697A653F +:107C9000006C61756E6368006D6F6E6F746F6E69F6 +:107CA0006300656E637279707400656E63727970DB +:107CB000745F6B65795F6964006261636B75700006 +:107CC000626F6F745F61757468007570677261646C +:107CD000655F6175746800736D69665F69640072E1 +:107CE0006570726F6772616D007374617274007297 +:107CF0006570726F766973696F6E00626F6F745F23 +:107D00006C6F61646572006B6579735F616E645F4F +:107D1000706F6C6963696573006D307000706572B7 +:107D20006D697373696F6E00636F6E74726F6C0050 +:107D30006B6579006D340073797374656D007379C8 +:107D40007363616C6C006D6D696F00726D610064CE +:107D5000657374726F795F667573657300646573BC +:107D600074726F795F666C617368007072657365B9 +:107D70006E74006669726D77617265006365727416 +:107D800069666963617465006F70656E006469732C +:107D900061626C656400656E61626C656400616C53 +:107DA0006C6F77656400646562756700776F756EE8 +:107DB00064696E6700626F6F745F7570677261648B +:107DC000650074797065006172726179006974652B +:107DD0006D73006E756D62657200696E74656765BE +:107DE0007200626F6F6C65616E00737472696E67AA +:107DF000006D6178696D756D006D696E696D756D89 +:107E0000007065726970686572616C73006261739D +:107E1000655F61646472657373006D656D6F72692F +:107E2000657300776F726B666C6173680073666C64 +:107E3000617368007372616D00736F66747761724D +:107E400065006361706162696C69747900464C41D8 +:107E500053485F5043315F53504D00464C415348A7 +:107E60005F50433200464C4153485F504333004615 +:107E70004C4153485F50433400464C4153485F4D9A +:107E800041494E5F434F444500464C4153485F4D86 +:107E900041494E5F584F00464C4153485F4D414960 +:107EA0004E5F4441544100464C4153485F53555046 +:107EB00045525649534F525900464C4153485F571B +:107EC0004F524B5F53454355524500464C41534832 +:107ED0005F574F524B005352414D5F5043305F50FC +:107EE000524956005352414D5F5043305F50554206 +:107EF000005352414D5F53504D5F5052495600530D +:107F000052414D5F53504D5F505542005352414DC9 +:107F10005F5043315F50524956005352414D5F50BC +:107F200043325F50524956005352414D5F504333E4 +:107F30005F50524956005352414D5F5043345F5099 +:107F4000524956005352414D5F4D41494E005352E4 +:107F5000414D5F44415000534D49465F434F4445B6 +:107F600000534D49465F584F00534D49465F4441C9 +:107F70005441000000002140000025400000014065 +:107F80000000344000002440000031400000324036 +:107F900000001F41000023400000114001010101C9 +:107FA0000101010101101010800019005500F000BE +:107FB0000501053B04101C01010000000FC000007A +:107FC0000004000001010101011D3A5778960008E4 +:107FD0002000101208000000001F00000010000F19 +:107FE000002000023F06080E00080009000A000BEE +:107FF00024282C3034000000100000009000000005 +:1080000088000000080000008000000004F000006C +:1080100000F00000400200002005A000D001000197 +:108020008001A0012000000010000000433A5C55D0 +:10803000736572735C646D69765C446F63756D65BE +:108040006E74735C6379626F6F746C6F6164657278 +:108050005C70736F633670646C5C647269766572B1 +:10806000735C696E636C7564652F63795F697063B7 +:108070005F6472762E6800433A2F55736572732FD2 +:10808000646D69762F446F63756D656E74732F63CD +:1080900079626F6F746C6F616465722F70736F6358 +:1080A0003670646C2F647269766572732F736F75A6 +:1080B0007263652F63795F6770696F2E6300433A5F +:1080C0005C55736572735C646D69765C446F63754F +:1080D0006D656E74735C6379626F6F746C6F6164ED +:1080E00065725C70736F633670646C5C6472697621 +:1080F0006572735C696E636C7564652F63795F6725 +:1081000070696F2E6800433A2F55736572732F6440 +:108110006D69762F446F63756D656E74732F637927 +:10812000626F6F746C6F616465722F70736F63360A +:1081300070646C2F647269766572732F736F7572D9 +:1081400063652F63795F6970635F6472762E630085 +:10815000433A2F55736572732F646D69762F446FA0 +:1081600063756D656E74732F6379626F6F746C6F76 +:10817000616465722F70736F633670646C2F647204 +:1081800069766572732F736F757263652F63795F9C +:108190006970635F706970652E6300433A2F557391 +:1081A0006572732F646D69762F446F63756D656EAC +:1081B00074732F6379626F6F746C6F616465722F73 +:1081C00070736F633670646C2F6472697665727356 +:1081D0002F736F757263652F63795F70726F742E82 +:1081E0006300433A2F55736572732F646D69762F60 +:1081F000446F63756D656E74732F6379626F6F740E +:108200006C6F616465722F70736F633670646C2F6E +:10821000647269766572732F736F757263652F630D +:10822000795F736D69662E630000010010008000A5 +:10823000E80310000001A00F00FA433A2F557365C0 +:1082400072732F646D69762F446F63756D656E74FC +:10825000732F6379626F6F746C6F616465722F70D6 +:10826000736F633670646C2F647269766572732FF6 +:10827000736F757263652F63795F736D69665F6D88 +:10828000656D736C6F742E6300433A2F557365727E +:10829000732F646D69762F446F63756D656E7473AB +:1082A0002F6379626F6F746C6F616465722F707386 +:1082B0006F633670646C2F647269766572732F73A6 +:1082C0006F757263652F63795F737973636C6B2E5F +:1082D0006300433A2F55736572732F646D69762F6F +:1082E000446F63756D656E74732F6379626F6F741D +:1082F0006C6F616465722F70736F633670646C2F7E +:10830000647269766572732F736F757263652F631C +:10831000795F737973696E742E6300433A2F5573D6 +:108320006572732F646D69762F446F63756D656E2A +:1083300074732F6379626F6F746C6F616465722FF1 +:1083400070736F633670646C2F64726976657273D4 +:108350002F736F757263652F63795F737973706DB7 +:108360002E6300433A2F55736572732F646D6976DF +:108370002F446F63756D656E74732F6379626F6FD1 +:10838000746C6F616465722F70736F633670646CA8 +:108390002F646576696365732F70736F63362F730F +:1083A0007461727475702F73797374656D5F707317 +:1083B0006F63365F636D30706C75732E6300000001 +:1083C00003000000010000000100000000000000A8 +:1083D0000503600004000000010000000000000030 +:1083E0000100000006046000080000001CC0020834 +:1083F000994E0D1050534F43365F464C4153480041 +:10840000F4830D10F15D0D100000000000840D10CC +:1084100064890D100000000000000000070000004B +:108420000100000000000000010000000E0000003C +:10843000110000000000000000000000000000002B +:10844000000000000000000000000000000000002C +:10845000000000000000000000000000010000001B +:108460000E000000110000000000000000000000ED +:1084700000000000000000000000000000000000FC +:1084800000000000000000000000000000000000EC +:10849000010000000E0000001100000000000000BC +:1084A00000000000000000000000000000000000CC +:1084B00000000000000000000000000000000000BC +:1084C00000000000010000000E000000110000008C +:1084D000000000000000000000000000000000009C +:1084E000000000000000000000000000000000008C +:1084F0000000000000000000010000000600000075 +:10850000110000000000000000000000000000005A +:10851000000000000000000000000000000000005B +:10852000000000000000000000000000010000004A +:108530000600000011000000000000000000000024 +:10854000000000000000000000000000000000002B +:10855000000000000000000000000000000000001B +:10856000010000000000000000000000000000000A +:1085700000000000000000000000000000000000FB +:1085800000000000000000000000000000000000EB +:1085900000000000010000000000000000000000DA +:1085A00000000000000000000000000000000000CB +:1085B00000000000000000000000000000000000BB +:1085C00000000000000000000100000006000000A4 +:1085D0001D0000000000000000000000000000007E +:1085E000000000000000000000000000000000008B +:1085F000000000000000000000000000010000007A +:108600000A0000001D000000000000000000000043 +:10861000000000000000000000000000000000005A +:10862000000000000000000000000000000000004A +:10863000010000000B0000001D0000000000000011 +:10864000000000000000000000000000000000002A +:10865000000000000000000000000000000000001A +:1086600000000000433A5C55736572735C646D6989 +:10867000765C446F63756D656E74735C6379626F6D +:108680006F746C6F616465725C70736F6336706475 +:108690006C5C647269766572735C696E636C756438 +:1086A000652F63795F737973636C6B2E68000000CC +:1086B000F4010000140004010A0009050800030089 +:1086C0006301000002000000030000000000000041 +:1086D000000000180000800000000000AC880D10B1 +:1086E0006000000000000000FFFFFFFF000000002E +:1086F000000000000000000020000000000000005A +:10870000FFFFFFFF0000000000000000000000006D +:108710000200000000000000FFFFFFFF000000005B +:108720000000000000000000EB000000000200005C +:10873000010000000200000008000000020000002C +:108740003500000000000000FFFFFFFF00000000F8 +:108750000000000000000000050000000000000014 +:10876000FFFFFFFF0000000000000000000000000D +:108770000400000000000000FFFFFFFF00000000F9 +:1087800000000000000000000600000000000000E3 +:10879000FFFFFFFF000000000000000000000000DD +:1087A0000100000000000000FFFFFFFF00000000CC +:1087B00000000000000000000100000003000000B5 +:1087C0000000000000000018000000010000000090 +:1087D000F8880D106000000000000000FFFFFFFFA0 +:1087E0000000000000000000000000002000000069 +:1087F00000000000FFFFFFFF00000000000000007D +:10880000000000003800000000020000FFFFFFFF32 +:10881000020000000000000002000000EB00000069 +:10882000000200000100000002000000040000003F +:10883000020000003500000000000000FFFFFFFF05 +:108840000000000000000000000000000500000023 +:1088500000000000FFFFFFFF00000000000000001C +:10886000000000000400000000000000FFFFFFFF08 +:1088700000000000000000000000000006000000F2 +:1088800000000000FFFFFFFF0000000000000000EC +:10889000000000000100000000000000FFFFFFFFDB +:1088A00000000000000000000000000003000000C5 +:1088B0000000800028870D1088870D1070870D102C +:1088C000F8860D1000100000E0860D1010870D10C6 +:1088D0000001000058870D1040870D10A0870D1073 +:1088E0000000000001000000020000004100000044 +:1088F000D8D60000C2010000030000000000000103 +:108900001C880D107C880D1064880D10EC870D10EC +:1089100000100000D4870D1004880D100001000025 +:108920004C880D1034880D1094880D100000000044 +:1089300001000000020000008C000000409C0000CC +:10894000FA000000010000005CA80208010000001D +:108950001400000007008E00010000000000080065 +:10896000000200002D5D0D10595E0D106D5E0D10A2 +:10897000295D0D10195D0D100400000077C295F3FC +:1089800060D2EF7F3552500F2CB67980000100FF86 +:1089900000020001000100030103FF0001040000C8 +:1089A000C0E0F0F8FC6E756C6C0066616C7365007D +:1089B00074727565004142434445464748494A4BF5 +:1089C0004C4D4E4F505152535455565758595A6169 +:1089D00062636465666768696A6B6C6D6E6F7071FF +:1089E00072737475767778797A30313233343536FC +:1089F000373839004300504F534958002E000020AB +:108A0000202020202020202028282828282020203E +:108A100020202020202020202020202020202088EE +:108A20001010101010101010101010101010100452 +:108A300004040404040404040410101010101010A2 +:108A40004141414141410101010101010101010196 +:108A500001010101010101010101101010101010AC +:108A60004242424242420202020202020202020266 +:108A70000202020202020202020210101010200082 +:108A800000000000000000000000000000000000E6 +:108A900000000000000000000000000000000000D6 +:108AA00000000000000000000000000000000000C6 +:108AB00000000000000000000000000000000000B6 +:108AC00000000000000000000000000000000000A6 +:108AD0000000000000000000000000000000000096 +:108AE0000000000000000000000000000000000086 +:108AF0000000000000000000000000000000000076 +:048B00000000000071 +:088B04001CE9FF7F01000000E5 +:108B0C0000000D1000A00208C0000000348B0D10F6 +:088B1C00C0A00208F0060000F1 +:108B2400ECA702081C08000000C002089C01000019 +:108B34004D7E0D105B7E0D10657E0D106F7E0D1049 +:108B4400797E0D10897E0D10977E0D10A77E0D1075 +:108B5400B97E0D10CB7E0D10D67E0D10E47E0D1067 +:108B6400F17E0D10FF7E0D100C7F0D101A7F0D107D +:108B7400287F0D10367F0D10447F0D104E7F0D1091 +:108B8400577F0D10617F0D10697F0D1000093D00A6 +:108B940000127A0000093D000000D00700093D00E2 +:108BA400A00F000004000000B8870D10C4860D104B +:108BB400EFBE0DD0016F00000000000000000200B5 +:108BC40000000000EFBE0DD0026F000000000500A1 +:108BD4000000020000000000EFBE0DD0036F000093 +:108BE40000000F00001000000000000021760D10AE +:108BF4000D760D1088A1020800000000000000009E +:108C04000000000000000000000000000000000060 +:108C14000000000000000000000000000000000050 +:108C24000000000000000000000000000000000040 +:108C34000000000000000000000000000000000030 +:108C44000000000000000000000000000000000020 +:108C540000000000000000004300000000000000CD +:108C64000000000000000000000000000000000000 +:108C740000000000000000004300000000000000AD +:108C840000000000000000000000000000000000E0 +:108C9400000000000000000043000000000000008D +:108CA40000000000000000000000000000000000C0 +:108CB400000000000000000043000000000000006D +:108CC40000000000000000000000000000000000A0 +:108CD400000000000000000043000000000000004D +:108CE4000000000000000000000000000000000080 +:108CF400000000000000000043000000000000002D +:108D0400000000000000000000000000000000005F +:108D1400000000000000000043000000000000000C +:108D2400000000000000000000000000000000003F +:108D34000000000000000000197A0D1035760D10B7 +:108D440000000000FE890D10FC890D10FD890D1036 +:108D5400FD890D10FD890D10FD890D10FD890D1083 +:108D6400FD890D10FD890D10FD890D10FD890D1073 +:108D7400FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FD +:108D84000100415343494900000000000000000075 +:108D940000000000000000000000000000000000CF +:108DA4000000415343494900000000000000000056 +:108DB40000000000000000000000000000000000AF +:108DC40000000000E9000D10C1000D1080B230B5A4 +:108DD400C00020D0104B07221C682300B0331B882E +:108DE4005A43236AD31819680029FCDA3E210B4B35 +:108DF400062519600A4B0B491960A3210A4BC900C7 +:108E04005D500A4958505858206A12180020506082 +:108E14005A58002AFCDA30BDE0AD020804012640AD +:108E2400080126401E1F0000000026401C0500000B +:108E340010B54378FF2B11D100F0BAF904000320D8 +:108E440000F0A6F9C3685A68012311681943116038 +:108E540011681942FCD1200000F092F910BDF7B559 +:108E640000900020019100F093F93F4D06002B681B +:108E74001A005033B43214681B780419002B5AD0EA +:108E840000F0B6F9070003281BD000F091F9374A27 +:108E9400374B0500D358002B3EDA364A0121300007 +:108EA40000F0B6F9002837D10198FFF78FFF009B37 +:108EB400002B3ED02368002BFCDB00F081F904007A +:108EC4002BE0062000F064F92B68B4331B68C0184B +:108ED4000368002B02DA284C2000FEBD002000F0BD +:108EE4005FF9264B9842F6D00023254A19001268F0 +:108EF400012000F085F90025A842ECD1002000F003 +:108F04004FF91E4A1F4B904203D09D42E3D00135D6 +:108F1400F4E79D42B9D1DEE7174C032F05D10121B7 +:108F2400002000F05DF90028F9D1280000F028F9AC +:108F3400D2E7154CF1E700F03BF90E4A0500012198 +:108F4400300000F065F9002809D1009B002B08D0FF +:108F54002368002BFCDB00F033F90400E5E7064C42 +:108F6400E3E7094CE1E7C046E0AD02080000264013 +:108F74001C05000008A80208050052000101880031 +:108F840018A80208F049020001005000F7B56E4D20 +:108F940004002A68536800931300B0331988072328 +:108FA4004B43126A9B181A68002AFCDA00F010F985 +:108FB4002A681300B033198807234B43212800D0B3 +:108FC40096E0116A5B180221D8680143D960D96818 +:108FD400C9072FD508208446944460461600D968F2 +:108FE400C06F0191116888360818356807684919F7 +:108FF4000D683902FF273F040F40694689882D0A0E +:109004002D0639432943D960902103684F4D090146 +:109014002B400B430360136830681B181868054025 +:109024002943196013686246D26F9A18126832682D +:109034009B181B68444D2A681300B0331988072312 +:109044004B43126A9B1800225A600423404A116958 +:109054000B431361012C50D030BF2A681300B03386 +:10906400198807234B43126A9B181A68002AFCDAF2 +:1090740000F0AEF8212842D1296807220B00012410 +:10908400B0331B8800205A430B6AD318DD6825428D +:109094001CD0080008300D68C06F2C4E28180568D5 +:1090A400DB6835401B0C1B061B0C2B4303600B00B9 +:1090B400883318680B6818180B6A0568D318DB68BE +:1090C4002E401B0E1B023343036020000B6A022157 +:1090D400D218D3688B43D3601B4B1A681300B03388 +:1090E400198807234B43126A9B1800225A60FEBD5D +:1090F400126A9B18174ADA609CE720BFADE700208C +:10910400009BFC331B698342E6D1A320124B134915 +:10911400134A144FC0000E681D5814680F600627C8 +:109124001F503E20106010483E371F501F58002F1C +:10913400FCDA00980D4FFC3007610E60A321C900D2 +:109144005D5001201460C7E7E0AD0208FF00FFFF97 +:1091540000ED00E024A80208000026400801264093 +:10916400040126401E1F00001C050000AAAAAAAA8A +:10917400FEE7024A1368002BFCDB7047000126401F +:1091840001B40248844601BC604700BF1B1D0D109A +:1091940001B40248844601BC604700BF0D1E0D1097 +:1091A40001B40248844601BC604700BF21280D1069 +:1091B40001B40248844601BC604700BF131D0D1072 +:1091C40001B40248844601BC604700BF411E0D1033 +:1091D40001B40248844601BC604700BF81440D10BD +:1091E40001B40248844601BC604700BFAD270D109E +:1091F40001B40248844601BC604700BFCD4D0D1048 +:1092040001B40248844601BC604700BF29250D1003 +:1092140001B40248844601BC604700BF31230D10ED +:10FE0000FC010000211221010000000000000000A0 +:10FE100000000D1000FE00000000010009000000BD +:10FE20000100000000DA0F100000000000000000D8 +:10FE300000000000000000000000000000000000C2 +:10FE400000000000000000000000000000000000B2 +:10FE500000000000000000000000000000000000A2 +:10FE60000000000000000000000000000000000092 +:10FE70000000000000000000000000000000000082 +:10FE80000000000000000000000000000000000072 +:10FE90000000000000000000000000000000000062 +:10FEA0000000000000000000000000000000000052 +:10FEB0000000000000000000000000000000000042 +:10FEC0000000000000000000000000000000000032 +:10FED0000000000000000000000000000000000022 +:10FEE0000000000000000000000000000000000012 +:10FEF0000000000000000000000000000000000002 +:10FF000000000000000000000000000000000000F1 +:10FF100000000000000000000000000000000000E1 +:10FF200000000000000000000000000000000000D1 +:10FF300000000000000000000000000000000000C1 +:10FF400000000000000000000000000000000000B1 +:10FF500000000000000000000000000000000000A1 +:10FF60000000000000000000000000000000000091 +:10FF70000000000000000000000000000000000081 +:10FF80000000000000000000000000000000000071 +:10FF90000000000000000000000000000000000061 +:10FFA0000000000000000000000000000000000051 +:10FFB0000000000000000000000000000000000041 +:10FFC0000000000000000000000000000000000031 +:10FFD0000000000000000000000000000000000021 +:10FFE0000000000000000000000000000000000011 +:10FFF0000000000000000000000000000000862D4E +:04000005100D4B335C +:00000001FF diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt new file mode 100644 index 00000000000..a8df5593903 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt @@ -0,0 +1 @@ +eyJhbGciOiJFUzI1NiJ9.eyJjeV9wdWJfa2V5Ijp7ImNydiI6IlAtMjU2Iiwia2lkIjoiMyIsImt0eSI6IkVDIiwidXNlIjoic2lnIiwieCI6IlNiOGxUcHlfcGQzTnJVVGtoSXpnMmp6TTM3dU5xTml1dDhXQy1RdjNYTVEiLCJ5IjoiQ3R3Q2k0YXJYc2pFRDVUVm1yX3ZQbFAya2UxMzNLSzdsUDdTel9JWmlERSJ9LCJleHAiOjE1Nzc3NDMyMDAsImlhdCI6MTU2MjMzOTcyMCwiaW1hZ2VfYWRkcmVzcyI6MjY5Mjg3NDI0LCJpbWFnZV9maWxlIjoiQ3lwcmVzc0Jvb3Rsb2FkZXJfQ00wcC5oZXgiLCJpbWFnZV9oYXNoIjpbMTQ2LDI0MCwxNDksMjksMTE1LDIyNywxMTUsMTIwLDk4LDQsMjEwLDAsNCw5NSwxNzMsMjIzLDIwMywxNDEsODIsNDIsMTc2LDEwMiw2MSwxNjcsOTgsMTk3LDIsMTAyLDIxMywxMzksMjAwLDIwMF0sImltYWdlX2lkIjowLCJpbWFnZV92ZXJzaW9uIjoiMS4wLjAuOSIsInBvbGljeV90ZW1wbGF0ZSI6IiJ9.46JbgLD89VBEBa3TnWPvBehwS0im3RyGp7NrZWs0M_qtXO6TNCG2MLL9zprsBwVoyJHc8NsgJk4T5JOB4U8qhw \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex new file mode 100644 index 00000000000..d5206c42531 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex @@ -0,0 +1,3714 @@ +:02000004100DDD +:1000000000C00208DF4E0D100D0000004D4F0D1016 +:1000100000000000000000000000000000000000E0 +:10002000000000000000000000000000494F0D101B +:100030000000000000000000494F0D10494F0D1056 +:10004000494F0D10494F0D10494F0D10494F0D10DC +:10005000494F0D10494F0D10494F0D10494F0D10CC +:10006000494F0D10494F0D10494F0D10494F0D10BC +:10007000494F0D10494F0D10494F0D10494F0D10AC +:10008000494F0D10494F0D10494F0D10494F0D109C +:10009000494F0D10494F0D10494F0D10494F0D108C +:1000A000494F0D10494F0D10494F0D10494F0D107C +:1000B000494F0D10494F0D10494F0D10494F0D106C +:1000C00010B5064C2378002B07D1054B002B02D02E +:1000D000044800E000BF0123237010BDECA7020814 +:1000E00000000000B4DE0D10044B10B5002B03D04F +:1000F0000349044800E000BF10BDC04600000000F6 +:10010000F0A70208B4DE0D100021124B124A10B500 +:10011000D8601C68002C06DB914202D101204042CD +:1001200010BD0131F5E79142F8D00121996000211D +:100130001C69002C03DA9142F0D00131F8E79142BA +:10014000ECD0A0220368120600209342E8D01800E9 +:10015000E6E7C04600002340983A00001FB50023A0 +:100160000193D82300049B05C018029001AB02A89C +:100170000C000393FFF7C8FF002801D1019B236007 +:1001800004B010BD13B5084BC47A986801A9C0B279 +:10019000FFF7E4FF002803D1019B9C42804116BD7C +:1001A00001204042FBE7C04648AE02081FB5064B9F +:1001B0000004C018029001AB02A801910393FFF75D +:1001C000A3FF05B000BDC0460001003610B5034BCB +:1001D000C17A9868C0B2FFF7E9FF10BD48AE0208C7 +:1001E000F0B50F000400002685B0BE4201D100200A +:1001F0003EE0A0221F4BD2009A582378032A04D055 +:10020000092B02D801361034EFE71B4A0A33DB0012 +:1002100099580029F6D0D3185B6801AD2B7163782B +:1002200001916B71A3782900AB71E378A068EB7141 +:1002300023792B7263796B72E3886B8102F0D8FBB0 +:10024000002815D1237B2900AB71637BA068EB717B +:10025000E3896B8102F072FB002809D1A06802F0EB +:100260004DFC002804D1A06802F030FC0028C9D061 +:1002700005B0F0BD0000214048AE020870B5060090 +:100280000024104AA3019B180F491A68A3015B18A8 +:100290001B68002A04DA0134102CF2D1002070BD52 +:1002A000002BF8DB094B3100E518AD01280002F006 +:1002B00045FB0028F3D1280002F008FC0028EAD012 +:1002C000EDE7C04604202440242024408090000113 +:1002D00073B50E0004000025B54201D1002076BDA3 +:1002E0006A462378694613706378E0685370A37890 +:1002F0009370E378D370A388938002F093FE002874 +:10030000EDD16A46A37969461370E379E0685370CA +:10031000237A93706389938002F028FE0028DED14F +:10032000E06802F0F5FE0028D9D1E06802F0D6FEC0 +:1003300010340028D3D10135CEE773B50E00040088 +:100340000025B54201D1002076BD6A462378694672 +:1003500013706378E0685370A3789370E378D37078 +:10036000A388938002F05EFD0028EDD16A46A37950 +:1003700069461370E379E0685370237A9370638958 +:10038000938002F0F3FC0028DED1E06802F0CAFDA1 +:100390000028D9D1E06802F0A1FD10340028D3D1A3 +:1003A0000135CEE7F0B50F000400002685B0BE424F +:1003B00002D1002005B0F0BD236801AD019323797F +:1003C00029002B71637960696B71A379AB71E37953 +:1003D000EB71237A2B72637A6B7263896B8102F003 +:1003E00005FC0028E6D1237B2900AB71637B6069A3 +:1003F000EB71A37B2B72238A6B8102F097FB0028A1 +:10040000D8D1606902F08EFC0028D3D1606902F077 +:1004100065FC18340028CDD10136C8E730B5174B3C +:1004200085B001930D2301AD2B71437804006B71EE +:1004300083782900AB71C378EB7103792B72437910 +:100440006B72C38880686B8102F0D2FA002813D1E6 +:10045000237B2900AB71637BA068EB71E3896B811F +:1004600002F06CFA002807D1A06802F047FB0028D0 +:1004700002D1A06802F02AFB05B030BD00C002081E +:10048000B02310B55B055B78124C232B1BD00B21DE +:100490002000FFF7A5FE00281AD10F48FFF7EEFE57 +:1004A000002815D10A210D48FFF712FF00280FD1AF +:1004B00004210B48FFF741FF002809D10121094819 +:1004C000FFF770FF04E02000FFF7A8FF0028DED050 +:1004D00010BDC0469CC60D1098C50D10A4C50D10CA +:1004E00044C60D1084C60D1010B501210148FFF758 +:1004F00077FE10BD4CC70D100022124B124910B5EB +:10050000D8601C68002C05DB8A4201D1012010BD97 +:100510000132F6E78A42F9D001229A6000220B49A3 +:100520001C69002C03DA8A42F0D00132F8E78A42D3 +:10053000ECD0A0220368120600209342E7D01800F6 +:10054000E5E7C04600002340983A00000094357764 +:1005500010B5D42488B005930A9BA40506930B9B81 +:100560000094029002AC68460194039104920793B0 +:10057000FFF7C2FF08B010BD00B5064B89B000936D +:10058000029002AB6846019303910492FFF7B4FF17 +:1005900009B000BD000B003510B5074C88B00094C1 +:1005A000029002AC68460194039104920593FFF710 +:1005B000A3FF08B010BDC046000E003500B5064BC5 +:1005C00089B00093029002AB6846019303910492B4 +:1005D000FFF792FF09B000BD000C003510B588B0E0 +:1005E00005930A9B074C06930B9B0094029002AC68 +:1005F00068460194039104920793FFF77DFF08B0CA +:1006000010BDC046000D003500B5054B89B0009304 +:10061000029002AB68460193FFF76EFF09B000BD80 +:10062000000A003500B5054B89B00093029002AB7B +:1006300068460193FFF760FF09B000BD0005003573 +:1006400000B5064B89B00093029002AB6846019357 +:1006500003910492FFF750FF09B000BD000400357C +:100660001FB5054B02900093684602AB01930391BE +:10067000FFF742FF05B000BD001000357FB5064B07 +:100680000390019301A803AB029304910592FFF735 +:1006900033FF07B000BDC0460011003510B5074C50 +:1006A00086B00094029002AC6846019403910492D3 +:1006B0000593FFF721FF06B010BDC04600120035BC +:1006C00010B5074C86B00094029002AC68460194C5 +:1006D000039104920593FFF70FFF06B010BDC046CB +:1006E000000900357FB5054B0390019301A803ABCA +:1006F0000293FFF701FF07B000BDC04600060035BA +:100700007FB5064B0390019301A803AB02930491BC +:100710000592FFF7F1FE07B000BDC04600070035A7 +:100720007FB5054B0390019301A803AB029304919D +:10073000FFF7E2FE07B000BD000800357FB5064BAD +:100740000390019301A803AB029304910592FFF774 +:10075000D3FE07B000BDC0460002003510B5074CFF +:1007600086B00094029002AC684601940391049212 +:100770000593FFF7C1FE06B010BDC046000100356D +:1007800010B58CB006930E9B0A4C07930F9B0194F7 +:100790000893109B03900993119B03AC0A93129B3F +:1007A00001A80294049105920B93FFF7A5FE0CB0EB +:1007B00010BDC04600030035F0B58DB01D0012AB72 +:1007C00040CB02921B780F000393002305AA04A9D3 +:1007D0000493059300F03DF9041E3BD1204B3A00F1 +:1007E00000930599029B049806F0E6FF002834DD8B +:1007F000022007AA06A9FF300694079401F0AEF97B +:10080000002803D12900069800F0F4FF812007AAF0 +:1008100006A9400001F0A2F9652400281ED131008C +:10082000069800F077FD041E14D108A9380000F0E6 +:1008300028F9041E0ED131000B9800F063FB041E52 +:1008400008D1039A29000B9800F03AF9040008989F +:1008500006F048FF20000DB0F0BD14246442F9E713 +:10086000005F2D00F0B51F00002387B002910392B6 +:1008700004A905AA0493059300F0EBF8041E2ED1F9 +:10088000059800F07FF8040007F0A4FB051E31D0A6 +:100890001A4B0200009305992300049806F08CFF80 +:1008A000002822DD280006F077FF061E20D0010078 +:1008B000134800F09FF8002814D00069002811D0D8 +:1008C000039B220000930197029B2900FFF774FF0E +:1008D0000400300006F006FF280007F085FB20002A +:1008E00007B0F0BD01246442F3E714246442F3E747 +:1008F0000524FBE764246442F1E7C046005F2D0055 +:100900005CC70D1010B5010004000B4808F00CFA8C +:10091000002398420DD02100084808F005FA012371 +:10092000002806D02100064808F0FEF94342434162 +:100930005B00180010BDC04663C80D106CC80D10D8 +:1009400078C80D1010B5010004000B4808F0ECF950 +:10095000002398420DD02100084808F0E5F9012352 +:10096000002806D02100064808F0DEF94342434142 +:100970005B00180010BDC0467DC80D1086C80D1064 +:100980008EC80D10032358438008984304307047E5 +:10099000F8B5C3680D000860062B21D18468124F9A +:1009A000002C01D12000F8BD266A002E06D03100AF +:1009B0000E4808F0B9F9002802D16C602468EFE70E +:1009C00031000B4808F0B0F9002801D1AC60F5E720 +:1009D0003100380008F0A8F90028EFD1EC60EDE70D +:1009E00002204042DFE7C046A5C80D1096C80D1092 +:1009F0009CC80D10F0B507000D00002491B001AEA9 +:100A0000002D02D1280011B0F0BD296A002904D0C0 +:100A1000380008F089F90028F4D0AB68002B06D024 +:100A20000E2C12D8A200955101341D00E8E72B6866 +:100A3000002BFAD1002C0AD0013CA3009B591B6863 +:100A4000002BF2D1002CF7D1EFE70025DAE72500E3 +:100A5000D8E7F8B50E002E21170008F057F9041E4C +:100A60000CD0451C2E21280008F050F9002805D094 +:100A7000001B0138386000203560F8BD1620404268 +:100A8000FBE770B5050000200C0006F011FE280001 +:100A900006F082FE002803D02100FFF779FF70BD29 +:100AA00005204042FBE7002304220133002901D145 +:100AB000904203D952001D2BF7D102331800704722 +:100AC000F0B589B005900C000100C24807920027DC +:100AD000FFF790FFB84200D145E18568069702957F +:100AE0000497029B002B00D08AE0EB68062B00D015 +:100AF00039E12E00B84F31003800FFF77BFF079A2D +:100B0000037E9A4200D0DEE03100B448FFF772FF66 +:100B10008369237029003800FFF76CFF2278037E79 +:100B20009A4200D1A8E12D68002DF3D12900AC48EC +:100B3000FFF760FF002806D02300FF335B7B012B0B +:100B400001D18369A3602900A648FFF753FF00285D +:100B500008D02300FF339B7A012B03D1C3685A1EB0 +:100B6000934163702900A048FFF744FF002808D094 +:100B70002300FF331B7B012B03D1C3685A1E934113 +:100B8000E37029009948FFF735FF002806D02300BD +:100B9000FF331B7B012B01D183692371290094480A +:100BA000FFF728FF002809D02300FF331B7E012B0D +:100BB00004D1C3685A1E9341E21CD37729008D48A3 +:100BC000FFF718FF002800D1A6E0C368052B00D06E +:100BD000A2E082682300200012331530FF33FF307B +:100BE000002A00D198E01978012903D119009669EB +:100BF000F5390E700133984200D18DE01268EFE7AD +:100C000002997D48FFF7F6FE002804D0836801931F +:100C1000019B002B03D1029B1B68029361E70199A2 +:100C20007648FFF7E7FE00284AD0036974491800A8 +:100C3000039308F079F8002842D07249039808F02D +:100C400073F800283CD000266F4AB30099580398E7 +:100C500008F06AF8071E05D00136172EF4D10527D3 +:100C6000183E7F4201996948FFF7C4FE002801D071 +:100C70008369069301996648FFF7BCFE002804D0FB +:100C8000C1698069FFF70FFF0490731C18D0049BA3 +:100C9000002B15DD92227300E31852009A5C012AA2 +:100CA00004D1320006990A32D20011512622FF32B5 +:100CB0009B5C012B04D10A36F600049BA6197360D5 +:100CC000019B1B68A3E73668002E00D012E721E7DE +:100CD0004C49380008F028F8002800D0FFE0310027 +:100CE0004A48FFF787FE002806D02300FF331B7C0D +:100CF000012B01D18369636131004548FFF77AFE1A +:100D0000002800D1EBE02300FF331B7C012B00D037 +:100D1000E5E08369A361E2E029003E48FFF76AFE4F +:100D2000002817D0C368052B14D182682300200047 +:100D300015331830FF33FF30002A0BD01978012902 +:100D400003D119009669F5390E700133984201D02C +:100D50001268F1E729003048FFF74CFE002835D033 +:100D600000278369A37005992C48FFF743FE0028EC +:100D700058D000258668002E54D031002448FFF753 +:100D800039FE00280BD063191A001A32FF3212788C +:100D9000012A04D102326A439B1882699A623100A7 +:100DA0001F48FFF727FE00280BD063191A001932DD +:100DB000FF321278012A04D102326A439B188269F9 +:100DC0005A6202350A2D2DD03668D4E7A07007008C +:100DD000C9E7C04663C80D10CCC70D1081C70D1000 +:100DE00088C70D10AAC80D1092C70D109AC70D1014 +:100DF000A9C70D10B0C70D1065C70D10B2C80D10F2 +:100E00006FC70D1074C70D10C0A0020802C90D10E5 +:100E10007CC70D10BAC70D10C7C70D10CFC70D1076 +:100E2000D9C70D1005992F48FFF7E4FD051E20D006 +:100E300001002D48FFF7DEFD00280AD02423FF33F0 +:100E4000E35C012B05D1C3685A1E934122004D3249 +:100E5000137029002548FFF7CDFD002809D0912304 +:100E60005B00E35C012B04D1C3684C345A1E9341F0 +:100E70002370380009B0F0BD29001D48FFF7BAFD06 +:100E8000002800D152E68668002E00D14EE63100DF +:100E90001848FFF7AFFD002821D007691649380030 +:100EA00007F042FF002800D012E731001348FFF797 +:100EB000A1FD002806D02300FF339B7B012B01D12D +:100EC0008369E36031000E48FFF794FD002806D0E7 +:100ED0002300FF33DB7B012B01D18369236136685B +:100EE000D2E7C046DFC70D10EBC70D10F7C70D10D6 +:100EF00065C70D10B2C80D106FC70D1002C90D10D7 +:100F00007CC70D10F8B507000C000100BA48FFF7C8 +:100F100071FDBA4E051E2AD001003000FFF76AFDB0 +:100F2000002808D0230068331B78012B03D1006907 +:100F3000FFF708FD20702900B148FFF75BFD00288E +:100F400008D0230069331B78012B03D10069FFF718 +:100F5000D9FC60702900AB48FFF74CFD002806D093 +:100F600023006A331B78012B01D18369A3703900F8 +:100F7000A548FFF73FFD051E2AD001003000FFF70E +:100F800039FD002808D023006B331B78012B03D1D7 +:100F90000069FFF7D7FCE07029009948FFF72AFDA8 +:100FA000002808D023006C331B78012B03D1006983 +:100FB000FFF7A8FC207129009248FFF71BFD0028CD +:100FC00006D023006D331B78012B01D18369637137 +:100FD00039008E48FFF70EFD051E00D184E00100A8 +:100FE0003000FFF707FD002808D023006E331B7880 +:100FF000012B03D10069FFF7A5FCA07129008048EF +:10100000FFF7F8FC002808D023006F331B78012B72 +:1010100003D10069FFF776FCE07129007948FFF7FA +:10102000E9FC002806D0230070331B78012B01D186 +:101030008369237229007648FFF7DCFC002808D07A +:10104000230071331B78012B03D1C3685A1E9341CF +:10105000637229006F48FFF7CDFC002808D02300F9 +:1010600072331B78012B03D1C3685A1E9341A372BC +:1010700029006948FFF7BEFC002808D0230073331D +:101080001B78012B03D1C3685A1E9341E3722900D8 +:101090006248FFF7AFFC002808D0230074331B78A8 +:1010A000012B03D1C3685A1E9341237329005C4866 +:1010B000FFF7A0FC002808D0230075331B78012B14 +:1010C00003D1C3685A1E9341637329005548FFF743 +:1010D00091FC002808D0230076331B78012B03D124 +:1010E000C3685A1E9341A37339004F48FFF782FC2F +:1010F000050001003000FFF77DFC002808D0230028 +:1011000077331B78012B03D10069FFF71BFC207498 +:1011100029003C48FFF76EFC002808D023008C33E0 +:101120001B78012B03D12300826964331A702900D4 +:101130003E48FFF75FFC00282AD000268768002F72 +:1011400026D039003A48FFF755FC00280AD0A319E9 +:101150001A0078321278012A04D1023272439B18A5 +:1011600082695A6139003348FFF744FC00280AD0ED +:10117000A3191A0079321278012A04D1023272437B +:101180009B1882699A6102360A2E01D03F68D6E721 +:1011900029002948FFF72EFC00282BD00025032723 +:1011A0008668002E26D031002148FFF723FC002856 +:1011B0000AD063191A0082321278012A04D13A0047 +:1011C0006A439B188269DA6331001A48FFF712FC00 +:1011D00000280AD063191A0083321278012A04D138 +:1011E0003A006A439B1882691A6402350A2D01D0BD +:1011F0003668D6E70020F8BD09C80D100DC80D10DF +:1012000018C80D1020C80D1024C80D1027C80D10C7 +:101210002EC80D1036C80D1055C80D1013C90D106D +:101220001DC90D1024C90D103BC80D103FC80D106D +:10123000D9C70D107CC70D104DC80D1070B5040036 +:101240000D0086B00021142201A806F001FF29003C +:101250002000FFF7CFFB0400002C18D021001C4811 +:10126000FFF7C8FB0028F7D00569002D0AD0194EFA +:101270002900300007F058FD00280BD1310001A8EB +:1012800007F05CFD210001A8FFF7B4FB040020007B +:1012900006B070BD104E2900300007F045FD002853 +:1012A000ECD029000D4807F03FFD0028E6D00C4E99 +:1012B0002900300007F038FD0028DFD02900094858 +:1012C00007F032FD0028DDD121000748C1E7C04604 +:1012D000B2C80D10DAC80D10C3C80D10CAC80D1061 +:1012E000D2C80D10B7C80D10BDC80D1010B5FFF74E +:1012F00081FB0124002809D08168002906D0044818 +:10130000FFF778FB002801D0C468E4B2200010BDCC +:101310005BC80D10F0B5050085B000200C0006F08C +:10132000C7F9280006F038FA0190002800D14BE2F6 +:101330000100A148FFF75EFB051E00D0B4E00123C9 +:101340005B42009301999D48FFF754FB051E00D0B6 +:10135000EEE001235B42009301999948FFF74AFBB5 +:10136000051E00D03EE101235B42009301999548A0 +:10137000FFF740FB071E00D122E2934E0100300030 +:10138000FFF75CFF390005003000FFF7AFFF0600F4 +:10139000002D00D1F6E12869FFF7D4FA2300773356 +:1013A00020741E70894E39003000FFF747FF390066 +:1013B00005003000FFF79AFF002D00D1E6E1230081 +:1013C000AA6964331A702833187039008048FFF70F +:1013D00011FB051E00D1E6E101007E48FFF72EFF5C +:1013E000290006007B48FFF781FF0390002E00D103 +:1013F000D0E1B369029329007748FFF71FFF290066 +:1014000006007548FFF772FF002E00D1C7E1B669EC +:10141000230022002100143378323C31029D5E60AB +:101420001D606D462D7B0833507015700232994255 +:10143000F4D139006948FFF7DDFA061E00D1BFE19B +:10144000644F01003800FFF7F9FE31000500380055 +:10145000FFF74CFF0390002D00D1A8E1AB69029388 +:101460005D4F31003800FFF7E9FE3100050038001C +:10147000FFF73CFF002D00D19EE1AD692300220063 +:101480003C338232643402995D6019606946097B9D +:101490000833507011700232A342F4D1019806F063 +:1014A00021F9009805B0F0BD474F01003800FFF763 +:1014B000C5FE290006003800FFF718FF0700002EC0 +:1014C0002FD03069FFF73EFA2300683320701F7079 +:1014D0000023434F290038000093FFF7AFFE290097 +:1014E00006003800FFF702FF0700002E1CD030690D +:1014F000FFF708FA2300693360701F70334F29002B +:101500003800FFF79BFE290006003800FFF7EEFECB +:10151000002E00D113E7B369A37023006A3318705B +:1015200010E701235B42D4E701235B420093E5E728 +:10153000254F01003800FFF781FE29000600380022 +:10154000FFF7D4FE0700002E2DD03069FFF7FAF91F +:1015500023006B33E0701F70214F29003800FFF724 +:101560006DFE290006003800FFF7C0FE0700002EC0 +:101570001DD03069FFF7C6F923006C3320711F704E +:10158000124F29003800FFF759FE290006003800E5 +:10159000FFF7ACFE002E00D1DBE6B36963712300D8 +:1015A0006D331870D8E601235B420093D4E7012322 +:1015B0005B420093E4E7C04609C80D1024C80D1033 +:1015C00027C80D103BC80D100DC80D1020C80D10F8 +:1015D0003FC80D10D9C70D107CC70D104DC80D1098 +:1015E00018C80D107A4F01003800FFF727FE2900B8 +:1015F00006003800FFF77AFE0700002E00D1A1E0B8 +:101600003069FFF79FF923006E33A0711F70714F8F +:1016100029003800FFF712FE290006003800FFF706 +:1016200065FE0700002E00D190E03069FFF76AF9EF +:1016300023006F33E0711F70674F29003800FFF7F8 +:10164000FDFD290006003800FFF750FE002E00D1F6 +:1016500080E0B36923722300703318705F4F290054 +:101660003800FFF7EBFD290006003800FFF73EFECB +:10167000002E73D0F3685A1E9341637223007133B6 +:101680001870574F29003800FFF7D8FD29000600D1 +:101690003800FFF72BFE002E64D0F3685A1E9341EA +:1016A000A3722300723318704E4F29003800FFF7E1 +:1016B000C5FD290006003800FFF718FE002E55D0A2 +:1016C000F3685A1E9341E372230073331870464F38 +:1016D00029003800FFF7B2FD290006003800FFF7A7 +:1016E00005FE002E46D0F3685A1E93412373230053 +:1016F000743318703D4F29003800FFF79FFD290013 +:1017000006003800FFF7F2FD002E37D0F3685A1EAE +:1017100093416373230075331870354F29003800E7 +:10172000FFF78CFD290006003800FFF7DFFD002ED3 +:1017300000D118E6F3685A1E9341A3732300763351 +:10174000187013E601235B42009360E701235B42BC +:10175000009371E701235B4200937FE701235B4223 +:1017600000938EE701235B4200939DE701235B42D8 +:101770000093ACE701235B420093BBE701235B428C +:101780000093CAE701235B4200930BE601235B420F +:1017900000931AE601235B42029600932BE6012395 +:1017A0005B42009334E601235B42009341E6012350 +:1017B0005B420295009353E601235B4200935DE692 +:1017C00001235B42009369E605235B42009368E6D0 +:1017D0000DC80D1018C80D1020C80D102EC80D1002 +:1017E00036C80D1055C80D1013C90D101DC90D10A8 +:1017F00024C90D10F0B5050085B000200C0005F0DF +:1018000057FF280005F0C8FF0190002800D181E1B2 +:101810000100C248FFF7EEF8051E00D13AE1C04FC3 +:1018200001003800FFF70AFD290006003800FFF725 +:101830005DFD002E00D109E1B36923702300FF3361 +:1018400058720023B74F290038000093FFF7F6FCC9 +:10185000290006003800FFF749FD002E00D1F8E00E +:10186000F3685A1E934163702300FF339872AE4FA2 +:1018700029003800FFF7E2FC290006003800FFF7D6 +:1018800035FD002E00D1E8E0F3685A1E9341E37065 +:101890002300FF331873A54F29003800FFF7CEFC53 +:1018A000290006003800FFF721FD002E00D1D8E006 +:1018B000B369A3602300FF3358739D4F290038009C +:1018C000FFF7BCFC290006003800FFF70FFD002ED3 +:1018D00000D1CAE02200B369FF32DBB223779074F3 +:1018E0006377D074A3771075924F29003800FFF703 +:1018F000A5FC290006003800FFF7F8FC002E00D1F7 +:10190000B7E02200B369FF32DBB2611CE3775075A8 +:10191000CB77A11C9075CB77D075874E290030000E +:10192000FFF78CFC290007003000FFF7DFFC002FD9 +:1019300000D1A2E0FB685A1E9341E21CD37723003A +:10194000FF33187601997D48FFF754F80600002F01 +:1019500000D19FE023000122794FFF3301009A73E9 +:10196000DA731A745A743800FFF768FC3100050006 +:101970003800FFF7BBFC0390002D00D181E0AB697C +:101980000293704F31003800FFF758FC310005001A +:101990003800FFF7ABFC002D00D177E0AD692200E5 +:1019A00021002300253209315033FF32FF31029EDE +:1019B0005D601E606E46367B0833167050700232D2 +:1019C0008B42F4D101996048FFF714F8061E00D14C +:1019D0006DE05E4F01003800FFF730FC310005007C +:1019E0003800FFF783FC0390002D57D0AB690293BA +:1019F000544F31003800FFF721FC3100050038005A +:101A0000FFF774FC002D4ED0AD69220023002100A9 +:101A100019322433FF324C31029E5D601E606E46E7 +:101A2000367B08335070167002329942F4D1019916 +:101A30004748FEF7DFFF051E3DD101235B420093BF +:101A4000019805F04FFE009805B0F0BD01235B4200 +:101A5000F8E601235B42009309E701235B42009310 +:101A600019E701235B42009327E701235B420093C0 +:101A70003AE701235B4200934FE701235B42009367 +:101A800060E701235B42029500937AE701235B4202 +:101A9000009384E701235B42009393E701235B42B9 +:101AA00002950093A4E701235B420093ADE7012375 +:101AB0005B420093BBE7274F01003800FFF7BEFBF6 +:101AC000290006003800FFF711FC002E1ED0F36835 +:101AD0005A1E934122004C32137091235B00E05454 +:101AE0001D4F29003800FFF7A9FB29000600380028 +:101AF000FFF7FCFB002EA0D0F3685A1E9341220092 +:101B00004D3213702423FF33E05499E701235B42E5 +:101B10000093E5E705235B42009394E763C80D104B +:101B2000CCC70D10AAC80D1092C70D1088C70D1094 +:101B3000B0C70D10BAC70D10A9C70D1065C70D109D +:101B400002C90D107CC70D10CFC70D10D9C70D10DD +:101B5000DFC70D10F7C70D10EBC70D107FB5DC23E5 +:101B60009B0500936C46002302AD01950290154839 +:101B70006B60C460144C0668002E07DBA34203D1DF +:101B80000120404204B070BD0133F4E7A342F7D016 +:101B90000123836000230669002E03DAA342EFD0FD +:101BA0000133F8E7A342EBD0A02300981B0698422C +:101BB00001D00098E6E7029B002013606B680B6081 +:101BC000E0E7C04600002340983A0000F0B5170057 +:101BD0008A22434C9200A544079008910EA8002148 +:101BE000BFB2099306F034FA0CAA0BA93800FEF72D +:101BF000A5FD00260500B0422CD1C02280210B9B00 +:101C0000D2051A40C9058A4237D10C9BDC1DE40875 +:101C100020000D9406F0DEF90925061E1AD00100F9 +:101C20000DAB22003800FEF799FD051E12D16B4660 +:101C3000198C102304930293079B079A3033019366 +:101C4000284B40320392009332000D9B0EA8FEF702 +:101C500097FD0500300006F0C7F9002D05D12022C0 +:101C600009990EA8FEF7ECFC05000EA8FEF7DAFCB9 +:101C7000280099239B009D44F0BD1B4A934207D145 +:101C80000C9B5C0809230134E4085C433B34BFE748 +:101C9000164A934203D10C9BDC082934B8E7144A56 +:101CA000934205D103240C9BDB085C435A34AFE715 +:101CB000104A934205D103240C9BDB085C434A3451 +:101CC000A6E70D4A1B0C1B0493429ED00B4A04004E +:101CD00093429DD10C9BDC1DE4081234640097E70D +:101CE0009CFDFFFF0901202200000170000001603F +:101CF000000002700000026000000370000003603A +:101D000070B508000D0014000E1E05D0731B9C4218 +:101D100003DCE043C017204070BD307803F00CFDB9 +:101D20000136F3E770B500240D001600A1420AD178 +:101D3000200070BD03F00CFDC0B2285501340A2804 +:101D4000F6D00D28F4D0B442F4DBF1E70000000037 +:101D50000230800803D001300238FCD1C046C046B2 +:101D60007047EFF3108072B6704780F310887047A9 +:101D7000014B18607047C046E0AD0208044B1B6879 +:101D80001A0008321B68D26F9B181868000E704743 +:101D9000E0AD0208054B1B681A0008321B68D26FC1 +:101DA0009B181868000AC0B27047C046E0AD020830 +:101DB0001D4B98420FD010D840282FD005D80028AE +:101DC00030D0102828D019481EE0802828D0802341 +:101DD0005B009842F7D1144816E0154B984214D096 +:101DE00008D8A0231B0698421CD0124B9842EAD177 +:101DF000A0200BE0104B98420AD0104B984209D01B +:101E00000F4B9842DFD10F487047A420C003FBE777 +:101E10000D48F9E70D48F7E70D48F5E70D48F3E7FA +:101E20000D48F1E70020EFE706005200FF005200E6 +:101E3000010000F0090000A0040000F0050000F01F +:101E4000030000F0010052000200520003005200A3 +:101E500001005000020050000500520070B50A4D0C +:101E600004002B6831331B78834204D8E6210748ED +:101E7000490002F035FC2B681A00B0321088444348 +:101E8000186A201870BDC046E0AD02081CCB0D10CA +:101E900010B50020FFF7E2FF0A4B1C682300B433A3 +:101EA0001B68C0180368002B0ADB074B1868FFF794 +:101EB0007FFF012263689A609A68002AFCD110BDF6 +:101EC0000248FCE7E0AD020808A802080200500042 +:101ED0000D4B10B51860002804D0FE235B42038030 +:101EE00000234380094B1B681A0050321278002AE5 +:101EF00008D051331B78002B04D002220449002063 +:101F000000F086FB10BDC04618A80208E0AD02082C +:101F1000C1A3020870B5C4050500E40D28D103F083 +:101F200025F8144B144A1A605D609C60DC60134B0A +:101F30001B6854331978002915D0FFF71FFF0400E0 +:101F4000FFF728FFFA210134013060430C4B0D4CA0 +:101F500089004443186805F023FD0100200005F0C6 +:101F60001FFD094BC118802040000AF005FB70BD21 +:101F70000648FCE708A802080001001CE0AD0208C2 +:101F800020A1020860F590009808000006005200A9 +:101F900070B5C40506000D00E40D2AD1002928D033 +:101FA00002F0E4FF144B154A1A605C609E60DD602D +:101FB000134B1B6852331978002915D0FFF7DEFE4A +:101FC0000400FFF7E7FEFA210134013060430D4BB6 +:101FD0000D4C89004443186805F0E2FC0100200024 +:101FE00005F0DEFC094BC118802040000AF0C4FA5D +:101FF00070BD0748FCE7C04608A8020800010005BC +:10200000E0AD020820A10208C0EA21014826000034 +:102010000600520070B506000C001500072903D910 +:102020001449154802F05CFB1F232A009A4303D091 +:102030001249114802F054FB114B1B689A695B6905 +:10204000B01AC0090001C0181F231D40032C07D877 +:10205000E400A340A54002689A431543056070BDA3 +:10206000043CE400A340A54042689A431543456000 +:10207000F5E7C04691020000AECB0D1092020000C1 +:10208000E0AD0208F0B585B000900D001400002806 +:1020900000D138E1002A00D135E1072903D94E21CA +:1020A0009A4802F01DFB2368012B03D94F21974862 +:1020B00002F016FB0F2362689A4303D05021934825 +:1020C00002F00EFB1F22237A934303D051218F4845 +:1020D00002F006FBE368032B03D952218B4802F080 +:1020E000FFFA2369012B03D95321884802F0F8FA3B +:1020F0006369012B03D95421844802F0F1FAA369E2 +:10210000012B03D95521814802F0EAFAE369032B38 +:1021100003D956217D4802F0E3FA236A012B03D943 +:1021200057217A4802F0DCFA636A012B03D958215F +:10213000764802F0D5FAA36A012B03D959217348D6 +:1021400002F0CEFAE36A032B03D95A216F4802F05A +:10215000C7FA236B072B03D95B216C4802F0C0FA46 +:102160002668072D04D9CC216948890002F0B8FA05 +:102170000122AA400192012E07D96649644802F063 +:10218000AFFA009B019A9A6004E0002EF9D1009BFF +:10219000019A5A606668072D03D95F495C4802F0CE +:1021A0009FFA0F2332009A4303D05C49584802F04B +:1021B00097FA0F215A4FAB0002933B6808007D331A +:1021C0001A78009B0E40D2181368A9009C46AB00F9 +:1021D000984063468E4083431E431660227A29004E +:1021E0000098FFF717FFE668082D03D94D494848C6 +:1021F00002F076FA032E03D94B49454802F070FAF3 +:10220000032108006B0003933B686F00B8400E4049 +:10221000BE407C331A78009B9A18136883431E4390 +:1022200016602669082D03D94049394802F058FA4A +:10223000012E03D93E49364802F052FA019A009B1A +:10224000D74301221640AE409B693B401E43009B92 +:102250009E616669072D03D936492D4802F040FA80 +:10226000012E03D934492A4802F03AFA01202C4BB6 +:1022700006401968AE400B0084467E331B78009AF6 +:10228000D3181A68174037431F600B0062467F332C +:102290001878009B6E001818A36910361340AB40E5 +:1022A000E56902321540B540B2402B43019D0768F5 +:1022B0002A4397433B4303600220042580310A7878 +:1022C000009B9A18636A11685B000340A06A800053 +:1022D000284003436046256A284018250343E06AE6 +:1022E000C00028400343206BFF24400120400343EB +:1022F000FE20029D80000540AB400020A1430B431F +:10230000136005B0F0BD0D48FBE7C04667CB0D106C +:10231000AECB0D1031030000CD030000CE03000052 +:10232000E0AD0208F1060000F206000072060000AF +:10233000730600000C0400000D04000001005A00A8 +:102340000B4B70B51B680500B4331B680C00C31839 +:102350001B68002B09DA0B0C03D00649064802F073 +:10236000BFF90020A4B26C6070BD0448FCE7C04611 +:10237000E0AD0208DE0200001CCB0D1001008A0057 +:10238000036870B505000C00002B0BDAC2600B0C63 +:1023900004D0B1210448890002F0A2F90020A4B2BF +:1023A000AC6070BD0148FCE71CCB0D1001008A0039 +:1023B00070B505000C1E03D1A221084802F090F967 +:1023C000074B1B68B4331B68EB181B68002B03DA40 +:1023D0000020EB68236070BD0248FCE7F6CB0D10CF +:1023E000E0AD020801008A00024B1A68002A00D101 +:1023F000186070471CA80208F0B5314D1F002B680B +:1024000085B0040002910392002B03D1BE212D4818 +:1024100002F066F92C23FF225C432B683D001C1957 +:102420003B0A3F0CA760284F134063603B68154090 +:10243000256031331B789D4204D3E62123484900AF +:1024400002F04EF93B681A00B032128855431A6AFE +:102450003233AD1825611B7865689D4204D3F421A1 +:102460001A48490002F03CF93B681E6A2B00803391 +:102470005B01F3186361A36801931B0C09D0134F30 +:102480001349380002F02CF982213800890002F04B +:1024900027F9019B6D011B041A0C13430D4A751992 +:1024A000AD182B60039BE361029B23620023A361B1 +:1024B0000A9B002B01D01B88A38105B0F0BDC0464C +:1024C0001CA8020840CC0D10E0AD02081CCB0D107A +:1024D0000702000008100000F0B5040085B00028D5 +:1024E00003D15B21214802F0FBF86368032B03D979 +:1024F0005D211E4802F0F4F8E36A002B03D161214C +:102500001A4802F0EDF8236B002B03D16221174823 +:1025100002F0E6F8A36802AD2B80154B22681B6819 +:10252000E16ADB8EE0689B18AB706368A26A039374 +:1025300000952369266A676AFFF75EFF00213B006A +:102540000A0000913000FFF757FF216B280002F0CE +:102550004FF80022AB5E002B06DB1F2213401E3A11 +:102560009A401300034A136005B0F0BD40CC0D1033 +:10257000E0AD020800E100E0F7B504000F00151E11 +:10258000019304D183211D48490002F0A9F81C4E93 +:102590003368002B04D108211848FF3102F0A0F85D +:1025A0002C235C4332685F4314192669D719002E27 +:1025B00020D0BB69002B1FD13368002B1CDA01220D +:1025C0006368140011009C407B6899402B680904E3 +:1025D0009BB20B432B60019BF5607B62BA61230CBD +:1025E00004D0B1210748890002F07AF80020A4B293 +:1025F000B460FEBD0448FCE70448FAE740CC0D1087 +:102600001CA802081CCB0D1004028A0007028A00D5 +:10261000F8B5114F04003B680E001500002B04D1E3 +:1026200068210E48FF3102F05BF82C2060433C68C3 +:102630002418236A002B04D16C210848FF3102F0D2 +:102640004FF8E369AB4204D90020236AAD00EE5095 +:10265000F8BD0348FCE7C0461CA8020840CC0D109A +:102660000A028A00002373B504000193984204D142 +:10267000ED212C48490002F033F82369002B04D1E6 +:10268000DC212848FF3102F02BF86369002B04D1CC +:10269000EE212448490002F023F8236A002B04D1DC +:1026A000DE212048FF3102F01BF86269D5682B0C4F +:1026B00022D01B04136013681B4B20691B68B433C2 +:1026C0001B68C3181B68002B16DA01A9FFF770FE00 +:1026D0000026B0420CD10198E26903681E0CDBB2FF +:1026E0009A4205D9226A9B009B58002B00D098473C +:1026F00031002069FFF724FEADB2002D09D06369D7 +:102700001D6000251B68636AAB4205D0984765626F +:10271000A56163691B6873BDA36A002BF8D0984755 +:10272000F6E7C04640CC0D10E0AD020870B5084C8D +:1027300005002368002B04D1DD210648490001F083 +:10274000CFFF2C20454320684019FFF78BFF70BD59 +:102750001CA8020840CC0D1070B50A4D04002B686F +:1027600031331B78834204D8E6210748490001F041 +:10277000B7FF2B681A00B03210884443186A20183B +:1027800070BDC046E0AD02081CCB0D10F8B5174B6C +:102790000D001B6831331B78834225D9002923D0D3 +:1027A0001F240B681C401FD1FFF7D6FF07002B68C2 +:1027B0000F4EDA0821003060686805F049FC2100FE +:1027C0003800FFF7BDFD21002A003068FFF7D8FD73 +:1027D000041E07D101003068FFF7B2FD030020009E +:1027E000002B00D00348F8BD0348FCE7E0AD020829 +:1027F00020A8020801018A0003018A00F7B5184FDA +:1028000004003B680191DE683368834226D90025C5 +:10281000A94202D1FFF7A5FA050038680368002B2A +:102820001ADA1F2201232240934064097268A4002F +:102830001419226813420DD09A432260002400210B +:10284000FFF77EFD019B002B02D12800FFF78DFAD8 +:102850002000FEBD034CF2E7034CF3E7034CF7E71F +:1028600020A80208020188000301880004018A00F0 +:102870000A4B1B68DB681A6882420DD959681F230E +:10288000420918401E3B8340920050581840431E96 +:102890009841034BC01870470248FCE720A8020883 +:1028A0000001880004018A0070B5154E04003368E9 +:1028B0000D009B6CC340DB0703D4A721114801F036 +:1028C0000FFF0F2D03D9A8210E4801F009FFF022B8 +:1028D0002B041203290013400F2211400B433168CF +:1028E000A402096964188021C9016350605810402E +:1028F000401B431E9841044B4042184070BDC046E7 +:10290000E0AD02088BCC0D100300C20070B5094D7C +:1029100004002B689B6CC340DB0703D4C721064827 +:1029200001F0DEFE2B6810341B69A402E0580F236F +:10293000184070BDE0AD02088BCC0D1070B50400DE +:102940000D00002804D17A212448FF3101F0C8FE8F +:102950006B89DB0B04D0BD212048490001F0C0FE8B +:102960000222AB799343012B04D07C211B48FF3119 +:1029700001F0B6FE0222EB799343012B04D0BE2175 +:102980001648490001F0ACFE6A897F231100994383 +:1029900022D10721AB7952020B4013436A7A3131BD +:1029A00092071343EA79D2000A4013430122297A9D +:1029B0004A40920113431A0009490A409A420BD136 +:1029C0006262606A0840801A43425841054B4042A7 +:1029D0001840054BC01870BD0448FCE78BCC0D10A7 +:1029E000DBFEFFE0FDFF3DFF0300C2000100C2006F +:1029F00070B504000D00002804D1C2212E48FF311B +:102A000001F06EFE6B89DB0B04D0E1212A484900FE +:102A100001F066FEAB79072B04D9C4212648FF31AB +:102A200001F05EFEEB79072B04D9E2212248490030 +:102A300001F056FE2B79073B182B04D9C6211E48FE +:102A4000FF3101F04DFE6B897F22190091430A1E70 +:102A50002ED12968FF3291430A006979A8790A4387 +:102A600007215B02084018436B7A31319B071843FA +:102A7000EB79DB000B4018430123297A4B40F82106 +:102A80009B0118432B7949051B060B4003436360E8 +:102A90002260216891420DD16068084A1040C01A36 +:102AA00043425841064B40421840064BC01870BD87 +:102AB0000548FCE70348FAE78BCC0D10FFFEFFFF4B +:102AC000FDFF3DFF0300C2000100C20010B5041E5F +:102AD00004D1FF210748490001F002FE8023626A09 +:102AE0001B0613436362606A034BC00F0138184032 +:102AF00010BDC0468BCC0D100300C20010B5041EE3 +:102B000003D10749074801F0EBFD802362681B06EB +:102B1000134363606068044BC00F0138184010BD58 +:102B20004E0200008BCC0D100300C20070B50400F3 +:102B30000D00002803D12449244801F0D1FD0222D0 +:102B4000AB799343012B04D0A5212048C90001F0A3 +:102B5000C7FD0222EB799343012B03D01C491B488C +:102B600001F0BEFD1B4B1B682F331A78012A26D1BA +:102B700069897F230800984323D10720AB79490254 +:102B800003400B43697A313089070B43E979C90067 +:102B900001400B43297A4A40920113431A000E491F +:102BA0000A409A420DD16262606A0840801A43422C +:102BB00058410A4B40421840094BC01870BD0948A3 +:102BC000FCE70948FAE7C046270500008BCC0D104A +:102BD00029050000E0AD0208DBFEFFE0FDFF3DFF40 +:102BE0000300C2000200C2000100C20070B505006F +:102BF0000C00002803D12F492F4801F071FDA37963 +:102C0000032B03D92D492C4801F06AFDE379032BEE +:102C100003D92B49284801F063FD2379073B182B82 +:102C200004D9AF212448C90001F05AFD254B1B6887 +:102C30002F331A78012A36D161897F2308009843FF +:102C400033D10720A379490203400B43617A313025 +:102C500089070B43E179C90001400B43217A4A40BF +:102C6000F821920113432279490512060A401343C1 +:102C70001A0015490A409A4217D1FF232068984349 +:102C8000030060796A6003432B60286898420ED184 +:102C900068680840801A434258410C4B4042184033 +:102CA0000B4BC01870BD0B48FCE70B48FAE708480F +:102CB000F8E7C046750500008BCC0D1076050000C6 +:102CC00077050000E0AD0208DBFEFFFFFDFF3DFFE2 +:102CD0000300C2000200C2000100C20010B5041EC1 +:102CE00003D10B490B4801F0FBFC0B4B1B682F3346 +:102CF0001B78012B0AD18023626A1B06134363628F +:102D0000606A064BC00F0138184010BD0448FCE74C +:102D1000BD0500008BCC0D10E0AD02080300C20021 +:102D20000200C20010B5041E03D10B490B4801F08C +:102D3000D7FC0B4B1B682F331B78012B0AD1802348 +:102D400062681B06134363606068064BC00F01385E +:102D5000184010BD0448FCE7160600008BCC0D108F +:102D6000E0AD02080300C2000200C20070B504001A +:102D70000D00002803D12149214801F0B1FC2B7836 +:102D8000032B03D91F491E4801F0AAFC6B78032BC3 +:102D900003D91D491A4801F0A3FC1C4B1B682F33B3 +:102DA0001A78012A26D1A9887F230800984323D1C5 +:102DB00007202B78490203400B43E978313089071B +:102DC0000B436978C90001400B43A9784A4092013E +:102DD00013431A000E490A409A420DD16262606A9A +:102DE0000840801A434258410A4B404218400A4B5F +:102DF000C01870BD0948FCE70948FAE7560800000A +:102E00008BCC0D105708000058080000E0AD0208F8 +:102E1000DBFEFFE0FDFF3DFF0300C2000200C20039 +:102E20000100C20070B504000D00002803D1214943 +:102E3000214801F055FC2B78032B03D91F491E486C +:102E400001F04EFC6B78032B03D91D491A4801F0A1 +:102E500047FC1C4B1B682F331A78012A26D1A988FE +:102E60007F230800984323D107202B784902034091 +:102E70000B43E978313089070B436978C900014079 +:102E80000B43A9784A40920113431A000E490A40A5 +:102E90009A420DD1626060680840801A43425841EE +:102EA0000A4B404218400A4BC01870BD0948FCE765 +:102EB0000948FAE7A70800008BCC0D10A80800000D +:102EC000A9080000E0AD0208DBFEFFE0FDFF3DFFCA +:102ED0000300C2000200C2000100C20010B5041EBF +:102EE00003D10B490B4801F0FBFB0B4B1B682F3345 +:102EF0001B78012B0AD18023626A1B06134363628D +:102F0000606A064BC00F0138184010BD0448FCE74A +:102F1000EB0800008BCC0D10E0AD02080300C200EE +:102F20000200C20010B5041E03D10B490B4801F08A +:102F3000D7FB0B4B1B682F331B78012B0AD1802347 +:102F400062681B06134363606068064BC00F01385C +:102F5000184010BD0448FCE7440900008BCC0D105C +:102F6000E0AD02080300C2000200C20070B5040018 +:102F70000D00002803D12149214801F0B1FB2B7835 +:102F8000032B03D91F491E4801F0AAFB6B78032BC2 +:102F900003D91D491A4801F0A3FB1C4B1B682F33B2 +:102FA0001A78012A26D1A9887F230800984323D1C3 +:102FB00007202B78490203400B43E9783130890719 +:102FC0000B436978C90001400B43A9784A4092013C +:102FD00013431A000E490A409A420DD16262606A98 +:102FE0000840801A434258410A4B404218400A4B5D +:102FF000C01870BD0948FCE70948FAE7A8090000B5 +:103000008BCC0D10A9090000AA090000E0AD020850 +:10301000DBFEFFE0FDFF3DFF0300C2000200C20037 +:103020000100C20070B504000D00002803D1214941 +:10303000214801F055FB2B78032B03D91F491E486B +:1030400001F04EFB6B78032B03D91D491A4801F0A0 +:1030500047FB1C4B1B682F331A78012A26D1A988FD +:103060007F230800984323D107202B78490203408F +:103070000B43E978313089070B436978C900014077 +:103080000B43A9784A40920113431A000E490A40A3 +:103090009A420DD1626060680840801A43425841EC +:1030A0000A4B404218400A4BC01870BD0948FCE763 +:1030B0000948FAE7F90900008BCC0D10FA09000065 +:1030C000FB090000E0AD0208DBFEFFE0FDFF3DFF75 +:1030D0000300C2000200C2000100C200094B1B68CD +:1030E0002F331B78012B0AD18023426A1B0613431E +:1030F0004362406A044BC00F0138184070470348D0 +:10310000FCE7C046E0AD02080300C2000200C200B6 +:10311000094B1B682F331B78012B0AD1802342688F +:103120001B06134343604068044BC00F013818402E +:1031300070470348FCE7C046E0AD02080300C20048 +:103140000200C200036810B5020080241B0500D4F1 +:10315000403C82239B00D3580020DB05DB0DA342BB +:1031600003D090239B00D150013010BD0368802014 +:103170001B0500D440387047F0B5050085B00C0041 +:103180001600002800D177E1002900D174E10B7806 +:10319000022B03D94821B94801F0A2FA637B023B14 +:1031A000062B03D94921B54801F09AFAA37B002BDD +:1031B00006D0023B012B03D94A21B04801F090FA16 +:1031C000A31CDB7F012B03D94B21AC4801F088FA0B +:1031D000230028331B78012B03D94C21A74801F089 +:1031E0007FFA2378012B00D93AE108236268083A74 +:1031F00093429B415B42002B03D04E219F4801F03C +:103200006FFAA368053B042B03D94F219B4801F0BB +:1032100067FA6369FF2B03D95021984801F060FADF +:10322000A369FF2B03D95121944801F059FAA37CDB +:10323000002B0CD02378002B05D1A368092B02D1D9 +:10324000A37B002B03D053218C4801F049FA8C4B0F +:10325000626B1A4203D05521884801F041FA894B2C +:10326000E26B1A4203D05621844801F039FA2378E0 +:10327000022B03D10022A37F934201D063685A1E20 +:10328000237F0021581E834118040823A768BB42EE +:10329000494107331A4080239B0413430343C90267 +:1032A0000B432B602800276BFFF760FF874203D397 +:1032B0006B21724801F014FA2800A76BFFF756FF44 +:1032C000874203D36C216D4801F00AFA2800676A2F +:1032D000FFF74CFF874203D36D21684801F000FAE5 +:1032E000C022217892040B0613402B64607FE76AAA +:1032F000431E984183010093A37C07205A1E9341EB +:10330000227C9B020193531E9A411302627C02931A +:10331000531E9A415302F02203937B1E12031B0497 +:103320001340627B013A02401343A27B2930120111 +:1033300002401A43009B1A43019B1A43029B1A4303 +:10334000039B1A43AA64207B431E9841E37B00023F +:10335000002B00D08DE002394B4259414B02A2684C +:10336000511E0F2211400143C020194380002950F3 +:10337000FF21A36909041B040B406169C9B20B4317 +:10338000C42189006B502B581A400332974201D355 +:10339000102F03D98321394801F0A2F90021E37FDE +:1033A00022788B4203D0531E59424B411902072009 +:1033B0003027637B013A013B0340A07B000138408A +:1033C00003430B436B64237B0F20591E8B4119026F +:1033D000A368013B03400B4351424A41120413438B +:1033E0008022FF219200AB50236B05320B40FF324D +:1033F000AB50631CDB7F5F1EBB415F06A31CDB7F02 +:10340000013B584243411806230028331B78013BF7 +:103410005A4253411A04636A0B403B43034313432C +:103420002B65A36B626B194081239B00E950164BFF +:1034300030001340154AAB50E36B154A1340154A50 +:10344000AB5000239E4209D01800134A7360B3604A +:103450003360F36033623363F362726305B0F0BDCF +:103460000023A27F9A4200D1C5E663685A1E062354 +:10347000BEE680239B0072E70848EFE7D2CC0D1030 +:1034800092F4FFFF8CF8FFFF6D0B0000C80F0000E7 +:1034900073070000880F0000EFCDAB000160AA00A9 +:1034A000036810B50400002B07D0012001F00EF9CD +:1034B0002368013B2360002B01D0002010BD014890 +:1034C000FCE7C0460200B200030A08704B70030C10 +:1034D000000E8B70C870704770B504000D00002896 +:1034E00041D000293FD0002B3DD05A62F922032160 +:1034F000D20083588B4383502B68DBB2012B03D956 +:1035000057311A4801F0ECF8AB68DBB2032B03D952 +:103510005B21164801F0E4F86B68072B03D95C21A6 +:10352000124801F0DDF8EB68DBB2012B03D95D2115 +:103530000E4801F0D5F8C022E021AB6892011B03D0 +:1035400013406A68C90212040A4013430122296821 +:1035500000200A4080211343EA68490412060A4009 +:103560001343236070BD0248FCE7C0461DCD0D101B +:103570000400B20010B50400012907D9A0210748B2 +:1035800001F0AEF801232268134304E00029F9D1C9 +:10359000012203689343236010BDC0461DCD0D106A +:1035A00070B54E1EF3B204001500012B07D9042993 +:1035B00025D0082927D0E521154801F091F8032DE1 +:1035C00003D9E621124801F08BF8072E14D83000F9 +:1035D00004F0DCF9041312171212121B80231B01D2 +:1035E000E418002C08D0C0222D0492022368154054 +:1035F000084A13401D43256070BD8823EFE7032A66 +:10360000DFD89023EBE7032ADBD89823E7E7C0460F +:103610001DCD0D10FFFFFCFFF0B5160089B005931E +:103620000EAB04CB01901B780291049310AB1D7874 +:10363000331FDBB20392129CFA2B04D83E213B4885 +:10364000FF3101F04DF8049B043BDBB2FA2B04D8A8 +:103650009F213648490001F043F86B1E012B08D921 +:10366000FB222B1F134204D040213048FF3101F0D0 +:1036700037F8119B2D02DF07039B3604002B46D041 +:10368000059B002B04D1A0212848490001F028F80F +:10369000049BFF2B04D142212448FF3101F020F884 +:1036A000F0231B011D40636A0793C0239B021E4049 +:1036B000029B2B4333433E0C00270024C0221F43B0 +:1036C000019B20001F650727049B92021B041340E7 +:1036D0001D43039B9C4202D2154B984201D109B075 +:1036E000F0BD019B5B6C3B40032B0CD8059B039901 +:1036F0001B5D01342B4332008C4200D20022134365 +:10370000019AE4B2136507A8FFF7CAFEE1E7F023C8 +:103710001B011D40636A3F0C0793C0239B021E40A0 +:10372000029B2B4333433E00C7E7C0461DCD0D101F +:103730000200B200F7B50193043BDBB205000F00B5 +:103740001600099CFA2B04D8D5211648490000F030 +:10375000C7FF002E21D007226B6C1340032B1ED80D +:103760008023C021721EDB0292B21A43019B8902A0 +:103770001B040B4013432B65381E0DD0089B27609C +:10378000F922A660E36102230020A361D200A958B8 +:10379000013B0B436660AB50FEBD0348FCE70348AA +:1037A000FAE7C0461DCD0D100400B2000100B200C2 +:1037B000F7B50193043BDBB205000F001600099C2E +:1037C000FA2B04D89C211648890000F089FF002EAE +:1037D00022D007226B6C1340032B1FD88023C021FB +:1037E000721E92031B03920B1A43019B89021B0456 +:1037F0000B4013432B65381E0DD0089BE760F92260 +:103800006661236204230020A361D200A958023B11 +:103810000B432661AB50FEBD0248FCE70248FAE7C5 +:103820001DCD0D100400B2000100B200F0B51F0064 +:10383000043BDBB28FB006000D001400FA2B03D856 +:103840005B495C4800F04CFF002C00D1ABE0072244 +:10385000736C1340032B00D9A7E0631E9B039A0BE4 +:1038600080231B031343C0223F04920217401F43CF +:103870003765281E0ED0149B00205B6A07950393C2 +:10388000042309940C900A930A9B042B02D14A4BFF +:10389000984201D10FB0F0BD099B079C0093330003 +:1038A000C43301931D680F231D40009B9D4200D926 +:1038B0001D00002D17D1009B07940993002B0CD1FC +:1038C000F92202210320D200B3588B43B3500A904F +:1038D0000C9B002B01D00C9B9847009B03A80993DD +:1038E000FFF7DEFDD0E7082D0AD13700D83738685A +:1038F0002100FFF7E9FD3868211DFFF7E5FD05E030 +:10390000012D09D13300D0331B682370009B64194B +:103910005B1B0093019BC5E7022D06D13300D43316 +:103920001B6823701B0A6370F0E7032D0AD1330074 +:10393000D4331B6823701B0A63703300D0331B68B9 +:10394000A370E3E73700D83738682100042DD4D0BE +:10395000052D06D1FFF7B8FD3300D0331B68237166 +:10396000D4E7062D08D1FFF7AFFD3300D4331B6831 +:1039700023711B0A6371C9E7072D0CD1FFF7A4FD62 +:103980003300D4331B6823711B0A63713300D033B7 +:103990001B68A371BAE7FFF797FD3868211DFFF791 +:1039A00093FD0825B2E7054874E7054872E7C0466D +:1039B000CD0200001DCD0D100200B2000400B200C7 +:1039C0000100B20000290CD00722436C1340032BE6 +:1039D00009D8C023013989B21B03194301650020AE +:1039E00070470248FCE70248FAE7C0460400B2000C +:1039F0000100B20000230B604B608B600B61CB6059 +:103A00004B618B61802302681B0613430360704780 +:103A100030B58B6987B0DB680C001500002B0FD028 +:103A200019681A79012303932378C9B20293FF23FB +:103A30000193002304950093FFF7EEFD07B030BD1E +:103A40000048FBE78000B20070B5160000220400B9 +:103A5000080086B00A9D039204951900037800922D +:103A60000293FF23200001931300FFF7D5FD0028E8 +:103A700006D103000095012231002000FFF7D6FE99 +:103A800006B070BD30B50F24012385B08D696C443C +:103A90002370AB6A002B0BD01B680092DBB22200B4 +:103AA000FFF7D2FF002803D12378AA6B13402370BD +:103AB0002078431E9841C0B205B030BDF0B587B044 +:103AC00017000C9A05000C001E00FFF7A1FF00284C +:103AD00012D1A3690122DB6B022B00D013000392E9 +:103AE00022780C99029200220491009301923B00EB +:103AF00031002800FFF790FD07B0F0BD0023F0B5BE +:103B00008F6989B00D00F96A07AC06000292238024 +:103B100099425FD03A6B9A425CD0BB6A002B59D075 +:103B20001B68096812680593029BC9B2039104924D +:103B3000009322000B002900FFF786FF00282FD1F9 +:103B40006B46FF6B1B7C0493402F1ED0802F29D027 +:103B5000022F41D16B46029A1B7D29000092300052 +:103B60002200FFF771FF00281AD10D22029B04A941 +:103B700000935218039B29003000FFF765FF0028CF +:103B80000ED163781F43677002E023781F432770CC +:103B90002200029B0093049B29003000FFF78EFF58 +:103BA00009B0F0BD0D22029B04A900935218039B9B +:103BB00029003000FFF748FF0028F1D18023627808 +:103BC0005B4213430D226370029B04A900935218B9 +:103BD000049BE1E70148E3E70148E1E78000B20028 +:103BE0000300B200F0B51F008B6989B01C6A0500A4 +:103BF000002C47D0002A47D0586A0E9EB04243D3CB +:103C00004869C6B24869002800D10E782168207939 +:103C1000C9B207911099029604910021039161792C +:103C200001911B6807990093130002002800FFF719 +:103C3000F3FC002824D1A1684B1C12D12169002972 +:103C400004D02800FFF7BEFE002819D1109A237D6A +:103C500001920F9A3900009228000E9AFFF76AFD30 +:103C60000EE0109B227B0493FF23039001930090AE +:103C70000300C9B202962800FFF7CEFC0028DDD071 +:103C800009B0F0BD0148FBE70148F9E78000B20048 +:103C90000400B200F0B5CDB006000C1E06920893E9 +:103CA00003D1C449C44800F01BFD00230BAF656B72 +:103CB0003B80BB70089A06993000FFF771FC002D1D +:103CC00003D1BE4A10004DB0F0BD2B682A79D9B29D +:103CD000529B3000049300230393069B02936B795D +:103CE0000193032300933B00FFF796FC021EE9D1EA +:103CF00029693000FFF766FE021EE3D152992B7D41 +:103D00000CAD01910090FF3229003000FFF750FD0B +:103D1000021ED7D1529B5E6AA94B5299886903282B +:103D200012D09A42CED0002E0CD00120013E00F0DD +:103D3000CDFC3200531E9A41A24B52421A40A04B76 +:103D4000D218E9E73200E8E7002ABBD12B78532BE1 +:103D5000B7D16B78462BB4D1AB78442BB1D1EB788B +:103D6000502BAED12B79052BABD96B79012BA8D178 +:103D7000297BA3686D18AD7806956D080540012D67 +:103D800000D8B1E0022D00D1ADE00F251F278E082D +:103D90000936B6004CA880190138FF380068BC46C7 +:103DA000054001356D00079505093D40079F013528 +:103DB0006F4309970327400A3840834D4000405B1A +:103DC000099D45430DA8256485596646280E304057 +:103DD000079E013070436E0F37407C4E7F00BE5B04 +:103DE00040277043606460462E0A06401038284021 +:103DF000AD0400D4383F01304000013646437E43D5 +:103E00000CA8A6640E1D87197D7807902802FD78FE +:103E10002D0605430798865D3543BE783604354345 +:103E200064D40135ED080798656047183D002835D2 +:103E30002E78012528003609B0403E7F6062B540EB +:103E40000698A5610CAD800655D502260898B043AA +:103E5000012850D0082084467F7A8C441F600027B8 +:103E600060461F71079F5E713F5C7F095BD1033E17 +:103E70009E6060461F262D5C35401D6102251D7524 +:103E80000623E56804262B6000232B71256907981B +:103E90002E602B71E5695C362E602B714118487FCE +:103EA0006569022728602B716B710125266A012044 +:103EB0006D42337137607371B560336133750526B8 +:103EC000A063A06A3A310660266B037133710878EB +:103ED0004006400F052800D9F4E6E16A03F056FDDC +:103EE00065787E847878042020604EE78026033D44 +:103EF0003606354397E70698400618D502260898F7 +:103F0000B043012813D00A2084466E18F67A8C44F8 +:103F10001E60002660461E715E712F5C7F09B742ED +:103F200001D1013EA4E7FF271E739F60A1E7102780 +:103F30000698074017D06E18F67B01201E600F0010 +:103F4000002658711E710E37EE5D760907D1013ECD +:103F50009E60ED5D1F2635401D6101258FE7FF2620 +:103F600018739E60F5E701260698304014D00C20A7 +:103F700084468C4460466E18767B1F711E605F71AC +:103F80002E5C760904D1013E9E6060462D5CE1E71F +:103F9000FF261F739E60F8E703251D60043D18711E +:103FA00058719D60186118756AE7E56335600D60AA +:103FB00088E6C046F903000074CD0D100500B2007C +:103FC0000200B200FEFF4DFF64CD0D106CCD0D1050 +:103FD0000123E763336034330B6073E64023E3630C +:103FE0003F3B33600433F7E78023E363423B3360B6 +:103FF0000133F1E7F0B589B002900792002800D1B3 +:104000001EE1002900D11BE14B680593002B00D174 +:1040100016E1002A00D113E10B680693002B00D1B2 +:104020000EE10023C02603930493B602039B059A76 +:104030009B00D458002C4DD023785A1E012A09D950 +:104040000422043B9343DBB2002B03D06E217D4856 +:1040500000F046FB237A032B03D96F21794800F047 +:104060003FFBA369002B03D17021764800F038FB99 +:10407000A3691B68013B032B03D97121714800F030 +:104080002FFB2278501E072800D9D7E003F07EFCD2 +:104090000432D635D6D6D6388021029B09015D1868 +:1040A000237A2968684F18043040394001430420BE +:1040B00029606168014226D0079902980091A169A0 +:1040C000FFF7E8FD00281ED00823039A9340049AC6 +:1040D0001A430492039B01330393039A069B934272 +:1040E000A4D10020049B002B02D0B220000418436E +:1040F00009B0F0BD029B8821D0E7029B9021CDE75B +:10410000029B9821CAE763689B07E3D52169E068B1 +:1041100003F0CCFC002903D08C214A4800F0E0FADF +:1041200023694A4A934202D95A1E134203D08D2171 +:10413000444800F0D5FAFF218C466746E168A06943 +:10414000B9438268036AA96021694942B943E960B9 +:1041500001680320013901406069471EB84100022F +:1041600001432962002A2DD010680021471C08D085 +:104170006746074080201179000609043140074353 +:1041800039432964517990680904314069640021F8 +:10419000471C07D08027117BC0B209043F0631407D +:1041A000384301430020A9641169814205D01F30C2 +:1041B00001390140802000060843E864127D1204A2 +:1041C00032402A65002B2CD019680022481C07D0E9 +:1041D00080201A79C9B212040006324001430A4312 +:1041E0002A665A799968120432406A660022481C8D +:1041F00007D080201A7BC9B2120400063240014366 +:104200000A430021AA661A698A4205D01F31013A81 +:104210000A40802109061143E9661B7D1B043340D7 +:104220002B6702216268FF3111408022237A120637 +:104230001B0433400A4313432B604BE7044851E708 +:10424000034855E774CD0D10FFFFFCFFFFFF000092 +:104250000400B200104B1B683C331B78834219D911 +:10426000042910D94B1EFF3B132B13D81F231940D1 +:104270000A4B8000C018C02304229B00C150403369 +:10428000C250002070470723D0301940034B8000F4 +:10429000C150F6E70248F5E7E0AD0208000026400D +:1042A00001004A0010B50F4B04001B683C331B781B +:1042B000834204D8A3210C48490000F011FA0B4BAB +:1042C000A400E418D0239B00E058072318400428DA +:1042D00007D1C0239B00E0581F23034080204000EB +:1042E000184310BDE0AD0208C3CD0D1000002640FC +:1042F000F7B5041E03D14649464800F0F1F9B02352 +:10430000454DDB00EB58002B00DA7FE0434B226881 +:104310009A4203D942493F4800F0E2F9E279236822 +:10432000511E8A419B0312069B0B1343B022D200FD +:10433000AB50A3883B4FBB4204D994213548890038 +:1043400000F0CEF92389384EB34203D937493148BA +:1043500000F0C6F92389A28835491B04D204D20C87 +:104360000B401343334AAB50A37A01910F2B04D96E +:1043700096212848890000F0B3F9E37A0F2B03D97E +:104380002D49244800F0ACF9A389BB4203D92B493D +:10439000204800F0A5F9FF22E37A29491B011340C8 +:1043A000A28912020A400F211343A27A0A40C021B7 +:1043B0001343A27B890512070A401343B122D2009E +:1043C000AB50A379042B03D91E49124800F088F999 +:1043D000238AB34204D999210E48890000F080F95C +:1043E000E020A379184AC0001B02A95803401748CF +:1043F00001400B43AB50238A01981B04A95803408A +:104400001348014000200B43AB50FEBD1148FCE7B0 +:104410003F020000C3CD0D1000002640FFFF030047 +:1044200049020000FF1F0000FF01000051020000D0 +:104430000000FF0184050000590200005A0200003C +:1044400000FF1F00630200008C050000FFF8FFFF63 +:10445000FFFF00FE03004A00F7B58022B2260700E6 +:104460000500324B324C1206E158F6000A43E25086 +:1044700000930422A359134201D1002D35D1B1205C +:104480008023C00022582B499B050A401343235028 +:104490000191002F01D0002D06D0B0228023D20040 +:1044A000A1581B060B43A3500126B223DB00E3589F +:1044B000334224D1002D1DD1002F24D0B121C900B9 +:1044C0006258019B1C481A4080239B051343B0226D +:1044D0006350D200A3585B005B08A350009B009A76 +:1044E000E3585B005B08A350FEBD012000F0EEF82E +:1044F000013DBEE7300000F0E9F8013DD5E7002FAF +:1045000001D0002DDAD0B122C0230020D200A15862 +:104510009B050B43A3508742E6D0681E8541684245 +:10452000064D054B2840C018DEE7C0468C0500004C +:1045300000002640FFFFFFCF02004A00FEFFB5FF4C +:1045400070B51A4E050033680C001A002832127834 +:10455000012A15D182080721100088430FD10320BA +:104560002840C00084401B68920020339B18220022 +:10457000FF24844019684A4014404C401C6070BDC0 +:104580005B8FDBB28B4203D17F21094800F0A8F892 +:104590000720802205408020336892011B680006B6 +:1045A000A4180543A400E550E9E7C046E0AD0208C1 +:1045B0000CCE0D100A4B70B59B680A4E10300D00E2 +:1045C0008400B34209D1002904D1A0210648490042 +:1045D00000F086F83059355170BD044B1859FBE78F +:1045E00000ED00E000A002080CCE0D1000000D1040 +:1045F000F8B506000D00002841D04368032B03D90D +:104600003B21204800F06CF80023F05E002828DBF6 +:10461000B178FFF795FF0024FF220327944600237B +:10462000F05E716883B21F40FF006646BA408901A0 +:104630003140D243B940002815DB134E83089B005C +:104640009B19C026B6009F593A40114399510F4B10 +:104650009A680F4B9A4202D12900FFF7ABFF200066 +:10466000F8BD0C4CD8E70F263340083B074E9B089B +:104670009B009B19DE6932401143D961E7E7054C85 +:10468000EDE7C0460CCE0D1000E100E000ED00E0CB +:1046900000A002080100560070B5802504002D021C +:1046A000AC4205D8064B18686043FDF751FB70BD5E +:1046B000044B1868FDF74CFB034BE418F0E7C046C9 +:1046C00030A1020828A102080080FFFF10B5034BAB +:1046D0001B785843FDF73CFB10BDC04634A10208CF +:1046E00070B50D00044C01001822200004F046FBB8 +:1046F000A56101BEFEE7C046B0A702088022054BB7 +:1047000012069A64986C044BC043C0171840034BC0 +:10471000C018704700002740FDFFB9FF03004600A6 +:104720008022054B120198585B68DBB2002B02D047 +:104730008023DB021843704700002640FEE700009C +:1047400002680A4B10B5DA6142681A6282685A62DE +:10475000C2689A620269DA6242691A6382695A63BC +:10476000C2699A63FFF7EAFF10BDC046B0A702080E +:10477000F0B51922002800D14B322A4B8A429241CF +:104780001B6852421C00A83424881D686719032541 +:104790003E68AE4316433E601E68A4192768224E49 +:1047A000374027601C00AA3424881E68A7193E6879 +:1047B000AE4332433A601A681B4EA2181468264072 +:1047C000166000280ED00020102904D9213088421C +:1047D0008041404201300F225B68196891430843D1 +:1047E0001860F0BD1A00553212788A42F3D21A00CE +:1047F0005632127801208A42EDD21A0057321278CE +:1048000000188A42E7D21A005832127828008A42E9 +:10481000E1D21A0059321078884280414042043077 +:10482000D9E7C046E0AD0208FFFCFFFFB0235B05FF +:104830005A782120002A01D05878C0B27047B0239E +:104840005B059A89002A02D0988980B2704780203F +:104850004000FBE770B5FFF7F2FF8023184A5B00CA +:10486000984215D111680F240B0002229833186862 +:104870000B6818180368A3431343036008009C30B7 +:104880000B6801685B181968A1430A431A6070BD80 +:104890001268B0201100C025983114680968094BCE +:1048A0004005C35861180C68AD002B4323430B60CF +:1048B00011009C3113680A689B18034A8258E5E787 +:1048C000E0AD0208481800004418000070B5FFF77A +:1048D000B6FF8023184A5B00984215D111680F2457 +:1048E0000B000322983318680B6818180368A34359 +:1048F0001343036008009C300B6801685B1819685B +:10490000A1430A431A6070BD1268B0241100C1208F +:10491000C026983115680968640540012358691854 +:104920000D68B60033432B430B6011009C311368B4 +:104930000A689B182258E5E7E0AD020810B5FFF7BA +:104940007EFF8023114A5B0098420DD11368104905 +:104950001A00983212681B689B181A681140C0220E +:10496000D2010A431A6010BDB0211268094B4905F3 +:10497000CB581100C0209831096812688000521885 +:10498000116803430B431360EDE7C046E0AD020836 +:10499000FF8FFFFF1818000070B5FFF750FF80234E +:1049A000144A5B0098420DD1136813491A009832DB +:1049B00012681B689B181A6811408022D2010A43B2 +:1049C0001A6070BD1268B0241100C02698311568B5 +:1049D0000A4809686405235869180D68B60033430E +:1049E0002B430B6011009C3113680A689B182258F6 +:1049F000E6E7C046E0AD0208FF8FFFFF4C1800005D +:104A000010B50020FDF782FF0400FFF70FFF012221 +:104A10001300222801D8634263411340180010BDDF +:104A200010B5074C236831331B78002B04D1E621E5 +:104A300004484900FFF754FE2368186A10BDC046B9 +:104A4000E0AD02081CCB0D1030B5040085B00D00A0 +:104A5000042803D927492848FFF742FE6B1E012B83 +:104A600007D9FB222B1F134203D024492248FFF70A +:104A700037FE234BA400E458042D01D0012D1AD198 +:104A800000200FE0A3682B420BD1E36829001A68CD +:104A90005B6802920193039302A823689847194B1D +:104AA0001C606469002C04D0174B9842EAD1012D98 +:104AB000E8D105B030BD022D06D1124B1B68181E7F +:104AC000F7D01C6903E01C006369002BFBD10020B8 +:104AD000002CEED0A3682B4209D1E36829001A68A4 +:104AE0005B6802920193039302A8236898472469A4 +:104AF000EEE7C046E509000055CE0D10E6090000BE +:104B000048A8020844A80208FF004200F8B50400C3 +:104B1000012803D92A492B48FFF7E2FDFFF786FE5B +:104B200085B2FFF78CFE070000208026FDF7EEFE21 +:104B30007600002811D1B74211D1222D0FD880253F +:104B4000214B6D041B6824065968204B2C40CA5821 +:104B50001F4D2A401443CC50F8BDB74229D0FFF76F +:104B60005FFF0500B7420FD1621E9441802362426D +:104B70005B001A40174BD21801212800FDF700FCFA +:104B8000002808D01448E7E7621E944102236242DD +:104B90001A40124BEFE70C4B1B68B4331B68EB1841 +:104BA0001A68002AFCDBEB6800201B0EA02BE9D161 +:104BB000D2E7222DE6D9FFF733FF0500D4E7C04640 +:104BC0007F0A000055CE0D10E0AD020818F000007D +:104BD000FFFFFFFE01000030040042000100000C56 +:104BE000F7B50700012803D929492A48FFF778FDBE +:104BF000FFF725FE80235B0098421CD0FDF7B1F83B +:104C0000B0230190244D254A5B05002F1AD024497A +:104C100003205958A950234A23499C5C1F226B58F2 +:104C2000E4B293431A000B2313436B50FFF74EFD7E +:104C3000FFF7B2FE12E0FFF7E3FE0028DED11B4EC5 +:104C40003000FEBDAF50E8220120D2009C5CFFF78F +:104C50005DFFE4B2061E0DD1FFF7FCFD1F21124AD5 +:104C60000C40AB588B431C43AC50002F06D1FFF7D0 +:104C700065FE3E000198FDF778F8E1E70720FFF7B1 +:104C800025FDFFF723FE0020FFF740FF0600F1E7B8 +:104C90005308000055CE0D1000002640307F000064 +:104CA00010180000410700001CFF00000300420034 +:104CB00010B5041E03D111491148FFF711FDF2226E +:104CC000104BD2011B68DB689A582260F022D20197 +:104CD0009A5862600C4A9A58A2600C4A9A58E2604C +:104CE0000B4A9A5822610B4A9A5862610A4A9A58AA +:104CF000A2610A4A9B58E36110BDC046D40A000075 +:104D000055CE0D10E0AD02080478000008780000D0 +:104D10000C7800001078000014780000187800006B +:104D200010B5041E03D110491048FFF7D9FCF0223A +:104D30000F4B61681B68D201DB689950A1680D4A6E +:104D40009950E1680C4A995021690C4A995061695F +:104D50000B4A9950A1690B4A9950E1690A4A995046 +:104D60002168E832995010BDFC0A000055CE0D10A4 +:104D7000E0AD020804780000087800000C7800001C +:104D8000107800001478000018780000F7B50700CC +:104D9000012803D940494148FFF7A2FC404D6B6808 +:104DA000002B4AD1FCF7DDFF6B680190002B56D138 +:104DB0003C4E33681A0043321278002A07D09B68B1 +:104DC000E0331B68DB0602D53748FFF771FFFFF7BA +:104DD00036FD80235B00984246D1380007F0BCFBCB +:104DE000002433681A0043321278002A17D00028B2 +:104DF00015D09B68E0331B68DB0610D5FFF716FD66 +:104E0000294B212808D032681300B03319880723B2 +:104E10004B43126A9B18DB681800FFF781FF01986B +:104E2000FCF7A3FF002C0ED16B68002B03D00821E8 +:104E30000120FFF709FE2000FEBD01210800FFF759 +:104E400003FE041EAED06B68002B03D002210120AC +:104E5000FFF7FAFD154B9C42EDD0154CEBE7042112 +:104E60000120FFF7F1FDA3E7FFF7DAFD3368B43364 +:104E70001B68C0180368002B0BDB04230D4A116963 +:104E80000B431361012F02D030BF0020A8E720BFE1 +:104E9000FBE70020054CA4E7AE02000055CE0D1044 +:104EA00048A80208E0AD020824A802080500420054 +:104EB000FF00420000ED00E0C022802006495200C1 +:104EC0008B58C0059B009B0803438B508023885858 +:104ED0001B0603438B507047000026407047FFF7C6 +:104EE000FDFF72B6124C134DAC4209DA21686268BC +:104EF000A368043B02DBC858D050FAE70C34F3E750 +:104F00000D4B0E4CA34208DA19685A680020043A87 +:104F100001DB8850FBE70833F4E7094809490860DA +:104F2000BFF34F8F00F0E4F800F0F8FAFEE700005E +:104F3000C0DE0D10D8DE0D10D8DE0D10E8DE0D102D +:104F400000A0020808ED00E0FEE7FEE700B504203F +:104F50007146084202D0EFF3098001E0EFF30880C8 +:104F60000430FFF7EDFBFEE770470000E02370B56B +:104F7000504C9B00E2580F23D021072013409A0089 +:104F8000121989005158014066D0042958D04A4866 +:104F9000002B66D1B223B1220321DB00D200E558F9 +:104FA000A358A6581B0F360F0B400E4204D0A25830 +:104FB000120F0A40012A01D1EA0701D4032B11D1B3 +:104FC000B0233E4ADB00E558A158E658C904C90C95 +:104FD00002F0E6FCAD03AD0B6843F101C90F0131EE +:104FE00002F0DEFCE0239B00E3589B069B0FD840B9 +:104FF000334B1860334B1C691969240A090E0131BF +:1050000002F0CEFC304BE1B21860013102F0C8FC76 +:105010002E4B040018602E4B2E4918602E4BC018E2 +:1050200002F0BEFCFA212D4B890018702C4BE018C1 +:1050300002F0B6FC2B4B18602B4BC003186070BD00 +:10504000C021890052581F210A40112A01D0132A79 +:1050500004D1802000029BE7244899E7FA20C00190 +:1050600096E7012BBED1C823C0220321DB00D2006A +:10507000E558A358A6581B0F360F0B400E4204D01C +:10508000A258120F0A40012A01D1EA0701D4032BCA +:10509000A8D1C022D200A358A158A5587F221F260C +:1050A0001340090A3140584302F07AFC290C314080 +:1050B00096E7C0460000264000366E0184050000D9 +:1050C00020A102080000214024A102081CA102081E +:1050D0002CA1020840420F003F420F0034A10208F9 +:1050E000E703000030A1020828A1020800127A009C +:1050F00010B51B48FCF73CFEB022E0213020194CD3 +:10510000D200A35889005B005B08A3506358834317 +:10511000635080235B04A350134B144AE250A02237 +:1051200004339201E250FF22114BE250FFF7C4FE1C +:10513000C02201215200A3588B43A350FFF714FF54 +:10514000FFF714FFB0235B055A78002A02D05B7882 +:10515000212B03D10022074BDA605A6010BDC046F4 +:1051600064CA0D1000002640840500000100020002 +:105170008C050000E0002340024BD86F0323184049 +:105180007047C0460400214010B5FCF7EAFD07490E +:10519000074ACB6F1A40074B1343CB6710230649CE +:1051A0000A681A42FCD0FCF7E0FD10BD0400214063 +:1051B000FCFF00000100FA058800214070B583055E +:1051C0000600002B04D0E8211048FF31FFF788FAD1 +:1051D0000F4CFCF7C6FDE36F0500DB439B0701D1D5 +:1051E000FFF7D2FFB0230B4A9B00D650E36F0A4A69 +:1051F0000A491A400A4B1343E36710230A681A420C +:10520000FCD02800FCF7B1FD70BDC0469DCE0D104E +:105210000400214000002140FCFF000088002140E4 +:105220000300FA0510B562B600F09EFAFFF744FEDF +:10523000C02201210A48520083580A4C8B438350F4 +:10524000094A0A48FCF71EFF094A0A492000FDF7EF +:1052500093FF802322681B061343236010BDC046C2 +:105260000000264000006640F8CE0D10800232405B +:10527000E4AD020804D20D1010B50020FDF756FA77 +:1052800010BD0000802310B50C4C032023602300C8 +:10529000210008336360FDF779FA0948FDF7A4F8A7 +:1052A000084B1B6851331B78002B02D00648FDF7D2 +:1052B00013F920001830FCF70BFE10BD00C00208E7 +:1052C0003CC00208E0AD0208B8CF0D1010B504488C +:1052D000044A0021121A02F0BBFEFBF705F910BDCB +:1052E0000000020800A002080022E82313B5019282 +:1052F000019C9B0523430193019B090419430191E0 +:10530000019B000218430123019001990B43019373 +:105310000199124BD96012491868002806DB8A42AD +:1053200002D10120404216BD0132F5E78A42F8D091 +:1053300001229A6000221869002803DA8A42F0D01C +:105340000132F8E78A42ECD0DB6800200193A02309 +:10535000019A1B069A42E6D00198E4E70000234038 +:10536000983A000010B5084B0024DB78013B012B74 +:1053700007D801210800FFF7B7FF04006420FFF7FA +:105380008BF9200010BDC0469CAF0208A02270B56A +:10539000154DD200AA580400032A09D0FFF7E2FFF6 +:1053A000021E05D0114B12491B68D86802F0AAFDF5 +:1053B000104B1B68002B0CDA0F4A104B1048DA64B4 +:1053C0000A4B1B68D96802F0F7FD72B607F0CCF8FB +:1053D00062B6AC239B00EC500A4B9C60236883F3BD +:1053E000088863689847FEE70000214084A102080E +:1053F00074CF0D10000126402143341200002340D9 +:10540000A4CF0D1000ED00E070B50400FFF7AAFF77 +:10541000021E05D01A4B1B491B68D86802F072FDAA +:10542000194B1B68002B23DA184A194B1948DA6408 +:10543000134B1B68D96802F0BFFD72B6B023164A41 +:10544000164D9B001648EA50C36F164A16491A407B +:10545000164B1343C36710230A681A42FCD001207D +:10546000FFF71AF9B0239B00EC5007F07DF862B605 +:105470002000FFF7A3FE0020FFF788FCFBE7C046F3 +:1054800084A1020874CF0D1000012640214334127C +:1054900000002340A4CF0D10004000160000214062 +:1054A00004002140FCFF0000880021400300FA05B1 +:1054B00010B5002820D1114C11482368D96802F09A +:1054C0007BFDFFF74FFF021E04D023680D49D8680B +:1054D00002F018FD0C4B1B68002B08DA0B4A0C4B32 +:1054E0000C48DA642368D96802F066FD72B60A488F +:1054F000FFF764FE07F048F810BDC04684A102081B +:105500002CCF0D1074CF0D10000126402143341212 +:1055100000002340A4CF0D1000400016F0B589B064 +:10552000FFF7B0FEFFF77EFE6C4C6D4A6D4B6E4D83 +:105530001A6023682800D96802F03EFD23686B4E8C +:10554000D968300002F038FD092320680193002358 +:10555000009301226649C06802F0D4FC2368300041 +:10556000D96802F029FD23682800D96802F024FDDB +:1055700023686048D96802F01FFD802002AA03A9B1 +:105580004000FCF7EBFA051E08D15B4E03005B4AB6 +:1055900031000398FBF766F9051E1AD02A0023682C +:1055A0005749D86802F0AEFC68426841FFF780FFB7 +:1055B00023685448D96805AD02F0FEFC280001F0CC +:1055C0004FFD2368D968002818D04F4802F0F4FC3A +:1055D000FEE7F021F2684D4B090652189A603269D5 +:1055E000DA6072695218DA61B2691A62FAF748FF32 +:1055F000051E4BD0236802004549D2E7454802F01A +:10560000DBFC04A9287900F02DFD43425841FFF747 +:105610004FFF82220120404992008E588B58F60598 +:10562000DB0B0340F60D9B19002BF6D1049BAD68F4 +:10563000ED18059B1B89ED18FFF748FE43425841C2 +:10564000FFF736FF2C4B1878042819D802F09EF982 +:1056500007070303100002210020FDF725F92800A9 +:10566000FFF794FE23682D48D96802F0A5FCFEE7F9 +:1056700006210E20FDF718F92800FFF7C5FEF1E717 +:1056800023682148D96802F097FCFEE70223F3560D +:10569000002B89D0224A013B9B00224E9B5833604D +:1056A00000F0CEFB071E06D02368050002001E494D +:1056B000D86802F027FC1D4A31681D4800F032FC12 +:1056C000002F00D070E723681A48D96802F074FCF4 +:1056D00001211748FDF74EFF66E7C04684A1020886 +:1056E000E8D10D101CAE0208F8CF0D1002D00D103D +:1056F00043D00D1078D00D1048AE02089CAF0208C0 +:1057000094D00D104BD10D106FD10D1040A1020897 +:10571000BFD00D1095D10D1000006640BCD10D100A +:1057200038A102085CA80208F8D00D1020AE0208CB +:10573000000042402ED10D1010B504002100034896 +:10574000FDF700FD0028F9D010BDC04600006640FE +:10575000C221044A89005358DB05FCD0D0239B00AA +:10576000D05870470000664010B500F009F800F00E +:1057700035F800F043F800F005F900F02DF810BD01 +:1057800080218022124BC9001B68D205986810B591 +:1057900042501A00743212880E4C121810680440DD +:1057A000D4208001204310601C001A007234703233 +:1057B0002478127898687333A2401C780323A3409E +:1057C00013438022120613434350435810BDC04672 +:1057D000E0AD0208FF00FFFF70470000054B1B68AB +:1057E0001A003F321278052A03D900219A68024B29 +:1057F000D1507047E0AD0208140C000010B51D4CEC +:105800001D4A00212000FCF73DFC20001B4C1C4AD7 +:105810000121FCF737FC1B4A02212000FCF732FC77 +:10582000194A03212000FCF72DFC184A042120000E +:10583000FCF728FC164A05212000FCF723FC154A3A +:1058400006212000FCF71EFC2000134C134A072100 +:10585000FCF718FC124A04212000FCF713FC114A43 +:1058600006212000FCF70EFC0F4A07212000FCF760 +:1058700009FC10BD000032407CD30D108005324081 +:10588000B0D30D1048D30D10E0D20D10ACD20D10D6 +:1058900078D20D1044D20D100003324014D30D10F5 +:1058A000E4D30D1018D40D104CD40D1010B50A4BC4 +:1058B0001B683E331B7883420BD9E0220F24074B31 +:1058C0008000C01892008358A343194381500020E0 +:1058D00010BD0348FCE7C046E0AD020800002640CA +:1058E00001004A0010B50A4B1B683E331B78834207 +:1058F0000CD9E0223024074B8000C0189200835856 +:105900000901A34319438150002010BD0248FCE760 +:10591000E0AD02080000264001004A00054B0649A0 +:105920001B681A000832D26F1B689B181A680A405D +:105930001A607047E0AD0208FF00FFFF074B1B68CD +:10594000190008311A68CB6F8021D21813684904F6 +:105950001B021B0A0B4313607047C046E0AD0208F0 +:10596000054B06491B681A00883212681B689B1891 +:105970001A680A401A607047E0AD0208FF00FFFF96 +:10598000FEE70000F8B596210020FEF7F1FEFEF7D5 +:10599000C7FE002801D1FEF7B1FE0120FFF720F974 +:1059A000644B65495A6C0A40E82189010A435A64EC +:1059B0005A6C120AD2B23A2A04D15A6C5F48024099 +:1059C0001143596400210800FFF78CFFFFF7C8FF5F +:1059D000FFF7B4FFFFF7A2FF594D5A4C2B685A4FFF +:1059E0003D331B78002B0ED0C0268023F600A25931 +:1059F0009B053A401343A3510120FEF767FEA359CC +:105A00005B005B08A35100210120FEF723FC2B68FB +:105A10003E331B78002B03D14C494D48FEF760FE06 +:105A2000E0239B00E6580F231E400AD13000FEF70A +:105A300039FC1223FF33984203D101213000FFF7D4 +:105A400035FFB122D200A35800213B408027BF057B +:105A50001F43A750083AA35808005B005B08A350F7 +:105A60003C4AA3585B005B08A350FEF7F3FB002100 +:105A70000800FFF71BFFFFF773FFFFF75FFFFFF75C +:105A80004DFF00210120FEF7E5FB01210020FFF77B +:105A90000DFF00210800FEF7DDFB00210220FEF7CC +:105AA000D9FB00210320FEF7D5FB00210420FEF7DF +:105AB000D1FB2948FEF71CFC002802D00420FFF788 +:105AC0005FFF2648FEF7C8FC002802D00420FFF73D +:105AD00057FF00210800FFF7E9FE00210800FFF74B +:105AE00001FF00210120FEF7B5FB00210220FFF796 +:105AF000DDFE01210220FFF7F5FE2B683E331B7807 +:105B0000022B06D9E22280239200A1581B060B43E8 +:105B1000A3508022124B1206E15800200A430121B3 +:105B2000E250E2580A43E2506331FEF721FEFFF7EC +:105B30001DFAF8BD00002740FF00FFFFFFC5FFDF93 +:105B4000E0AD020800002640FFFFFFCF6E06000018 +:105B500080D40D108C050000CCD40D10400D030036 +:105B60000C050000437802781B021A438378C07842 +:105B70001B0413430006184370470000F7B5A54BFC +:105B8000A54A9A58D10700D47BE00F22A34FBB68E7 +:105B90003D680093A24BDC6F0193009B1440073AD1 +:105BA000141B9C4200D91C009E4E002C18D1009B57 +:105BB0003D60BB60002B0CD1F92201209549D20039 +:105BC0008B5883438B50B861FB69002B01D0FB6974 +:105BD0009847F8230122DB008E49CA50CB58F7BD05 +:105BE000082C16D12800FFF7BDFF3060281DFFF7F5 +:105BF000B9FF3060009B2D191B1B0093019BDC6FCC +:105C00000F231C40073B1C1B009B9C42CDD91C0052 +:105C1000CBE7012C03D12A78834B1A60EAE7022CE8 +:105C200006D12A786B781B021343804A1360E1E7A0 +:105C3000032C07D16B782A781B0213437B4A13602D +:105C4000AA78E9E72800FFF78DFF042CD1D0306057 +:105C5000052C01D12A79DFE7062C02D12A796B794C +:105C6000E1E7072C07D16B792A791B0213436F4AAE +:105C70001360AA79D0E7281DFFF774FF082430606D +:105C8000B8E7910700D4A4E00F22644D68496C691D +:105C9000EB6808688C460240A24200D922006549A0 +:105CA000654E002A16D1EB606C61002C0DD1F922F3 +:105CB00002215848D20083588B4383500320A861A7 +:105CC0002B6A002B01D02B6A9847F8236C61DB000C +:105CD000022281E7082A19D10868070A18705F7044 +:105CE000070C000E9F70D8700868070A18715F7162 +:105CF000070C000E9F71D8719B18A41A62460F20E2 +:105D000012680240A242CCD92200CAE7012A03D17C +:105D10004A4800681870EFE7022A04D1306818700A +:105D2000000A5870E8E7032A07D130681870000AA3 +:105D30005870424800689870DEE7042A08D1086865 +:105D4000070A18705F70070C000E9F70D870D3E7B9 +:105D5000052A0BD10868070A18705F70070C000E3F +:105D6000D87036489F7000681871C5E7062A0CD1B4 +:105D70000868070A18705F70070C000E9F70D870D3 +:105D800030681871000A5871B6E7072A0FD1086801 +:105D9000070A18705F70070C000E9F70D87030688B +:105DA0001871000A5871254800689871A4E70A68BC +:105DB000100A1A705870100C120E9870DA700A6877 +:105DC000100A1A715871100C120EDA7198710822AB +:105DD00092E704210A4207D00520104A9061F82278 +:105DE000D20099509B58FAE608210A4202D00B4A89 +:105DF0000620F3E71020024206D00721074A9161EE +:105E0000F822D2009850EDE72020024200D1E6E6C9 +:105E1000024AF4E700004240CC07000020AE02082E +:105E200008004240980042409000424094004240A6 +:105E3000C4004240D8004240D4004240D00042401A +:105E400073B5684602001E4B12CB12C262B61D49E2 +:105E5000FEF7CEFB021E05D01B4B1C491B68D86801 +:105E600002F050F8FA221A4D92002B0019491A48F4 +:105E7000FDF732FB041E1ED1020001211648FDF77A +:105E80008FFB29001448FDF7B5FD0F4E134833680A +:105E9000D96802F091F82A0011490F48FEF7AAF8D4 +:105EA000041E08D133680F48D96802F085F8210034 +:105EB0000948FDF75FFB80220B4B20001A6076BD7E +:105EC00070D70D107D5B0D1084A10208EFD70D1067 +:105ED00020AE0208F4D10D10000042402FD80D1062 +:105EE00060D70D104CD80D1000E100E00C4B1B6882 +:105EF0009B691B68032B08D10023CB7083B21B0A5C +:105F000088704B70000C08707047042BFCD183B272 +:105F1000C8701B0A000C48708B70000AF3E7C0467B +:105F20005CA80208F0B50F2787B002ABFF1800236A +:105F300016003B708B690500DA6BDB6A03921B6805 +:105F40003A00DBB200960C00FDF77EFD021E06D083 +:105F5000104B11491B68D86801F0D4FF13E06B4661 +:105F60003A781B7B1A409A420DD03200210028005B +:105F7000FDF7C4FD021E08D1320021002800FDF704 +:105F800081FD0028F8D107B0F0BD024B03491B6822 +:105F9000E1E7C04684A1020878D70D10B4D70D10F0 +:105FA000F0B589B004000E00049217221A4D059333 +:105FB000296802A88B6912189F6ADB6A20001B6897 +:105FC0000096DBB2FDF740FD002823D1320029689E +:105FD0002000FDF71DFD00281CD1059B01900093BA +:105FE0000296049B0E9A29682000FDF7FBFD00280D +:105FF00010D1320029682000FDF744FD0028F8D1B7 +:1060000017223B6802A900965218DBB229682000CB +:10601000FDF71AFD09B0F0BD5CA8020870B54B6829 +:10602000056801229D4216D38A689B1800229D4272 +:1060300011D20C694B699C420FD20C236343CE688A +:106040000134F3180E685A701E705A8042685D6001 +:106050009A6001220C61100070BD0C235B428B61C1 +:10606000F9E7000010B502006F2809D0074B084976 +:1060700018686F23C06801F045FF1620404210BD2C +:1060800080235B050B600020F9E7C04684A102086D +:10609000A9D80D1010B50F4B02001879904215D0F9 +:1060A000187E904214D018002C3004780120404211 +:1060B00094420AD1033014224243101D181808607C +:1060C00000209B181A6901321A6110BD0020F2E706 +:1060D0000120F0E740A1020810B5021E0BD0011FFD +:1060E0000C4B0868984207D00B49137808680B4995 +:1060F000C06801F007FF10BD0B69002B07D1064BEC +:1061000012781B680649D86801F0FCFEF3E7013BF2 +:106110000B61F0E7EFBE0DD084A1020865D80D1029 +:1061200085D80D1070B515001E00446805480C197F +:106130000121FDF71FFA32002900200000F00AF9C2 +:1061400070BDC04600004240F0B51500F022144F6B +:1061500087B003933B684468DB6812060C199B18F0 +:10616000A34216D800210F48FDF704FA3B6805AE9C +:10617000D8688023201A5B05C0183100FFF7B6FEEF +:106180000096039B2A0008490648FFF709FF07B05D +:10619000F0BD039A2900200000F072F9F7E7C0462D +:1061A0005CA802080000424020AE0208F0B51500CD +:1061B000F022254F44683B681206DB680C199B18D7 +:1061C000C5B0A3423AD800212048FDF7D3F9802278 +:1061D0000021520004A801F03BFF3B680020D96871 +:1061E0008023641A5B052E0AE418002E14D00028C0 +:1061F00001D045B0F0BD03AF20003900FFF776FEB7 +:10620000802300975B0004AA114910480134FFF76E +:10621000C7FEFF34013EE8E7EDB2002DE9D00028CB +:10622000E7D103AE31002000FFF760FE00962B009F +:1062300004AA07490548FFF7B3FEDAE72900200062 +:1062400000F028F9D5E7C0465CA8020800004240EB +:1062500020AE020810B5007800F08CF910BD0130B6 +:1062600070470000431E022B15D8022808D00328CF +:106270000BD00A4B98680860DB68002013607047F9 +:10628000064BD86908601B6AF7E7F0231B030B6015 +:1062900080235B01F1E701204042F0E740A10208C2 +:1062A00030B589B00C00150002A903AA0190FFF7D0 +:1062B000D9FF002811D1236805900693084B079059 +:1062C00001AA18680749049500F00EF807980028FD +:1062D00001D1059B236009B030BD01204042FAE79F +:1062E0001CAE02081D600D10F0B5002426004368A6 +:1062F0008BB002911B6906A905A8039298470194E7 +:10630000069BB34201D80BB0F0BD059BF700DF1927 +:106310007B68019D0893019B3A68EB1A9A4202D868 +:1063200001360195ECE707940995039907A8029BAC +:1063300098470028E7D0089B0135E418EBE70000F8 +:10634000024B036001230B607047C046D4D80D1088 +:10635000002070470B00802110B549054118180036 +:1063600001F06DFE002010BDF0B5264CF023A544D1 +:106370000024039020001B06CB1801935B0A5B02EC +:1063800004AF0292FD1A029AA24201D900280CD051 +:106390001D4B984234D01D4B984231D0431E98413A +:1063A000400085239B009D44F0BD802201009200A7 +:1063B0009E18019A9A421DD8029AA2421AD9039AAB +:1063C000125DEA54002906D180214905591809783F +:1063D000511A4A1E914101340133B342E9D10029D7 +:1063E00004D00B4B3900F018FBF7D2FD094BED1828 +:1063F0003300C8E7802252059A181278EA54EBE776 +:106400000120CEE7ECFDFFFF020052000600520023 +:1064100000FEFF0F00FEFFFF00207047F8B5124C92 +:106420000023A1421CD91E00104C8D18AC425E41C5 +:106430000F4CA14215D91F000E4CAC425F413C00ED +:106440000D4FB94202D90D4FAF425B413443234354 +:106450000124002B02D0FFF787FF04002000F8BDC5 +:106460001E0000242300F1E7FFFFFF0F00001010C3 +:10647000FFFFFF1300800014FF070016000A00163C +:106480000B00802110B5490541181800FFF7C6FF21 +:1064900010BD00008023F0B55B05C0184518334CD3 +:1064A000EB05A544C605DB0DF60D01936B0A0393BE +:1064B00033005A1E9341400AC0186B0A1B1A0093FE +:1064C00043021F0000240293009B002B3ED1002EAC +:1064D0001AD0274A029B944663441C0019003200DC +:1064E00004A801F0ACFD2000FBF714FD4342584125 +:1064F000FEF7DEFF2100320004A8FFF78FFF040043 +:1065000060426041FEF7D4FF019B002B19D080242C +:10651000A400E41A2200290004A801F090FD039BC6 +:106520005802FBF7F7FC43425841FEF7C1FF220037 +:10653000290004A8FFF772FF040060426041FEF7E3 +:10654000B7FF200085239B009D44F0BD3800FBF77A +:10655000E1FC040060426041FEF7AAFF80239B003B +:10656000FF18009B013B0093AEE7C046ECFDFFFF28 +:1065700000FEFFFF0420704710B5102209490400F7 +:1065800001F04EFD0123002808D0230010332268BB +:10659000013205D104349C42F9D10323180010BD07 +:1065A0000223FBE7F4D80D1030B5040091B00120B0 +:1065B0000D00FEF77DFFA168102310396A46200008 +:1065C000FFF7B0FD002802D0012011B030BD6846B1 +:1065D000FFF7D2FF28702378032B0CD10120FEF7A0 +:1065E00067FFA1680123AA1C18392000FFF79AFD54 +:1065F000431E9841E9E70120FEF75AFF0120FEF70C +:1066000057FFA1686A1C203901232000FFF78AFD8B +:106610000028E3D0D8E737B50D00C0B201A9FFF7D5 +:1066200039FD0124002807D129000198FFF7BCFF9C +:1066300004000198FFF750FD20003EBDF7B5012092 +:106640006946FFF7E8FF002801D0FF20FEBD01AC3E +:1066500021000220FFF7DFFF0028F6D12078A6787E +:10666000234C6B46220019789D785F78123223788C +:10667000002B01D08B422FD16378002B01D08342B5 +:106680002AD1A378002B01D0AB4225D1E378002B8F +:1066900001D0B34220D12379002B1BD1154B164AD0 +:1066A0001B68D8686379022B06D0144A032B03D0E9 +:1066B000134A042B00D0134A134901F023FC022291 +:1066C00000206379023BDBB29A424041FEF7F0FEC4 +:1066D0006079BBE7BB42E1D006349442C7D1054B99 +:1066E0000A481B68D96801F067FC0120AEE7C04684 +:1066F00004D90D1084A102081BD90D1016D90D1054 +:1067000032D90D1020D90D1039D90D104FD90D10D7 +:10671000F0B597B01CAB1B7803900493137814006A +:10672000302B16D19378022B13D106AD40220021D5 +:10673000280001F08DFCE278A1184B79901D0979B1 +:10674000C0180290022904D1D1186078043188421F +:106750002AD0102017B0F0BD059A0F1A5618B4466B +:10676000A444664636790822B44604AEB61862469A +:106770002037F25501318842EED100220299C91A20 +:1067800064189A420AD16B46188A402300950193F7 +:10679000039A203B0A49F9F7DBFEDBE7D11AA05C3C +:1067A000403168540132ECE7202B00DD202310003B +:1067B000202A00DD2020121A00210592DBE7C046C6 +:1067C00009000610002803D1044B1B7F18007047F6 +:1067D00000230128FAD1014BDB7FF7E748AE02081E +:1067E000F0B5F7B00500029111A8594917000493BC +:1067F000F9F736FF00284CD17C9B002B3FD10024B9 +:106800002B89EA689B180393039BA34214D9039B2B +:10681000049E1B1B9E4200D91E0033003A0021003B +:106820000298FFF77FFC002833D13200390011A80D +:10683000F9F724FF00282ED008AB202209A911A8BF +:10684000F9F72CFF002824D17E9B002B04D02022B6 +:1068500009A9180001F0F3FBEB682C8907ADE418D7 +:106860002A00042321000298FFF75CFC002810D1C5 +:10687000384B2A889A4210D00120404209E07D9B83 +:10688000002BBCDD1A007C9911A8F9F7F7FE00284F +:10689000B5D077B0F0BDA419B6E76B8801251B19F8 +:1068A00005930434039004906D42059B9C4205D3EC +:1068B000049B002BE0D003980138EAE708AF0423DB +:1068C0003A0021000298FFF72DFC0028E1D13B7827 +:1068D0007E88102B17D1202ECED1211D330011AA76 +:1068E0000298FFF71FFC0028D3D1320011A909A894 +:1068F00001F096FB0028BFD10123049308AB5B880D +:106900000433E418D1E7012B04D17F98FFF75AFF35 +:106910000500F3E7222BF1D13300483BB82BABD86D +:10692000211D330011AA0298FFF7FCFB0028A3D118 +:10693000EDB27B8811AA0095202109A80125FFF757 +:10694000E7FE6D420028D9D101230393D6E7C04664 +:106950000900000107690000F7B5070000240126BF +:106960002000FFF77CFC01A9C0B2FFF793FB3500C4 +:10697000011E0AD12C2363430B4A0198D21820230D +:10698000FFF7D0FB0500681E85410198FFF7A4FBC7 +:10699000002D04D0012C00D13D002800FEBD012CAB +:1069A000FBD03400DCE7C04660A8020873B50C00D9 +:1069B000C0B201A91500FFF76DFB0126002807D121 +:1069C0002A0021000198FFF7F1FB0600701E8641A6 +:1069D0000198FFF781FB300076BD0000F0B52C2454 +:1069E0004443324B87B01C1923680500013301D1A1 +:1069F000012049E02369DB06FAD4FFF730FC04A943 +:106A0000C0B2FFF747FB03000120002B3DD1E36834 +:106A1000268905AFF6183A00042331000498FFF7E1 +:106A200081FB0028E4D1224B3A889A4201D1788830 +:106A300080192C236B431D4AD3181B6A9B68834221 +:106A4000D6D31C4BA27A1B789A42D1D12000F9F7F9 +:106A500099FB0028CCD1184B22689A4217D1802389 +:106A600002900190009003955B00144A0499200065 +:106A7000FFF7B6FE00280AD10498FFF72DFB20008F +:106A8000F9F7A4FB431E9841404207B0F0BD002D2A +:106A900004D0049800218268FFF788FB084B2A0085 +:106AA0001B680849D86801F02DFAA1E760A8020820 +:106AB0000769000048AE02083DB8F396D0AC020862 +:106AC00084A10208F6DA0D100023F0B5B04CB14AEB +:106AD000B14DA544012013602B60FFF77FFFAF4B42 +:106AE000040001201F79FFF76DFE002C47D1AC4B4D +:106AF000C2B2DB6C39005E6880235B05F318029339 +:106B0000A84BF618300013ABFBF760F8041E36D123 +:106B100005A8F9F7E7FD8021A34A890005A8F9F740 +:106B2000EFFD05A90B20F9F7FBFD041E27D110236B +:106B300013AA9E490B20F9F7C3FD0123041E2B6005 +:106B40001DD1994A0B211BA8F9F716FD041E16D179 +:106B5000102217A91BA8F9F731FD041E0FD120221E +:106B600004AB2DAD019300922B0031001BA8F9F767 +:106B700035FD049B0400202B10D001246442864B79 +:106B80001B68002B05D00B20F9F73EFD002800D034 +:106B900004002000D3239B009D44F0BD0028EED1CB +:106BA000020004AB29001BA8F9F7F6FC041EE6D18D +:106BB00007AE33002A0013CA13C37D4F126831A9F0 +:106BC0001A603800102201F03AFA05A90C20F9F7F2 +:106BD000A7FD041ED3D11023320074490C20F9F70D +:106BE0006FFD01226B4B041E1A60C8D171496DA85C +:106BF000F9F736FD041EC2D1029B029A1B890C21B3 +:106C0000D3181BA8684A0393F9F7B6FC041EB6D143 +:106C1000102239001BA8F9F7D1FC041EAFD1802641 +:106C200004AB7600019300962B00320003991BA859 +:106C3000F9F7D4FC049B0400B3429ED100289ED1F6 +:106C40002D9B2E89AA7A309F3199581C00D194E748 +:106C5000C90600D591E75249C96C8968B94200D28A +:106C60008BE755498B4200D087E74C4B1B7893420A +:106C700000D082E78022290052006DA8F9F7FEFCBF +:106C8000041E00D07BE7F619330AF6B2771EBE4128 +:106C900001279B190293039B3E029E19029BBB4254 +:106CA00022D9002C00D06AE704AB019380232DAADF +:106CB0005B00009313008022310052001BA8F9F7FB +:106CC0008DFC8023049A04005B009A4209D10028BD +:106CD00005D11A002DA96DA8F9F7D0FC04000137E1 +:106CE000D9E701246442FAE7002C00D047E704AF5B +:106CF0003B0020220BA96DA8F9F7D0FC041E00D0A0 +:106D00003DE780225200019700922B0031001BA822 +:106D1000F9F764FC041E00D031E702003B002900B3 +:106D20001BA8F9F739FC2D9B244A9BB2040093421F +:106D300000D022E7002800D021E72E9AD3B2102BF2 +:106D400000D01AE7120C202A00D016E72FA90BA8B2 +:106D500001F066F9041E00D011E7379BDBB2012B6E +:106D600000D00AE70120FFF72DFD409BDAB2222A6E +:106D700000D002E71B0C482B00D0FEE6C0B200900A +:106D800041AA20210BA8FFF7C3FC0400F7E6C04688 +:106D9000B4FCFFFF34B0020830B0020848AE02086D +:106DA00060A80208200000100001600401000040FB +:106DB000C0AC0208090000013DB8F3960769000065 +:106DC0000023F0B51D4C0700A5446946022000933E +:106DD0000193FFF75FF900280ED0012600980028E4 +:106DE00001D0FFF779F90198002801D0FFF774F975 +:106DF0003000134B9D44F0BD01A90120FFF74AF973 +:106E00000600041EE9D10098A742E7D980233D1B64 +:106E1000DB009D4200D91D002B0002AA2100FFF7D4 +:106E200081F90028D9D12B0002AA21000198FFF78F +:106E30008BF90028D1D16419E5E7C046F4FBFFFFC8 +:106E40000C040000F0B500242500614E9BB03368AF +:106E50006048D96801F0B0F833685F48D96801F03C +:106E6000ABF85E4FBB6A0393039BAB4269D13368B7 +:106E70002200D8685A4901F045F85A4BDB78002BBC +:106E800000D1A1E0002305A9022005930693FFF796 +:106E900001F9002821D106A90130FFF7FBF80028ED +:106EA0001BD1514A0C2108A8F9F766FB002814D120 +:106EB00010224E4908A8F9F781FB041E0DD10600E7 +:106EC000BB6B0133FF330293059B5B680393029B0B +:106ED000B34200D86EE0002C46D00598002801D0BF +:106EE000FFF7FAF80698002801D0FFF7F5F8404BB5 +:106EF0001B68002B02D00C20F9F786FB1022002122 +:106F00003A4801F0A5F83B6D00219A680220FFF78E +:106F10004DFD43425841FEF7CBFA0C237A6D396D93 +:106F2000013A5343CB185A6849680220511A9A68AB +:106F3000FFF73CFD43425841FEF7BAFA00201BB070 +:106F4000F0BD0C236B437A6A2100D3189B680120A3 +:106F50001A000293FFF72AFD43425841FEF7A8FAB0 +:106F6000029B0135E4187FE7029B9D1B8023DB0019 +:106F70009D4200D91D00039B009599191D4B2A00C5 +:106F8000C91807AB019308A81B4BF9F727FB079B10 +:106F90000400AB420BD1002899D12B00164A3100D6 +:106FA0000698FFF7D1F8002897D176198FE70124CA +:106FB00064428CE7002C00D08FE707AB22000E491B +:106FC00008A8F9F7E9FA88E72000FFF7F9FE9AE741 +:106FD00084A1020867D90D108CD90D1060A8020891 +:106FE000A2D90D1048AE020800016004C0AC02082E +:106FF00034B0020800040010C0A8020873B5164E91 +:10700000164CF368626A5B0A01A901200193FFF73D +:1070100047F9012500281AD1019B226DA362F3686C +:1070200001A95B0A02300193FFF73AF9051E10D15E +:10703000019B206A6365FFF70DF90600A06DFFF75D +:1070400009F9331C864200D2031C5C3423702800EB +:1070500076BD0125FBE7C04640A1020860A80208F2 +:10706000F0B50C266E4F89B0FB6800905C0A744343 +:10707000200000F0AFFF0190200000F0ABFF019B6B +:10708000684C0290636220650020FFF7E8F8210059 +:10709000C0B22031FEF7FEFF43425841FEF708FA26 +:1070A0000120FFF7DCF82100C0B24C31FEF7F2FFFF +:1070B00043425841FEF7FCF9210003205831FEF706 +:1070C000E9FF43425841FEF7F3F9FFF797FF051E2A +:1070D00019D0554BFA681B68520A5449D86800F019 +:1070E00011FF019800F080FF029800F07DFFA06D75 +:1070F000FEF7F2FFE06CFEF7EFFF206AFEF7ECFF11 +:10710000280009B0F0BDFFF727FC051EE9D1FB6898 +:10711000A06A5B0A984202D8626D9A4219D9424B22 +:1071200043481B68D96800F047FF0020FFF756FC72 +:10713000050068426841FEF7BBF9002D5ED1236A65 +:1071400000995A780A715B680C600393039A8A600D +:10715000C7E7904239D108234643626A216D083659 +:107160009E4237D1334E7378002BDED00C220021A3 +:1071700005A800F06DFF0120FEF79AF9FFF75EFA0F +:10718000831E0500022B0DD8274B1B68D968F378A6 +:10719000002B2CD0284800F00FFFFFF795FC0028AB +:1071A0002ED005250120FEF783F9012DBDD0002D3D +:1071B00001DD052D2EDD1C4B20481B68D96800F031 +:1071C000FBFE0020FEF774F9FEE7174B1C481B6816 +:1071D000D968A8E71800D558CB580C309D4204D088 +:1071E000114B18481B68D9689DE70300B8E716489B +:1071F00000F0E2FE0120FFF7F1FBD0E7032570E786 +:107200000120FEF755F9FFF71DFE43425841FEF7F6 +:107210004FF9C7E70020FFF79FFB051E85D060E709 +:1072200040A1020860A8020884A10208D0D90D106C +:1072300015DA0D1048AE0208BFDA0D10E7DA0D10AE +:1072400047DA0D1086DA0D10D1DA0D1010B501787D +:1072500004000A00303AD3B2092B1FD811000A01EA +:1072600061780B00303BD8B2092824D89918A2784D +:1072700009011300303BD8B209282AD85A18E378FC +:10728000120118003038C1B28018092905D9190037 +:10729000413905292BD8373B981810BD0B00413BCD +:1072A000052B01D83739DAE70B00613B0020052BAD +:1072B000F3D85739D3E70B00413B052B02D83739B8 +:1072C0008918D4E70B00613B0020052BE5D857391E +:1072D000F6E71300413B052B02D8373A5218CEE7A8 +:1072E0001300613B0020052BD7D8573AF6E7190069 +:1072F000613900200529D0D8573BCDE7F7B50B7889 +:1073000007004E1C222B0FD00026554B1960300071 +:10731000FEBD02331A780130222A08D0002A06D096 +:107320005C2AF6D00133F5E733000020F2E74D4B3D +:107330001B6898470190041E07D1019EE7E7721C65 +:107340005C2B13D02370013416003378222B01D02C +:10735000002BF4D1002323703378223B5A4253414F +:10736000F618019B3B610423FB60D0E773786E2B1A +:1073700017D007D8611C622B0CD0662B0FD023705E +:1073800001340AE0742B0ED0752B0ED0722BF6D17F +:107390000D23F4E7082323700C000132D4E70C23FB +:1073A000F9E70A23EBE70923E9E7B01CFFF74EFFF3 +:1073B0002D4B2E49C3180500721D8B42EDD90028B4 +:1073C000EBD02B4BC3188B4227D8B3795C2BE4D17D +:1073D000F379752BE1D130000830FFF737FF320029 +:1073E000214B2249C3180B328B42D6D8214BAD0218 +:1073F0001D4080238005800D05435B02ED181E4B68 +:10740000E11C9D4223D803234C1E3F2080212840AD +:10741000494201432170AD0910E07F2809D80123BA +:1074200001341648611EC05C013B05430D70E41831 +:10743000B3E7134B9842E2D8022302343F20802165 +:1074400028404942013C01432170AD09E9E73F2052 +:10745000802328405B420343E370AD090423D3E754 +:10746000D0AD020880A102080024FFFFFF03000046 +:107470000028FFFF00FC0F00FFFF00001DDB0D10C8 +:10748000FF070000002803D00378013B1F2B00D921 +:1074900070470130F6E70000064B10B51B68282046 +:1074A0009847041E03D02822002100F0D1FD2000BF +:1074B00010BDC04680A10208F0B5050087B00E1EC1 +:1074C00001D1002413E004227549300001F045FC8D +:1074D000002803D10223EB60341D08E00522714926 +:1074E000300001F03AFC002804D1E860741D20004F +:1074F00007B0F0BD04226C49300001F02EFC0028DA +:1075000006D101230122EB600023AA61EB61E3E7CE +:107510003378222B05D131002800FFF7EFFE04005D +:10752000E5E71A00303AD2B22D2B01D0092A1AD839 +:10753000340000E0013423781A00303A092AF9D9DE +:107540002D2BF7D0A71B3A003100684600F077FDDD +:1075500000236A466846D35500F0CEFC0323A86199 +:10756000E961EB60C3E75B2B37D1563BEB60701CE6 +:10757000FFF788FF037804005D2B01D10134B6E7E3 +:10758000FFF78AFF061EA8609BD02000FFF77AFF56 +:1075900001003000FFF790FFFFF774FF0400002C9C +:1075A00000D18EE723782C2B04D05D2BE6D03F4B07 +:1075B0001C6086E7FFF770FF051E00D181E7306091 +:1075C0004660601CFFF75EFF01002800FFF774FFB4 +:1075D000FFF758FF2E000400E1E77B2B5DD1753BE0 +:1075E000EB60701CFFF74EFF037804007D2BC5D0C5 +:1075F000FFF752FF061EA86000D162E72000FFF7E8 +:1076000041FF01003000FFF779FEFFF73BFF002844 +:1076100000D156E7002433693461336203783A2B92 +:1076200002D0224B186062E70130FFF72BFF010008 +:107630003000FFF741FFFFF725FF0400002C00D1C9 +:107640003FE723782C2B02D07D2B97D0AFE7FFF7B5 +:1076500023FF051E00D134E730604660601CFFF751 +:1076600011FF01002800FFF749FEFFF70BFF00287C +:1076700000D126E700242B692C612B6203783A2B7A +:10768000CFD10130FFF7FEFE01002800FFF714FF05 +:10769000FFF7F8FE2E000400D0E7044B1E6010E751 +:1076A00024DB0D1029DB0D102FDB0D10D0AD0208EF +:1076B0000849094A002803D1084B0B60084B07E032 +:1076C0000368002B00D1054B0B604368002BF5D0FD +:1076D0001360704780A102087CA10208D57F0D10BD +:1076E000E97F0D10F8B5802604007600002C00D14B +:1076F000F8BDE3682768334204D1A068002801D0B0 +:10770000FFF7F0FFE3680B4D334204D120690028F6 +:1077100001D02B6898478022E3689200134204D17D +:10772000206A002801D02B68984720002B689847D2 +:107730003C00DBE77CA10208F7B505000E000192D2 +:10774000FFF7AAFE0023134F04003B6098420CD0C1 +:107750002800FFF797FE01002000FFF7ADFE051E91 +:1077600005D12000FFF7BEFF00242000FEBD019BD5 +:10777000002B0AD0FFF786FE03780500002B04D00B +:107780002000FFF7AFFF3D60EEE7002EEDD0356043 +:10779000EBE7C046D0AD0208002210B51100FFF79C +:1077A000CBFF10BD0300093B0122042B02D9203876 +:1077B0004242424110007047F0B500251700060014 +:1077C0002C0089B003930E9B02901B0CDBB2049338 +:1077D0000E9B00911B0ADBB205930E9BDBB2079355 +:1077E000731C069333780193002B08D0009B002B69 +:1077F00022DB029A731C9B1A009A9A421CDA0E9B97 +:10780000DBB2002B00D1B4E0019A9A4200D0AEE086 +:10781000009B002B06DB029A731C9B1A009A934272 +:1078200000DDA4E0B31C7678032D00D9A1E0280088 +:1078300000F0ACF88989637B0198FFF7B3FF00285B +:1078400039D1079B019A9342D9D04F4E1100300095 +:1078500001F05CFA031E08D1049B019A93420BD0FD +:10786000059B93426FD133003F33032D23D828006B +:1078700000F08CF80510233533003E33F5E7002F78 +:1078800006D0039A94425ED23F4A9B1A9B003B5516 +:10789000012510E0621C002F0BD003998A4252D2BE +:1078A00039493C195B1A2178181101431B012170D9 +:1078B000BB5414000225069E92E7621C002F0BD0D9 +:1078C00003998A423FD230493C195B1A21789810BB +:1078D00001439B012170BB5414000325EBE7002FEB +:1078E00008D0039A94422ED227493A195B1A11788C +:1078F0000B43137001340025DDE71D00002E22D05C +:10790000009B002B22DB029B009AEB1A9A421DDAA5 +:10791000019BB34217D1009B002B04DD029B009A10 +:10792000EB1A93420FDC2E786B1C029A9D1A002EE4 +:1079300004D0009B002B11DBAB420FDA002F18D0D4 +:107940003B5D002B15D00124644219E03000FFF7A5 +:1079500029FF0028DCD02E780135CFE73000FFF773 +:1079600021FF0028EFD0029B5E5D0135DFE7002D8F +:10797000E9D1039B9C42E6D2002F01D000233B5566 +:10798000200009B0F0BDC04634DB0D1002B47146D2 +:1079900049084900095C49008E4402BC7047C04652 +:1079A000002243088B4274D303098B425FD3030A3E +:1079B0008B4244D3030B8B4228D3030C8B420DD351 +:1079C000FF22090212BA030C8B4202D312120902DF +:1079D00065D0030B8B4219D300E0090AC30B8B421D +:1079E00001D3CB03C01A5241830B8B4201D38B03CB +:1079F000C01A5241430B8B4201D34B03C01A524170 +:107A0000030B8B4201D30B03C01A5241C30A8B42B2 +:107A100001D3CB02C01A5241830A8B4201D38B029D +:107A2000C01A5241430A8B4201D34B02C01A524141 +:107A3000030A8B4201D30B02C01A5241CDD2C309B3 +:107A40008B4201D3CB01C01A524183098B4201D32F +:107A50008B01C01A524143098B4201D34B01C01A1A +:107A6000524103098B4201D30B01C01A5241C30892 +:107A70008B4201D3CB00C01A524183088B4201D301 +:107A80008B00C01A524143088B4201D34B00C01AED +:107A90005241411A00D20146524110467047FFE759 +:107AA00001B5002000F0F0F802BDC0460029F7D073 +:107AB00076E7704703460B437FD4002243088B428E +:107AC00074D303098B425FD3030A8B4244D3030B65 +:107AD0008B4228D3030C8B420DD3FF22090212BA2A +:107AE000030C8B4202D31212090265D0030B8B42A6 +:107AF00019D300E0090AC30B8B4201D3CB03C01A90 +:107B00005241830B8B4201D38B03C01A5241430B6A +:107B10008B4201D34B03C01A5241030B8B4201D35A +:107B20000B03C01A5241C30A8B4201D3CB02C01AC5 +:107B30005241830A8B4201D38B02C01A5241430A3D +:107B40008B4201D34B02C01A5241030A8B4201D32C +:107B50000B02C01A5241CDD2C3098B4201D3CB01D3 +:107B6000C01A524183098B4201D38B01C01A524182 +:107B700043098B4201D34B01C01A524103098B4286 +:107B800001D30B01C01A5241C3088B4201D3CB0071 +:107B9000C01A524183088B4201D38B00C01A524154 +:107BA00043088B4201D34B00C01A5241411A00D204 +:107BB00001465241104670475DE0CA0F00D049426D +:107BC000031000D34042534000229C4603098B42DD +:107BD0002DD3030A8B4212D3FC22890112BA030A65 +:107BE0008B420CD3890192118B4208D389019211E7 +:107BF0008B4204D389013AD0921100E08909C3096C +:107C00008B4201D3CB01C01A524183098B4201D36D +:107C10008B01C01A524143098B4201D34B01C01A58 +:107C2000524103098B4201D30B01C01A5241C308D0 +:107C30008B4201D3CB00C01A524183088B4201D33F +:107C40008B00C01A5241D9D243088B4201D34B005A +:107C5000C01A5241411A00D20146634652415B109C +:107C6000104601D34042002B00D54942704763467D +:107C70005B1000D3404201B5002000F005F802BDC2 +:107C80000029F8D016E770477047C046002B11D185 +:107C9000002A0FD1002900D1002802D00021C943B9 +:107CA000081C07B4024802A14018029003BDC04658 +:107CB000D9FFFFFF03B4684601B5029800F030F821 +:107CC000019B9E4602B00CBC7047C046F0B5CE4644 +:107CD000474615042D0C2E0080B50704140C3F0CEC +:107CE0009946030C7E435D43674363437F19340C1D +:107CF000E4199C46A54203D980235B029846C444FC +:107D00004B4643435143250C36046544360C24044A +:107D1000A4195B19591820000CBC90469946F0BD77 +:107D2000F0B54F464646D646C0B5040082B00D00B9 +:107D3000914698468B422FD82CD04146484600F0B9 +:107D4000CFF829000600200000F0CAF8331A9C463C +:107D5000203B9A4600D576E04B46524693401F00A2 +:107D60004B46624693401E00AF4228D825D053466A +:107D7000A41BBD41002B00DA7BE00022002300920F +:107D8000019301235246934001930123624693409D +:107D9000009318E08242D0D9002200230092019380 +:107DA0000A9B002B01D01C605D600098019902B015 +:107DB0001CBC90469946A246F0BDA342D7D90022EA +:107DC0000023009201936346002BE9D0FB079846FD +:107DD000414672080A437B0866460EE0AB4201D179 +:107DE000A2420CD8A41A9D41012024196D41002102 +:107DF000013E24184D41002E06D0AB42EED9013E83 +:107E000024196D41002EF8D10098019953460019AC +:107E10006941002B23DB2B005246D3402A006446E5 +:107E2000E2401C0053461500002B2DDB2600574670 +:107E3000BE40330026006746BE403200801A99419A +:107E400000900191ACE7624620239B1A4A46DA4033 +:107E50006146130042468A4017001F4380E762468E +:107E600020239B1A2A0066469A402300F3401343BE +:107E7000D4E76246202300219B1A00220091019240 +:107E80000122DA40019280E72023624626009B1AF5 +:107E9000DE402F00B0466646B74046463B003343BF +:107EA000C8E7C0461C2101231B04984201D3000CE3 +:107EB00010391B0A984201D3000A08391B0998425D +:107EC00001D30009043902A2105C40187047C04673 +:107ED0000403020201010101000000000000000093 +:107EE00010B5002903D1FFF7DDFF203002E0081CA8 +:107EF000FFF7D8FF10BDC04610B50A22002100F0E0 +:107F0000FDFF10BD0EB403B5010003AB044804CB64 +:107F10000068019300F074F902B008BC03B0184780 +:107F200084A1020870B505000E001400002804D0DA +:107F30008369002B01D102F02BF81C4B9C420FD11E +:107F40006C68A3891B0702D52369002B21D121006E +:107F5000280001F049F800281BD00120404270BDE4 +:107F6000134B9C4201D1AC68EBE7124B9C42E8D129 +:107F7000EC68E6E7A3680136013BA360002B04DA56 +:107F8000A26993420ADB0A2908D023685A1C22609E +:107F9000197031780029EDD10800E0E722002800AF +:107FA00000F0C0FF431CF4D1D7E7C046F8DC0D1049 +:107FB00018DD0D10D8DC0D1010B5034B0A000100C0 +:107FC0001868FFF7AFFF10BD84A10208EC3000680D +:107FD0007047000010B5034B0100186800F08AF8E4 +:107FE00010BDC04684A1020810B5034B01001868FB +:107FF00000F036F810BDC04684A1020882B0002906 +:1080000000D101A9101E06D0002B06D013780B60FA +:108010001078431E984102B0704702204042FAE7B0 +:1080200030B50024A24201D1002005E0035D651CAB +:108030000C5DA34201D0181B30BD2C00F2E70023D9 +:1080400010B59A4200D110BDCC5CC4540133F8E79E +:1080500003001218934200D1704719700133F9E7F9 +:1080600070B50500002910D00C1F2368002B00DA22 +:10807000E418280002F0A3F81D4A1368002B05D16C +:1080800063601460280002F09BF870BDA34209D918 +:10809000216860188342F3D118685B684118216039 +:1080A000EEE713005A68002A01D0A242F9D91968F4 +:1080B0005818A0420BD1206809185818196082423C +:1080C000E0D110685268411819605A60DAE7A0429E +:1080D00002D90C232B60D5E721686018824203D1B6 +:1080E000106852684118216062605C60CAE7C0464F +:1080F000D4AD0208032370B5CD1C9D43083506009E +:108100000C2D1ED20C25A9421DD8300002F057F8C4 +:10811000254A14682100002919D1244C2368002B1A +:1081200003D1300000F0E0FD20602900300000F0B5 +:10813000DBFD431C2BD10C233000336002F040F8F0 +:1081400003E0002DDFDA0C233360002070BD0B68E4 +:108150005B1B19D40B2B03D90B60CC18256003E0F3 +:108160004B688C420DD11360300002F029F82000DA +:1081700007220B30231D9043C31AE7D05A42E25026 +:10818000E4E763600C00EFE70C004968C3E70323F2 +:10819000C41C9C43A042E1D0211A300000F0A4FD91 +:1081A000431CDBD1C7E7C046D4AD0208D8AD0208F6 +:1081B000936810B5013B9360002B04DA9469A342E5 +:1081C00007DB0A2905D01368581C106019700800D5 +:1081D00010BD00F0A7FE0100F9E7F8B506000F009A +:1081E0001400D518AC4201D1002007E021783A00F4 +:1081F0003000FFF7DDFF0134431CF3D1F8BD000070 +:10820000F0B59FB002900F0016000593002805D02E +:1082100083690493002B01D101F0BAFE7B4B9F428E +:108220005BD1029B5F68BB891B0762D53B69002B52 +:108230005FD0002306AC6361203363761033A376EE +:1082400035002B78002B01D0252B5CD1AB1B049380 +:108250000CD0320039000298FFF7BFFF431C00D159 +:10826000C4E06269049B9446634463612B78002BED +:1082700000D1BBE0012200235242626002A95432C5 +:1082800052186E1C2360E360A3601370A3653178FD +:1082900005225F4801F088FF751C002835D122684F +:1082A000D30604D5532302A95B18202119701307A4 +:1082B00004D5532302A95B182B21197033782A2B7C +:1082C0002CD0350000210A20E3682A786E1C303A51 +:1082D000092A64D900292ED026E04E4B9F4202D1B4 +:1082E000029B9F689FE74C4B9F429CD1029BDF689B +:1082F00099E73900029800F077FE002899D0012014 +:1083000040421FB0F0BD01359BE7414B2268C01AC7 +:1083100001238340134323602E00B8E7059B191DFA +:108320001B680591002B01DB099304E05B42E360CD +:108330000223134323602B782E2B0AD16B782A2B30 +:1083400035D1059B02351A1D1B680592002B2BDBCE +:108350000793324E29780322300001F025FF0028D0 +:1083600006D04023801B83402268013513432360DD +:10837000297806222A486E1C217601F015FF002874 +:108380003AD0284B002B25D10722059B0733934376 +:10839000083305936369039A9B18636150E743436D +:1083A00001219B18350090E701235B42D0E70023B1 +:1083B0000A201A000135636029786E1C30390929BA +:1083C00003D9002BC5D00792C3E7424301235218BB +:1083D0003500F1E705AB00933A00134B21000298FA +:1083E00000F0C0F80390039B0133D3D1BB895B0637 +:1083F00000D584E70B9884E705AB00933A000A4B5D +:108400002100029800F068FBECE7C046F8DC0D1094 +:1084100082DB0D1018DD0D10D8DC0D1088DB0D107F +:108420008CDB0D1065850D10DB810D10F0B58BB068 +:1084300014001D1E129953DA802424061B191D00F6 +:1084400014002D230B702023149E03229E43462EDE +:1084500007D03300453B59424B411099013ACB18A4 +:10846000109309AB049308AB0393139B0092029300 +:10847000109B220001932B0000F0B2FE0700472E54 +:1084800002D1119BDB0724D5109BFB180793462EC6 +:1084900014D13B78302B0CD100220023200029007E +:1084A00002F052FA002804D10123109A9B1A139A61 +:1084B0001360139B079A1B68D318079300220023AD +:1084C0002000290002F040FA302200280DD0079B3E +:1084D00009933800099B159ADB1B13600BB0F0BDA4 +:1084E0000023AFE7591C09911A70099B07998B4229 +:1084F000F8D3EEE7F0B5831C85B0019306000C00BD +:1085000002702B23002901DA2D234C427370092CB1 +:1085100022DD02ABDD1D20000A21FFF7B1FB6F1E3B +:108520003031397020000A21FFF7C4FA040009280D +:108530000BDC023D3034019B2C7002AA073218007C +:10854000AA4204D8801B05B0F0BD3D00E3E72A78BD +:1085500001351A700133F0E73023E418B370301D91 +:10856000F470EFE7F0B595B00C000A920B931A9DEA +:10857000099001F0A1FD036818000C9300F0E6FBE0 +:108580000023129323680E900D930D99277E2B687C +:108590000722C90545D59B1893431A0008322A6063 +:1085A0001A685B68A264E3640122E56CA66C6B0048 +:1085B0005B080F935242AC4B30000F9903F0D2FE90 +:1085C000002830D10122A84B524230000F9902F00E +:1085D000CBF9002827D1002200233000290002F027 +:1085E000B9F9002803D023002D2243331A709F4D80 +:1085F000472F00D89E4D032300260D9A2361013397 +:108600009A4322600B9B13AA009321000A9B0998AE +:1086100000F0F4F9431C00D093E00120404215B073 +:10862000F0BD0733B8E732002B003000290003F01B +:1086300099FE002804D08F4D472FDCD88E4DDAE705 +:1086400080230D996268DB000B43511C43D1073234 +:10865000626012AA0021059211AA039223222360CC +:108660000691019308A963685218029200933200A0 +:108670002B0004970998FFF7D9FE20233A00050044 +:108680009A43472A07D1119BDA1C02DB62689342A6 +:1086900045DD023FFFB21199652F25D82000013931 +:1086A0003A0050301191FFF725FF129A0600131877 +:1086B0002361012A02DC2268D20701D5013323613C +:1086C000232308AA9B181B78002B9BD023002D2264 +:1086D00043331A7096E7672F00D176E1472FB8D160 +:1086E000002AB6D10122B3E7662F19D163680029A9 +:1086F0000CDD2161002B02D12268D20702D50133A3 +:108700005B182361119B0026A365D9E7002B03D1D9 +:1087100001222168114200D09A1C2261F2E76727EA +:10872000119B129A934205DB22682361D207E9D597 +:108730000133E6E70121002B01DC4918C91A521860 +:10874000EBE72268530508D423692A000A9909989F +:108750000B9DA847431C29D15FE7652F00D8E0E0B7 +:10876000A06CE16C0022002302F0EEF8002834D067 +:108770000123424A0A9909980B9DA847431C00D13E +:108780004BE7119B129A934202DB2368DB070DD55E +:108790000B9D0E9B0C9A0A990998A8470025431C2B +:1087A00000D13AE7129B013BAB420ADC23689B07EE +:1087B00000D508E1139BE068984200DB2FE7180022 +:1087C0002DE7220001231A320A9909980B9EB0471F +:1087D000431C00D121E70135E4E7119B002B2DDC80 +:1087E0000123264A0A9909980B9EB047431C00D1E1 +:1087F00013E7119B002B05D1129B002B02D123689C +:10880000DB07D3D50B9E0E9B0C9A0A990998B047AB +:108810000026431C00D100E7119B5B42B34201DC00 +:10882000129B92E7220001231A320A9909980B9FA2 +:10883000B847431C00D1F0E60136EDE7A36D129F67 +:108840009F4200DD1F00002F08DD3B002A000A992F +:1088500009980B9EB047431C00D1DEE600230D9320 +:10886000FB43DB170F9318E0FFFFEF7F97DB0D1043 +:1088700093DB0D109FDB0D109BDB0D10A3DB0D10A8 +:10888000220001231A320A9909980B9EB047431C13 +:1088900000D1C2E60D9B01330D930F9BA66D0D9A7F +:1088A0003B40F31A9342EBDC119B129AAD199342B1 +:1088B00010DB2368DB070DD4129F119BBE1BFF1A30 +:1088C000B74200DD3700002F0DDCFE43F317002513 +:1088D0000C931CE00E9B0C9A0A9909980B9FB847C1 +:1088E000431CE9D199E63B002A000A9909980B9D9F +:1088F000A847431CE9D190E6220001231A320A99C5 +:1089000009980B9EB047431C00D186E60135119AA9 +:10891000129B0C999B1A3A000A409B1AAB42EBDC63 +:1089200044E7129B012B02DC01231A4232D00123BF +:108930002A000A9909980B9FB847431C00D16CE69E +:108940000E9B0C9A0A9909980B9F0135B847431C56 +:1089500000D162E6A06CE16C129B00225F1E002336 +:1089600001F0F2FF3B00002814D000250AE02200AD +:1089700001231A320A9909980B9FB847431C00D16A +:108980004BE60135129B013BAB42F0DC2200330089 +:108990005032DBE62A000A9909980B9DA847431C30 +:1089A000F4D13AE62200012319320A9909980B9E64 +:1089B000B047431C00D130E60135E368139A9B1A97 +:1089C000AB42EFDCF6E60025F7E7002A00D189E6A6 +:1089D0000021069112A9059111A90391232108A84C +:1089E00009182360019300922B0004970291320032 +:1089F0000998FFF71BFD050045E6C046F7B51500D1 +:108A000001938A680B6900900C00934200DA13000E +:108A100022002B6043321278002A01D001332B60F0 +:108A200023689B0602D52B6802332B600627236838 +:108A30001F4027D0230043331B785A1E93412268DE +:108A4000920630D42200019943320098089EB04724 +:108A5000431C25D0062320682A68E16803400025CE +:108A6000042B03D18D1AEB43DB171D40A368226949 +:108A7000934201DD9B1AED180027BD4220D1002052 +:108A800010E00137E3682A689B1ABB42D2DD22005E +:108A90000123193201990098089EB047431CF0D178 +:108AA00001204042FEBD3020E11843310870210012 +:108AB0005A1C45310978A218433202331170C1E7BC +:108AC000220001231A3201990098089EB047431CE6 +:108AD000E6D00137D1E70000F0B589B004920A0072 +:108AE00043320593039002920A7E0C000E9B6E2A7D +:108AF00000D186E01FD8632A33D008D8002A00D1DD +:108B00008CE0582A4DD0250042352A7030E0642A86 +:108B100001D0692AF7D1196825680A1D280629D5C8 +:108B200008681A60002803DA2D23029A4042137065 +:108B30006B4E0A274FE0732A74D008D86F2A1FD0D3 +:108B4000702AE0D1202209680A43226003E0752AD6 +:108B500016D0782AD7D12200782145321170614E83 +:108B600022E025001A684235111D196013682B7028 +:108B7000012365E008681A606906D3D500B2D1E721 +:108B800019682568081D186008682E0605D5544E1A +:108B900008276F2A1BD00A2719E06D06F7D580B287 +:108BA000F5E745314E4E0A7018682268011D0068CD +:108BB0001960150621D5D30702D520231A43226058 +:108BC0001027002803D1202322689A432260230023 +:108BD000002243331A706368A360002B58DB042221 +:108BE000216891432160002854D1029D002B5AD066 +:108BF0002500337842352B7055E05506DBD580B221 +:108C0000D9E71A680D68101D4969186013682E06A7 +:108C100001D5196002E06D06FBD519800023029D85 +:108C200023614FE01A68111D196015680021626800 +:108C3000280001F0B9FA002801D0401B6060636889 +:108C400023610023029A13703CE023692A000499EF +:108C50000398059DA847431C3ED023689B0715D465 +:108C6000079BE068984239DA180037E022000123B8 +:108C7000193204990398059EB047431C2CD0013546 +:108C8000E368079A9B1AAB42F0DCE9E70025F7E7B7 +:108C90000028ADD0029D3900FEF708FF735C013D4E +:108CA0002B700028F7D1082F09D12368DB0706D5E0 +:108CB00063682269934202DC3023013D2B70029BE2 +:108CC0005B1B2361059B07AA00932100049B03986B +:108CD000FFF794FE431CB8D10120404209B0F0BD1B +:108CE000A5DB0D10B6DB0D10002370B5064C05009A +:108CF0000800236003F014FC431C03D12368002BFD +:108D000000D02B6070BDC0463CB00208C9B20378E9 +:108D1000002B04D08B4200D170470130F7E74B4263 +:108D2000594149420840F7E702780B78002A03D0FE +:108D3000013001319A42F7D0D01A704703000A7807 +:108D400001311A700133002AF9D170470023C25C47 +:108D50000133002AFBD1581E7047002330B59A42D8 +:108D60000AD0013AC45CCD5CAC4204D1934202D03B +:108D70000133002CF6D1631B180030BD30B505005F +:108D8000002A00D130BD0C78013A6B1C2C700131E7 +:108D9000002C05D19A189A42F4D01C700133FAE7DE +:108DA0001D00EDE7F0B51F000E008DB00B90029195 +:108DB000039212983478FFF709F9082200194378D2 +:108DC000751C134053D12D2C53D17478B51C01332D +:108DD0000193002F00D18AE0102F0AD1302C08D146 +:108DE00020222B789343582B00D07AE010276C7800 +:108DF0000235019B002B41D1013B04933E4B05936F +:108E00003A00FB17049805990893FEF73FFF0023EB +:108E100009900E00002000210A922200303A092A0F +:108E200031D81400A7423DDD5A1C1DD0B14236D8BE +:108E300002D1099B984232D8099B834206D18E42C7 +:108E400004D101230A9A5B42A2420DDB0B0002000F +:108E500008993800FEF73AFFE31706940793069B3C +:108E6000079CC018614101232C780135D5E72E00FD +:108E70009FE72B2CACD1B51C7478A9E70023049391 +:108E800080231B06BBE72200413A192A01D8373C50 +:108E9000C8E72200613A192A04D8573CC2E70123E7 +:108EA0005B42E1E75A1C09D10B9A23331360039B01 +:108EB00004980599002B0ED10DB0F0BD019A002A3F +:108EC00004D006000F0000217042B941039A002A25 +:108ED000F2D0002B01D06B1E0293039B029A1A6002 +:108EE000EAE73024002F00D083E7082781E7302C01 +:108EF00000D175E70A277CE7FFFFFF7F37B5130036 +:108F0000064A05001068046A002C00D1044C0A00CF +:108F100000942900FFF746FF03B030BD84A102088A +:108F2000E8A10208F8B505000E001400002804D0DE +:108F30008369002B01D101F02BF8224B9C422DD1EB +:108F40006C68A369A360A3891B0731D52369002B33 +:108F50002ED023682269F7B2981A6369F6B2834269 +:108F600005DC2100280000F0A5FF002826D1A36819 +:108F70000130013BA36023685A1C22601F706369A3 +:108F8000834204D0A389DB071AD50A2E18D1210009 +:108F9000280000F08FFF002812D00FE00A4B9C42FF +:108FA00001D1AC68CDE7094B9C42CAD1EC68C8E757 +:108FB0002100280000F018F80028CAD001267642C7 +:108FC0003000F8BDF8DC0D1018DD0D10D8DC0D10E8 +:108FD0000B1E04D0FF2A04D98A2303608B3B1800A0 +:108FE00070470A700123FAE7364B70B51D6806001A +:108FF0000C00002D05D0AB69002B02D1280000F039 +:10900000C7FF314B9C420FD16C680C23E25E93B2D8 +:1090100019072DD4D90611D4092301203360373321 +:109020001343A381404270BD284B9C4201D1AC68E0 +:10903000EBE7274B9C42E8D1EC68E6E75B0713D5EA +:10904000616B002908D023004433994202D03000DC +:10905000FFF706F8002363632422A3899343A381C7 +:1090600000236360236923600823A2891343A3813B +:109070002369002B0BD1A0218022A38989009200B3 +:109080000B40934203D02100300001F049F8012346 +:10909000A289134011D00023A36063695B42A361DE +:1090A000002023698342BED10C23E25E1306BAD5A9 +:1090B00040231343A3810138B5E7920700D46369C5 +:1090C000A360EDE784A10208F8DC0D1018DD0D1097 +:1090D000D8DC0D10F0B503690C6989B00700059163 +:1090E0000026A34265DB0B00013C1433A50003936B +:1090F0005B1904930300143302935D19049B2868E1 +:109100001B68591C0193FEF74BFC0190B04229D01B +:10911000039B02989C460696624608CA9446019AAA +:1091200099B251431B0C534389190A0C9B1807939E +:109130001E0C036889B29AB2069BD2180368521AB1 +:10914000190C6B469B8BCB1A11145B18191492B235 +:109150001B041A43049B069104C06345DCD22B68B0 +:10916000002B2DD00599380001F040FA00281FDBB4 +:109170000025019B0298013303990193026808C9F5 +:1091800092B255199AB2AA1A05681B0C2D0CEB1A4B +:1091900015145B191D1492B21B04134308C0049BE1 +:1091A0008B42EBD2029AA300D3181A68002A11D07E +:1091B000019E300009B0F0BD2B68002B04D1013CAA +:1091C000029B043DAB42F7D33C61CBE71A68002A0F +:1091D00004D1013C029A043B9A42F7D33C61E7E791 +:1091E000F0B516001F00446A9BB00290239D0696BE +:1091F0000797002C08D11020FEF7ECFE029B586266 +:10920000446084600460C460029B5B6A1968002942 +:109210000BD05A68012393404A608B60029801F09A +:1092200008F80022029B5B6A1A60002F20DA0123F3 +:109230002B607B005B080793079CB24B22001793BF +:109240001A409A4217D1B04B229A1360069B002B0A +:1092500003D1240301D100F087FDAC4B249A08937D +:10926000002A02D0AA4B249A136008981BB0F0BDC4 +:1092700000232B60E0E7069E079F002200233000BA +:10928000390001F061FB051E0BD00123229A136007 +:10929000A04B249A0893002AE7D09F4A24990A6099 +:1092A000E3E718AB019319AB009332003B0002983F +:1092B00001F01AFA630003905B0D74D03A03974CE7 +:1092C000120B14432100964A300016959E18002276 +:1092D000944B02F0FFFC944A944B02F089FA944AB2 +:1092E000944B01F05FFB040030000D0003F08CF89C +:1092F000914A924B02F07CFA02000B0020002900F8 +:1093000001F050FB04000D0003F048F800220700B4 +:1093100000232000290001F01DFB002809D038009F +:1093200003F072F82B00220001F00EFB434258417B +:109330003F1A01231493162F0DD88149FB00C91839 +:1093400008684968069A079B01F018FB002846D078 +:109350000023013F1493189B9E1B00230A933300A4 +:10936000013B0B9304D501239B1B0A9300230B9312 +:10937000002F36DB0B9B1197DB190B930023049313 +:10938000209B0124092B00D984E0052B02DD002459 +:10939000043B2093209B981E032800D984E0FEF70D +:1093A000F5FA7577286A189B199A9E18654BF2187A +:1093B000202A0FDD40239B1A9C40634B0698F3182C +:1093C000D840204303F05AF80123604C013E0919AC +:1093D00016937CE7202306989B1A9840F2E7149096 +:1093E000B9E70A9BDB1B0A937B420493002311938A +:1093F000C6E701230D93219B002B59DD0C930993A4 +:10940000029A556A00226A600432100014306968BA +:10941000984252D9029800F0D4FE029B28605B6A01 +:109420001B680893099B0E2B00D90AE1002C00D180 +:1094300007E1069B079C12931394002F00DC89E040 +:109440000F213A003E4B0A40D2009B181D685E680F +:1094500002233C110E93E3060BD53D4B0C401A6AD8 +:109460005B6A1298139901F0B9FD032306900791E6 +:109470000E9300233AE001230D93219BFB180C93DC +:1094800001330993002BBBDC0123B9E70023B1E7CB +:109490000023F1E700230D942093013B00220C935D +:1094A000099313332192ABE701230D93023BF5E7B8 +:1094B00001230C9309931A00F4E70131696052000B +:1094C000A3E701231C420ED00E9B214A01330E93C9 +:1094D000109B2800DB009B1831001A685B6802F0C3 +:1094E00087F905000E00109B641001331093002CC7 +:1094F000E7D1069807992A00330001F06FFD069026 +:10950000079142E00000F07F0F270000D1DC0D1032 +:10951000D4DC0D10A3DB0D10A4DB0D100000F03F18 +:1095200001FCFFFF0000F83F61436F63A787D23F54 +:10953000B3C8608B288AC63FFB799F501344D33F42 +:1095400060DD0D103204000012040000000010FE67 +:1095500038DD0D1002230E93002F16D012981399A8 +:109560007C420D332340CE4ADB00D3181A685B6877 +:1095700002F03EF9002301261D00069007912411F8 +:10958000002C00D08CE0002BB9D1149B002B00D113 +:1095900096E0069C079D0022C24B2000290001F0A6 +:1095A000D9F9002800D18BE0099B002B00D187E07E +:1095B0000C9B002B41DDBC4B00222000290002F057 +:1095C00017F90E9B0690079101330E930C9B7E1E9C +:1095D0000E98109302F018FF069A079B02F008F904 +:1095E0000022B24B01F0DEF9B14A0E900F910E9CB1 +:1095F0000F9D94460F9B634415931D00109B002BF9 +:1096000061D1069807990022AA4B02F063FB220061 +:10961000159B0690079101F0B1F9002800D0A8E24F +:10962000A5480F99844661440B00069807992200CB +:1096300001F090F9002800D095E2129B139C06934C +:109640000794199B002B00DA5CE10E2F00DD59E135 +:10965000934BFA009B185C681B6804930594219B4C +:10966000002B00DBD8E0099B002B00DDD4E000D00C +:109670007DE20498059900228E4B02F0B9F8069A13 +:10968000079B01F085F9099B04931E00002800D078 +:109690004FE2089B089A5D1C3123013713704BE29F +:1096A00034420AD00E9B854A01330E93EB009B187F +:1096B0001A685B6802F09CF83300641001355FE7BC +:1096C0003E00099B84E7109B0D995A1E744BD200F3 +:1096D0009B181A685B68002949D00020784901F07E +:1096E0007DFC2B00220002F0F5FA089B0E900F91F2 +:1096F00015930698079902F051FE040002F084FECB +:1097000002000B000698079902F0E4FA159B30342A +:109710005D1C1C700E9A0F9B0690079101F01AF9C0 +:1097200000286CD1069A079B00205E4902F0D2FA0D +:109730000E9A0F9B01F00EF9002800D0C3E0089BA1 +:10974000109AEB1A9A4200DC77E70E980F990022E4 +:10975000554B02F04DF800220E900F910698079994 +:10976000514B02F045F8159506900791C1E720008E +:10977000290002F03DF8089C109A230094460E90B0 +:109780000F91634415930698079902F007FE0500B0 +:1097900002F03AFE0B0002000698079902F09AFACE +:1097A0003035159B2570013406900791A3422AD1CC +:1097B0000E980F99089A109B9446634400221D004E +:1097C0003F4B01F0EFF802000B000698079901F0FB +:1097D000D5F8002800D076E00E9A0F9B002038497B +:1097E00002F078FA02000B000698079901F0B2F82F +:1097F000002800D121E76B1E1A78302A01D03700EB +:109800003FE01D00F7E7069807990022264B01F07C +:10981000EFFF06900791B6E7089E049A059B06980D +:10982000079901F0DBFB02F0B9FD040002F0ECFD4A +:10983000049A059B01F0DCFF02000B0006980799D3 +:1098400002F048FA230030333370099A089B751CE4 +:10985000EB1A9A4248D102000B0001F0A3F8049AD7 +:10986000059B0690079101F089F800282AD1049AF7 +:10987000059B0698079901F067F8002801D0E307D7 +:1098800020D40399029800F0D4FC00232B70229B73 +:1098900001371F60249B002B00D1E6E41D60E4E447 +:1098A00060DD0D100000F03F0000244000001C406F +:1098B0000000C0FC000014400000C07C38DD0D102A +:1098C0000000E03F3E006B1E1A78392A06D1089A44 +:1098D0009A4207D130231370130001361A780132EF +:1098E0001A708CE71D00EEE70022A44B01F080FF08 +:1098F00000220023069007912E0001F025F8002891 +:109900008BD0BEE70D9A002A00D1DAE0209A012A16 +:1099100000DDBDE0169A002A00D1B5E0984A9B18F8 +:10992000049D0A9C0A9A0121D2180A920B9A029865 +:10993000D3180B9300F01DFD0600002C0EDD0B9BD1 +:10994000002B0BDD0B9A2300944200DD13000A9AD2 +:10995000E41AD21A0A920B9AD31A0B93049B002B87 +:109960001FD00D9B002B00D1AFE0002D11D0310096 +:109970002A00029800F096FD039A01000600029862 +:1099800000F000FD03991090029800F052FC109B2B +:109990000393049B5A1B04D00399029800F082FDA4 +:1099A00003900121029800F0E4FC119B0490002B2D +:1099B00000D1E3E11A000100029800F073FD209B42 +:1099C0000490012B00DD82E00025069BAB420ED106 +:1099D000079B1B03AB420AD1179B079A134206D081 +:1099E0000A9B013501330A930B9B01330B93119BA7 +:1099F0000120002B6CD10B9B18181F2318407ED020 +:109A000001331B1A042B70DD1C23181A0A9B24181F +:109A10001B180A930B9B1B180B930A9B002B05DD4D +:109A20001A000399029800F08FFD03900B9B002B06 +:109A300005DD1A000499029800F086FD0490149B3D +:109A4000002B5ED00499039800F0D0FD002858DA6E +:109A500000230A220399029800F004FC0D9B013FA9 +:109A60000390002B00D190E1002331000A220298DC +:109A700000F0F8FB0C9B0600002B00DD88E0209B2B +:109A8000022B00DC84E044E03623189A9B1A47E757 +:109A9000099B5D1E049BAB4208DB5D1B099B002BF1 +:109AA0000CDA0A9B099A9C1A00233BE7049B049555 +:109AB000EA1A119B00259B181193EFE70A9C099B5A +:109AC00030E7049D0A9C0D9E37E7049A64E7002561 +:109AD000049B049A1B69109303339B00D3185868A6 +:109AE00000F0FEFB2023181A85E7042B95D00A9A74 +:109AF0001C33D2180A920B9AE418D3188CE703008F +:109B0000F5E7099B002B3DDC209B022B3ADD099BEE +:109B10000C930C9B002B0CD104990522029800F0A9 +:109B2000A1FB04900100039800F060FD002800DD17 +:109B3000AFE5219B089DDF43002309930499029818 +:109B400000F077FB002E00D19BE6099B002B05D08F +:109B5000B34203D01900029800F06BFB3100029869 +:109B600000F067FB8DE6109B04931E00E1E70023E5 +:109B7000FAE7109B370004931E008AE5000024409A +:109B8000330400000D9B002B00D1B2E0099B0C9325 +:109B9000002C05DD31002200029800F0D5FC060003 +:109BA0003000002D11D07168029800F00AFB3100DE +:109BB000040033690C319A1C92000C30FEF73FFA16 +:109BC00001222100029800F0BFFC09960600089BC4 +:109BD0000A9304990398FFF77DFA09990D90040000 +:109BE000039800F003FD320010900499029800F0F1 +:109BF00017FD01230B93C36830340500002B04D1FB +:109C00000100039800F0F2FC0B902900029800F08C +:109C100010FB0B9B209A13430ED1069A013313427B +:109C20000AD1392C26D0109B002B01DD0D9C31343C +:109C30000A9B5D1C1C7081E7109B002B07DB1D003D +:109C4000209B1D4322D10123069A13421ED10B9B58 +:109C5000002BEDDD03990122029800F075FC0499B8 +:109C6000039000F0C3FC002802DCE1D1E307DFD55C +:109C7000392CDBD10A9B0A9A5D1C392313706B1EA9 +:109C80001A78392A67D001321A7057E70A9B5D1C8F +:109C90000B9B002B04DD392CECD001340A9BC9E767 +:109CA0000A9B0C9A1C70089BEB1A93423ED000232F +:109CB0000A220399029800F0D5FA099B0390B34257 +:109CC00009D100230A220999029800F0CBFA0990E1 +:109CD00006000A957DE7099900230A22029800F000 +:109CE000C1FA002309900A223100029800F0BAFA62 +:109CF000EEE7099B0C93089B069304990398FFF7E2 +:109D0000E9F9069B30305D1C18700C9A089B040022 +:109D1000EB1A9A4208DD00230A220399029800F008 +:109D2000A1FA06950390E8E700230993039901221D +:109D3000029800F009FC0499039000F057FC0028F9 +:109D40009DDC01D1E3079AD46B1E1A78302A00D02B +:109D5000F4E61D00F8E7089A9A4203D1312301374F +:109D60001370EBE61D008AE70B4B249A08930B4B0C +:109D7000002A01D0FFF777FAFFF777FA209B012B33 +:109D800000DC21E6119D012035E60C9B002BB2DCA6 +:109D9000209B022BAFDDBCE6C8DC0D10D0DC0D1023 +:109DA000F7B58A8905000C00130760D44B68002BB7 +:109DB00004DC0B6C002B01DC0020FEBDE76A002FE9 +:109DC000FAD000232E682B6080235B01216A1A40A1 +:109DD00034D0606DA3895B0706D56368C01A636BD6 +:109DE000002B01D0236CC01A0200216A0023280036 +:109DF000E76AB847A189431C06D12B681D2B30D8D0 +:109E00002B4ADA40D3072CD50023636023692360F3 +:109E1000CB0405D5431C02D12B68002B00D1606513 +:109E2000616B2E600029C7D023004433994202D0D1 +:109E30002800FEF715F900206063BEE70123280023 +:109E4000B847431CC6D12B68002BC3D01D2B01D0B3 +:109E5000162B01D12E60AFE74023A2891343A381C3 +:109E6000ABE740230B430120A3814042A5E70F69E4 +:109E7000002FA1D00B680F60DB1B0193002392071A +:109E800000D14B69A360019B002B00DC94E7019B90 +:109E90003A00216A2800A66AB047002803DC402364 +:109EA000A2891343DFE7019B3F181B1A0193EAE7DE +:109EB000010040200B6970B505000C00002B01D19A +:109EC000002070BD002804D08369002B01D100F070 +:109ED0005FF80B4B9C4209D16C680C22A35E002BEF +:109EE000EED021002800FFF75BFFEAE7054B9C421C +:109EF00001D1AC68F1E7044B9C42EED1EC68ECE791 +:109F0000F8DC0D1018DD0D10D8DC0D10002310B595 +:109F1000040003604360836081814366C281036102 +:109F200043618361190008225C30FEF791F8054B0C +:109F300024626362044BA362044BE362044B236319 +:109F400010BDC046ADA70D10D5A70D100DA80D1062 +:109F500039A80D1010B5024900F08CF810BDC046AC +:109F6000B59E0D1070B568254A1E55430E00290098 +:109F70007431FEF7BFF8041E08D000212A000160EA +:109F800046600C30A0606832FEF762F8200070BDB9 +:109F9000836913B50400002B28D18364C36403656F +:109FA000134B144A1B6882620193984201D101232A +:109FB0008361200000F020F86060200000F01CF8B1 +:109FC000A060200000F018F80022E0600421606822 +:109FD000FFF79CFF01220921A068FFF797FF0222EB +:109FE0001221E068FFF792FF0123A36113BDC04671 +:109FF00074DB0D10559F0D10F8B51C4B07001E6843 +:10A00000B369002B02D13000FFF7C2FF4836B468B5 +:10A010007368013B04D53368002B07D03668F6E738 +:10A020000C22A55E002D0DD06834F2E70421380023 +:10A03000FFF798FF30600028F0D10C2304003B604C +:10A040002000F8BD20000A4B656625606560A560AC +:10A05000E36025616561A561082229005C30FDF798 +:10A06000F7FF6563A563A564E564E9E774DB0D109C +:10A070000100FFFFF7B504000700002601914834F6 +:10A08000002C01D13000FEBD6368A5680093009BE1 +:10A09000013B009301D52468F2E7AB89012B08D975 +:10A0A0000E22AB5E013304D029003800019B984793 +:10A0B00006436835EBE70000034B1B68186A00286D +:10A0C00000D10248F030704784A10208E8A10208DC +:10A0D00070B50E001D000E23C95E96B01400002955 +:10A0E00007DA00232B60B3891B0611D48023DB0021 +:10A0F0000FE06A4600F0CCFB0028F2DBF022019B67 +:10A1000012021340054A9B185A4253412B60EDE757 +:10A1100040230020236016B070BDC04600E0FFFF62 +:10A12000F7B502268B8905000C00334206D02300C8 +:10A1300047332360236101236361F7BD01AB6A46A6 +:10A14000FFF7C6FF009907002800FDF7D3FF00289E +:10A1500008D10C22A35E9A05EFD4032293431E4339 +:10A16000A681E4E70F4BAB628023A28920601343F2 +:10A17000A381009B20616361019B002B0DD00E2306 +:10A18000E15E280000F096FB002806D00322A38998 +:10A1900093431A0001231343A381A0893843A0816C +:10A1A000CBE7C046559F0D10C9B28218904201D12D +:10A1B0000020704703788B42FBD00130F6E77047F0 +:10A1C000704770B5466A04000D00002E07D11020BC +:10A1D000FDF700FF6062466086600660C660666AE2 +:10A1E000F368002B13D0636AAA00DB689B18186819 +:10A1F000002818D101210E00AE40721D92002000EF +:10A2000000F0C6FA00280CD0456086600DE02122DF +:10A210000421200000F0BCFA636AF060DB68002BC8 +:10A22000E1D1002070BD02681A6000230361C360A1 +:10A23000F8E770B5446A06000D00002C07D1102025 +:10A24000FDF7C8FE7062446084600460C460002D45 +:10A2500007D0736A6A68DB6892009B181A682A60E4 +:10A260001D6070BDF7B51E0014239C4607000C004E +:10A2700000200D698C4463461B68013099B2634627 +:10A280001B6851431B0C534389190E0C9B1989B24F +:10A290001E0C1B045B18614608C18C468542EADC33 +:10A2A000002E1BD0A368AB4212DC63683800591C37 +:10A2B000FFF787FF2100236901909A1C92000C315F +:10A2C0000C30FDF7BCFE21003800FFF7B2FF019C07 +:10A2D0002B1D9B00E31801355E6025612000FEBD4B +:10A2E0000300020C0020824201D11B0410301A0E20 +:10A2F00001D108301B021A0F01D104301B019A0F43 +:10A3000001D102309B00002B03DB01305B0000D445 +:10A31000202070470722036810B501001A400DD0B5 +:10A3200001240020234205D10230034203D0E34040 +:10A3300020000B6010BD9B080B60FBE79CB2100077 +:10A34000002C01D110201B0CDAB2002A01D10830F8 +:10A350001B0A1A0701D104301B099A0701D10230E8 +:10A360009B08DA07E8D45B0801D00130E4E720203D +:10A37000E0E710B50C000121FFF723FF0123446142 +:10A38000036110BDF0B50B691400126989B00D00AE +:10A39000934201DA25000C002F6926696968BB1910 +:10A3A0000293AB68BA19934200DA0131FFF709FF53 +:10A3B0000200BB1914329B00D3189C4600211300E5 +:10A3C000049063451DD31435BF00EB191434B60057 +:10A3D0000593A319039501940793079B019999424B +:10A3E00011D3029B002B06DD04235B429C44634691 +:10A3F0001B68002B51D0049B029A18001A6109B007 +:10A40000F0BD02C3DDE7019B1B6898B200281CD099 +:10A4100015000026039F02CF2C688BB24343090C22 +:10A420004143A4B21B199B190E0029680695090C1B +:10A4300071181E0C89190E0C9BB209040B4308C538 +:10A44000059BBB42E7D8069B5E60019B1B681D0C09 +:10A450001ED0100000271368039E3168046889B27B +:10A460006943240C0919C9190F049BB23B430360CB +:10A4700080CE43683F0C6F439BB2FB18090C5B18FE +:10A48000059906901F0C0430B142E6D806994B603E +:10A49000019B0432043301939FE7029B013B02932B +:10A4A0009FE700000323F7B5134005000E001400DA +:10A4B000002B08D02249013B9A005258002331005A +:10A4C000FFF7D0FE0600A310019336D06C6A002C73 +:10A4D00007D11020FDF77EFD68624460846004604F +:10A4E000C4606F6ABC68002C07D116492800FFF7CA +:10A4F00040FF00230400B86003600122019B134267 +:10A500000AD0310022002800FFF73CFF070031008D +:10A510002800FFF78EFE3E00019B5B1001930CD0DC +:10A520002068002807D1220021002800FFF72AFF19 +:10A530000023206003600400DFE73000FEBDC0465A +:10A5400028DE0D1071020000F0B50D0017002B6918 +:10A55000541185B0E3180193013300934968AB6847 +:10A560000290009A934235DB0298FFF72AFE0023FF +:10A570000200060019001432A3422EDBE343DB176E +:10A580001C402B00A40014192A69143392009A1855 +:10A5900094461F22174024D00132D21B039200227E +:10A5A00019682000B9400A4304C404CB0399CA4087 +:10A5B0009C45F5D84260002A02D0019B02330093EB +:10A5C000009B0298013B33612900FFF732FE300007 +:10A5D00005B0F0BD01315B00C3E7980011500133B5 +:10A5E000CAE704CB04C49C45FBD8E9E70A690369C0 +:10A5F00030B59B1A0DD1920014301431841889188B +:10A60000043C043925680A68954204D00123954228 +:10A6100004D3180030BDA042F2D3FAE75B42F8E75A +:10A62000F0B50D0085B00700110028001400FFF7F9 +:10A63000DDFF061E08D101003800FFF7C2FD01232F +:10A640004661036105B0F0BD01230193002804DBDE +:10A6500023002C001D000023019361683800FFF7E0 +:10A66000B0FD2F000022019B2669C3601434B300A3 +:10A67000E31802932B6914379B00FB180393030024 +:10A680009446143320CC04CF0192AAB294446A4673 +:10A69000614692882D0C8A1A0199090C691A1514C1 +:10A6A00049190D1492B209040A431A60039AAC4680 +:10A6B0000433BA42E6D802991A008C4205D3043A10 +:10A6C0001368002B0ED00661BCE704CC91B2614444 +:10A6D0000D14120C5219151489B212040A43AC4617 +:10A6E00004C3E8E7013EEAE7F7B51D0001211400C5 +:10A6F000089FFFF766FD2B036D0006001B0B6D0D19 +:10A7000024D10193002C27D068460094FFF702FE65 +:10A71000009C00281ED0019B20211A00091A8A40A3 +:10A72000C340224372610193019CB461631E9C414A +:10A7300001343461002D18D0124BED1835232D183B +:10A740003D60181A099B18603000FEBD802252033C +:10A750001343D6E77461E7E701A8FFF7DBFD0124A7 +:10A76000019B346173612030E4E7074BC018074B4D +:10A770003860E3189B00F3185869FFF7B1FD6401D6 +:10A78000201ADFE7CDFBFFFFCEFBFFFFFFFFFF3F00 +:10A790004A4370B511001400FDF7ACFC051E03D050 +:10A7A00022000021FDF754FC280070BD70B50C009C +:10A7B0000E25495F00F0A4F8002803DB636D1B1829 +:10A7C000636570BDA389024A1340A381F9E7C046BF +:10A7D000FFEFFFFFF8B51F008B8905000C00160086 +:10A7E000DB0505D50E23C95E0022022300F074F8B4 +:10A7F000A389054A28001340A38132000E23E15E9D +:10A800003B0000F01FF8F8BDFFEFFFFF70B50C0034 +:10A810000E25495F00F060F8A389421C03D1054A68 +:10A820001340A38170BD802252011343A381606550 +:10A83000F8E7C046FFEFFFFF10B50E23C95E00F03A +:10A8400015F810BD70B50500080011000022064C77 +:10A8500022601A00F7F754FA431C03D12368002B37 +:10A8600000D02B6070BDC0463CB00208002370B51C +:10A87000064C05000800236001F032FE431C03D1A2 +:10A880002368002B00D02B6070BDC0463CB002088E +:10A89000002370B5064C050008001100236001F08C +:10A8A00027FE431C03D12368002B00D02B6070BD12 +:10A8B0003CB00208002370B5064C05000800236078 +:10A8C00001F01EFE431C03D12368002B00D02B6037 +:10A8D00070BDC0463CB0020870B50500080011000C +:10A8E0000022064C22601A0001F012FE431C03D124 +:10A8F0002368002B00D02B6070BDC0463CB002081E +:10A9000070B50500080011000022064C22601A00F4 +:10A91000F7F708FA431C03D12368002B00D02B6003 +:10A9200070BDC0463CB002088446101C62468C468E +:10A93000191C634600E0C0461FB500F0F1FE002878 +:10A9400001D40021C8421FBD10B500F049FE4042AD +:10A95000013010BD10B500F0E3FE002801DB00203F +:10A9600010BD012010BDC04610B500F0D9FE002872 +:10A9700001DD002010BD012010BDC04610B500F063 +:10A980006BFE002801DC002010BD012010BDC04678 +:10A9900010B500F061FE002801DA002010BD012092 +:10A9A00010BDC046F0B54F464646D6460C000903DA +:10A9B000C0B5490A470F5E0039431F03DB0F9C46B1 +:10A9C00065007B0A570F1F436D0DE40F760DA146FE +:10A9D000C000B846D200AB1B64457BD0002B5FDDC6 +:10A9E000002E00D0A4E03E00164300D112E15E1E0E +:10A9F000002E00D09EE1871A4346B84280410125CF +:10AA0000C91A4042091A0B0200D431E149024E0A28 +:10AA1000002E00D16EE13000FDF744FA0300083B40 +:10AA20001F2B00DD61E120223900D21A9E40D14067 +:10AA30009F400E439D4200DD51E15D1B6B1C1F2BAF +:10AA400000DD7CE12021C91A3D0030008F408840A4 +:10AA5000DD40791E8F41310007222843D94000256F +:10AA600007433A40002A09D00F233B40042B05D06E +:10AA70003B1DBB42BF417F42C9191F000B0200D4DE +:10AA800026E26A1CC64B55056D0D9A4200D106E1BF +:10AA9000C44AFF080A40530752023B43120B8EE0A0 +:10AAA000002B00D0B8E06B1C5B055B0D012B00DCBC +:10AAB00030E1871A4346B842B641CB1A76429E1B14 +:10AAC000330200D54CE13B003343A1D100220024E6 +:10AAD000002570E0002B00DCE5E0002E00D183E0D3 +:10AAE000AF4EB54260D0802636043743B846382B87 +:10AAF00000DC3EE1434613431F007A1E97413F1896 +:10AB000087428041404209180B0200D4B0E0A44BB8 +:10AB100001359D4200D1C3E0A24A7B080A400121D1 +:10AB20000F401F435108D30707221F433A4099E7BC +:10AB30009B4EB54238D0802636043743B846382B72 +:10AB400000DDDCE01F2B00DC30E11E004746203E2C +:10AB5000F740BC46202B04D04026F31A46469E40C0 +:10AB60003243170063467A1E97411F43CCE0002B07 +:10AB700000D104E24346134300D159E14B07C0081A +:10AB800018438023C9081B03194208D04546ED0825 +:10AB90001D4204D14346D008590708432900420FFB +:10ABA000C9007F4D1143C0004B07CA087C49C0084B +:10ABB00003438D4268D012036D05120B6D0D002109 +:10ABC00012031800130B0A0D12051A43764B2D05BC +:10ABD00013402B435B00E4075B08234319001CBCB4 +:10ABE00090469946A246F0BD3E00164312D05E1E26 +:10ABF000002E00D000E18718874280414144404246 +:10AC0000091801250B0233D5022585E76446330078 +:10AC1000414610001D00C7E7002D00D0DAE00C000F +:10AC20000443F3D05C1C00D19FE15D4CA64200D1EF +:10AC30002FE1DB43382B00DD66E11F2B00DD83E1D4 +:10AC400020240500E41A0F00DD40D940A04043460F +:10AC5000A7405B1A441EA04198462F433843171A59 +:10AC6000BA42924143465242991A64463500CAE6B6 +:10AC700007223A40002A00D0F6E64B07CA084849A6 +:10AC8000FF083B438D4296D11900114300D19EE14C +:10AC9000802109030A431203120B414D8FE715006F +:10ACA000002200238BE7002B00D0C7E06B1C5F0560 +:10ACB0007F0D012F00DCF1E0394DAB4200D1B9E04E +:10ACC00085180A00854289414244494251180722A9 +:10ACD000CF076D082F4349083A401D00C2E60722FE +:10ACE0003049ED1A31403A40BCE63E0028388640F3 +:10ACF00000279FE63800FDF7D5F820308EE6434662 +:10AD000013431F007A1E9741C71BB842804140423F +:10AD1000091A78E60E003B0006431343002D61D16B +:10AD2000002E00D0F4E0002B00D11BE16446390076 +:10AD3000100039E71A4FBB427AD03300FFE63000EB +:10AD40001F3DE840202B03D04021CB1A9E403743C3 +:10AD50007B1E9F41072207433A400021002589E7D7 +:10AD6000171A4346BA42B641591A76428E1B6446B8 +:10AD70004EE61F2B00DDADE020264746F61AB74011 +:10AD8000B9461700B246DF404E463E4337005646AE +:10AD9000B240561EB24117434246DA408918AEE629 +:10ADA000FF070000FFFF7FFFFFFF0F8020264746C1 +:10ADB000F61AB740B9461700B246DF404E463E434A +:10ADC00037005646B240561EB24117434246DA405B +:10ADD000891A99E77F4CA6425BD0802424045B4209 +:10ADE000214327E7002E0CD1002B00D1CBE0644695 +:10ADF00039001000774DD7E6764FBB4218D03300AC +:10AE000075E6002B14D04B07C00818438023C908EF +:10AE10001B03194207D0FC081C4204D17907D00853 +:10AE20000843E14621004C46420FC9001143C000CF +:10AE3000684DB9E61D0000220023C0E6002D5BD15D +:10AE40000D00054300D1E2E65D1C00D1B0E0614D8C +:10AE5000AE421FD0DB43382B71DC1F2B00DD96E0A8 +:10AE600020250F00ED1AAF40B9460700AA46DF4083 +:10AE70004D463D432F005546A840D940451EA841A8 +:10AE800088440743BF1897429241514241443500DC +:10AE90003AE6644635004146100085E60B00034360 +:10AEA000002D00D063E6002BF5D04346134300D1BC +:10AEB0007AE68718874280410722414440420918B8 +:10AEC0003A400B0200D4D5E6434B01351940C9E5A1 +:10AED000380069E61E004746203EF740BC46202B5E +:10AEE00004D04026F31A46469E403243170063467C +:10AEF0007A1E97411F4302E6364DAE42CAD08025E6 +:10AF00002D045B422943A6E70843411E8841A6E67B +:10AF1000002B00D148E6871A4346B842B641CB1A07 +:10AF200076429E1B33024BD5171A4346BA429241D2 +:10AF3000591A5242891A072264463A4092E501435F +:10AF40000F00791E8F419DE71C000F00203CE74059 +:10AF5000202B03D04024E31A99400843411E884126 +:10AF600038437CE60022002425E6171A4346BA42FD +:10AF70009241591A5242891A6446350043E54146C6 +:10AF80001000144D10E680220024120380E61D00FC +:10AF90000F00203DEF40BC46202B03D04025EB1A8C +:10AFA0009940084307006346781E87411F4369E7BD +:10AFB000871897429B4141445B42C9183500A3E57D +:10AFC0003B003343CED0072231003A4052E6002303 +:10AFD0001A00F4E5FF070000FFFF7FFFF0B55746BA +:10AFE000DE464E464546E0B5834607000E03480060 +:10AFF00085B092461C00360B400DCD0F002800D1C5 +:10B000009DE0954B984239D08023F6001B041E43E7 +:10B01000924A7B0F3343994694460300634400935E +:10B0200000230026FF00029323031B0B98466300B6 +:10B03000E40F52465B0D019400D1B3E086498B4288 +:10B0400000D19EE04246D100802212040A435146BC +:10B05000490F11438B46814952468C4600996344FF +:10B06000CB1A0021D20000932B0063409A460F2E8A +:10B0700000D905E17A4BB6009B599F465B463343A6 +:10B08000994600D0B8E002230826002700900293DA +:10B09000CAE7CB463A0002990195019B9A460229DC +:10B0A00027D0032900D180E2012944D06D49009BBB +:10B0B0008C4663441C00002C38DD530700D013E29B +:10B0C000D2085B46DB0109D55946674B19408B46D0 +:10B0D0008021C9008C46009B63441C00634B9C424A +:10B0E00007DC5B4664055F075B0217431B0B620DC1 +:10B0F00002E000230027584A00211B031C0B0B0D04 +:10B100001B05234314055A4A380013401C43534679 +:10B110006400DB0764081C43210005B03CBC90467A +:10B120009946A246AB46F0BD0122524201231B1BA9 +:10B13000382B00DCADE1002200230027DCE75B4672 +:10B14000334399465ED0002E00D18AE13000FCF7EF +:10B15000A9FE03000B3B1C2B00DD7BE11D22D31A53 +:10B160005A460100DA4008398E4013005F463343E7 +:10B1700099468F403F4B00261B1A009300230293F1 +:10B1800052E7414653460B433B499B468C46009B46 +:10B19000634400935B46002B3BD1022300221E43F5 +:10B1A000022161E7434613439B4637D04346002BB9 +:10B1B00000D162E14046FCF775FE03000B3B1C2BFF +:10B1C00000DD53E102004146083A914088461D21C6 +:10B1D000CB1A5146D9400B0041460B439B46534680 +:10B1E00093401A00009B25499C46604403008C460E +:10B1F00063440093002137E70323B14600900C26F7 +:10B20000029311E7002300930133042600270293E1 +:10B210000AE70323C3461E43032125E701331E43E8 +:10B220000022012120E700239A46802300271B03E8 +:10B23000094A61E7802349461B03194200D1E2E035 +:10B240005946194200D0DEE00B431B0317001B0BCD +:10B25000A246014A50E7C046FF07000001FCFFFF7D +:10B2600034DE0D10FF030000FFFFFFFEFE070000AD +:10B27000FFFF0F800DFCFFFF01F8FFFFF30300004D +:10B28000D94500D9CBE000D1C6E03C0048460027B4 +:10B29000009B013B00935B46160E1B021E431302EC +:10B2A000984633041B0C9946310C0191FCF7FEFBC8 +:10B2B0004A4642430B04210C050019438A4207D930 +:10B2C0008919013D8E4203D88A4201D9851E891908 +:10B2D000881A0199FCF7EAFB09048C464A462104C6 +:10B2E00064464243090C030021438A4204D9891968 +:10B2F000013B8E4200D8F1E02D041D43AB4643468E +:10B30000891A4246280C12041D0C5B46140C2200BC +:10B310001B041B0C5A4303946B434443029568433C +:10B320001B19150CEB189C4203D980246402A44617 +:10B3300060441C0C15041B042D0C20185D1981425F +:10B3400077D373D00C1AA24A7D1BAF42BF419446FB +:10B35000009B7F426344E01B1C00864200D1DBE07F +:10B360000199FCF7A3FB4A4642430B04290C070052 +:10B3700019438A4207D98919013F8E4203D88A426C +:10B3800001D9871E8919881A0199FCF78FFB0904D6 +:10B390004A46894629044D464243090C0300294385 +:10B3A0008A4207D98919013B8E4203D88A4201D9C2 +:10B3B000831E89193F04891A3A00039F1A433800F3 +:10B3C00013041B0C584381460298150C6F434343EA +:10B3D00045434846000C8446DB1963449F4203D929 +:10B3E000802040028446654448461F0C00041B042C +:10B3F000000C7D191818A94200D284E000D17FE02A +:10B4000001231A4357E680234A461B0313431B03B9 +:10B410001B0BAA466F4A6FE6BA4200D935E74B4686 +:10B42000DC0758087B081C43FF0734E70024AF42C1 +:10B4300089D247444745A4415B466442A419641835 +:10B44000013BA6421ED2A0426DD800D1B6E0241A1C +:10B450009B4678E703005A46283B9A4000279146CE +:10B4600088E65846FCF71EFD203072E6030052467F +:10B47000283B9A4093460022B4E65046FCF712FD62 +:10B4800020309AE6A642E2D1B845DCD9341A9B4670 +:10B4900059E71F2B65DC504C0099A4465C4661447B +:10B4A00008008C4011008240D940501E82410C435C +:10B4B00014435A46DA401300620709D00F22224093 +:10B4C000042A05D02200141D9442894149425B1888 +:10B4D0001A0262D50122002300270DE68A4200D815 +:10B4E0000AE7831E891907E70F231340042B00D1B5 +:10B4F000E6E5171D9742924153429B44FA08E0E566 +:10B50000002800D1D7E57118531EB14227D3A942B4 +:10B5100015D358D01A0073E7002B00DC04E6012392 +:10B5200000229B44CDE502234744474589415B42C5 +:10B530009C46494289190C19E344241A03E74346FF +:10B540005F0047459B41B8465B429E19023A891904 +:10B55000A94200D054E7404500D051E7ABE51A00BE +:10B56000F6E71F215F4649420C1BE740202B07D01E +:10B570001A49009B8C46634418005B4683401A437B +:10B58000501E82413A4307270023174009D00F215C +:10B59000002311401400042995D122005F075B02AB +:10B5A0001B0BD20817430022A6E5802359461B0334 +:10B5B0000B431B0317001B0B064A9DE5BD42B2D887 +:10B5C0009B460024BFE68045B9D31A00C3E7C046B6 +:10B5D000FF030000FF0700001E0400003E040000FF +:10B5E000F0B54F464646D6468446C0B58046194E0D +:10B5F00018030F034D00000B5C0082463F0B6D0DDE +:10B60000C90F9146640DDB0F0120B5420AD0B44248 +:10B6100003D0A54201D157450CD01CBC9046994699 +:10B62000A246F0BD66463E43F7D1AC42F5D1544642 +:10B630001443F2D10120C845EFD1994207D0002D23 +:10B64000EBD163461F433800471EB841E5E70020B1 +:10B65000E3E7C046FF070000F0B54F464646D64632 +:10B660004D00C0B50E03C90F8A462C491F035C006C +:10B670008046360B6D0D91463F0B640DDB0F8D42FE +:10B680001ED08C4216D0002D1ED130438446002C93 +:10B6900001D13A4323D06246002A1AD09A4529D0D4 +:10B6A000514602200139084001381CBC9046994699 +:10B6B000A246F0BD39001143E5D002204042F4E734 +:10B6C0003043FAD1AC420FD0002C0FD13A43E7D02F +:10B6D0000CE00122013B934318000130E5E763468B +:10B6E0000020002BE1D0DBE73A43E6D19A45D7D1E1 +:10B6F000A542D5DCA54205DBBE42D1D808D000204A +:10B70000BE42D2D250460123013898430130CCE7E3 +:10B71000C845C5D80020C845F4D3C6E7FF070000D8 +:10B72000F0B54F464646D6464D00C0B50E03C90F8C +:10B730008A462E491F035C008046360B6D0D9146EC +:10B740003F0B640DDB0F8D4218D08C4211D0002DC1 +:10B7500018D130438446002C1ED13A431CD1634695 +:10B760000020002B30D0514602200139084001381A +:10B770002AE039001143EAD0022025E03043FBD112 +:10B78000AC4226D0002C26D13A4324D15146022087 +:10B7900001390840013817E06246002A0FD09A4567 +:10B7A000E1D1A54205DBBE42DDD819D00020BE4262 +:10B7B0000AD25046012301389843013004E00122A7 +:10B7C000013B9343180001301CBC90469946A246A9 +:10B7D000F0BD3A43D0D19A45C5D1A542C3DCE0E7DC +:10B7E000C845C0D80020C845E3D3EDE7FF070000F7 +:10B7F000F0B55746DE464E464546E0B58346060060 +:10B800000F03480087B092461D003F0B400DCC0F40 +:10B81000002800D16FE0DE4B984238D08023FF0033 +:10B820001B041F43730F3B430193DA4B00279946D8 +:10B8300000239B46F60081442B0369001B0B5246F4 +:10B840009846490DED0F002900D185E0D04B994273 +:10B8500000D173E04346DA0080231B0413435246B1 +:10B86000CC48520F84461343524600206144D20014 +:10B8700089442100694000918C46012149448A464F +:10B880000F2F00D990E0C449BF00CF59BF465B4697 +:10B890003B43019300D06AE102230827002681463A +:10B8A0009B46C9E732005846019B61460091022839 +:10B8B00000D175E0032800D1FEE1012800D02CE181 +:10B8C00000230027002600253F032A0D3F0BB34825 +:10B8D00012053A4302401B051343009A5B00D1074F +:10B8E0005B080B433000190007B03CBC90469946FA +:10B8F000A246AB46F0BD5B463B43019300D12FE12E +:10B90000002F00D1A5E13800FCF7CCFA03000B3B77 +:10B910001C2B00DD96E11D22D31A5A460100DA40A5 +:10B920005E4608398F4013008E403B4301939C4B89 +:10B9300000271B1A994600239B467DE74146534644 +:10B940000B4393498C46E144002B00D01AE10222BC +:10B950000220174300228CE7134300D10DE1434638 +:10B96000002B00D181E14046FCF79CFA02000B3A23 +:10B970001C2A00DD72E10100434608398B409846DD +:10B980001D239A1A5346D3401A0043461343524686 +:10B990008A404946081A824989468144002068E75E +:10B9A0007B4B002700268EE7140C1204120C1100AA +:10B9B000370C3604350C794328008C462E00604342 +:10B9C0006044834656432100300C804658467943F4 +:10B9D00040440291844506D98846802149028C461C +:10B9E000E044414602913604010C360C00048B46BB +:10B9F00081191E0C1B041B0C0391190079438C4602 +:10BA0000280075436544A8465843050C45447743D0 +:10BA1000A94203D9802149028C466744290C8C46EF +:10BA200039000004000C2D042D186144AB4405912D +:10BA30005946049101990F043F0C080C39005143F9 +:10BA40004243904602008C46090C8B4662437C437D +:10BA500044445C44A04503D98021490288464244BD +:10BA6000210C884661460904090C8C46390059436B +:10BA7000434370437E430F0CF6182404BE196444FC +:10BA800042448C46B34203D980235B02984640442B +:10BA9000029B61469846049B370443449B46AB4552 +:10BAA000AD416B420D0405992D0C8C467F196744FE +:10BAB000FD18A8465D462D19A542A441934664424F +:10BAC000A446C344DC448F42BF4198459B41934503 +:10BAD0009241A445A4415B427F421F43360C52422F +:10BAE0006442BF192243BF18624638184302D20D80 +:10BAF000039913436A020A43501E82416146ED0DC9 +:10BB00002A434E023243D90100D4B3E00126500843 +:10BB100032400243DE0732435B08224C5444002C7F +:10BB200062DD510709D00F201040042805D0101DF8 +:10BB30009042924152429B180200D90104D58024C0 +:10BB40001948E400034054441848844200DD27E7C4 +:10BB50005E075B02D2081F0B630516435B0DB2E65E +:10BB6000002399460133042700269B4664E60323FD +:10BB7000019781460C279B465EE601220120174370 +:10BB8000002276E6032303201F43434671E6C046A6 +:10BB9000FF07000001FCFFFF74DE0D10FFFF0F80A8 +:10BBA0000DFCFFFFFF030000FFFFFFFEFE0700008C +:10BBB0000023802700933F030026434B83E6019B2D +:10BBC0003200A446584670E6AC466EE680270199DE +:10BBD0003F0339422DD03B422BD11F433F033F0B44 +:10BBE00000951600384B6EE601252D1B382D00DD23 +:10BBF00066E61F2D40DC35481C005044160082408C +:10BC00008440EE40501E824134431443EB406207AF +:10BC100009D00F222240042A05D02200141D94428C +:10BC2000804140421B181A023ED5012300270026FE +:10BC300049E68027019B3F031F433F033F0B0094CE +:10BC4000214B40E603005A46283B9A4000260192C9 +:10BC50006DE65846FCF726F9203057E603005246B9 +:10BC6000283B9A401300002293E65046FCF71AF94D +:10BC700020307BE6CA4650E71F201E004042041BCE +:10BC8000E640202D03D0124C5444A3401A43501ECA +:10BC90008241324307260027164009D00F20002397 +:10BCA000104014000428B9D122005E075B021F0B6C +:10BCB000D2081643002306E680273F031F433F03B5 +:10BCC0003F0B1600004BFEE5FF0700001E040000BE +:10BCD0003E040000F8B557464E464546DE460C0089 +:10BCE0000903E0B5490A460F5F0031431E03DB0F2D +:10BCF000760A9B46530F3343C84E6500C000E40FDD +:10BD0000D2006D0DA24681467F0D9C469046B742FB +:10BD100000D1B9E05B46012673409B46EE1BA3456C +:10BD200000D183E0002E63DD002F00D0B1E0634638 +:10BD3000134300D123E1731E002B00D0BAE1861A11 +:10BD40006346B04280410125C91A4042091A0B02DC +:10BD500000D447E149024B0A98464346002B00D1E4 +:10BD600089E14046FCF79EF80300083B1F2B00DDED +:10BD70007CE120223000D21A4146D0409940020096 +:10BD80009E400A439D4200DD6AE15D1B6B1C1F2B38 +:10BD900000DD94E1202110003500C91A8E40DA4000 +:10BDA0008840DD40711E8E41110007222843002586 +:10BDB00006433240002A09D00F233340042B05D01C +:10BDC000331DB342B641764289191E000B0200D4DE +:10BDD0003DE26A1C914B55056D0D9A4200D119E167 +:10BDE0008F4AF6080A40570752023743120B9BE06E +:10BDF000002E00D0C5E06E1C7605760D012E00DC0D +:10BE000048E16746861ACB1BB042BF417F42B84625 +:10BE10001F004346FF1A3B00B8461B0200D55FE1F6 +:10BE200037439AD100220024002579E0002E00DC5F +:10BE3000FAE0002F00D18DE0784B9D4267D080233F +:10BE400067461B041F43BC46382E00DC52E16346A4 +:10BE500013435A1E93411E188642804140420918DE +:10BE60000B0200D4BEE06D4B01359D4200D1D2E003 +:10BE70006B4A73080A4001210E401E435108D30744 +:10BE800007221E43324095E71E00164300D045E7C7 +:10BE900040E7624B9D423AD0802367461B041F4314 +:10BEA000BC46382E00DDEBE01F2E00DC3AE133000B +:10BEB0006746203BDF403B00202E05D04027BF1BBC +:10BEC0006646BE40324390464646721E9641334314 +:10BED000DAE0002B00D114E26346134300D168E19D +:10BEE00080234E07C008C9081B030643194208D027 +:10BEF0006046C008184204D163460100D2085E07BC +:10BF00001643F3009946C900720F444D11434B4646 +:10BF1000DE08424B4F073743CA089D4200D16EE00E +:10BF200012036D05120B6D0D00211203130B0A0D88 +:10BF300012051A433B4B2D0513402B435B00E407CE +:10BF40005B082343380019003CBC90469946A24642 +:10BF5000AB46F8BD6346134311D0731E002B00D0CF +:10BF600007E1861886428041614440420918012554 +:10BF70000B0237D502257BE73E006146914635002E +:10BF8000C5E75C46002D00D0E1E00B000343F3D091 +:10BF9000731C00D1ACE1214B9F4200D13AE1F34345 +:10BFA000382B00DD6FE11F2B00DD8CE120250E001A +:10BFB000ED1AAE40B0460600AA46DE40454635437F +:10BFC0002E005546D940A8406346451EA8415B1A3D +:10BFD0009C463043161AB242924163465242991A25 +:10BFE0003D00B4E607223240002A00D0E4E60B4BC5 +:10BFF000F6084F073743CA089D4200D090E73B0040 +:10C00000134300D1A6E180231B031A431203120B32 +:10C01000024D89E715000022002785E7FF07000091 +:10C02000FFFF7FFFFFFF0F80002E00D0C7E06B1CDB +:10C030005E05760D012E00DCF0E0C84DAB4200D16C +:10C04000B9E085180A008542894162444942511885 +:10C050000722CE076D082E43490832401D00A9E68D +:10C06000BF49ED1A114007223240A3E632002838BA +:10C070008240002686E63000FBF714FF203073E68E +:10C08000634613435A1E9341C61AB0428041404250 +:10C09000091A5CE60E00674606431743002D5ED181 +:10C0A000002E00D0F3E0002F00D11EE15C46614677 +:10C0B00091462CE7A94FBE427BD01E00F1E610004E +:10C0C0001F3DE840202B03D04021CB1A9A40164355 +:10C0D000731E9E410722064332400021002583E75C +:10C0E000161A6346B2428041591A40420B1A9846CA +:10C0F0005C4632E61F2E00DDABE02027BB1B9A46D4 +:10C1000063465746BB40994613004F46F3401F43D2 +:10C110003B005746BA40571EBA4113436246F240AD +:10C12000891898E62027BB1B9A4663465746BB40B2 +:10C13000994613004F46F3401F433B005746BA4011 +:10C14000571EBA4113436246F240891A9CE7834B5B +:10C150009F425FD080252D047342294320E7002EA3 +:10C160000CD1002F00D1D0E05C46614691467B4D5A +:10C17000CDE67A4FBE421CD01E0065E6002F18D0D7 +:10C18000C0084E0706438020C9080003014208D0BA +:10C190006346DC08044204D12100DA46D2085E0777 +:10C1A0001643F300994601245346C900720F114308 +:10C1B0001C406A4DABE61D0000220027B4E6002DAE +:10C1C00059D10B00034300D1D6E6731C00D1B2E075 +:10C1D000624B9F421ED0F343382B6FDC1F2B00DDD8 +:10C1E00097E020250E00ED1AAE40B0460600AA46A4 +:10C1F000DE40454635432E005546A840D940451EF1 +:10C20000A8418C440643B61896429241514261447B +:10C210003D0025E63D006146914678E60B0003436C +:10C22000002D00D055E6002BF5D06346134300D116 +:10C230006DE686188642804161444042091800221A +:10C240000B0200D4D0E6464B01351940B2E5B146A9 +:10C250005DE633006746203BDF403B00202E05D0E3 +:10C260004027BF1B6646BE40324390464646721E7C +:10C2700096413343EFE5394B9F42CBD080252D04C7 +:10C2800073422943A8E70843411E8841A2E6002FD4 +:10C2900000D13CE66346861ACF1AB0429B415B420E +:10C2A000FB1A98461B024ED5161A6346B2429241BB +:10C2B000591A5242891A5C4600227BE501430E005E +:10C2C000711E8E419FE71D000E00203DEE40B046DE +:10C2D000202B04D04025EB1A99400843814648465C +:10C2E0004346411E8841184374E60022002417E6A5 +:10C2F000161A6346B2429241591A5242891A3D00B7 +:10C3000025E561469146154D01E680220024120381 +:10C3100079E61D000E00203DEE40B046202B04D0F3 +:10C320004025EB1A9940084381464E464346711E0C +:10C330008E411E4367E7861896429B4161445B42EB +:10C34000C9183D008CE547463743CED00722414609 +:10C35000324049E600273A00E6E5C046FF07000004 +:10C36000FFFF7FFF70B50C4E0D031C0349005B00FF +:10C370002D0B490D240B5B0DB14208D0064900205E +:10C380008B4203D114432000441EA04170BD0543DD +:10C390000120002DFAD1F1E7FF07000030B5144D60 +:10C3A0000A034B00120B5B0DC90F0024AB4211DDD9 +:10C3B000104CA34210DC8024640322430E4CE41A88 +:10C3C0001F2C0CDD0D48C31ADA4013005C42002913 +:10C3D00000D11C00200030BD094BCC18FAE7094DF4 +:10C3E000E040AC4663449A4013000343EEE7C04686 +:10C3F000FE0300001D0400003304000013040000CD +:10C40000FFFFFF7FEDFBFFFF70B500282DD0C317A6 +:10C41000C5185D40C40F2800FBF744FD154B1B1ADF +:10C420005B055B0D0A2815DD0B38854000222D03C6 +:10C430002D0B002110002D030A0D2D0B12052A4390 +:10C440000D4D1B052A4013435B00E4075B082343A3 +:10C45000190070BD02002900153291400A000B211D +:10C46000081AC5402D032D0BE3E700240023002507 +:10C470000022DEE71E040000FFFF0F8010B5041E3F +:10C4800025D0FBF70FFD144B1B1A5B055B0D0A282B +:10C4900012DD0B38844000222403240B00211000FD +:10C4A00024030A0D240B120522430C4C1B052240C9 +:10C4B00013435B00590810BD020021001532914062 +:10C4C0000A000B21081AC4402403240BE6E70023CA +:10C4D00000240022E2E7C0461E040000FFFF0F8098 +:10C4E00058220120014B40421A6070473CB00208BC +:10C4F00058220120014B40421A6070473CB00208AC +:10C500005822024B00201A607047C0463CB0020817 +:10C5100058220120014B40421A6070473CB002088B +:10C52000044A1368002B00D1034B18181060180040 +:10C530007047C046DCAD020800000208F8B5C046EE +:10C54000F8BC08BC9E467047F8B5C046F8BC08BCAD +:10C550009E4670470000000001B40248844601BCBA +:10C56000604700BF1DA5020801B40248844601BC13 +:10C57000604700BF03A7020801B40248844601BC1B +:10C58000604700BFEFA3020801B40248844601BC23 +:10C59000604700BF01A70208000000000700010378 +:10C5A00000000100030300003F00010300000F0032 +:10C5B000C0102040030300004000010300000F00F2 +:10C5C00000112040030300003F00010300000F00A2 +:10C5D00040112040030300007F00010300000F0012 +:10C5E00080112040000300000F00010300000F0035 +:10C5F00040122040030300003F00010300000F0031 +:10C6000080122040000300000F00010300000F0013 +:10C6100000162040000300000F00010300000F007F +:10C6200040162040000300000F00010300000F002F +:10C6300080162040000300000F00010300000F00DF +:10C6400000172040000300007F00010300000F00DE +:10C6500040002040030300007F00010300000F00A2 +:10C66000C0002040030300007F00010300000F0012 +:10C6700000012040030300007F00010300000F00C1 +:10C6800080012040005001400900000300000F001D +:10C69000010300000F0000000041014013000707E4 +:10C6A00000007F00802224400103010000000707F2 +:10C6B00000000300002124400103010001000707DE +:10C6C00000000300C020244001030100020007070E +:10C6D00000000F0080202440010301000500050533 +:10C6E00000017E00402024400103010006000303F6 +:10C6F00000017E0000202440010301000CC000075F +:10C7000000000F0000222440010301000D00010180 +:10C710000001700040222440010301000E000303C9 +:10C7200000000100C0212440010301000FC00707E1 +:10C7300000000F00802124400103010010000303CA +:10C740000000040040212440010301000CDF000729 +:10C7500000000F00402224400103010070726F7638 +:10C760005F726571007265736F7572636573004205 +:10C770004F4F5400555047524144450073697A6504 +:10C78000006C61756E6368006D6F6E6F746F6E69BB +:10C790006300656E637279707400656E63727970A0 +:10C7A000745F6B65795F6964006261636B757000CB +:10C7B000626F6F745F617574680075706772616431 +:10C7C000655F6175746800736D69665F69640072A6 +:10C7D0006570726F6772616D00737461727400725C +:10C7E0006570726F766973696F6E00626F6F745FE8 +:10C7F0006C6F61646572006B6579735F616E645F15 +:10C80000706F6C6963696573006D3070007065727C +:10C810006D697373696F6E00636F6E74726F6C0015 +:10C820006B6579006D340073797374656D0073798D +:10C830007363616C6C006D6D696F00726D61006493 +:10C84000657374726F795F66757365730064657381 +:10C8500074726F795F666C6173680070726573657E +:10C860006E74006669726D776172650063657274DB +:10C8700069666963617465006F70656E00646973F1 +:10C8800061626C656400656E61626C656400616C18 +:10C890006C6F77656400646562756700776F756EAD +:10C8A00064696E6700626F6F745F75706772616450 +:10C8B00065007479706500617272617900697465F0 +:10C8C0006D73006E756D62657200696E7465676583 +:10C8D0007200626F6F6C65616E00737472696E676F +:10C8E000006D6178696D756D006D696E696D756D4E +:10C8F000007065726970686572616C730062617363 +:10C90000655F61646472657373006D656D6F7269F4 +:10C91000657300776F726B666C6173680073666C29 +:10C92000617368007372616D00736F667477617212 +:10C9300065006361706162696C69747900464C419D +:10C9400053485F5043315F53504D00464C4153486C +:10C950005F50433200464C4153485F5043330046DA +:10C960004C4153485F50433400464C4153485F4D5F +:10C9700041494E5F434F444500464C4153485F4D4B +:10C9800041494E5F584F00464C4153485F4D414925 +:10C990004E5F4441544100464C4153485F5355500B +:10C9A00045525649534F525900464C4153485F57E0 +:10C9B0004F524B5F53454355524500464C415348F7 +:10C9C0005F574F524B005352414D5F5043305F50C1 +:10C9D000524956005352414D5F5043305F505542CB +:10C9E000005352414D5F53504D5F505249560053D2 +:10C9F00052414D5F53504D5F505542005352414D8F +:10CA00005F5043315F50524956005352414D5F5081 +:10CA100043325F50524956005352414D5F504333A9 +:10CA20005F50524956005352414D5F5043345F505E +:10CA3000524956005352414D5F4D41494E005352A9 +:10CA4000414D5F44415000534D49465F434F44457B +:10CA500000534D49465F584F00534D49465F44418E +:10CA6000544100000000214000002540000001402A +:10CA700000003440000024400000314000003240FB +:10CA800000001F410000234000001140010101018E +:10CA90000101010101101010800019005500F00083 +:10CAA0000501053B04101C01010000000FC000003F +:10CAB0000004000001010101011D3A5778960008A9 +:10CAC0002000101208000000001F00000010000FDE +:10CAD000002000023F06080E00080009000A000BB3 +:10CAE00024282C30340000001000000090000000CA +:10CAF00088000000080000008000000004F0000032 +:10CB000000F00000400200002005A000D00100015C +:10CB10008001A0012000000010000000433A5C5595 +:10CB2000736572735C646D69765C446F63756D6583 +:10CB30006E74735C6379626F6F746C6F616465723D +:10CB40005C70736F633670646C5C64726976657276 +:10CB5000735C696E636C7564652F63795F6970637C +:10CB60005F6472762E6800433A2F55736572732F97 +:10CB7000646D69762F446F63756D656E74732F6392 +:10CB800079626F6F746C6F616465722F70736F631D +:10CB90003670646C2F647269766572732F736F756B +:10CBA0007263652F63795F6770696F2E6300433A24 +:10CBB0005C55736572735C646D69765C446F637514 +:10CBC0006D656E74735C6379626F6F746C6F6164B2 +:10CBD00065725C70736F633670646C5C64726976E6 +:10CBE0006572735C696E636C7564652F63795F67EA +:10CBF00070696F2E6800433A2F55736572732F6406 +:10CC00006D69762F446F63756D656E74732F6379EC +:10CC1000626F6F746C6F616465722F70736F6336CF +:10CC200070646C2F647269766572732F736F75729E +:10CC300063652F63795F6970635F6472762E63004A +:10CC4000433A2F55736572732F646D69762F446F65 +:10CC500063756D656E74732F6379626F6F746C6F3B +:10CC6000616465722F70736F633670646C2F6472C9 +:10CC700069766572732F736F757263652F63795F61 +:10CC80006970635F706970652E6300433A2F557356 +:10CC90006572732F646D69762F446F63756D656E71 +:10CCA00074732F6379626F6F746C6F616465722F38 +:10CCB00070736F633670646C2F647269766572731B +:10CCC0002F736F757263652F63795F70726F742E47 +:10CCD0006300433A2F55736572732F646D69762F25 +:10CCE000446F63756D656E74732F6379626F6F74D3 +:10CCF0006C6F616465722F70736F633670646C2F34 +:10CD0000647269766572732F736F757263652F63D2 +:10CD1000795F7363625F756172742E6300433A2FAB +:10CD200055736572732F646D69762F446F63756DEB +:10CD3000656E74732F6379626F6F746C6F61646575 +:10CD4000722F70736F633670646C2F6472697665CE +:10CD500072732F736F757263652F63795F736D697B +:10CD6000662E6300010010008000E803100000013F +:10CD7000A00F00FA433A2F55736572732F646D69E3 +:10CD8000762F446F63756D656E74732F6379626F70 +:10CD90006F746C6F616465722F70736F633670644B +:10CDA0006C2F647269766572732F736F7572636529 +:10CDB0002F63795F736D69665F6D656D736C6F74FA +:10CDC0002E6300433A2F55736572732F646D697635 +:10CDD0002F446F63756D656E74732F6379626F6F27 +:10CDE000746C6F616465722F70736F633670646CFE +:10CDF0002F647269766572732F736F757263652F16 +:10CE000063795F737973636C6B2E6300433A2F55BC +:10CE1000736572732F646D69762F446F63756D65EA +:10CE20006E74732F6379626F6F746C6F6164657277 +:10CE30002F70736F633670646C2F647269766572DD +:10CE4000732F736F757263652F63795F737973697D +:10CE50006E742E6300433A2F55736572732F646DA1 +:10CE600069762F446F63756D656E74732F63796295 +:10CE70006F6F746C6F616465722F70736F6336705F +:10CE8000646C2F647269766572732F736F75726349 +:10CE9000652F63795F737973706D2E6300433A2F4A +:10CEA00055736572732F646D69762F446F63756D6A +:10CEB000656E74732F6379626F6F746C6F616465F4 +:10CEC000722F70736F633670646C2F64657669635C +:10CED00065732F70736F63362F737461727475701E +:10CEE0002F73797374656D5F70736F63365F636DF5 +:10CEF00030706C75732E63000100000006000000A6 +:10CF0000120000000000000000000000000000000F +:10CF10000000000000000000000000000000000011 +:10CF20000000000000000000000000005B455252BD +:10CF30005D20546865726520697320616E2065729A +:10CF4000726F72206F6363757272656420647572AC +:10CF5000696E6720626F6F746C6F616465722066C2 +:10CF60006C6F772E204D43552073746F707065641D +:10CF70002E0A0D005B4552525D204572726F722081 +:10CF80002578207768696C6520656E61626C696ED2 +:10CF90006720434D342061636365737320706F7243 +:10CFA000740A0D005B494E465D2054455354204D94 +:10CFB0004F44450A0D00000003000000010000007E +:10CFC00001000000000000000503600004000000F4 +:10CFD00001000000000000000100000006046000E5 +:10CFE000080000001CC0020879520D1050534F4336 +:10CFF000365F464C415348005B494E465D20200A4F +:10D000000D005B494E465D202F2A2A2A2A2A2A2A09 +:10D010002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A70 +:10D020002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A60 +:10D030002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2F4B +:10D040000A0D005B494E465D202050536F43362049 +:10D050004379426F6F746C6F6164657220417070C8 +:10D060006C69636174696F6E2025752E25752E2598 +:10D07000752E2575200A0D005B494E465D205374C0 +:10D08000617274696E6720626F6F746C6F61646542 +:10D09000720A0D005B4552525D20506F6C696379D6 +:10D0A0002070617273696E67206661696C656420C7 +:10D0B0007769746820636F64652025690A0D005BD9 +:10D0C0004552525D204170706C79696E67207072B4 +:10D0D0006F74656374696F6E2073657474696E67CD +:10D0E00073206661696C6564207769746820636F7A +:10D0F00064652025690A0D005B4552525D20534D41 +:10D10000494620626C6F636B206661696C656420C0 +:10D11000746F20737461727420776974682065720B +:10D12000726F7220636F64652025690A0D005B4988 +:10D130004E465D20534D4946204D656D6F72792FE7 +:10D14000584950204D6F64650A0D005B494E465D9D +:10D150002050726F63657373696E672061766169D1 +:10D160006C61626C6520696D616765730A0D005BB7 +:10D170004552525D20556E61626C6520746F206669 +:10D18000696E6420626F6F7461626C6520696D61A5 +:10D1900067650A0D005B494E465D204A756D7069F2 +:10D1A0006E6720746F2074686520696D6167652003 +:10D1B000696E20736C6F7420300A0D005B4552520B +:10D1C0005D204E657665722073686F756C642067AC +:10D1D000657420686572650A0D000000ECCF0D10C3 +:10D1E00019640D1000000000DCD10D10DCD80D100A +:10D1F0000000000000000000070000000100000027 +:10D20000000000000000000008000000080000000E +:10D21000000200000000000000000000000000000C +:10D2200000000000000000000000000000000000FE +:10D230000B0000003F000000000000003F00000065 +:10D2400000000000010000000E00000011000000BE +:10D2500000000000000000000000000000000000CE +:10D2600000000000000000000000000000000000BE +:10D270000000000000000000010000000E0000009F +:10D28000110000000000000000000000000000008D +:10D29000000000000000000000000000000000008E +:10D2A000000000000000000000000000010000007D +:10D2B0000E0000001100000000000000000000004F +:10D2C000000000000000000000000000000000005E +:10D2D000000000000000000000000000000000004E +:10D2E000010000000E00000011000000000000001E +:10D2F000000000000000000000000000000000002E +:10D30000000000000000000000000000000000001D +:10D3100000000000010000000600000011000000F5 +:10D3200000000000000000000000000000000000FD +:10D3300000000000000000000000000000000000ED +:10D3400000000000000000000100000006000000D6 +:10D3500011000000000000000000000000000000BC +:10D3600000000000000000000000000000000000BD +:10D3700000000000000000000000000001000000AC +:10D38000000000000000000000000000000000009D +:10D39000000000000000000000000000000000008D +:10D3A000000000000000000000000000000000007D +:10D3B000010000000000000000000000000000006C +:10D3C000000000000000000000000000000000005D +:10D3D000000000000000000000000000000000004D +:10D3E0000000000001000000060000001D00000019 +:10D3F000000000000000000000000000000000002D +:10D40000000000000000000000000000000000001C +:10D410000000000000000000010000000A00000001 +:10D420001D000000000000000000000000000000DF +:10D4300000000000000000000000000000000000EC +:10D4400000000000000000000000000001000000DB +:10D450000B0000001D0000000000000000000000A4 +:10D4600000000000000000000000000000000000BC +:10D4700000000000000000000000000000000000AC +:10D48000433A5C55736572735C646D69765C446F96 +:10D4900063756D656E74735C6379626F6F746C6FC6 +:10D4A000616465725C70736F633670646C5C647227 +:10D4B00069766572735C696E636C7564652F6379F8 +:10D4C0005F737973636C6B2E68000000F4010000D9 +:10D4D000140004010A0009050800030063010000AC +:10D4E000020000000300000000000000000000181F +:10D4F0000000800000000000C8D60D106000000091 +:10D5000000000000FFFFFFFF00000000000000001F +:10D51000000000002000000000000000FFFFFFFFEF +:10D5200000000000000000000000000002000000F9 +:10D5300000000000FFFFFFFF0000000000000000EF +:10D5400000000000EB0000000002000001000000ED +:10D55000020000000800000002000000350000008A +:10D5600000000000FFFFFFFF0000000000000000BF +:10D57000000000000500000000000000FFFFFFFFAA +:10D580000000000000000000000000000400000097 +:10D5900000000000FFFFFFFF00000000000000008F +:10D5A000000000000600000000000000FFFFFFFF79 +:10D5B000000000000000000000000000010000006A +:10D5C00000000000FFFFFFFF00000000000000005F +:10D5D0000000000001000000030000000000000047 +:10D5E00000000018000000010000000014D70D101A +:10D5F0006000000000000000FFFFFFFF00000000CF +:10D6000000000000000000002000000000000000FA +:10D61000FFFFFFFF0000000000000000000000000E +:10D620003800000000020000FFFFFFFF02000000C2 +:10D630000000000002000000EB00000000020000FB +:10D6400001000000020000000400000002000000D1 +:10D650003500000000000000FFFFFFFF0000000099 +:10D6600000000000000000000500000000000000B5 +:10D67000FFFFFFFF000000000000000000000000AE +:10D680000400000000000000FFFFFFFF000000009A +:10D690000000000000000000060000000000000084 +:10D6A000FFFFFFFF0000000000000000000000007E +:10D6B0000100000000000000FFFFFFFF000000006D +:10D6C00000000000000000000300000000008000D7 +:10D6D00044D50D10A4D50D108CD50D1014D50D10FA +:10D6E00000100000FCD40D102CD50D10000100001E +:10D6F00074D50D105CD50D10BCD50D1000000000C8 +:10D70000010000000200000041000000D8D6000027 +:10D71000C2010000030000000000000138D60D1017 +:10D7200098D60D1080D60D1008D60D1000100000F0 +:10D73000F0D50D1020D60D100001000068D60D1098 +:10D7400050D60D10B0D60D100000000001000000F2 +:10D75000020000008C000000409C0000FA00000065 +:10D76000010000005CA80208010000001400000095 +:10D7700007008E00010000005B4552525D204D65A0 +:10D780006D6F7279204D6F64756C652052656164B0 +:10D7900020537461747573206661696C65642077C9 +:10D7A000697468206572726F7220636F64652025EA +:10D7B000690A0D005B4552525D204D656D6F7279AF +:10D7C000204D6F64756C652051756164456E6162B2 +:10D7D0006C65206661696C65642077697468206592 +:10D7E00072726F7220636F64652025690A0D005B99 +:10D7F0004552525D20534D494620496E7465727200 +:10D8000075707420696E697469616C697A61746994 +:10D810006F6E206661696C65642077697468206545 +:10D8200072726F7220636F64652025690A0D005B58 +:10D83000494E465D20534D494620426C6F636B2034 +:10D84000456E61626C65640D0A0A0D005B494E46C7 +:10D850005D20534D4946204E6F726D616C204D6FB7 +:10D8600064650A0D005B4552525D20696E76616CFD +:10D870006964206172656120257020286964202513 +:10D8800075290A0D005B4552525D20617265612069 +:10D8900025752075736520636F756E7420756E64D1 +:10D8A0006572666C6F770A0D005B4552525D2069A8 +:10D8B0006E76616C696420666C61736820494420EF +:10D8C00025643B2065787065637465642025640A6F +:10D8D0000D000000000008000002000055630D105C +:10D8E00081640D1095640D1051630D1041630D108E +:10D8F0000400000077C295F360D2EF7F3552500FDD +:10D900002CB67980000100FF000200010001000335 +:10D910000103FF0001047065726D0074657374008B +:10D920004255473B2063616E2774206861707065C3 +:10D930006E00726576657274005B494E465D2053D9 +:10D9400077617020747970653A2025730A0D005B49 +:10D95000494E465D205377617020747970653A2096 +:10D960006E6F6E650A0D005B494E465D20496D6124 +:10D970006765207570677261646520736C6F7431C0 +:10D98000202D3E20736C6F74300A0D005B494E46AB +:10D990005D2045726173696E6720736C6F74300A25 +:10D9A0000D005B494E465D20436F7079696E6720BC +:10D9B000736C6F74203120746F20736C6F7420301F +:10D9C0003A203078256C782062797465730A0D00EE +:10D9D0005B57524E5D204661696C656420726561DB +:10D9E00064696E6720736563746F72733B20424F86 +:10D9F0004F545F4D41585F494D475F534543544F26 +:10DA000052533D2564202D20746F6F20736D616C1F +:10DA10006C3F0A0D005B57524E5D2043616E6E6F86 +:10DA20007420757067726164653A206D6F7265204D +:10DA3000736563746F7273207468616E20616C6CBF +:10DA40006F7765640A0D005B57524E5D2043616E2F +:10DA50006E6F7420757067726164653A206E756DC3 +:10DA6000626572206F6620736563746F72732064E1 +:10DA70006966666572206265747765656E20736C91 +:10DA80006F74730A0D005B57524E5D2043616E6EDA +:10DA90006F7420757067726164653A20616E2069E9 +:10DAA0006E636F6D70617469626C65207365637419 +:10DAB0006F722077617320666F756E640A0D005B6C +:10DAC000494E465D20456E637279707465640A0D37 +:10DAD000005B494E465D204E4F4E2D456E63727978 +:10DAE000707465640A0D005B4552525D2070616E72 +:10DAF0006963210A0D005B4552525D20496D6167E3 +:10DB00006520696E20736C6F742025642069732012 +:10DB10006E6F742076616C6964210A0D000000C08C +:10DB2000E0F0F8FC6E756C6C0066616C73650074F7 +:10DB3000727565004142434445464748494A4B4C4B +:10DB40004D4E4F505152535455565758595A616281 +:10DB5000636465666768696A6B6C6D6E6F7071721D +:10DB6000737475767778797A303132333435363765 +:10DB70003839000088A102084300504F534958002B +:10DB80002E00232D302B2000686C4C006566674505 +:10DB9000464700494E4600696E66004E414E006E93 +:10DBA000616E003000303132333435363738394128 +:10DBB0004243444546003031323334353637383904 +:10DBC0006162636465660000202020202020202000 +:10DBD000202828282828202020202020202020201D +:10DBE000202020202020202088101010101010103D +:10DBF0001010101010101010040404040404040485 +:10DC00000404101010101010104141414141410115 +:10DC100001010101010101010101010101010101F4 +:10DC20000101011010101010104242424242420203 +:10DC300002020202020202020202020202020202C4 +:10DC4000020202101010102000000000000000006E +:10DC500000000000000000000000000000000000C4 +:10DC600000000000000000000000000000000000B4 +:10DC700000000000000000000000000000000000A4 +:10DC80000000000000000000000000000000000094 +:10DC90000000000000000000000000000000000084 +:10DCA0000000000000000000000000000000000074 +:10DCB0000000000000000000000000000000000064 +:10DCC0000000000000000000496E66696E6974790A +:10DCD000004E614E00000000000000000000000047 +:10DCE0000000000000000000000000000000000034 +:10DCF0000000000000000000000000000000000024 +:10DD00000000000000000000000000000000000013 +:10DD10000000000000000000000000000000000003 +:10DD200000000000000000000000000000000000F3 +:10DD300000000000000000000080E03779C341438C +:10DD4000176E05B5B5B89346F5F93FE9034F384D61 +:10DD5000321D30F94877825A3CBF737FDD4F15750D +:10DD6000000000000000F03F000000000000244020 +:10DD700000000000000059400000000000408F40FB +:10DD8000000000000088C34000000000006AF84066 +:10DD90000000000080842E4100000000D01263418A +:10DDA0000000000084D797410000000065CDCD4100 +:10DDB000000000205FA00242000000E876483742E1 +:10DDC000000000A2941A6D42000040E59C30A2427F +:10DDD0000000901EC4BCD64200003426F56B0C43F4 +:10DDE0000080E03779C3414300A0D885573476439B +:10DDF00000C84E676DC1AB43003D9160E458E143FC +:10DE0000408CB5781DAF154450EFE2D6E41A4B4470 +:10DE100092D54D06CFF08044F64AE1C7022DB544B5 +:10DE2000B49DD9794378EA44050000001900000048 +:10DE30007D00000080B20D10F2B00D1036B10D1053 +:10DE40009AB00D1036B10D1026B20D1036B10D106E +:10DE50009AB00D10F2B00D10F2B00D1026B20D10E8 +:10DE60009AB00D1092B00D1092B00D1092B00D102E +:10DE700034B20D10A8B90D10AAB80D10AAB80D1023 +:10DE8000C8BB0D10A4B80D10A4B80D10B0BB0D1078 +:10DE9000C8BB0D10A4B80D10B0BB0D10A4B80D1068 +:10DEA000C8BB0D10BEBB0D10BEBB0D10BEBB0D1010 +:08DEB000CCBB0D1000000000C6 +:08DEB800689EFF7F01000000DD +:10DEC00000000D1000A00208C0000000E8DE0D10E8 +:08DED000C0A00208F0060000EA +:10DED800ECA702085408000000C002089C010000DA +:10DEE8003DC90D104BC90D1055C90D105FC90D1056 +:10DEF80069C90D1079C90D1087C90D1097C90D1082 +:10DF0800A9C90D10BBC90D10C6C90D10D4C90D1073 +:10DF1800E1C90D10EFC90D10FCC90D100ACA0D108A +:10DF280018CA0D1026CA0D1034CA0D103ECA0D109D +:10DF380047CA0D1051CA0D1059CA0D1000093D00ED +:10DF480000127A0000093D000000D00700093D00DA +:10DF5800A00F000004000000D4D50D10E0D40D106F +:10DF6800EFBE0DD0016F00000000000000000200AD +:10DF780000000000EFBE0DD0026F00000000050099 +:10DF88000000020000000000EFBE0DD0036F00008B +:10DF980000000F000010000000000000E97F0D10D5 +:10DFA800D57F0D1088A1020800000000F8DC0D10D4 +:10DFB80018DD0D10D8DC0D10000000000000000076 +:10DFC8000000000000000000000000000000000049 +:10DFD8000000000000000000000000000000000039 +:10DFE8000000000000000000000000000000000029 +:10DFF8000000000000000000000000000000000019 +:10E0080000000000000000004300000000000000C5 +:10E0180000000000000000000000000000000000F8 +:10E0280000000000000000004300000000000000A5 +:10E0380000000000000000000000000000000000D8 +:10E048000000000000000000430000000000000085 +:10E0580000000000000000000000000000000000B8 +:10E068000000000000000000430000000000000065 +:10E078000000000000000000000000000000000098 +:10E088000000000000000000430000000000000045 +:10E098000000000000000000000000000000000078 +:10E0A8000000000000000000430000000000000025 +:10E0B8000000000000000000000000000000000058 +:10E0C8000000000000000000430000000000000005 +:10E0D8000000000000000000000000000000000038 +:10E0E8000000000000000000D18F0D10FD7F0D1012 +:10E0F80000000000C7DB0D1080DB0D104BD80D10A1 +:10E108004BD80D104BD80D104BD80D104BD80D1007 +:10E118004BD80D104BD80D104BD80D104BD80D10F7 +:10E12800FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000F5 +:10E13800010041534349490000000000000000006D +:10E1480000000000000000000000000000000000C7 +:10E15800000041534349490000000000000000004E +:10E1680000000000000000000000000000000000A7 +:10E1780000000000E9000D10C1000D1080B230B59C +:10E18800C00020D0104B07221C682300B0331B8826 +:10E198005A43236AD31819680029FCDA3E210B4B2D +:10E1A800062519600A4B0B491960A3210A4BC900BF +:10E1B8005D500A4958505858206A1218002050607B +:10E1C8005A58002AFCDA30BDE0AD020804012640A6 +:10E1D800080126401E1F0000000026401C05000004 +:10E1E80010B54378FF2B11D100F0A2F904000320E9 +:10E1F80000F0C6F9C3685A68012311681943116011 +:10E2080011681942FCD1200000F0D2F910BDF7B511 +:10E2180000900020019100F0B3F93F4D06002B68F3 +:10E228001A005033B43214681B780419002B5AD0E2 +:10E2380000F0AEF9070003281BD000F079F9374A3F +:10E24800374B0500D358002B3EDA364A01213000FF +:10E2580000F0A6F9002837D10198FFF78FFF009B3F +:10E26800002B3ED02368002BFCDB00F069F904008A +:10E278002BE0062000F084F92B68B4331B68C01823 +:10E288000368002B02DA284C2000FEBD002000F0B5 +:10E298005FF9264B9842F6D00023254A19001268E8 +:10E2A800012000F05DF90025A842ECD1002000F023 +:10E2B8004FF91E4A1F4B904203D09D42E3D00135CF +:10E2C800F4E79D42B9D1DEE7174C032F05D10121B0 +:10E2D800002000F04DF90028F9D1280000F068F975 +:10E2E800D2E7154CF1E700F023F90E4A05000121A9 +:10E2F800300000F055F9002809D1009B002B08D008 +:10E308002368002BFCDB00F01BF90400E5E7064C52 +:10E31800E3E7094CE1E7C046E0AD0208000026400B +:10E328001C05000008A80208050052000101880029 +:10E3380018A80208F049020001005000F7B56E4D18 +:10E3480004002A68536800931300B0331988072320 +:10E358004B43126A9B181A68002AFCDA00F030F95D +:10E368002A681300B033198807234B43212800D0AB +:10E3780096E0116A5B180221D8680143D960D96810 +:10E38800C9072FD508208446944460461600D968EA +:10E39800C06F0191116888360818356807684919EF +:10E3A8000D683902FF273F040F40694689882D0A06 +:10E3B8002D0639432943D960902103684F4D09013F +:10E3C8002B400B430360136830681B18186805401E +:10E3D8002943196013686246D26F9A181268326826 +:10E3E8009B181B68444D2A681300B033198807230B +:10E3F8004B43126A9B1800225A600423404A116951 +:10E408000B431361012C50D030BF2A681300B0337E +:10E41800198807234B43126A9B181A68002AFCDAEA +:10E4280000F0CEF8212842D1296807220B000124E8 +:10E43800B0331B8800205A430B6AD318DD68254285 +:10E448001CD0080008300D68C06F2C4E28180568CD +:10E45800DB6835401B0C1B061B0C2B4303600B00B1 +:10E46800883318680B6818180B6A0568D318DB68B6 +:10E478002E401B0E1B023343036020000B6A02214F +:10E48800D218D3688B43D3601B4B1A681300B03380 +:10E49800198807234B43126A9B1800225A60FEBD55 +:10E4A800126A9B18174ADA609CE720BFADE7002084 +:10E4B800009BFC331B698342E6D1A320124B13490E +:10E4C800134A144FC0000E681D5814680F600627C1 +:10E4D8001F503E20106010483E371F501F58002F15 +:10E4E800FCDA00980D4FFC3007610E60A321C900CB +:10E4F8005D5001201460C7E7E0AD0208FF00FFFF90 +:10E5080000ED00E024A8020800002640080126408B +:10E51800040126401E1F00001C050000AAAAAAAA82 +:10E52800FEE7024A1368002BFCDB70470001264017 +:10E5380001B40248844601BC604700BF631D0D104A +:10E5480001B40248844601BC604700BF911E0D100B +:10E5580001B40248844601BC604700BF71280D1011 +:10E5680001B40248844601BC604700BF79250D10FC +:10E5780001B40248844601BC604700BFFD270D1066 +:10E5880001B40248844601BC604700BF5D1E0D10FF +:10E5980001B40248844601BC604700BF79510D10A0 +:10E5A80001B40248844601BC604700BF81230D10B6 +:10E5B80001B40248844601BC604700BF6B1D0D10C2 +:10E5C80001B40248844601BC604700BF2D480D10C5 +:10FE0000FC010000211221010000000000000000A0 +:10FE100000000D1000FE00000000010009000000BD +:10FE20000100000000DA0F100000000000000000D8 +:10FE300000000000000000000000000000000000C2 +:10FE400000000000000000000000000000000000B2 +:10FE500000000000000000000000000000000000A2 +:10FE60000000000000000000000000000000000092 +:10FE70000000000000000000000000000000000082 +:10FE80000000000000000000000000000000000072 +:10FE90000000000000000000000000000000000062 +:10FEA0000000000000000000000000000000000052 +:10FEB0000000000000000000000000000000000042 +:10FEC0000000000000000000000000000000000032 +:10FED0000000000000000000000000000000000022 +:10FEE0000000000000000000000000000000000012 +:10FEF0000000000000000000000000000000000002 +:10FF000000000000000000000000000000000000F1 +:10FF100000000000000000000000000000000000E1 +:10FF200000000000000000000000000000000000D1 +:10FF300000000000000000000000000000000000C1 +:10FF400000000000000000000000000000000000B1 +:10FF500000000000000000000000000000000000A1 +:10FF60000000000000000000000000000000000091 +:10FF70000000000000000000000000000000000081 +:10FF80000000000000000000000000000000000071 +:10FF90000000000000000000000000000000000061 +:10FFA0000000000000000000000000000000000051 +:10FFB0000000000000000000000000000000000041 +:10FFC0000000000000000000000000000000000031 +:10FFD0000000000000000000000000000000000021 +:10FFE0000000000000000000000000000000000011 +:10FFF0000000000000000000000000000000862D4E +:04000005100D4EDFAD +:00000001FF diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt new file mode 100644 index 00000000000..1484a8ef3da --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt @@ -0,0 +1 @@ +eyJhbGciOiJFUzI1NiJ9.eyJjeV9wdWJfa2V5Ijp7ImNydiI6IlAtMjU2Iiwia2lkIjoiMyIsImt0eSI6IkVDIiwidXNlIjoic2lnIiwieCI6IlNiOGxUcHlfcGQzTnJVVGtoSXpnMmp6TTM3dU5xTml1dDhXQy1RdjNYTVEiLCJ5IjoiQ3R3Q2k0YXJYc2pFRDVUVm1yX3ZQbFAya2UxMzNLSzdsUDdTel9JWmlERSJ9LCJleHAiOjE1Nzc3NDMyMDAsImlhdCI6MTU2MjMzOTY0MywiaW1hZ2VfYWRkcmVzcyI6MjY5Mjg3NDI0LCJpbWFnZV9maWxlIjoiQ3lwcmVzc0Jvb3Rsb2FkZXJfQ00wcC5oZXgiLCJpbWFnZV9oYXNoIjpbMTkyLDIxNiwyMDMsNjUsMTQxLDc5LDgwLDE0NCwxOTYsMzUsNTAsNDUsMTI5LDEzNCwyNSwyNDksOTUsMzgsMTgzLDY1LDI0MiwxMTEsNzAsNDcsOTksNTksMTkzLDE0MSw5OSw5OCwyMjQsMTE2XSwiaW1hZ2VfaWQiOjAsImltYWdlX3ZlcnNpb24iOiIxLjAuMC45IiwicG9saWN5X3RlbXBsYXRlIjoiIn0.N3VTh3_2F7H9HlOKNBzWCzlO3THIVjxKHL9AGc0KkL0GavZ4TU6k3O7grXi4ZxZNR9eGUWWHx6lxGpeYYg3D-g \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/LICENSE b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/LICENSE new file mode 100644 index 00000000000..7adfadddb21 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/LICENSE @@ -0,0 +1,51 @@ +Copyright (c) 2018-2019 Cypress Semiconductor Corporation + +Permissive Binary License + +Version 1.0, September 2015 + +Redistribution. Redistribution and use in binary form, without +modification, are permitted provided that the following conditions are +met: + +1) Redistributions must reproduce the above copyright notice and the + following disclaimer in the documentation and/or other materials + provided with the distribution. + +2) Unless to the extent explicitly permitted by law, no reverse + engineering, decompilation, or disassembly of this software is + permitted. + +3) Redistribution as part of a software development kit must include the + accompanying file named "DEPENDENCIES" and any dependencies listed in + that file. + +4) Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +Limited patent license. The copyright holders (and contributors) grant a +worldwide, non-exclusive, no-charge, royalty-free patent license to +make, have made, use, offer to sell, sell, import, and otherwise +transfer this software, where such license applies only to those patent +claims licensable by the copyright holders (and contributors) that are +necessarily infringed by this software. This patent license shall not +apply to any combinations that include this software. No hardware is +licensed hereunder. + +If you institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the software +itself infringes your patent(s), then your rights granted under this +license shall terminate as of the date such litigation is filed. + +DISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS." ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT +NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/cy_auth.jwt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/cy_auth.jwt new file mode 100644 index 00000000000..ce5af311fca --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/cy_auth.jwt @@ -0,0 +1 @@ +eyJhbGciOiJFUzI1NiJ9.eyJhdXRoIjp7fSwiY3lfcHViX2tleSI6eyJjcnYiOiJQLTI1NiIsImtpZCI6IjMiLCJrdHkiOiJFQyIsInVzZSI6InNpZyIsIngiOiJTYjhsVHB5X3BkM05yVVRraEl6ZzJqek0zN3VOcU5pdXQ4V0MtUXYzWE1RIiwieSI6IkN0d0NpNGFyWHNqRUQ1VFZtcl92UGxQMmtlMTMzS0s3bFA3U3pfSVppREUifSwiZXhwIjoxNTc3NzQzMjAwLCJoc21fcHViX2tleSI6eyJjcnYiOiJQLTI1NiIsImtpZCI6IjQiLCJrdHkiOiJFQyIsInVzZSI6InNpZyIsIngiOiJzSk1zTi0ySm8yN2tjNTF3Vks3eEoyZlA5QkRrekFjMmZaRVpNbG9oSFhBIiwieSI6Ik1XbHV6bVhnWE92ZFFRRFlYM3l5MVRrOVFvSEwtOURaaHN3WnBZMFhlNVUifSwiaWF0IjoxNTUzNjg1NTczLCJ0eXBlIjoiQ1lfQVVUSF9IU00ifQ.oXeFYugOceM2XvnoWTEju8ByztA4OvFKrQxndIOts_nlgmRti2ddoHRGR86GMNCDfcHr54mXH33GkQ8D96DoGw \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/hsm_state.json b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/hsm_state.json new file mode 100644 index 00000000000..e2481709d9f --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/hsm_state.json @@ -0,0 +1,18 @@ +{ + "hsm_priv_key": { + "crv": "P-256", + "d": "d-r9nPjLka7g5BHiT7OexYV7na-ofuNfjPPN4XvP_yQ", + "kty": "EC", + "use": "sig", + "x": "sJMsN-2Jo27kc51wVK7xJ2fP9BDkzAc2fZEZMlohHXA", + "y": "MWluzmXgXOvdQQDYX3yy1Tk9QoHL-9DZhswZpY0Xe5U" + }, + "hsm_pub_key": { + "crv": "P-256", + "kty": "EC", + "use": "sig", + "kid": "4", + "x": "sJMsN-2Jo27kc51wVK7xJ2fP9BDkzAc2fZEZMlohHXA", + "y": "MWluzmXgXOvdQQDYX3yy1Tk9QoHL-9DZhswZpY0Xe5U" + } +} \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/oem_state.json b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/oem_state.json new file mode 100644 index 00000000000..978cfbd2358 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/oem_state.json @@ -0,0 +1,18 @@ +{ + "oem_priv_key": { + "crv": "P-256", + "d": "JVozA1oRvg-zSotMUbrGebV3oBhBaF1mqUyEn_Fdcqc", + "kty": "EC", + "use": "sig", + "x": "vfb7_jewTxpFVINcXdrZQJBArC5igrN0BLc783FigrM", + "y": "9rBBUKXzpj1A5K7fxPtEaJdsfo7Jj_wsF7LTZLc-sPM" + }, + "oem_pub_key": { + "crv": "P-256", + "kty": "EC", + "use": "sig", + "kid": "5", + "x": "vfb7_jewTxpFVINcXdrZQJBArC5igrN0BLc783FigrM", + "y": "9rBBUKXzpj1A5K7fxPtEaJdsfo7Jj_wsF7LTZLc-sPM" + } +} \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/LICENSE-2.0.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/LICENSE-2.0.txt new file mode 100644 index 00000000000..7a4a3ea2424 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/LICENSE-2.0.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/README.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/README.txt new file mode 100644 index 00000000000..3c082fb3baa --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/README.txt @@ -0,0 +1,5 @@ +The following are licensed under the Apache 2.0 license: + +mcuboot +Mbed Crypto + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/MIT/cjason-license.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/MIT/cjason-license.txt new file mode 100644 index 00000000000..9b4fcd8266b --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/MIT/cjason-license.txt @@ -0,0 +1,23 @@ +Copyright (c) 2009 Dave Gamble + +Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + +The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +*/ + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt new file mode 100644 index 00000000000..d95796bd1b5 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt @@ -0,0 +1,63 @@ +Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX + +ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. + +1. DEFINITIONS. "Software" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees and/or those portions of such software produced by jlink as output using a Program’s code, when such output is in unmodified form in combination, and for sole use with, that Program, as well as any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. The Java Linker (jlink) is available with Java 9 and later versions. "General Purpose Desktop Computers and Servers" means computers, including desktop and laptop computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. "Programs" means (a) Java technology applets and applications intended to run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers; and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. “Java SE LIUM” means the Licensing Information User Manual – Oracle Java SE and Oracle Java Embedded Products Document accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. “Commercial Features” means those features that are identified as such in the Java SE LIUM under the “Description of Product Editions and Permitted Features” section. + +2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE COMMERCIAL FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE AS SET FORTH IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND PUBLISHERS. + +3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. + +4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. + +5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). + +6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software. + +7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/us/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation. + +8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations ("Oracle Marks"), and you agree to comply with the Third Party Usage Guidelines for Oracle Trademarks currently located at http://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use you make of the Oracle Marks inures to Oracle's benefit. + +9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement. + +10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement. + +11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. + +12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. + +SUPPLEMENTAL LICENSE TERMS + +These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. + +A. COMMERCIAL FEATURES. You may not use the Commercial Features for running Programs, Java applets or applications in your internal business operations or for any commercial or production purpose, or for any purpose other than as set forth in Sections B, C, D and E of these Supplemental Terms. If You want to use the Commercial Features for any purpose other than as permitted in this Agreement, You must obtain a separate license from Oracle. + +B. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. + +C. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM, including, but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in this Agreement and that includes the notice set forth in Section H, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section G. + +D. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM, including but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Java SE LIUM ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable Java SE LIUM), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in the Agreement and includes the notice set forth in Section H, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section D does not extend to the Software identified in Section G. + +E. DISTRIBUTION BY PUBLISHERS. This section pertains to your distribution of the JavaTM SE Development Kit Software (“JDK”) with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, Oracle hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the JDK on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the JDK on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the JDK from the applicable Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The JDK must be reproduced in its entirety and without any modification whatsoever (including with respect to all proprietary notices) and distributed with your Publication subject to a license agreement that is a complete, unmodified reproduction of this Agreement; (v) The Media label shall include the following information: “Copyright [YEAR], Oracle America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations are trademarks or registered trademarks of Oracle in the U.S. and other countries.” [YEAR] is the year of Oracle's release of the Software; the year information can typically be found in the Software’s “About” box or screen. This information must be placed on the Media label in such a manner as to only apply to the JDK; (vi) You must clearly identify the JDK as Oracle's product on the Media holder or Media label, and you may not state or imply that Oracle is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the JDK; (viii) You agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of the JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores, California 94065 U.S.A , Attention: General Counsel. + +F. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun", “oracle” or similar convention as specified by Oracle in any naming convention designation. + +G. LIMITATIONS ON REDISTRIBUTION. You may not redistribute or otherwise transfer patches, bug fixes or updates made available by Oracle through Oracle Premier Support, including those made available under Oracle's Java SE Support program. + +H. COMMERCIAL FEATURES NOTICE. For purpose of complying with Supplemental Term Section C.(v)(b) and D.(v)(b), your license agreement shall include the following notice, where the notice is displayed in a manner that anyone using the Software will see the notice: + +Use of the Commercial Features for any commercial or production purpose requires a separate license from Oracle. “Commercial Features” means those features that are identified as such in the Licensing Information User Manual – Oracle Java SE and Oracle Java Embedded Products Document, accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html, under the “Description of Product Editions and Permitted Features” section. + +I. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. + +J. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the Java SE LIUM accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition to any terms and conditions of any third party opensource/freeware license identified in the Java SE LIUM, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution. + +K. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. + +L. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html. + +For inquiries please contact: Oracle America, Inc., 500 Oracle Parkway, + +Redwood Shores, California 94065, USA. + +Last updated 21 September 2017 \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4.json b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4.json new file mode 100644 index 00000000000..3655085fe4c --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4.json @@ -0,0 +1,113 @@ +{ + "debug" : + { + "m0p" : { + "permission" : "disabled", + "control" : "firmware", + "key" : 5 + }, + "m4" : { + "permission" : "allowed", + "control" : "firmware", + "key" : 5 + }, + "system" : { + "permission" : "enabled", + "control" : "firmware", + "key" : 5, + "syscall": true, + "mmio": true, + "flash": true, + "workflash": true, + "sflash": true, + "sram": true + }, + "rma" : { + "permission" : "allowed", + "destroy_fuses" : [ + { + "start" : 888, + "size" : 136 + }, + { + "start" : 648, + "size" : 104 + } + ], + "destroy_flash" : [ + { + "start" : 268435456, + "size" : 851968 + }, + { + "start" : 269483520, + "size" : 16 + } + ], + "key" : 5 + } + }, + "wounding" : + { + }, + "boot_upgrade" : + { + "title": "upgrade_policy", + "firmware": [ + { + "boot_auth": [ + 3 + ], + "id": 0, + "launch": 4, + "smif_id": 0, + "upgrade": false, + "upgrade_auth": [ + 3 + ], + "resources": [ + { + "type": "FLASH_PC1_SPM", + "address": 269287424, + "size": 65536 + }, + { + "type": "SRAM_SPM_PRIV", + "address": 134348800, + "size": 65536 + }, + { + "type": "SRAM_DAP", + "address": 134397952, + "size": 16384 + } + ] + }, + { + "boot_auth": [ + 8 + ], + "id": 4, + "monotonic": 0, + "smif_id": 0, + "upgrade": true, + "upgrade_auth": [ + 8 + ], + + "resources": [ + { + "type": "BOOT", + "address": 268435456, + "size": 327680 + }, + { + "type": "UPGRADE", + "address": 268763136, + "size": 327680 + } + ] + } + ] + } +} \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4_smif.json b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4_smif.json new file mode 100644 index 00000000000..9bb1f75d0e0 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4_smif.json @@ -0,0 +1,115 @@ +{ + "debug" : + { + "m0p" : { + "permission" : "disabled", + "control" : "firmware", + "key" : 5 + }, + "m4" : { + "permission" : "allowed", + "control" : "firmware", + "key" : 5 + }, + "system" : { + "permission" : "enabled", + "control" : "firmware", + "key" : 5, + "syscall": true, + "mmio": true, + "flash": true, + "workflash": true, + "sflash": true, + "sram": true + }, + "rma" : { + "permission" : "allowed", + "destroy_fuses" : [ + { + "start" : 888, + "size" : 136 + }, + { + "start" : 648, + "size" : 104 + } + ], + "destroy_flash" : [ + { + "start" : 268435456, + "size" : 851968 + }, + { + "start" : 269483520, + "size" : 16 + } + ], + "key" : 5 + } + }, + "wounding" : + { + }, + "boot_upgrade" : + { + "title": "upgrade_policy", + "firmware": [ + { + "boot_auth": [ + 3 + ], + "id": 0, + "launch": 4, + "smif_id": 0, + "upgrade": false, + "upgrade_auth": [ + 3 + ], + "resources": [ + { + "type": "FLASH_PC1_SPM", + "address": 269287424, + "size": 65536 + }, + { + "type": "SRAM_SPM_PRIV", + "address": 134348800, + "size": 65536 + }, + { + "type": "SRAM_DAP", + "address": 134397952, + "size": 16384 + } + ] + }, + { + "boot_auth": [ + 8 + ], + "id": 4, + "monotonic": 0, + "smif_id": 1, + "upgrade": true, + "encrypt": false, + "encrypt_key_id": 1, + "upgrade_auth": [ + 8 + ], + + "resources": [ + { + "type": "BOOT", + "address": 268435456, + "size": 327680 + }, + { + "type": "UPGRADE", + "address": 402653184, + "size": 327680 + } + ] + } + ] + } +} \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_crypto.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_crypto.py new file mode 100644 index 00000000000..f73b4b73ee6 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_crypto.py @@ -0,0 +1,116 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from jwcrypto import jwk, jws, jwt +from jwcrypto.common import base64url_decode +from jwcrypto.common import json_decode +from datetime import datetime +import json +import copy + +class crypto : + + def create_jwk() : + key = jwk.JWK.generate(kty='EC', crv='P-256', use='sig') + pub_key= json.loads( key.export(private_key=False) ) + priv_key= json.loads( key.export(private_key=True) ) + + print( "create_jwk()= " + json.dumps( pub_key, indent=4 ) ) + return priv_key,pub_key + + def create_jwt( payload , key ) : + token= jwt.JWT( header={"alg": "ES256"},claims=payload ) + token.make_signed_token( jwk.JWK( **key ) ) + txt= token.serialize(compact=True) + + print( "create_jwt()= " + json.dumps( crypto.readable_jwt(txt) ,indent=4 )) + return txt + + def readable_jwt( txt ) : + """ + Convert a JWT token in base64url into a readable dictionary object + with decoded payload and header for printing and logging + """ + lst= txt.split('.') + readable= {} + readable["protected"]= json_decode(base64url_decode(lst[0])) + readable["payload"]= json_decode(base64url_decode(lst[1])) + readable["signature"]= lst[2] + + # create readable timestamps for exp/iat claims + payload= readable["payload"] + if "iat" in payload : + t= payload["iat"] + if isinstance(t,int) : + t= datetime.fromtimestamp(t).isoformat(' ') + payload["iat"]= t + if "exp" in payload : + t= payload["exp"] + if isinstance(t,int) : + t= datetime.fromtimestamp(t).isoformat(' ') + payload["exp"]= t + + print(json.dumps(readable,indent=4,sort_keys=False)) + return readable + + def dump_jwt( txt,file_name ) : + """ + Dumps a JWT dictionary object into a text file + """ + with open(file_name,"w") as f : + f.write(txt) + f.close() + + def read_jwt( file_name ) : + """ + Reads a JWT dictionary object from a text file + """ + with open(file_name,"r") as f : + txt = f.read() + f.close() + + return txt + + def jwt_payload( txt ) : + """ + Returns the payload of a JWT without validating it's signature + Sometimes used for tokens that contain a public key in its payload, where the signature proves possesion of the corresponding private key + In that case, the payload is needed to obtain the public key with which to then validate the JWT + """ + # split the token + lst= txt.split('.') + payload= lst[1] + obj= json_decode(base64url_decode(payload)) + return obj + + def validate_jwt( txt , key ) : + """ + Validates a signed JWT + """ + try : + jwt.JWT(key=jwk.JWK(**key),jwt=txt) + print( " JWT signature is valid" ) + return True + except : + print( " JWT signature is not valid" ) + return False + + def create_x509_cert( pub_key , priv_key , prod_id , die_id=None , dev_id=None ) : + """ + TODO: create a X.509 certificate here certifying pub_key, signed with private_key + """ + cert= "CertificateToBeDone(die_id={},dev_id={},prod_id={})".format(die_id,dev_id,prod_id) + return cert + \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_customer.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_customer.py new file mode 100644 index 00000000000..4433ac92d78 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_customer.py @@ -0,0 +1,50 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from cyprov_entity import Entity +from cyprov_crypto import crypto + +# Customer Entity +class CustomerEntity(Entity): + def __init__(self, state_name, audit_name) : + Entity.__init__(self, state_name, audit_name) + if "custom_priv_key" not in self.state: + d = dict() + d["custom_priv_key"] = self.state + self.state = d + + def create_entity(self, kid) : + """ + Creates the Customer entity. + Creates the Customer main key-pair and returns nothing. + """ + customer_priv_key, customer_pub_key = crypto.create_jwk() + customer_priv_key["kid"] = str(kid) + customer_pub_key["kid"] = str(kid) + self.state["custom_priv_key"] = customer_priv_key + self.state["custom_pub_key"] = customer_pub_key + self.state_loaded = True + + def get_pub_key(self): + if "custom_pub_key" not in self.state: + key = dict(self.state["custom_priv_key"]) + del key["d"] + else: + key = self.state["custom_pub_key"] + return key + + def get_priv_key(self): + return self.state["custom_priv_key"] + \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_entity.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_entity.py new file mode 100644 index 00000000000..456e2ead237 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_entity.py @@ -0,0 +1,46 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import json + +# Cypress Entity +class Entity : + def __init__( self , state_name , audit_name ) : + self.state_name= state_name + self.state_loaded= False + self.audit_name= audit_name + Entity.load_state(self) + + def load_state( self ) : + try : + with open(self.state_name,"r+") as f : + self.state= json.loads(f.read()) + f.close() + self.state_loaded= True + except FileNotFoundError: + self.state= {} + self.state_loaded= False + + def save_state( self ) : + if not self.state_loaded : + raise Exception( "Internal error - state not loaded" ) + with open(self.state_name,"w") as f : + f.write( json.dumps( self.state,indent=4 ) ) + f.close() + + def append_audit_record( self,record ) : + with open(self.audit_name,"a") as f : + f.write( json.dumps(record,indent=4) + "\n" ) + f.close() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_hsm.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_hsm.py new file mode 100644 index 00000000000..f4e1789921f --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_hsm.py @@ -0,0 +1,443 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +from cyprov_types import types +from cyprov_entity import Entity +from cyprov_crypto import crypto +from datetime import datetime +from datetime import timedelta + + +# HSM Entity +class HsmEntity(Entity): + def __init__(self, state_name, audit_name): + Entity.__init__(self, state_name, audit_name) + + def create_entity(self): + """ + Creates the HSM entity. + Creates the hsm_priv_key,hsm_pub_key key-pair. + """ + hsm_priv_key, hsm_pub_key = crypto.create_jwk() + self.state["hsm_priv_key"] = hsm_priv_key + self.state["hsm_pub_key"] = hsm_pub_key + + def request_disti_authorization(self): + """ + HSM creates a request for authorization to Distributor + It includes just the HSM public key and a one week expiration limit + We use a JWT to prove knowledge of the private key and convey an expiration limit + """ + hsm_priv_key = self.state["hsm_priv_key"] + hsm_pub_key = self.state["hsm_pub_key"] + + # create the request + exp = datetime.now() + timedelta(7) + payload = {} + payload["type"] = types.HSM_REQ_DISTI_AUTH + payload["hsm_pub_key"] = hsm_pub_key + payload["iat"] = int(datetime.now().timestamp()) + payload["exp"] = int(exp.timestamp()) + auth_req = crypto.create_jwt(payload, hsm_priv_key) + + # Create audit record + record = {} + record["type"] = types.HSM_REQ_DISTI_AUTH + record["iat"] = datetime.now().isoformat(' ') + record["auth_req"] = crypto.readable_jwt(auth_req) + self.append_audit_record(record) + + return auth_req + + def install_disti_auth(self, disti_auth): + """ + Install distributor authorization. + Returns nothingraise Exception( + """ + hsm_pub_key = self.state["hsm_pub_key"] + + # Validate the distributor authorization + disti_auth_payload = crypto.jwt_payload(disti_auth) + disti_pub_key = disti_auth_payload["disti_pub_key"] + if not crypto.validate_jwt(disti_auth, disti_pub_key): + raise Exception("Invalid signature for distributor authorization") + if disti_auth_payload["type"] != types.DISTI_AUTH_HSM: + raise Exception("Invalid type for distributor authorization") + if disti_auth_payload["hsm_pub_key"] != hsm_pub_key: + raise Exception("Distributor authorization is not for this HSM") + if datetime.fromtimestamp(disti_auth_payload["exp"]) < datetime.now(): + raise Exception("Distributor authorization expired") + + # install distributor key and authorization + self.state["disti_pub_key"] = disti_pub_key + self.state["disti_auth"] = disti_auth + self.state["disti_auth_readable"] = crypto.readable_jwt(disti_auth) + + # create audit record + record = {} + record["type"] = types.DISTI_AUTH_HSM + record["iat"] = datetime.now().isoformat(' ') + record["disti_auth"] = crypto.readable_jwt(disti_auth) + self.append_audit_record(record) + + def request_cy_authorization(self, cy_pub_key=None): + """ + HSM creates a request for authorization to CY + It contains the HSM public key, the distributor authorization and a 1 week expiration + The JWT proves knowledge of the private key and the distributor authorization is used by CY to identify the request + """ + hsm_priv_key = self.state["hsm_priv_key"] + hsm_pub_key = self.state["hsm_pub_key"] + disti_auth = self.state["disti_auth"] + + # create the authorization request + exp = datetime.now() + timedelta(7) + payload = {} + payload["type"] = types.HSM_REQ_CY_AUTH + payload["hsm_pub_key"] = hsm_pub_key + payload["disti_auth"] = disti_auth + payload["iat"] = int(datetime.now().timestamp()) + payload["exp"] = int(exp.timestamp()) + if cy_pub_key != None: + payload["cy_pub_key"] = cy_pub_key + auth_req = crypto.create_jwt(payload, hsm_priv_key) + + # create audit record + cy_auth_readable = crypto.readable_jwt(auth_req) + cy_auth_readable["payload"]["disti_auth"] = crypto.readable_jwt(cy_auth_readable["payload"]["disti_auth"]) + record = {} + record["type"] = types.HSM_REQ_CY_AUTH + record["iat"] = datetime.now().isoformat(' ') + record["cy_auth_req"] = cy_auth_readable + self.append_audit_record(record) + + # install the cy_pub_key if one is given (allows for explicit binding to Cypress or some other supplier) + self.state["cy_pub_key"] = cy_pub_key + + return auth_req + + def install_cy_auth(self, cy_auth, cy_pub_key=None): + """ + Install Cypress authorization. + First checks the signature on the token and then just stores it + The expiration date on the token is enforced by the HSM only (since device has not time). + The authorization privilages (which may contain serial number and/or wounding limitations) are enforced by the device. + """ + hsm_pub_key = self.state["hsm_pub_key"] + + # validate the authorization + cy_auth_payload = crypto.jwt_payload(cy_auth) + if cy_pub_key == None: + cy_pub_key = cy_auth_payload["cy_pub_key"] + elif cy_auth_payload["cy_pub_key"] != cy_pub_key: + raise Exception("Cypress authorization is not from Cypress") + if not crypto.validate_jwt(cy_auth, cy_pub_key): + raise Exception("Invalid signature for CY HSM authorization") + if cy_auth_payload["type"] != types.CY_AUTH_HSM: + raise Exception("Invalid type for CY HSM authoriation") + if datetime.fromtimestamp(cy_auth_payload["exp"]) < datetime.now(): + raise Exception("CY HSM authorization is expired") + if cy_auth_payload["cy_pub_key"] != cy_pub_key: + raise Exception("Authorization appears to be not from Cypress") + + # install the authorization + self.state["cy_pub_key"] = cy_pub_key + self.state["cy_auth"] = cy_auth + self.state["cy_auth_readable"] = crypto.readable_jwt(cy_auth) + self.state["products"] = {} + + # create audit record + record = {} + record["type"] = types.CY_AUTH_HSM + record["iat"] = datetime.now().isoformat(' ') + record["cy_auth"] = crypto.readable_jwt(cy_auth) + self.append_audit_record(record) + + def create_signing_key(self, prod_id): + """ + Creates a signing-key package that an OEM uses to create its chain of trust + One or more OEM projects may share the same signing key + An HSM can maintain multiple signing keys for multiple OEMs, identified by a string "prod_id" + HSM operator must make sure that "prod_id" is unique across all of its customers, e.g. by including the customer name or ID + """ + cy_auth = self.state["cy_auth"] + disti_auth = self.state["disti_auth"] + hsm_priv_key = self.state["hsm_priv_key"] + + # create the signing key + signing_priv_key, signing_pub_key = crypto.create_jwk() + + # create the token + exp = datetime.now() + timedelta(7) + payload = {} + payload["type"] = types.HSM_SIGNING_KEY_PKG + payload["iat"] = int(datetime.now().timestamp()) + payload["exp"] = int(exp.timestamp()) + payload["prod_id"] = prod_id + payload["signing_pub_key"] = signing_pub_key + payload["cy_auth"] = cy_auth + payload["disti_auth"] = disti_auth + signing_pkg = crypto.create_jwt(payload, hsm_priv_key) + + # store signing key for later use + prod = {} + prod["iat"] = int(datetime.now().timestamp()) + prod["signing_priv_key"] = signing_priv_key + prod["signing_pub_key"] = signing_pub_key + self.state["products"][prod_id] = prod + + # create audit record + signing_pkg_readable = crypto.readable_jwt(signing_pkg) + signing_pkg_readable["payload"]["cy_auth"] = crypto.readable_jwt(signing_pkg_readable["payload"]["cy_auth"]) + signing_pkg_readable["payload"]["disti_auth"] = crypto.readable_jwt( + signing_pkg_readable["payload"]["disti_auth"]) + record = {} + record["type"] = types.HSM_SIGNING_KEY_PKG + record["iat"] = datetime.now().isoformat(' ') + record["signing_pkg"] = signing_pkg_readable + self.append_audit_record(record) + + return signing_pkg + + def install_rot_authorization(self, rot_auth_pkg): + """ + The HSM checks the response package and the rot_auth token itself and simply stores it for later use + """ + hsm_pub_key = self.state["hsm_pub_key"] + + rot_auth_pkg_payload = crypto.jwt_payload(rot_auth_pkg) + prod_id = rot_auth_pkg_payload["prod_id"] + rot_auth = rot_auth_pkg_payload["rot_auth"] + chain_of_trust = rot_auth_pkg_payload["chain_of_trust"] + + # validate the RoT authorization + rot_auth_payload = crypto.jwt_payload(rot_auth) + oem_pub_key = rot_auth_payload["oem_pub_key"] + if not crypto.validate_jwt(rot_auth, oem_pub_key): + raise Exception("Invalid signature on OEM root-of-trust authorization") + if rot_auth_payload["type"] != types.OEM_ROT_AUTH: + raise Exception("Invalid type for OEM root-of-trust authorization") + if rot_auth_payload["hsm_pub_key"] != hsm_pub_key: + raise Exception("Invalid HSM public key in OEM root-of-trust authorization") + if rot_auth_payload["prod_id"] != prod_id: + raise Exception("Invalid prod_id in OEM root-of-trust authorization") + + # validate the package itself + if not crypto.validate_jwt(rot_auth_pkg, oem_pub_key): + raise Exception("Invalid signature on OEM root-of-trust authorization package") + if rot_auth_pkg_payload["type"] != types.OEM_ROT_AUTH_PKG: + raise Exception("Invalid type for OEM root-of-trust authorization package") + if datetime.fromtimestamp(rot_auth_pkg_payload["exp"]) < datetime.now(): + raise Exception("OEM root-of-trust authorization package is expired") + + # store the result for later usage + prod = self.state["products"][prod_id] + prod["oem_pub_key"] = oem_pub_key + prod["rot_auth"] = rot_auth + prod["rot_auth_readable"] = crypto.readable_jwt(rot_auth) + prod["chain_of_trust"] = chain_of_trust + + # create audit record + rot_auth_pkg_readable = crypto.readable_jwt(rot_auth_pkg) + rot_auth_pkg_readable["payload"]["rot_auth"] = crypto.readable_jwt(rot_auth_pkg_readable["payload"]["rot_auth"]) + record = {} + record["type"] = types.OEM_ROT_AUTH_PKG + record["iat"] = datetime.now().isoformat(' ') + record["rot_auth_pkg"] = rot_auth_pkg_readable + self.append_audit_record(record) + + def create_rot_command(self, prod_id): + """ + The cy_auth token means Cypress authorized the HSM for provisioning + The rot_auth token means that the OEM authorized the HSM to provision RoT on its behalf + Together, they form the RoT command to the device + """ + hsm_priv_key = self.state["hsm_priv_key"] + cy_auth = self.state["cy_auth"] + rot_auth = self.state["products"][prod_id]["rot_auth"] + + # check CY authorization has not expired + cy_auth_payload = crypto.jwt_payload(cy_auth) + if datetime.fromtimestamp(cy_auth_payload["exp"]) < datetime.now(): + raise Exception("Cypress authorization for HSM expired") + + # create the RoT command + payload = {} + payload["type"] = types.HSM_ROT_CMD + payload["prod_id"] = prod_id + payload["cy_auth"] = cy_auth + payload["rot_auth"] = rot_auth + rot_cmd = crypto.create_jwt(payload, hsm_priv_key) + + # create audit record + rot_cmd_readable = crypto.readable_jwt(rot_cmd) + rot_cmd_readable["payload"]["cy_auth"] = crypto.readable_jwt(rot_cmd_readable["payload"]["cy_auth"]) + rot_cmd_readable["payload"]["rot_auth"] = crypto.readable_jwt(rot_cmd_readable["payload"]["rot_auth"]) + record = {} + record["type"] = types.HSM_ROT_CMD + record["iat"] = datetime.now().isoformat() + record["rot_cmd"] = rot_cmd_readable + self.append_audit_record(record) + + return rot_cmd + + def accept_provision_authorization(self, prov_auth): + """ + Accepts a provisioning request from an OEM, that is authorized by the distributor + prov_req= jwt( payload={ OEM_PROV_REQ , blob } , key=oem_priv_key ) + prov_auth= jwt( payload={ DISTI_PROV_AUTH , prov_req , cnt , exp } , key=disti_priv_key ) + When successful 'installs' the provisioning request in the HSM as the active request for given prod_id + """ + disti_pub_key = self.state["disti_pub_key"] + + # validate the Disti's command + prov_auth_payload = crypto.jwt_payload(prov_auth) + if not crypto.validate_jwt(prov_auth, disti_pub_key): + raise Exception("Invalid signature for provisioning authorization") + if prov_auth_payload["type"] != types.DISTI_PROV_AUTH: + raise Exception("Invalid type for provisioning authorization") + prov_req = prov_auth_payload["prov_req"] + prov_req_cnt = prov_auth_payload["cnt"] + prov_req_exp = datetime.fromtimestamp(prov_auth_payload["exp"]) + + # validate the OEM's provisioning request + prov_req_payload = crypto.jwt_payload(prov_req) + prod_id = prov_req_payload["prod_id"] + oem_pub_key = self.state["products"][prod_id]["oem_pub_key"] + if not crypto.validate_jwt(prov_req, oem_pub_key): + raise Exception("Invalid signature for provisioning request") + + # install the provisioning request for execution + prod = self.state["products"][prod_id] + prod["prov_req"] = prov_req + prod["prov_req_readable"] = crypto.readable_jwt(prov_req) + prod["prov_req_cnt"] = prov_req_cnt + prod["prov_req_exp"] = int(prov_req_exp.timestamp()) + + # create audit record + record = {} + record["type"] = types.DISTI_PROV_AUTH + record["iat"] = datetime.now().isoformat(' ') + record["prod_id"] = prod_id + record["prov_req"] = crypto.readable_jwt(prov_req) + self.append_audit_record(record) + + def create_provision_cmd(self, prod_id, dev_rsp, image_jwt_file): + """ + Creates and returns a provisioning command prov_cmd that can be send to a device. + prov_req= jwt( payload={ OEM_PROV_REQ , blob } , key=oem_priv_key ) + chain_of_trust= [ x509_certs ] + hsm_auth= jwt( payload={ CY_HSM_AUTH , hsm_pub_key , auth } , key=cy_priv_key ) + prov_cmd= jwt( payload={ HSM_PROV_CMD , prov_req , chain_of_trust , hsm_auth } , key=hsm_priv_key ) + Requires the device response to the RoT command (which contains the device identity and keys). + dev_rsp= jwt( payload= { DEV_ROT_RSP , prod_id,die_id,dev_id, dev_pub_key } , key=dev_priv_key ) + There must be an active provisioning request in the HSM for the given product ID. + """ + prod = self.state["products"][prod_id] + oem_pub_key = prod["oem_pub_key"] + signing_priv_key = prod["signing_priv_key"] + chain_of_trust = prod["chain_of_trust"] + prov_req = prod["prov_req"] + prov_req_cnt = prod["prov_req_cnt"] + prov_req_exp = datetime.fromtimestamp(prod["prov_req_exp"]) + hsm_priv_key = self.state["hsm_priv_key"] + cy_auth = self.state["cy_auth"] + image_cert = crypto.read_jwt(image_jwt_file) + + # validate the OEM's provisioning request + if prov_req_exp < datetime.now(): + raise Exception("Provisioning request expired") + if prov_req_cnt <= 0: + raise Exception("Provisioning request count exceeded") + prov_req_cnt -= 1; + + # validate the device response + dev_rsp_payload = crypto.jwt_payload(dev_rsp) + dev_pub_key = dev_rsp_payload["dev_pub_key"] + die_id = dev_rsp_payload["die_id"] + dev_id = dev_rsp_payload["dev_id"] + if dev_rsp_payload["prod_id"] != prod_id: + raise Exception("Product ID in provision request does not match device (" + prod_id + ")") + if not crypto.validate_jwt(dev_rsp, dev_pub_key): + raise Exception("Invalid signature on device response to RoT command") + + # create the device chain of trust (X509) + dev_cert = crypto.create_x509_cert(prod_id=prod_id, die_id=die_id, dev_id=dev_id, pub_key=dev_pub_key, + priv_key=signing_priv_key) + chain_of_trust = chain_of_trust + [dev_cert] + + # create the provisioning command + payload = {} + payload["type"] = types.HSM_PROV_CMD + payload["prov_req"] = prov_req + payload["image_cert"] = image_cert + payload["chain_of_trust"] = chain_of_trust + payload["cy_auth"] = cy_auth + prov_cmd = crypto.create_jwt(payload, hsm_priv_key) + + # create audit record + prov_cmd_readable = crypto.readable_jwt(prov_cmd) + prov_cmd_readable["payload"]["cy_auth"] = crypto.readable_jwt(prov_cmd_readable["payload"]["cy_auth"]) + prov_cmd_readable["payload"]["prov_req"] = crypto.readable_jwt(prov_cmd_readable["payload"]["prov_req"]) + prov_cmd_readable["payload"]["image_cert"] = crypto.readable_jwt(prov_cmd_readable["payload"]["image_cert"]) + record = {} + record["type"] = types.HSM_PROV_CMD + record["iat"] = datetime.now().isoformat(' ') + record["prod_id"] = prod_id + record["dev_rsp"] = crypto.readable_jwt(dev_rsp) + record["prov_cmd"] = prov_cmd_readable + self.append_audit_record(record) + + self.state["products"][prod_id]["prov_req_cnt"] = prov_req_cnt + return prov_cmd + + def pack_rot_command(self, prod_id, cy_auth_file, rot_auth): + payload = {} + + payload['type'] = types.HSM_ROT_CMD + payload['prod_id'] = prod_id + payload['cy_auth'] = crypto.read_jwt(cy_auth_file) + payload['rot_auth'] = rot_auth + + hsm_priv_key = self.state["hsm_priv_key"] + rot_cmd = crypto.create_jwt(payload, hsm_priv_key) + + return rot_cmd + + def pack_provision_cmd(self, **kwargs): + payload = {} + print(kwargs) + + if kwargs is not None: + for k, v in kwargs.items(): + if type(v) is tuple: + sequence = [] + for cert_file in v: + with open(cert_file) as cert: + sequence.append(cert.read()) + payload[k] = sequence + else: + if os.path.isfile(v): + payload[k] = crypto.read_jwt(v) + else: + payload[k] = v + + payload['type'] = types.HSM_PROV_CMD + + hsm_priv_key = self.state['hsm_priv_key'] + prov_cmd = crypto.create_jwt(payload, hsm_priv_key) + + return prov_cmd diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_oem.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_oem.py new file mode 100644 index 00000000000..ae418abda5b --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_oem.py @@ -0,0 +1,143 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from cyprov_entity import Entity +from cyprov_crypto import crypto +from cyprov_types import types +from datetime import datetime +from datetime import timedelta + +# Oem (Customr) Entity +class OemEntity(Entity) : + def __init__( self , state_name , audit_name ) : + Entity.__init__(self,state_name,audit_name) + + def create_entity( self , chain_of_trust=[] ) : + """ + Creates the Oem entity. + Creates the Oem main key-pair and returns nothing. + """ + oem_priv_key,oem_pub_key= crypto.create_jwk() + self.state["oem_priv_key"]= oem_priv_key + self.state["oem_pub_key"]= oem_pub_key + self.state["oem_chain_of_trust"]= chain_of_trust + + def create_rot_authorization( self , signing_pkg ) : + """ + OEM creates a root-of-trust authorization package based on the signing key package from the HSM + It's a JWT with two main parts: + - a rot_auth authorization token that is sent to the device + - a chain of X509 certificates that establishses the OEM's trust in the HSM signing key + Note that this chain is not used inside the device and used only by 3rd parties + """ + oem_pub_key= self.state["oem_pub_key"] + oem_priv_key= self.state["oem_priv_key"] + oem_chain_of_trust= self.state["oem_chain_of_trust"] + + # get HSM public key and check CY authorization + signing_pkg_payload= crypto.jwt_payload(signing_pkg) + cy_auth= signing_pkg_payload["cy_auth"] + cy_auth_payload= crypto.jwt_payload(cy_auth) + cy_pub_key= cy_auth_payload["cy_pub_key"] + hsm_pub_key= cy_auth_payload["hsm_pub_key"] + if not crypto.validate_jwt( cy_auth , cy_pub_key ) : + raise Exception( "Invalid signature on Cypress HSM authorization in request" ) + if cy_auth_payload["type"] != types.CY_AUTH_HSM : + raise Exception( "Invalid type for Cypress HSM authorization in request" ) + if datetime.fromtimestamp(cy_auth_payload["exp"]) < datetime.now() : + raise Exception( "Cypress HSM authorization expired" ) + + # validate HSM request itself + signing_pub_key= signing_pkg_payload["signing_pub_key"] + prod_id= signing_pkg_payload["prod_id"] + if not crypto.validate_jwt( signing_pkg , hsm_pub_key ) : + raise Exception( "Invalid signature on HSM signing key package" ) + if signing_pkg_payload["type"] != types.HSM_SIGNING_KEY_PKG : + raise Exception( "Invalid type on HSM signing key package" ) + if datetime.fromtimestamp(signing_pkg_payload["exp"]) < datetime.now() : + raise Exception( "HSM signing key package expired" ) + + # create the RoT transfer authorization (that will go to the device) + payload= {} + payload["type"]= types.OEM_ROT_AUTH + payload["oem_pub_key"]= oem_pub_key + payload["hsm_pub_key"]= hsm_pub_key + payload["prod_id"]= prod_id + payload["iat"]= int(datetime.now().timestamp()) + rot_auth= crypto.create_jwt( payload , oem_priv_key ) + + # create the chain of trust + cert= crypto.create_x509_cert( signing_pub_key , oem_priv_key , prod_id ) + chain_of_trust= oem_chain_of_trust + [ cert ] + + # create the response + exp= datetime.now() + timedelta(7) + payload= {} + payload["type"]= types.OEM_ROT_AUTH_PKG + payload["iat"]= int(datetime.now().timestamp()) + payload["exp"]= int(exp.timestamp()) + payload["prod_id"]= prod_id + payload["rot_auth"]= rot_auth + payload["chain_of_trust"]= chain_of_trust + rot_auth_pkg= crypto.create_jwt( payload , oem_priv_key ) + + # create audit record + signing_pkg_readable= crypto.readable_jwt(signing_pkg) + signing_pkg_readable["payload"]["cy_auth"]= crypto.readable_jwt(signing_pkg_readable["payload"]["cy_auth"]) + signing_pkg_readable["payload"]["disti_auth"]= crypto.readable_jwt(signing_pkg_readable["payload"]["disti_auth"]) + rot_auth_pkg_readable= crypto.readable_jwt(rot_auth_pkg) + rot_auth_pkg_readable["payload"]["rot_auth"]= crypto.readable_jwt(rot_auth_pkg_readable["payload"]["rot_auth"]) + record= {} + record["type"]= types.OEM_ROT_AUTH_PKG + record["iat"]= datetime.now().isoformat(' ') + record["signing_pkg"]= signing_pkg_readable + record["rot_auth_pkg"]= rot_auth_pkg_readable + self.append_audit_record(record) + + return rot_auth_pkg + + def create_provision_request( self , blob ) : + """ + The OEM can create a request for provisioning by signing a keys & policies blob with its private key + Note that blob must contain at least the prod_id field + """ + # create the request + oem_priv_key= self.state["oem_priv_key"] + prov_req= crypto.create_jwt( blob , oem_priv_key ) + + # create audit record + record= {} + record["type"]= types.OEM_PROV_REQ + record["iat"]= datetime.now().isoformat(' ') + record["prod_id"]= blob["prod_id"] + record["prov_req"]= crypto.readable_jwt(prov_req) + self.append_audit_record(record) + + return prov_req + + def pack_rot_auth( self, prod_id, hsm_pub_key ): + oem_pub_key = self.state["oem_pub_key"] + oem_priv_key = self.state["oem_priv_key"] + + payload= {} + payload["type"] = types.OEM_ROT_AUTH + payload["oem_pub_key"] = oem_pub_key + payload["hsm_pub_key"] = hsm_pub_key + payload["prod_id"] = prod_id + payload["iat"] = int(datetime.now().timestamp()) + rot_auth = crypto.create_jwt( payload , oem_priv_key ) + + return rot_auth + \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_pem.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_pem.py new file mode 100644 index 00000000000..42f9bc4d967 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_pem.py @@ -0,0 +1,79 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from jwcrypto import jwk +import json + +def pretty_search(dict_or_list, key_to_search, search_for_first_only=False): + """ + Give it a dict or a list of dicts and a dict key (to get values of), + it will search through it and all containing dicts and arrays + for all values of dict key you gave, and will return you set of them + unless you wont specify search_for_first_only=True + + :param dict_or_list: + :param key_to_search: + :param search_for_first_only: + :return: + """ + search_result = set() + if isinstance(dict_or_list, dict): + for key in dict_or_list: + key_value = dict_or_list[key] + if key == key_to_search: + if search_for_first_only: + return key_value + else: + search_result.add(key_value) + if isinstance(key_value, dict) or isinstance(key_value, list) or isinstance(key_value, set): + _search_result = pretty_search(key_value, key_to_search, search_for_first_only) + if _search_result and search_for_first_only: + return _search_result + elif _search_result: + for result in _search_result: + search_result.add(result) + elif isinstance(dict_or_list, list) or isinstance(dict_or_list, set): + for element in dict_or_list: + if isinstance(element, list) or isinstance(element, set) or isinstance(element, dict): + _search_result = pretty_search(element, key_to_search, search_result) + if _search_result and search_for_first_only: + return _search_result + elif _search_result: + for result in _search_result: + search_result.add(result) + return search_result if search_result else None + +class PemKey: + + def __init__(self, jwk_file = None, item = None): + if jwk_file != None: + with open(jwk_file) as f: + jwk_str = f.read() + self.jwk = json.loads(jwk_str) + + if item != None: + self.jwk = pretty_search(self.jwk, item, search_for_first_only=True) + + def save(self, file = None, private_key=False): + key = jwk.JWK(**self.jwk) + pem_str = key.export_to_pem(private_key, password=None) + if file != None: + with open(file, 'wb') as f: + f.write(pem_str) + else: + print(pem_str) + + def load(self, jwk): + self.jwk = jwk diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_types.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_types.py new file mode 100644 index 00000000000..f5aa542f0da --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_types.py @@ -0,0 +1,29 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +class types : + HSM_REQ_DISTI_AUTH= "HSM_REQ_DISTI_AUTH" + DISTI_AUTH_HSM= "DISTI_AUTH_HSM" + HSM_REQ_CY_AUTH= "HSM_REQ_CY_AUTH" + CY_AUTH_HSM= "CY_AUTH_HSM" + HSM_SIGNING_KEY_PKG= "HSM_SIGNING_KEY_PKG" + OEM_ROT_AUTH= "OEM_ROT_AUTH" + OEM_ROT_AUTH_PKG= "OEM_ROT_AUTH_PKG" + OEM_PROV_REQ= "OEM_PROV_REQ" + DISTI_PROV_AUTH= "DISTI_PROV_AUTH" + CY_DEV_ID= "CY_DEV_ID" + HSM_ROT_CMD= "HSM_ROT_CMD" + HSM_PROV_CMD= "HSM_PROV_CMD" + \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_packet.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_packet.py new file mode 100644 index 00000000000..75e98e29cf5 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_packet.py @@ -0,0 +1,133 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +import sys +import json +import click + +# Default input values and pathes +PROD_NAME = 'my_thing' +CYPROV_LIB_PATH = './provisioning_lib' + +# Default output values and pathes +OEM_AUDIT_NAME = 'oem_log.json' +HSM_AUDIT_NAME = 'hsm_log.json' +PROV_REQ_JWT_FILE = 'prov_req.jwt' +ROT_AUTH_JWT_FILE = 'rot_auth.jwt' +PROV_JWT_FILE = 'prov_cmd.jwt' + +CUSTOMER_KEY_N = 5 + +sys.path.insert(0, CYPROV_LIB_PATH) +from cyprov_hsm import HsmEntity +from cyprov_oem import OemEntity +from cyprov_customer import CustomerEntity +from cyprov_crypto import crypto + + +def process_customer_keys(paths): + customer_key_n = len(paths) + customer = [] + if customer_key_n > 0: + customer_key_id = 6 + for i in range(customer_key_n): + customer_log = os.path.basename(paths[i]) + customer_log = os.path.splitext(customer_log)[0] + '_log.json' + customer.append(CustomerEntity(paths[i], customer_log)) + if not customer[i].state_loaded: + customer[i].create_entity(customer_key_id + i) + customer[i].save_state() + return customer + + +@click.command() +@click.option('--oem', 'oem_state_path', + default='../prebuild/oem_state.json', + help='OEM key file.') +@click.option('--hsm', 'hsm_state_path', + default='../prebuild/hsm_state.json', + help='HSM key file.') +@click.option('--cyboot', 'image_cert', + default='../prebuild/CypressBootloader_CM0p.jwt', + help='Cypress Bootloader image certificate.') +@click.option('--cyauth', 'cy_auth_path', + default='../prebuild/cy_auth.jwt', + help='Provisioning authorization certificate.') +@click.option('--policy', 'policy_path', + default='policy_single_stage_CM4.json', + help='Policy file.') +@click.option('--out', 'output_path', + default='../packet', + help='Output directory.') +@click.option('--ckey', 'cust_key_path', + default=None, + multiple=True, + help='Customer key that will be used for image signing. Use the option multiple times ' + 'to specify multiple keys.') +@click.option('--devcert', 'dev_cert', + default=[], + multiple=True, + help='Chain of trust certificate. Use the option multiple times to specify multiple certificates.') +def main(oem_state_path, hsm_state_path, image_cert, cy_auth_path, + policy_path, output_path, cust_key_path, dev_cert): + + if len(cust_key_path) > CUSTOMER_KEY_N: + raise Exception('Maximum number of customer keys must be {}!'.format(CUSTOMER_KEY_N)) + + prod_id = PROD_NAME + + oem_audit_path = os.path.join(output_path, OEM_AUDIT_NAME) + hsm_audit_path = os.path.join(output_path, HSM_AUDIT_NAME) + prov_req_jwt_path = os.path.join(output_path, PROV_REQ_JWT_FILE) + rot_auth_jwt_path = os.path.join(output_path, ROT_AUTH_JWT_FILE) + prov_jwt_path = os.path.join(output_path, PROV_JWT_FILE) + + if not os.path.exists(output_path): + os.makedirs(output_path) + + oem = OemEntity(oem_state_path, oem_audit_path) + hsm = HsmEntity(hsm_state_path, hsm_audit_path) + + with open(policy_path) as f: + json_str = f.read() + blob = json.loads(json_str) + blob['prod_id'] = prod_id + + customer = process_customer_keys(cust_key_path) + if len(customer) > 0: + blob['custom_pub_key'] = [key.get_pub_key() for key in customer] + + prov_req = oem.create_provision_request(blob) + crypto.dump_jwt(prov_req, prov_req_jwt_path) + + rot_auth_pkg = oem.pack_rot_auth(prod_id, hsm.state["hsm_pub_key"]) + crypto.dump_jwt(rot_auth_pkg, rot_auth_jwt_path) + + prov_cmd = hsm.pack_provision_cmd( + cy_auth=cy_auth_path, + image_cert=image_cert, + prov_req=prov_req, + rot_auth=rot_auth_pkg, + chain_of_trust=dev_cert) + crypto.dump_jwt(prov_cmd, prov_jwt_path) + + print('#' * 80) + print('Provisioning packet is created') + print('#' * 80) + + +if __name__ == "__main__": + main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/provision_device_runner.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/provision_device_runner.py new file mode 100644 index 00000000000..6b4c8282a29 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/provision_device_runner.py @@ -0,0 +1,80 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +import sys +import click +from execute.helper import get_target_name +from execute.enums import DebugCore +from execute.provision_device import provision_execution +from execute.programmer.programmer import ProgrammingTool +from prepare.provisioning_lib.cyprov_pem import PemKey + + +TOOL_NAME = 'pyocd' # Programming/debugging tool used for communication with device +ACCESS_PORT = DebugCore.debug_sys_ap # Access port used for device provisioning + + +@click.command() +@click.option('--prov-jwt', 'prov_cmd_jwt', + default='packet/prov_cmd.jwt', + type=click.STRING, + help='Path to provisioning JWT file (packet which contains all data necessary ' + 'for provisioning, including policy, authorization packets and keys)') +@click.option('--hex', 'cy_bootloader_hex', + default='prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex', + type=click.STRING, + help='Path to Cypress Bootloader HEX binary file') +@click.option('--pubkey-json', 'pub_key_json', + default='keys/dev_pub_key.json', + type=click.STRING, + help='File where to save public key in JSON format') +@click.option('--pubkey-pem', 'pub_key_pem', + default='keys/dev_pub_key.pem', + type=click.STRING, + help='File where to save public key in PEM format') +def main(prov_cmd_jwt, cy_bootloader_hex, pub_key_json, pub_key_pem): + """ + Parses command line arguments and provides high level support for + provisioning device with the specified programming tool. + :param prov_cmd_jwt: Path to provisioning JWT file (packet which contains + all data necessary for provisioning, including policy, authorization + packets and keys). + :param cy_bootloader_hex: Path to Cypress Bootloader program file. + :param pub_key_json: File where to save public key in JSON format. + :param pub_key_pem: File where to save public key in PEM format. + """ + # Verify arguments + target = get_target_name(TOOL_NAME, ACCESS_PORT) + if not target: + print('Invalid access port.') + sys.exit(1) + + test_status = False + tool = ProgrammingTool.create(TOOL_NAME) + if tool.connect(target): + test_status = provision_execution(tool, pub_key_json, prov_cmd_jwt, cy_bootloader_hex) + + if test_status: + # Read device response file and take device key from it + if os.path.exists(pub_key_json): + pem = PemKey(pub_key_json) + pem.save(pub_key_pem, private_key=False) + else: + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/requirements.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/requirements.txt new file mode 100644 index 00000000000..c24d45be803 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/requirements.txt @@ -0,0 +1,7 @@ +# To install next python modules, please execute command: +# python -m pip install -r requirements.txt + +cryptography>=2.4.2 +Click>=7.0 +intelhex>=2.2.1 +jwcrypto>=0.6.0 \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_large.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_large.hex new file mode 100644 index 00000000000..3b8fa29b367 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_large.hex @@ -0,0 +1,1410 @@ +:020000041000EA +:20000000000100083101001000000000000000000000000000000000000000000000000095 +:200020000000000000000000000000000000000000000000000000000000000000000000C0 +:200040000000000000000000000000000000000000000000000000000000000000000000A0 +:20006000000000000000000000000000000000000000000000000000000000000000000080 +:20008000000000000000000000000000000000000000000000000000000000000000000060 +:2000A000000000000000000000000000000000000000000000000000000000000000000040 +:2000C000000000000000000000000000000000000000000000000000000000000000000020 +:2000E000000000000000000000000000000000000000000000000000000000000000000000 +:20010000526F736574746120636F646500000000764FAF5C61AC315F1497F9DFA5427139C1 +:2001200065B785E5CC2F707D6468D7D1124CDFCF13B500240C4800F01DF8210000940123B3 +:2001400006220A4800F062F80123009406221900064800F05BF801340222044B0448DC6021 +:20016000DA6000F099F8F7E7280300108000324020BCBE00014B18607047C0463C1000084A +:2001800070B50D00044C01001822200000F094F8A56101BEFEE7C0460010000870B5060013 +:2001A0000C001500072903D914491548FFF7E8FF1F232A009A4303D012491148FFF7E0FFD6 +:2001C000114B1B689A695B69B01AC0090001C0181F231D40032C07D8E400A340A54002684A +:2001E0009A431543056070BD043CE400A340A54042689A4315434560F5E7C04642020000A2 +:2002000033040010430200003C100008F7B51D0008AB1B7807000E0014000193072903D926 +:20022000D1211B48FFF7ACFF0F2322009A4303D0D2211748FFF7A4FF012D03D9D32114487F +:20024000FFF79EFF1F23019A9A4303D0D4211048FFF796FF012211001540B140B5400F2008 +:200260003B6804408B431D433D600500B1008D408C40084B31001B68380063331A78BA1844 +:200280001368AB431C431460019AFFF787FFF7BD100400103C1000080230800803D0013021 +:2002A0000238FCD1C046C0467047EFF3108072B6704780F310887047000052E3011041E2F8 +:2002C00000C0A0E11EFF2F0110402DE90C30A0E101E0F1E500005EE3014042E201E0C3E488 +:2002E0000400001A02C08CE00C0053E10500000A01E0C3E4FBFFFFEA000054E303C0A0E17D +:200300000420A0E1F0FFFF1A1040BDE81EFF2FE10DC0A0E1F8DF2DE904B04CE20DC0A0E1A3 +:20032000F8DF2DE904B04CE20000214000002540000001400000344000002440000031409E +:200340000000324000001F4101010101010101010110101080550501053B04101C01010045 +:200360000FC000000000100001010101011D3A577896000820000010000F002000023F062F +:20038000080E00080009000A000B24282C3034001000000090000000880000000800000015 +:2003A0008000000004F0000000F000002005A000D00100018001A00110000000040000000C +:2003C000400000004400000048000000800000000001000010020000880200000004000030 +:2003E00010040000200400004004000048040000800400008404000090040000C0070000CE +:20040000C4070000C8070000CC070000004000002E2F68616C2F70646C2F64726976657273 +:20042000732F736F757263652F63795F6770696F2E63002E2F68616C2F70646C2F64726970 +:20044000766572732F696E636C7564652F63795F6770696F2E68000000000000000000001A +:2004600000000000000000000000000000000000000000000000000000000000000000007C +:2004800000000000000000000000000000000000000000000000000000000000000000005C +:2004A00000000000000000000000000000000000000000000000000000000000000000003C +:2004C00000000000000000000000000000000000000000000000000000000000000000001C +:2004E0000000000000000000000000000000000000000000000000000000000000000000FC +:200500000000000000000000000000000000000000000000000000000000000000000000DB +:200520000000000000000000000000000000000000000000000000000000000000000000BB +:2005400000000000000000000000000000000000000000000000000000000000000000009B +:2005600000000000000000000000000000000000000000000000000000000000000000007B +:2005800000000000000000000000000000000000000000000000000000000000000000005B +:2005A00000000000000000000000000000000000000000000000000000000000000000003B +:2005C00000000000000000000000000000000000000000000000000000000000000000001B +:2005E0000000000000000000000000000000000000000000000000000000000000000000FB +:200600000000000000000000000000000000000000000000000000000000000000000000DA +:200620000000000000000000000000000000000000000000000000000000000000000000BA +:2006400000000000000000000000000000000000000000000000000000000000000000009A +:2006600000000000000000000000000000000000000000000000000000000000000000007A +:2006800000000000000000000000000000000000000000000000000000000000000000005A +:2006A00000000000000000000000000000000000000000000000000000000000000000003A +:2006C00000000000000000000000000000000000000000000000000000000000000000001A +:2006E0000000000000000000000000000000000000000000000000000000000000000000FA +:200700000000000000000000000000000000000000000000000000000000000000000000D9 +:200720000000000000000000000000000000000000000000000000000000000000000000B9 +:20074000000000000000000000000000000000000000000000000000000000000000000099 +:20076000000000000000000000000000000000000000000000000000000000000000000079 +:20078000000000000000000000000000000000000000000000000000000000000000000059 +:2007A000000000000000000000000000000000000000000000000000000000000000000039 +:2007C000000000000000000000000000000000000000000000000000000000000000000019 +:2007E0000000000000000000000000000000000000000000000000000000000000000000F9 +:200800000000000000000000000000000000000000000000000000000000000000000000D8 +:200820000000000000000000000000000000000000000000000000000000000000000000B8 +:20084000000000000000000000000000000000000000000000000000000000000000000098 +:20086000000000000000000000000000000000000000000000000000000000000000000078 +:20088000000000000000000000000000000000000000000000000000000000000000000058 +:2008A000000000000000000000000000000000000000000000000000000000000000000038 +:2008C000000000000000000000000000000000000000000000000000000000000000000018 +:2008E0000000000000000000000000000000000000000000000000000000000000000000F8 +:200900000000000000000000000000000000000000000000000000000000000000000000D7 +:200920000000000000000000000000000000000000000000000000000000000000000000B7 +:20094000000000000000000000000000000000000000000000000000000000000000000097 +:20096000000000000000000000000000000000000000000000000000000000000000000077 +:20098000000000000000000000000000000000000000000000000000000000000000000057 +:2009A000000000000000000000000000000000000000000000000000000000000000000037 +:2009C000000000000000000000000000000000000000000000000000000000000000000017 +:2009E0000000000000000000000000000000000000000000000000000000000000000000F7 +:200A00000000000000000000000000000000000000000000000000000000000000000000D6 +:200A20000000000000000000000000000000000000000000000000000000000000000000B6 +:200A4000000000000000000000000000000000000000000000000000000000000000000096 +:200A6000000000000000000000000000000000000000000000000000000000000000000076 +:200A8000000000000000000000000000000000000000000000000000000000000000000056 +:200AA000000000000000000000000000000000000000000000000000000000000000000036 +:200AC000000000000000000000000000000000000000000000000000000000000000000016 +:200AE0000000000000000000000000000000000000000000000000000000000000000000F6 +:200B00000000000000000000000000000000000000000000000000000000000000000000D5 +:200B20000000000000000000000000000000000000000000000000000000000000000000B5 +:200B4000000000000000000000000000000000000000000000000000000000000000000095 +:200B6000000000000000000000000000000000000000000000000000000000000000000075 +:200B8000000000000000000000000000000000000000000000000000000000000000000055 +:200BA000000000000000000000000000000000000000000000000000000000000000000035 +:200BC000000000000000000000000000000000000000000000000000000000000000000015 +:200BE0000000000000000000000000000000000000000000000000000000000000000000F5 +:200C00000000000000000000000000000000000000000000000000000000000000000000D4 +:200C20000000000000000000000000000000000000000000000000000000000000000000B4 +:200C4000000000000000000000000000000000000000000000000000000000000000000094 +:200C6000000000000000000000000000000000000000000000000000000000000000000074 +:200C8000000000000000000000000000000000000000000000000000000000000000000054 +:200CA000000000000000000000000000000000000000000000000000000000000000000034 +:200CC000000000000000000000000000000000000000000000000000000000000000000014 +:200CE0000000000000000000000000000000000000000000000000000000000000000000F4 +:200D00000000000000000000000000000000000000000000000000000000000000000000D3 +:200D20000000000000000000000000000000000000000000000000000000000000000000B3 +:200D4000000000000000000000000000000000000000000000000000000000000000000093 +:200D6000000000000000000000000000000000000000000000000000000000000000000073 +:200D8000000000000000000000000000000000000000000000000000000000000000000053 +:200DA000000000000000000000000000000000000000000000000000000000000000000033 +:200DC000000000000000000000000000000000000000000000000000000000000000000013 +:200DE0000000000000000000000000000000000000000000000000000000000000000000F3 +:200E00000000000000000000000000000000000000000000000000000000000000000000D2 +:200E20000000000000000000000000000000000000000000000000000000000000000000B2 +:200E4000000000000000000000000000000000000000000000000000000000000000000092 +:200E6000000000000000000000000000000000000000000000000000000000000000000072 +:200E8000000000000000000000000000000000000000000000000000000000000000000052 +:200EA000000000000000000000000000000000000000000000000000000000000000000032 +:200EC000000000000000000000000000000000000000000000000000000000000000000012 +:200EE0000000000000000000000000000000000000000000000000000000000000000000F2 +:200F00000000000000000000000000000000000000000000000000000000000000000000D1 +:200F20000000000000000000000000000000000000000000000000000000000000000000B1 +:200F4000000000000000000000000000000000000000000000000000000000000000000091 +:200F6000000000000000000000000000000000000000000000000000000000000000000071 +:200F8000000000000000000000000000000000000000000000000000000000000000000051 +:200FA000000000000000000000000000000000000000000000000000000000000000000031 +:200FC000000000000000000000000000000000000000000000000000000000000000000011 +:200FE0000000000000000000000000000000000000000000000000000000000000000000F1 +:201000000000000000000000000000000000000000000000000000000000000000000000D0 +:201020000000000000000000000000000000000000000000000000000000000000000000B0 +:20104000000000000000000000000000000000000000000000000000000000000000000090 +:20106000000000000000000000000000000000000000000000000000000000000000000070 +:20108000000000000000000000000000000000000000000000000000000000000000000050 +:2010A000000000000000000000000000000000000000000000000000000000000000000030 +:2010C000000000000000000000000000000000000000000000000000000000000000000010 +:2010E0000000000000000000000000000000000000000000000000000000000000000000F0 +:201100000000000000000000000000000000000000000000000000000000000000000000CF +:201120000000000000000000000000000000000000000000000000000000000000000000AF +:2011400000000000000000000000000000000000000000000000000000000000000000008F +:2011600000000000000000000000000000000000000000000000000000000000000000006F +:2011800000000000000000000000000000000000000000000000000000000000000000004F +:2011A00000000000000000000000000000000000000000000000000000000000000000002F +:2011C00000000000000000000000000000000000000000000000000000000000000000000F +:2011E0000000000000000000000000000000000000000000000000000000000000000000EF +:201200000000000000000000000000000000000000000000000000000000000000000000CE +:201220000000000000000000000000000000000000000000000000000000000000000000AE +:2012400000000000000000000000000000000000000000000000000000000000000000008E +:2012600000000000000000000000000000000000000000000000000000000000000000006E +:2012800000000000000000000000000000000000000000000000000000000000000000004E +:2012A00000000000000000000000000000000000000000000000000000000000000000002E +:2012C00000000000000000000000000000000000000000000000000000000000000000000E +:2012E0000000000000000000000000000000000000000000000000000000000000000000EE +:201300000000000000000000000000000000000000000000000000000000000000000000CD +:201320000000000000000000000000000000000000000000000000000000000000000000AD +:2013400000000000000000000000000000000000000000000000000000000000000000008D +:2013600000000000000000000000000000000000000000000000000000000000000000006D +:2013800000000000000000000000000000000000000000000000000000000000000000004D +:2013A00000000000000000000000000000000000000000000000000000000000000000002D +:2013C00000000000000000000000000000000000000000000000000000000000000000000D +:2013E0000000000000000000000000000000000000000000000000000000000000000000ED +:201400000000000000000000000000000000000000000000000000000000000000000000CC +:201420000000000000000000000000000000000000000000000000000000000000000000AC +:2014400000000000000000000000000000000000000000000000000000000000000000008C +:2014600000000000000000000000000000000000000000000000000000000000000000006C +:2014800000000000000000000000000000000000000000000000000000000000000000004C +:2014A00000000000000000000000000000000000000000000000000000000000000000002C +:2014C00000000000000000000000000000000000000000000000000000000000000000000C +:2014E0000000000000000000000000000000000000000000000000000000000000000000EC +:201500000000000000000000000000000000000000000000000000000000000000000000CB +:201520000000000000000000000000000000000000000000000000000000000000000000AB +:2015400000000000000000000000000000000000000000000000000000000000000000008B +:2015600000000000000000000000000000000000000000000000000000000000000000006B +:2015800000000000000000000000000000000000000000000000000000000000000000004B +:2015A00000000000000000000000000000000000000000000000000000000000000000002B +:2015C00000000000000000000000000000000000000000000000000000000000000000000B +:2015E0000000000000000000000000000000000000000000000000000000000000000000EB +:201600000000000000000000000000000000000000000000000000000000000000000000CA +:201620000000000000000000000000000000000000000000000000000000000000000000AA +:2016400000000000000000000000000000000000000000000000000000000000000000008A +:2016600000000000000000000000000000000000000000000000000000000000000000006A +:2016800000000000000000000000000000000000000000000000000000000000000000004A +:2016A00000000000000000000000000000000000000000000000000000000000000000002A +:2016C00000000000000000000000000000000000000000000000000000000000000000000A +:2016E0000000000000000000000000000000000000000000000000000000000000000000EA +:201700000000000000000000000000000000000000000000000000000000000000000000C9 +:201720000000000000000000000000000000000000000000000000000000000000000000A9 +:20174000000000000000000000000000000000000000000000000000000000000000000089 +:20176000000000000000000000000000000000000000000000000000000000000000000069 +:20178000000000000000000000000000000000000000000000000000000000000000000049 +:2017A000000000000000000000000000000000000000000000000000000000000000000029 +:2017C000000000000000000000000000000000000000000000000000000000000000000009 +:2017E0000000000000000000000000000000000000000000000000000000000000000000E9 +:201800000000000000000000000000000000000000000000000000000000000000000000C8 +:201820000000000000000000000000000000000000000000000000000000000000000000A8 +:20184000000000000000000000000000000000000000000000000000000000000000000088 +:20186000000000000000000000000000000000000000000000000000000000000000000068 +:20188000000000000000000000000000000000000000000000000000000000000000000048 +:2018A000000000000000000000000000000000000000000000000000000000000000000028 +:2018C000000000000000000000000000000000000000000000000000000000000000000008 +:2018E0000000000000000000000000000000000000000000000000000000000000000000E8 +:201900000000000000000000000000000000000000000000000000000000000000000000C7 +:201920000000000000000000000000000000000000000000000000000000000000000000A7 +:20194000000000000000000000000000000000000000000000000000000000000000000087 +:20196000000000000000000000000000000000000000000000000000000000000000000067 +:20198000000000000000000000000000000000000000000000000000000000000000000047 +:2019A000000000000000000000000000000000000000000000000000000000000000000027 +:2019C000000000000000000000000000000000000000000000000000000000000000000007 +:2019E0000000000000000000000000000000000000000000000000000000000000000000E7 +:201A00000000000000000000000000000000000000000000000000000000000000000000C6 +:201A20000000000000000000000000000000000000000000000000000000000000000000A6 +:201A4000000000000000000000000000000000000000000000000000000000000000000086 +:201A6000000000000000000000000000000000000000000000000000000000000000000066 +:201A8000000000000000000000000000000000000000000000000000000000000000000046 +:201AA000000000000000000000000000000000000000000000000000000000000000000026 +:201AC000000000000000000000000000000000000000000000000000000000000000000006 +:201AE0000000000000000000000000000000000000000000000000000000000000000000E6 +:201B00000000000000000000000000000000000000000000000000000000000000000000C5 +:201B20000000000000000000000000000000000000000000000000000000000000000000A5 +:201B4000000000000000000000000000000000000000000000000000000000000000000085 +:201B6000000000000000000000000000000000000000000000000000000000000000000065 +:201B8000000000000000000000000000000000000000000000000000000000000000000045 +:201BA000000000000000000000000000000000000000000000000000000000000000000025 +:201BC000000000000000000000000000000000000000000000000000000000000000000005 +:201BE0000000000000000000000000000000000000000000000000000000000000000000E5 +:201C00000000000000000000000000000000000000000000000000000000000000000000C4 +:201C20000000000000000000000000000000000000000000000000000000000000000000A4 +:201C4000000000000000000000000000000000000000000000000000000000000000000084 +:201C6000000000000000000000000000000000000000000000000000000000000000000064 +:201C8000000000000000000000000000000000000000000000000000000000000000000044 +:201CA000000000000000000000000000000000000000000000000000000000000000000024 +:201CC000000000000000000000000000000000000000000000000000000000000000000004 +:201CE0000000000000000000000000000000000000000000000000000000000000000000E4 +:201D00000000000000000000000000000000000000000000000000000000000000000000C3 +:201D20000000000000000000000000000000000000000000000000000000000000000000A3 +:201D4000000000000000000000000000000000000000000000000000000000000000000083 +:201D6000000000000000000000000000000000000000000000000000000000000000000063 +:201D8000000000000000000000000000000000000000000000000000000000000000000043 +:201DA000000000000000000000000000000000000000000000000000000000000000000023 +:201DC000000000000000000000000000000000000000000000000000000000000000000003 +:201DE0000000000000000000000000000000000000000000000000000000000000000000E3 +:201E00000000000000000000000000000000000000000000000000000000000000000000C2 +:201E20000000000000000000000000000000000000000000000000000000000000000000A2 +:201E4000000000000000000000000000000000000000000000000000000000000000000082 +:201E6000000000000000000000000000000000000000000000000000000000000000000062 +:201E8000000000000000000000000000000000000000000000000000000000000000000042 +:201EA000000000000000000000000000000000000000000000000000000000000000000022 +:201EC000000000000000000000000000000000000000000000000000000000000000000002 +:201EE0000000000000000000000000000000000000000000000000000000000000000000E2 +:201F00000000000000000000000000000000000000000000000000000000000000000000C1 +:201F20000000000000000000000000000000000000000000000000000000000000000000A1 +:201F4000000000000000000000000000000000000000000000000000000000000000000081 +:201F6000000000000000000000000000000000000000000000000000000000000000000061 +:201F8000000000000000000000000000000000000000000000000000000000000000000041 +:201FA000000000000000000000000000000000000000000000000000000000000000000021 +:201FC000000000000000000000000000000000000000000000000000000000000000000001 +:201FE0000000000000000000000000000000000000000000000000000000000000000000E1 +:202000000000000000000000000000000000000000000000000000000000000000000000C0 +:202020000000000000000000000000000000000000000000000000000000000000000000A0 +:20204000000000000000000000000000000000000000000000000000000000000000000080 +:20206000000000000000000000000000000000000000000000000000000000000000000060 +:20208000000000000000000000000000000000000000000000000000000000000000000040 +:2020A000000000000000000000000000000000000000000000000000000000000000000020 +:2020C000000000000000000000000000000000000000000000000000000000000000000000 +:2020E0000000000000000000000000000000000000000000000000000000000000000000E0 +:202100000000000000000000000000000000000000000000000000000000000000000000BF +:2021200000000000000000000000000000000000000000000000000000000000000000009F +:2021400000000000000000000000000000000000000000000000000000000000000000007F +:2021600000000000000000000000000000000000000000000000000000000000000000005F +:2021800000000000000000000000000000000000000000000000000000000000000000003F +:2021A00000000000000000000000000000000000000000000000000000000000000000001F +:2021C0000000000000000000000000000000000000000000000000000000000000000000FF +:2021E0000000000000000000000000000000000000000000000000000000000000000000DF +:202200000000000000000000000000000000000000000000000000000000000000000000BE +:2022200000000000000000000000000000000000000000000000000000000000000000009E +:2022400000000000000000000000000000000000000000000000000000000000000000007E +:2022600000000000000000000000000000000000000000000000000000000000000000005E +:2022800000000000000000000000000000000000000000000000000000000000000000003E +:2022A00000000000000000000000000000000000000000000000000000000000000000001E +:2022C0000000000000000000000000000000000000000000000000000000000000000000FE +:2022E0000000000000000000000000000000000000000000000000000000000000000000DE +:202300000000000000000000000000000000000000000000000000000000000000000000BD +:2023200000000000000000000000000000000000000000000000000000000000000000009D +:2023400000000000000000000000000000000000000000000000000000000000000000007D +:2023600000000000000000000000000000000000000000000000000000000000000000005D +:2023800000000000000000000000000000000000000000000000000000000000000000003D +:2023A00000000000000000000000000000000000000000000000000000000000000000001D +:2023C0000000000000000000000000000000000000000000000000000000000000000000FD +:2023E0000000000000000000000000000000000000000000000000000000000000000000DD +:202400000000000000000000000000000000000000000000000000000000000000000000BC +:2024200000000000000000000000000000000000000000000000000000000000000000009C +:2024400000000000000000000000000000000000000000000000000000000000000000007C +:2024600000000000000000000000000000000000000000000000000000000000000000005C +:2024800000000000000000000000000000000000000000000000000000000000000000003C +:2024A00000000000000000000000000000000000000000000000000000000000000000001C +:2024C0000000000000000000000000000000000000000000000000000000000000000000FC +:2024E0000000000000000000000000000000000000000000000000000000000000000000DC +:202500000000000000000000000000000000000000000000000000000000000000000000BB +:2025200000000000000000000000000000000000000000000000000000000000000000009B +:2025400000000000000000000000000000000000000000000000000000000000000000007B +:2025600000000000000000000000000000000000000000000000000000000000000000005B +:2025800000000000000000000000000000000000000000000000000000000000000000003B +:2025A00000000000000000000000000000000000000000000000000000000000000000001B +:2025C0000000000000000000000000000000000000000000000000000000000000000000FB +:2025E0000000000000000000000000000000000000000000000000000000000000000000DB +:202600000000000000000000000000000000000000000000000000000000000000000000BA +:2026200000000000000000000000000000000000000000000000000000000000000000009A +:2026400000000000000000000000000000000000000000000000000000000000000000007A +:2026600000000000000000000000000000000000000000000000000000000000000000005A +:2026800000000000000000000000000000000000000000000000000000000000000000003A +:2026A00000000000000000000000000000000000000000000000000000000000000000001A +:2026C0000000000000000000000000000000000000000000000000000000000000000000FA +:2026E0000000000000000000000000000000000000000000000000000000000000000000DA +:202700000000000000000000000000000000000000000000000000000000000000000000B9 +:20272000000000000000000000000000000000000000000000000000000000000000000099 +:20274000000000000000000000000000000000000000000000000000000000000000000079 +:20276000000000000000000000000000000000000000000000000000000000000000000059 +:20278000000000000000000000000000000000000000000000000000000000000000000039 +:2027A000000000000000000000000000000000000000000000000000000000000000000019 +:2027C0000000000000000000000000000000000000000000000000000000000000000000F9 +:2027E0000000000000000000000000000000000000000000000000000000000000000000D9 +:202800000000000000000000000000000000000000000000000000000000000000000000B8 +:20282000000000000000000000000000000000000000000000000000000000000000000098 +:20284000000000000000000000000000000000000000000000000000000000000000000078 +:20286000000000000000000000000000000000000000000000000000000000000000000058 +:20288000000000000000000000000000000000000000000000000000000000000000000038 +:2028A000000000000000000000000000000000000000000000000000000000000000000018 +:2028C0000000000000000000000000000000000000000000000000000000000000000000F8 +:2028E0000000000000000000000000000000000000000000000000000000000000000000D8 +:202900000000000000000000000000000000000000000000000000000000000000000000B7 +:20292000000000000000000000000000000000000000000000000000000000000000000097 +:20294000000000000000000000000000000000000000000000000000000000000000000077 +:20296000000000000000000000000000000000000000000000000000000000000000000057 +:20298000000000000000000000000000000000000000000000000000000000000000000037 +:2029A000000000000000000000000000000000000000000000000000000000000000000017 +:2029C0000000000000000000000000000000000000000000000000000000000000000000F7 +:2029E0000000000000000000000000000000000000000000000000000000000000000000D7 +:202A00000000000000000000000000000000000000000000000000000000000000000000B6 +:202A2000000000000000000000000000000000000000000000000000000000000000000096 +:202A4000000000000000000000000000000000000000000000000000000000000000000076 +:202A6000000000000000000000000000000000000000000000000000000000000000000056 +:202A8000000000000000000000000000000000000000000000000000000000000000000036 +:202AA000000000000000000000000000000000000000000000000000000000000000000016 +:202AC0000000000000000000000000000000000000000000000000000000000000000000F6 +:202AE0000000000000000000000000000000000000000000000000000000000000000000D6 +:202B00000000000000000000000000000000000000000000000000000000000000000000B5 +:202B2000000000000000000000000000000000000000000000000000000000000000000095 +:202B4000000000000000000000000000000000000000000000000000000000000000000075 +:202B6000000000000000000000000000000000000000000000000000000000000000000055 +:202B8000000000000000000000000000000000000000000000000000000000000000000035 +:202BA000000000000000000000000000000000000000000000000000000000000000000015 +:202BC0000000000000000000000000000000000000000000000000000000000000000000F5 +:202BE0000000000000000000000000000000000000000000000000000000000000000000D5 +:202C00000000000000000000000000000000000000000000000000000000000000000000B4 +:202C2000000000000000000000000000000000000000000000000000000000000000000094 +:202C4000000000000000000000000000000000000000000000000000000000000000000074 +:202C6000000000000000000000000000000000000000000000000000000000000000000054 +:202C8000000000000000000000000000000000000000000000000000000000000000000034 +:202CA000000000000000000000000000000000000000000000000000000000000000000014 +:202CC0000000000000000000000000000000000000000000000000000000000000000000F4 +:202CE0000000000000000000000000000000000000000000000000000000000000000000D4 +:202D00000000000000000000000000000000000000000000000000000000000000000000B3 +:202D2000000000000000000000000000000000000000000000000000000000000000000093 +:202D4000000000000000000000000000000000000000000000000000000000000000000073 +:202D6000000000000000000000000000000000000000000000000000000000000000000053 +:202D8000000000000000000000000000000000000000000000000000000000000000000033 +:202DA000000000000000000000000000000000000000000000000000000000000000000013 +:202DC0000000000000000000000000000000000000000000000000000000000000000000F3 +:202DE0000000000000000000000000000000000000000000000000000000000000000000D3 +:202E00000000000000000000000000000000000000000000000000000000000000000000B2 +:202E2000000000000000000000000000000000000000000000000000000000000000000092 +:202E4000000000000000000000000000000000000000000000000000000000000000000072 +:202E6000000000000000000000000000000000000000000000000000000000000000000052 +:202E8000000000000000000000000000000000000000000000000000000000000000000032 +:202EA000000000000000000000000000000000000000000000000000000000000000000012 +:202EC0000000000000000000000000000000000000000000000000000000000000000000F2 +:202EE0000000000000000000000000000000000000000000000000000000000000000000D2 +:202F00000000000000000000000000000000000000000000000000000000000000000000B1 +:202F2000000000000000000000000000000000000000000000000000000000000000000091 +:202F4000000000000000000000000000000000000000000000000000000000000000000071 +:202F6000000000000000000000000000000000000000000000000000000000000000000051 +:202F8000000000000000000000000000000000000000000000000000000000000000000031 +:202FA000000000000000000000000000000000000000000000000000000000000000000011 +:202FC0000000000000000000000000000000000000000000000000000000000000000000F1 +:202FE0000000000000000000000000000000000000000000000000000000000000000000D1 +:203000000000000000000000000000000000000000000000000000000000000000000000B0 +:20302000000000000000000000000000000000000000000000000000000000000000000090 +:20304000000000000000000000000000000000000000000000000000000000000000000070 +:20306000000000000000000000000000000000000000000000000000000000000000000050 +:20308000000000000000000000000000000000000000000000000000000000000000000030 +:2030A000000000000000000000000000000000000000000000000000000000000000000010 +:2030C0000000000000000000000000000000000000000000000000000000000000000000F0 +:2030E0000000000000000000000000000000000000000000000000000000000000000000D0 +:203100000000000000000000000000000000000000000000000000000000000000000000AF +:2031200000000000000000000000000000000000000000000000000000000000000000008F +:2031400000000000000000000000000000000000000000000000000000000000000000006F +:2031600000000000000000000000000000000000000000000000000000000000000000004F +:2031800000000000000000000000000000000000000000000000000000000000000000002F +:2031A00000000000000000000000000000000000000000000000000000000000000000000F +:2031C0000000000000000000000000000000000000000000000000000000000000000000EF +:2031E0000000000000000000000000000000000000000000000000000000000000000000CF +:203200000000000000000000000000000000000000000000000000000000000000000000AE +:2032200000000000000000000000000000000000000000000000000000000000000000008E +:2032400000000000000000000000000000000000000000000000000000000000000000006E +:2032600000000000000000000000000000000000000000000000000000000000000000004E +:2032800000000000000000000000000000000000000000000000000000000000000000002E +:2032A00000000000000000000000000000000000000000000000000000000000000000000E +:2032C0000000000000000000000000000000000000000000000000000000000000000000EE +:2032E0000000000000000000000000000000000000000000000000000000000000000000CE +:203300000000000000000000000000000000000000000000000000000000000000000000AD +:2033200000000000000000000000000000000000000000000000000000000000000000008D +:2033400000000000000000000000000000000000000000000000000000000000000000006D +:2033600000000000000000000000000000000000000000000000000000000000000000004D +:2033800000000000000000000000000000000000000000000000000000000000000000002D +:2033A00000000000000000000000000000000000000000000000000000000000000000000D +:2033C0000000000000000000000000000000000000000000000000000000000000000000ED +:2033E0000000000000000000000000000000000000000000000000000000000000000000CD +:203400000000000000000000000000000000000000000000000000000000000000000000AC +:2034200000000000000000000000000000000000000000000000000000000000000000008C +:2034400000000000000000000000000000000000000000000000000000000000000000006C +:2034600000000000000000000000000000000000000000000000000000000000000000004C +:2034800000000000000000000000000000000000000000000000000000000000000000002C +:2034A00000000000000000000000000000000000000000000000000000000000000000000C +:2034C0000000000000000000000000000000000000000000000000000000000000000000EC +:2034E0000000000000000000000000000000000000000000000000000000000000000000CC +:203500000000000000000000000000000000000000000000000000000000000000000000AB +:2035200000000000000000000000000000000000000000000000000000000000000000008B +:2035400000000000000000000000000000000000000000000000000000000000000000006B +:2035600000000000000000000000000000000000000000000000000000000000000000004B +:2035800000000000000000000000000000000000000000000000000000000000000000002B +:2035A00000000000000000000000000000000000000000000000000000000000000000000B +:2035C0000000000000000000000000000000000000000000000000000000000000000000EB +:2035E0000000000000000000000000000000000000000000000000000000000000000000CB +:203600000000000000000000000000000000000000000000000000000000000000000000AA +:2036200000000000000000000000000000000000000000000000000000000000000000008A +:2036400000000000000000000000000000000000000000000000000000000000000000006A +:2036600000000000000000000000000000000000000000000000000000000000000000004A +:2036800000000000000000000000000000000000000000000000000000000000000000002A +:2036A00000000000000000000000000000000000000000000000000000000000000000000A +:2036C0000000000000000000000000000000000000000000000000000000000000000000EA +:2036E0000000000000000000000000000000000000000000000000000000000000000000CA +:203700000000000000000000000000000000000000000000000000000000000000000000A9 +:20372000000000000000000000000000000000000000000000000000000000000000000089 +:20374000000000000000000000000000000000000000000000000000000000000000000069 +:20376000000000000000000000000000000000000000000000000000000000000000000049 +:20378000000000000000000000000000000000000000000000000000000000000000000029 +:2037A000000000000000000000000000000000000000000000000000000000000000000009 +:2037C0000000000000000000000000000000000000000000000000000000000000000000E9 +:2037E0000000000000000000000000000000000000000000000000000000000000000000C9 +:203800000000000000000000000000000000000000000000000000000000000000000000A8 +:20382000000000000000000000000000000000000000000000000000000000000000000088 +:20384000000000000000000000000000000000000000000000000000000000000000000068 +:20386000000000000000000000000000000000000000000000000000000000000000000048 +:20388000000000000000000000000000000000000000000000000000000000000000000028 +:2038A000000000000000000000000000000000000000000000000000000000000000000008 +:2038C0000000000000000000000000000000000000000000000000000000000000000000E8 +:2038E0000000000000000000000000000000000000000000000000000000000000000000C8 +:203900000000000000000000000000000000000000000000000000000000000000000000A7 +:20392000000000000000000000000000000000000000000000000000000000000000000087 +:20394000000000000000000000000000000000000000000000000000000000000000000067 +:20396000000000000000000000000000000000000000000000000000000000000000000047 +:20398000000000000000000000000000000000000000000000000000000000000000000027 +:2039A000000000000000000000000000000000000000000000000000000000000000000007 +:2039C0000000000000000000000000000000000000000000000000000000000000000000E7 +:2039E0000000000000000000000000000000000000000000000000000000000000000000C7 +:203A00000000000000000000000000000000000000000000000000000000000000000000A6 +:203A2000000000000000000000000000000000000000000000000000000000000000000086 +:203A4000000000000000000000000000000000000000000000000000000000000000000066 +:203A6000000000000000000000000000000000000000000000000000000000000000000046 +:203A8000000000000000000000000000000000000000000000000000000000000000000026 +:203AA000000000000000000000000000000000000000000000000000000000000000000006 +:203AC0000000000000000000000000000000000000000000000000000000000000000000E6 +:203AE0000000000000000000000000000000000000000000000000000000000000000000C6 +:203B00000000000000000000000000000000000000000000000000000000000000000000A5 +:203B2000000000000000000000000000000000000000000000000000000000000000000085 +:203B4000000000000000000000000000000000000000000000000000000000000000000065 +:203B6000000000000000000000000000000000000000000000000000000000000000000045 +:203B8000000000000000000000000000000000000000000000000000000000000000000025 +:203BA000000000000000000000000000000000000000000000000000000000000000000005 +:203BC0000000000000000000000000000000000000000000000000000000000000000000E5 +:203BE0000000000000000000000000000000000000000000000000000000000000000000C5 +:203C00000000000000000000000000000000000000000000000000000000000000000000A4 +:203C2000000000000000000000000000000000000000000000000000000000000000000084 +:203C4000000000000000000000000000000000000000000000000000000000000000000064 +:203C6000000000000000000000000000000000000000000000000000000000000000000044 +:203C8000000000000000000000000000000000000000000000000000000000000000000024 +:203CA000000000000000000000000000000000000000000000000000000000000000000004 +:203CC0000000000000000000000000000000000000000000000000000000000000000000E4 +:203CE0000000000000000000000000000000000000000000000000000000000000000000C4 +:203D00000000000000000000000000000000000000000000000000000000000000000000A3 +:203D2000000000000000000000000000000000000000000000000000000000000000000083 +:203D4000000000000000000000000000000000000000000000000000000000000000000063 +:203D6000000000000000000000000000000000000000000000000000000000000000000043 +:203D8000000000000000000000000000000000000000000000000000000000000000000023 +:203DA000000000000000000000000000000000000000000000000000000000000000000003 +:203DC0000000000000000000000000000000000000000000000000000000000000000000E3 +:203DE0000000000000000000000000000000000000000000000000000000000000000000C3 +:203E00000000000000000000000000000000000000000000000000000000000000000000A2 +:203E2000000000000000000000000000000000000000000000000000000000000000000082 +:203E4000000000000000000000000000000000000000000000000000000000000000000062 +:203E6000000000000000000000000000000000000000000000000000000000000000000042 +:203E8000000000000000000000000000000000000000000000000000000000000000000022 +:203EA000000000000000000000000000000000000000000000000000000000000000000002 +:203EC0000000000000000000000000000000000000000000000000000000000000000000E2 +:203EE0000000000000000000000000000000000000000000000000000000000000000000C2 +:203F00000000000000000000000000000000000000000000000000000000000000000000A1 +:203F2000000000000000000000000000000000000000000000000000000000000000000081 +:203F4000000000000000000000000000000000000000000000000000000000000000000061 +:203F6000000000000000000000000000000000000000000000000000000000000000000041 +:203F8000000000000000000000000000000000000000000000000000000000000000000021 +:203FA000000000000000000000000000000000000000000000000000000000000000000001 +:203FC0000000000000000000000000000000000000000000000000000000000000000000E1 +:203FE0000000000000000000000000000000000000000000000000000000000000000000C1 +:204000000000000000000000000000000000000000000000000000000000000000000000A0 +:20402000000000000000000000000000000000000000000000000000000000000000000080 +:20404000000000000000000000000000000000000000000000000000000000000000000060 +:20406000000000000000000000000000000000000000000000000000000000000000000040 +:20408000000000000000000000000000000000000000000000000000000000000000000020 +:2040A000000000000000000000000000000000000000000000000000000000000000000000 +:2040C0000000000000000000000000000000000000000000000000000000000000000000E0 +:2040E0000000000000000000000000000000000000000000000000000000000000000000C0 +:2041000000000000000000000000000000000000000000000000000000000000000000009F +:2041200000000000000000000000000000000000000000000000000000000000000000007F +:2041400000000000000000000000000000000000000000000000000000000000000000005F +:2041600000000000000000000000000000000000000000000000000000000000000000003F +:2041800000000000000000000000000000000000000000000000000000000000000000001F +:2041A0000000000000000000000000000000000000000000000000000000000000000000FF +:2041C0000000000000000000000000000000000000000000000000000000000000000000DF +:2041E0000000000000000000000000000000000000000000000000000000000000000000BF +:2042000000000000000000000000000000000000000000000000000000000000000000009E +:2042200000000000000000000000000000000000000000000000000000000000000000007E +:2042400000000000000000000000000000000000000000000000000000000000000000005E +:2042600000000000000000000000000000000000000000000000000000000000000000003E +:2042800000000000000000000000000000000000000000000000000000000000000000001E +:2042A0000000000000000000000000000000000000000000000000000000000000000000FE +:2042C0000000000000000000000000000000000000000000000000000000000000000000DE +:2042E0000000000000000000000000000000000000000000000000000000000000000000BE +:2043000000000000000000000000000000000000000000000000000000000000000000009D +:2043200000000000000000000000000000000000000000000000000000000000000000007D +:2043400000000000000000000000000000000000000000000000000000000000000000005D +:2043600000000000000000000000000000000000000000000000000000000000000000003D +:2043800000000000000000000000000000000000000000000000000000000000000000001D +:2043A0000000000000000000000000000000000000000000000000000000000000000000FD +:2043C0000000000000000000000000000000000000000000000000000000000000000000DD +:2043E0000000000000000000000000000000000000000000000000000000000000000000BD +:2044000000000000000000000000000000000000000000000000000000000000000000009C +:2044200000000000000000000000000000000000000000000000000000000000000000007C +:2044400000000000000000000000000000000000000000000000000000000000000000005C +:2044600000000000000000000000000000000000000000000000000000000000000000003C +:2044800000000000000000000000000000000000000000000000000000000000000000001C +:2044A0000000000000000000000000000000000000000000000000000000000000000000FC +:2044C0000000000000000000000000000000000000000000000000000000000000000000DC +:2044E0000000000000000000000000000000000000000000000000000000000000000000BC +:2045000000000000000000000000000000000000000000000000000000000000000000009B +:2045200000000000000000000000000000000000000000000000000000000000000000007B +:2045400000000000000000000000000000000000000000000000000000000000000000005B +:2045600000000000000000000000000000000000000000000000000000000000000000003B +:2045800000000000000000000000000000000000000000000000000000000000000000001B +:2045A0000000000000000000000000000000000000000000000000000000000000000000FB +:2045C0000000000000000000000000000000000000000000000000000000000000000000DB +:2045E0000000000000000000000000000000000000000000000000000000000000000000BB +:2046000000000000000000000000000000000000000000000000000000000000000000009A +:2046200000000000000000000000000000000000000000000000000000000000000000007A +:2046400000000000000000000000000000000000000000000000000000000000000000005A +:2046600000000000000000000000000000000000000000000000000000000000000000003A +:2046800000000000000000000000000000000000000000000000000000000000000000001A +:2046A0000000000000000000000000000000000000000000000000000000000000000000FA +:2046C0000000000000000000000000000000000000000000000000000000000000000000DA +:2046E0000000000000000000000000000000000000000000000000000000000000000000BA +:20470000000000000000000000000000000000000000000000000000000000000000000099 +:20472000000000000000000000000000000000000000000000000000000000000000000079 +:20474000000000000000000000000000000000000000000000000000000000000000000059 +:20476000000000000000000000000000000000000000000000000000000000000000000039 +:20478000000000000000000000000000000000000000000000000000000000000000000019 +:2047A0000000000000000000000000000000000000000000000000000000000000000000F9 +:2047C0000000000000000000000000000000000000000000000000000000000000000000D9 +:2047E0000000000000000000000000000000000000000000000000000000000000000000B9 +:20480000000000000000000000000000000000000000000000000000000000000000000098 +:20482000000000000000000000000000000000000000000000000000000000000000000078 +:20484000000000000000000000000000000000000000000000000000000000000000000058 +:20486000000000000000000000000000000000000000000000000000000000000000000038 +:20488000000000000000000000000000000000000000000000000000000000000000000018 +:2048A0000000000000000000000000000000000000000000000000000000000000000000F8 +:2048C0000000000000000000000000000000000000000000000000000000000000000000D8 +:2048E0000000000000000000000000000000000000000000000000000000000000000000B8 +:20490000000000000000000000000000000000000000000000000000000000000000000097 +:20492000000000000000000000000000000000000000000000000000000000000000000077 +:20494000000000000000000000000000000000000000000000000000000000000000000057 +:20496000000000000000000000000000000000000000000000000000000000000000000037 +:20498000000000000000000000000000000000000000000000000000000000000000000017 +:2049A0000000000000000000000000000000000000000000000000000000000000000000F7 +:2049C0000000000000000000000000000000000000000000000000000000000000000000D7 +:2049E0000000000000000000000000000000000000000000000000000000000000000000B7 +:204A0000000000000000000000000000000000000000000000000000000000000000000096 +:204A2000000000000000000000000000000000000000000000000000000000000000000076 +:204A4000000000000000000000000000000000000000000000000000000000000000000056 +:204A6000000000000000000000000000000000000000000000000000000000000000000036 +:204A8000000000000000000000000000000000000000000000000000000000000000000016 +:204AA0000000000000000000000000000000000000000000000000000000000000000000F6 +:204AC0000000000000000000000000000000000000000000000000000000000000000000D6 +:204AE0000000000000000000000000000000000000000000000000000000000000000000B6 +:204B0000000000000000000000000000000000000000000000000000000000000000000095 +:204B2000000000000000000000000000000000000000000000000000000000000000000075 +:204B4000000000000000000000000000000000000000000000000000000000000000000055 +:204B6000000000000000000000000000000000000000000000000000000000000000000035 +:204B8000000000000000000000000000000000000000000000000000000000000000000015 +:204BA0000000000000000000000000000000000000000000000000000000000000000000F5 +:204BC0000000000000000000000000000000000000000000000000000000000000000000D5 +:204BE0000000000000000000000000000000000000000000000000000000000000000000B5 +:204C0000000000000000000000000000000000000000000000000000000000000000000094 +:204C2000000000000000000000000000000000000000000000000000000000000000000074 +:204C4000000000000000000000000000000000000000000000000000000000000000000054 +:204C6000000000000000000000000000000000000000000000000000000000000000000034 +:204C8000000000000000000000000000000000000000000000000000000000000000000014 +:204CA0000000000000000000000000000000000000000000000000000000000000000000F4 +:204CC0000000000000000000000000000000000000000000000000000000000000000000D4 +:204CE0000000000000000000000000000000000000000000000000000000000000000000B4 +:204D0000000000000000000000000000000000000000000000000000000000000000000093 +:204D2000000000000000000000000000000000000000000000000000000000000000000073 +:204D4000000000000000000000000000000000000000000000000000000000000000000053 +:204D6000000000000000000000000000000000000000000000000000000000000000000033 +:204D8000000000000000000000000000000000000000000000000000000000000000000013 +:204DA0000000000000000000000000000000000000000000000000000000000000000000F3 +:204DC0000000000000000000000000000000000000000000000000000000000000000000D3 +:204DE0000000000000000000000000000000000000000000000000000000000000000000B3 +:204E0000000000000000000000000000000000000000000000000000000000000000000092 +:204E2000000000000000000000000000000000000000000000000000000000000000000072 +:204E4000000000000000000000000000000000000000000000000000000000000000000052 +:204E6000000000000000000000000000000000000000000000000000000000000000000032 +:204E8000000000000000000000000000000000000000000000000000000000000000000012 +:204EA0000000000000000000000000000000000000000000000000000000000000000000F2 +:204EC0000000000000000000000000000000000000000000000000000000000000000000D2 +:204EE0000000000000000000000000000000000000000000000000000000000000000000B2 +:204F0000000000000000000000000000000000000000000000000000000000000000000091 +:204F2000000000000000000000000000000000000000000000000000000000000000000071 +:204F4000000000000000000000000000000000000000000000000000000000000000000051 +:204F6000000000000000000000000000000000000000000000000000000000000000000031 +:204F8000000000000000000000000000000000000000000000000000000000000000000011 +:204FA0000000000000000000000000000000000000000000000000000000000000000000F1 +:204FC0000000000000000000000000000000000000000000000000000000000000000000D1 +:204FE0000000000000000000000000000000000000000000000000000000000000000000B1 +:20500000000000000000000000000000000000000000000000000000000000000000000090 +:20502000000000000000000000000000000000000000000000000000000000000000000070 +:20504000000000000000000000000000000000000000000000000000000000000000000050 +:20506000000000000000000000000000000000000000000000000000000000000000000030 +:20508000000000000000000000000000000000000000000000000000000000000000000010 +:2050A0000000000000000000000000000000000000000000000000000000000000000000F0 +:2050C0000000000000000000000000000000000000000000000000000000000000000000D0 +:2050E0000000000000000000000000000000000000000000000000000000000000000000B0 +:2051000000000000000000000000000000000000000000000000000000000000000000008F +:2051200000000000000000000000000000000000000000000000000000000000000000006F +:2051400000000000000000000000000000000000000000000000000000000000000000004F +:2051600000000000000000000000000000000000000000000000000000000000000000002F +:2051800000000000000000000000000000000000000000000000000000000000000000000F +:2051A0000000000000000000000000000000000000000000000000000000000000000000EF +:2051C0000000000000000000000000000000000000000000000000000000000000000000CF +:2051E0000000000000000000000000000000000000000000000000000000000000000000AF +:2052000000000000000000000000000000000000000000000000000000000000000000008E +:2052200000000000000000000000000000000000000000000000000000000000000000006E +:2052400000000000000000000000000000000000000000000000000000000000000000004E +:2052600000000000000000000000000000000000000000000000000000000000000000002E +:2052800000000000000000000000000000000000000000000000000000000000000000000E +:2052A0000000000000000000000000000000000000000000000000000000000000000000EE +:2052C0000000000000000000000000000000000000000000000000000000000000000000CE +:2052E0000000000000000000000000000000000000000000000000000000000000000000AE +:2053000000000000000000000000000000000000000000000000000000000000000000008D +:2053200000000000000000000000000000000000000000000000000000000000000000006D +:2053400000000000000000000000000000000000000000000000000000000000000000004D +:2053600000000000000000000000000000000000000000000000000000000000000000002D +:2053800000000000000000000000000000000000000000000000000000000000000000000D +:2053A0000000000000000000000000000000000000000000000000000000000000000000ED +:2053C0000000000000000000000000000000000000000000000000000000000000000000CD +:2053E0000000000000000000000000000000000000000000000000000000000000000000AD +:2054000000000000000000000000000000000000000000000000000000000000000000008C +:2054200000000000000000000000000000000000000000000000000000000000000000006C +:2054400000000000000000000000000000000000000000000000000000000000000000004C +:2054600000000000000000000000000000000000000000000000000000000000000000002C +:2054800000000000000000000000000000000000000000000000000000000000000000000C +:2054A0000000000000000000000000000000000000000000000000000000000000000000EC +:2054C0000000000000000000000000000000000000000000000000000000000000000000CC +:2054E0000000000000000000000000000000000000000000000000000000000000000000AC +:2055000000000000000000000000000000000000000000000000000000000000000000008B +:2055200000000000000000000000000000000000000000000000000000000000000000006B +:2055400000000000000000000000000000000000000000000000000000000000000000004B +:2055600000000000000000000000000000000000000000000000000000000000000000002B +:2055800000000000000000000000000000000000000000000000000000000000000000000B +:2055A0000000000000000000000000000000000000000000000000000000000000000000EB +:2055C0000000000000000000000000000000000000000000000000000000000000000000CB +:2055E0000000000000000000000000000000000000000000000000000000000000000000AB +:2056000000000000000000000000000000000000000000000000000000000000000000008A +:2056200000000000000000000000000000000000000000000000000000000000000000006A +:2056400000000000000000000000000000000000000000000000000000000000000000004A +:2056600000000000000000000000000000000000000000000000000000000000000000002A +:2056800000000000000000000000000000000000000000000000000000000000000000000A +:2056A0000000000000000000000000000000000000000000000000000000000000000000EA +:2056C0000000000000000000000000000000000000000000000000000000000000000000CA +:2056E0000000000000000000000000000000000000000000000000000000000000000000AA +:20570000000000000000000000000000000000000000000000000000000000000000000089 +:20572000000000000000000000000000000000000000000000000000000000000000000069 +:20574000000000000000000000000000000000000000000000000000000000000000000049 +:20576000000000000000000000000000000000000000000000000000000000000000000029 +:20578000000000000000000000000000000000000000000000000000000000000000000009 +:2057A0000000000000000000000000000000000000000000000000000000000000000000E9 +:2057C0000000000000000000000000000000000000000000000000000000000000000000C9 +:2057E0000000000000000000000000000000000000000000000000000000000000000000A9 +:20580000000000000000000000000000000000000000000000000000000000000000000088 +:20582000000000000000000000000000000000000000000000000000000000000000000068 +:20584000000000000000000000000000000000000000000000000000000000000000000048 +:20586000000000000000000000000000000000000000000000000000000000000000000028 +:20588000000000000000000000000000000000000000000000000000000000000000000008 +:2058A0000000000000000000000000000000000000000000000000000000000000000000E8 +:2058C0000000000000000000000000000000000000000000000000000000000000000000C8 +:2058E0000000000000000000000000000000000000000000000000000000000000000000A8 +:20590000000000000000000000000000000000000000000000000000000000000000000087 +:20592000000000000000000000000000000000000000000000000000000000000000000067 +:20594000000000000000000000000000000000000000000000000000000000000000000047 +:20596000000000000000000000000000000000000000000000000000000000000000000027 +:20598000000000000000000000000000000000000000000000000000000000000000000007 +:2059A0000000000000000000000000000000000000000000000000000000000000000000E7 +:2059C0000000000000000000000000000000000000000000000000000000000000000000C7 +:2059E0000000000000000000000000000000000000000000000000000000000000000000A7 +:205A0000000000000000000000000000000000000000000000000000000000000000000086 +:205A2000000000000000000000000000000000000000000000000000000000000000000066 +:205A4000000000000000000000000000000000000000000000000000000000000000000046 +:205A6000000000000000000000000000000000000000000000000000000000000000000026 +:205A8000000000000000000000000000000000000000000000000000000000000000000006 +:205AA0000000000000000000000000000000000000000000000000000000000000000000E6 +:205AC0000000000000000000000000000000000000000000000000000000000000000000C6 +:205AE0000000000000000000000000000000000000000000000000000000000000000000A6 +:205B0000000000000000000000000000000000000000000000000000000000000000000085 +:205B2000000000000000000000000000000000000000000000000000000000000000000065 +:205B4000000000000000000000000000000000000000000000000000000000000000000045 +:205B6000000000000000000000000000000000000000000000000000000000000000000025 +:205B8000000000000000000000000000000000000000000000000000000000000000000005 +:205BA0000000000000000000000000000000000000000000000000000000000000000000E5 +:205BC0000000000000000000000000000000000000000000000000000000000000000000C5 +:205BE0000000000000000000000000000000000000000000000000000000000000000000A5 +:205C0000000000000000000000000000000000000000000000000000000000000000000084 +:205C2000000000000000000000000000000000000000000000000000000000000000000064 +:205C4000000000000000000000000000000000000000000000000000000000000000000044 +:205C6000000000000000000000000000000000000000000000000000000000000000000024 +:205C8000000000000000000000000000000000000000000000000000000000000000000004 +:205CA0000000000000000000000000000000000000000000000000000000000000000000E4 +:205CC0000000000000000000000000000000000000000000000000000000000000000000C4 +:205CE0000000000000000000000000000000000000000000000000000000000000000000A4 +:205D0000000000000000000000000000000000000000000000000000000000000000000083 +:205D2000000000000000000000000000000000000000000000000000000000000000000063 +:205D4000000000000000000000000000000000000000000000000000000000000000000043 +:205D6000000000000000000000000000000000000000000000000000000000000000000023 +:205D8000000000000000000000000000000000000000000000000000000000000000000003 +:205DA0000000000000000000000000000000000000000000000000000000000000000000E3 +:205DC0000000000000000000000000000000000000000000000000000000000000000000C3 +:205DE0000000000000000000000000000000000000000000000000000000000000000000A3 +:205E0000000000000000000000000000000000000000000000000000000000000000000082 +:205E2000000000000000000000000000000000000000000000000000000000000000000062 +:205E4000000000000000000000000000000000000000000000000000000000000000000042 +:205E6000000000000000000000000000000000000000000000000000000000000000000022 +:205E8000000000000000000000000000000000000000000000000000000000000000000002 +:205EA0000000000000000000000000000000000000000000000000000000000000000000E2 +:205EC0000000000000000000000000000000000000000000000000000000000000000000C2 +:205EE0000000000000000000000000000000000000000000000000000000000000000000A2 +:205F0000000000000000000000000000000000000000000000000000000000000000000081 +:205F2000000000000000000000000000000000000000000000000000000000000000000061 +:205F4000000000000000000000000000000000000000000000000000000000000000000041 +:205F6000000000000000000000000000000000000000000000000000000000000000000021 +:205F8000000000000000000000000000000000000000000000000000000000000000000001 +:205FA0000000000000000000000000000000000000000000000000000000000000000000E1 +:205FC0000000000000000000000000000000000000000000000000000000000000000000C1 +:205FE0000000000000000000000000000000000000000000000000000000000000000000A1 +:20600000000000000000000000000000000000000000000000000000000000000000000080 +:20602000000000000000000000000000000000000000000000000000000000000000000060 +:20604000000000000000000000000000000000000000000000000000000000000000000040 +:20606000000000000000000000000000000000000000000000000000000000000000000020 +:20608000000000000000000000000000000000000000000000000000000000000000000000 +:2060A0000000000000000000000000000000000000000000000000000000000000000000E0 +:2060C0000000000000000000000000000000000000000000000000000000000000000000C0 +:2060E0000000000000000000000000000000000000000000000000000000000000000000A0 +:2061000000000000000000000000000000000000000000000000000000000000000000007F +:2061200000000000000000000000000000000000000000000000000000000000000000005F +:2061400000000000000000000000000000000000000000000000000000000000000000003F +:2061600000000000000000000000000000000000000000000000000000000000000000001F +:206180000000000000000000000000000000000000000000000000000000000000000000FF +:2061A0000000000000000000000000000000000000000000000000000000000000000000DF +:2061C0000000000000000000000000000000000000000000000000000000000000000000BF +:2061E00000000000000000000000000000000000000000000000000000000000000000009F +:2062000000000000000000000000000000000000000000000000000000000000000000007E +:2062200000000000000000000000000000000000000000000000000000000000000000005E +:2062400000000000000000000000000000000000000000000000000000000000000000003E +:2062600000000000000000000000000000000000000000000000000000000000000000001E +:206280000000000000000000000000000000000000000000000000000000000000000000FE +:2062A0000000000000000000000000000000000000000000000000000000000000000000DE +:2062C0000000000000000000000000000000000000000000000000000000000000000000BE +:2062E00000000000000000000000000000000000000000000000000000000000000000009E +:2063000000000000000000000000000000000000000000000000000000000000000000007D +:2063200000000000000000000000000000000000000000000000000000000000000000005D +:2063400000000000000000000000000000000000000000000000000000000000000000003D +:2063600000000000000000000000000000000000000000000000000000000000000000001D +:206380000000000000000000000000000000000000000000000000000000000000000000FD +:2063A0000000000000000000000000000000000000000000000000000000000000000000DD +:2063C0000000000000000000000000000000000000000000000000000000000000000000BD +:2063E00000000000000000000000000000000000000000000000000000000000000000009D +:2064000000000000000000000000000000000000000000000000000000000000000000007C +:2064200000000000000000000000000000000000000000000000000000000000000000005C +:2064400000000000000000000000000000000000000000000000000000000000000000003C +:2064600000000000000000000000000000000000000000000000000000000000000000001C +:206480000000000000000000000000000000000000000000000000000000000000000000FC +:2064A0000000000000000000000000000000000000000000000000000000000000000000DC +:2064C0000000000000000000000000000000000000000000000000000000000000000000BC +:2064E00000000000000000000000000000000000000000000000000000000000000000009C +:2065000000000000000000000000000000000000000000000000000000000000000000007B +:2065200000000000000000000000000000000000000000000000000000000000000000005B +:2065400000000000000000000000000000000000000000000000000000000000000000003B +:2065600000000000000000000000000000000000000000000000000000000000000000001B +:206580000000000000000000000000000000000000000000000000000000000000000000FB +:2065A0000000000000000000000000000000000000000000000000000000000000000000DB +:2065C0000000000000000000000000000000000000000000000000000000000000000000BB +:2065E00000000000000000000000000000000000000000000000000000000000000000009B +:2066000000000000000000000000000000000000000000000000000000000000000000007A +:2066200000000000000000000000000000000000000000000000000000000000000000005A +:2066400000000000000000000000000000000000000000000000000000000000000000003A +:2066600000000000000000000000000000000000000000000000000000000000000000001A +:206680000000000000000000000000000000000000000000000000000000000000000000FA +:2066A0000000000000000000000000000000000000000000000000000000000000000000DA +:2066C0000000000000000000000000000000000000000000000000000000000000000000BA +:2066E00000000000000000000000000000000000000000000000000000000000000000009A +:20670000000000000000000000000000000000000000000000000000000000000000000079 +:20672000000000000000000000000000000000000000000000000000000000000000000059 +:20674000000000000000000000000000000000000000000000000000000000000000000039 +:20676000000000000000000000000000000000000000000000000000000000000000000019 +:206780000000000000000000000000000000000000000000000000000000000000000000F9 +:2067A0000000000000000000000000000000000000000000000000000000000000000000D9 +:2067C0000000000000000000000000000000000000000000000000000000000000000000B9 +:2067E000000000000000000000000000000000000000000000000000000000000000000099 +:20680000000000000000000000000000000000000000000000000000000000000000000078 +:20682000000000000000000000000000000000000000000000000000000000000000000058 +:20684000000000000000000000000000000000000000000000000000000000000000000038 +:20686000000000000000000000000000000000000000000000000000000000000000000018 +:206880000000000000000000000000000000000000000000000000000000000000000000F8 +:2068A0000000000000000000000000000000000000000000000000000000000000000000D8 +:2068C0000000000000000000000000000000000000000000000000000000000000000000B8 +:2068E000000000000000000000000000000000000000000000000000000000000000000098 +:20690000000000000000000000000000000000000000000000000000000000000000000077 +:20692000000000000000000000000000000000000000000000000000000000000000000057 +:20694000000000000000000000000000000000000000000000000000000000000000000037 +:20696000000000000000000000000000000000000000000000000000000000000000000017 +:206980000000000000000000000000000000000000000000000000000000000000000000F7 +:2069A0000000000000000000000000000000000000000000000000000000000000000000D7 +:2069C0000000000000000000000000000000000000000000000000000000000000000000B7 +:2069E000000000000000000000000000000000000000000000000000000000000000000097 +:206A0000000000000000000000000000000000000000000000000000000000000000000076 +:206A2000000000000000000000000000000000000000000000000000000000000000000056 +:206A4000000000000000000000000000000000000000000000000000000000000000000036 +:206A6000000000000000000000000000000000000000000000000000000000000000000016 +:206A80000000000000000000000000000000000000000000000000000000000000000000F6 +:206AA0000000000000000000000000000000000000000000000000000000000000000000D6 +:206AC0000000000000000000000000000000000000000000000000000000000000000000B6 +:206AE000000000000000000000000000000000000000000000000000000000000000000096 +:206B0000000000000000000000000000000000000000000000000000000000000000000075 +:206B2000000000000000000000000000000000000000000000000000000000000000000055 +:206B4000000000000000000000000000000000000000000000000000000000000000000035 +:206B6000000000000000000000000000000000000000000000000000000000000000000015 +:206B80000000000000000000000000000000000000000000000000000000000000000000F5 +:206BA0000000000000000000000000000000000000000000000000000000000000000000D5 +:206BC0000000000000000000000000000000000000000000000000000000000000000000B5 +:206BE000000000000000000000000000000000000000000000000000000000000000000095 +:206C0000000000000000000000000000000000000000000000000000000000000000000074 +:206C2000000000000000000000000000000000000000000000000000000000000000000054 +:206C4000000000000000000000000000000000000000000000000000000000000000000034 +:206C6000000000000000000000000000000000000000000000000000000000000000000014 +:206C80000000000000000000000000000000000000000000000000000000000000000000F4 +:206CA0000000000000000000000000000000000000000000000000000000000000000000D4 +:206CC0000000000000000000000000000000000000000000000000000000000000000000B4 +:206CE000000000000000000000000000000000000000000000000000000000000000000094 +:206D0000000000000000000000000000000000000000000000000000000000000000000073 +:206D2000000000000000000000000000000000000000000000000000000000000000000053 +:206D4000000000000000000000000000000000000000000000000000000000000000000033 +:206D6000000000000000000000000000000000000000000000000000000000000000000013 +:206D80000000000000000000000000000000000000000000000000000000000000000000F3 +:206DA0000000000000000000000000000000000000000000000000000000000000000000D3 +:206DC0000000000000000000000000000000000000000000000000000000000000000000B3 +:206DE000000000000000000000000000000000000000000000000000000000000000000093 +:206E0000000000000000000000000000000000000000000000000000000000000000000072 +:206E2000000000000000000000000000000000000000000000000000000000000000000052 +:206E4000000000000000000000000000000000000000000000000000000000000000000032 +:206E6000000000000000000000000000000000000000000000000000000000000000000012 +:206E80000000000000000000000000000000000000000000000000000000000000000000F2 +:206EA0000000000000000000000000000000000000000000000000000000000000000000D2 +:206EC0000000000000000000000000000000000000000000000000000000000000000000B2 +:206EE000000000000000000000000000000000000000000000000000000000000000000092 +:206F0000000000000000000000000000000000000000000000000000000000000000000071 +:206F2000000000000000000000000000000000000000000000000000000000000000000051 +:206F4000000000000000000000000000000000000000000000000000000000000000000031 +:206F6000000000000000000000000000000000000000000000000000000000000000000011 +:206F80000000000000000000000000000000000000000000000000000000000000000000F1 +:206FA0000000000000000000000000000000000000000000000000000000000000000000D1 +:206FC0000000000000000000000000000000000000000000000000000000000000000000B1 +:206FE000000000000000000000000000000000000000000000000000000000000000000091 +:20700000000000000000000000000000000000000000000000000000000000000000000070 +:20702000000000000000000000000000000000000000000000000000000000000000000050 +:20704000000000000000000000000000000000000000000000000000000000000000000030 +:20706000000000000000000000000000000000000000000000000000000000000000000010 +:207080000000000000000000000000000000000000000000000000000000000000000000F0 +:2070A0000000000000000000000000000000000000000000000000000000000000000000D0 +:2070C0000000000000000000000000000000000000000000000000000000000000000000B0 +:2070E000000000000000000000000000000000000000000000000000000000000000000090 +:2071000000000000000000000000000000000000000000000000000000000000000000006F +:2071200000000000000000000000000000000000000000000000000000000000000000004F +:2071400000000000000000000000000000000000000000000000000000000000000000002F +:2071600000000000000000000000000000000000000000000000000000000000000000000F +:207180000000000000000000000000000000000000000000000000000000000000000000EF +:2071A0000000000000000000000000000000000000000000000000000000000000000000CF +:2071C0000000000000000000000000000000000000000000000000000000000000000000AF +:2071E00000000000000000000000000000000000000000000000000000000000000000008F +:2072000000000000000000000000000000000000000000000000000000000000000000006E +:2072200000000000000000000000000000000000000000000000000000000000000000004E +:2072400000000000000000000000000000000000000000000000000000000000000000002E +:2072600000000000000000000000000000000000000000000000000000000000000000000E +:207280000000000000000000000000000000000000000000000000000000000000000000EE +:2072A0000000000000000000000000000000000000000000000000000000000000000000CE +:2072C0000000000000000000000000000000000000000000000000000000000000000000AE +:2072E00000000000000000000000000000000000000000000000000000000000000000008E +:2073000000000000000000000000000000000000000000000000000000000000000000006D +:2073200000000000000000000000000000000000000000000000000000000000000000004D +:2073400000000000000000000000000000000000000000000000000000000000000000002D +:2073600000000000000000000000000000000000000000000000000000000000000000000D +:207380000000000000000000000000000000000000000000000000000000000000000000ED +:2073A0000000000000000000000000000000000000000000000000000000000000000000CD +:2073C0000000000000000000000000000000000000000000000000000000000000000000AD +:2073E00000000000000000000000000000000000000000000000000000000000000000008D +:2074000000000000000000000000000000000000000000000000000000000000000000006C +:2074200000000000000000000000000000000000000000000000000000000000000000004C +:2074400000000000000000000000000000000000000000000000000000000000000000002C +:2074600000000000000000000000000000000000000000000000000000000000000000000C +:207480000000000000000000000000000000000000000000000000000000000000000000EC +:2074A0000000000000000000000000000000000000000000000000000000000000000000CC +:2074C0000000000000000000000000000000000000000000000000000000000000000000AC +:2074E00000000000000000000000000000000000000000000000000000000000000000008C +:2075000000000000000000000000000000000000000000000000000000000000000000006B +:2075200000000000000000000000000000000000000000000000000000000000000000004B +:2075400000000000000000000000000000000000000000000000000000000000000000002B +:2075600000000000000000000000000000000000000000000000000000000000000000000B +:207580000000000000000000000000000000000000000000000000000000000000000000EB +:2075A0000000000000000000000000000000000000000000000000000000000000000000CB +:2075C0000000000000000000000000000000000000000000000000000000000000000000AB +:2075E00000000000000000000000000000000000000000000000000000000000000000008B +:2076000000000000000000000000000000000000000000000000000000000000000000006A +:2076200000000000000000000000000000000000000000000000000000000000000000004A +:2076400000000000000000000000000000000000000000000000000000000000000000002A +:2076600000000000000000000000000000000000000000000000000000000000000000000A +:207680000000000000000000000000000000000000000000000000000000000000000000EA +:2076A0000000000000000000000000000000000000000000000000000000000000000000CA +:2076C0000000000000000000000000000000000000000000000000000000000000000000AA +:2076E00000000000000000000000000000000000000000000000000000000000000000008A +:20770000000000000000000000000000000000000000000000000000000000000000000069 +:20772000000000000000000000000000000000000000000000000000000000000000000049 +:20774000000000000000000000000000000000000000000000000000000000000000000029 +:20776000000000000000000000000000000000000000000000000000000000000000000009 +:207780000000000000000000000000000000000000000000000000000000000000000000E9 +:2077A0000000000000000000000000000000000000000000000000000000000000000000C9 +:2077C0000000000000000000000000000000000000000000000000000000000000000000A9 +:2077E000000000000000000000000000000000000000000000000000000000000000000089 +:20780000000000000000000000000000000000000000000000000000000000000000000068 +:20782000000000000000000000000000000000000000000000000000000000000000000048 +:20784000000000000000000000000000000000000000000000000000000000000000000028 +:20786000000000000000000000000000000000000000000000000000000000000000000008 +:207880000000000000000000000000000000000000000000000000000000000000000000E8 +:2078A0000000000000000000000000000000000000000000000000000000000000000000C8 +:2078C0000000000000000000000000000000000000000000000000000000000000000000A8 +:2078E000000000000000000000000000000000000000000000000000000000000000000088 +:20790000000000000000000000000000000000000000000000000000000000000000000067 +:20792000000000000000000000000000000000000000000000000000000000000000000047 +:20794000000000000000000000000000000000000000000000000000000000000000000027 +:20796000000000000000000000000000000000000000000000000000000000000000000007 +:207980000000000000000000000000000000000000000000000000000000000000000000E7 +:2079A0000000000000000000000000000000000000000000000000000000000000000000C7 +:2079C0000000000000000000000000000000000000000000000000000000000000000000A7 +:2079E000000000000000000000000000000000000000000000000000000000000000000087 +:207A0000000000000000000000000000000000000000000000000000000000000000000066 +:207A2000000000000000000000000000000000000000000000000000000000000000000046 +:207A4000000000000000000000000000000000000000000000000000000000000000000026 +:207A6000000000000000000000000000000000000000000000000000000000000000000006 +:207A80000000000000000000000000000000000000000000000000000000000000000000E6 +:207AA0000000000000000000000000000000000000000000000000000000000000000000C6 +:207AC0000000000000000000000000000000000000000000000000000000000000000000A6 +:207AE000000000000000000000000000000000000000000000000000000000000000000086 +:207B0000000000000000000000000000000000000000000000000000000000000000000065 +:207B2000000000000000000000000000000000000000000000000000000000000000000045 +:207B4000000000000000000000000000000000000000000000000000000000000000000025 +:207B6000000000000000000000000000000000000000000000000000000000000000000005 +:207B80000000000000000000000000000000000000000000000000000000000000000000E5 +:207BA0000000000000000000000000000000000000000000000000000000000000000000C5 +:207BC0000000000000000000000000000000000000000000000000000000000000000000A5 +:207BE000000000000000000000000000000000000000000000000000000000000000000085 +:207C0000000000000000000000000000000000000000000000000000000000000000000064 +:207C2000000000000000000000000000000000000000000000000000000000000000000044 +:207C4000000000000000000000000000000000000000000000000000000000000000000024 +:207C6000000000000000000000000000000000000000000000000000000000000000000004 +:207C80000000000000000000000000000000000000000000000000000000000000000000E4 +:207CA0000000000000000000000000000000000000000000000000000000000000000000C4 +:207CC0000000000000000000000000000000000000000000000000000000000000000000A4 +:207CE000000000000000000000000000000000000000000000000000000000000000000084 +:207D0000000000000000000000000000000000000000000000000000000000000000000063 +:207D2000000000000000000000000000000000000000000000000000000000000000000043 +:207D4000000000000000000000000000000000000000000000000000000000000000000023 +:207D6000000000000000000000000000000000000000000000000000000000000000000003 +:207D80000000000000000000000000000000000000000000000000000000000000000000E3 +:207DA0000000000000000000000000000000000000000000000000000000000000000000C3 +:207DC0000000000000000000000000000000000000000000000000000000000000000000A3 +:207DE000000000000000000000000000000000000000000000000000000000000000000083 +:207E0000000000000000000000000000000000000000000000000000000000000000000062 +:207E2000000000000000000000000000000000000000000000000000000000000000000042 +:207E4000000000000000000000000000000000000000000000000000000000000000000022 +:207E6000000000000000000000000000000000000000000000000000000000000000000002 +:207E80000000000000000000000000000000000000000000000000000000000000000000E2 +:207EA0000000000000000000000000000000000000000000000000000000000000000000C2 +:207EC0000000000000000000000000000000000000000000000000000000000000000000A2 +:207EE000000000000000000000000000000000000000000000000000000000000000000082 +:207F0000000000000000000000000000000000000000000000000000000000000000000061 +:207F2000000000000000000000000000000000000000000000000000000000000000000041 +:207F4000000000000000000000000000000000000000000000000000000000000000000021 +:207F6000000000000000000000000000000000000000000000000000000000000000000001 +:207F80000000000000000000000000000000000000000000000000000000000000000000E1 +:207FA0000000000000000000000000000000000000000000000000000000000000000000C1 +:207FC0000000000000000000000000000000000000000000000000000000000000000000A1 +:207FE000000000000000000000000000000000000000000000000000000000000000000081 +:20800000000000000000000000000000000000000000000000000000000000000000000060 +:20802000000000000000000000000000000000000000000000000000000000000000000040 +:20804000000000000000000000000000000000000000000000000000000000000000000020 +:20806000000000000000000000000000000000000000000000000000000000000000000000 +:208080000000000000000000000000000000000000000000000000000000000000000000E0 +:2080A0000000000000000000000000000000000000000000000000000000000000000000C0 +:2080C0000000000000000000000000000000000000000000000000000000000000000000A0 +:2080E000000000000000000000000000000000000000000000000000000000000000000080 +:2081000000000000000000000000000000000000000000000000000000000000000000005F +:2081200000000000000000000000000000000000000000000000000000000000000000003F +:2081400000000000000000000000000000000000000000000000000000000000000000001F +:208160000000000000000000000000000000000000000000000000000000000000000000FF +:208180000000000000000000000000000000000000000000000000000000000000000000DF +:2081A0000000000000000000000000000000000000000000000000000000000000000000BF +:2081C00000000000000000000000000000000000000000000000000000000000000000009F +:2081E00000000000000000000000000000000000000000000000000000000000000000007F +:2082000000000000000000000000000000000000000000000000000000000000000000005E +:2082200000000000000000000000000000000000000000000000000000000000000000003E +:2082400000000000000000000000000000000000000000000000000000000000000000001E +:208260000000000000000000000000000000000000000000000000000000000000000000FE +:208280000000000000000000000000000000000000000000000000000000000000000000DE +:2082A0000000000000000000000000000000000000000000000000000000000000000000BE +:2082C00000000000000000000000000000000000000000000000000000000000000000009E +:2082E00000000000000000000000000000000000000000000000000000000000000000007E +:2083000000000000000000000000000000000000000000000000000000000000000000005D +:2083200000000000000000000000000000000000000000000000000000000000000000003D +:2083400000000000000000000000000000000000000000000000000000000000000000001D +:208360000000000000000000000000000000000000000000000000000000000000000000FD +:208380000000000000000000000000000000000000000000000000000000000000000000DD +:2083A0000000000000000000000000000000000000000000000000000000000000000000BD +:2083C00000000000000000000000000000000000000000000000000000000000000000009D +:2083E00000000000000000000000000000000000000000000000000000000000000000007D +:2084000000000000000000000000000000000000000000000000000000000000000000005C +:2084200000000000000000000000000000000000000000000000000000000000000000003C +:2084400000000000000000000000000000000000000000000000000000000000000000001C +:208460000000000000000000000000000000000000000000000000000000000000000000FC +:208480000000000000000000000000000000000000000000000000000000000000000000DC +:2084A0000000000000000000000000000000000000000000000000000000000000000000BC +:2084C00000000000000000000000000000000000000000000000000000000000000000009C +:2084E00000000000000000000000000000000000000000000000000000000000000000007C +:2085000000000000000000000000000000000000000000000000000000000000000000005B +:2085200000000000000000000000000000000000000000000000000000000000000000003B +:2085400000000000000000000000000000000000000000000000000000000000000000001B +:208560000000000000000000000000000000000000000000000000000000000000000000FB +:208580000000000000000000000000000000000000000000000000000000000000000000DB +:2085A0000000000000000000000000000000000000000000000000000000000000000000BB +:2085C00000000000000000000000000000000000000000000000000000000000000000009B +:2085E00000000000000000000000000000000000000000000000000000000000000000007B +:2086000000000000000000000000000000000000000000000000000000000000000000005A +:2086200000000000000000000000000000000000000000000000000000000000000000003A +:2086400000000000000000000000000000000000000000000000000000000000000000001A +:208660000000000000000000000000000000000000000000000000000000000000000000FA +:208680000000000000000000000000000000000000000000000000000000000000000000DA +:2086A0000000000000000000000000000000000000000000000000000000000000000000BA +:2086C00000000000000000000000000000000000000000000000000000000000000000009A +:2086E00000000000000000000000000000000000000000000000000000000000000000007A +:20870000000000000000000000000000000000000000000000000000000000000000000059 +:20872000000000000000000000000000000000000000000000000000000000000000000039 +:20874000000000000000000000000000000000000000000000000000000000000000000019 +:208760000000000000000000000000000000000000000000000000000000000000000000F9 +:208780000000000000000000000000000000000000000000000000000000000000000000D9 +:2087A0000000000000000000000000000000000000000000000000000000000000000000B9 +:2087C000000000000000000000000000000000000000000000000000000000000000000099 +:2087E000000000000000000000000000000000000000000000000000000000000000000079 +:20880000000000000000000000000000000000000000000000000000000000000000000058 +:20882000000000000000000000000000000000000000000000000000000000000000000038 +:20884000000000000000000000000000000000000000000000000000000000000000000018 +:208860000000000000000000000000000000000000000000000000000000000000000000F8 +:208880000000000000000000000000000000000000000000000000000000000000000000D8 +:2088A0000000000000000000000000000000000000000000000000000000000000000000B8 +:2088C000000000000000000000000000000000000000000000000000000000000000000098 +:2088E000000000000000000000000000000000000000000000000000000000000000000078 +:20890000000000000000000000000000000000000000000000000000000000000000000057 +:20892000000000000000000000000000000000000000000000000000000000000000000037 +:20894000000000000000000000000000000000000000000000000000000000000000000017 +:208960000000000000000000000000000000000000000000000000000000000000000000F7 +:208980000000000000000000000000000000000000000000000000000000000000000000D7 +:2089A0000000000000000000000000000000000000000000000000000000000000000000B7 +:2089C000000000000000000000000000000000000000000000000000000000000000000097 +:2089E000000000000000000000000000000000000000000000000000000000000000000077 +:208A0000000000000000000000000000000000000000000000000000000000000000000056 +:208A2000000000000000000000000000000000000000000000000000000000000000000036 +:208A4000000000000000000000000000000000000000000000000000000000000000000016 +:208A60000000000000000000000000000000000000000000000000000000000000000000F6 +:208A80000000000000000000000000000000000000000000000000000000000000000000D6 +:208AA0000000000000000000000000000000000000000000000000000000000000000000B6 +:208AC000000000000000000000000000000000000000000000000000000000000000000096 +:208AE000000000000000000000000000000000000000000000000000000000000000000076 +:208B0000000000000000000000000000000000000000000000000000000000000000000055 +:208B2000000000000000000000000000000000000000000000000000000000000000000035 +:208B4000000000000000000000000000000000000000000000000000000000000000000015 +:208B60000000000000000000000000000000000000000000000000000000000000000000F5 +:208B80000000000000000000000000000000000000000000000000000000000000000000D5 +:208BA0000000000000000000000000000000000000000000000000000000000000000000B5 +:208BC000000000000000000000000000000000000000000000000000000000000000000095 +:208BE000000000000000000000000000000000000000000000000000000000000000000075 +:208C0000000000000000000000000000000000000000000000000000000000000000000054 +:208C2000000000000000000000000000000000000000000000000000000000000000000034 +:208C4000000000000000000000000000000000000000000000000000000000000000000014 +:208C60000000000000000000000000000000000000000000000000000000000000000000F4 +:208C80000000000000000000000000000000000000000000000000000000000000000000D4 +:208CA0000000000000000000000000000000000000000000000000000000000000000000B4 +:208CC000000000000000000000000000000000000000000000000000000000000000000094 +:208CE000000000000000000000000000000000000000000000000000000000000000000074 +:208D0000000000000000000000000000000000000000000000000000000000000000000053 +:208D2000000000000000000000000000000000000000000000000000000000000000000033 +:208D4000000000000000000000000000000000000000000000000000000000000000000013 +:208D60000000000000000000000000000000000000000000000000000000000000000000F3 +:208D80000000000000000000000000000000000000000000000000000000000000000000D3 +:208DA0000000000000000000000000000000000000000000000000000000000000000000B3 +:208DC000000000000000000000000000000000000000000000000000000000000000000093 +:208DE000000000000000000000000000000000000000000000000000000000000000000073 +:208E0000000000000000000000000000000000000000000000000000000000000000000052 +:208E2000000000000000000000000000000000000000000000000000000000000000000032 +:208E4000000000000000000000000000000000000000000000000000000000000000000012 +:208E60000000000000000000000000000000000000000000000000000000000000000000F2 +:208E80000000000000000000000000000000000000000000000000000000000000000000D2 +:208EA0000000000000000000000000000000000000000000000000000000000000000000B2 +:208EC000000000000000000000000000000000000000000000000000000000000000000092 +:208EE000000000000000000000000000000000000000000000000000000000000000000072 +:208F0000000000000000000000000000000000000000000000000000000000000000000051 +:208F2000000000000000000000000000000000000000000000000000000000000000000031 +:208F4000000000000000000000000000000000000000000000000000000000000000000011 +:208F60000000000000000000000000000000000000000000000000000000000000000000F1 +:208F80000000000000000000000000000000000000000000000000000000000000000000D1 +:208FA0000000000000000000000000000000000000000000000000000000000000000000B1 +:208FC000000000000000000000000000000000000000000000000000000000000000000091 +:208FE000000000000000000000000000000000000000000000000000000000000000000071 +:20900000000000000000000000000000000000000000000000000000000000000000000050 +:20902000000000000000000000000000000000000000000000000000000000000000000030 +:20904000000000000000000000000000000000000000000000000000000000000000000010 +:209060000000000000000000000000000000000000000000000000000000000000000000F0 +:209080000000000000000000000000000000000000000000000000000000000000000000D0 +:2090A0000000000000000000000000000000000000000000000000000000000000000000B0 +:2090C000000000000000000000000000000000000000000000000000000000000000000090 +:2090E000000000000000000000000000000000000000000000000000000000000000000070 +:2091000000000000000000000000000000000000000000000000000000000000000000004F +:2091200000000000000000000000000000000000000000000000000000000000000000002F +:2091400000000000000000000000000000000000000000000000000000000000000000000F +:209160000000000000000000000000000000000000000000000000000000000000000000EF +:209180000000000000000000000000000000000000000000000000000000000000000000CF +:2091A0000000000000000000000000000000000000000000000000000000000000000000AF +:2091C00000000000000000000000000000000000000000000000000000000000000000008F +:2091E00000000000000000000000000000000000000000000000000000000000000000006F +:2092000000000000000000000000000000000000000000000000000000000000000000004E +:2092200000000000000000000000000000000000000000000000000000000000000000002E +:2092400000000000000000000000000000000000000000000000000000000000000000000E +:209260000000000000000000000000000000000000000000000000000000000000000000EE +:209280000000000000000000000000000000000000000000000000000000000000000000CE +:2092A0000000000000000000000000000000000000000000000000000000000000000000AE +:2092C00000000000000000000000000000000000000000000000000000000000000000008E +:2092E00000000000000000000000000000000000000000000000000000000000000000006E +:2093000000000000000000000000000000000000000000000000000000000000000000004D +:2093200000000000000000000000000000000000000000000000000000000000000000002D +:2093400000000000000000000000000000000000000000000000000000000000000000000D +:209360000000000000000000000000000000000000000000000000000000000000000000ED +:209380000000000000000000000000000000000000000000000000000000000000000000CD +:2093A0000000000000000000000000000000000000000000000000000000000000000000AD +:2093C00000000000000000000000000000000000000000000000000000000000000000008D +:2093E00000000000000000000000000000000000000000000000000000000000000000006D +:2094000000000000000000000000000000000000000000000000000000000000000000004C +:2094200000000000000000000000000000000000000000000000000000000000000000002C +:2094400000000000000000000000000000000000000000000000000000000000000000000C +:209460000000000000000000000000000000000000000000000000000000000000000000EC +:209480000000000000000000000000000000000000000000000000000000000000000000CC +:2094A0000000000000000000000000000000000000000000000000000000000000000000AC +:2094C00000000000000000000000000000000000000000000000000000000000000000008C +:2094E00000000000000000000000000000000000000000000000000000000000000000006C +:2095000000000000000000000000000000000000000000000000000000000000000000004B +:2095200000000000000000000000000000000000000000000000000000000000000000002B +:2095400000000000000000000000000000000000000000000000000000000000000000000B +:209560000000000000000000000000000000000000000000000000000000000000000000EB +:209580000000000000000000000000000000000000000000000000000000000000000000CB +:2095A0000000000000000000000000000000000000000000000000000000000000000000AB +:2095C00000000000000000000000000000000000000000000000000000000000000000008B +:2095E00000000000000000000000000000000000000000000000000000000000000000006B +:2096000000000000000000000000000000000000000000000000000000000000000000004A +:2096200000000000000000000000000000000000000000000000000000000000000000002A +:2096400000000000000000000000000000000000000000000000000000000000000000000A +:209660000000000000000000000000000000000000000000000000000000000000000000EA +:209680000000000000000000000000000000000000000000000000000000000000000000CA +:2096A0000000000000000000000000000000000000000000000000000000000000000000AA +:2096C00000000000000000000000000000000000000000000000000000000000000000008A +:2096E00000000000000000000000000000000000000000000000000000000000000000006A +:20970000000000000000000000000000000000000000000000000000000000000000000049 +:20972000000000000000000000000000000000000000000000000000000000000000000029 +:20974000000000000000000000000000000000000000000000000000000000000000000009 +:209760000000000000000000000000000000000000000000000000000000000000000000E9 +:209780000000000000000000000000000000000000000000000000000000000000000000C9 +:2097A0000000000000000000000000000000000000000000000000000000000000000000A9 +:2097C000000000000000000000000000000000000000000000000000000000000000000089 +:2097E000000000000000000000000000000000000000000000000000000000000000000069 +:20980000000000000000000000000000000000000000000000000000000000000000000048 +:20982000000000000000000000000000000000000000000000000000000000000000000028 +:20984000000000000000000000000000000000000000000000000000000000000000000008 +:209860000000000000000000000000000000000000000000000000000000000000000000E8 +:209880000000000000000000000000000000000000000000000000000000000000000000C8 +:2098A0000000000000000000000000000000000000000000000000000000000000000000A8 +:2098C000000000000000000000000000000000000000000000000000000000000000000088 +:2098E000000000000000000000000000000000000000000000000000000000000000000068 +:20990000000000000000000000000000000000000000000000000000000000000000000047 +:20992000000000000000000000000000000000000000000000000000000000000000000027 +:20994000000000000000000000000000000000000000000000000000000000000000000007 +:209960000000000000000000000000000000000000000000000000000000000000000000E7 +:209980000000000000000000000000000000000000000000000000000000000000000000C7 +:2099A0000000000000000000000000000000000000000000000000000000000000000000A7 +:2099C000000000000000000000000000000000000000000000000000000000000000000087 +:2099E000000000000000000000000000000000000000000000000000000000000000000067 +:209A0000000000000000000000000000000000000000000000000000000000000000000046 +:209A2000000000000000000000000000000000000000000000000000000000000000000026 +:209A4000000000000000000000000000000000000000000000000000000000000000000006 +:209A60000000000000000000000000000000000000000000000000000000000000000000E6 +:209A80000000000000000000000000000000000000000000000000000000000000000000C6 +:209AA0000000000000000000000000000000000000000000000000000000000000000000A6 +:209AC000000000000000000000000000000000000000000000000000000000000000000086 +:209AE000000000000000000000000000000000000000000000000000000000000000000066 +:209B0000000000000000000000000000000000000000000000000000000000000000000045 +:209B2000000000000000000000000000000000000000000000000000000000000000000025 +:209B4000000000000000000000000000000000000000000000000000000000000000000005 +:209B60000000000000000000000000000000000000000000000000000000000000000000E5 +:209B80000000000000000000000000000000000000000000000000000000000000000000C5 +:209BA0000000000000000000000000000000000000000000000000000000000000000000A5 +:209BC000000000000000000000000000000000000000000000000000000000000000000085 +:209BE000000000000000000000000000000000000000000000000000000000000000000065 +:209C0000000000000000000000000000000000000000000000000000000000000000000044 +:209C2000000000000000000000000000000000000000000000000000000000000000000024 +:209C4000000000000000000000000000000000000000000000000000000000000000000004 +:209C60000000000000000000000000000000000000000000000000000000000000000000E4 +:209C80000000000000000000000000000000000000000000000000000000000000000000C4 +:209CA0000000000000000000000000000000000000000000000000000000000000000000A4 +:209CC000000000000000000000000000000000000000000000000000000000000000000084 +:209CE000000000000000000000000000000000000000000000000000000000000000000064 +:209D0000000000000000000000000000000000000000000000000000000000000000000043 +:209D2000000000000000000000000000000000000000000000000000000000000000000023 +:209D4000000000000000000000000000000000000000000000000000000000000000000003 +:209D60000000000000000000000000000000000000000000000000000000000000000000E3 +:209D80000000000000000000000000000000000000000000000000000000000000000000C3 +:209DA0000000000000000000000000000000000000000000000000000000000000000000A3 +:209DC000000000000000000000000000000000000000000000000000000000000000000083 +:209DE000000000000000000000000000000000000000000000000000000000000000000063 +:209E0000000000000000000000000000000000000000000000000000000000000000000042 +:209E2000000000000000000000000000000000000000000000000000000000000000000022 +:209E4000000000000000000000000000000000000000000000000000000000000000000002 +:209E60000000000000000000000000000000000000000000000000000000000000000000E2 +:209E80000000000000000000000000000000000000000000000000000000000000000000C2 +:209EA0000000000000000000000000000000000000000000000000000000000000000000A2 +:209EC000000000000000000000000000000000000000000000000000000000000000000082 +:209EE000000000000000000000000000000000000000000000000000000000000000000062 +:209F0000000000000000000000000000000000000000000000000000000000000000000041 +:209F2000000000000000000000000000000000000000000000000000000000000000000021 +:209F4000000000000000000000000000000000000000000000000000000000000000000001 +:209F60000000000000000000000000000000000000000000000000000000000000000000E1 +:209F80000000000000000000000000000000000000000000000000000000000000000000C1 +:209FA0000000000000000000000000000000000000000000000000000000000000000000A1 +:209FC000000000000000000000000000000000000000000000000000000000000000000081 +:209FE000000000000000000000000000000000000000000000000000000000000000000061 +:20A00000000000000000000000000000000000000000000000000000000000000000000040 +:20A02000000000000000000000000000000000000000000000000000000000000000000020 +:20A04000000000000000000000000000000000000000000000000000000000000000000000 +:20A060000000000000000000000000000000000000000000000000000000000000000000E0 +:20A080000000000000000000000000000000000000000000000000000000000000000000C0 +:20A0A0000000000000000000000000000000000000000000000000000000000000000000A0 +:20A0C000000000000000000000000000000000000000000000000000000000000000000080 +:20A0E000000000000000000000000000000000000000000000000000000000000000000060 +:20A1000000000000000000000000000000000000000000000000000000000000000000003F +:20A1200000000000000000000000000000000000000000000000000000000000000000001F +:20A140000000000000000000000000000000000000000000000000000000000000000000FF +:20A160000000000000000000000000000000000000000000000000000000000000000000DF +:20A180000000000000000000000000000000000000000000000000000000000000000000BF +:20A1A00000000000000000000000000000000000000000000000000000000000000000009F +:20A1C00000000000000000000000000000000000000000000000000000000000000000007F +:20A1E00000000000000000000000000000000000000000000000000000000000000000005F +:20A2000000000000000000000000000000000000000000000000000000000000000000003E +:20A2200000000000000000000000000000000000000000000000000000000000000000001E +:20A240000000000000000000000000000000000000000000000000000000000000000000FE +:20A260000000000000000000000000000000000000000000000000000000000000000000DE +:20A280000000000000000000000000000000000000000000000000000000000000000000BE +:20A2A00000000000000000000000000000000000000000000000000000000000000000009E +:20A2C00000000000000000000000000000000000000000000000000000000000000000007E +:20A2E00000000000000000000000000000000000000000000000000000000000000000005E +:20A3000000000000000000000000000000000000000000000000000000000000000000003D +:20A3200000000000000000000000000000000000000000000000000000000000000000001D +:20A340000000000000000000000000000000000000000000000000000000000000000000FD +:20A360000000000000000000000000000000000000000000000000000000000000000000DD +:20A380000000000000000000000000000000000000000000000000000000000000000000BD +:20A3A00000000000000000000000000000000000000000000000000000000000000000009D +:20A3C00000000000000000000000000000000000000000000000000000000000000000007D +:20A3E00000000000000000000000000000000000000000000000000000000000000000005D +:20A4000000000000000000000000000000000000000000000000000000000000000000003C +:20A4200000000000000000000000000000000000000000000000000000000000000000001C +:20A440000000000000000000000000000000000000000000000000000000000000000000FC +:20A460000000000000000000000000000000000000000000000000000000000000000000DC +:20A480000000000000000000000000000000000000000000000000000000000000000000BC +:20A4A00000000000000000000000000000000000000000000000000000000000000000009C +:20A4C00000000000000000000000000000000000000000000000000000000000000000007C +:20A4E00000000000000000000000000000000000000000000000000000000000000000005C +:20A5000000000000000000000000000000000000000000000000000000000000000000003B +:20A5200000000000000000000000000000000000000000000000000000000000000000001B +:20A540000000000000000000000000000000000000000000000000000000000000000000FB +:20A560000000000000000000000000000000000000000000000000000000000000000000DB +:20A580000000000000000000000000000000000000000000000000000000000000000000BB +:20A5A00000000000000000000000000000000000000000000000000000000000000000009B +:20A5C00000000000000000000000000000000000000000000000000000000000000000007B +:20A5E00000000000000000000000000000000000000000000000000000000000000000005B +:20A6000000000000000000000000000000000000000000000000000000000000000000003A +:20A6200000000000000000000000000000000000000000000000000000000000000000001A +:20A640000000000000000000000000000000000000000000000000000000000000000000FA +:20A660000000000000000000000000000000000000000000000000000000000000000000DA +:20A680000000000000000000000000000000000000000000000000000000000000000000BA +:20A6A00000000000000000000000000000000000000000000000000000000000000000009A +:20A6C00000000000000000000000000000000000000000000000000000000000000000007A +:20A6E00000000000000000000000000000000000000000000000000000000000000000005A +:20A70000000000000000000000000000000000000000000000000000000000000000000039 +:20A72000000000000000000000000000000000000000000000000000000000000000000019 +:20A740000000000000000000000000000000000000000000000000000000000000000000F9 +:20A760000000000000000000000000000000000000000000000000000000000000000000D9 +:20A780000000000000000000000000000000000000000000000000000000000000000000B9 +:20A7A000000000000000000000000000000000000000000000000000000000000000000099 +:20A7C000000000000000000000000000000000000000000000000000000000000000000079 +:20A7E000000000000000000000000000000000000000000000000000000000000000000059 +:20A80000000000000000000000000000000000000000000000000000000000000000000038 +:20A82000000000000000000000000000000000000000000000000000000000000000000018 +:20A840000000000000000000000000000000000000000000000000000000000000000000F8 +:20A860000000000000000000000000000000000000000000000000000000000000000000D8 +:20A880000000000000000000000000000000000000000000000000000000000000000000B8 +:20A8A000000000000000000000000000000000000000000000000000000000000000000098 +:20A8C000000000000000000000000000000000000000000000000000000000000000000078 +:20A8E000000000000000000000000000000000000000000000000000000000000000000058 +:20A90000000000000000000000000000000000000000000000000000000000000000000037 +:20A92000000000000000000000000000000000000000000000000000000000000000000017 +:20A940000000000000000000000000000000000000000000000000000000000000000000F7 +:20A960000000000000000000000000000000000000000000000000000000000000000000D7 +:20A980000000000000000000000000000000000000000000000000000000000000000000B7 +:20A9A000000000000000000000000000000000000000000000000000000000000000000097 +:20A9C000000000000000000000000000000000000000000000000000000000000000000077 +:20A9E000000000000000000000000000000000000000000000000000000000000000000057 +:20AA0000000000000000000000000000000000000000000000000000000000000000000036 +:20AA2000000000000000000000000000000000000000000000000000000000000000000016 +:20AA40000000000000000000000000000000000000000000000000000000000000000000F6 +:20AA60000000000000000000000000000000000000000000000000000000000000000000D6 +:20AA80000000000000000000000000000000000000000000000000000000000000000000B6 +:20AAA000000000000000000000000000000000000000000000000000000000000000000096 +:20AAC000000000000000000000000000000000000000000000000000000000000000000076 +:20AAE000000000000000000000000000000000000000000000000000000000000000000056 +:20AB0000000000000000000000000000000000000000000000000000000000000000000035 +:20AB2000000000000000000000000000000000000000000000000000000000000000000015 +:20AB40000000000000000000000000000000000000000000000000000000000000000000F5 +:20AB60000000000000000000000000000000000000000000000000000000000000000000D5 +:20AB80000000000000000000000000000000000000000000000000000000000000000000B5 +:20ABA000000000000000000000000000000000000000000000000000000000000000000095 +:20ABC000000000000000000000000000000000000000000000000000000000000000000075 +:20ABE000000000000000000000000000000000000000000000000000000000000000000055 +:20AC0000000000000000000000000000000000000000000000000000000000000000000034 +:20AC2000000000000000000000000000000000000000000000000000000000000000000014 +:20AC40000000000000000000000000000000000000000000000000000000000000000000F4 +:20AC60000000000000000000000000000000000000000000000000000000000000000000D4 +:20AC80000000000000000000000000000000000000000000000000000000000000000000B4 +:20ACA000000000000000000000000000000000000000000000000000000000000000000094 +:20ACC000000000000000000000000000000000000000000000000000000000000000000074 +:20ACE000000000000000000000000000000000000000000000000000000000000000000054 +:20AD0000000000000000000000000000000000000000000000000000000000000000000033 +:20AD2000000000000000000000000000000000000000000000000000000000000000000013 +:20AD40000000000000000000000000000000000000000000000000000000000000000000F3 +:20AD60000000000000000000000000000000000000000000000000000000000000000000D3 +:20AD80000000000000000000000000000000000000000000000000000000000000000000B3 +:20ADA000000000000000000000000000000000000000000000000000000000000000000093 +:20ADC000000000000000000000000000000000000000000000000000000000000000000073 +:20ADE000000000000000000000000000000000000000000000000000000000000000000053 +:20AE0000000000000000000000000000000000000000000000000000000000000000000032 +:20AE2000000000000000000000000000000000000000000000000000000000000000000012 +:20AE40000000000000000000000000000000000000000000000000000000000000000000F2 +:20AE60000000000000000000000000000000000000000000000000000000000000000000D2 +:20AE80000000000000000000000000000000000000000000000000000000000000000000B2 +:20AEA000000000000000000000000000000000000000000000000000000000000000000092 +:20AEC000000000000000000000000000000000000000000000000000000000000000000072 +:20AEE000000000000000000000000000000000000000000000000000000000000000000052 +:20AF0000000000000000000000000000000000000000000000000000000000000000000031 +:20AF2000000000000000000000000000000000000000000000000000000000000000000011 +:20AF40000000000000000000000000000000000000000000000000000000000000000000F1 +:20AF60000000000000000000000000000000000000000000000000000000000000000000D1 +:20AF80000000000000000000000000000000000000000000000000000000000000000000B1 +:20AFA000000000000000000000000000000000000000000000000000000000000000000091 +:20AFC000000000000000000000000000000000000000000000000000000000000000000071 +:20AFE000000000000000000000000000000000000000000000000000000000000000000051 +:00000001FF diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_small.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_small.hex new file mode 100644 index 00000000000..655741a27b1 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_small.hex @@ -0,0 +1,30 @@ +:020000041000EA +:400000000001000831010010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075 +:400040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080 +:400080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040 +:4000C0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 +:40010000526F736574746120636F646500000000764FAF5C61AC315F1497F9DFA542713965B785E5CC2F707D6468D7D1124CDFCF13B500240C4800F01DF821000094012395 +:4001400006220A4800F062F80123009406221900064800F05BF801340222044B0448DC60DA6000F099F8F7E7280300108000324020BCBE00014B18607047C0463C100008CC +:4001800070B50D00044C01001822200000F094F8A56101BEFEE7C0460010000870B506000C001500072903D914491548FFF7E8FF1F232A009A4303D012491148FFF7E0FF8A +:4001C000114B1B689A695B69B01AC0090001C0181F231D40032C07D8E400A340A54002689A431543056070BD043CE400A340A54042689A4315434560F5E7C04642020000CD +:4002000033040010430200003C100008F7B51D0008AB1B7807000E0014000193072903D9D1211B48FFF7ACFF0F2322009A4303D0D2211748FFF7A4FF012D03D9D3211448C7 +:40024000FFF79EFF1F23019A9A4303D0D4211048FFF796FF012211001540B140B5400F203B6804408B431D433D600500B1008D408C40084B31001B68380063331A78BA18AE +:400280001368AB431C431460019AFFF787FFF7BD100400103C1000080230800803D001300238FCD1C046C0467047EFF3108072B6704780F310887047000052E3011041E2BB +:4002C00000C0A0E11EFF2F0110402DE90C30A0E101E0F1E500005EE3014042E201E0C3E40400001A02C08CE00C0053E10500000A01E0C3E4FBFFFFEA000054E303C0A0E1E7 +:400300000420A0E1F0FFFF1A1040BDE81EFF2FE10DC0A0E1F8DF2DE904B04CE20DC0A0E1F8DF2DE904B04CE200002140000025400000014000003440000024400000314064 +:400340000000324000001F4101010101010101010110101080550501053B04101C0101000FC000000000100001010101011D3A577896000820000010000F002000023F06D7 +:40038000080E00080009000A000B24282C303400100000009000000088000000080000008000000004F0000000F000002005A000D00100018001A0011000000004000000C4 +:4003C000400000004400000048000000800000000001000010020000880200000004000010040000200400004004000048040000800400008404000090040000C0070000E1 +:40040000C4070000C8070000CC070000004000002E2F68616C2F70646C2F647269766572732F736F757263652F63795F6770696F2E63002E2F68616C2F70646C2F64726907 +:40044000766572732F696E636C7564652F63795F6770696F2E68000000000000000000000000000000000000000000000000000000000000000000000000000000000000FA +:40048000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003C +:4004C00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000FC +:4005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000BB +:40054000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007B +:40058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003B +:4005C00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000FB +:0200000490303A +:02000000FF3BC4 +:0200000490501A +:0C00000000000000000000000000FF3BBA +:00000001FF \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_pyocd_wrapper.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_pyocd_wrapper.py new file mode 100644 index 00000000000..a7365399832 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_pyocd_wrapper.py @@ -0,0 +1,301 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import sys +import os.path +import time +import unittest +from intelhex import IntelHex +sys.path.append(os.path.dirname(os.path.realpath(__file__))) +sys.path.append(os.path.dirname('../execute')) +from test_utility import * +from execute.programmer.programmer import ProgrammingTool +from execute.programmer.exceptions import ExtendedTransferFaultError + +TOOL = 'pyocd' +TARGET = 'cy8c64xx_cm4' +PROBE_ID = '19071301d90e140c00d90e1400000000000000002e127069' # DAP-Link +#PROBE_ID = '1A06199701047400' # CMSIS-DAP + +# PSoC6 BLE Memory Regions +RAM_ADDR = 0x08000000 +MAIN_ADDR = 0x10000000 +WORK_ADDR = 0x14000000 +SFLASH_ADDR = 0x16000000 + +# PSoC6 Register Addresses +CYREG_IPC2_STRUCT_ACQUIRE = 0x40230040 +CYREG_IPC2_STRUCT_DATA = 0x4023004c +CYREG_IPC2_STRUCT_NOTIFY = 0x40230048 +CYREG_GPIO_PORT_11_OUT = 0x40320580 +CYREG_CM4_POWER_CTRL = 0x40210080 +ENTRANCE_EXAM_SRAM_ADDR = 0x0802E000 +# Debug halting control and status register +CYREG_DHCSR = 0xE000EDF0 +S_HALT = (1 << 17) +S_LOCKUP = (1 << 19) + + +class TestReadWrite(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.tool = ProgrammingTool.create(TOOL) + cls.tool.connect(TARGET, probe_id=PROBE_ID) + create_test_bin() + print('[INFO] Program Main region with test data') + cls.tool.program(TEST_BIN, address=MAIN_ADDR) + print('[INFO] Program Work region with test data') + cls.tool.program(TEST_BIN, address=WORK_ADDR) + + @classmethod + def tearDownClass(cls): + cls.tool.disconnect() + + def test_read8_ram(self): + data = self.tool.read8(RAM_ADDR) + self.assertGreaterEqual(data, 0) + + def test_read8_flash_main_region(self): + data = self.tool.read8(MAIN_ADDR) + self.assertEqual(data, 0x41) + + def test_read8_flash_work_region(self): + data = self.tool.read8(WORK_ADDR) + self.assertEqual(data, 0x41) + + def test_read8_sflash(self): + data = self.tool.read8(SFLASH_ADDR) + self.assertEqual(data, 0x00) + + def test_read8_register32_negative(self): + with self.assertRaises(ExtendedTransferFaultError) as context: + self.tool.read8(CYREG_IPC2_STRUCT_DATA) + self.assertTrue('If address points to a register it should be aligned with the register size' + in str(context.exception)) + + def test_read16_ram(self): + data = self.tool.read16(RAM_ADDR) + self.assertGreater(data, 0) + + def test_read16_flash_main_region(self): + data = self.tool.read16(MAIN_ADDR) + self.assertEqual(data, 0x3141) + + def test_read16_flash_work_region(self): + data = self.tool.read16(WORK_ADDR) + self.assertEqual(data, 0x3141) + + def test_read16_register32_negative(self): + with self.assertRaises(ExtendedTransferFaultError) as context: + self.tool.read16(CYREG_IPC2_STRUCT_DATA) + self.assertTrue('If address points to a register it should be aligned with the register size' + in str(context.exception)) + + def test_read32_ram(self): + data = self.tool.read32(RAM_ADDR) + self.assertGreater(data, 0x00) + + def test_read32_flash_main_region(self): + data = self.tool.read32(MAIN_ADDR) + self.assertEqual(data, 0x32413141) + + def test_read32_not_exists_flash_region(self): + with self.assertRaises(ExtendedTransferFaultError): + self.tool.read32(0xFF00FF00) + + def test_read32_flash_work_region(self): + data = self.tool.read32(WORK_ADDR) + self.assertEqual(data, 0x32413141) + + def test_read32_register32(self): + data = self.tool.read32(CYREG_IPC2_STRUCT_DATA) + self.assertGreaterEqual(data, 0x00000000) + + def test_write8_ram(self): + self.tool.write8(RAM_ADDR, 0xCE) + data = self.tool.read8(RAM_ADDR) + self.assertEqual(0xCE, data) + + def test_write16_ram(self): + self.tool.write16(RAM_ADDR, 0xAC21) + data = self.tool.read16(RAM_ADDR) + self.assertEqual(0xAC21, data) + + def test_write32_ram(self): + self.tool.write32(RAM_ADDR, 0xDEADBEAF) + data = self.tool.read32(RAM_ADDR) + self.assertEqual(data, 0xDEADBEAF) + + def test_write32_CYREG_IPC2_STRUCT_ACQUIRE(self): + self.tool.write32(CYREG_IPC2_STRUCT_ACQUIRE, 0x80000000) + data = self.tool.read32(CYREG_IPC2_STRUCT_ACQUIRE) + byte = decomposite32(data)[3] + self.assertEqual(byte, 0x80) + + def test_write32_CYREG_IPC2_STRUCT_DATA(self): + self.tool.write32(CYREG_IPC2_STRUCT_DATA, 0xAFECAB91) + data = self.tool.read32(CYREG_IPC2_STRUCT_DATA) + self.assertEqual(data, 0xAFECAB91) + + def test_write32_CYREG_IPC2_STRUCT_NOTIFY(self): + self.tool.write32(CYREG_IPC2_STRUCT_NOTIFY, 0x00000001) + data = self.tool.read32(CYREG_IPC2_STRUCT_NOTIFY) + byte = decomposite32(data)[3] + self.assertEqual(byte, 0x00) + + def test_write32_ENTRANCE_EXAM_SRAM_ADDR(self): + self.tool.write32(ENTRANCE_EXAM_SRAM_ADDR, 0xD1A2B3C4) + data = self.tool.read32(ENTRANCE_EXAM_SRAM_ADDR) + self.assertEqual(data, 0xD1A2B3C4) + + def test_write32_ENTRANCE_EXAM_SRAM_ADDR_offset4(self): + self.tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x04, 0xABCABCFA) + data = self.tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x04) + self.assertEqual(data, 0xABCABCFA) + + def test_write32_ENTRANCE_EXAM_SRAM_ADDR_offset8(self): + self.tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x08, 0x12890735) + data = self.tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x08) + self.assertEqual(data, 0x12890735) + + def tet_read_write_core_regs(self): + value1 = self.tool.read_reg('r1') + self.tool.write_reg('r1', value1 + 10) + value2 = self.tool.read_reg('r1') + self.assertEqual(value1 + 10, value2) + + def test_read_strange_reg_negative(self): + with self.assertRaises(ValueError): + self.tool.read_reg('r200') + + +class TestProgramming(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.tool = ProgrammingTool.create(TOOL) + cls.tool.connect(TARGET, probe_id=PROBE_ID) + create_test_bin() + + @classmethod + def tearDownClass(cls): + cls.tool.disconnect() + + def test_erase(self): + self.tool.erase(MAIN_ADDR, 0x200) + match = False + i = 0 + while i < os.path.getsize(TEST_BIN): + data = self.tool.read8(MAIN_ADDR + i) + match = data == 0x00 + if not match: + break + i += 1 + self.assertTrue(match) + + def test_program_bin(self): + self.tool.erase(MAIN_ADDR, 0x200) + self.tool.program(TEST_BIN, address=MAIN_ADDR) + with open(TEST_BIN, 'rb') as file_obj: + exp_data = file_obj.read() + match = False + i = 0 + while i < len(exp_data): + data = self.tool.read8(MAIN_ADDR + i) + match = data == exp_data[i] + if not match: + break + i += 1 + self.assertTrue(match) + + def test_program_hex(self): + intel_hex = IntelHex() + intel_hex.loadhex(BLINKY_SMALL_HEX) + arr = intel_hex.gets(MAIN_ADDR, 0x400) + self.tool.erase(MAIN_ADDR, 0x400) + self.tool.program(BLINKY_SMALL_HEX) + match = False + i = 0 + while i < len(arr): + data = self.tool.read8(MAIN_ADDR + i) + match = data == arr[i] + if not match: + break + i += 1 + self.assertTrue(match) + + +class TestControlAPIs(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.tool = ProgrammingTool.create(TOOL) + cls.tool.connect(TARGET, probe_id=PROBE_ID) + + @classmethod + def tearDownClass(cls): + cls.tool.disconnect() + + def test_reset(self): + self.tool.write32(CYREG_GPIO_PORT_11_OUT, 0xDEADBEAF) + self.tool.reset() + self.assertEqual(self.tool.read32(CYREG_GPIO_PORT_11_OUT), 0x00) + + def test_halt_resume(self): + self.tool.reset() + if self.tool.read32(CYREG_CM4_POWER_CTRL) & 3 != 3: + self.tool.write32(CYREG_CM4_POWER_CTRL, 0x05fa0003) # CM4 is sleeping, trying to wake it up + dhcsr = self.tool.read32(CYREG_DHCSR) + if dhcsr & S_LOCKUP: + self.tool.halt() + dhcsr = self.tool.read32(CYREG_DHCSR) + self.tool.write_reg('xpsr', 0x01000000) # set thumb bit + else: + self.tool.halt() + dhcsr = self.tool.read32(CYREG_DHCSR) + self.assertTrue(dhcsr & S_HALT) + self.tool.resume() + dhcsr = self.tool.read32(CYREG_DHCSR) + self.assertFalse(dhcsr & S_HALT) + + #def test_reset_and_halt(self): + # self.tool.write32(CYREG_GPIO_PORT_11_OUT, 0xDEADBEAF) + # self.tool.reset_and_halt() + # self.assertEqual(self.tool.read32(CYREG_GPIO_PORT_11_OUT), 0x00) + # dhcsr = self.tool.read32(CYREG_DHCSR) + # self.assertTrue(dhcsr & S_HALT) + + @unittest.skip("HW frequency cannot be changed.") + def test_set_frequency(self): + self.tool.erase(MAIN_ADDR, 0xC000) + self.tool.set_frequency(100) + time_before_program = time.time() + self.tool.program(BLINKY_LARGE_HEX) + time1 = time.time() - time_before_program + self.tool.set_frequency(1200) + self.tool.erase(MAIN_ADDR, 0xC000) + time_before_program = time.time() + self.tool.program(BLINKY_LARGE_HEX) + time2 = time.time() - time_before_program + self.assertGreater(time1, time2) + + def test_connection(self): + self.tool.disconnect() + self.assertFalse(self.tool.session.is_open) + self.tool.connect(TARGET, probe_id=PROBE_ID) + self.assertTrue(self.tool.session.is_open) + + +if __name__ == '__main__': + ret = not unittest.main().wasSuccessful() + sys.exit(ret) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_utility.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_utility.py new file mode 100644 index 00000000000..ab890078539 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_utility.py @@ -0,0 +1,39 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +TEST_BIN = "test_data/test.bin" +BLINKY_SMALL_HEX = "test_data/blinky_small.hex" +BLINKY_LARGE_HEX = "test_data/blinky_large.hex" + + +def create_test_bin(): + with open(TEST_BIN, 'wb') as file: + file.write(b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' + b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' + b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' + b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' + b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' + b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' + b'A1A2A3B1B2B3111213FFA1A2A3B1B2B') + + +def decomposite32(value): + """ + Decomposites 32-bit value into byte array. + :param value: 32-bit value. + :return: Array of bytes. + """ + byte = value.to_bytes(4, 'little') + return byte diff --git a/targets/targets.json b/targets/targets.json index 30631738a95..eca61fd47ce 100644 --- a/targets/targets.json +++ b/targets/targets.json @@ -8701,6 +8701,21 @@ "sectors": [[268443648, 512]], "bootloader_supported": true }, + "CY8CPROTO_064_SB": { + "inherits": ["MCU_PSOC6_M4"], + "supported_form_factors": ["ARDUINO"], + "extra_labels_add": ["PSOC6_01"], + "macros_add": ["CYB06447BZI_D54", + "PSOC6_DYNSRM_DISABLE=1", + "CY_CFG_SYSCLK_WCO_ENABLED=1", + "SEMAPHORE"], + "detect_code": ["1907"], + "forced_reset_timeout": 5, + "reset_method": "default", + "post_binary_hook": { + "function": "PSOC6Code.sign_image" + } + }, "CYW943012P6EVB_01": { "inherits": ["MCU_PSOC6_M4"], "features": ["BLE"], diff --git a/tools/targets/PSOC6.py b/tools/targets/PSOC6.py index 6896d773cf2..7ad96564f29 100644 --- a/tools/targets/PSOC6.py +++ b/tools/targets/PSOC6.py @@ -16,17 +16,22 @@ # import os +import sys + import platform import subprocess import errno from array import array from struct import (pack, unpack) -from shutil import copyfile -from intelhex import IntelHex +from shutil import copy2 +from intelhex import IntelHex, hex2bin, bin2hex from intelhex.compat import asbytes from ..config import ConfigException +from pathlib import Path, PurePath +import json + # The size of the program data in Cypress HEX files is limited to 0x80000000 # Higher addresses contain additional metadata (chip protection, eFuse data, etc..) CY_PROGRAM_SIZE = 0x80000000 @@ -44,6 +49,12 @@ # The address of the metadata checksum (4 bytes) CY_META_CHECKSUM_ADDR = 0x90500008 +# Secure Boot defines +MCUBOOT_HEADER_SIZE = 1024 +SPE_IMAGE_ID = 1 +NSPE_IMAGE_ID = 16 +SMIF_MEM_MAP_START = 0x18000000 + # Patch Cypress hex file: # - update checksum @@ -62,7 +73,7 @@ def patch(message_func, ihex, hexf, align=256): if start == CY_META_ADDR: # metadata section found in the original hex update_metadata = True - if start >= CY_PROGRAM_SIZE: + if start >= CY_PROGRAM_SIZE: continue segment = ihex.tobinarray(start, end) checksum += sum(segment) @@ -79,7 +90,7 @@ def patch(message_func, ihex, hexf, align=256): if update_metadata: signature = unpack('>L', ihex.tobinstr(start=CY_META_SILICON_ID_ADDR, size=4))[0] sigcheck = pack('>L', (checksum + signature) & 0x0FFFF) - ihex.frombytes(array('B',sigcheck), offset=CY_META_CHECKSUM_ADDR) + ihex.frombytes(array('B', sigcheck), offset=CY_META_CHECKSUM_ADDR) # align flash segments align_mask = align - 1 @@ -98,22 +109,25 @@ def patch(message_func, ihex, hexf, align=256): alignments.frombytes(ihex.tobinarray(end, aligned_end - 1), end) ihex.merge(alignments, 'ignore') + def merge_images(hexf0, hexf1=None): ihex = IntelHex() ihex.padding = 0x00 ihex.loadfile(hexf0, "hex") - if hexf1 is not None: + if hexf1 is not None: # Merge the CM0+ image ihex1 = IntelHex(hexf1) ihex.merge(ihex1, 'ignore') return ihex + def complete_func(message_func, elf0, hexf0, hexf1=None, dest=None): message_func("Postprocessing %s -> %s" % (elf0, hexf0)) ihex = merge_images(hexf0, hexf1) patch(message_func, ihex, hexf0) ihex.write_hex_file(dest if dest else hexf0, write_start_addr=False, byte_count=16) + # Find Cortex M0 image. def find_cm0_image(toolchain, resources, elf, hexf, hex_filename): if hex_filename is None: @@ -133,5 +147,327 @@ def find_cm0_image(toolchain, resources, elf, hexf, hex_filename): return m0hexf + +# check if policy parameters are consistent +def check_slots_integrity(toolchain, fw_cyb, target_data, fw_spe=None, fw_nspe=None): + slot0 = None + slot1 = None + + if fw_spe is None: + img_id = fw_nspe["id"] + + # check single stage scheme + if not (fw_cyb["launch"] == img_id): + # may be PSA NSPE part + if not fw_cyb["launch"] == SPE_IMAGE_ID: + toolchain.notify.debug("[PSOC6.sign_image] WARNING: ID of build image " + str(img_id) + + " does not correspond launch ID in CyBootloader - " + str(fw_cyb["launch"])) + else: + toolchain.notify.info("[PSOC6.sign_image] INFO: NSPE image ID is " + str(img_id) + + ". It will be launched by SPE part.") + + # check slots addresses and sizes if upgrade is set to True + for slot in fw_nspe["resources"]: + if slot["type"] == "BOOT": + slot0 = slot + + if fw_nspe["upgrade"] and True: + slot1 = slot + if slot["type"] == "UPGRADE": + try: + if fw_nspe["encrypt"] and True: + # mark slot1 image as one, that should be encrypted + slot1.update({'encrypt': True}) + toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE NSPE will" + " be ENCRYPTED per policy settings.") + except KeyError: + None + else: + toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE will not" + " be built per policy settings.") + break + if slot0 is None: + toolchain.notify.debug("[PSOC6.sign_image] WARNING: BOOT section not found in policy resources") + raise Exception("imgtool finished execution with errors!") + + else: + # check if PSA targets flash map correspond to slots addresses and sizes in policy + if not (int(target_data["overrides"]["secure-rom-start"], 16) - MCUBOOT_HEADER_SIZE) ==\ + int(fw_spe["resources"][0]["address"]): + toolchain.notify.debug("[PSOC6.sign_image] WARNING: SPE start address " + "does not correspond BOOT slot start address defined in policy. " + "Check if MCUboot header offset 0x400 is included in SPE flash start") + + if not (int(target_data["overrides"]["non-secure-rom-start"], 16) - MCUBOOT_HEADER_SIZE) ==\ + int(fw_nspe["resources"][0]["address"]): + toolchain.notify.debug("[PSOC6.sign_image] WARNING: NSPE start address " + "does not correspond BOOT slot start address defined in policy. " + "Check if MCUboot header offset 0x400 is included in NSPE flash start") + + if (int(target_data["overrides"]["secure-rom-size"], 16) + MCUBOOT_HEADER_SIZE) >\ + int(fw_spe["resources"][0]["size"]): + toolchain.notify.debug("[PSOC6.sign_image] WARNING: SPE flash size " + "does not fit in BOOT slot size defined in policy.") + + if (int(target_data["overrides"]["non-secure-rom-size"], 16) + MCUBOOT_HEADER_SIZE) >\ + int(fw_nspe["resources"][0]["size"]): + toolchain.notify.debug("[PSOC6.sign_image] WARNING: NSPE flash size " + "does not fit in BOOT slot size defined in policy.") + + img_id = fw_spe["id"] + # check dual stage scheme + if img_id != 1: + toolchain.notify.debug("[PSOC6.sign_image] ERROR: Image ID of SPE image" + " is not equal to 1!") + raise Exception("imgtool finished execution with errors!") + + if not (fw_cyb["launch"] == img_id): + toolchain.notify.debug("[PSOC6.sign_image] ERROR: ID of build image" + " does not correspond launch ID in CyBootloader!") + raise Exception("imgtool finished execution with errors!") + + if not (fw_spe["launch"] == fw_nspe["id"]): + toolchain.notify.debug("[PSOC6.sign_image] ERROR: ID of NSPE image" + " does not correspond launch ID in SPE part!") + raise Exception("imgtool finished execution with errors!") + + + # check slots addresses and sizes if upgrade is set to True + for slot in fw_spe["resources"]: + if slot["type"] == "BOOT": + slot0 = slot + if fw_spe["upgrade"] and True: + if slot["type"] == "UPGRADE": + slot1 = slot + try: + if fw_spe["encrypt"] and True: + # mark slot1 image as one, that should be encrypted + slot1.update({'encrypt': True}) + toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE SPE will" + " be ENCRYPTED per policy settings.") + except KeyError: + None + else: + toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE will not" + " be produced per policy settings.") + if slot0 is None: + toolchain.notify.debug("[PSOC6.sign_image] WARNING: BOOT section not found in policy resources") + raise Exception("imgtool finished execution with errors!") + + if slot1 is not None: + # bigger or equal to 0x18000000 in hex is a start of SMIF memory + if slot1["address"] >= SMIF_MEM_MAP_START: + toolchain.notify.info("[PSOC6.sign_image] INFO: UPGRADE slot will be resided in external flash") + + if slot0["size"] != slot1["size"]: + toolchain.notify.debug("[PSOC6.sign_image] WARNING: BOOT and UPGRADE slots sizes are not equal") + + return [slot0, slot1, img_id] + else: + return [slot0, None, img_id] + + +# Resolve Secure Boot policy sections considering target +def process_target(toolchain, target): + + targets_json = Path("targets/targets.json") + cy_targets = Path("targets/TARGET_Cypress/TARGET_PSOC6/") + sb_params_file_name = Path("secure_image_parameters.json") + root_dir = Path(os.getcwd()) + + mbed_os_targets = root_dir / targets_json + + if not os.path.isfile(str(mbed_os_targets)): + # try location for tests + mbed_os_targets = root_dir / 'mbed-os' / targets_json + root_dir = root_dir / 'mbed-os' + if not os.path.isfile(str(mbed_os_targets)): + toolchain.notify.debug("[PSOC6.sign_image] ERROR: targets.json not found!") + raise Exception("imgtool finished execution with errors!") + + with open(str(mbed_os_targets)) as j: + json_str = j.read() + all_targets = json.loads(json_str) + j.close() + + processing_target = all_targets[target] + sb_params_file_path = root_dir / cy_targets / Path("TARGET_" + str(target)) / sb_params_file_name + + if os.path.isfile(str(sb_params_file_path)): + with open(str(sb_params_file_path)) as f: + json_str = f.read() + sb_config = json.loads(json_str) + f.close() + else: + toolchain.notify.debug("[PSOC6.sign_image] ERROR: secure_image_parametest.json not found!") + raise Exception("imgtool finished execution with errors!") + + sdk_path = root_dir / sb_config["sdk_path"] + + priv_key_path = sdk_path / Path(sb_config["priv_key_file"]) + + if not os.path.isfile(str(priv_key_path)): + toolchain.notify.debug("[PSOC6.sign_image] ERROR: Private key file not found in " + str(priv_key_path)) + raise Exception("imgtool finished execution with errors!") + + if "_PSA" in target: + # assume dual stage bootloading scheme + with open(sdk_path / Path(sb_config["policy_file"])) as p: + policy_str = p.read() + policy_file = json.loads(policy_str) + p.close() + + firmware_list = policy_file["boot_upgrade"]["firmware"] + + # collect firmware descriptions from policy for corresponding images + firmware_cyb_cm0p = firmware_list[0] + + if "_M0_" in target: + firmware_spe_cm0p = firmware_list[1] + firmware_nspe_cm4 = firmware_list[2] + + slots = check_slots_integrity(toolchain, fw_cyb=firmware_cyb_cm0p, fw_spe=firmware_spe_cm0p, + fw_nspe=firmware_nspe_cm4, target_data=processing_target) + else: + firmware_nspe_cm4 = firmware_list[2] + slots = check_slots_integrity(toolchain, fw_cyb=firmware_cyb_cm0p, fw_nspe=firmware_nspe_cm4, + target_data=processing_target) + else: + # consider single stage bootloading scheme + with open(sdk_path / Path(sb_config["policy_file"])) as p: + policy_str = p.read() + policy_file = json.loads(policy_str) + p.close() + + firmware_list = policy_file["boot_upgrade"]["firmware"] + firmware_cyb_cm0p = firmware_list[0] + firmware_nspe_cm4 = firmware_list[1] + slots = check_slots_integrity(toolchain, fw_cyb=firmware_cyb_cm0p, + fw_nspe=firmware_nspe_cm4, target_data=processing_target) + + target_sig_data = [{"img_data": sb_config["boot0"], "slot_data": slots[0], + "key_file": sb_config["priv_key_file"], "sdk_path": sdk_path, "id": slots[2]}] + + if slots[1] is not None: + target_sig_data.append({"img_data": sb_config["boot1"], "slot_data": slots[1], + "key_file": sb_config["priv_key_file"], "sdk_path": sdk_path, "id": slots[2]}) + # check if slot1 image sould be encrypted + try: + if slots[1]["encrypt"] is True: + + dev_pub_key = sdk_path / Path(sb_config["dev_pub_key_file"]) + if not os.path.isfile(str(dev_pub_key)): + toolchain.notify.debug("[PSOC6.sign_image] ERROR: Device public key file not found in " + str(dev_pub_key)) + raise Exception("imgtool finished execution with errors!") + + aes_key_file = sdk_path / Path(sb_config["aes_key_file"]) + if not os.path.isfile(str(aes_key_file)): + toolchain.notify.debug("[PSOC6.sign_image] ERROR: AES-128 key file not found in " + str(aes_key_file)) + raise Exception("imgtool finished execution with errors!") + + target_sig_data[1].update({"aes_key": sb_config["aes_key_file"], "dev_pub_key": sb_config["dev_pub_key_file"]}) + + except KeyError: + toolchain.notify.info("[PSOC6.sign_image] INFO: Image for slot UPGRADE would not be encrypted per policy settings") + + return target_sig_data + + +# Sign binary image using imgtool +def sign_image(toolchain, elf0, binf, hexf1=None): + + target_sig_data = None + # reserve name for separate NSPE image + out_cm4_hex = binf[:-4] + "_cm4.hex" + + # preserve original hex file from mbed-os build + mbed_hex = binf[:-4] + "_unsigned.hex" + copy2(binf, mbed_hex) + + # find target name and type before processing + for part in PurePath(binf).parts: + if "CY" in part: + target_sig_data = process_target(toolchain=toolchain, target=part) + + if target_sig_data is None: + toolchain.notify.debug("[PSOC6.sign_image] ERROR: Target not found!") + raise Exception("imgtool finished execution with errors!") + + for slot in target_sig_data: + # first check if image for slot under processing should be encrypted + try: + if slot["slot_data"]["encrypt"] is True: + # call encrypt_img to perform encryption + args = [sys.executable, str(slot["sdk_path"] / "encrypted_image_runner.py"), + "--sdk-path", str(slot["sdk_path"]), "--hex-file", os.getcwd() + '/' + mbed_hex, + "--key-priv", str(slot["sdk_path"] / slot["key_file"]), + "--key-pub", str(slot["sdk_path"] / slot["dev_pub_key"]), + "--key-aes", str(slot["sdk_path"] / slot["aes_key"]), + "--ver", str(slot["img_data"]["VERSION"]), "--img-id", str(slot["id"]), + "--rlb-count", str(slot["img_data"]["ROLLBACK_COUNTER"]), + "--slot-size", str(hex(slot["slot_data"]["size"])), + "--img-offset", str(slot["slot_data"]["address"])] + if slot["slot_data"]["type"] != "BOOT": + args.append("--pad") + process = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + + # catch standard process pipes outputs + stderr = process.communicate()[1] + stdout = process.communicate()[0] + rc = process.wait() + print(stdout.decode("utf-8")) + + if rc != 0: + toolchain.notify.debug("[PSOC6.sign_image] ERROR: Encryption script ended with error!") + toolchain.notify.debug("[PSOC6.sign_image] Message from encryption script: " + stderr.decode("utf-8")) + raise Exception("imgtool finished execution with errors!") + else: + toolchain.notify.info("[PSOC6.sign_image] SUCCESS: Image for slot " + + slot["slot_data"]["type"] + " is signed and encrypted with no errors!") + # all non ecrypted images take this path + except KeyError: + if slot["slot_data"]["type"] == "UPGRADE": + out_hex_name = binf[:-4] + "_upgrade.hex" + out_bin_name = out_hex_name[:-4] + "_signed.bin" + else: + out_hex_name = binf + out_bin_name = out_hex_name[:-4] + "_signed.bin" + + # call imgtool for signature + args = [sys.executable, str(slot["sdk_path"] / "imgtool/imgtool.py"), + "sign", "--key", str(slot["sdk_path"] / slot["key_file"]), + "--header-size", str(hex(MCUBOOT_HEADER_SIZE)), "--pad-header", "--align", "8", + "--version", str(slot["img_data"]["VERSION"]), "--image-id", + str(slot["id"]), "--rollback_counter", str(slot["img_data"]["ROLLBACK_COUNTER"]), + "--slot-size", str(hex(slot["slot_data"]["size"])), "--overwrite-only", + mbed_hex, out_hex_name] + if slot["slot_data"]["type"] != "BOOT": + args.append("--pad") + process = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + + # catch stderr outputs + stderr = process.communicate()[1] + rc = process.wait() + + if rc != 0: + toolchain.notify.debug("[PSOC6.sign_image] ERROR: Signature is not added!") + toolchain.notify.debug("[PSOC6.sign_image] Message from imgtool: " + stderr.decode("utf-8")) + raise Exception("imgtool finished execution with errors!") + else: + toolchain.notify.info("[PSOC6.sign_image] SUCCESS: Image for slot " + + slot["slot_data"]["type"] + " is signed with no errors!") + # preserve signed binary file + hex2bin(out_hex_name, out_bin_name) + + # preserve separate hex for cm4 + # 16 is image ID for NSPE image + if slot["id"] == NSPE_IMAGE_ID: + copy2(out_hex_name, out_cm4_hex) + + # produce hex file for slot1 + if slot["slot_data"]["type"] == "UPGRADE": + bin2hex(out_bin_name, out_hex_name, offset=int(slot["slot_data"]["address"])) + print("Image UPGRADE: " + out_hex_name + "\n") + def complete(toolchain, elf0, hexf0, hexf1=None): complete_func(toolchain.notify.debug, elf0, hexf0, hexf1) diff --git a/tools/targets/__init__.py b/tools/targets/__init__.py index 72fc498d580..566c85c7d84 100644 --- a/tools/targets/__init__.py +++ b/tools/targets/__init__.py @@ -675,6 +675,17 @@ def complete(t_self, resources, elf, binf): else: psoc6_complete(t_self, elf, binf) + @staticmethod + def sign_image(t_self, resources, elf, binf): + from tools.targets.PSOC6 import sign_image as psoc6_sign_image + if hasattr(t_self.target, "hex_filename"): + hex_filename = t_self.target.hex_filename + # Completing main image involves merging M0 image. + from tools.targets.PSOC6 import find_cm0_image + m0hexf = find_cm0_image(t_self, resources, elf, binf, hex_filename) + psoc6_sign_image(t_self, elf, binf, m0hexf) + else: + psoc6_sign_image(t_self, elf, binf) class ArmMuscaA1Code: """Musca-A1 Hooks""" From b15d54f5bf9b3111def625c63f7c8584507ce940 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Fri, 12 Jul 2019 13:05:41 +0300 Subject: [PATCH 02/16] Fixed IAR linker script. --- .../TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf index 3c0902869da..2eb6bbacd4d 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf @@ -181,7 +181,7 @@ define block RAM_BSS {readwrite section .bss}; define block RAM with fixed order {block RAM_DATA, block RAM_OTHER, block RAM_NOINIT, block RAM_BSS}; define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; -define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; +define block HEAP with expanding size, alignment = 8, minimum size = __ICFEDIT_size_heap__ { }; define block RO {first section .intvec, readonly}; @@ -191,8 +191,8 @@ do not initialize { section .noinit, section .intvec_ram }; /*-Placement-*/ -/* Flash */ -place at start of IROM1_region { block RO }; +/* Flash - Cortex-M4 application image */ +place in IROM1_region { block RO }; ".cy_app_signature" : place at address (__ICFEDIT_region_IROM1_end__ - 0x200) { section .cy_app_signature }; /* Emulated EEPROM Flash area */ From 4db392c2f640a720fbce6d1c560153dfe54f8702 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Tue, 16 Jul 2019 17:40:44 +0300 Subject: [PATCH 03/16] Updated licenses in files, mentioned in commnets to https://github.com/ARMmbed/mbed-os/pull/11046 --- .../TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py | 15 +++++++++++++++ .../sb-tools/imgtool/create_aesHeader.py | 15 +++++++++++++++ .../TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py | 15 +++++++++++++++ .../sb-tools/imgtool/imgtool/keys/ecdsa.py | 15 +++++++++++++++ .../sb-tools/imgtool/imgtool/keys/ecdsa_test.py | 15 +++++++++++++++ .../sb-tools/imgtool/imgtool/keys/general.py | 15 +++++++++++++++ .../sb-tools/imgtool/imgtool/keys/rsa.py | 15 +++++++++++++++ .../sb-tools/imgtool/imgtool/keys/rsa_test.py | 15 +++++++++++++++ 8 files changed, 120 insertions(+) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py index 4165163263a..306c2691e59 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/aes_cipher.py @@ -1,4 +1,19 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import click from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/create_aesHeader.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/create_aesHeader.py index b21307ed455..bc8dfec034b 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/create_aesHeader.py +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/create_aesHeader.py @@ -1,3 +1,18 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import codecs import click diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py index 90d2a034299..4ffb561d16a 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/ecc_kdf.py @@ -1,4 +1,19 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from cryptography.hazmat.backends import default_backend from cryptography.hazmat.primitives import hashes from cryptography.hazmat.primitives.asymmetric import ec diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa.py index f541d16d1a4..7ac66bbf02b 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa.py +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa.py @@ -1,3 +1,18 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + """ ECDSA key management """ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa_test.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa_test.py index 8cb3220f802..877f33a1b15 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa_test.py +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/ecdsa_test.py @@ -1,3 +1,18 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + """ Tests for ECDSA keys """ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/general.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/general.py index 3ba34cb186e..aca3fddfc61 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/general.py +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/general.py @@ -1,3 +1,18 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + """General key class.""" import sys diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa.py index 4ddbfc646ea..eb1d0ebc4f3 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa.py +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa.py @@ -1,3 +1,18 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + """ RSA Key management """ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa_test.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa_test.py index 81518780a61..e9bdb86375f 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa_test.py +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/imgtool/imgtool/keys/rsa_test.py @@ -1,3 +1,18 @@ +# Copyright 2019 Cypress Semiconductor Corporation +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + """ Tests for RSA keys """ From 9d4a69720713fb0dd4c241647a2d315738df7d18 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Tue, 16 Jul 2019 18:12:28 +0300 Subject: [PATCH 04/16] Updated linker scripts and startup file for ARM - fixes tests-mbedmicro-rtos-mbed-heap_and_stack failure on ARM compiler. --- .../TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct | 26 +++------- .../TOOLCHAIN_ARM/startup_psoc6_01_cm4.S | 49 +++++++++++++++++-- .../TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld | 18 ++----- .../TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf | 4 +- 4 files changed, 57 insertions(+), 40 deletions(-) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct index 6d3b172fedd..542ebce868f 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct @@ -67,11 +67,11 @@ #endif #if !defined(MBED_RAM_START) - #define MBED_RAM_START 0x08002000 + #define MBED_RAM_START 0x08000000 #endif #if !defined(MBED_RAM_SIZE) - #define MBED_RAM_SIZE 0x0001E000 + #define MBED_RAM_SIZE 0x00020000 #endif #if !defined(MBED_BOOT_STACK_SIZE) @@ -133,24 +133,10 @@ #define EFUSE_START 0x90700000 #define EFUSE_SIZE 0x100000 -; Size and start address of the Cortex-M0+ application image -#define FLASH_CM0P_SIZE 0x40000 -#define FLASH_CM0P_START (FLASH_START + FLASH_SIZE - FLASH_CM0P_SIZE) - ; Size and start address of the Cortex-M4 application image -#define FLASH_CM4_SIZE (FLASH_SIZE - FLASH_CM0P_SIZE) +#define FLASH_CM4_SIZE FLASH_SIZE #define FLASH_CM4_START FLASH_START - -; Cortex-M0+ application image -LR_IROM FLASH_CM0P_START FLASH_CM0P_SIZE -{ - .cy_m0p_image +0 FLASH_CM0P_SIZE - { - * (.cy_m0p_image) - } -} - ; Cortex-M4 application image LR_IROM1 FLASH_CM4_START FLASH_CM4_SIZE { @@ -184,13 +170,15 @@ LR_IROM1 FLASH_CM4_START FLASH_CM4_SIZE } ; Application heap area (HEAP) - ARM_LIB_HEAP +0 EMPTY ((RAM_START+RAM_SIZE)-AlignExpr(ImageLimit(RW_IRAM1), 8)-STACK_SIZE) + ARM_LIB_HEAP +0 { + * (HEAP) } ; Stack region growing down - ARM_LIB_STACK (RAM_START+RAM_SIZE) EMPTY -STACK_SIZE + ARM_LIB_STACK RAM_START+RAM_SIZE -STACK_SIZE { + * (STACK) } ; Used for the digital signature of the secure application and the diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S index 023ea2184dc..5bd22714385 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S @@ -23,6 +23,36 @@ ; * limitations under the License. ; */ +;/* +;//-------- <<< Use Configuration Wizard in Context Menu >>> ------------------ +;*/ + +; Stack Configuration +; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> +; + IF :DEF:__STACK_SIZE +Stack_Size EQU __STACK_SIZE + ELSE +Stack_Size EQU 0x00000400 + ENDIF + AREA STACK, NOINIT, READWRITE, ALIGN=3 +Stack_Mem SPACE Stack_Size +__initial_sp + +; Heap Configuration +; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8> +; + IF :DEF:__HEAP_SIZE +Heap_Size EQU __HEAP_SIZE + ELSE +Heap_Size EQU 0x00000400 + ENDIF + AREA HEAP, NOINIT, READWRITE, ALIGN=3 +__heap_base +Heap_Mem SPACE Heap_Size +__heap_limit + + PRESERVE8 THUMB @@ -33,9 +63,7 @@ EXPORT __Vectors_End EXPORT __Vectors_Size - IMPORT |Image$$ARM_LIB_STACK$$Base| -__Vectors DCD |Image$$ARM_LIB_STACK$$Base| ; Top of Stack - +__Vectors DCD __initial_sp ; Top of Stack DCD Reset_Handler ; Reset Handler DCD 0x0000000D ; NMI Handler located at ROM code @@ -635,7 +663,20 @@ pass_interrupt_dacs_IRQHandler ; User Initial Stack & Heap - IMPORT __use_two_region_memory + + IF :DEF:__MICROLIB + + EXPORT __initial_sp + EXPORT __heap_base + EXPORT __heap_limit + + ELSE + + IMPORT __use_two_region_memory + + ALIGN + + ENDIF END diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld index 913663190b0..ebb6f76525c 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld @@ -65,11 +65,11 @@ ENTRY(Reset_Handler) #endif #if !defined(MBED_RAM_START) - #define MBED_RAM_START 0x08002000 + #define MBED_RAM_START 0x08000000 #endif #if !defined(MBED_RAM_SIZE) - #define MBED_RAM_SIZE 0x0001E000 + #define MBED_RAM_SIZE 0x00020000 #endif #if !defined(MBED_BOOT_STACK_SIZE) @@ -118,11 +118,8 @@ MEMORY efuse (r) : ORIGIN = 0x90700000, LENGTH = 0x100000 /* 1 MB */ } -/* Size and start address of the Cortex-M0+ application image */ -FLASH_CM0P_SIZE = 0x40000; -FLASH_CM0P_START = ORIGIN(flash) + LENGTH(flash) - FLASH_CM0P_SIZE; /* Size and start address of the Cortex-M4 application image */ -FLASH_CM4_SIZE = LENGTH(flash) - FLASH_CM0P_SIZE; +FLASH_CM4_SIZE = LENGTH(flash); FLASH_CM4_START = ORIGIN(flash); /* Library configurations */ @@ -164,15 +161,6 @@ GROUP(libgcc.a libc.a libm.a libnosys.a) SECTIONS { - /* Cortex-M0+ application image */ - .cy_m0p_image FLASH_CM0P_START : - { - . = ALIGN(4); - __cy_m0p_code_start = . ; - KEEP(*(.cy_m0p_image)) - __cy_m0p_code_end = . ; - } > flash - /* Cortex-M4 application image */ .text FLASH_CM4_START : { diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf index 2eb6bbacd4d..67556454eb5 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf @@ -66,11 +66,11 @@ if (!isdefinedsymbol(MBED_APP_SIZE)) { } if (!isdefinedsymbol(MBED_RAM_START)) { - define symbol MBED_RAM_START = 0x08002000; + define symbol MBED_RAM_START = 0x08000000; } if (!isdefinedsymbol(MBED_RAM_SIZE)) { - define symbol MBED_RAM_SIZE = 0x0001E000; + define symbol MBED_RAM_SIZE = 0x00020000; } if (!isdefinedsymbol(MBED_BOOT_STACK_SIZE)) { From b8639a00ec4c743a52a9c41b4dae66e9fa44e008 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Tue, 16 Jul 2019 19:26:01 +0300 Subject: [PATCH 05/16] Updated CyBootloader hexes. --- .../CypressBootloader_CM0p.hex | 2429 ++++---- .../CypressBootloader_CM0p.jwt | 2 +- .../CypressBootloader_CM0p.hex | 5040 +++++++++-------- .../CypressBootloader_CM0p.jwt | 2 +- 4 files changed, 3771 insertions(+), 3702 deletions(-) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex index 05f2ecc028d..ed18b2a5472 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex @@ -13,9 +13,9 @@ :1000B0009D4B0D109D4B0D109D4B0D109D4B0D102C :1000C00010B5064C2378002B07D1054B002B02D02E :1000D000044800E000BF0123237010BDECA7020814 -:1000E00000000000008B0D10044B10B5002B03D056 +:1000E00000000000508C0D10044B10B5002B03D005 :1000F0000349044800E000BF10BDC04600000000F6 -:10010000F0A70208008B0D100021124B124A10B507 +:10010000F0A70208508C0D100021124B124A10B5B6 :10011000D8601C68002C06DB914202D101204042CD :1001200010BD0131F5E79142F8D00121996000211D :100130001C69002C03DA9142F0D00131F8E79142BA @@ -25,10 +25,10 @@ :100170000C000393FFF7C8FF002801D1019B236007 :1001800004B010BD13B5084BC47A986801A9C0B279 :10019000FFF7E4FF002803D1019B9C42804116BD7C -:1001A00001204042FBE7C04610AE02081FB5064BD7 +:1001A00001204042FBE7C046E8AD02081FB5064B00 :1001B0000004C018029001AB02A801910393FFF75D :1001C000A3FF05B000BDC0460001003610B5034BCB -:1001D000C17A9868C0B2FFF7E9FF10BD10AE0208FF +:1001D000C17A9868C0B2FFF7E9FF10BDE8AD020828 :1001E000F0B50F000400002685B0BE4201D100200A :1001F0003EE0A0221F4BD2009A582378032A04D055 :10020000092B02D801361034EFE71B4A0A33DB0012 @@ -38,7 +38,7 @@ :10024000002815D1237B2900AB71637BA068EB717B :10025000E3896B8102F04AFB002809D1A06802F013 :1002600025FC002804D1A06802F008FC0028C9D0B1 -:1002700005B0F0BD0000214010AE020870B50600C8 +:1002700005B0F0BD00002140E8AD020870B50600F1 :100280000024104AA3019B180F491A68A3015B18A8 :100290001B68002A04DA0134102CF2D1002070BD52 :1002A000002BF8DB094B3100E518AD01280002F006 @@ -76,9 +76,9 @@ :1004A000002815D10A210D48FFF712FF00280FD1AF :1004B00004210B48FFF741FF002809D10121094819 :1004C000FFF770FF04E02000FFF7A8FF0028DED050 -:1004D00010BDC046AC7B0D10A87A0D10B47A0D107B -:1004E000547B0D10947B0D1010B501210148FFF7CE -:1004F00077FE10BD5C7C0D100022124B124910B526 +:1004D00010BDC0462C7C0D10287B0D10347B0D10F8 +:1004E000D47B0D10147C0D1010B501210148FFF7CD +:1004F00077FE10BDDC7C0D100022124B124910B5A6 :10050000D8601C68002C05DB8A4201D1012010BD97 :100510000132F6E78A42F9D001229A6000220B49A3 :100520001C69002C03DA8A42F0D00132F8E78A42D3 @@ -125,50 +125,50 @@ :1007B00010BDC04600030035F0B58DB01D0012AB72 :1007C00040CB02921B780F000393002305AA04A9D3 :1007D0000493059300F03DF9041E3BD1204B3A00F1 -:1007E00000930599029B049806F050FC002834DD24 +:1007E00000930599029B049806F08EFC002834DDE6 :1007F000022007AA06A9FF300694079401F0AEF97B :10080000002803D12900069800F0F4FF812007AAF0 :1008100006A9400001F0A2F9652400281ED131008C :10082000069800F077FD041E14D108A9380000F0E6 :1008300028F9041E0ED131000B9800F063FB041E52 :1008400008D1039A29000B9800F03AF9040008989F -:1008500006F0B2FB20000DB0F0BD14246442F9E7AD +:1008500006F0F0FB20000DB0F0BD14246442F9E76F :10086000005F2D00F0B51F00002387B002910392B6 :1008700004A905AA0493059300F0EBF8041E2ED1F9 -:10088000059800F07FF8040006F0C0FE051E31D088 -:100890001A4B0200009305992300049806F0F6FB1A -:1008A000002822DD280006F0E1FB061E20D0010012 +:10088000059800F07FF8040006F0FEFE051E31D04A +:100890001A4B0200009305992300049806F034FCDB +:1008A000002822DD280006F01FFC061E20D00100D3 :1008B000134800F09FF8002814D00069002811D0D8 :1008C000039B220000930197029B2900FFF774FF0E -:1008D0000400300006F070FB280006F0A1FE2000A6 +:1008D0000400300006F0AEFB280006F0DFFE20002A :1008E00007B0F0BD01246442F3E714246442F3E747 :1008F0000524FBE764246442F1E7C046005F2D0055 -:100900006C7C0D1010B5010004000B4806F08CFF44 -:10091000002398420DD02100084806F085FF0123EE -:10092000002806D02100064806F07EFF43424341DE -:100930005B00180010BDC046737D0D107C7D0D104E -:10094000887D0D1010B5010004000B4806F06CFF07 -:10095000002398420DD02100084806F065FF0123CE -:10096000002806D02100064806F05EFF43424341BE -:100970005B00180010BDC0468D7D0D10967D0D10DA -:100980009E7D0D1003235843800898430430704720 +:10090000EC7C0D1010B5010004000B4806F0CAFF86 +:10091000002398420DD02100084806F0C3FF0123B0 +:10092000002806D02100064806F0BCFF43424341A0 +:100930005B00180010BDC046F37D0D10FC7D0D104E +:10094000087E0D1010B5010004000B4806F0AAFF48 +:10095000002398420DD02100084806F0A3FF012390 +:10096000002806D02100064806F09CFF4342434180 +:100970005B00180010BDC0460D7E0D10167E0D10D8 +:100980001E7E0D100323584380089843043070479F :10099000F8B5C3680D000860062B21D18468124F9A :1009A000002C01D12000F8BD266A002E06D03100AF -:1009B0000E4806F039FF002802D16C602468EFE78A -:1009C00031000B4806F030FF002801D1AC60F5E79C -:1009D0003100380006F028FF0028EFD1EC60EDE789 -:1009E00002204042DFE7C046B57D0D10A67D0D1008 -:1009F000AC7D0D10F0B507000D00002491B001AEE4 +:1009B0000E4806F077FF002802D16C602468EFE74C +:1009C00031000B4806F06EFF002801D1AC60F5E75E +:1009D0003100380006F066FF0028EFD1EC60EDE74B +:1009E00002204042DFE7C046357E0D10267E0D1006 +:1009F0002C7E0D10F0B507000D00002491B001AE63 :100A0000002D02D1280011B0F0BD296A002904D0C0 -:100A1000380006F009FF0028F4D0AB68002B06D0A0 +:100A1000380006F047FF0028F4D0AB68002B06D062 :100A20000E2C12D8A200955101341D00E8E72B6866 :100A3000002BFAD1002C0AD0013CA3009B591B6863 :100A4000002BF2D1002CF7D1EFE70025DAE72500E3 -:100A5000D8E7F8B50E002E21170006F0D7FE041EC9 -:100A60000CD0451C2E21280006F0D0FE002805D011 +:100A5000D8E7F8B50E002E21170006F015FF041E8A +:100A60000CD0451C2E21280006F00EFF002805D0D2 :100A7000001B0138386000203560F8BD1620404268 -:100A8000FBE770B5050000200C0006F07BFA28009B -:100A900006F0ECFA002803D02100FFF779FF70BDC3 +:100A8000FBE770B5050000200C0006F0B9FA28005D +:100A900006F02AFB002803D02100FFF779FF70BD84 :100AA00005204042FBE7002304220133002901D145 :100AB000904203D952001D2BF7D102331800704722 :100AC000F0B589B005900C000100C24807920027DC @@ -194,9 +194,9 @@ :100C000002997D48FFF7F6FE002804D0836801931F :100C1000019B002B03D1029B1B68029361E70199A2 :100C20007648FFF7E7FE00284AD0036974491800A8 -:100C3000039306F0F9FD002842D07249039806F0AC -:100C4000F3FD00283CD000266F4AB3009958039862 -:100C500006F0EAFD071E05D00136172EF4D1052750 +:100C3000039306F037FE002842D07249039806F06D +:100C400031FE00283CD000266F4AB3009958039823 +:100C500006F028FE071E05D00136172EF4D1052711 :100C6000183E7F4201996948FFF7C4FE002801D071 :100C70008369069301996648FFF7BCFE002804D0FB :100C8000C1698069FFF70FFF0490731C18D0049BA3 @@ -204,7 +204,7 @@ :100CA00004D1320006990A32D20011512622FF32B5 :100CB0009B5C012B04D10A36F600049BA6197360D5 :100CC000019B1B68A3E73668002E00D012E721E7DE -:100CD0004C49380006F0A8FD002800D0FFE03100A4 +:100CD0004C49380006F0E6FD002800D0FFE0310066 :100CE0004A48FFF787FE002806D02300FF331B7C0D :100CF000012B01D18369636131004548FFF77AFE1A :100D0000002800D1EBE02300FF331B7C012B00D037 @@ -220,12 +220,12 @@ :100DA0001F48FFF727FE00280BD063191A001932DD :100DB000FF321278012A04D102326A439B188269F9 :100DC0005A6202350A2D2DD03668D4E7A07007008C -:100DD000C9E7C046737D0D10DC7C0D10917C0D10B1 -:100DE000987C0D10BA7D0D10A27C0D10AA7C0D1000 -:100DF000B97C0D10C07C0D10757C0D10C27D0D10DE -:100E00007F7C0D10847C0D10C0A00208127E0D1096 -:100E10008C7C0D10CA7C0D10D77C0D10DF7C0D1062 -:100E2000E97C0D1005992F48FFF7E4FD051E20D041 +:100DD000C9E7C046F37D0D105C7D0D10117D0D102F +:100DE000187D0D103A7E0D10227D0D102A7D0D10FC +:100DF000397D0D10407D0D10F57C0D10427E0D10DB +:100E0000FF7C0D10047D0D10C0A00208927E0D1015 +:100E10000C7D0D104A7D0D10577D0D105F7D0D105E +:100E2000697D0D1005992F48FFF7E4FD051E20D0C0 :100E300001002D48FFF7DEFD00280AD02423FF33F0 :100E4000E35C012B05D1C3685A1E934122004D3249 :100E5000137029002548FFF7CDFD002809D0912304 @@ -233,13 +233,13 @@ :100E70002370380009B0F0BD29001D48FFF7BAFD06 :100E8000002800D152E68668002E00D14EE63100DF :100E90001848FFF7AFFD002821D007691649380030 -:100EA00006F0C2FC002800D012E731001348FFF71B +:100EA00006F000FD002800D012E731001348FFF7DC :100EB000A1FD002806D02300FF339B7B012B01D12D :100EC0008369E36031000E48FFF794FD002806D0E7 :100ED0002300FF33DB7B012B01D18369236136685B -:100EE000D2E7C046EF7C0D10FB7C0D10077D0D1086 -:100EF000757C0D10C27D0D107F7C0D10127E0D10C3 -:100F00008C7C0D10F8B507000C000100BA48FFF703 +:100EE000D2E7C0466F7D0D107B7D0D10877D0D1004 +:100EF000F57C0D10427E0D10FF7C0D10927E0D10C2 +:100F00000C7D0D10F8B507000C000100BA48FFF782 :100F100071FDBA4E051E2AD001003000FFF76AFDB0 :100F2000002808D0230068331B78012B03D1006907 :100F3000FFF708FD20702900B148FFF75BFD00288E @@ -286,26 +286,26 @@ :1011C0006A439B188269DA6331001A48FFF712FC00 :1011D00000280AD063191A0083321278012A04D138 :1011E0003A006A439B1882691A6402350A2D01D0BD -:1011F0003668D6E70020F8BD197D0D101D7D0D1055 -:10120000287D0D10307D0D10347D0D10377D0D10B3 -:101210003E7D0D10467D0D10657D0D10237E0D1059 -:101220002D7E0D10347E0D104B7D0D104F7D0D1059 -:10123000E97C0D108C7C0D105D7D0D1070B50400E7 -:101240000D0086B00021142201A806F01DFA290025 +:1011F0003668D6E70020F8BD997D0D109D7D0D1055 +:10120000A87D0D10B07D0D10B47D0D10B77D0D10B3 +:10121000BE7D0D10C67D0D10E57D0D10A37E0D1059 +:10122000AD7E0D10B47E0D10CB7D0D10CF7D0D1059 +:10123000697D0D100C7D0D10DD7D0D1070B5040065 +:101240000D0086B00021142201A806F05BFA2900E7 :101250002000FFF7CFFB0400002C18D021001C4811 :10126000FFF7C8FB0028F7D00569002D0AD0194EFA -:101270002900300006F0D8FA00280BD1310001A86F -:1012800006F0DCFA210001A8FFF7B4FB04002000FF -:1012900006B070BD104E2900300006F0C5FA0028D7 -:1012A000ECD029000D4806F0BFFA0028E6D00C4E1D -:1012B0002900300006F0B8FA0028DFD029000948DC -:1012C00006F0B2FA0028DDD121000748C1E7C04688 -:1012D000C27D0D10EA7D0D10D37D0D10DA7D0D104D -:1012E000E27D0D10C77D0D10CD7D0D1010B5FFF7FF +:101270002900300006F016FB00280BD1310001A830 +:1012800006F01AFB210001A8FFF7B4FB04002000C0 +:1012900006B070BD104E2900300006F003FB002898 +:1012A000ECD029000D4806F0FDFA0028E6D00C4EDF +:1012B0002900300006F0F6FA0028DFD0290009489E +:1012C00006F0F0FA0028DDD121000748C1E7C0464A +:1012D000427E0D106A7E0D10537E0D105A7E0D1049 +:1012E000627E0D10477E0D104D7E0D1010B5FFF77C :1012F00081FB0124002809D08168002906D0044818 :10130000FFF778FB002801D0C468E4B2200010BDCC -:101310006B7D0D10F0B5050085B000200C0005F0C8 -:1013200031FE280005F0A2FE0190002800D14BE21A +:10131000EB7D0D10F0B5050085B000200C0005F048 +:101320006FFE280005F0E0FE0190002800D14BE29E :101330000100A148FFF75EFB051E00D0B4E00123C9 :101340005B42009301999D48FFF754FB051E00D0B6 :10135000EEE001235B42009301999948FFF74AFBB5 @@ -329,7 +329,7 @@ :10147000FFF73CFF002D00D19EE1AD692300220063 :101480003C338232643402995D6019606946097B9D :101490000833507011700232A342F4D1019805F064 -:1014A0008BFD009805B0F0BD474F01003800FFF7F5 +:1014A000C9FD009805B0F0BD474F01003800FFF7B7 :1014B000C5FE290006003800FFF718FF0700002EC0 :1014C0002FD03069FFF73EFA2300683320701F7079 :1014D0000023434F290038000093FFF7AFFE290097 @@ -346,10 +346,10 @@ :10158000124F29003800FFF759FE290006003800E5 :10159000FFF7ACFE002E00D1DBE6B36963712300D8 :1015A0006D331870D8E601235B420093D4E7012322 -:1015B0005B420093E4E7C046197D0D10347D0D10A9 -:1015C000377D0D104B7D0D101D7D0D10307D0D10E4 -:1015D0004F7D0D10E97C0D108C7C0D105D7D0D1084 -:1015E000287D0D107A4F01003800FFF727FE2900F3 +:1015B0005B420093E4E7C046997D0D10B47D0D10A9 +:1015C000B77D0D10CB7D0D109D7D0D10B07D0D10E4 +:1015D000CF7D0D10697D0D100C7D0D10DD7D0D1082 +:1015E000A87D0D107A4F01003800FFF727FE290073 :1015F00006003800FFF77AFE0700002E00D1A1E0B8 :101600003069FFF79FF923006E33A0711F70714F8F :1016100029003800FFF712FE290006003800FFF706 @@ -380,10 +380,10 @@ :1017A0005B42009334E601235B42009341E6012350 :1017B0005B420295009353E601235B4200935DE692 :1017C00001235B42009369E605235B42009368E6D0 -:1017D0001D7D0D10287D0D10307D0D103E7D0D10EE -:1017E000467D0D10657D0D10237E0D102D7E0D1094 -:1017F000347E0D10F0B5050085B000200C0005F01A -:10180000C1FB280005F032FC0190002800D181E1E5 +:1017D0009D7D0D10A87D0D10B07D0D10BE7D0D10EE +:1017E000C67D0D10E57D0D10A37E0D10AD7E0D1094 +:1017F000B47E0D10F0B5050085B000200C0005F09A +:10180000FFFB280005F070FC0190002800D181E169 :101810000100C248FFF7EEF8051E00D13AE1C04FC3 :1018200001003800FFF70AFD290006003800FFF725 :101830005DFD002E00D109E1B36923702300FF3361 @@ -419,7 +419,7 @@ :101A100019322433FF324C31029E5D601E606E46E7 :101A2000367B08335070167002329942F4D1019916 :101A30004748FEF7DFFF051E3DD101235B420093BF -:101A4000019805F0B9FA009805B0F0BD01235B429A +:101A4000019805F0F7FA009805B0F0BD01235B425C :101A5000F8E601235B42009309E701235B42009310 :101A600019E701235B42009327E701235B420093C0 :101A70003AE701235B4200934FE701235B42009367 @@ -432,11 +432,11 @@ :101AE0001D4F29003800FFF7A9FB29000600380028 :101AF000FFF7FCFB002EA0D0F3685A1E9341220092 :101B00004D3213702423FF33E05499E701235B42E5 -:101B10000093E5E705235B42009394E7737D0D1086 -:101B2000DC7C0D10BA7D0D10A27C0D10987C0D1080 -:101B3000C07C0D10CA7C0D10B97C0D10757C0D1089 -:101B4000127E0D108C7C0D10DF7C0D10E97C0D10C9 -:101B5000EF7C0D10077D0D10FB7C0D107FB5DC2395 +:101B10000093E5E705235B42009394E7F37D0D1006 +:101B20005C7D0D103A7E0D10227D0D10187D0D107C +:101B3000407D0D104A7D0D10397D0D10F57C0D1086 +:101B4000927E0D100C7D0D105F7D0D10697D0D10C6 +:101B50006F7D0D10877D0D107B7D0D107FB5DC2313 :101B60009B0500936C46002302AD01950290154839 :101B70006B60C460144C0668002E07DBA34203D1DF :101B80000120404204B070BD0133F4E7A342F7D016 @@ -445,14 +445,14 @@ :101BB00001D00098E6E7029B002013606B680B6081 :101BC000E0E7C04600002340983A0000F0B5170057 :101BD0008A22434C9200A544079008910EA8002148 -:101BE000BFB2099305F050FD0CAA0BA93800FEF70F +:101BE000BFB2099305F08EFD0CAA0BA93800FEF7D1 :101BF000A5FD00260500B0422CD1C02280210B9B00 :101C0000D2051A40C9058A4237D10C9BDC1DE40875 -:101C100020000D9405F0FAFC0925061E1AD00100DB +:101C100020000D9405F038FD0925061E1AD001009C :101C20000DAB22003800FEF799FD051E12D16B4660 :101C3000198C102304930293079B079A3033019366 :101C4000284B40320392009332000D9B0EA8FEF702 -:101C500097FD0500300005F0E3FC002D05D12022A2 +:101C500097FD0500300005F021FD002D05D1202263 :101C600009990EA8FEF7ECFC05000EA8FEF7DAFCB9 :101C7000280099239B009D44F0BD1B4A934207D145 :101C80000C9B5C0809230134E4085C433B34BFE748 @@ -482,7 +482,7 @@ :101E000001005000020050000500520070B50A4D5C :101E100004002B6831331B78834204D8E62107483D :101E2000490002F087FA2B681A00B0321088444348 -:101E3000186A201870BDC046E0AD02082C800D1055 +:101E3000186A201870BDC046E0AD0208AC800D10D5 :101E400010B50020FFF7E2FF0A4B1C682300B433F3 :101E50001B68C0180368002B0ADB074B1868FFF7E4 :101E60007FFF012263689A609A68002AFCD110BD46 @@ -495,16 +495,16 @@ :101ED00077FE144B144A1A605D609C60DC60134B03 :101EE0001B6854331978002915D0FFF71FFF040031 :101EF000FFF728FFFA210134013060430C4B0D4CF1 -:101F000089004443186805F0B5F90100200005F088 -:101F1000B1F9094BC1188020400005F0B5FD70BD36 +:101F000089004443186805F0F3F90100200005F04A +:101F1000EFF9094BC1188020400005F0F5FD70BDB8 :101F20000648FCE708A802080001001CE0AD020812 :101F300020A1020860F590009808000006005200F9 :101F400070B5C40506000D00E40D2AD1002928D083 :101F500002F036FE144B154A1A605C609E60DD602C :101F6000134B1B6852331978002915D0FFF7DEFE9A :101F70000400FFF7E7FEFA210134013060430D4B06 -:101F80000D4C89004443186805F074F901002000E5 -:101F900005F070F9094BC1188020400005F074FD70 +:101F80000D4C89004443186805F0B2F901002000A7 +:101F900005F0AEF9094BC1188020400005F0B4FDF2 :101FA00070BD0748FCE7C04608A80208000100050C :101FB000E0AD020820A10208C0EA21014826000085 :101FC0000600520070B506000C001500072903D961 @@ -513,7 +513,7 @@ :101FF000B01AC0090001C0181F231D40032C07D8C8 :10200000E400A340A54002689A431543056070BDF3 :10201000043CE400A340A54042689A431543456050 -:10202000F5E7C04691020000BE800D10920200004C +:10202000F5E7C046910200005E810D1092020000AB :10203000E0AD0208F0B585B000900D001400002856 :1020400000D138E1002A00D135E1072903D94E211A :102050009A4802F06FF92368012B03D94F21974862 @@ -554,20 +554,20 @@ :10228000284003436046256A284018250343E06A36 :10229000C00028400343206BFF244001204003433B :1022A000FE20029D80000540AB400020A1430B436F -:1022B000136005B0F0BD0D48FBE7C04677800D10F8 -:1022C000BE800D1031030000CD030000CE030000DE +:1022B000136005B0F0BD0D48FBE7C04607810D1067 +:1022C0005E810D1031030000CD030000CE0300003D :1022D000E0AD0208F1060000F20600007206000000 :1022E000730600000C0400000D04000001005A00F9 :1022F0000B4B70B51B680500B4331B680C00C3188A :102300001B68002B09DA0B0C03D00649064802F0C3 :1023100011F80020A4B26C6070BD0448FCE7C04610 -:10232000E0AD0208DE0200002C800D1001008A00E2 +:10232000E0AD0208DE020000AC800D1001008A0062 :10233000036870B505000C00002B0BDAC2600B0CB3 :1023400004D0B1210448890001F0F4FF0020A4B2B8 -:10235000AC6070BD0148FCE72C800D1001008A00C4 +:10235000AC6070BD0148FCE7AC800D1001008A0044 :1023600070B505000C1E03D1A221084801F0E2FF60 :10237000074B1B68B4331B68EB181B68002B03DA90 -:102380000020EB68236070BD0248FCE706810D1059 +:102380000020EB68236070BD0248FCE7B6810D10A9 :10239000E0AD020801008A00024B1A68002A00D151 :1023A000186070471CA80208F0B5314D1F002B685B :1023B00085B0040002910392002B03D1BE212D4869 @@ -582,7 +582,7 @@ :1024400079FF019B6D011B041A0C13430D4A75198A :10245000AD182B60039BE361029B23620023A36101 :102460000A9B002B01D01B88A38105B0F0BDC0469C -:102470001CA8020850810D10E0AD02082C800D1040 +:102470001CA8020810820D10E0AD0208AC800D10FF :102480000702000008100000F0B5040085B0002825 :1024900003D15B21214801F04DFF6368032B03D971 :1024A0005D211E4801F046FFE36A002B03D1612144 @@ -592,7 +592,7 @@ :1024E00000952369266A676AFFF75EFF00213B00BB :1024F0000A0000913000FFF757FF216B280001F020 :10250000A1FE0022AB5E002B06DB1F2213401E3A09 -:102510009A401300034A136005B0F0BD50810D10BE +:102510009A401300034A136005B0F0BD10820D10FD :10252000E0AD020800E100E0F7B504000F00151E61 :10253000019304D183211D48490001F0FBFE1C4E8C :102540003368002B04D108211848FF3101F0F2FE56 @@ -601,13 +601,13 @@ :102570006368140011009C407B6899402B68090433 :102580009BB20B432B60019BF5607B62BA61230C0D :1025900004D0B1210748890001F0CCFE0020A4B28C -:1025A000B460FEBD0448FCE70448FAE750810D1012 -:1025B0001CA802082C800D1004028A0007028A0061 +:1025A000B460FEBD0448FCE70448FAE710820D1051 +:1025B0001CA80208AC800D1004028A0007028A00E1 :1025C000F8B5114F04003B680E001500002B04D134 :1025D00068210E48FF3101F0ADFE2C2060433C68BD :1025E0002418236A002B04D16C210848FF3101F024 :1025F000A1FEE369AB4204D90020236AAD00EE508E -:10260000F8BD0348FCE7C0461CA8020850810D1025 +:10260000F8BD0348FCE7C0461CA8020810820D1064 :102610000A028A00002373B504000193984204D192 :10262000ED212C48490001F085FE2369002B04D1DF :10263000DC212848FF3101F07DFE6369002B04D1C5 @@ -620,16 +620,16 @@ :1026A00031002069FFF724FEADB2002D09D0636927 :1026B0001D6000251B68636AAB4205D098476562C0 :1026C000A56163691B6873BDA36A002BF8D09847A6 -:1026D000F6E7C04650810D10E0AD020870B5084C19 +:1026D000F6E7C04610820D10E0AD020870B5084C58 :1026E00005002368002B04D1DD210648490001F0D4 :1026F00021FE2C20454320684019FFF78BFF70BD59 -:102700001CA8020850810D1070B50A4D04002B68FA +:102700001CA8020810820D1070B50A4D04002B6839 :1027100031331B78834204D8E6210748490001F091 :1027200009FE2B681A00B03210884443186A20183A -:1027300070BDC046E0AD02082C800D10F8B5174BF7 +:1027300070BDC046E0AD0208AC800D10F8B5174B77 :102740000D001B6831331B78834225D9002923D023 :102750001F240B681C401FD1FFF7D6FF07002B6812 -:102760000F4EDA0821003060686804F08DFF210008 +:102760000F4EDA0821003060686804F0CBFF2100CA :102770003800FFF7BDFD21002A003068FFF7D8FDC3 :10278000041E07D101003068FFF7B2FD03002000EE :10279000002B00D00348F8BD0348FCE7E0AD020879 @@ -650,10 +650,10 @@ :102880002B041203290013400F2211400B4331681F :10289000A402096964188021C9016350605810407E :1028A000401B431E9841044B4042184070BDC04637 -:1028B000E0AD02089B810D100300C20070B5094D08 +:1028B000E0AD02086B820D100300C20070B5094D37 :1028C00004002B689B6CC340DB0703D4C721064878 :1028D00001F030FD2B6810341B69A402E0580F236F -:1028E000184070BDE0AD02089B810D1070B504006A +:1028E000184070BDE0AD02086B820D1070B5040099 :1028F0000D00002804D17A212448FF3101F01AFD8F :102900006B89DB0B04D0BD212048490001F012FD8A :102910000222AB799343012B04D07C211B48FF3169 @@ -663,7 +663,7 @@ :1029500092071343EA79D2000A4013430122297AED :102960004A40920113431A0009490A409A420BD186 :102970006262606A0840801A43425841054B4042F7 -:102980001840054BC01870BD0448FCE79B810D1032 +:102980001840054BC01870BD0448FCE76B820D1061 :10299000DBFEFFE0FDFF3DFF0300C2000100C200BF :1029A00070B504000D00002804D1C2212E48FF316B :1029B00001F0C0FC6B89DB0B04D0E1212A484900FF @@ -677,14 +677,14 @@ :102A30009B0118432B7949051B060B400343636038 :102A40002260216891420DD16068084A1040C01A86 :102A500043425841064B40421840064BC01870BDD7 -:102A60000548FCE70348FAE79B810D10FFFEFFFFD6 +:102A60000548FCE70348FAE76B820D10FFFEFFFF05 :102A7000FDFF3DFF0300C2000100C20010B5041EAF :102A800004D1FF210748490001F054FC8023626A09 :102A90001B0613436362606A034BC00F0138184082 -:102AA00010BDC0469B810D100300C20010B5041E6E +:102AA00010BDC0466B820D100300C20010B5041E9D :102AB00003D10749074801F03DFC802362681B06EB :102AC000134363606068044BC00F0138184010BDA9 -:102AD0004E0200009B810D100300C20070B504007F +:102AD0004E0200006B820D100300C20070B50400AE :102AE0000D00002803D12449244801F023FC0222D0 :102AF000AB799343012B04D0A5212048C90001F0F4 :102B000019FC0222EB799343012B03D01C491B488B @@ -694,7 +694,7 @@ :102B400001400B43297A4A40920113431A000E496F :102B50000A409A420DD16262606A0840801A43427C :102B600058410A4B40421840094BC01870BD0948F3 -:102B7000FCE70948FAE7C046270500009B810D10D5 +:102B7000FCE70948FAE7C046270500006B820D1004 :102B800029050000E0AD0208DBFEFFE0FDFF3DFF90 :102B90000300C2000200C2000100C20070B50500BF :102BA0000C00002803D12F492F4801F0C3FBA37963 @@ -709,17 +709,17 @@ :102C3000030060796A6003432B60286898420ED1D4 :102C400068680840801A434258410C4B4042184083 :102C50000B4BC01870BD0B48FCE70B48FAE708485F -:102C6000F8E7C046750500009B810D107605000051 +:102C6000F8E7C046750500006B820D107605000080 :102C700077050000E0AD0208DBFEFFFFFDFF3DFF32 :102C80000300C2000200C2000100C20010B5041E11 :102C900003D10B490B4801F04DFB0B4B1B682F3345 :102CA0001B78012B0AD18023626A1B0613436362DF :102CB000606A064BC00F0138184010BD0448FCE79D -:102CC000BD0500009B810D10E0AD02080300C200AD +:102CC000BD0500006B820D10E0AD02080300C200DC :102CD0000200C20010B5041E03D10B490B4801F0DD :102CE00029FB0B4B1B682F331B78012B0AD1802348 :102CF00062681B06134363606068064BC00F0138AF -:102D0000184010BD0448FCE7160600009B810D101A +:102D0000184010BD0448FCE7160600006B820D1049 :102D1000E0AD02080300C2000200C20070B504006A :102D20000D00002803D12149214801F003FB2B7835 :102D3000032B03D91F491E4801F0FCFA6B78032BC3 @@ -730,7 +730,7 @@ :102D800013431A000E490A409A420DD16262606AEA :102D90000840801A434258410A4B404218400A4BAF :102DA000C01870BD0948FCE70948FAE7560800005A -:102DB0009B810D105708000058080000E0AD020884 +:102DB0006B820D105708000058080000E0AD0208B3 :102DC000DBFEFFE0FDFF3DFF0300C2000200C2008A :102DD0000100C20070B504000D00002803D1214994 :102DE000214801F0A7FA2B78032B03D91F491E486D @@ -741,17 +741,17 @@ :102E30000B43A9784A40920113431A000E490A40F5 :102E40009A420DD1626060680840801A434258413E :102E50000A4B404218400A4BC01870BD0948FCE7B5 -:102E60000948FAE7A70800009B810D10A808000098 +:102E60000948FAE7A70800006B820D10A8080000C7 :102E7000A9080000E0AD0208DBFEFFE0FDFF3DFF1A :102E80000300C2000200C2000100C20010B5041E0F :102E900003D10B490B4801F04DFA0B4B1B682F3344 :102EA0001B78012B0AD18023626A1B0613436362DD :102EB000606A064BC00F0138184010BD0448FCE79B -:102EC000EB0800009B810D10E0AD02080300C2007A +:102EC000EB0800006B820D10E0AD02080300C200A9 :102ED0000200C20010B5041E03D10B490B4801F0DB :102EE00029FA0B4B1B682F331B78012B0AD1802347 :102EF00062681B06134363606068064BC00F0138AD -:102F0000184010BD0448FCE7440900009B810D10E7 +:102F0000184010BD0448FCE7440900006B820D1016 :102F1000E0AD02080300C2000200C20070B5040068 :102F20000D00002803D12149214801F003FA2B7834 :102F3000032B03D91F491E4801F0FCF96B78032BC2 @@ -762,7 +762,7 @@ :102F800013431A000E490A409A420DD16262606AE8 :102F90000840801A434258410A4B404218400A4BAD :102FA000C01870BD0948FCE70948FAE7A809000005 -:102FB0009B810D10A9090000AA090000E0AD0208DC +:102FB0006B820D10A9090000AA090000E0AD02080B :102FC000DBFEFFE0FDFF3DFF0300C2000200C20088 :102FD0000100C20070B504000D00002803D1214992 :102FE000214801F0A7F92B78032B03D91F491E486C @@ -773,7 +773,7 @@ :103030000B43A9784A40920113431A000E490A40F3 :103040009A420DD1626060680840801A434258413C :103050000A4B404218400A4BC01870BD0948FCE7B3 -:103060000948FAE7F90900009B810D10FA090000F0 +:103060000948FAE7F90900006B820D10FA0900001F :10307000FB090000E0AD0208DBFEFFE0FDFF3DFFC5 :103080000300C2000200C2000100C200094B1B681D :103090002F331B78012B0AD18023426A1B0613436E @@ -795,17 +795,17 @@ :1031900092011B0313406A68C90212040A401343D8 :1031A0000122296800200A4080211343EA6849046B :1031B00012060A401343236070BD0248FCE7C04674 -:1031C000E2810D100400B20010B50400012907D9F6 +:1031C000C2820D100400B20010B50400012907D915 :1031D000A021074801F0AEF801232268134304E060 :1031E0000029F9D1012203689343236010BDC04632 -:1031F000E2810D1070B54E1EF3B204001500012BD4 +:1031F000C2820D1070B54E1EF3B204001500012BF3 :1032000007D9042925D0082927D0E521154801F040 :1032100091F8032D03D9E621124801F08BF8072E0F -:1032200014D8300004F01CF8041312171212121BE9 +:1032200014D8300004F05AF8041312171212121BAB :1032300080231B01E418002C08D0C0222D04920228 :1032400023681540084A13401D43256070BD88233C :10325000EFE7032ADFD89023EBE7032ADBD8982394 -:10326000E7E7C046E2810D10FFFFFCFFF0B5160056 +:10326000E7E7C046C2820D10FFFFFCFFF0B5160075 :1032700089B005930EAB04CB01901B7802910493A7 :1032800010AB1D78331FDBB20392129CFA2B04D8CB :103290003E213B48FF3101F04DF8049B043BDBB27B @@ -823,14 +823,14 @@ :1033500000221343019AE4B2136507A8FFF7CAFEDF :10336000E1E7F0231B011D40636A3F0C0793C02374 :103370009B021E40029B2B4333433E00C7E7C046DF -:10338000E2810D100200B200F7B50193043BDBB2FD +:10338000C2820D100200B200F7B50193043BDBB21C :1033900005000F001600099CFA2B04D8D521164809 :1033A000490000F0C7FF002E21D007226B6C1340AC :1033B000032B1ED88023C021721EDB0292B21A4357 :1033C000019B89021B040B4013432B65381E0DD053 :1033D000089B2760F922A660E36102230020A36115 :1033E000D200A958013B0B436660AB50FEBD0348B9 -:1033F000FCE70348FAE7C046E2810D100400B20082 +:1033F000FCE70348FAE7C046C2820D100400B200A1 :103400000100B200F7B50193043BDBB205000F00E9 :103410001600099CFA2B04D89C211648890000F05C :1034200089FF002E22D007226B6C1340032B1FD87C @@ -838,7 +838,7 @@ :1034400089021B040B4013432B65381E0DD0089BCB :10345000E760F9226661236204230020A361D200A1 :10346000A958023B0B432661AB50FEBD0248FCE766 -:103470000248FAE7E2810D100400B2000100B20038 +:103470000248FAE7C2820D100400B2000100B20057 :10348000F0B51F00043BDBB28FB006000D00140046 :10349000FA2B03D85B495C4800F04CFF002C00D1AC :1034A000ABE00722736C1340032B00D9A7E0631E27 @@ -863,7 +863,7 @@ :1035D000FFF7A4FD3300D4331B6823711B0A63710A :1035E0003300D0331B68A371BAE7FFF797FD386843 :1035F000211DFFF793FD0825B2E7054874E705484C -:1036000072E7C046CD020000E2810D100200B20058 +:1036000072E7C046CD020000C2820D100200B20077 :103610000400B2000100B20000290CD00722436C64 :103620001340032B09D8C023013989B21B03194366 :103630000165002070470248FCE70248FAE7C046EF @@ -946,7 +946,7 @@ :103B0000266A01206D42337137607371B56033618D :103B100033750526A063A06A3A310660266B0371EF :103B2000337108784006400F052800D9F4E6E16AB1 -:103B300003F096FB65787E847878042020604EE759 +:103B300003F0D4FB65787E847878042020604EE71B :103B40008026033D3606354397E70698400618D58C :103B500002260898B043012813D00A2084466E1824 :103B6000F67A8C441E60002660461E715E712F5CE2 @@ -959,9 +959,9 @@ :103BD0001E605F712E5C760904D1013E9E606046D6 :103BE0002D5CE1E7FF261F739E60F8E703251D604B :103BF000043D187158719D60186118756AE7E56396 -:103C000035600D6088E6C046F90300003A820D1069 -:103C10000500B2000200B200FEFF4DFF2A820D1027 -:103C200032820D100123E763336034330B6073E697 +:103C000035600D6088E6C046F90300002A830D1078 +:103C10000500B2000200B200FEFF4DFF1A830D1036 +:103C200022830D100123E763336034330B6073E6A6 :103C30004023E3633F3B33600433F7E78023E363D0 :103C4000423B33600133F1E7F0B589B0029007924F :103C5000002800D11EE1002900D11BE14B6805932B @@ -973,7 +973,7 @@ :103CB000794800F03FFBA369002B03D170217648BF :103CC00000F038FBA3691B68013B032B03D971216A :103CD000714800F02FFB2278501E072800D9D7E04A -:103CE00003F0BEFA0432D635D6D6D6388021029BF0 +:103CE00003F0FCFA0432D635D6D6D6388021029BB2 :103CF00009015D18237A2968684F1804304039405B :103D00000143042029606168014226D00799029886 :103D10000091A169FFF7E8FD00281ED00823039A4F @@ -981,7 +981,7 @@ :103D3000069B9342A4D10020049B002B02D0B2200A :103D40000004184309B0F0BD029B8821D0E7029B14 :103D50009021CDE7029B9821CAE763689B07E3D5D2 -:103D60002169E06803F00CFB002903D08C214A484C +:103D60002169E06803F04AFB002903D08C214A480E :103D700000F0E0FA23694A4A934202D95A1E1342DC :103D800003D08D21444800F0D5FAFF218C466746C8 :103D9000E168A069B9438268036AA9602169494260 @@ -1000,7 +1000,7 @@ :103E60001F31013A0A40802109061143E9661B7D92 :103E70001B0433402B6702216268FF31114080220E :103E8000237A12061B0433400A4313432B604BE78B -:103E9000044851E7034855E73A820D10FFFFFCFF45 +:103E9000044851E7034855E72A830D10FFFFFCFF54 :103EA000FFFF00000400B200104B1B683C331B787E :103EB000834219D9042910D94B1EFF3B132B13D869 :103EC0001F2319400A4B8000C018C02304229B0006 @@ -1010,7 +1010,7 @@ :103F00003C331B78834204D8A3210C48490000F0BD :103F100011FA0B4BA400E418D0239B00E0580723B0 :103F20001840042807D1C0239B00E0581F230340FA -:103F300080204000184310BDE0AD020889820D10BA +:103F300080204000184310BDE0AD020889830D10B9 :103F400000002640F7B5041E03D14649464800F05C :103F5000F1F9B023454DDB00EB58002B00DA7FE090 :103F6000434B22689A4203D942493F4800F0E2F9A4 @@ -1029,7 +1029,7 @@ :1040300000F080F9E020A379184AC0001B02A958BB :104040000340174801400B43AB50238A01981B04DF :10405000A95803401348014000200B43AB50FEBD5C -:104060001148FCE73F02000089820D100000264045 +:104060001148FCE73F02000089830D100000264044 :10407000FFFF030049020000FF1F0000FF010000D6 :10408000510200000000FF018405000059020000F9 :104090005A02000000FF1F00630200008C050000B0 @@ -1055,10 +1055,10 @@ :1041D0001C6070BD5B8FDBB28B4203D17F2109482D :1041E00000F0A8F807208022054080203368920163 :1041F0001B680006A4180543A400E550E9E7C04683 -:10420000E0AD0208D2820D100A4B70B59B680A4ED1 +:10420000E0AD0208E2830D100A4B70B59B680A4EC0 :1042100010300D008400B34209D1002904D1A0213F :104220000648490000F086F83059355170BD044BFE -:104230001859FBE700ED00E000A00208D2820D1043 +:104230001859FBE700ED00E000A00208E2830D1032 :1042400000000D10F8B506000D00002841D04368AD :10425000032B03D93B21204800F06CF80023F05ECB :10426000002828DBB178FFF795FF0024FF22032701 @@ -1068,14 +1068,14 @@ :1042A00099510F4B9A680F4B9A4202D12900FFF7A0 :1042B000ABFF2000F8BD0C4CD8E70F263340083B7D :1042C000074E9B089B009B19DE6932401143D96160 -:1042D000E7E7054CEDE7C046D2820D1000E100E0B3 +:1042D000E7E7054CEDE7C046E2830D1000E100E0A2 :1042E00000ED00E000A002080100560070B5802536 :1042F00004002D02AC4205D8064B18686043FDF758 :10430000FFFC70BD044B1868FDF7FAFC034BE41882 :10431000F0E7C04630A1020828A102080080FFFF94 :1043200010B5034B1B785843FDF7EAFC10BDC0469F :1043300034A1020870B50D00044C010018222000C1 -:1043400003F095FAA56101BEFEE7C046B0A70208DA +:1043400003F0D3FAA56101BEFEE7C046B0A702089C :104350008022054B12069A64986C044BC043C01728 :104360001840034BC018704700002740FDFFB9FFFD :10437000030046008022054B120198585B68DBB2AF @@ -1128,7 +1128,7 @@ :104660000FFF01221300222801D863426341134047 :10467000180010BD10B5074C236831331B78002B90 :1046800004D1E62104484900FFF754FE2368186A64 -:1046900010BDC046E0AD02082C800D1030B50400FE +:1046900010BDC046E0AD0208AC800D1030B504007E :1046A00085B00D00042803D927492848FFF742FEAA :1046B0006B1E012B07D9FB222B1F134203D0244969 :1046C0002248FFF737FE234BA400E458042D01D005 @@ -1139,7 +1139,7 @@ :104710001B68181EF7D01C6903E01C006369002B9E :10472000FBD10020002CEED0A3682B4209D1E36816 :1047300029001A685B6802920193039302A8236818 -:1047400098472469EEE7C046E50900001B830D1079 +:1047400098472469EEE7C046E50900003B840D1058 :10475000E609000048A8020844A80208FF00420039 :10476000F8B50400012803D92A492B48FFF7E2FDD8 :10477000FFF786FE85B2FFF78CFE0700002080263B @@ -1152,7 +1152,7 @@ :1047E000022362421A40124BEFE70C4B1B68B433B2 :1047F0001B68EB181A68002AFCDBEB6800201B0E14 :10480000A02BE9D1D2E7222DE6D9FFF733FF05002F -:10481000D4E7C0467F0A00001B830D10E0AD0208FC +:10481000D4E7C0467F0A00003B840D10E0AD0208DB :1048200018F00000FFFFFFFE01000030040042000E :104830000100000CF7B50700012803D929492A48CF :10484000FFF778FDFFF725FE80235B0098421CD020 @@ -1165,28 +1165,28 @@ :1048B0001F21124A0C40AB588B431C43AC50002FB5 :1048C00006D1FFF765FE3E000198FDF726FAE1E705 :1048D0000720FFF725FDFFF723FE0020FFF740FF2D -:1048E0000600F1E7530800001B830D10000026406E +:1048E0000600F1E7530800003B840D10000026404D :1048F000307F000010180000410700001CFF00007E :104900000300420010B5041E03D111491148FFF7FE :1049100011FDF222104BD2011B68DB689A5822600D :10492000F022D2019A5862600C4A9A58A2600C4A4E :104930009A58E2600B4A9A5822610B4A9A5862616F :104940000A4A9A58A2610A4A9B58E36110BDC046C0 -:10495000D40A00001B830D10E0AD020804780000AB +:10495000D40A00003B840D10E0AD0208047800008A :10496000087800000C78000010780000147800002F :104970001878000010B5041E03D110491048FFF745 :10498000D9FCF0220F4B61681B68D201DB6899509B :10499000A1680D4A9950E1680C4A995021690C4A66 :1049A000995061690B4A9950A1690B4A9950E16984 :1049B0000A4A99502168E832995010BDFC0A00005B -:1049C0001B830D10E0AD0208047800000878000099 +:1049C0003B840D10E0AD0208047800000878000078 :1049D0000C780000107800001478000018780000AF :1049E000F7B50700012803D940494148FFF7A2FC69 :1049F000404D6B68002B4AD1FDF78BF96B68019035 :104A0000002B56D13C4E33681A0043321278002AEC :104A100007D09B68E0331B68DB0602D53748FFF7F9 :104A200071FFFFF736FD80235B00984246D13800C6 -:104A300003F01AF8002433681A0043321278002A6F +:104A300003F05AF8002433681A0043321278002A2F :104A400017D0002815D09B68E0331B68DB0610D513 :104A5000FFF716FD294B212808D032681300B03328 :104A6000198807234B43126A9B18DB681800FFF76D @@ -1198,7 +1198,7 @@ :104AC0003368B4331B68C0180368002B0BDB042366 :104AD0000D4A11690B431361012F02D030BF002032 :104AE000A8E720BFFBE70020054CA4E7AE020000CA -:104AF0001B830D1048A80208E0AD020824A8020894 +:104AF0003B840D1048A80208E0AD020824A8020873 :104B000005004200FF00420000ED00E0C0228020CE :104B1000064952008B58C0059B009B0803438B50ED :104B2000802388581B0603438B50704700002640A3 @@ -1207,8 +1207,8 @@ :104B50000C34F3E70D4B0E4CA34208DA19685A687F :104B60000020043A01DB8850FBE70833F4E70948EA :104B700009490860BFF34F8F00F0E4F800F09CFA99 -:104B8000FEE700000C8B0D10248B0D10248B0D10F4 -:104B9000348B0D1000A0020808ED00E0FEE7FEE7F0 +:104B8000FEE700005C8C0D10748C0D10748C0D1001 +:104B9000848C0D1000A0020808ED00E0FEE7FEE79F :104BA00000B504207146084202D0EFF3098001E00D :104BB000EFF308800430FFF7EDFBFEE770470000DD :104BC000E02370B5504C9B00E2580F23D021072002 @@ -1217,20 +1217,20 @@ :104BF000D200E558A358A6581B0F360F0B400E42A3 :104C000004D0A258120F0A40012A01D1EA0701D4A8 :104C1000032B11D1B0233E4ADB00E558A158E658DA -:104C2000C904C90C02F026FBAD03AD0B6843F101CA -:104C3000C90F013102F01EFBE0239B00E3589B06E5 +:104C2000C904C90C02F064FBAD03AD0B6843F1018C +:104C3000C90F013102F05CFBE0239B00E3589B06A7 :104C40009B0FD840334B1860334B1C691969240AF9 -:104C5000090E013102F00EFB304BE1B21860013158 -:104C600002F008FB2E4B040018602E4B2E491860F2 -:104C70002E4BC01802F0FEFAFA212D4B8900187055 -:104C80002C4BE01802F0F6FA2B4B18602B4BC003AC +:104C5000090E013102F04CFB304BE1B2186001311A +:104C600002F046FB2E4B040018602E4B2E491860B4 +:104C70002E4BC01802F03CFBFA212D4B8900187016 +:104C80002C4BE01802F034FB2B4B18602B4BC0036D :104C9000186070BDC021890052581F210A40112A96 :104CA00001D0132A04D1802000029BE7244899E711 :104CB000FA20C00196E7012BBED1C823C0220321F0 :104CC000DB00D200E558A358A6581B0F360F0B4047 :104CD0000E4204D0A258120F0A40012A01D1EA075D :104CE00001D4032BA8D1C022D200A358A158A558A3 -:104CF0007F221F261340090A3140584302F0BAFAB6 +:104CF0007F221F261340090A3140584302F0F8FA78 :104D0000290C314096E7C0460000264000366E016F :104D10008405000020A102080000214024A102080F :104D20001CA102082CA1020840420F003F420F00C4 @@ -1242,7 +1242,7 @@ :104D8000FFF7C4FEC02201215200A3588B43A35059 :104D9000FFF714FFFFF714FFB0235B055A78002AD2 :104DA00002D05B78212B03D10022074BDA605A60D6 -:104DB00010BDC046747F0D10000026408405000021 +:104DB00010BDC046F47F0D100000264084050000A1 :104DC000010002008C050000E0002340024BD86F78 :104DD000032318407047C0460400214010B5FCF77B :104DE00098FF0749074ACB6F1A40074B1343CB671D @@ -1253,16 +1253,16 @@ :104E30009B0701D1FFF7D2FFB0230B4A9B00D6504E :104E4000E36F0A4A0A491A400A4B1343E3671023E7 :104E50000A681A42FCD02800FCF75FFF70BDC0460C -:104E600063830D100400214000002140FCFF00007E -:104E7000880021400300FA0510B562B600F0B0F9D1 +:104E600093840D100400214000002140FCFF00004D +:104E7000880021400300FA0510B562B600F0BCF9C5 :104E8000FFF744FEC0220120024952008B588343A1 :104E90008B5010BD0000264010B50020FDF71EFC11 :104EA00010BD0000802310B50C4C032023602300AC :104EB000210008336360FDF741FC0948FDF76CFAF7 :104EC000084B1B6851331B78002B02D00648FDF7B6 :104ED000DBFA20001830FCF7D3FF10BD00C0020839 -:104EE0003CC00208E0AD0208C0830D1010B50448B4 -:104EF000044A0021121A02F0C7FBFBF7F5FA10BDB5 +:104EE0003CC00208E0AD020800850D1010B5044872 +:104EF000044A0021121A02F005FCFBF7F5FA10BD76 :104F00000000020800A002080022E82313B5019265 :104F1000019C9B0523430193019B090419430191C3 :104F2000019B000218430123019001990B43019357 @@ -1273,1074 +1273,1095 @@ :104F7000019A1B069A42E6D00198E4E7000023401C :104F8000983A000010B5084B0024DB78013B012B58 :104F900007D801210800FFF7B7FF04006420FFF7DE -:104FA000A5F9200010BDC04664AF0208A02270B56C +:104FA000A5F9200010BDC0463CAF0208A02270B594 :104FB0000E4DD200AA580400032A01D0FFF7E2FFE9 :104FC0000B4B1B68002B06DA0A4B0B4ADA6472B6ED -:104FD00002F062FD62B6AC239B00EC50074B9C6074 +:104FD00002F0A2FD62B6AC239B00EC50074B9C6034 :104FE000236883F3088863689847FEE70000214040 :104FF00000012640000023402143341200ED00E070 :1050000070B50400FFF7BEFF144B1B68002B1DDAC0 :10501000134B144ADA6472B6B023134A134D9B0043 :105020001348EA50C36F134A13491A40134B1343F2 :10503000C36710230A681A42FCD00120FFF756F913 -:10504000B0239B00EC5002F027FD62B62000FFF772 +:10504000B0239B00EC5002F067FD62B62000FFF732 :10505000DFFE0020FFF7C4FCFBE7C046000126404E :10506000000023402143341200400016000021407C :1050700004002140FCFF0000880021400300FA05E5 :1050800010B500280ED1FFF77DFF074B1B68002BE2 :1050900003DA064B064ADA6472B60648FFF7B8FE32 -:1050A00002F0EAFC10BDC04600012640000023408B +:1050A00002F02AFD10BDC04600012640000023404A :1050B000214334120040001670B586B0FFF7F2FEAF -:1050C000FFF7DAFE80203D4A3D4B01A91A604000FF -:1050D0006A46FCF743FD041E31D13A4D03003A4ABB -:1050E00029000198FBF7BEFB041E28D1F021EA68D5 -:1050F000364B090652189A602A69DA606A695218B2 -:10510000DA61AA691A62FBF7BBF9041E17D1022300 -:10511000EB56002B13D02E4A013B9B002D4D9B5884 -:105120002B6000F0C9FB2C4A060029682B4800F0D0 -:105130001BFC002E0ED101212848FEF745F86042E5 -:10514000604103ACFFF79CFF200001F02BFC00281E -:1051500002D0FEE73400F2E702A9207900F091FCCA -:1051600043425841FFF78CFF029BA468E418039B5D -:105170001B89E418FFF7BAFE43425841FFF780FF4E -:10518000104B1878042818D802F06AF803030707B0 -:105190000F002000FFF70AFFFEE702210020FDF7C5 -:1051A0005BFB2000FFF702FFF6E706210E20FDF76C -:1051B00053FB2000FFF724FFEEE7FEE70C840D1001 -:1051C000E4AD020810AE020864AF020840A1020874 -:1051D00038A102085CA80208E8AD020800004240BD -:1051E00010B500F009F800F035F800F043F800F0D1 -:1051F00005F900F02DF810BD80218022124BC90066 -:105200001B68D205986810B542501A007432128893 -:105210000E4C121810680440D42080012043106006 -:105220001C001A0072347032247812789868733334 -:10523000A2401C780323A340134380221206134389 -:105240004350435810BDC046E0AD0208FF00FFFFC9 -:1052500070470000054B1B681A003F321278052A80 -:1052600003D900219A68024BD1507047E0AD020883 -:10527000140C000010B51D4C1D4A00212000FCF745 -:10528000D9FE20001B4C1C4A0121FCF7D3FE1B4A0F -:1052900002212000FCF7CEFE194A03212000FCF772 -:1052A000C9FE184A04212000FCF7C4FE164A052155 -:1052B0002000FCF7BFFE154A06212000FCF7BAFECD -:1052C0002000134C134A0721FCF7B4FE124A0421B4 -:1052D0002000FCF7AFFE114A06212000FCF7AAFED1 -:1052E0000F4A07212000FCF7A5FE10BD0000324048 -:1052F00060850D108005324094850D102C850D10B1 -:10530000C4840D1090840D105C840D1028840D1041 -:1053100000033240F8840D10C8850D10FC850D1077 -:1053200030860D1010B50A4B1B683E331B78834244 -:105330000BD9E0220F24074B8000C018920083583D -:10534000A34319438150002010BD0348FCE7C04629 -:10535000E0AD02080000264001004A0010B50A4BEB -:105360001B683E331B7883420CD9E0223024074B64 -:105370008000C018920083580901A343194381504B -:10538000002010BD0248FCE7E0AD02080000264006 -:1053900001004A00054B06491B681A000832D26F0B -:1053A0001B689B181A680A401A607047E0AD020833 -:1053B000FF00FFFF074B1B68190008311A68CB6F0D -:1053C0008021D218136849041B021B0A0B43136087 -:1053D0007047C046E0AD0208054B06491B681A003D -:1053E000883212681B689B181A680A401A60704756 -:1053F000E0AD0208FF00FFFFFEE70000F8B59621D0 -:105400000020FEF7DFFFFEF7B5FF002801D1FEF711 -:105410009FFF0120FFF70EFA644B65495A6C0A4062 -:10542000E82189010A435A645A6C120AD2B23A2A14 -:1054300004D15A6C5F4802401143596400210800AE -:10544000FFF78CFFFFF7C8FFFFF7B4FFFFF7A2FFDE -:10545000594D5A4C2B685A4F3D331B78002B0ED0B8 -:10546000C0268023F600A2599B053A401343A3515E -:105470000120FEF755FFA3595B005B08A3510021F3 -:105480000120FEF711FD2B683E331B78002B03D162 -:105490004C494D48FEF74EFFE0239B00E6580F2392 -:1054A0001E400AD13000FEF727FD1223FF33984239 -:1054B00003D101213000FFF735FFB122D200A358FC -:1054C00000213B408027BF051F43A750083AA3583F -:1054D00008005B005B08A3503C4AA3585B005B08D4 -:1054E000A350FEF7E1FC00210800FFF71BFFFFF7C8 -:1054F00073FFFFF75FFFFFF74DFF00210120FEF76D -:10550000D3FC01210020FFF70DFF00210800FEF76A -:10551000CBFC00210220FEF7C7FC00210320FEF790 -:10552000C3FC00210420FEF7BFFC2948FEF70AFD5A -:10553000002802D00420FFF75FFF2648FEF7B6FDE3 -:10554000002802D00420FFF757FF00210800FFF7D2 -:10555000E9FE00210800FFF701FF00210120FEF70E -:10556000A3FC00210220FFF7DDFE01210220FFF74E -:10557000F5FE2B683E331B78022B06D9E2228023EE -:105580009200A1581B060B43A3508022124B120617 -:10559000E15800200A430121E250E2580A43E25058 -:1055A0006331FEF70FFFFFF70BFBF8BD000027404C -:1055B000FF00FFFFFFC5FFDFE0AD0208000026404F -:1055C000FFFFFFCF6E06000064860D108C05000003 -:1055D000B0860D10400D03000C05000043780278E2 -:1055E0001B021A438378C0781B0413430006184338 -:1055F00070470000F7B5A54BA54A9A58D10700D4CB -:105600007BE00F22A34FBB683D680093A24BDC6F89 -:105610000193009B1440073A141B9C4200D91C00C4 -:105620009E4E002C18D1009B3D60BB60002B0CD11E -:10563000F92201209549D2008B5883438B50B861E1 -:10564000FB69002B01D0FB699847F8230122DB009E -:105650008E49CA50CB58F7BD082C16D12800FFF749 -:10566000BDFF3060281DFFF7B9FF3060009B2D198A -:105670001B1B0093019BDC6F0F231C40073B1C1B73 -:10568000009B9C42CDD91C00CBE7012C03D12A788A -:10569000834B1A60EAE7022C06D12A786B781B024A -:1056A0001343804A1360E1E7032C07D16B782A7813 -:1056B0001B0213437B4A1360AA78E9E72800FFF72F -:1056C0008DFF042CD1D03060052C01D12A79DFE781 -:1056D000062C02D12A796B79E1E7072C07D16B7987 -:1056E0002A791B0213436F4A1360AA79D0E7281D59 -:1056F000FFF774FF08243060B8E7910700D4A4E0F6 -:105700000F22644D68496C69EB6808688C4602405A -:10571000A24200D922006549654E002A16D1EB60ED -:105720006C61002C0DD1F92202215848D200835817 -:105730008B4383500320A8612B6A002B01D02B6A76 -:105740009847F8236C61DB00022281E7082A19D10F -:105750000868070A18705F70070C000E9F70D870F9 -:105760000868070A18715F71070C000E9F71D871E5 -:105770009B18A41A62460F2012680240A242CCD99C -:105780002200CAE7012A03D14A4800681870EFE7EF -:10579000022A04D130681870000A5870E8E7032A1A -:1057A00007D130681870000A587042480068987035 -:1057B000DEE7042A08D10868070A18705F70070C32 -:1057C000000E9F70D870D3E7052A0BD10868070A2E -:1057D00018705F70070C000ED87036489F70006814 -:1057E0001871C5E7062A0CD10868070A18705F709F -:1057F000070C000E9F70D87030681871000A58713D -:10580000B6E7072A0FD10868070A18705F70070CFF -:10581000000E9F70D87030681871000A58712548C2 -:1058200000689871A4E70A68100A1A705870100C82 -:10583000120E9870DA700A68100A1A715871100CFA -:10584000120EDA719871082292E704210A4207D0F9 -:105850000520104A9061F822D20099509B58FAE630 -:1058600008210A4202D00B4A0620F3E71020024228 -:1058700006D00721074A9161F822D2009850EDE73F -:105880002020024200D1E6E6024AF4E7000042404E -:10589000CC070000E8AD02080800424098004240F2 -:1058A0009000424094004240C4004240D800424030 -:1058B000D4004240D000424037B568460200154B44 -:1058C00012CB12C262B61449FEF7BCFCFA22134D89 -:1058D00092002B0012491348FDF728FC041E13D137 -:1058E000020001210F48FDF785FC29000D48FDF756 -:1058F000ABFE2A000C490B48FEF7A6F9041E03D1A3 -:1059000001000848FDF760FC8022084B20001A6067 -:105910003EBDC04654890D10F5550D10E8AD020886 -:1059200018840D100000424044890D1000E100E091 -:105930000C4B1B689B691B68032B08D10023CB70A1 -:1059400083B21B0A88704B70000C08707047042BE0 -:10595000FCD183B2C8701B0A000C48708B70000A1F -:10596000F3E7C0465CA80208F0B50F2787B002AB8A -:10597000FF18002316003B708B690500DA6BDB6AA9 -:1059800003921B683A00DBB200960C00FDF786FE1E -:10599000002813D16B463A781B7B1A409A420DD0EF -:1059A000320021002800FDF7D3FE002806D1320086 -:1059B00021002800FDF790FE0028F8D107B0F0BDC7 -:1059C000F0B589B004000E00049217221A4D059319 -:1059D000296802A88B6912189F6ADB6A20001B687D -:1059E0000096DBB2FDF75AFE002823D13200296869 -:1059F0002000FDF737FE00281CD1059B0190009385 -:105A00000296049B0E9A29682000FDF715FF0028D6 -:105A100010D1320029682000FDF75EFE0028F8D181 -:105A200017223B6802A900965218DBB229682000B1 -:105A3000FDF734FE09B0F0BD5CA8020870B54B68F4 -:105A4000056801229D4216D38A689B1800229D4258 -:105A500011D20C694B699C420FD20C236343CE6870 -:105A60000134F3180E685A701E705A8042685D60E7 -:105A70009A6001220C61100070BD0C235B428B61A7 -:105A8000F9E76F2804D1802300205B050B60704785 -:105A900016204042FBE7000010B50F4B02001879BA -:105AA000904215D0187E904214D018002C30047803 -:105AB0000120404294420AD1033014224243101D77 -:105AC0001818086000209B181A6901321A6110BD6D -:105AD0000020F2E70120F0E740A10208002809D0E9 -:105AE0000438054B02689A4204D10369002B01D0A7 -:105AF000013B03617047C046EFBE0DD070B5150085 -:105B00001E00446805480C190121FDF75DFB3200B9 -:105B10002900200000F00AF970BDC0460000424094 -:105B2000F0B51500F022144F87B003933B6844682A -:105B3000DB6812060C199B18A34216D800210F48E7 -:105B4000FDF742FB3B6805AED8688023201A5B0551 -:105B5000C0183100FFF7ECFE0096039B2A000849AD -:105B60000648FFF72DFF07B0F0BD039A290020007B -:105B700000F072F9F7E7C0465CA802080000424056 -:105B8000E8AD0208F0B51500F022254F44683B68E7 -:105B90001206DB680C199B18C5B0A3423AD8002145 -:105BA0002048FDF711FB80220021520004A801F0DB -:105BB0006BFD3B680020D9688023641A5B052E0AC0 -:105BC000E418002E14D0002801D045B0F0BD03AF7A -:105BD00020003900FFF7ACFE802300975B0004AA89 -:105BE000114910480134FFF7EBFEFF34013EE8E7AE -:105BF000EDB2002DE9D00028E7D103AE310020003E -:105C0000FFF796FE00962B0004AA07490548FFF708 -:105C1000D7FEDAE72900200000F028F9D5E7C046D2 -:105C20005CA8020800004240E8AD020810B5007808 -:105C300000F08CF910BD013070470000431E022BAC -:105C400015D8022808D003280BD00A4B98680860A2 -:105C5000DB68002013607047064BD86908601B6A38 -:105C6000F7E7F0231B030B6080235B01F1E70120C2 -:105C70004042F0E740A1020830B589B00C001500A1 -:105C800002A903AA0190FFF7D9FF002811D12368C8 -:105C900005900693084B079001AA186807490495D8 -:105CA00000F00EF80798002801D1059B236009B089 -:105CB00030BD01204042FAE7E4AD02083D5A0D1024 -:105CC000F0B50024260043688BB002911B6906A939 -:105CD00005A8039298470194069BB34201D80BB0E4 -:105CE000F0BD059BF700DF197B68019D0893019BC0 -:105CF0003A68EB1A9A4202D801360195ECE707940C -:105D00000995039907A8029B98470028E7D0089BAC -:105D10000135E418EBE70000024B036001230B6040 -:105D20007047C0465C890D10002070470B00802131 -:105D300010B549054118180001F09DFC002010BD68 -:105D4000F0B5264CF023A5440024039020001B0648 -:105D5000CB1801935B0A5B0204AF0292FD1A029A10 -:105D6000A24201D900280CD01D4B984234D01D4BC3 -:105D7000984231D0431E9841400085239B009D44AA -:105D8000F0BD8022010092009E18019A9A421DD80F -:105D9000029AA2421AD9039A125DEA54002906D146 -:105DA0008021490559180978511A4A1E9141013438 -:105DB0000133B342E9D1002904D00B4B3900F0186C -:105DC000FCF7BEF8094BED183300C8E780225205F6 -:105DD0009A181278EA54EBE70120CEE7ECFDFFFFBA -:105DE000020052000600520000FEFF0F00FEFFFFFF -:105DF00000207047F8B5124C0023A1421CD91E00A8 -:105E0000104C8D18AC425E410F4CA14215D91F00B9 -:105E10000E4CAC425F413C000D4FB94202D90D4FD0 -:105E2000AF425B41344323430124002B02D0FFF7F0 -:105E300087FF04002000F8BD1E0000242300F1E7C6 -:105E4000FFFFFF0F00001010FFFFFF130080001482 -:105E5000FF070016000A00160B00802110B5490547 -:105E600041181800FFF7C6FF10BD00008023F0B5F1 -:105E70005B05C0184518334CEB05A544C605DB0D82 -:105E8000F60D01936B0A039333005A1E9341400AA7 -:105E9000C0186B0A1B1A009343021F0000240293D0 -:105EA000009B002B3ED1002E1AD0274A029B94461D -:105EB00063441C001900320004A801F0DCFB200040 -:105EC000FCF700F843425841FFF7DAF821003200AE -:105ED00004A8FFF78FFF040060426041FFF7D0F88D -:105EE000019B002B19D08024A400E41A2200290071 -:105EF00004A801F0C0FB039B5802FBF7E3FF4342F9 -:105F00005841FFF7BDF82200290004A8FFF772FFEF -:105F1000040060426041FFF7B3F8200085239B0036 -:105F20009D44F0BD3800FBF7CDFF040060426041A6 -:105F3000FFF7A6F880239B00FF18009B013B00930E -:105F4000AEE7C046ECFDFFFF00FEFFFF04207047F8 -:105F500010B510220949040001F07EFB012300283E -:105F600008D0230010332268013205D104349C424A -:105F7000F9D10323180010BD0223FBE77C890D1023 -:105F800030B5040091B001200D00FFF779F8A16849 -:105F9000102310396A462000FFF7B0FD002802D018 -:105FA000012011B030BD6846FFF7D2FF287023787A -:105FB000032B0CD10120FFF763F8A1680123AA1C71 -:105FC00018392000FFF79AFD431E9841E9E70120A8 -:105FD000FFF756F80120FFF753F8A1686A1C203933 -:105FE00001232000FFF78AFD0028E3D0D8E737B56A -:105FF0000D00C0B201A9FFF74FFD0124002807D111 -:1060000029000198FFF7BCFF04000198FFF766FD27 -:1060100020003EBDF7B501206946FFF7E8FF0028E4 -:1060200038D101AC21000230FFF7E1FF002831D167 -:106030002078A678184C6B46220019789D785F78F6 -:1060400012322378002B01D08B421ED16378002BB3 -:1060500001D0834219D1A378002B01D0AB4214D1D7 -:10606000E378002B01D0B3420FD12379002B0AD162 -:10607000022200206379023BDBB29A424041FEF7E4 -:10608000FFFF6079FEBDBB42F2D006349442D8D106 -:106090000120F7E7FF20F5E78C890D10F0B597B0E8 -:1060A0001CAB1B780390049313781400302B16D18B -:1060B0009378022B13D106AD40220021280001F075 -:1060C000E3FAE278A1184B79901D0979C018029083 -:1060D000022904D1D1186078043188422AD01020D6 -:1060E00017B0F0BD059A0F1A5618B446A444664678 -:1060F00036790822B44604AEB61862462037F25507 -:1061000001318842EED100220299C91A64189A42DC -:106110000AD16B46188A402300950193039A203BCD -:106120000A49FAF715FADBE7D11AA05C4031685446 -:106130000132ECE7202B00DD20231000202A00DDB7 -:106140002020121A00210592DBE7C0460900061044 -:10615000002803D1044B1B7F18007047002301283F -:10616000FAD1014BDB7FF7E710AE0208F0B5F7B0CC -:106170000500029111A8594917000493FAF770FA23 -:1061800000284CD17C9B002B3FD100242B89EA684E -:106190009B180393039BA34214D9039B049E1B1BD0 -:1061A0009E4200D91E0033003A0021000298FFF7FA -:1061B000A5FC002833D13200390011A8FAF75EFAA5 -:1061C00000282ED008AB202209A911A8FAF766FAF8 -:1061D000002824D17E9B002B04D0202209A918007E -:1061E00001F049FAEB682C8907ADE4182A00042372 -:1061F00021000298FFF782FC002810D1384B2A8832 -:106200009A4210D00120404209E07D9B002BBCDD6A -:106210001A007C9911A8FAF731FA0028B5D077B0A6 -:10622000F0BDA419B6E76B8801251B19059304344A -:10623000039004906D42059B9C4205D3049B002B68 -:10624000E0D003980138EAE708AF04233A002100C0 -:106250000298FFF753FC0028E1D13B787E88102B91 -:1062600017D1202ECED1211D330011AA0298FFF79D -:1062700045FC0028D3D1320011A909A801F0ECF99E -:106280000028BFD10123049308AB5B880433E418D2 -:10629000D1E7012B04D17F98FFF75AFF0500F3E700 -:1062A000222BF1D13300483BB82BABD8211D330052 -:1062B00011AA0298FFF722FC0028A3D1EDB27B8837 -:1062C00011AA0095202109A80125FFF7E7FE6D42DC -:1062D0000028D9D101230393D6E7C0460900000165 -:1062E00007690000F7B50700002401262000FFF72A -:1062F000A2FC01A9C0B2FFF7CFFB3500011E0AD1F5 -:106300002C2363430B4A0198D2182023FFF7F6FB96 -:106310000500681E85410198FFF7E0FB002D04D0C1 -:10632000012C00D13D002800FEBD012CFBD0340023 -:10633000DCE7C04660A8020873B50C00C0B201A932 -:106340001500FFF7A9FB0126002807D12A0021002C -:106350000198FFF717FC0600701E86410198FFF7B1 -:10636000BDFB300076BD0000F0B52C2444432F4B1C -:1063700087B01C1923680500013301D1012049E0D1 -:106380002369DB06FAD4FFF756FC04A9C0B2FFF775 -:1063900083FB03000120002B3DD1E368268905AF74 -:1063A000F6183A00042331000498FFF7A7FB0028F1 -:1063B000E4D11F4B3A889A4201D1788880192C2366 -:1063C0006B431A4AD3181B6A9B688342D6D3194B76 -:1063D000A27A1B789A42D1D12000F9F7D3FE002887 -:1063E000CCD1154B22689A4217D18023029001909C -:1063F000009003955B00114A04992000FFF7B6FE58 -:1064000000280AD10498FFF769FB2000F9F7DEFEA7 -:10641000431E9841404207B0F0BD002DAED0049815 -:1064200000218268FFF7AEFBA8E7C04660A802081B -:106430000769000010AE02083DB8F396D0AC020820 -:106440000023F0B5B04CB14AB14DA5440120136012 -:106450002B60FFF789FFAF4B040001201F79FFF786 -:1064600077FE002C47D1AC4BC2B2DB6C39005E68C2 -:1064700080235B05F3180293A84BF618300013AB8A -:10648000FBF7A4FB041E36D105A8FAF72BF98021EF -:10649000A34A890005A8FAF733F905A90B20FAF7F2 -:1064A0003FF9041E27D1102313AA9E490B20FAF7A7 -:1064B00007F90123041E2B601DD1994A0B211BA84B -:1064C000FAF75AF8041E16D1102217A91BA8FAF7DA -:1064D00075F8041E0FD1202204AB2DAD019300925C -:1064E0002B0031001BA8FAF779F8049B0400202B3D -:1064F00010D001246442864B1B68002B05D00B2072 -:10650000FAF782F8002800D004002000D3239B0073 -:106510009D44F0BD0028EED1020004AB29001BA869 -:10652000FAF73AF8041EE6D107AE33002A0013CA80 -:1065300013C37D4F126831A91A603800102201F090 -:106540009AF805A90C20FAF7EBF8041ED3D1102312 -:10655000320074490C20FAF7B3F801226B4B041E89 -:106560001A60C8D171496DA8FAF77AF8041EC2D131 -:10657000029B029A1B890C21D3181BA8684A03931B -:10658000F9F7FAFF041EB6D1102239001BA8FAF75A -:1065900015F8041EAFD1802604AB76000193009657 -:1065A0002B00320003991BA8FAF718F8049B04008B -:1065B000B3429ED100289ED12D9B2E89AA7A309F6E -:1065C0003199581C00D194E7C90600D591E752498A -:1065D000C96C8968B94200D28BE755498B4200D01B -:1065E00087E74C4B1B78934200D082E7802229003A -:1065F00052006DA8FAF742F8041E00D07BE7F619A6 -:10660000330AF6B2771EBE4101279B190293039B02 -:106610003E029E19029BBB4222D9002C00D06AE7A1 -:1066200004AB019380232DAA5B000093130080220A -:10663000310052001BA8F9F7D1FF8023049A04000F -:106640005B009A4209D1002805D11A002DA96DA836 -:10665000FAF714F804000137D9E701246442FAE795 -:10666000002C00D047E704AF3B0020220BA96DA807 -:10667000FAF714F8041E00D03DE78022520001977B -:1066800000922B0031001BA8F9F7A8FF041E00D0D0 -:1066900031E702003B0029001BA8F9F77DFF2D9B85 -:1066A000244A9BB20400934200D022E7002800D085 -:1066B00021E72E9AD3B2102B00D01AE7120C202A11 -:1066C00000D016E72FA90BA800F0C6FF041E00D0CB -:1066D00011E7379BDBB2012B00D00AE70120FFF75F -:1066E00037FD409BDAB2222A00D002E71B0C482B70 -:1066F00000D0FEE6C0B2009041AA20210BA8FFF70F -:10670000CDFC0400F7E6C046B4FCFFFFFCAF020876 -:10671000F8AF020810AE020860A8020820000010BE -:106720000001600401000040C0AC02080900000143 -:106730003DB8F396076900000023F0B51D4C070033 -:10674000A5446946022000930193FFF7A5F90028AC -:106750000ED001260098002801D0FFF7BFF901985C -:10676000002801D0FFF7BAF93000134B9D44F0BD6B -:1067700001A90120FFF790F90600041EE9D1009855 -:10678000A742E7D980233D1BDB009D4200D91D00B5 -:106790002B0002AA2100FFF7B1F90028D9D12B0064 -:1067A00002AA21000198FFF7BBF90028D1D1641992 -:1067B000E5E7C046F4FBFFFF0C040000F0B5002441 -:1067C0002500584F9BB0BB6A0293029BAB4263D13A -:1067D000554BDB78002B00D19FE0002305A9022058 -:1067E00005930693FFF758F9002821D106A9013037 -:1067F000FFF752F900281BD14C4A0C2108A8F9F7E1 -:10680000BBFE002814D11022494908A8F9F7D6FE8A -:10681000041E0DD10600BB6B0133FF330293059BB1 -:106820005B680393029BB34200D86CE0002C44D019 -:106830000598002801D0FFF751F90698002801D0EB -:10684000FFF74CF93B4B1B68002B02D00C20F9F7EB -:10685000DBFE10220021364800F016FF3B6D0021C0 -:106860009A680220FFF768FD43425841FEF708FC92 -:106870000C237A6D396D013A5343CB185A68496835 -:106880000220511A9A68FFF757FD43425841FEF71C -:10689000F7FB00201BB0F0BD0C236B437A6A21008C -:1068A000D3189E6801203200FFF746FD434258414D -:1068B000FEF7E6FBA419013587E7029B9D1B8023A9 -:1068C000DB009D4200D91D00039B009599191A4BCE -:1068D0002A00C91807AB019308A8184BF9F77EFEE8 -:1068E000079B0400AB420BD100289BD12B00134A1D -:1068F00031000698FFF714F9002899D1761991E72D -:10690000012464428EE7002C00D091E707AB2200FF -:106910000A4908A8F9F740FE8AE72000FFF70CFFB4 -:106920009CE7C04660A8020810AE0208000160049F -:10693000C0AC0208FCAF020800040010C0A80208A6 -:1069400073B5164E164CF368626A5B0A01A9012002 -:106950000193FFF791F9012500281AD1019B226DBF -:10696000A362F36801A95B0A02300193FFF784F97F -:10697000051E10D1019B206A6365FFF757F90600D9 -:10698000A06DFFF753F9331C864200D2031C5C3420 -:106990002370280076BD0125FBE7C04640A1020810 -:1069A00060A80208F0B50C265A4F89B0FB68009029 -:1069B0005C0A7443200000F029FE0190200000F0E2 -:1069C00025FE019B544C0290636220650020FFF776 -:1069D00032F92100C0B22031FFF75EF8434258413E -:1069E000FEF74EFB0120FFF726F92100C0B24C3123 -:1069F000FFF752F843425841FEF742FB21000320C3 -:106A00005831FFF749F843425841FEF739FBFFF789 -:106A100097FF051E6BD1FFF765FC051E67D1FB686C -:106A2000A06A5B0A98424FD8626D9A424CD8904255 -:106A30004AD108234643626A216D08369E4226D118 -:106A4000364E7378002B3FD00C22002105A800F0B1 -:106A50001BFE0120FEF714FBFFF7DCFA831E050086 -:106A6000022B07D8F378002B19D0FFF7E9FC002898 -:106A70001BD005250120FEF703FB012D24D0002D9E -:106A800001DD052D1BDD0020FEF7FAFAFEE71800F8 -:106A9000D558CB580C309D4216D10300CEE70120CB -:106AA000FFF762FCE3E7032521E00120FEF7E8FAA7 -:106AB000FFF784FE43425841FEF7E2FADAE700208E -:106AC000FFF710FC051E12D10020FFF74DFC05005A -:106AD00068426841FEF7D4FA002DE4D1236A009998 -:106AE0005A780A715B680C600393039A8A60019874 -:106AF00000F096FD029800F093FDA06DFEF7EEFF0A -:106B0000E06CFEF7EBFF206AFEF7E8FF280009B013 -:106B1000F0BDC04640A1020860A8020810AE0208FD -:106B200010B5017804000A00303AD3B2092B1FD8FF -:106B300011000A0161780B00303BD8B2092824D833 -:106B40009918A27809011300303BD8B209282AD835 -:106B50005A18E378120118003038C1B28018092998 -:106B600005D91900413905292BD8373B981810BD94 -:106B70000B00413B052B01D83739DAE70B00613BAD -:106B80000020052BF3D85739D3E70B00413B052BE9 -:106B900002D837398918D4E70B00613B0020052B58 -:106BA000E5D85739F6E71300413B052B02D8373AB1 -:106BB0005218CEE71300613B0020052BD7D8573A77 -:106BC000F6E71900613900200529D0D8573BCDE7F9 -:106BD000F7B50B7807004E1C222B0FD00026554B23 -:106BE00019603000FEBD02331A780130222A08D025 -:106BF000002A06D05C2AF6D00133F5E733000020E6 -:106C0000F2E74D4B1B6898470190041E07D1019E87 -:106C1000E7E7721C5C2B13D0237001341600337825 -:106C2000222B01D0002BF4D1002323703378223B98 -:106C30005A425341F618019B3B610423FB60D0E7A5 -:106C400073786E2B17D007D8611C622B0CD0662B83 -:106C50000FD0237001340AE0742B0ED0752B0ED0A8 -:106C6000722BF6D10D23F4E7082323700C000132B8 -:106C7000D4E70C23F9E70A23EBE70923E9E7B01C83 -:106C8000FFF74EFF2D4B2E49C3180500721D8B4296 -:106C9000EDD90028EBD02B4BC3188B4227D8B37902 -:106CA0005C2BE4D1F379752BE1D130000830FFF78C -:106CB00037FF3200214B2249C3180B328B42D6D802 -:106CC000214BAD021D4080238005800D05435B02F2 -:106CD000ED181E4BE11C9D4223D803234C1E3F2080 -:106CE00080212840494201432170AD0910E07F28EE -:106CF00009D8012301341648611EC05C013B0543DD -:106D00000D70E418B3E7134B9842E2D80223023423 -:106D10003F20802128404942013C01432170AD09B8 -:106D2000E9E73F20802328405B420343E370AD093D -:106D30000423D3E7D0AD020880A102080024FFFF9E -:106D4000FF0300000028FFFF00FC0F00FFFF000012 -:106D50009E890D10FF070000002803D00378013B37 -:106D60001F2B00D970470130F6E70000064B10B525 -:106D70001B6828209847041E03D02822002100F019 -:106D800083FC200010BDC04680A10208F0B50500BC -:106D900087B00E1E01D1002413E004227549300093 -:106DA00000F054FD002803D10223EB60341D08E0FD -:106DB00005227149300000F049FD002804D1E86047 -:106DC000741D200007B0F0BD04226C49300000F0B3 -:106DD0003DFD002806D101230122EB600023AA61BA -:106DE000EB61E3E73378222B05D131002800FFF770 -:106DF000EFFE0400E5E71A00303AD2B22D2B01D0A5 -:106E0000092A1AD8340000E0013423781A00303AF5 -:106E1000092AF9D92D2BF7D0A71B3A003100684673 -:106E200000F029FC00236A466846D35500F0E4FBD5 -:106E30000323A861E961EB60C3E75B2B37D1563BC5 -:106E4000EB60701CFFF788FF037804005D2B01D115 -:106E50000134B6E7FFF78AFF061EA8609BD020002A -:106E6000FFF77AFF01003000FFF790FFFFF774FF94 -:106E70000400002C00D18EE723782C2B04D05D2B4E -:106E8000E6D03F4B1C6086E7FFF770FF051E00D180 -:106E900081E730604660601CFFF75EFF010028005C -:106EA000FFF774FFFFF758FF2E000400E1E77B2B8C -:106EB0005DD1753BEB60701CFFF74EFF037804005B -:106EC0007D2BC5D0FFF752FF061EA86000D162E7F8 -:106ED0002000FFF741FF01003000FFF779FEFFF7C8 -:106EE0003BFF002800D156E7002433693461336248 -:106EF00003783A2B02D0224B186062E70130FFF78B -:106F00002BFF01003000FFF741FFFFF725FF0400D2 -:106F1000002C00D13FE723782C2B02D07D2B97D07B -:106F2000AFE7FFF723FF051E00D134E7306046606E -:106F3000601CFFF711FF01002800FFF749FEFFF773 -:106F40000BFF002800D126E700242B692C612B625F -:106F500003783A2BCFD10130FFF7FEFE0100280065 -:106F6000FFF714FFFFF7F8FE2E000400D0E7044BF4 -:106F70001E6010E7A5890D10AA890D10B0890D10AB -:106F8000D0AD02080849094A002803D1084B0B601C -:106F9000084B07E00368002B00D1054B0B604368EA -:106FA000002BF5D01360704780A102087CA1020875 -:106FB0000D760D1021760D10F8B5802604007600B0 -:106FC000002C00D1F8BDE3682768334204D1A068E3 -:106FD000002801D0FFF7F0FFE3680B4D334204D1E6 -:106FE0002069002801D02B6898478022E36892002E -:106FF000134204D1206A002801D02B689847200052 -:107000002B6898473C00DBE77CA10208F7B5050038 -:107010000E000192FFF7AAFE0023134F04003B600D -:1070200098420CD02800FFF797FE01002000FFF7E0 -:10703000ADFE051E05D12000FFF7BEFF0024200095 -:10704000FEBD019B002B0AD0FFF786FE03780500EA -:10705000002B04D02000FFF7AFFF3D60EEE7002ECD -:10706000EDD03560EBE7C046D0AD0208002210B588 -:107070001100FFF7CBFF10BD0300093B0122042BD9 -:1070800002D920384242424110007047F0B5002535 -:10709000170006002C0089B003930E9B02901B0C76 -:1070A000DBB204930E9B00911B0ADBB205930E9B8F -:1070B000DBB20793731C069333780193002B08D03F -:1070C000009B002B22DB029A731C9B1A009A9A42A7 -:1070D0001CDA0E9BDBB2002B00D1B4E0019A9A427D -:1070E00000D0AEE0009B002B06DB029A731C9B1ABB -:1070F000009A934200DDA4E0B31C7678032D00D9FA -:10710000A1E0280000F0ACF88989637B0198FFF7C3 -:10711000B3FF002839D1079B019A9342D9D04F4E33 -:107120001100300000F072FB031E08D1049B019A8D -:1071300093420BD0059B93426FD133003F33032D15 -:1071400023D8280000F08CF80510233533003E3397 -:10715000F5E7002F06D0039A94425ED23F4A9B1A6D -:107160009B003B55012510E0621C002F0BD00399BA -:107170008A4252D239493C195B1A217818110143CD -:107180001B012170BB5414000225069E92E7621C6D -:10719000002F0BD003998A423FD230493C195B1A29 -:1071A0002178981001439B012170BB5414000325E2 -:1071B000EBE7002F08D0039A94422ED227493A19C0 -:1071C0005B1A11780B43137001340025DDE71D00B5 -:1071D000002E22D0009B002B22DB029B009AEB1A90 -:1071E0009A421DDA019BB34217D1009B002B04DDAC -:1071F000029B009AEB1A93420FDC2E786B1C029ACA -:107200009D1A002E04D0009B002B11DBAB420FDA3D -:10721000002F18D03B5D002B15D00124644219E0EB -:107220003000FFF729FF0028DCD02E780135CFE7AA -:107230003000FFF721FF0028EFD0029B5E5D013593 -:10724000DFE7002DE9D1039B9C42E6D2002F01D05D -:1072500000233B55200009B0F0BDC046B5890D1094 -:1072600002B4714649084900095C49008E4402BCD9 -:107270007047C046002243088B4274D303098B42F7 -:107280005FD3030A8B4244D3030B8B4228D3030CF6 -:107290008B420DD3FF22090212BA030C8B4202D398 -:1072A0001212090265D0030B8B4219D300E0090AC0 -:1072B000C30B8B4201D3CB03C01A5241830B8B42C9 -:1072C00001D38B03C01A5241430B8B4201D34B03B2 -:1072D000C01A5241030B8B4201D30B03C01A524117 -:1072E000C30A8B4201D3CB02C01A5241830A8B429C -:1072F00001D38B02C01A5241430A8B4201D34B0285 -:10730000C01A5241030A8B4201D30B02C01A5241E8 -:10731000CDD2C3098B4201D3CB01C01A524183099C -:107320008B4201D38B01C01A524143098B4201D3D6 -:107330004B01C01A524103098B4201D30B01C01A01 -:107340005241C3088B4201D3CB00C01A524183087B -:107350008B4201D38B00C01A524143088B4201D3A8 -:107360004B00C01A5241411A00D201465241104608 -:107370007047FFE701B5002000F006F802BDC046E7 -:107380000029F7D076E770477047C046002B11D12F -:10739000002A0FD1002900D1002802D00021C943C2 -:1073A000081C07B4024802A14018029003BDC04661 -:1073B000D9FFFFFF03B4684601B5029800F030F82A -:1073C000019B9E4602B00CBC7047C046F0B5CE464D -:1073D000474615042D0C2E0080B50704140C3F0CF5 -:1073E0009946030C7E435D43674363437F19340C26 -:1073F000E4199C46A54203D980235B029846C44405 -:107400004B4643435143250C36046544360C240453 -:10741000A4195B19591820000CBC90469946F0BD80 -:10742000F0B54F464646D646C0B5040082B00D00C2 -:10743000914698468B422FD82CD04146484600F0C2 -:10744000CFF829000600200000F0CAF8331A9C4645 -:10745000203B9A4600D576E04B46524693401F00AB -:107460004B46624693401E00AF4228D825D0534673 -:10747000A41BBD41002B00DA7BE000220023009218 -:1074800001930123524693400193012362469340A6 -:10749000009318E08242D0D9002200230092019389 -:1074A0000A9B002B01D01C605D600098019902B01E -:1074B0001CBC90469946A246F0BDA342D7D90022F3 -:1074C0000023009201936346002BE9D0FB07984606 -:1074D000414672080A437B0866460EE0AB4201D182 -:1074E000A2420CD8A41A9D41012024196D4100210B -:1074F000013E24184D41002E06D0AB42EED9013E8C -:1075000024196D41002EF8D10098019953460019B5 -:107510006941002B23DB2B005246D3402A006446EE -:10752000E2401C0053461500002B2DDB2600574679 -:10753000BE40330026006746BE403200801A9941A3 -:1075400000900191ACE7624620239B1A4A46DA403C -:107550006146130042468A4017001F4380E7624697 -:1075600020239B1A2A0066469A402300F3401343C7 -:10757000D4E76246202300219B1A00220091019249 -:107580000122DA40019280E72023624626009B1AFE -:10759000DE402F00B0466646B74046463B003343C8 -:1075A000C8E7C0461C2101231B04984201D3000CEC -:1075B00010391B0A984201D3000A08391B09984266 -:1075C00001D30009043902A2105C40187047C0467C -:1075D000040302020101010100000000000000009C -:1075E00010B5002903D1FFF7DDFF203002E0081CB1 -:1075F000FFF7D8FF10BDC04610B50A22002100F0E9 -:10760000F7F910BDEC3000687047000010B5034B6F -:107610000100186800F08AF810BDC04684A1020875 -:1076200010B5034B0100186800F036F810BDC046D5 -:1076300084A1020882B0002900D101A9101E06D041 -:10764000002B06D013780B601078431E984102B0CF -:10765000704702204042FAE730B50024A24201D12F -:10766000002005E0035D651C0C5DA34201D0181BE2 -:1076700030BD2C00F2E7002310B59A4200D110BDB6 -:10768000CC5CC4540133F8E703001218934200D1D4 -:10769000704719700133F9E770B50500002910D063 -:1076A0000C1F2368002B00DAE418280000F0C0F952 -:1076B0001D4A1368002B05D163601460280000F098 -:1076C000B8F970BDA34209D9216860188342F3D18B -:1076D00018685B6841182160EEE713005A68002AB9 -:1076E00001D0A242F9D919685818A0420BD12068DC -:1076F0000918581819608242E0D110685268411880 -:1077000019605A60DAE7A04202D90C232B60D5E752 -:1077100021686018824203D11068526841182160C4 -:1077200062605C60CAE7C046D4AD0208032370B54E -:10773000CD1C9D43083506000C2D1ED20C25A942F8 -:107740001DD8300000F074F9254A14682100002982 -:1077500019D1244C2368002B03D1300000F044F8E9 -:1077600020602900300000F03FF8431C2BD10C238F -:107770003000336000F05DF903E0002DDFDA0C2308 -:107780003360002070BD0B685B1B19D40B2B03D931 -:107790000B60CC18256003E04B688C420DD1136060 -:1077A000300000F046F9200007220B30231D9043E3 -:1077B000C31AE7D05A42E250E4E763600C00EFE7F7 -:1077C0000C004968C3E70323C41C9C43A042E1D0DA -:1077D000211A300000F008F8431CDBD1C7E7C0468F -:1077E000D4AD0208D8AD0208002370B5064C0500E0 -:1077F0000800236000F01EF9431C03D12368002B0E -:1078000000D02B6070BDC04604B00208C9B2037836 -:10781000002B04D08B4200D170470130F7E74B4278 -:10782000594149420840F7E702780B78002A03D013 -:10783000013001319A42F7D0D01A704703000A781C -:1078400001311A700133002AF9D17047002330B595 -:107850009A420AD0013AC45CCD5CAC4204D1934256 -:1078600002D00133002CF6D1631B180030BD30B5B7 -:107870000500002A00D130BD0C78013A6B1C2C7039 -:107880000131002C05D19A189A42F4D01C700133B2 -:10789000FAE71D00EDE70000F0B51F000E008DB007 -:1078A0000B900291039212983478FFF7ABFE0822F6 -:1078B00000194378751C134053D12D2C53D1747883 -:1078C000B51C01330193002F00D18AE0102F0AD19B -:1078D000302C08D120222B789343582B00D07AE00B -:1078E00010276C780235019B002B41D1013B04939A -:1078F0003E4B05933A00FB17049805990893FFF750 -:1079000045FD002309900E00002000210A9222006C -:10791000303A092A31D81400A7423DDD5A1C1DD047 -:10792000B14236D802D1099B984232D8099B834292 -:1079300006D18E4204D101230A9A5B42A2420DDB9A -:107940000B00020008993800FFF740FDE31706948A -:107950000793069B079CC018614101232C780135D1 -:10796000D5E72E009FE72B2CACD1B51C7478A9E786 -:107970000023049380231B06BBE72200413A192A07 -:1079800001D8373CC8E72200613A192A04D8573C8D -:10799000C2E701235B42E1E75A1C09D10B9A23336A -:1079A0001360039B04980599002B0ED10DB0F0BD18 -:1079B000019A002A04D006000F0000217042B9414C -:1079C000039A002AF2D0002B01D06B1E0293039B76 -:1079D000029A1A60EAE73024002F00D083E70827D4 -:1079E00081E7302C00D175E70A277CE7FFFFFF7F96 -:1079F00037B51300064A05001068046A002C00D150 -:107A0000044C0A0000942900FFF746FF03B030BD84 -:107A100084A10208E8A102080B1E04D0FF2A04D9A1 -:107A20008A2303608B3B180070470A700123FAE732 -:107A300070477047044A1368002B00D1034B181895 -:107A4000106018007047C046DCAD02080000020854 -:107A5000F8B5C046F8BC08BC9E467047F8B5C046AD -:107A6000F8BC08BC9E46704701B40248844601BC7D -:107A7000604700BF1DA5020801B40248844601BC4E -:107A8000604700BF01A7020801B40248844601BC58 -:107A9000604700BFEFA3020801B40248844601BC5E -:107AA000604700BF03A702080000000007000103B1 -:107AB00000000100030300003F00010300000F006D -:107AC000C0102040030300004000010300000F002D -:107AD00000112040030300003F00010300000F00DD -:107AE00040112040030300007F00010300000F004D -:107AF00080112040000300000F00010300000F0070 -:107B000040122040030300003F00010300000F006B -:107B100080122040000300000F00010300000F004E -:107B200000162040000300000F00010300000F00BA -:107B300040162040000300000F00010300000F006A -:107B400080162040000300000F00010300000F001A -:107B500000172040000300007F00010300000F0019 -:107B600040002040030300007F00010300000F00DD -:107B7000C0002040030300007F00010300000F004D -:107B800000012040030300007F00010300000F00FC -:107B900080012040005001400900000300000F0058 -:107BA000010300000F00000000410140130007071F -:107BB00000007F008022244001030100000007072D -:107BC0000000030000212440010301000100070719 -:107BD00000000300C0202440010301000200070749 -:107BE00000000F008020244001030100050005056E -:107BF00000017E0040202440010301000600030331 -:107C000000017E0000202440010301000CC0000799 -:107C100000000F0000222440010301000D000101BB -:107C20000001700040222440010301000E00030304 -:107C300000000100C0212440010301000FC007071C -:107C400000000F0080212440010301001000030305 -:107C50000000040040212440010301000CDF000764 -:107C600000000F00402224400103010070726F7673 -:107C70005F726571007265736F7572636573004240 -:107C80004F4F5400555047524144450073697A653F -:107C9000006C61756E6368006D6F6E6F746F6E69F6 -:107CA0006300656E637279707400656E63727970DB -:107CB000745F6B65795F6964006261636B75700006 -:107CC000626F6F745F61757468007570677261646C -:107CD000655F6175746800736D69665F69640072E1 -:107CE0006570726F6772616D007374617274007297 -:107CF0006570726F766973696F6E00626F6F745F23 -:107D00006C6F61646572006B6579735F616E645F4F -:107D1000706F6C6963696573006D307000706572B7 -:107D20006D697373696F6E00636F6E74726F6C0050 -:107D30006B6579006D340073797374656D007379C8 -:107D40007363616C6C006D6D696F00726D610064CE -:107D5000657374726F795F667573657300646573BC -:107D600074726F795F666C617368007072657365B9 -:107D70006E74006669726D77617265006365727416 -:107D800069666963617465006F70656E006469732C -:107D900061626C656400656E61626C656400616C53 -:107DA0006C6F77656400646562756700776F756EE8 -:107DB00064696E6700626F6F745F7570677261648B -:107DC000650074797065006172726179006974652B -:107DD0006D73006E756D62657200696E74656765BE -:107DE0007200626F6F6C65616E00737472696E67AA -:107DF000006D6178696D756D006D696E696D756D89 -:107E0000007065726970686572616C73006261739D -:107E1000655F61646472657373006D656D6F72692F -:107E2000657300776F726B666C6173680073666C64 -:107E3000617368007372616D00736F66747761724D -:107E400065006361706162696C69747900464C41D8 -:107E500053485F5043315F53504D00464C415348A7 -:107E60005F50433200464C4153485F504333004615 -:107E70004C4153485F50433400464C4153485F4D9A -:107E800041494E5F434F444500464C4153485F4D86 -:107E900041494E5F584F00464C4153485F4D414960 -:107EA0004E5F4441544100464C4153485F53555046 -:107EB00045525649534F525900464C4153485F571B -:107EC0004F524B5F53454355524500464C41534832 -:107ED0005F574F524B005352414D5F5043305F50FC -:107EE000524956005352414D5F5043305F50554206 -:107EF000005352414D5F53504D5F5052495600530D -:107F000052414D5F53504D5F505542005352414DC9 -:107F10005F5043315F50524956005352414D5F50BC -:107F200043325F50524956005352414D5F504333E4 -:107F30005F50524956005352414D5F5043345F5099 -:107F4000524956005352414D5F4D41494E005352E4 -:107F5000414D5F44415000534D49465F434F4445B6 -:107F600000534D49465F584F00534D49465F4441C9 -:107F70005441000000002140000025400000014065 -:107F80000000344000002440000031400000324036 -:107F900000001F41000023400000114001010101C9 -:107FA0000101010101101010800019005500F000BE -:107FB0000501053B04101C01010000000FC000007A -:107FC0000004000001010101011D3A5778960008E4 -:107FD0002000101208000000001F00000010000F19 -:107FE000002000023F06080E00080009000A000BEE -:107FF00024282C3034000000100000009000000005 -:1080000088000000080000008000000004F000006C -:1080100000F00000400200002005A000D001000197 -:108020008001A0012000000010000000433A5C55D0 -:10803000736572735C646D69765C446F63756D65BE -:108040006E74735C6379626F6F746C6F6164657278 -:108050005C70736F633670646C5C647269766572B1 -:10806000735C696E636C7564652F63795F697063B7 -:108070005F6472762E6800433A2F55736572732FD2 -:10808000646D69762F446F63756D656E74732F63CD -:1080900079626F6F746C6F616465722F70736F6358 -:1080A0003670646C2F647269766572732F736F75A6 -:1080B0007263652F63795F6770696F2E6300433A5F -:1080C0005C55736572735C646D69765C446F63754F -:1080D0006D656E74735C6379626F6F746C6F6164ED -:1080E00065725C70736F633670646C5C6472697621 -:1080F0006572735C696E636C7564652F63795F6725 -:1081000070696F2E6800433A2F55736572732F6440 -:108110006D69762F446F63756D656E74732F637927 -:10812000626F6F746C6F616465722F70736F63360A -:1081300070646C2F647269766572732F736F7572D9 -:1081400063652F63795F6970635F6472762E630085 -:10815000433A2F55736572732F646D69762F446FA0 -:1081600063756D656E74732F6379626F6F746C6F76 -:10817000616465722F70736F633670646C2F647204 -:1081800069766572732F736F757263652F63795F9C -:108190006970635F706970652E6300433A2F557391 -:1081A0006572732F646D69762F446F63756D656EAC -:1081B00074732F6379626F6F746C6F616465722F73 -:1081C00070736F633670646C2F6472697665727356 -:1081D0002F736F757263652F63795F70726F742E82 -:1081E0006300433A2F55736572732F646D69762F60 -:1081F000446F63756D656E74732F6379626F6F740E -:108200006C6F616465722F70736F633670646C2F6E -:10821000647269766572732F736F757263652F630D -:10822000795F736D69662E630000010010008000A5 -:10823000E80310000001A00F00FA433A2F557365C0 -:1082400072732F646D69762F446F63756D656E74FC -:10825000732F6379626F6F746C6F616465722F70D6 -:10826000736F633670646C2F647269766572732FF6 -:10827000736F757263652F63795F736D69665F6D88 -:10828000656D736C6F742E6300433A2F557365727E -:10829000732F646D69762F446F63756D656E7473AB -:1082A0002F6379626F6F746C6F616465722F707386 -:1082B0006F633670646C2F647269766572732F73A6 -:1082C0006F757263652F63795F737973636C6B2E5F -:1082D0006300433A2F55736572732F646D69762F6F -:1082E000446F63756D656E74732F6379626F6F741D +:1050C000FFF7DAFE8020424A424B01A91A604000F5 +:1050D0006A46FCF743FD041E34D13F4D03003F4AAE +:1050E00029000198FBF7BEFB041E2BD1AB78022BE5 +:1050F00000D9A870F022EB68394E12069B18B360F5 +:105100002B69F3606B699B18F361AB693362FBF742 +:10511000B7F9041E16D1AB78002B1ED0314A013BE3 +:105120009B00314D9B582B6000F0D2FB2F4A0600AC +:1051300029682F4800F024FC002E14D101212C48AE +:10514000FEF742F86042604103ACFFF799FF200090 +:1051500001F066FC002808D0FEE7264BF2699A426F +:10516000F0D96C70EEE73400ECE702A9207900F08A +:1051700094FC43425841FFF783FF029BA468E41864 +:10518000039B1B89E418FFF7B1FE43425841FFF728 +:1051900077FF114B1878042818D802F09FF8030302 +:1051A00007070F002000FFF701FFFEE702210020A4 +:1051B000FDF752FB2000FFF7F9FEF6E706210E206F +:1051C000FDF74AFB2000FFF71BFFEEE7FEE7C046B6 +:1051D0004C850D10E4AD0208E8AD02083CAF0208B2 +:1051E00040A1020838A102085CA80208CCAF02085E +:1051F00000004240FFFFFF0710B500F009F800F083 +:1052000035F800F043F800F005F900F02DF810BD76 +:1052100080218022124BC9001B68D205986810B506 +:1052200042501A00743212880E4C12181068044052 +:10523000D4208001204310601C001A0072347032A8 +:105240002478127898687333A2401C780323A34013 +:1052500013438022120613434350435810BDC046E7 +:10526000E0AD0208FF00FFFF70470000054B1B6820 +:105270001A003F321278052A03D900219A68024B9E +:10528000D1507047E0AD0208140C000010B51D4C61 +:105290001D4A00212000FCF7CDFE20001B4C1C4ABB +:1052A0000121FCF7C7FE1B4A02212000FCF7C2FEC9 +:1052B000194A03212000FCF7BDFE184A04212000F2 +:1052C000FCF7B8FE164A05212000FCF7B3FE154A8C +:1052D00006212000FCF7AEFE2000134C134A0721E4 +:1052E000FCF7A8FE124A04212000FCF7A3FE114A95 +:1052F00006212000FCF79EFE0F4A07212000FCF744 +:1053000099FE10BD00003240A0860D10800532408D +:10531000D4860D106C860D1004860D10D0850D10EE +:105320009C850D1068850D100003324038860D10E5 +:1053300008870D103C870D1070870D1010B50A4BB3 +:105340001B683E331B7883420BD9E0220F24074BA6 +:105350008000C01892008358A34319438150002055 +:1053600010BD0348FCE7C046E0AD0208000026403F +:1053700001004A0010B50A4B1B683E331B7883427C +:105380000CD9E0223024074B8000C01892008358CB +:105390000901A34319438150002010BD0248FCE7D6 +:1053A000E0AD02080000264001004A00054B064916 +:1053B0001B681A000832D26F1B689B181A680A40D3 +:1053C0001A607047E0AD0208FF00FFFF074B1B6843 +:1053D000190008311A68CB6F8021D218136849046C +:1053E0001B021B0A0B4313607047C046E0AD020866 +:1053F000054B06491B681A00883212681B689B1807 +:105400001A680A401A607047E0AD0208FF00FFFF0B +:10541000FEE70000F8B596210020FEF7D3FFFEF767 +:10542000A9FF002801D1FEF793FF0120FFF702FA40 +:10543000644B65495A6C0A40E82189010A435A6461 +:105440005A6C120AD2B23A2A04D15A6C5F4802400E +:105450001143596400210800FFF78CFFFFF7C8FFD4 +:10546000FFF7B4FFFFF7A2FF594D5A4C2B685A4F74 +:105470003D331B78002B0ED0C0268023F600A259A6 +:105480009B053A401343A3510120FEF749FFA3595E +:105490005B005B08A35100210120FEF705FD2B688E +:1054A0003E331B78002B03D14C494D48FEF742FF99 +:1054B000E0239B00E6580F231E400AD13000FEF780 +:1054C0001BFD1223FF33984203D101213000FFF767 +:1054D00035FFB122D200A35800213B408027BF05F1 +:1054E0001F43A750083AA35808005B005B08A3506D +:1054F0003C4AA3585B005B08A350FEF7D5FC002193 +:105500000800FFF71BFFFFF773FFFFF75FFFFFF7D1 +:105510004DFF00210120FEF7C7FC01210020FFF70D +:105520000DFF00210800FEF7BFFC00210220FEF75E +:10553000BBFC00210320FEF7B7FC00210420FEF78E +:10554000B3FC2948FEF7FEFC002802D00420FFF738 +:105550005FFF2648FEF7AAFD002802D00420FFF7CF +:1055600057FF00210800FFF7E9FE00210800FFF7C0 +:1055700001FF00210120FEF797FC00210220FFF728 +:10558000DDFE01210220FFF7F5FE2B683E331B787C +:10559000022B06D9E22280239200A1581B060B435E +:1055A000A3508022124B1206E15800200A43012129 +:1055B000E250E2580A43E2506331FEF703FFFFF77F +:1055C000FFFAF8BD00002740FF00FFFFFFC5FFDF27 +:1055D000E0AD020800002640FFFFFFCF6E0600008E +:1055E000A4870D108C05000000880D10400D0300ED +:1055F0000C050000437802781B021A438378C078B8 +:105600001B0413430006184370470000F7B5A54B71 +:10561000A54A9A58D10700D47BE00F22A34FBB685C +:105620003D680093A24BDC6F0193009B1440073A46 +:10563000141B9C4200D91C009E4E002C18D1009BCC +:105640003D60BB60002B0CD1F92201209549D200AE +:105650008B5883438B50B861FB69002B01D0FB69E9 +:105660009847F8230122DB008E49CA50CB58F7BD7A +:10567000082C16D12800FFF7BDFF3060281DFFF76A +:10568000B9FF3060009B2D191B1B0093019BDC6F41 +:105690000F231C40073B1C1B009B9C42CDD91C00C8 +:1056A000CBE7012C03D12A78834B1A60EAE7022C5E +:1056B00006D12A786B781B021343804A1360E1E716 +:1056C000032C07D16B782A781B0213437B4A1360A3 +:1056D000AA78E9E72800FFF78DFF042CD1D03060CD +:1056E000052C01D12A79DFE7062C02D12A796B79C2 +:1056F000E1E7072C07D16B792A791B0213436F4A24 +:105700001360AA79D0E7281DFFF774FF08243060E2 +:10571000B8E7910700D4A4E00F22644D68496C6992 +:10572000EB6808688C460240A24200D92200654915 +:10573000654E002A16D1EB606C61002C0DD1F92268 +:1057400002215848D20083588B4383500320A8611C +:105750002B6A002B01D02B6A9847F8236C61DB0081 +:10576000022281E7082A19D10868070A18705F70B9 +:10577000070C000E9F70D8700868070A18715F71D7 +:10578000070C000E9F71D8719B18A41A62460F2057 +:1057900012680240A242CCD92200CAE7012A03D1F2 +:1057A0004A4800681870EFE7022A04D13068187080 +:1057B000000A5870E8E7032A07D130681870000A19 +:1057C0005870424800689870DEE7042A08D10868DB +:1057D000070A18705F70070C000E9F70D870D3E72F +:1057E000052A0BD10868070A18705F70070C000EB5 +:1057F000D87036489F7000681871C5E7062A0CD12A +:105800000868070A18705F70070C000E9F70D87048 +:1058100030681871000A5871B6E7072A0FD1086876 +:10582000070A18705F70070C000E9F70D870306800 +:105830001871000A5871254800689871A4E70A6831 +:10584000100A1A705870100C120E9870DA700A68EC +:10585000100A1A715871100C120EDA719871082220 +:1058600092E704210A4207D00520104A9061F822ED +:10587000D20099509B58FAE608210A4202D00B4AFE +:105880000620F3E71020024206D00721074A916163 +:10589000F822D2009850EDE72020024200D1E6E63F +:1058A000024AF4E700004240CC070000CCAF0208F7 +:1058B000080042409800424090004240940042401C +:1058C000C4004240D8004240D4004240D000424090 +:1058D00037B568460200154B12CB12C262B61449A6 +:1058E000FEF7B0FCFA22134D92002B001249134828 +:1058F000FDF71CFC041E13D1020001210F48FDF727 +:1059000079FC29000D48FDF79FFE2A000C490B4841 +:10591000FEF79AF9041E03D101000848FDF754FC74 +:105920008022084B20001A603EBDC046A48A0D109C +:105930000D560D10CCAF020858850D1000004240E6 +:10594000948A0D1000E100E00C4B1B689B691B68FA +:10595000032B08D10023CB7083B21B0A88704B70D5 +:10596000000C08707047042BFCD183B2C8701B0A6E +:10597000000C48708B70000AF3E7C0465CA8020870 +:10598000F0B50F2787B002ABFF18002316003B705D +:105990008B690500DA6BDB6A03921B683A00DBB2A5 +:1059A00000960C00FDF77AFE002813D16B463A787A +:1059B0001B7B1A409A420DD0320021002800FDF7CF +:1059C000C7FE002806D1320021002800FDF784FE22 +:1059D0000028F8D107B0F0BDF0B589B004000E0082 +:1059E000049217221A4D0593296802A88B69121890 +:1059F0009F6ADB6A20001B680096DBB2FDF74EFE53 +:105A0000002823D1320029682000FDF72BFE002852 +:105A10001CD1059B019000930296049B0E9A296865 +:105A20002000FDF709FF002810D13200296820006E +:105A3000FDF752FE0028F8D117223B6802A9009614 +:105A40005218DBB229682000FDF728FE09B0F0BD2E +:105A50005CA8020870B54B68056801229D4216D308 +:105A60008A689B1800229D4211D20C694B699C42A6 +:105A70000FD20C236343CE680134F3180E685A70BA +:105A80001E705A8042685D609A6001220C611000AD +:105A900070BD0C235B428B61F9E76F2804D1802332 +:105AA00000205B050B60704716204042FBE70000BA +:105AB00010B50F4B02001879904215D0187E904215 +:105AC00014D018002C3004780120404294420AD1AE +:105AD000033014224243101D1818086000209B1840 +:105AE0001A6901321A6110BD0020F2E70120F0E7C7 +:105AF00040A10208002809D00438054B02689A42E8 +:105B000004D10369002B01D0013B03617047C046FB +:105B1000EFBE0DD070B544680C480C19012115007A +:105B20001E00FDF751FB80235B05E218084B9A42EB +:105B300003D9084B9B78002B05D0320029002000A8 +:105B400000F030F970BD01204042FBE70000424008 +:105B5000FFFFFF17E8AD0208F0B51500F0221A4F5D +:105B600087B003933B684468DB6812060C199B18E6 +:105B7000A34216D800211548FDF726FB3B6805AE69 +:105B8000D8688023201A5B05C0183100FFF7DCFEBF +:105B90000096039B2A000E490C48FFF71DFF07B033 +:105BA000F0BD80230B4A5B05E318934203D90A4BEF +:105BB0009B78002B05D0039A2900200000F088F97B +:105BC000EDE701204042EAE75CA8020800004240FD +:105BD000CCAF0208FFFFFF17E8AD0208F0B51500D3 +:105BE000F0222B4F44683B681206DB680C199B18A7 +:105BF000C5B0A3423AD800212648FDF7E5FA802235 +:105C00000021520004A801F07DFD3B680020D96806 +:105C10008023641A5B052E0AE418002E14D0002895 +:105C200001D045B0F0BD03AF20003900FFF78CFE76 +:105C3000802300975B0004AA174916480134FFF738 +:105C4000CBFEFF34013EE8E7EDB2002DE9D000289D +:105C5000E7D103AE31002000FFF776FE00962B005F +:105C600004AA0D490B48FFF7B7FEDAE780230B4A79 +:105C70005B05E318934203D9094B9B78002B04D0B2 +:105C80002900200000F02EF9CBE701204042C8E7B0 +:105C90005CA8020800004240CCAF0208FFFFFF17DB +:105CA000E8AD020810B5007800F08CF910BD0130A5 +:105CB00070470000431E022B15D8022808D0032885 +:105CC0000BD00A4B98680860DB68002013607047AF +:105CD000064BD86908601B6AF7E7F0231B030B60CB +:105CE00080235B01F1E701204042F0E740A1020878 +:105CF00030B589B00C00150002A903AA0190FFF786 +:105D0000D9FF002811D1236805900693084B07900E +:105D100001AA18680749049500F00EF807980028B2 +:105D200001D1059B236009B030BD01204042FAE754 +:105D3000E4AD0208555A0D10F0B500242600436862 +:105D40008BB002911B6906A905A80392984701949C +:105D5000069BB34201D80BB0F0BD059BF700DF19DD +:105D60007B68019D0893019B3A68EB1A9A4202D81E +:105D700001360195ECE707940995039907A8029B62 +:105D800098470028E7D0089B0135E418EBE70000AE +:105D9000024B036001230B607047C046AC8A0D10B4 +:105DA000002070470B00802110B5490541181800EC +:105DB00001F09FFC002010BDF0B5264CF023A54457 +:105DC0000024039020001B06CB1801935B0A5B02A2 +:105DD00004AF0292FD1A029AA24201D900280CD007 +:105DE0001D4B984234D01D4B984231D0431E9841F0 +:105DF000400085239B009D44F0BD8022010092005D +:105E00009E18019A9A421DD8029AA2421AD9039A60 +:105E1000125DEA54002906D18021490559180978F4 +:105E2000511A4A1E914101340133B342E9D100298C +:105E300004D00B4B3900F018FCF782F8094BED1831 +:105E40003300C8E7802252059A181278EA54EBE72B +:105E50000120CEE7ECFDFFFF0200520006005200D9 +:105E600000FEFF0F00FEFFFF00207047F8B5124C48 +:105E70000023A1421CD91E00104C8D18AC425E417B +:105E80000F4CA14215D91F000E4CAC425F413C00A3 +:105E90000D4FB94202D90D4FAF425B41344323430A +:105EA0000124002B02D0FFF787FF04002000F8BD7B +:105EB0001E0000242300F1E7FFFFFF0F0000101079 +:105EC000FFFFFF1300800014FF070016000A0016F2 +:105ED0000B00802110B5490541181800FFF7C6FFD7 +:105EE00010BD00008023F0B55B05C0184518334C89 +:105EF000EB05A544C605DB0DF60D01936B0A039374 +:105F000033005A1E9341400AC0186B0A1B1A0093B3 +:105F100043021F0000240293009B002B3ED1002E61 +:105F20001AD0274A029B944663441C001900320091 +:105F300004A801F0DEFB2000FBF7C4FF43425841F8 +:105F4000FFF79EF82100320004A8FFF78FFF04003E +:105F500060426041FFF794F8019B002B19D0802428 +:105F6000A400E41A2200290004A801F0C2FB039B4C +:105F70005802FBF7A7FF43425841FFF781F8220080 +:105F8000290004A8FFF772FF040060426041FFF798 +:105F900077F8200085239B009D44F0BD3800FBF777 +:105FA00091FF040060426041FFF76AF880239B0084 +:105FB000FF18009B013B0093AEE7C046ECFDFFFFDE +:105FC00000FEFFFF0420704710B5102209490400AD +:105FD00001F080FB0123002808D023001033226841 +:105FE000013205D104349C42F9D10323180010BDBD +:105FF0000223FBE7CC8A0D1030B5040091B00120DC +:106000000D00FFF73DF8A168102310396A46200003 +:10601000FFF780FD002802D0012011B030BD684696 +:10602000FFF7D2FF28702378032B0CD10120FFF754 +:1060300027F8A1680123AA1C18392000FFF76AFD80 +:10604000431E9841E9E70120FFF71AF80120FFF706 +:1060500017F8A1686A1C203901232000FFF75AFDB8 +:106060000028E3D0D8E737B50D00C0B201A9FFF78B +:106070001FFD0124002807D129000198FFF7BCFF6C +:1060800004000198FFF736FD20003EBDF7B5012062 +:106090006946FFF7E8FF002838D101AC2100023043 +:1060A000FFF7E1FF002831D12078A678184C6B4625 +:1060B000220019789D785F7812322378002B01D066 +:1060C0008B421ED16378002B01D0834219D1A37873 +:1060D000002B01D0AB4214D1E378002B01D0B342A6 +:1060E0000FD12379002B0AD1022200206379023BD1 +:1060F000DBB29A424041FEF7C3FF6079FEBDBB426E +:10610000F2D006349442D8D10120F7E7FF20F5E71A +:10611000DC8A0D10F0B597B01CAB1B78039004938C +:1061200013781400302B16D19378022B13D106ADBF +:1061300040220021280001F0E5FAE278A1184B790D +:10614000901D0979C0180290022904D1D1186078F5 +:10615000043188422AD0102017B0F0BD059A0F1ADA +:106160005618B446A444664636790822B44604AEAE +:10617000B61862462037F25501318842EED100222E +:106180000299C91A64189A420AD16B46188A4023A8 +:1061900000950193039A203B0A49FAF7D9F9DBE706 +:1061A000D11AA05C403168540132ECE7202B00DDAD +:1061B00020231000202A00DD2020121A0021059241 +:1061C000DBE7C04609000610002803D1044B1B7F03 +:1061D0001800704700230128FAD1014BDB7FF7E755 +:1061E000E8AD0208F0B5F7B00500029111A85949D1 +:1061F00017000493FAF734FA00284CD17C9B002B4B +:106200003FD100242B89EA689B180393039BA34288 +:1062100014D9039B049E1B1B9E4200D91E00330011 +:106220003A0021000298FFF775FC002833D13200B4 +:10623000390011A8FAF722FA00282ED008AB202244 +:1062400009A911A8FAF72AFA002824D17E9B002B6D +:1062500004D0202209A9180001F04BFAEB682C8920 +:1062600007ADE4182A00042321000298FFF752FC2E +:10627000002810D1384B2A889A4210D00120404281 +:1062800009E07D9B002BBCDD1A007C9911A8FAF770 +:10629000F5F90028B5D077B0F0BDA419B6E76B8842 +:1062A00001251B1905930434039004906D42059B4E +:1062B0009C4205D3049B002BE0D003980138EAE709 +:1062C00008AF04233A0021000298FFF723FC0028BE +:1062D000E1D13B787E88102B17D1202ECED1211D05 +:1062E000330011AA0298FFF715FC0028D3D1320021 +:1062F00011A909A801F0EEF90028BFD101230493E8 +:1063000008AB5B880433E418D1E7012B04D17F98F4 +:10631000FFF75AFF0500F3E7222BF1D13300483B8A +:10632000B82BABD8211D330011AA0298FFF7F2FB5E +:106330000028A3D1EDB27B8811AA0095202109A8DD +:106340000125FFF7E7FE6D420028D9D10123039311 +:10635000D6E7C0460900000107690000F7B507004D +:10636000002401262000FFF7A2FC01A9C0B2FFF71C +:106370009FFB3500011E0AD12C2363430B4A019871 +:10638000D2182023FFF7C6FB0500681E854101983F +:10639000FFF7B0FB002D04D0012C00D13D002800F8 +:1063A000FEBD012CFBD03400DCE7C04660A802082B +:1063B00073B50C00C0B201A91500FFF779FB0126E7 +:1063C000002807D12A0021000198FFF707FC0600EA +:1063D000701E86410198FFF78DFB300076BD0000EE +:1063E000F0B52C244443304B87B01C1923680500BA +:1063F0001A002E4B9A4201D001204AE02369DB06A5 +:10640000FAD4FFF754FC04A9C0B2FFF751FB030014 +:106410000120002B3ED1E368268905AFF6183A002B +:10642000042331000498FFF775FB0028E4D1204BCA +:106430003A889A4201D1788880192C236B431A4AF2 +:10644000D3181B6A9B688342D6D31A4BA27A1B7857 +:106450009A42D1D12000F9F795FE0028CCD12368CB +:106460001A00124B9A4217D180230290019000909B +:1064700003955B00104A04992000FFF7B3FE002843 +:106480000AD10498FFF736FB2000F9F79FFE431E60 +:106490009841404207B0F0BD002DADD004980021D6 +:1064A0008268FFF79BFBA7E760A802083DB8F39658 +:1064B00007690000E8AD0208D0AC02080023F0B57F +:1064C000B04CB14AB14DA544012013602B60FFF7D9 +:1064D00087FFAF4B040001201F79FFF775FE002CEA +:1064E00047D1AC4BC2B2DB6C39005E6880235B05E0 +:1064F000F3180293A84BF618300013ABFBF766FBBA +:10650000041E36D105A8FAF7EDF88021A34A8900C8 +:1065100005A8FAF7F5F805A90B20FAF701F9041E0A +:1065200027D1102313AA9E490B20FAF7C9F801239B +:10653000041E2B601DD1994A0B211BA8FAF71CF8E9 +:10654000041E16D1102217A91BA8FAF737F8041E4B +:106550000FD1202204AB2DAD019300922B0031000E +:106560001BA8FAF73BF8049B0400202B10D0012451 +:106570006442864B1B68002B05D00B20FAF744F8C9 +:10658000002800D004002000D3239B009D44F0BDD0 +:106590000028EED1020004AB29001BA8F9F7FCFF8C +:1065A000041EE6D107AE33002A0013CA13C37D4F81 +:1065B000126831A91A603800102201F09AF805A972 +:1065C0000C20FAF7ADF8041ED3D110233200744921 +:1065D0000C20FAF775F801226B4B041E1A60C8D123 +:1065E00071496DA8FAF73CF8041EC2D1029B029AC9 +:1065F0001B890C21D3181BA8684A0393F9F7BCFF29 +:10660000041EB6D1102239001BA8F9F7D7FF041ECB +:10661000AFD1802604AB7600019300962B003200A8 +:1066200003991BA8F9F7DAFF049B0400B3429ED13B +:1066300000289ED12D9B2E89AA7A309F3199581C13 +:1066400000D194E7C90600D591E75249C96C896821 +:10665000B94200D28BE755498B4200D087E74C4BBB +:106660001B78934200D082E78022290052006DA857 +:10667000FAF704F8041E00D07BE7F619330AF6B2E5 +:10668000771EBE4101279B190293039B3E029E1970 +:10669000029BBB4222D9002C00D06AE704AB0193D5 +:1066A00080232DAA5B00009313008022310052004A +:1066B0001BA8F9F793FF8023049A04005B009A4219 +:1066C00009D1002805D11A002DA96DA8F9F7D6FF28 +:1066D00004000137D9E701246442FAE7002C00D016 +:1066E00047E704AF3B0020220BA96DA8F9F7D6FFBE +:1066F000041E00D03DE780225200019700922B003B +:1067000031001BA8F9F76AFF041E00D031E7020030 +:106710003B0029001BA8F9F73FFF2D9B244A9BB2A1 +:106720000400934200D022E7002800D021E72E9AEF +:10673000D3B2102B00D01AE7120C202A00D016E793 +:106740002FA90BA800F0C6FF041E00D011E7379B4D +:10675000DBB2012B00D00AE70120FFF735FD409B9B +:10676000DAB2222A00D002E71B0C482B00D0FEE64A +:10677000C0B2009041AA20210BA8FFF7CBFC040077 +:10678000F7E6C046B4FCFFFFFCAF0208F8AF020812 +:10679000E8AD020860A802082000001000016004B3 +:1067A00001000040C0AC0208090000013DB8F396AA +:1067B000076900000023F0B51D4C0700A544694699 +:1067C000022000930193FFF773F900280ED00126F1 +:1067D0000098002801D0FFF78DF90198002801D01A +:1067E000FFF788F93000134B9D44F0BD01A901204B +:1067F000FFF75EF90600041EE9D10098A742E7D929 +:1068000080233D1BDB009D4200D91D002B0002AA06 +:106810002100FFF77FF90028D9D12B0002AA21001F +:106820000198FFF799F90028D1D16419E5E7C0462E +:10683000F4FBFFFF0C040000F0B500242500584FC6 +:106840009BB0BB6A0293029BAB4263D1554BDB7892 +:10685000002B00D19FE0002305A902200593069399 +:10686000FFF726F9002821D106A90130FFF720F90A +:1068700000281BD14C4A0C2108A8F9F77DFE0028FE +:1068800014D11022494908A8F9F798FE041E0DD129 +:106890000600BB6B0133FF330293059B5B680393D8 +:1068A000029BB34200D86CE0002C44D0059800282D +:1068B00001D0FFF71FF90698002801D0FFF71AF959 +:1068C0003B4B1B68002B02D00C20F9F79DFE1022D9 +:1068D0000021364800F016FF3B6D00219A68022027 +:1068E000FFF766FD43425841FEF7CAFB0C237A6D61 +:1068F000396D013A5343CB185A6849680220511A3E +:106900009A68FFF755FD43425841FEF7B9FB002056 +:106910001BB0F0BD0C236B437A6A2100D3189E682C +:1069200001203200FFF744FD43425841FEF7A8FB27 +:10693000A419013587E7029B9D1B8023DB009D4244 +:1069400000D91D00039B009599191A4B2A00C918FC +:1069500007AB019308A8184BF9F740FE079B04000A +:10696000AB420BD100289BD12B00134A3100069873 +:10697000FFF7F2F8002899D1761991E701246442D3 +:106980008EE7002C00D091E707AB22000A4908A847 +:10699000F9F702FE8AE72000FFF70CFF9CE7C046EC +:1069A00060A80208E8AD020800016004C0AC02085B +:1069B000FCAF020800040010C0A8020873B5164E10 +:1069C000164CF368626A5B0A01A901200193FFF784 +:1069D0008FF9012500281AD1019B226DA362F3686B +:1069E00001A95B0A02300193FFF782F9051E10D15D +:1069F000019B206A6365FFF755F90600A06DFFF75C +:106A000051F9331C864200D2031C5C3423702800E9 +:106A100076BD0125FBE7C04640A1020860A8020838 +:106A2000F0B50C265A4F89B0FB6800905C0A74439D +:106A3000200000F029FE0190200000F025FE019BBF +:106A4000544C0290636220650020FFF730F921006A +:106A5000C0B22031FFF72CF843425841FEF710FB3B +:106A60000120FFF724F92100C0B24C31FFF720F8D4 +:106A700043425841FEF704FB210003205831FFF741 +:106A800017F843425841FEF7FBFAFFF797FF051E40 +:106A90006BD1FFF763FC051E67D1FB68A06A5B0A38 +:106AA00098424FD8626D9A424CD890424AD10823FE +:106AB0004643626A216D08369E4226D1364E73786F +:106AC000002B3FD00C22002105A800F01BFE012066 +:106AD000FEF7D6FAFFF7DAFA831E0500022B07D875 +:106AE000F378002B19D0FFF7E9FC00281BD005250F +:106AF0000120FEF7C5FA012D24D0002D01DD052D62 +:106B00001BDD0020FEF7BCFAFEE71800D558CB5875 +:106B10000C309D4216D10300CEE70120FFF760FC48 +:106B2000E3E7032521E00120FEF7AAFAFFF784FE40 +:106B300043425841FEF7A4FADAE70020FFF70EFCC3 +:106B4000051E12D10020FFF74BFC0500684268418A +:106B5000FEF796FA002DE4D1236A00995A780A715B +:106B60005B680C600393039A8A60019800F096FDBD +:106B7000029800F093FDA06DFEF7BCFFE06CFEF7FD +:106B8000B9FF206AFEF7B6FF280009B0F0BDC04685 +:106B900040A1020860A80208E8AD020810B501781B +:106BA00004000A00303AD3B2092B1FD811000A01A1 +:106BB00061780B00303BD8B2092824D89918A27804 +:106BC00009011300303BD8B209282AD85A18E378B3 +:106BD000120118003038C1B28018092905D91900EE +:106BE000413905292BD8373B981810BD0B00413B84 +:106BF000052B01D83739DAE70B00613B0020052B64 +:106C0000F3D85739D3E70B00413B052B02D837396E +:106C10008918D4E70B00613B0020052BE5D85739D4 +:106C2000F6E71300413B052B02D8373A5218CEE75E +:106C30001300613B0020052BD7D8573AF6E719001F +:106C4000613900200529D0D8573BCDE7F7B50B783F +:106C500007004E1C222B0FD00026554B1960300028 +:106C6000FEBD02331A780130222A08D0002A06D04D +:106C70005C2AF6D00133F5E733000020F2E74D4BF4 +:106C80001B6898470190041E07D1019EE7E7721C1C +:106C90005C2B13D02370013416003378222B01D0E3 +:106CA000002BF4D1002323703378223B5A42534106 +:106CB000F618019B3B610423FB60D0E773786E2BD1 +:106CC00017D007D8611C622B0CD0662B0FD0237015 +:106CD00001340AE0742B0ED0752B0ED0722BF6D136 +:106CE0000D23F4E7082323700C000132D4E70C23B2 +:106CF000F9E70A23EBE70923E9E7B01CFFF74EFFAA +:106D00002D4B2E49C3180500721D8B42EDD900286A +:106D1000EBD02B4BC3188B4227D8B3795C2BE4D133 +:106D2000F379752BE1D130000830FFF737FF3200DF +:106D3000214B2249C3180B328B42D6D8214BAD02CE +:106D40001D4080238005800D05435B02ED181E4B1E +:106D5000E11C9D4223D803234C1E3F208021284064 +:106D6000494201432170AD0910E07F2809D8012371 +:106D700001341648611EC05C013B05430D70E418E8 +:106D8000B3E7134B9842E2D8022302343F2080211C +:106D900028404942013C01432170AD09E9E73F2009 +:106DA000802328405B420343E370AD090423D3E70B +:106DB000D0AD020880A102080024FFFFFF030000FD +:106DC0000028FFFF00FC0F00FFFF0000EE8A0D10FF +:106DD000FF070000002803D00378013B1F2B00D9D8 +:106DE00070470130F6E70000064B10B51B682820FD +:106DF0009847041E03D02822002100F083FC2000C5 +:106E000010BDC04680A10208F0B5050087B00E1E77 +:106E100001D1002413E004227549300000F054FD34 +:106E2000002803D10223EB60341D08E005227149DC +:106E3000300000F049FD002804D1E860741D2000F6 +:106E400007B0F0BD04226C49300000F03DFD002881 +:106E500006D101230122EB600023AA61EB61E3E785 +:106E60003378222B05D131002800FFF7EFFE040014 +:106E7000E5E71A00303AD2B22D2B01D0092A1AD8F0 +:106E8000340000E0013423781A00303A092AF9D995 +:106E90002D2BF7D0A71B3A003100684600F029FCE3 +:106EA00000236A466846D35500F0E4FB0323A8613B +:106EB000E961EB60C3E75B2B37D1563BEB60701C9D +:106EC000FFF788FF037804005D2B01D10134B6E79A +:106ED000FFF78AFF061EA8609BD02000FFF77AFF0D +:106EE00001003000FFF790FFFFF774FF0400002C53 +:106EF00000D18EE723782C2B04D05D2BE6D03F4BBE +:106F00001C6086E7FFF770FF051E00D181E7306047 +:106F10004660601CFFF75EFF01002800FFF774FF6A +:106F2000FFF758FF2E000400E1E77B2B5DD1753B96 +:106F3000EB60701CFFF74EFF037804007D2BC5D07B +:106F4000FFF752FF061EA86000D162E72000FFF79E +:106F500041FF01003000FFF779FEFFF73BFF0028FB +:106F600000D156E7002433693461336203783A2B49 +:106F700002D0224B186062E70130FFF72BFF0100BF +:106F80003000FFF741FFFFF725FF0400002C00D180 +:106F90003FE723782C2B02D07D2B97D0AFE7FFF76C +:106FA00023FF051E00D134E730604660601CFFF708 +:106FB00011FF01002800FFF749FEFFF70BFF002833 +:106FC00000D126E700242B692C612B6203783A2B31 +:106FD000CFD10130FFF7FEFE01002800FFF714FFBC +:106FE000FFF7F8FE2E000400D0E7044B1E6010E708 +:106FF000F58A0D10FA8A0D10008B0D10D0AD020825 +:107000000849094A002803D1084B0B60084B07E0E8 +:107010000368002B00D1054B0B604368002BF5D0B3 +:107020001360704780A102087CA1020889760D10C8 +:107030009D760D10F8B5802604007600002C00D156 +:10704000F8BDE3682768334204D1A068002801D066 +:10705000FFF7F0FFE3680B4D334204D120690028AD +:1070600001D02B6898478022E3689200134204D134 +:10707000206A002801D02B68984720002B68984789 +:107080003C00DBE77CA10208F7B505000E00019289 +:10709000FFF7AAFE0023134F04003B6098420CD078 +:1070A0002800FFF797FE01002000FFF7ADFE051E48 +:1070B00005D12000FFF7BEFF00242000FEBD019B8C +:1070C000002B0AD0FFF786FE03780500002B04D0C2 +:1070D0002000FFF7AFFF3D60EEE7002EEDD03560FA +:1070E000EBE7C046D0AD0208002210B51100FFF753 +:1070F000CBFF10BD0300093B0122042B02D920382D +:107100004242424110007047F0B5002517000600CA +:107110002C0089B003930E9B02901B0CDBB20493EE +:107120000E9B00911B0ADBB205930E9BDBB207930B +:10713000731C069333780193002B08D0009B002B1F +:1071400022DB029A731C9B1A009A9A421CDA0E9B4D +:10715000DBB2002B00D1B4E0019A9A4200D0AEE03D +:10716000009B002B06DB029A731C9B1A009A934229 +:1071700000DDA4E0B31C7678032D00D9A1E028003F +:1071800000F0ACF88989637B0198FFF7B3FF002812 +:1071900039D1079B019A9342D9D04F4E110030004C +:1071A00000F072FB031E08D1049B019A93420BD09E +:1071B000059B93426FD133003F33032D23D8280022 +:1071C00000F08CF80510233533003E33F5E7002F2F +:1071D00006D0039A94425ED23F4A9B1A9B003B55CD +:1071E000012510E0621C002F0BD003998A4252D275 +:1071F00039493C195B1A2178181101431B01217090 +:10720000BB5414000225069E92E7621C002F0BD08F +:1072100003998A423FD230493C195B1A2178981071 +:1072200001439B012170BB5414000325EBE7002FA1 +:1072300008D0039A94422ED227493A195B1A117842 +:107240000B43137001340025DDE71D00002E22D012 +:10725000009B002B22DB029B009AEB1A9A421DDA5C +:10726000019BB34217D1009B002B04DD029B009AC7 +:10727000EB1A93420FDC2E786B1C029A9D1A002E9B +:1072800004D0009B002B11DBAB420FDA002F18D08B +:107290003B5D002B15D00124644219E03000FFF75C +:1072A00029FF0028DCD02E780135CFE73000FFF72A +:1072B00021FF0028EFD0029B5E5D0135DFE7002D46 +:1072C000E9D1039B9C42E6D2002F01D000233B551D +:1072D000200009B0F0BDC046058B0D1002B4714608 +:1072E00049084900095C49008E4402BC7047C04609 +:1072F000002243088B4274D303098B425FD3030AF5 +:107300008B4244D3030B8B4228D3030C8B420DD307 +:10731000FF22090212BA030C8B4202D31212090295 +:1073200065D0030B8B4219D300E0090AC30B8B42D3 +:1073300001D3CB03C01A5241830B8B4201D38B0381 +:10734000C01A5241430B8B4201D34B03C01A524126 +:10735000030B8B4201D30B03C01A5241C30A8B4269 +:1073600001D3CB02C01A5241830A8B4201D38B0254 +:10737000C01A5241430A8B4201D34B02C01A5241F8 +:10738000030A8B4201D30B02C01A5241CDD2C3096A +:107390008B4201D3CB01C01A524183098B4201D3E6 +:1073A0008B01C01A524143098B4201D34B01C01AD1 +:1073B000524103098B4201D30B01C01A5241C30849 +:1073C0008B4201D3CB00C01A524183088B4201D3B8 +:1073D0008B00C01A524143088B4201D34B00C01AA4 +:1073E0005241411A00D20146524110467047FFE710 +:1073F00001B5002000F006F802BDC0460029F7D014 +:1074000076E770477047C046002B11D1002A0FD194 +:10741000002900D1002802D00021C943081C07B46C +:10742000024802A14018029003BDC046D9FFFFFFE9 +:1074300003B4684601B5029800F030F8019B9E46FF +:1074400002B00CBC7047C046F0B5CE4647461504A6 +:107450002D0C2E0080B50704140C3F0C9946030C2C +:107460007E435D43674363437F19340CE4199C46B4 +:10747000A54203D980235B029846C4444B4643434C +:107480005143250C36046544360C2404A4195B19B9 +:10749000591820000CBC90469946F0BDF0B54F46F7 +:1074A0004646D646C0B5040082B00D0091469846C7 +:1074B0008B422FD82CD04146484600F0CFF8290007 +:1074C0000600200000F0CAF8331A9C46203B9A467A +:1074D00000D576E04B46524693401F004B4662462D +:1074E00093401E00AF4228D825D05346A41BBD416F +:1074F000002B00DA7BE0002200230092019301239D +:10750000524693400193012362469340009318E052 +:107510008242D0D900220023009201930A9B002BC3 +:1075200001D01C605D600098019902B01CBC9046BF +:107530009946A246F0BDA342D7D90022002300926B +:1075400001936346002BE9D0FB0798464146720839 +:107550000A437B0866460EE0AB4201D1A2420CD83A +:10756000A41A9D41012024196D410021013E2418D7 +:107570004D41002E06D0AB42EED9013E24196D419B +:10758000002EF8D100980199534600196941002B4B +:1075900023DB2B005246D3402A006446E2401C0005 +:1075A00053461500002B2DDB26005746BE40330006 +:1075B00026006746BE403200801A99410090019132 +:1075C000ACE7624620239B1A4A46DA406146130024 +:1075D00042468A4017001F4380E7624620239B1AD9 +:1075E0002A0066469A402300F3401343D4E76246DC +:1075F000202300219B1A0022009101920122DA40EF +:10760000019280E72023624626009B1ADE402F006D +:10761000B0466646B74046463B003343C8E7C046DF +:107620001C2101231B04984201D3000C10391B0AB2 +:10763000984201D3000A08391B09984201D3000976 +:10764000043902A2105C40187047C04604030202CD +:1076500001010101000000000000000010B5002938 +:1076600003D1FFF7DDFF203002E0081CFFF7D8FF51 +:1076700010BDC04610B50A22002100F0F7F910BD78 +:10768000EC3000687047000010B5034B010018682B +:1076900000F08AF810BDC04684A1020810B5034B63 +:1076A0000100186800F036F810BDC04684A1020839 +:1076B00082B0002900D101A9101E06D0002B06D0EF +:1076C00013780B601078431E984102B07047022077 +:1076D0004042FAE730B50024A24201D1002005E083 +:1076E000035D651C0C5DA34201D0181B30BD2C004E +:1076F000F2E7002310B59A4200D110BDCC5CC4540F +:107700000133F8E703001218934200D17047197053 +:107710000133F9E770B50500002910D00C1F23686C +:10772000002B00DAE418280000F0C0F91D4A1368A5 +:10773000002B05D163601460280000F0B8F970BD1B +:10774000A34209D9216860188342F3D118685B68A5 +:1077500041182160EEE713005A68002A01D0A242C6 +:10776000F9D919685818A0420BD12068091858187F +:1077700019608242E0D110685268411819605A605D +:10778000DAE7A04202D90C232B60D5E72168601804 +:10779000824203D1106852684118216062605C60C7 +:1077A000CAE7C046D4AD0208032370B5CD1C9D4383 +:1077B000083506000C2D1ED20C25A9421DD830001C +:1077C00000F074F9254A14682100002919D1244CCD +:1077D0002368002B03D1300000F044F8206029001A +:1077E000300000F03FF8431C2BD10C2330003360F5 +:1077F00000F05DF903E0002DDFDA0C233360002098 +:1078000070BD0B685B1B19D40B2B03D90B60CC1814 +:10781000256003E04B688C420DD11360300000F00E +:1078200046F9200007220B30231D9043C31AE7D0EE +:107830005A42E250E4E763600C00EFE70C0049684D +:10784000C3E70323C41C9C43A042E1D0211A3000AB +:1078500000F008F8431CDBD1C7E7C046D4AD0208EE +:10786000D8AD0208002370B5064C0500080023605F +:1078700000F01EF9431C03D12368002B00D02B60BD +:1078800070BDC04604B00208C9B20378002B04D012 +:107890008B4200D170470130F7E74B4259414942D2 +:1078A0000840F7E702780B78002A03D00130013155 +:1078B0009A42F7D0D01A704703000A7801311A7043 +:1078C0000133002AF9D17047002330B59A420AD01B +:1078D000013AC45CCD5CAC4204D1934202D0013386 +:1078E000002CF6D1631B180030BD30B50500002A0E +:1078F00000D130BD0C78013A6B1C2C700131002C8A +:1079000005D19A189A42F4D01C700133FAE71D0091 +:10791000EDE70000F0B51F000E008DB00B90029156 +:10792000039212983478FFF7ABFE082200194378CF +:10793000751C134053D12D2C53D17478B51C0133D1 +:107940000193002F00D18AE0102F0AD1302C08D1EA +:1079500020222B789343582B00D07AE010276C78A4 +:107960000235019B002B41D1013B04933E4B059313 +:107970003A00FB17049805990893FFF745FD00238B +:1079800009900E00002000210A922200303A092AB4 +:1079900031D81400A7423DDD5A1C1DD0B14236D863 +:1079A00002D1099B984232D8099B834206D18E426C +:1079B00004D101230A9A5B42A2420DDB0B000200B4 +:1079C00008993800FFF740FDE31706940793069BDC +:1079D000079CC018614101232C780135D5E72E00A2 +:1079E0009FE72B2CACD1B51C7478A9E70023049336 +:1079F00080231B06BBE72200413A192A01D8373CF5 +:107A0000C8E72200613A192A04D8573CC2E701238B +:107A10005B42E1E75A1C09D10B9A23331360039BA5 +:107A200004980599002B0ED10DB0F0BD019A002AE3 +:107A300004D006000F0000217042B941039A002AC9 +:107A4000F2D0002B01D06B1E0293039B029A1A60A6 +:107A5000EAE73024002F00D083E7082781E7302CA5 +:107A600000D175E70A277CE7FFFFFF7F37B51300DA +:107A7000064A05001068046A002C00D1044C0A0074 +:107A800000942900FFF746FF03B030BD84A102082F +:107A9000E8A102080B1E04D0FF2A04D98A23036040 +:107AA0008B3B180070470A700123FAE77047704754 +:107AB000044A1368002B00D1034B181810601800FB +:107AC0007047C046DCAD020800000208F8B5C046A9 +:107AD000F8BC08BC9E467047F8B5C046F8BC08BC68 +:107AE0009E4670470000000001B40248844601BC75 +:107AF000604700BF1DA5020801B40248844601BCCE +:107B0000604700BF01A7020801B40248844601BCD7 +:107B1000604700BFEFA3020801B40248844601BCDD +:107B2000604700BF03A70208000000000700010330 +:107B300000000100030300003F00010300000F00EC +:107B4000C0102040030300004000010300000F00AC +:107B500000112040030300003F00010300000F005C +:107B600040112040030300007F00010300000F00CC +:107B700080112040000300000F00010300000F00EF +:107B800040122040030300003F00010300000F00EB +:107B900080122040000300000F00010300000F00CE +:107BA00000162040000300000F00010300000F003A +:107BB00040162040000300000F00010300000F00EA +:107BC00080162040000300000F00010300000F009A +:107BD00000172040000300007F00010300000F0099 +:107BE00040002040030300007F00010300000F005D +:107BF000C0002040030300007F00010300000F00CD +:107C000000012040030300007F00010300000F007B +:107C100080012040000001400900000300000F0027 +:107C2000010300000F00000000410140130007079E +:107C300000007F00802224400103010000000707AC +:107C40000000030000212440010301000100070798 +:107C500000000300C02024400103010002000707C8 +:107C600000000F00802024400103010005000505ED +:107C700000017E00402024400103010006000303B0 +:107C800000017E0000202440010301000CC0000719 +:107C900000000F0000222440010301000D0001013B +:107CA0000001700040222440010301000E00030384 +:107CB00000000100C0212440010301000FC007079C +:107CC00000000F0080212440010301001000030385 +:107CD0000000040040212440010301000CDF0007E4 +:107CE00000000F00402224400103010070726F76F3 +:107CF0005F726571007265736F75726365730042C0 +:107D00004F4F5400555047524144450073697A65BE +:107D1000006C61756E6368006D6F6E6F746F6E6975 +:107D20006300656E637279707400656E637279705A +:107D3000745F6B65795F6964006261636B75700085 +:107D4000626F6F745F6175746800757067726164EB +:107D5000655F6175746800736D69665F6964007260 +:107D60006570726F6772616D007374617274007216 +:107D70006570726F766973696F6E00626F6F745FA2 +:107D80006C6F61646572006B6579735F616E645FCF +:107D9000706F6C6963696573006D30700070657237 +:107DA0006D697373696F6E00636F6E74726F6C00D0 +:107DB0006B6579006D340073797374656D00737948 +:107DC0007363616C6C006D6D696F00726D6100644E +:107DD000657374726F795F6675736573006465733C +:107DE00074726F795F666C61736800707265736539 +:107DF0006E74006669726D77617265006365727496 +:107E000069666963617465006F70656E00646973AB +:107E100061626C656400656E61626C656400616CD2 +:107E20006C6F77656400646562756700776F756E67 +:107E300064696E6700626F6F745F7570677261640A +:107E400065007479706500617272617900697465AA +:107E50006D73006E756D62657200696E746567653D +:107E60007200626F6F6C65616E00737472696E6729 +:107E7000006D6178696D756D006D696E696D756D08 +:107E8000007065726970686572616C73006261731D +:107E9000655F61646472657373006D656D6F7269AF +:107EA000657300776F726B666C6173680073666CE4 +:107EB000617368007372616D00736F6674776172CD +:107EC00065006361706162696C69747900464C4158 +:107ED00053485F5043315F53504D00464C41534827 +:107EE0005F50433200464C4153485F504333004695 +:107EF0004C4153485F50433400464C4153485F4D1A +:107F000041494E5F434F444500464C4153485F4D05 +:107F100041494E5F584F00464C4153485F4D4149DF +:107F20004E5F4441544100464C4153485F535550C5 +:107F300045525649534F525900464C4153485F579A +:107F40004F524B5F53454355524500464C415348B1 +:107F50005F574F524B005352414D5F5043305F507B +:107F6000524956005352414D5F5043305F50554285 +:107F7000005352414D5F53504D5F5052495600538C +:107F800052414D5F53504D5F505542005352414D49 +:107F90005F5043315F50524956005352414D5F503C +:107FA00043325F50524956005352414D5F50433364 +:107FB0005F50524956005352414D5F5043345F5019 +:107FC000524956005352414D5F4D41494E00535264 +:107FD000414D5F44415000534D49465F434F444536 +:107FE00000534D49465F584F00534D49465F444149 +:107FF00054410000000021400000254000000140E5 +:1080000000003440000024400000314000003240B5 +:1080100000001F4100002340000011400101010148 +:108020000101010101101010800019005500F0003D +:108030000501053B04101C01010000000FC00000F9 +:108040000004000001010101011D3A577896000863 +:108050002000101208000000001F00000010000F98 +:10806000002000023F06080E00080009000A000B6D +:1080700024282C3034000000100000009000000084 +:1080800088000000080000008000000004F00000EC +:1080900000F00000400200002005A000D001000117 +:1080A0008001A0012000000010000000433A5C475E +:1080B00069744C61622D52756E6E65725C62756991 +:1080C0006C64735C32643334316331325C305C72C3 +:1080D00065706F5C6379626F6F746C6F61646572F9 +:1080E0005C70736F633670646C5C64726976657221 +:1080F000735C696E636C7564652F63795F69706327 +:108100005F6472762E6800433A2F4769744C61624F +:108110002D52756E6E65722F6275696C64732F32A5 +:10812000643334316331322F302F7265706F2F63B7 +:1081300079626F6F746C6F616465722F70736F63B7 +:108140003670646C2F647269766572732F736F7505 +:108150007263652F63795F6770696F2E6300433ABE +:108160005C4769744C61622D52756E6E65725C621B +:1081700075696C64735C32643334316331325C3002 +:108180005C7265706F5C6379626F6F746C6F616451 +:1081900065725C70736F633670646C5C6472697670 +:1081A0006572735C696E636C7564652F63795F6774 +:1081B00070696F2E6800433A2F4769744C61622DD5 +:1081C00052756E6E65722F6275696C64732F3264BE +:1081D0003334316331322F302F7265706F2F6379F2 +:1081E000626F6F746C6F616465722F70736F63364A +:1081F00070646C2F647269766572732F736F757219 +:1082000063652F63795F6970635F6472762E6300C4 +:10821000433A2F4769744C61622D52756E6E6572D8 +:108220002F6275696C64732F326433343163313279 +:108230002F302F7265706F2F6379626F6F746C6F60 +:10824000616465722F70736F633670646C2F647233 +:1082500069766572732F736F757263652F63795FCB +:108260006970635F706970652E6300433A2F4769D8 +:10827000744C61622D52756E6E65722F6275696CF9 +:1082800064732F32643334316331322F302F72658F +:10829000706F2F6379626F6F746C6F616465722F9A +:1082A00070736F633670646C2F6472697665727375 +:1082B0002F736F757263652F63795F70726F742EA1 +:1082C0006300433A2F4769744C61622D52756E6E9C +:1082D00065722F6275696C64732F32643334316355 +:1082E00031322F302F7265706F2F6379626F6F7428 :1082F0006C6F616465722F70736F633670646C2F7E :10830000647269766572732F736F757263652F631C -:10831000795F737973696E742E6300433A2F5573D6 -:108320006572732F646D69762F446F63756D656E2A -:1083300074732F6379626F6F746C6F616465722FF1 -:1083400070736F633670646C2F64726976657273D4 -:108350002F736F757263652F63795F737973706DB7 -:108360002E6300433A2F55736572732F646D6976DF -:108370002F446F63756D656E74732F6379626F6FD1 -:10838000746C6F616465722F70736F633670646CA8 -:108390002F646576696365732F70736F63362F730F -:1083A0007461727475702F73797374656D5F707317 -:1083B0006F63365F636D30706C75732E6300000001 -:1083C00003000000010000000100000000000000A8 -:1083D0000503600004000000010000000000000030 -:1083E0000100000006046000080000001CC0020834 -:1083F000994E0D1050534F43365F464C4153480041 -:10840000F4830D10F15D0D100000000000840D10CC -:1084100064890D100000000000000000070000004B -:108420000100000000000000010000000E0000003C -:10843000110000000000000000000000000000002B -:10844000000000000000000000000000000000002C -:10845000000000000000000000000000010000001B -:108460000E000000110000000000000000000000ED -:1084700000000000000000000000000000000000FC -:1084800000000000000000000000000000000000EC -:10849000010000000E0000001100000000000000BC -:1084A00000000000000000000000000000000000CC -:1084B00000000000000000000000000000000000BC -:1084C00000000000010000000E000000110000008C -:1084D000000000000000000000000000000000009C -:1084E000000000000000000000000000000000008C -:1084F0000000000000000000010000000600000075 -:10850000110000000000000000000000000000005A -:10851000000000000000000000000000000000005B -:10852000000000000000000000000000010000004A -:108530000600000011000000000000000000000024 -:10854000000000000000000000000000000000002B -:10855000000000000000000000000000000000001B -:10856000010000000000000000000000000000000A -:1085700000000000000000000000000000000000FB +:10831000795F736D69662E630000010010008000B4 +:10832000E80310000001A00F00FA433A2F476974D8 +:108330004C61622D52756E6E65722F6275696C6448 +:10834000732F32643334316331322F302F726570C2 +:108350006F2F6379626F6F746C6F616465722F70D9 +:10836000736F633670646C2F647269766572732FF5 +:10837000736F757263652F63795F736D69665F6D87 +:10838000656D736C6F742E6300433A2F4769744CAC +:1083900061622D52756E6E65722F6275696C6473C1 +:1083A0002F32643334316331322F302F7265706F66 +:1083B0002F6379626F6F746C6F616465722F707375 +:1083C0006F633670646C2F647269766572732F7395 +:1083D0006F757263652F63795F737973636C6B2E4E +:1083E0006300433A2F4769744C61622D52756E6E7B +:1083F00065722F6275696C64732F32643334316334 +:1084000031322F302F7265706F2F6379626F6F7406 +:108410006C6F616465722F70736F633670646C2F5C +:10842000647269766572732F736F757263652F63FB +:10843000795F737973696E742E6300433A2F4769CD +:10844000744C61622D52756E6E65722F6275696C27 +:1084500064732F32643334316331322F302F7265BD +:10846000706F2F6379626F6F746C6F616465722FC8 +:1084700070736F633670646C2F64726976657273A3 +:108480002F736F757263652F63795F737973706D86 +:108490002E6300433A2F4769744C61622D52756E0A +:1084A0006E65722F6275696C64732F326433343178 +:1084B0006331322F302F7265706F2F6379626F6F67 +:1084C000746C6F616465722F70736F633670646C67 +:1084D0002F646576696365732F70736F63362F73CE +:1084E0007461727475702F73797374656D5F7073D6 +:1084F0006F63365F636D30706C75732E63000000C0 +:108500000300000001000000010000000000000066 +:1085100005036000040000000100000000000000EE +:108520000100000006046000080000001CC00208F2 +:10853000994E0D1050534F43365F464C41534800FF +:1085400034850D10695E0D100000000040850D108F +:10855000B48A0D10000000000000000007000000B9 +:108560000100000000000000010000000E000000FB +:1085700011000000000000000000000000000000EA :1085800000000000000000000000000000000000EB -:1085900000000000010000000000000000000000DA -:1085A00000000000000000000000000000000000CB +:1085900000000000000000000000000001000000DA +:1085A0000E000000110000000000000000000000AC :1085B00000000000000000000000000000000000BB -:1085C00000000000000000000100000006000000A4 -:1085D0001D0000000000000000000000000000007E +:1085C00000000000000000000000000000000000AB +:1085D000010000000E00000011000000000000007B :1085E000000000000000000000000000000000008B -:1085F000000000000000000000000000010000007A -:108600000A0000001D000000000000000000000043 +:1085F000000000000000000000000000000000007B +:1086000000000000010000000E000000110000004A :10861000000000000000000000000000000000005A :10862000000000000000000000000000000000004A -:10863000010000000B0000001D0000000000000011 -:10864000000000000000000000000000000000002A +:108630000000000000000000010000000600000033 +:108640001100000000000000000000000000000019 :10865000000000000000000000000000000000001A -:1086600000000000433A5C55736572735C646D6989 -:10867000765C446F63756D656E74735C6379626F6D -:108680006F746C6F616465725C70736F6336706475 -:108690006C5C647269766572735C696E636C756438 -:1086A000652F63795F737973636C6B2E68000000CC -:1086B000F4010000140004010A0009050800030089 -:1086C0006301000002000000030000000000000041 -:1086D000000000180000800000000000AC880D10B1 -:1086E0006000000000000000FFFFFFFF000000002E -:1086F000000000000000000020000000000000005A -:10870000FFFFFFFF0000000000000000000000006D -:108710000200000000000000FFFFFFFF000000005B -:108720000000000000000000EB000000000200005C -:10873000010000000200000008000000020000002C -:108740003500000000000000FFFFFFFF00000000F8 -:108750000000000000000000050000000000000014 -:10876000FFFFFFFF0000000000000000000000000D -:108770000400000000000000FFFFFFFF00000000F9 -:1087800000000000000000000600000000000000E3 -:10879000FFFFFFFF000000000000000000000000DD -:1087A0000100000000000000FFFFFFFF00000000CC -:1087B00000000000000000000100000003000000B5 -:1087C0000000000000000018000000010000000090 -:1087D000F8880D106000000000000000FFFFFFFFA0 -:1087E0000000000000000000000000002000000069 -:1087F00000000000FFFFFFFF00000000000000007D -:10880000000000003800000000020000FFFFFFFF32 -:10881000020000000000000002000000EB00000069 -:10882000000200000100000002000000040000003F -:10883000020000003500000000000000FFFFFFFF05 -:108840000000000000000000000000000500000023 -:1088500000000000FFFFFFFF00000000000000001C -:10886000000000000400000000000000FFFFFFFF08 -:1088700000000000000000000000000006000000F2 -:1088800000000000FFFFFFFF0000000000000000EC -:10889000000000000100000000000000FFFFFFFFDB -:1088A00000000000000000000000000003000000C5 -:1088B0000000800028870D1088870D1070870D102C -:1088C000F8860D1000100000E0860D1010870D10C6 -:1088D0000001000058870D1040870D10A0870D1073 -:1088E0000000000001000000020000004100000044 -:1088F000D8D60000C2010000030000000000000103 -:108900001C880D107C880D1064880D10EC870D10EC -:1089100000100000D4870D1004880D100001000025 -:108920004C880D1034880D1094880D100000000044 -:1089300001000000020000008C000000409C0000CC -:10894000FA000000010000005CA80208010000001D -:108950001400000007008E00010000000000080065 -:10896000000200002D5D0D10595E0D106D5E0D10A2 -:10897000295D0D10195D0D100400000077C295F3FC -:1089800060D2EF7F3552500F2CB67980000100FF86 -:1089900000020001000100030103FF0001040000C8 -:1089A000C0E0F0F8FC6E756C6C0066616C7365007D -:1089B00074727565004142434445464748494A4BF5 -:1089C0004C4D4E4F505152535455565758595A6169 -:1089D00062636465666768696A6B6C6D6E6F7071FF -:1089E00072737475767778797A30313233343536FC -:1089F000373839004300504F534958002E000020AB -:108A0000202020202020202028282828282020203E -:108A100020202020202020202020202020202088EE -:108A20001010101010101010101010101010100452 -:108A300004040404040404040410101010101010A2 -:108A40004141414141410101010101010101010196 -:108A500001010101010101010101101010101010AC -:108A60004242424242420202020202020202020266 -:108A70000202020202020202020210101010200082 -:108A800000000000000000000000000000000000E6 -:108A900000000000000000000000000000000000D6 -:108AA00000000000000000000000000000000000C6 -:108AB00000000000000000000000000000000000B6 -:108AC00000000000000000000000000000000000A6 -:108AD0000000000000000000000000000000000096 -:108AE0000000000000000000000000000000000086 -:108AF0000000000000000000000000000000000076 -:048B00000000000071 -:088B04001CE9FF7F01000000E5 -:108B0C0000000D1000A00208C0000000348B0D10F6 -:088B1C00C0A00208F0060000F1 -:108B2400ECA702081C08000000C002089C01000019 -:108B34004D7E0D105B7E0D10657E0D106F7E0D1049 -:108B4400797E0D10897E0D10977E0D10A77E0D1075 -:108B5400B97E0D10CB7E0D10D67E0D10E47E0D1067 -:108B6400F17E0D10FF7E0D100C7F0D101A7F0D107D -:108B7400287F0D10367F0D10447F0D104E7F0D1091 -:108B8400577F0D10617F0D10697F0D1000093D00A6 -:108B940000127A0000093D000000D00700093D00E2 -:108BA400A00F000004000000B8870D10C4860D104B -:108BB400EFBE0DD0016F00000000000000000200B5 -:108BC40000000000EFBE0DD0026F000000000500A1 -:108BD4000000020000000000EFBE0DD0036F000093 -:108BE40000000F00001000000000000021760D10AE -:108BF4000D760D1088A1020800000000000000009E -:108C04000000000000000000000000000000000060 -:108C14000000000000000000000000000000000050 -:108C24000000000000000000000000000000000040 -:108C34000000000000000000000000000000000030 -:108C44000000000000000000000000000000000020 -:108C540000000000000000004300000000000000CD -:108C64000000000000000000000000000000000000 -:108C740000000000000000004300000000000000AD -:108C840000000000000000000000000000000000E0 -:108C9400000000000000000043000000000000008D -:108CA40000000000000000000000000000000000C0 -:108CB400000000000000000043000000000000006D -:108CC40000000000000000000000000000000000A0 -:108CD400000000000000000043000000000000004D -:108CE4000000000000000000000000000000000080 -:108CF400000000000000000043000000000000002D -:108D0400000000000000000000000000000000005F -:108D1400000000000000000043000000000000000C -:108D2400000000000000000000000000000000003F -:108D34000000000000000000197A0D1035760D10B7 -:108D440000000000FE890D10FC890D10FD890D1036 -:108D5400FD890D10FD890D10FD890D10FD890D1083 -:108D6400FD890D10FD890D10FD890D10FD890D1073 -:108D7400FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FD -:108D84000100415343494900000000000000000075 +:108660000000000000000000000000000100000009 +:1086700006000000110000000000000000000000E3 +:1086800000000000000000000000000000000000EA +:1086900000000000000000000000000000000000DA +:1086A00001000000000000000000000000000000C9 +:1086B00000000000000000000000000000000000BA +:1086C00000000000000000000000000000000000AA +:1086D0000000000001000000000000000000000099 +:1086E000000000000000000000000000000000008A +:1086F000000000000000000000000000000000007A +:108700000000000000000000010000000600000062 +:108710001D0000000000000000000000000000003C +:108720000000000000000000000000000000000049 +:108730000000000000000000000000000100000038 +:108740000A0000001D000000000000000000000002 +:108750000000000000000000000000000000000019 +:108760000000000000000000000000000000000009 +:10877000010000000B0000001D00000000000000D0 +:1087800000000000000000000000000000000000E9 +:1087900000000000000000000000000000000000D9 +:1087A00000000000433A5C4769744C61622D5275C9 +:1087B0006E6E65725C6275696C64735C32643334CE +:1087C000316331325C305C7265706F5C6379626F0B +:1087D0006F746C6F616465725C70736F6336706424 +:1087E0006C5C647269766572735C696E636C7564E7 +:1087F000652F63795F737973636C6B2E680000007B +:10880000F4010000140004010A0009050800030037 +:1088100063010000020000000300000000000000EF +:10882000000000180000800000000000FC890D100E +:108830006000000000000000FFFFFFFF00000000DC +:108840000000000000000000200000000000000008 +:10885000FFFFFFFF0000000000000000000000001C +:108860000200000000000000FFFFFFFF000000000A +:108870000000000000000000EB000000000200000B +:1088800001000000020000000800000002000000DB +:108890003500000000000000FFFFFFFF00000000A7 +:1088A00000000000000000000500000000000000C3 +:1088B000FFFFFFFF000000000000000000000000BC +:1088C0000400000000000000FFFFFFFF00000000A8 +:1088D0000000000000000000060000000000000092 +:1088E000FFFFFFFF0000000000000000000000008C +:1088F0000100000000000000FFFFFFFF000000007B +:108900000000000000000000010000000300000063 +:10891000000000000000001800000001000000003E +:10892000488A0D106000000000000000FFFFFFFFFC +:108930000000000000000000000000002000000017 +:1089400000000000FFFFFFFF00000000000000002B +:10895000000000003800000000020000FFFFFFFFE1 +:10896000020000000000000002000000EB00000018 +:1089700000020000010000000200000004000000EE +:10898000020000003500000000000000FFFFFFFFB4 +:1089900000000000000000000000000005000000D2 +:1089A00000000000FFFFFFFF0000000000000000CB +:1089B000000000000400000000000000FFFFFFFFB7 +:1089C00000000000000000000000000006000000A1 +:1089D00000000000FFFFFFFF00000000000000009B +:1089E000000000000100000000000000FFFFFFFF8A +:1089F0000000000000000000000000000300000074 +:108A00000000800078880D10D8880D10C0880D10E7 +:108A100048880D100010000030880D1060880D107F +:108A200000010000A8880D1090880D10F0880D102E +:108A300000000000010000000200000041000000F2 +:108A4000D8D60000C20100000300000000000001B1 +:108A50006C890D10CC890D10B4890D103C890D1056 +:108A60000010000024890D1054890D100001000031 +:108A70009C890D1084890D10E4890D100000000000 +:108A800001000000020000008C000000409C00007B +:108A9000FA000000010000005CA8020801000000CC +:108AA0001400000007008E00010000000000080014 +:108AB00000020000A55D0D10D15E0D10E55E0D10E9 +:108AC000A15D0D10915D0D100400000077C295F3BB +:108AD00060D2EF7F3552500F2CB67980000100FF35 +:108AE00000020001000100030103FF000104000077 +:108AF000C0E0F0F8FC6E756C6C0066616C7365002C +:108B000074727565004142434445464748494A4BA3 +:108B10004C4D4E4F505152535455565758595A6117 +:108B200062636465666768696A6B6C6D6E6F7071AD +:108B300072737475767778797A30313233343536AA +:108B4000373839004300504F534958002E00002059 +:108B500020202020202020202828282828202020ED +:108B6000202020202020202020202020202020889D +:108B70001010101010101010101010101010100401 +:108B80000404040404040404041010101010101051 +:108B90004141414141410101010101010101010145 +:108BA000010101010101010101011010101010105B +:108BB0004242424242420202020202020202020215 +:108BC0000202020202020202020210101010200031 +:108BD0000000000000000000000000000000000095 +:108BE0000000000000000000000000000000000085 +:108BF0000000000000000000000000000000000075 +:108C00000000000000000000000000000000000064 +:108C10000000000000000000000000000000000054 +:108C20000000000000000000000000000000000044 +:108C30000000000000000000000000000000000034 +:108C40000000000000000000000000000000000024 +:048C50000000000020 +:088C540048E8FF7F0100000069 +:108C5C0000000D1000A00208C0000000848C0D1054 +:088C6C00C0A00208F0060000A0 +:108C7400ECA702081C08000000C002089C010000C8 +:108C8400CD7E0D10DB7E0D10E57E0D10EF7E0D10F8 +:108C9400F97E0D10097F0D10177F0D10277F0D1021 +:108CA400397F0D104B7F0D10567F0D10647F0D1012 +:108CB400717F0D107F7F0D108C7F0D109A7F0D102A +:108CC400A87F0D10B67F0D10C47F0D10CE7F0D1040 +:108CD400D77F0D10E17F0D10E97F0D1000093D00D5 +:108CE40000127A0000093D000000D00700093D0091 +:108CF400A00F00000400000008890D1014880D1056 +:108D0400EFBE0DD0016F0000000000000000020063 +:108D140000000000EFBE0DD0026F0000000005004F +:108D24000000020000000000EFBE0DD0036F000041 +:108D340000000F0000100000000000009D760D10E0 +:108D440089760D1088A102080000000000000000D0 +:108D5400000000000000000000000000000000000F +:108D640000000000000000000000000000000000FF +:108D740000000000000000000000000000000000EF +:108D840000000000000000000000000000000000DF :108D940000000000000000000000000000000000CF -:108DA4000000415343494900000000000000000056 +:108DA400000000000000000043000000000000007C :108DB40000000000000000000000000000000000AF -:108DC40000000000E9000D10C1000D1080B230B5A4 -:108DD400C00020D0104B07221C682300B0331B882E -:108DE4005A43236AD31819680029FCDA3E210B4B35 -:108DF400062519600A4B0B491960A3210A4BC900C7 -:108E04005D500A4958505858206A12180020506082 -:108E14005A58002AFCDA30BDE0AD020804012640AD -:108E2400080126401E1F0000000026401C0500000B -:108E340010B54378FF2B11D100F0BAF904000320D8 -:108E440000F0A6F9C3685A68012311681943116038 -:108E540011681942FCD1200000F092F910BDF7B559 -:108E640000900020019100F093F93F4D06002B681B -:108E74001A005033B43214681B780419002B5AD0EA -:108E840000F0B6F9070003281BD000F091F9374A27 -:108E9400374B0500D358002B3EDA364A0121300007 -:108EA40000F0B6F9002837D10198FFF78FFF009B37 -:108EB400002B3ED02368002BFCDB00F081F904007A -:108EC4002BE0062000F064F92B68B4331B68C0184B -:108ED4000368002B02DA284C2000FEBD002000F0BD -:108EE4005FF9264B9842F6D00023254A19001268F0 -:108EF400012000F085F90025A842ECD1002000F003 -:108F04004FF91E4A1F4B904203D09D42E3D00135D6 -:108F1400F4E79D42B9D1DEE7174C032F05D10121B7 -:108F2400002000F05DF90028F9D1280000F028F9AC -:108F3400D2E7154CF1E700F03BF90E4A0500012198 -:108F4400300000F065F9002809D1009B002B08D0FF -:108F54002368002BFCDB00F033F90400E5E7064C42 -:108F6400E3E7094CE1E7C046E0AD02080000264013 -:108F74001C05000008A80208050052000101880031 -:108F840018A80208F049020001005000F7B56E4D20 -:108F940004002A68536800931300B0331988072328 -:108FA4004B43126A9B181A68002AFCDA00F010F985 -:108FB4002A681300B033198807234B43212800D0B3 -:108FC40096E0116A5B180221D8680143D960D96818 -:108FD400C9072FD508208446944460461600D968F2 -:108FE400C06F0191116888360818356807684919F7 -:108FF4000D683902FF273F040F40694689882D0A0E -:109004002D0639432943D960902103684F4D090146 -:109014002B400B430360136830681B181868054025 -:109024002943196013686246D26F9A18126832682D -:109034009B181B68444D2A681300B0331988072312 -:109044004B43126A9B1800225A600423404A116958 -:109054000B431361012C50D030BF2A681300B03386 -:10906400198807234B43126A9B181A68002AFCDAF2 -:1090740000F0AEF8212842D1296807220B00012410 -:10908400B0331B8800205A430B6AD318DD6825428D -:109094001CD0080008300D68C06F2C4E28180568D5 -:1090A400DB6835401B0C1B061B0C2B4303600B00B9 -:1090B400883318680B6818180B6A0568D318DB68BE -:1090C4002E401B0E1B023343036020000B6A022157 -:1090D400D218D3688B43D3601B4B1A681300B03388 -:1090E400198807234B43126A9B1800225A60FEBD5D -:1090F400126A9B18174ADA609CE720BFADE700208C -:10910400009BFC331B698342E6D1A320124B134915 -:10911400134A144FC0000E681D5814680F600627C8 -:109124001F503E20106010483E371F501F58002F1C -:10913400FCDA00980D4FFC3007610E60A321C900D2 -:109144005D5001201460C7E7E0AD0208FF00FFFF97 -:1091540000ED00E024A80208000026400801264093 -:10916400040126401E1F00001C050000AAAAAAAA8A -:10917400FEE7024A1368002BFCDB7047000126401F -:1091840001B40248844601BC604700BF1B1D0D109A -:1091940001B40248844601BC604700BF0D1E0D1097 -:1091A40001B40248844601BC604700BF21280D1069 -:1091B40001B40248844601BC604700BF131D0D1072 -:1091C40001B40248844601BC604700BF411E0D1033 -:1091D40001B40248844601BC604700BF81440D10BD -:1091E40001B40248844601BC604700BFAD270D109E -:1091F40001B40248844601BC604700BFCD4D0D1048 -:1092040001B40248844601BC604700BF29250D1003 -:1092140001B40248844601BC604700BF31230D10ED +:108DC400000000000000000043000000000000005C +:108DD400000000000000000000000000000000008F +:108DE400000000000000000043000000000000003C +:108DF400000000000000000000000000000000006F +:108E0400000000000000000043000000000000001B +:108E1400000000000000000000000000000000004E +:108E240000000000000000004300000000000000FB +:108E3400000000000000000000000000000000002E +:108E440000000000000000004300000000000000DB +:108E5400000000000000000000000000000000000E +:108E640000000000000000004300000000000000BB +:108E740000000000000000000000000000000000EE +:108E84000000000000000000957A0D10B1760D106E +:108E9400000000004E8B0D104C8B0D104D8B0D10EF +:108EA4004D8B0D104D8B0D104D8B0D104D8B0D10EA +:108EB4004D8B0D104D8B0D104D8B0D104D8B0D10DA +:108EC400FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000AC +:108ED4000100415343494900000000000000000024 +:108EE400000000000000000000000000000000007E +:108EF4000000415343494900000000000000000005 +:108F0400000000000000000000000000000000005D +:108F140000000000E9000D10C1000D1080B230B552 +:108F2400C00020D0104B07221C682300B0331B88DC +:108F34005A43236AD31819680029FCDA3E210B4BE3 +:108F4400062519600A4B0B491960A3210A4BC90075 +:108F54005D500A4958505858206A12180020506031 +:108F64005A58002AFCDA30BDE0AD0208040126405C +:108F7400080126401E1F0000000026401C050000BA +:108F840010B54378FF2B11D100F0BAF90400032087 +:108F940000F0A6F9C3685A680123116819431160E7 +:108FA40011681942FCD1200000F092F910BDF7B508 +:108FB40000900020019100F093F93F4D06002B68CA +:108FC4001A005033B43214681B780419002B5AD099 +:108FD40000F0B6F9070003281BD000F091F9374AD6 +:108FE400374B0500D358002B3EDA364A01213000B6 +:108FF40000F0B6F9002837D10198FFF78FFF009BE6 +:10900400002B3ED02368002BFCDB00F081F9040028 +:109014002BE0062000F064F92B68B4331B68C018F9 +:109024000368002B02DA284C2000FEBD002000F06B +:109034005FF9264B9842F6D00023254A190012689E +:10904400012000F085F90025A842ECD1002000F0B1 +:109054004FF91E4A1F4B904203D09D42E3D0013585 +:10906400F4E79D42B9D1DEE7174C032F05D1012166 +:10907400002000F05DF90028F9D1280000F028F95B +:10908400D2E7154CF1E700F03BF90E4A0500012147 +:10909400300000F065F9002809D1009B002B08D0AE +:1090A4002368002BFCDB00F033F90400E5E7064CF1 +:1090B400E3E7094CE1E7C046E0AD020800002640C2 +:1090C4001C05000008A802080500520001018800E0 +:1090D40018A80208F049020001005000F7B56E4DCF +:1090E40004002A68536800931300B03319880723D7 +:1090F4004B43126A9B181A68002AFCDA00F010F934 +:109104002A681300B033198807234B43212800D061 +:1091140096E0116A5B180221D8680143D960D968C6 +:10912400C9072FD508208446944460461600D968A0 +:10913400C06F0191116888360818356807684919A5 +:109144000D683902FF273F040F40694689882D0ABC +:109154002D0639432943D960902103684F4D0901F5 +:109164002B400B430360136830681B1818680540D4 +:109174002943196013686246D26F9A1812683268DC +:109184009B181B68444D2A681300B03319880723C1 +:109194004B43126A9B1800225A600423404A116907 +:1091A4000B431361012C50D030BF2A681300B03335 +:1091B400198807234B43126A9B181A68002AFCDAA1 +:1091C40000F0AEF8212842D1296807220B000124BF +:1091D400B0331B8800205A430B6AD318DD6825423C +:1091E4001CD0080008300D68C06F2C4E2818056884 +:1091F400DB6835401B0C1B061B0C2B4303600B0068 +:10920400883318680B6818180B6A0568D318DB686C +:109214002E401B0E1B023343036020000B6A022105 +:10922400D218D3688B43D3601B4B1A681300B03336 +:10923400198807234B43126A9B1800225A60FEBD0B +:10924400126A9B18174ADA609CE720BFADE700203A +:10925400009BFC331B698342E6D1A320124B1349C4 +:10926400134A144FC0000E681D5814680F60062777 +:109274001F503E20106010483E371F501F58002FCB +:10928400FCDA00980D4FFC3007610E60A321C90081 +:109294005D5001201460C7E7E0AD0208FF00FFFF46 +:1092A40000ED00E024A80208000026400801264042 +:1092B400040126401E1F00001C050000AAAAAAAA39 +:1092C400FEE7024A1368002BFCDB704700012640CE +:1092D40001B40248844601BC604700BF1B1D0D1049 +:1092E40001B40248844601BC604700BF0D1E0D1046 +:1092F40001B40248844601BC604700BF21280D1018 +:1093040001B40248844601BC604700BF131D0D1020 +:1093140001B40248844601BC604700BF411E0D10E1 +:1093240001B40248844601BC604700BF81440D106B +:1093340001B40248844601BC604700BFAD270D104C +:1093440001B40248844601BC604700BFCD4D0D10F6 +:1093540001B40248844601BC604700BF29250D10B2 +:1093640001B40248844601BC604700BF31230D109C :10FE0000FC010000211221010000000000000000A0 -:10FE100000000D1000FE00000000010009000000BD +:10FE100000000D1000FE0000000001007D00000049 :10FE20000100000000DA0F100000000000000000D8 :10FE300000000000000000000000000000000000C2 :10FE400000000000000000000000000000000000B2 @@ -2370,6 +2391,6 @@ :10FFC0000000000000000000000000000000000031 :10FFD0000000000000000000000000000000000021 :10FFE0000000000000000000000000000000000011 -:10FFF0000000000000000000000000000000862D4E +:10FFF000000000000000000000000000000028D306 :04000005100D4B335C :00000001FF diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt index a8df5593903..1b42147797f 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt @@ -1 +1 @@ -eyJhbGciOiJFUzI1NiJ9.eyJjeV9wdWJfa2V5Ijp7ImNydiI6IlAtMjU2Iiwia2lkIjoiMyIsImt0eSI6IkVDIiwidXNlIjoic2lnIiwieCI6IlNiOGxUcHlfcGQzTnJVVGtoSXpnMmp6TTM3dU5xTml1dDhXQy1RdjNYTVEiLCJ5IjoiQ3R3Q2k0YXJYc2pFRDVUVm1yX3ZQbFAya2UxMzNLSzdsUDdTel9JWmlERSJ9LCJleHAiOjE1Nzc3NDMyMDAsImlhdCI6MTU2MjMzOTcyMCwiaW1hZ2VfYWRkcmVzcyI6MjY5Mjg3NDI0LCJpbWFnZV9maWxlIjoiQ3lwcmVzc0Jvb3Rsb2FkZXJfQ00wcC5oZXgiLCJpbWFnZV9oYXNoIjpbMTQ2LDI0MCwxNDksMjksMTE1LDIyNywxMTUsMTIwLDk4LDQsMjEwLDAsNCw5NSwxNzMsMjIzLDIwMywxNDEsODIsNDIsMTc2LDEwMiw2MSwxNjcsOTgsMTk3LDIsMTAyLDIxMywxMzksMjAwLDIwMF0sImltYWdlX2lkIjowLCJpbWFnZV92ZXJzaW9uIjoiMS4wLjAuOSIsInBvbGljeV90ZW1wbGF0ZSI6IiJ9.46JbgLD89VBEBa3TnWPvBehwS0im3RyGp7NrZWs0M_qtXO6TNCG2MLL9zprsBwVoyJHc8NsgJk4T5JOB4U8qhw \ No newline at end of file +eyJhbGciOiJFUzI1NiJ9.eyJjeV9wdWJfa2V5Ijp7ImNydiI6IlAtMjU2Iiwia2lkIjoiMyIsImt0eSI6IkVDIiwidXNlIjoic2lnIiwieCI6IlNiOGxUcHlfcGQzTnJVVGtoSXpnMmp6TTM3dU5xTml1dDhXQy1RdjNYTVEiLCJ5IjoiQ3R3Q2k0YXJYc2pFRDVUVm1yX3ZQbFAya2UxMzNLSzdsUDdTel9JWmlERSJ9LCJleHAiOjE1Nzc3NDMyMDAsImlhdCI6MTU2MzI4NTQ1NCwiaW1hZ2VfYWRkcmVzcyI6MjY5Mjg3NDI0LCJpbWFnZV9maWxlIjoiQ3lwcmVzc0Jvb3Rsb2FkZXJfQ00wcC5oZXgiLCJpbWFnZV9oYXNoIjpbNjksOTYsNTEsNCwxMzksMTcwLDE4MSwxNDMsMTU5LDE2MywyMDgsMCwzNiwyNDYsNTcsMTY1LDI1NCwxOTgsMTI0LDY5LDczLDAsMTAxLDIxNywxMjUsMTE4LDQ3LDIwLDQzLDYzLDIxMyw3NV0sImltYWdlX2lkIjowLCJpbWFnZV92ZXJzaW9uIjoiMS4wLjAuMTI1IiwicG9saWN5X3RlbXBsYXRlIjoiIn0.Y_P-BfopTCNRBi5ZhwjGsCkq3qeFoGAW30Oy-Tn4JK-BMxcyXyIoABcB06Oyg6PwJjcPprTNCuAV_Pxirn3r0A \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex index d5206c42531..f2da6e43706 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex @@ -13,9 +13,9 @@ :1000B000494F0D10494F0D10494F0D10494F0D106C :1000C00010B5064C2378002B07D1054B002B02D02E :1000D000044800E000BF0123237010BDECA7020814 -:1000E00000000000B4DE0D10044B10B5002B03D04F +:1000E00000000000B4E10D10044B10B5002B03D04C :1000F0000349044800E000BF10BDC04600000000F6 -:10010000F0A70208B4DE0D100021124B124A10B500 +:10010000F0A70208B4E10D100021124B124A10B5FD :10011000D8601C68002C06DB914202D101204042CD :1001200010BD0131F5E79142F8D00121996000211D :100130001C69002C03DA9142F0D00131F8E79142BA @@ -25,10 +25,10 @@ :100170000C000393FFF7C8FF002801D1019B236007 :1001800004B010BD13B5084BC47A986801A9C0B279 :10019000FFF7E4FF002803D1019B9C42804116BD7C -:1001A00001204042FBE7C04648AE02081FB5064B9F +:1001A00001204042FBE7C04620AE02081FB5064BC7 :1001B0000004C018029001AB02A801910393FFF75D :1001C000A3FF05B000BDC0460001003610B5034BCB -:1001D000C17A9868C0B2FFF7E9FF10BD48AE0208C7 +:1001D000C17A9868C0B2FFF7E9FF10BD20AE0208EF :1001E000F0B50F000400002685B0BE4201D100200A :1001F0003EE0A0221F4BD2009A582378032A04D055 :10020000092B02D801361034EFE71B4A0A33DB0012 @@ -38,7 +38,7 @@ :10024000002815D1237B2900AB71637BA068EB717B :10025000E3896B8102F072FB002809D1A06802F0EB :100260004DFC002804D1A06802F030FC0028C9D061 -:1002700005B0F0BD0000214048AE020870B5060090 +:1002700005B0F0BD0000214020AE020870B50600B8 :100280000024104AA3019B180F491A68A3015B18A8 :100290001B68002A04DA0134102CF2D1002070BD52 :1002A000002BF8DB094B3100E518AD01280002F006 @@ -76,9 +76,9 @@ :1004A000002815D10A210D48FFF712FF00280FD1AF :1004B00004210B48FFF741FF002809D10121094819 :1004C000FFF770FF04E02000FFF7A8FF0028DED050 -:1004D00010BDC0469CC60D1098C50D10A4C50D10CA -:1004E00044C60D1084C60D1010B501210148FFF758 -:1004F00077FE10BD4CC70D100022124B124910B5EB +:1004D00010BDC0466CC70D1068C60D1074C60D1057 +:1004E00014C70D1054C70D1010B501210148FFF7B6 +:1004F00077FE10BD1CC80D100022124B124910B51A :10050000D8601C68002C05DB8A4201D1012010BD97 :100510000132F6E78A42F9D001229A6000220B49A3 :100520001C69002C03DA8A42F0D00132F8E78A42D3 @@ -125,50 +125,50 @@ :1007B00010BDC04600030035F0B58DB01D0012AB72 :1007C00040CB02921B780F000393002305AA04A9D3 :1007D0000493059300F03DF9041E3BD1204B3A00F1 -:1007E00000930599029B049806F0E6FF002834DD8B +:1007E00000930599029B049807F050F8002834DD27 :1007F000022007AA06A9FF300694079401F0AEF97B :10080000002803D12900069800F0F4FF812007AAF0 :1008100006A9400001F0A2F9652400281ED131008C :10082000069800F077FD041E14D108A9380000F0E6 :1008300028F9041E0ED131000B9800F063FB041E52 :1008400008D1039A29000B9800F03AF9040008989F -:1008500006F048FF20000DB0F0BD14246442F9E713 +:1008500006F0B2FF20000DB0F0BD14246442F9E7A9 :10086000005F2D00F0B51F00002387B002910392B6 :1008700004A905AA0493059300F0EBF8041E2ED1F9 -:10088000059800F07FF8040007F0A4FB051E31D0A6 -:100890001A4B0200009305992300049806F08CFF80 -:1008A000002822DD280006F077FF061E20D0010078 +:10088000059800F07FF8040007F00EFC051E31D03B +:100890001A4B0200009305992300049806F0F6FF16 +:1008A000002822DD280006F0E1FF061E20D001000E :1008B000134800F09FF8002814D00069002811D0D8 :1008C000039B220000930197029B2900FFF774FF0E -:1008D0000400300006F006FF280007F085FB20002A +:1008D0000400300006F070FF280007F0EFFB200056 :1008E00007B0F0BD01246442F3E714246442F3E747 :1008F0000524FBE764246442F1E7C046005F2D0055 -:100900005CC70D1010B5010004000B4808F00CFA8C -:10091000002398420DD02100084808F005FA012371 -:10092000002806D02100064808F0FEF94342434162 -:100930005B00180010BDC04663C80D106CC80D10D8 -:1009400078C80D1010B5010004000B4808F0ECF950 -:10095000002398420DD02100084808F0E5F9012352 -:10096000002806D02100064808F0DEF94342434142 -:100970005B00180010BDC0467DC80D1086C80D1064 -:100980008EC80D10032358438008984304307047E5 +:100900002CC80D1010B5010004000B4808F076FA51 +:10091000002398420DD02100084808F06FFA012307 +:10092000002806D02100064808F068FA43424341F7 +:100930005B00180010BDC04633C90D103CC90D1036 +:1009400048C90D1010B5010004000B4808F056FA14 +:10095000002398420DD02100084808F04FFA0123E7 +:10096000002806D02100064808F048FA43424341D7 +:100970005B00180010BDC0464DC90D1056C90D10C2 +:100980005EC90D1003235843800898430430704714 :10099000F8B5C3680D000860062B21D18468124F9A :1009A000002C01D12000F8BD266A002E06D03100AF -:1009B0000E4808F0B9F9002802D16C602468EFE70E -:1009C00031000B4808F0B0F9002801D1AC60F5E720 -:1009D0003100380008F0A8F90028EFD1EC60EDE70D -:1009E00002204042DFE7C046A5C80D1096C80D1092 -:1009F0009CC80D10F0B507000D00002491B001AEA9 +:1009B0000E4808F023FA002802D16C602468EFE7A3 +:1009C00031000B4808F01AFA002801D1AC60F5E7B5 +:1009D0003100380008F012FA0028EFD1EC60EDE7A2 +:1009E00002204042DFE7C04675C90D1066C90D10F0 +:1009F0006CC90D10F0B507000D00002491B001AED8 :100A0000002D02D1280011B0F0BD296A002904D0C0 -:100A1000380008F089F90028F4D0AB68002B06D024 +:100A1000380008F0F3F90028F4D0AB68002B06D0BA :100A20000E2C12D8A200955101341D00E8E72B6866 :100A3000002BFAD1002C0AD0013CA3009B591B6863 :100A4000002BF2D1002CF7D1EFE70025DAE72500E3 -:100A5000D8E7F8B50E002E21170008F057F9041E4C -:100A60000CD0451C2E21280008F050F9002805D094 +:100A5000D8E7F8B50E002E21170008F0C1F9041EE2 +:100A60000CD0451C2E21280008F0BAF9002805D02A :100A7000001B0138386000203560F8BD1620404268 -:100A8000FBE770B5050000200C0006F011FE280001 -:100A900006F082FE002803D02100FFF779FF70BD29 +:100A8000FBE770B5050000200C0006F07BFE280097 +:100A900006F0ECFE002803D02100FFF779FF70BDBF :100AA00005204042FBE7002304220133002901D145 :100AB000904203D952001D2BF7D102331800704722 :100AC000F0B589B005900C000100C24807920027DC @@ -194,9 +194,9 @@ :100C000002997D48FFF7F6FE002804D0836801931F :100C1000019B002B03D1029B1B68029361E70199A2 :100C20007648FFF7E7FE00284AD0036974491800A8 -:100C3000039308F079F8002842D07249039808F02D -:100C400073F800283CD000266F4AB30099580398E7 -:100C500008F06AF8071E05D00136172EF4D10527D3 +:100C3000039308F0E3F8002842D07249039808F0C3 +:100C4000DDF800283CD000266F4AB300995803987D +:100C500008F0D4F8071E05D00136172EF4D1052769 :100C6000183E7F4201996948FFF7C4FE002801D071 :100C70008369069301996648FFF7BCFE002804D0FB :100C8000C1698069FFF70FFF0490731C18D0049BA3 @@ -204,7 +204,7 @@ :100CA00004D1320006990A32D20011512622FF32B5 :100CB0009B5C012B04D10A36F600049BA6197360D5 :100CC000019B1B68A3E73668002E00D012E721E7DE -:100CD0004C49380008F028F8002800D0FFE0310027 +:100CD0004C49380008F092F8002800D0FFE03100BD :100CE0004A48FFF787FE002806D02300FF331B7C0D :100CF000012B01D18369636131004548FFF77AFE1A :100D0000002800D1EBE02300FF331B7C012B00D037 @@ -220,12 +220,12 @@ :100DA0001F48FFF727FE00280BD063191A001932DD :100DB000FF321278012A04D102326A439B188269F9 :100DC0005A6202350A2D2DD03668D4E7A07007008C -:100DD000C9E7C04663C80D10CCC70D1081C70D1000 -:100DE00088C70D10AAC80D1092C70D109AC70D1014 -:100DF000A9C70D10B0C70D1065C70D10B2C80D10F2 -:100E00006FC70D1074C70D10C0A0020802C90D10E5 -:100E10007CC70D10BAC70D10C7C70D10CFC70D1076 -:100E2000D9C70D1005992F48FFF7E4FD051E20D006 +:100DD000C9E7C04633C90D109CC80D1051C80D108D +:100DE00058C80D107AC90D1062C80D106AC80D10D0 +:100DF00079C80D1080C80D1035C80D1082C90D10AE +:100E00003FC80D1044C80D10C0A00208D2C90D1073 +:100E10004CC80D108AC80D1097C80D109FC80D1032 +:100E2000A9C80D1005992F48FFF7E4FD051E20D035 :100E300001002D48FFF7DEFD00280AD02423FF33F0 :100E4000E35C012B05D1C3685A1E934122004D3249 :100E5000137029002548FFF7CDFD002809D0912304 @@ -233,13 +233,13 @@ :100E70002370380009B0F0BD29001D48FFF7BAFD06 :100E8000002800D152E68668002E00D14EE63100DF :100E90001848FFF7AFFD002821D007691649380030 -:100EA00007F042FF002800D012E731001348FFF797 +:100EA00007F0ACFF002800D012E731001348FFF72D :100EB000A1FD002806D02300FF339B7B012B01D12D :100EC0008369E36031000E48FFF794FD002806D0E7 :100ED0002300FF33DB7B012B01D18369236136685B -:100EE000D2E7C046DFC70D10EBC70D10F7C70D10D6 -:100EF00065C70D10B2C80D106FC70D1002C90D10D7 -:100F00007CC70D10F8B507000C000100BA48FFF7C8 +:100EE000D2E7C046AFC80D10BBC80D10C7C80D1063 +:100EF00035C80D1082C90D103FC80D10D2C90D1094 +:100F00004CC80D10F8B507000C000100BA48FFF7F7 :100F100071FDBA4E051E2AD001003000FFF76AFDB0 :100F2000002808D0230068331B78012B03D1006907 :100F3000FFF708FD20702900B148FFF75BFD00288E @@ -286,26 +286,26 @@ :1011C0006A439B188269DA6331001A48FFF712FC00 :1011D00000280AD063191A0083321278012A04D138 :1011E0003A006A439B1882691A6402350A2D01D0BD -:1011F0003668D6E70020F8BD09C80D100DC80D10DF -:1012000018C80D1020C80D1024C80D1027C80D10C7 -:101210002EC80D1036C80D1055C80D1013C90D106D -:101220001DC90D1024C90D103BC80D103FC80D106D -:10123000D9C70D107CC70D104DC80D1070B5040036 -:101240000D0086B00021142201A806F001FF29003C +:1011F0003668D6E70020F8BDD9C80D10DDC80D103F +:10120000E8C80D10F0C80D10F4C80D10F7C80D1087 +:10121000FEC80D1006C90D1025C90D10E3C90D102B +:10122000EDC90D10F4C90D100BC90D100FC90D102B +:10123000A9C80D104CC80D101DC90D1070B50400C3 +:101240000D0086B00021142201A806F06BFF2900D2 :101250002000FFF7CFFB0400002C18D021001C4811 :10126000FFF7C8FB0028F7D00569002D0AD0194EFA -:101270002900300007F058FD00280BD1310001A8EB -:1012800007F05CFD210001A8FFF7B4FB040020007B -:1012900006B070BD104E2900300007F045FD002853 -:1012A000ECD029000D4807F03FFD0028E6D00C4E99 -:1012B0002900300007F038FD0028DFD02900094858 -:1012C00007F032FD0028DDD121000748C1E7C04604 -:1012D000B2C80D10DAC80D10C3C80D10CAC80D1061 -:1012E000D2C80D10B7C80D10BDC80D1010B5FFF74E +:101270002900300007F0C2FD00280BD1310001A881 +:1012800007F0C6FD210001A8FFF7B4FB0400200011 +:1012900006B070BD104E2900300007F0AFFD0028E9 +:1012A000ECD029000D4807F0A9FD0028E6D00C4E2F +:1012B0002900300007F0A2FD0028DFD029000948EE +:1012C00007F09CFD0028DDD121000748C1E7C0469A +:1012D00082C90D10AAC90D1093C90D109AC90D101D +:1012E000A2C90D1087C90D108DC90D1010B5FFF7DB :1012F00081FB0124002809D08168002906D0044818 :10130000FFF778FB002801D0C468E4B2200010BDCC -:101310005BC80D10F0B5050085B000200C0006F08C -:10132000C7F9280006F038FA0190002800D14BE2F6 +:101310002BC90D10F0B5050085B000200C0006F0BB +:1013200031FA280006F0A2FA0190002800D14BE221 :101330000100A148FFF75EFB051E00D0B4E00123C9 :101340005B42009301999D48FFF754FB051E00D0B6 :10135000EEE001235B42009301999948FFF74AFBB5 @@ -329,7 +329,7 @@ :10147000FFF73CFF002D00D19EE1AD692300220063 :101480003C338232643402995D6019606946097B9D :101490000833507011700232A342F4D1019806F063 -:1014A00021F9009805B0F0BD474F01003800FFF763 +:1014A0008BF9009805B0F0BD474F01003800FFF7F9 :1014B000C5FE290006003800FFF718FF0700002EC0 :1014C0002FD03069FFF73EFA2300683320701F7079 :1014D0000023434F290038000093FFF7AFFE290097 @@ -346,10 +346,10 @@ :10158000124F29003800FFF759FE290006003800E5 :10159000FFF7ACFE002E00D1DBE6B36963712300D8 :1015A0006D331870D8E601235B420093D4E7012322 -:1015B0005B420093E4E7C04609C80D1024C80D1033 -:1015C00027C80D103BC80D100DC80D1020C80D10F8 -:1015D0003FC80D10D9C70D107CC70D104DC80D1098 -:1015E00018C80D107A4F01003800FFF727FE2900B8 +:1015B0005B420093E4E7C046D9C80D10F4C80D1093 +:1015C000F7C80D100BC90D10DDC80D10F0C80D10B7 +:1015D0000FC90D10A9C80D104CC80D101DC90D1054 +:1015E000E8C80D107A4F01003800FFF727FE2900E8 :1015F00006003800FFF77AFE0700002E00D1A1E0B8 :101600003069FFF79FF923006E33A0711F70714F8F :1016100029003800FFF712FE290006003800FFF706 @@ -380,10 +380,10 @@ :1017A0005B42009334E601235B42009341E6012350 :1017B0005B420295009353E601235B4200935DE692 :1017C00001235B42009369E605235B42009368E6D0 -:1017D0000DC80D1018C80D1020C80D102EC80D1002 -:1017E00036C80D1055C80D1013C90D101DC90D10A8 -:1017F00024C90D10F0B5050085B000200C0005F0DF -:1018000057FF280005F0C8FF0190002800D181E1B2 +:1017D000DDC80D10E8C80D10F0C80D10FEC80D10C2 +:1017E00006C90D1025C90D10E3C90D10EDC90D1066 +:1017F000F4C90D10F0B5050085B000200C0005F00F +:10180000C1FF280006F032F80190002800D181E1E4 :101810000100C248FFF7EEF8051E00D13AE1C04FC3 :1018200001003800FFF70AFD290006003800FFF725 :101830005DFD002E00D109E1B36923702300FF3361 @@ -419,7 +419,7 @@ :101A100019322433FF324C31029E5D601E606E46E7 :101A2000367B08335070167002329942F4D1019916 :101A30004748FEF7DFFF051E3DD101235B420093BF -:101A4000019805F04FFE009805B0F0BD01235B4200 +:101A4000019805F0B9FE009805B0F0BD01235B4296 :101A5000F8E601235B42009309E701235B42009310 :101A600019E701235B42009327E701235B420093C0 :101A70003AE701235B4200934FE701235B42009367 @@ -432,11 +432,11 @@ :101AE0001D4F29003800FFF7A9FB29000600380028 :101AF000FFF7FCFB002EA0D0F3685A1E9341220092 :101B00004D3213702423FF33E05499E701235B42E5 -:101B10000093E5E705235B42009394E763C80D104B -:101B2000CCC70D10AAC80D1092C70D1088C70D1094 -:101B3000B0C70D10BAC70D10A9C70D1065C70D109D -:101B400002C90D107CC70D10CFC70D10D9C70D10DD -:101B5000DFC70D10F7C70D10EBC70D107FB5DC23E5 +:101B10000093E5E705235B42009394E733C90D107A +:101B20009CC80D107AC90D1062C80D1058C80D1050 +:101B300080C80D108AC80D1079C80D1035C80D1059 +:101B4000D2C90D104CC80D109FC80D10A9C80D109A +:101B5000AFC80D10C7C80D10BBC80D107FB5DC2372 :101B60009B0500936C46002302AD01950290154839 :101B70006B60C460144C0668002E07DBA34203D1DF :101B80000120404204B070BD0133F4E7A342F7D016 @@ -445,14 +445,14 @@ :101BB00001D00098E6E7029B002013606B680B6081 :101BC000E0E7C04600002340983A0000F0B5170057 :101BD0008A22434C9200A544079008910EA8002148 -:101BE000BFB2099306F034FA0CAA0BA93800FEF72D +:101BE000BFB2099306F09EFA0CAA0BA93800FEF7C3 :101BF000A5FD00260500B0422CD1C02280210B9B00 :101C0000D2051A40C9058A4237D10C9BDC1DE40875 -:101C100020000D9406F0DEF90925061E1AD00100F9 +:101C100020000D9406F048FA0925061E1AD001008E :101C20000DAB22003800FEF799FD051E12D16B4660 :101C3000198C102304930293079B079A3033019366 :101C4000284B40320392009332000D9B0EA8FEF702 -:101C500097FD0500300006F0C7F9002D05D12022C0 +:101C500097FD0500300006F031FA002D05D1202255 :101C600009990EA8FEF7ECFC05000EA8FEF7DAFCB9 :101C7000280099239B009D44F0BD1B4A934207D145 :101C80000C9B5C0809230134E4085C433B34BFE748 @@ -464,9 +464,9 @@ :101CE0009CFDFFFF0901202200000170000001603F :101CF000000002700000026000000370000003603A :101D000070B508000D0014000E1E05D0731B9C4218 -:101D100003DCE043C017204070BD307803F00CFDB9 +:101D100003DCE043C017204070BD307803F024FDA1 :101D20000136F3E770B500240D001600A1420AD178 -:101D3000200070BD03F00CFDC0B2285501340A2804 +:101D3000200070BD03F024FDC0B2285501340A28EC :101D4000F6D00D28F4D0B442F4DBF1E70000000037 :101D50000230800803D001300238FCD1C046C046B2 :101D60007047EFF3108072B6704780F310887047A9 @@ -487,7 +487,7 @@ :101E500001005000020050000500520070B50A4D0C :101E600004002B6831331B78834204D8E6210748ED :101E7000490002F035FC2B681A00B0321088444348 -:101E8000186A201870BDC046E0AD02081CCB0D10CA +:101E8000186A201870BDC046E0AD0208ECCB0D10FA :101E900010B50020FFF7E2FF0A4B1C682300B433A3 :101EA0001B68C0180368002B0ADB074B1868FFF794 :101EB0007FFF012263689A609A68002AFCD110BDF6 @@ -500,16 +500,16 @@ :101F200025F8144B144A1A605D609C60DC60134B0A :101F30001B6854331978002915D0FFF71FFF0400E0 :101F4000FFF728FFFA210134013060430C4B0D4CA0 -:101F500089004443186805F023FD0100200005F0C6 -:101F60001FFD094BC118802040000AF005FB70BD21 +:101F500089004443186805F08DFD0100200005F05C +:101F600089FD094BC118802040000AF05DFB70BD5F :101F70000648FCE708A802080001001CE0AD0208C2 :101F800020A1020860F590009808000006005200A9 :101F900070B5C40506000D00E40D2AD1002928D033 :101FA00002F0E4FF144B154A1A605C609E60DD602D :101FB000134B1B6852331978002915D0FFF7DEFE4A :101FC0000400FFF7E7FEFA210134013060430D4BB6 -:101FD0000D4C89004443186805F0E2FC0100200024 -:101FE00005F0DEFC094BC118802040000AF0C4FA5D +:101FD0000D4C89004443186805F04CFD01002000B9 +:101FE00005F048FD094BC118802040000AF01CFB99 :101FF00070BD0748FCE7C04608A8020800010005BC :10200000E0AD020820A10208C0EA21014826000034 :102010000600520070B506000C001500072903D910 @@ -518,7 +518,7 @@ :10204000B01AC0090001C0181F231D40032C07D877 :10205000E400A340A54002689A431543056070BDA3 :10206000043CE400A340A54042689A431543456000 -:10207000F5E7C04691020000AECB0D1092020000C1 +:10207000F5E7C046910200009ECC0D1092020000D0 :10208000E0AD0208F0B585B000900D001400002806 :1020900000D138E1002A00D135E1072903D94E21CA :1020A0009A4802F01DFB2368012B03D94F21974862 @@ -559,20 +559,20 @@ :1022D000284003436046256A284018250343E06AE6 :1022E000C00028400343206BFF24400120400343EB :1022F000FE20029D80000540AB400020A1430B431F -:10230000136005B0F0BD0D48FBE7C04667CB0D106C -:10231000AECB0D1031030000CD030000CE03000052 +:10230000136005B0F0BD0D48FBE7C04647CC0D108B +:102310009ECC0D1031030000CD030000CE03000061 :10232000E0AD0208F1060000F206000072060000AF :10233000730600000C0400000D04000001005A00A8 :102340000B4B70B51B680500B4331B680C00C31839 :102350001B68002B09DA0B0C03D00649064802F073 :10236000BFF90020A4B26C6070BD0448FCE7C04611 -:10237000E0AD0208DE0200001CCB0D1001008A0057 +:10237000E0AD0208DE020000ECCB0D1001008A0087 :10238000036870B505000C00002B0BDAC2600B0C63 :1023900004D0B1210448890002F0A2F90020A4B2BF -:1023A000AC6070BD0148FCE71CCB0D1001008A0039 +:1023A000AC6070BD0148FCE7ECCB0D1001008A0069 :1023B00070B505000C1E03D1A221084802F090F967 :1023C000074B1B68B4331B68EB181B68002B03DA40 -:1023D0000020EB68236070BD0248FCE7F6CB0D10CF +:1023D0000020EB68236070BD0248FCE7F6CC0D10CE :1023E000E0AD020801008A00024B1A68002A00D101 :1023F000186070471CA80208F0B5314D1F002B680B :1024000085B0040002910392002B03D1BE212D4818 @@ -587,7 +587,7 @@ :1024900027F9019B6D011B041A0C13430D4A751992 :1024A000AD182B60039BE361029B23620023A361B1 :1024B0000A9B002B01D01B88A38105B0F0BDC0464C -:1024C0001CA8020840CC0D10E0AD02081CCB0D107A +:1024C0001CA8020850CD0D10E0AD0208ECCB0D1099 :1024D0000702000008100000F0B5040085B00028D5 :1024E00003D15B21214802F0FBF86368032B03D979 :1024F0005D211E4802F0F4F8E36A002B03D161214C @@ -597,7 +597,7 @@ :1025300000952369266A676AFFF75EFF00213B006A :102540000A0000913000FFF757FF216B280002F0CE :102550004FF80022AB5E002B06DB1F2213401E3A11 -:102560009A401300034A136005B0F0BD40CC0D1033 +:102560009A401300034A136005B0F0BD50CD0D1022 :10257000E0AD020800E100E0F7B504000F00151E11 :10258000019304D183211D48490002F0A9F81C4E93 :102590003368002B04D108211848FF3102F0A0F85D @@ -606,13 +606,13 @@ :1025C0006368140011009C407B6899402B680904E3 :1025D0009BB20B432B60019BF5607B62BA61230CBD :1025E00004D0B1210748890002F07AF80020A4B293 -:1025F000B460FEBD0448FCE70448FAE740CC0D1087 -:102600001CA802081CCB0D1004028A0007028A00D5 +:1025F000B460FEBD0448FCE70448FAE750CD0D1076 +:102600001CA80208ECCB0D1004028A0007028A0005 :10261000F8B5114F04003B680E001500002B04D1E3 :1026200068210E48FF3102F05BF82C2060433C68C3 :102630002418236A002B04D16C210848FF3102F0D2 :102640004FF8E369AB4204D90020236AAD00EE5095 -:10265000F8BD0348FCE7C0461CA8020840CC0D109A +:10265000F8BD0348FCE7C0461CA8020850CD0D1089 :102660000A028A00002373B504000193984204D142 :10267000ED212C48490002F033F82369002B04D1E6 :10268000DC212848FF3102F02BF86369002B04D1CC @@ -625,16 +625,16 @@ :1026F00031002069FFF724FEADB2002D09D06369D7 :102700001D6000251B68636AAB4205D0984765626F :10271000A56163691B6873BDA36A002BF8D0984755 -:10272000F6E7C04640CC0D10E0AD020870B5084C8D +:10272000F6E7C04650CD0D10E0AD020870B5084C7C :1027300005002368002B04D1DD210648490001F083 :10274000CFFF2C20454320684019FFF78BFF70BD59 -:102750001CA8020840CC0D1070B50A4D04002B686F +:102750001CA8020850CD0D1070B50A4D04002B685E :1027600031331B78834204D8E6210748490001F041 :10277000B7FF2B681A00B03210884443186A20183B -:1027800070BDC046E0AD02081CCB0D10F8B5174B6C +:1027800070BDC046E0AD0208ECCB0D10F8B5174B9C :102790000D001B6831331B78834225D9002923D0D3 :1027A0001F240B681C401FD1FFF7D6FF07002B68C2 -:1027B0000F4EDA0821003060686805F049FC2100FE +:1027B0000F4EDA0821003060686805F0B3FC210094 :1027C0003800FFF7BDFD21002A003068FFF7D8FD73 :1027D000041E07D101003068FFF7B2FD030020009E :1027E000002B00D00348F8BD0348FCE7E0AD020829 @@ -655,10 +655,10 @@ :1028D0002B041203290013400F2211400B433168CF :1028E000A402096964188021C9016350605810402E :1028F000401B431E9841044B4042184070BDC046E7 -:10290000E0AD02088BCC0D100300C20070B5094D7C +:10290000E0AD0208ABCD0D100300C20070B5094D5B :1029100004002B689B6CC340DB0703D4C721064827 :1029200001F0DEFE2B6810341B69A402E0580F236F -:10293000184070BDE0AD02088BCC0D1070B50400DE +:10293000184070BDE0AD0208ABCD0D1070B50400BD :102940000D00002804D17A212448FF3101F0C8FE8F :102950006B89DB0B04D0BD212048490001F0C0FE8B :102960000222AB799343012B04D07C211B48FF3119 @@ -668,7 +668,7 @@ :1029A00092071343EA79D2000A4013430122297A9D :1029B0004A40920113431A0009490A409A420BD136 :1029C0006262606A0840801A43425841054B4042A7 -:1029D0001840054BC01870BD0448FCE78BCC0D10A7 +:1029D0001840054BC01870BD0448FCE7ABCD0D1086 :1029E000DBFEFFE0FDFF3DFF0300C2000100C2006F :1029F00070B504000D00002804D1C2212E48FF311B :102A000001F06EFE6B89DB0B04D0E1212A484900FE @@ -682,14 +682,14 @@ :102A80009B0118432B7949051B060B4003436360E8 :102A90002260216891420DD16068084A1040C01A36 :102AA00043425841064B40421840064BC01870BD87 -:102AB0000548FCE70348FAE78BCC0D10FFFEFFFF4B +:102AB0000548FCE70348FAE7ABCD0D10FFFEFFFF2A :102AC000FDFF3DFF0300C2000100C20010B5041E5F :102AD00004D1FF210748490001F002FE8023626A09 :102AE0001B0613436362606A034BC00F0138184032 -:102AF00010BDC0468BCC0D100300C20010B5041EE3 +:102AF00010BDC046ABCD0D100300C20010B5041EC2 :102B000003D10749074801F0EBFD802362681B06EB :102B1000134363606068044BC00F0138184010BD58 -:102B20004E0200008BCC0D100300C20070B50400F3 +:102B20004E020000ABCD0D100300C20070B50400D2 :102B30000D00002803D12449244801F0D1FD0222D0 :102B4000AB799343012B04D0A5212048C90001F0A3 :102B5000C7FD0222EB799343012B03D01C491B488C @@ -699,7 +699,7 @@ :102B900001400B43297A4A40920113431A000E491F :102BA0000A409A420DD16262606A0840801A43422C :102BB00058410A4B40421840094BC01870BD0948A3 -:102BC000FCE70948FAE7C046270500008BCC0D104A +:102BC000FCE70948FAE7C04627050000ABCD0D1029 :102BD00029050000E0AD0208DBFEFFE0FDFF3DFF40 :102BE0000300C2000200C2000100C20070B505006F :102BF0000C00002803D12F492F4801F071FDA37963 @@ -714,17 +714,17 @@ :102C8000030060796A6003432B60286898420ED184 :102C900068680840801A434258410C4B4042184033 :102CA0000B4BC01870BD0B48FCE70B48FAE708480F -:102CB000F8E7C046750500008BCC0D1076050000C6 +:102CB000F8E7C04675050000ABCD0D1076050000A5 :102CC00077050000E0AD0208DBFEFFFFFDFF3DFFE2 :102CD0000300C2000200C2000100C20010B5041EC1 :102CE00003D10B490B4801F0FBFC0B4B1B682F3346 :102CF0001B78012B0AD18023626A1B06134363628F :102D0000606A064BC00F0138184010BD0448FCE74C -:102D1000BD0500008BCC0D10E0AD02080300C20021 +:102D1000BD050000ABCD0D10E0AD02080300C20000 :102D20000200C20010B5041E03D10B490B4801F08C :102D3000D7FC0B4B1B682F331B78012B0AD1802348 :102D400062681B06134363606068064BC00F01385E -:102D5000184010BD0448FCE7160600008BCC0D108F +:102D5000184010BD0448FCE716060000ABCD0D106E :102D6000E0AD02080300C2000200C20070B504001A :102D70000D00002803D12149214801F0B1FC2B7836 :102D8000032B03D91F491E4801F0AAFC6B78032BC3 @@ -735,7 +735,7 @@ :102DD00013431A000E490A409A420DD16262606A9A :102DE0000840801A434258410A4B404218400A4B5F :102DF000C01870BD0948FCE70948FAE7560800000A -:102E00008BCC0D105708000058080000E0AD0208F8 +:102E0000ABCD0D105708000058080000E0AD0208D7 :102E1000DBFEFFE0FDFF3DFF0300C2000200C20039 :102E20000100C20070B504000D00002803D1214943 :102E3000214801F055FC2B78032B03D91F491E486C @@ -746,17 +746,17 @@ :102E80000B43A9784A40920113431A000E490A40A5 :102E90009A420DD1626060680840801A43425841EE :102EA0000A4B404218400A4BC01870BD0948FCE765 -:102EB0000948FAE7A70800008BCC0D10A80800000D +:102EB0000948FAE7A7080000ABCD0D10A8080000EC :102EC000A9080000E0AD0208DBFEFFE0FDFF3DFFCA :102ED0000300C2000200C2000100C20010B5041EBF :102EE00003D10B490B4801F0FBFB0B4B1B682F3345 :102EF0001B78012B0AD18023626A1B06134363628D :102F0000606A064BC00F0138184010BD0448FCE74A -:102F1000EB0800008BCC0D10E0AD02080300C200EE +:102F1000EB080000ABCD0D10E0AD02080300C200CD :102F20000200C20010B5041E03D10B490B4801F08A :102F3000D7FB0B4B1B682F331B78012B0AD1802347 :102F400062681B06134363606068064BC00F01385C -:102F5000184010BD0448FCE7440900008BCC0D105C +:102F5000184010BD0448FCE744090000ABCD0D103B :102F6000E0AD02080300C2000200C20070B5040018 :102F70000D00002803D12149214801F0B1FB2B7835 :102F8000032B03D91F491E4801F0AAFB6B78032BC2 @@ -767,7 +767,7 @@ :102FD00013431A000E490A409A420DD16262606A98 :102FE0000840801A434258410A4B404218400A4B5D :102FF000C01870BD0948FCE70948FAE7A8090000B5 -:103000008BCC0D10A9090000AA090000E0AD020850 +:10300000ABCD0D10A9090000AA090000E0AD02082F :10301000DBFEFFE0FDFF3DFF0300C2000200C20037 :103020000100C20070B504000D00002803D1214941 :10303000214801F055FB2B78032B03D91F491E486B @@ -778,7 +778,7 @@ :103080000B43A9784A40920113431A000E490A40A3 :103090009A420DD1626060680840801A43425841EC :1030A0000A4B404218400A4BC01870BD0948FCE763 -:1030B0000948FAE7F90900008BCC0D10FA09000065 +:1030B0000948FAE7F9090000ABCD0D10FA09000044 :1030C000FB090000E0AD0208DBFEFFE0FDFF3DFF75 :1030D0000300C2000200C2000100C200094B1B68CD :1030E0002F331B78012B0AD18023426A1B0613431E @@ -838,7 +838,7 @@ :10344000AB5000239E4209D01800134A7360B3604A :103450003360F36033623363F362726305B0F0BDCF :103460000023A27F9A4200D1C5E663685A1E062354 -:10347000BEE680239B0072E70848EFE7D2CC0D1030 +:10347000BEE680239B0072E70848EFE702CE0D10FE :1034800092F4FFFF8CF8FFFF6D0B0000C80F0000E7 :1034900073070000880F0000EFCDAB000160AA00A9 :1034A000036810B50400002B07D0012001F00EF9CD @@ -853,18 +853,18 @@ :103530000E4801F0D5F8C022E021AB6892011B03D0 :1035400013406A68C90212040A4013430122296821 :1035500000200A4080211343EA68490412060A4009 -:103560001343236070BD0248FCE7C0461DCD0D101B +:103560001343236070BD0248FCE7C0465DCE0D10DA :103570000400B20010B50400012907D9A0210748B2 :1035800001F0AEF801232268134304E00029F9D1C9 -:10359000012203689343236010BDC0461DCD0D106A +:10359000012203689343236010BDC0465DCE0D1029 :1035A00070B54E1EF3B204001500012B07D9042993 :1035B00025D0082927D0E521154801F091F8032DE1 :1035C00003D9E621124801F08BF8072E14D83000F9 -:1035D00004F0DCF9041312171212121B80231B01D2 +:1035D00004F046FA041312171212121B80231B0167 :1035E000E418002C08D0C0222D0492022368154054 :1035F000084A13401D43256070BD8823EFE7032A66 :10360000DFD89023EBE7032ADBD89823E7E7C0460F -:103610001DCD0D10FFFFFCFFF0B5160089B005931E +:103610005DCE0D10FFFFFCFFF0B5160089B00593DD :103620000EAB04CB01901B780291049310AB1D7874 :10363000331FDBB20392129CFA2B04D83E213B4885 :10364000FF3101F04DF8049B043BDBB2FA2B04D8A8 @@ -881,7 +881,7 @@ :1036F0001B5D01342B4332008C4200D20022134365 :10370000019AE4B2136507A8FFF7CAFEE1E7F023C8 :103710001B011D40636A3F0C0793C0239B021E40A0 -:10372000029B2B4333433E00C7E7C0461DCD0D101F +:10372000029B2B4333433E00C7E7C0465DCE0D10DE :103730000200B200F7B50193043BDBB205000F00B5 :103740001600099CFA2B04D8D5211648490000F030 :10375000C7FF002E21D007226B6C1340032B1ED80D @@ -889,7 +889,7 @@ :103770001B040B4013432B65381E0DD0089B27609C :10378000F922A660E36102230020A361D200A958B8 :10379000013B0B436660AB50FEBD0348FCE70348AA -:1037A000FAE7C0461DCD0D100400B2000100B200C2 +:1037A000FAE7C0465DCE0D100400B2000100B20081 :1037B000F7B50193043BDBB205000F001600099C2E :1037C000FA2B04D89C211648890000F089FF002EAE :1037D00022D007226B6C1340032B1FD88023C021FB @@ -897,7 +897,7 @@ :1037F0000B4013432B65381E0DD0089BE760F92260 :103800006661236204230020A361D200A958023B11 :103810000B432661AB50FEBD0248FCE70248FAE7C5 -:103820001DCD0D100400B2000100B200F0B51F0064 +:103820005DCE0D100400B2000100B200F0B51F0023 :10383000043BDBB28FB006000D001400FA2B03D856 :103840005B495C4800F04CFF002C00D1ABE0072244 :10385000736C1340032B00D9A7E0631E9B039A0BE4 @@ -922,7 +922,7 @@ :103980003300D4331B6823711B0A63713300D033B7 :103990001B68A371BAE7FFF797FD3868211DFFF791 :1039A00093FD0825B2E7054874E7054872E7C0466D -:1039B000CD0200001DCD0D100200B2000400B200C7 +:1039B000CD0200005DCE0D100200B2000400B20086 :1039C0000100B20000290CD00722436C1340032BE6 :1039D00009D8C023013989B21B03194301650020AE :1039E00070470248FCE70248FAE7C0460400B2000C @@ -1004,7 +1004,7 @@ :103EA0006569022728602B716B710125266A012044 :103EB0006D42337137607371B560336133750526B8 :103EC000A063A06A3A310660266B037133710878EB -:103ED0004006400F052800D9F4E6E16A03F056FDDC +:103ED0004006400F052800D9F4E6E16A03F0C0FD72 :103EE00065787E847878042020604EE78026033D44 :103EF0003606354397E70698400618D502260898F7 :103F0000B043012813D00A2084466E18F67A8C44F8 @@ -1018,8 +1018,8 @@ :103F80002E5C760904D1013E9E6060462D5CE1E71F :103F9000FF261F739E60F8E703251D60043D18711E :103FA00058719D60186118756AE7E56335600D60AA -:103FB00088E6C046F903000074CD0D100500B2007C -:103FC0000200B200FEFF4DFF64CD0D106CCD0D1050 +:103FB00088E6C046F9030000C4CE0D100500B2002B +:103FC0000200B200FEFF4DFFB4CE0D10BCCE0D10AE :103FD0000123E763336034330B6073E64023E3630C :103FE0003F3B33600433F7E78023E363423B3360B6 :103FF0000133F1E7F0B589B002900792002800D1B3 @@ -1031,7 +1031,7 @@ :1040500000F046FB237A032B03D96F21794800F047 :104060003FFBA369002B03D17021764800F038FB99 :10407000A3691B68013B032B03D97121714800F030 -:104080002FFB2278501E072800D9D7E003F07EFCD2 +:104080002FFB2278501E072800D9D7E003F0E8FC68 :104090000432D635D6D6D6388021029B09015D1868 :1040A000237A2968684F18043040394001430420BE :1040B00029606168014226D0079902980091A169A0 @@ -1040,7 +1040,7 @@ :1040E000A4D10020049B002B02D0B220000418436E :1040F00009B0F0BD029B8821D0E7029B9021CDE75B :10410000029B9821CAE763689B07E3D52169E068B1 -:1041100003F0CCFC002903D08C214A4800F0E0FADF +:1041100003F036FD002903D08C214A4800F0E0FA74 :1041200023694A4A934202D95A1E134203D08D2171 :10413000444800F0D5FAFF218C466746E168A06943 :10414000B9438268036AA96021694942B943E960B9 @@ -1059,7 +1059,7 @@ :104210000A40802109061143E9661B7D1B043340D7 :104220002B6702216268FF3111408022237A120637 :104230001B0433400A4313432B604BE7044851E708 -:10424000034855E774CD0D10FFFFFCFFFFFF000092 +:10424000034855E7C4CE0D10FFFFFCFFFFFF000041 :104250000400B200104B1B683C331B78834219D911 :10426000042910D94B1EFF3B132B13D81F231940D1 :104270000A4B8000C018C02304229B00C150403369 @@ -1069,7 +1069,7 @@ :1042B000834204D8A3210C48490000F011FA0B4BAB :1042C000A400E418D0239B00E058072318400428DA :1042D00007D1C0239B00E0581F23034080204000EB -:1042E000184310BDE0AD0208C3CD0D1000002640FC +:1042E000184310BDE0AD020823CF0D10000026409A :1042F000F7B5041E03D14649464800F0F1F9B02352 :10430000454DDB00EB58002B00DA7FE0434B226881 :104310009A4203D942493F4800F0E2F9E279236822 @@ -1088,7 +1088,7 @@ :1043E000E020A379184AC0001B02A95803401748CF :1043F00001400B43AB50238A01981B04A95803408A :104400001348014000200B43AB50FEBD1148FCE7B0 -:104410003F020000C3CD0D1000002640FFFF030047 +:104410003F02000023CF0D1000002640FFFF0300E5 :1044200049020000FF1F0000FF01000051020000D0 :104430000000FF0184050000590200005A0200003C :1044400000FF1F00630200008C050000FFF8FFFF63 @@ -1114,10 +1114,10 @@ :104580005B8FDBB28B4203D17F21094800F0A8F892 :104590000720802205408020336892011B680006B6 :1045A000A4180543A400E550E9E7C046E0AD0208C1 -:1045B0000CCE0D100A4B70B59B680A4E10300D00E2 +:1045B0007CCF0D100A4B70B59B680A4E10300D0071 :1045C0008400B34209D1002904D1A0210648490042 :1045D00000F086F83059355170BD044B1859FBE78F -:1045E00000ED00E000A002080CCE0D1000000D1040 +:1045E00000ED00E000A002087CCF0D1000000D10CF :1045F000F8B506000D00002841D04368032B03D90D :104600003B21204800F06CF80023F05E002828DBF6 :10461000B178FFF795FF0024FF220327944600237B @@ -1127,13 +1127,13 @@ :104650009A680F4B9A4202D12900FFF7ABFF200066 :10466000F8BD0C4CD8E70F263340083B074E9B089B :104670009B009B19DE6932401143D961E7E7054C85 -:10468000EDE7C0460CCE0D1000E100E000ED00E0CB +:10468000EDE7C0467CCF0D1000E100E000ED00E05A :1046900000A002080100560070B5802504002D021C :1046A000AC4205D8064B18686043FDF751FB70BD5E :1046B000044B1868FDF74CFB034BE418F0E7C046C9 :1046C00030A1020828A102080080FFFF10B5034BAB :1046D0001B785843FDF73CFB10BDC04634A10208CF -:1046E00070B50D00044C01001822200004F046FBB8 +:1046E00070B50D00044C01001822200004F0B0FB4E :1046F000A56101BEFEE7C046B0A702088022054BB7 :1047000012069A64986C044BC043C0171840034BC0 :10471000C018704700002740FDFFB9FF03004600A6 @@ -1187,7 +1187,7 @@ :104A10001300222801D8634263411340180010BDDF :104A200010B5074C236831331B78002B04D1E621E5 :104A300004484900FFF754FE2368186A10BDC046B9 -:104A4000E0AD02081CCB0D1030B5040085B00D00A0 +:104A4000E0AD0208ECCB0D1030B5040085B00D00D0 :104A5000042803D927492848FFF742FE6B1E012B83 :104A600007D9FB222B1F134203D024492248FFF70A :104A700037FE234BA400E458042D01D0012D1AD198 @@ -1198,7 +1198,7 @@ :104AC000F7D01C6903E01C006369002BFBD10020B8 :104AD000002CEED0A3682B4209D1E36829001A68A4 :104AE0005B6802920193039302A8236898472469A4 -:104AF000EEE7C046E509000055CE0D10E6090000BE +:104AF000EEE7C046E5090000D5CF0D10E60900003D :104B000048A8020844A80208FF004200F8B50400C3 :104B1000012803D92A492B48FFF7E2FDFFF786FE5B :104B200085B2FFF78CFE070000208026FDF7EEFE21 @@ -1211,7 +1211,7 @@ :104B90001A40124BEFE70C4B1B68B4331B68EB1841 :104BA0001A68002AFCDBEB6800201B0EA02BE9D161 :104BB000D2E7222DE6D9FFF733FF0500D4E7C04640 -:104BC0007F0A000055CE0D10E0AD020818F000007D +:104BC0007F0A0000D5CF0D10E0AD020818F00000FC :104BD000FFFFFFFE01000030040042000100000C56 :104BE000F7B50700012803D929492A48FFF778FDBE :104BF000FFF725FE80235B0098421CD0FDF7B1F83B @@ -1224,27 +1224,27 @@ :104C60000C40AB588B431C43AC50002F06D1FFF7D0 :104C700065FE3E000198FDF778F8E1E70720FFF7B1 :104C800025FDFFF723FE0020FFF740FF0600F1E7B8 -:104C90005308000055CE0D1000002640307F000064 +:104C900053080000D5CF0D1000002640307F0000E3 :104CA00010180000410700001CFF00000300420034 :104CB00010B5041E03D111491148FFF711FDF2226E :104CC000104BD2011B68DB689A582260F022D20197 :104CD0009A5862600C4A9A58A2600C4A9A58E2604C :104CE0000B4A9A5822610B4A9A5862610A4A9A58AA :104CF000A2610A4A9B58E36110BDC046D40A000075 -:104D000055CE0D10E0AD02080478000008780000D0 +:104D0000D5CF0D10E0AD020804780000087800004F :104D10000C7800001078000014780000187800006B :104D200010B5041E03D110491048FFF7D9FCF0223A :104D30000F4B61681B68D201DB689950A1680D4A6E :104D40009950E1680C4A995021690C4A995061695F :104D50000B4A9950A1690B4A9950E1690A4A995046 -:104D60002168E832995010BDFC0A000055CE0D10A4 +:104D60002168E832995010BDFC0A0000D5CF0D1023 :104D7000E0AD020804780000087800000C7800001C :104D8000107800001478000018780000F7B50700CC :104D9000012803D940494148FFF7A2FC404D6B6808 :104DA000002B4AD1FCF7DDFF6B680190002B56D138 :104DB0003C4E33681A0043321278002A07D09B68B1 :104DC000E0331B68DB0602D53748FFF771FFFFF7BA -:104DD00036FD80235B00984246D1380007F0BCFBCB +:104DD00036FD80235B00984246D1380007F034FC52 :104DE000002433681A0043321278002A17D00028B2 :104DF00015D09B68E0331B68DB0610D5FFF716FD66 :104E0000294B212808D032681300B03319880723B2 @@ -1256,7 +1256,7 @@ :104E60000120FFF7F1FDA3E7FFF7DAFD3368B43364 :104E70001B68C0180368002B0BDB04230D4A116963 :104E80000B431361012F02D030BF0020A8E720BFE1 -:104E9000FBE70020054CA4E7AE02000055CE0D1044 +:104E9000FBE70020054CA4E7AE020000D5CF0D10C3 :104EA00048A80208E0AD020824A802080500420054 :104EB000FF00420000ED00E0C022802006495200C1 :104EC0008B58C0059B009B0803438B508023885858 @@ -1266,7 +1266,7 @@ :104F00000D4B0E4CA34208DA19685A680020043A87 :104F100001DB8850FBE70833F4E7094809490860DA :104F2000BFF34F8F00F0E4F800F0F8FAFEE700005E -:104F3000C0DE0D10D8DE0D10D8DE0D10E8DE0D102D +:104F3000C0E10D10D8E10D10D8E10D10E8E10D1021 :104F400000A0020808ED00E0FEE7FEE700B504203F :104F50007146084202D0EFF3098001E0EFF30880C8 :104F60000430FFF7EDFBFEE770470000E02370B56B @@ -1276,20 +1276,20 @@ :104FA000A358A6581B0F360F0B400E4204D0A25830 :104FB000120F0A40012A01D1EA0701D4032B11D1B3 :104FC000B0233E4ADB00E558A158E658C904C90C95 -:104FD00002F0E6FCAD03AD0B6843F101C90F0131EE -:104FE00002F0DEFCE0239B00E3589B069B0FD840B9 +:104FD00002F050FDAD03AD0B6843F101C90F013183 +:104FE00002F048FDE0239B00E3589B069B0FD8404E :104FF000334B1860334B1C691969240A090E0131BF -:1050000002F0CEFC304BE1B21860013102F0C8FC76 +:1050000002F038FD304BE1B21860013102F032FDA0 :105010002E4B040018602E4B2E4918602E4BC018E2 -:1050200002F0BEFCFA212D4B890018702C4BE018C1 -:1050300002F0B6FC2B4B18602B4BC003186070BD00 +:1050200002F028FDFA212D4B890018702C4BE01856 +:1050300002F020FD2B4B18602B4BC003186070BD95 :10504000C021890052581F210A40112A01D0132A79 :1050500004D1802000029BE7244899E7FA20C00190 :1050600096E7012BBED1C823C0220321DB00D2006A :10507000E558A358A6581B0F360F0B400E4204D01C :10508000A258120F0A40012A01D1EA0701D4032BCA :10509000A8D1C022D200A358A158A5587F221F260C -:1050A0001340090A3140584302F07AFC290C314080 +:1050A0001340090A3140584302F0E4FC290C314016 :1050B00096E7C0460000264000366E0184050000D9 :1050C00020A102080000214024A102081CA102081E :1050D0002CA1020840420F003F420F0034A10208F9 @@ -1301,7 +1301,7 @@ :10513000C02201215200A3588B43A350FFF714FF54 :10514000FFF714FFB0235B055A78002A02D05B7882 :10515000212B03D10022074BDA605A6010BDC046F4 -:1051600064CA0D1000002640840500000100020002 +:1051600034CB0D1000002640840500000100020031 :105170008C050000E0002340024BD86F0323184049 :105180007047C0460400214010B5FCF7EAFD07490E :10519000074ACB6F1A40074B1343CB6710230649CE @@ -1311,20 +1311,20 @@ :1051D0000F4CFCF7C6FDE36F0500DB439B0701D1D5 :1051E000FFF7D2FFB0230B4A9B00D650E36F0A4A69 :1051F0000A491A400A4B1343E36710230A681A420C -:10520000FCD02800FCF7B1FD70BDC0469DCE0D104E +:10520000FCD02800FCF7B1FD70BDC0462DD00D10BC :105210000400214000002140FCFF000088002140E4 -:105220000300FA0510B562B600F09EFAFFF744FEDF +:105220000300FA0510B562B600F0B6FAFFF744FEC7 :10523000C02201210A48520083580A4C8B438350F4 :10524000094A0A48FCF71EFF094A0A492000FDF7EF :1052500093FF802322681B061343236010BDC046C2 -:105260000000264000006640F8CE0D10800232405B -:10527000E4AD020804D20D1010B50020FDF756FA77 +:10526000000026400000664098D00D1080023240B9 +:10527000E4AD02084CD40D1010B50020FDF756FA2D :1052800010BD0000802310B50C4C032023602300C8 :10529000210008336360FDF779FA0948FDF7A4F8A7 :1052A000084B1B6851331B78002B02D00648FDF7D2 :1052B00013F920001830FCF70BFE10BD00C00208E7 -:1052C0003CC00208E0AD0208B8CF0D1010B504488C -:1052D000044A0021121A02F0BBFEFBF705F910BDCB +:1052C0003CC00208E0AD020858D10D1010B50448EA +:1052D000044A0021121A02F025FFFBF705F910BD60 :1052E0000000020800A002080022E82313B5019282 :1052F000019C9B0523430193019B090419430191E0 :10530000019B000218430123019001990B43019373 @@ -1335,2351 +1335,2399 @@ :10535000019A1B069A42E6D00198E4E70000234038 :10536000983A000010B5084B0024DB78013B012B74 :1053700007D801210800FFF7B7FF04006420FFF7FA -:105380008BF9200010BDC0469CAF0208A02270B56A +:105380008BF9200010BDC04674AF0208A02270B592 :10539000154DD200AA580400032A09D0FFF7E2FFF6 -:1053A000021E05D0114B12491B68D86802F0AAFDF5 +:1053A000021E05D0114B12491B68D86802F014FE8A :1053B000104B1B68002B0CDA0F4A104B1048DA64B4 -:1053C0000A4B1B68D96802F0F7FD72B607F0CCF8FB +:1053C0000A4B1B68D96802F061FE72B607F044F917 :1053D00062B6AC239B00EC500A4B9C60236883F3BD :1053E000088863689847FEE70000214084A102080E -:1053F00074CF0D10000126402143341200002340D9 -:10540000A4CF0D1000ED00E070B50400FFF7AAFF77 -:10541000021E05D01A4B1B491B68D86802F072FDAA +:1053F00014D10D1000012640214334120000234037 +:1054000044D10D1000ED00E070B50400FFF7AAFFD5 +:10541000021E05D01A4B1B491B68D86802F0DCFD40 :10542000194B1B68002B23DA184A194B1948DA6408 -:10543000134B1B68D96802F0BFFD72B6B023164A41 +:10543000134B1B68D96802F029FE72B6B023164AD6 :10544000164D9B001648EA50C36F164A16491A407B :10545000164B1343C36710230A681A42FCD001207D -:10546000FFF71AF9B0239B00EC5007F07DF862B605 +:10546000FFF71AF9B0239B00EC5007F0F5F862B68D :105470002000FFF7A3FE0020FFF788FCFBE7C046F3 -:1054800084A1020874CF0D1000012640214334127C -:1054900000002340A4CF0D10004000160000214062 +:1054800084A1020814D10D100001264021433412DA +:105490000000234044D10D100040001600002140C0 :1054A00004002140FCFF0000880021400300FA05B1 :1054B00010B5002820D1114C11482368D96802F09A -:1054C0007BFDFFF74FFF021E04D023680D49D8680B -:1054D00002F018FD0C4B1B68002B08DA0B4A0C4B32 -:1054E0000C48DA642368D96802F066FD72B60A488F -:1054F000FFF764FE07F048F810BDC04684A102081B -:105500002CCF0D1074CF0D10000126402143341212 -:1055100000002340A4CF0D1000400016F0B589B064 -:10552000FFF7B0FEFFF77EFE6C4C6D4A6D4B6E4D83 -:105530001A6023682800D96802F03EFD23686B4E8C -:10554000D968300002F038FD092320680193002358 -:10555000009301226649C06802F0D4FC2368300041 -:10556000D96802F029FD23682800D96802F024FDDB -:1055700023686048D96802F01FFD802002AA03A9B1 -:105580004000FCF7EBFA051E08D15B4E03005B4AB6 -:1055900031000398FBF766F9051E1AD02A0023682C -:1055A0005749D86802F0AEFC68426841FFF780FFB7 -:1055B00023685448D96805AD02F0FEFC280001F0CC -:1055C0004FFD2368D968002818D04F4802F0F4FC3A -:1055D000FEE7F021F2684D4B090652189A603269D5 -:1055E000DA6072695218DA61B2691A62FAF748FF32 -:1055F000051E4BD0236802004549D2E7454802F01A -:10560000DBFC04A9287900F02DFD43425841FFF747 -:105610004FFF82220120404992008E588B58F60598 -:10562000DB0B0340F60D9B19002BF6D1049BAD68F4 -:10563000ED18059B1B89ED18FFF748FE43425841C2 -:10564000FFF736FF2C4B1878042819D802F09EF982 -:1056500007070303100002210020FDF725F92800A9 -:10566000FFF794FE23682D48D96802F0A5FCFEE7F9 -:1056700006210E20FDF718F92800FFF7C5FEF1E717 -:1056800023682148D96802F097FCFEE70223F3560D -:10569000002B89D0224A013B9B00224E9B5833604D -:1056A00000F0CEFB071E06D02368050002001E494D -:1056B000D86802F027FC1D4A31681D4800F032FC12 -:1056C000002F00D070E723681A48D96802F074FCF4 -:1056D00001211748FDF74EFF66E7C04684A1020886 -:1056E000E8D10D101CAE0208F8CF0D1002D00D103D -:1056F00043D00D1078D00D1048AE02089CAF0208C0 -:1057000094D00D104BD10D106FD10D1040A1020897 -:10571000BFD00D1095D10D1000006640BCD10D100A -:1057200038A102085CA80208F8D00D1020AE0208CB -:10573000000042402ED10D1010B504002100034896 -:10574000FDF700FD0028F9D010BDC04600006640FE -:10575000C221044A89005358DB05FCD0D0239B00AA -:10576000D05870470000664010B500F009F800F00E -:1057700035F800F043F800F005F900F02DF810BD01 -:1057800080218022124BC9001B68D205986810B591 -:1057900042501A00743212880E4C121810680440DD -:1057A000D4208001204310601C001A007234703233 -:1057B0002478127898687333A2401C780323A3409E -:1057C00013438022120613434350435810BDC04672 -:1057D000E0AD0208FF00FFFF70470000054B1B68AB -:1057E0001A003F321278052A03D900219A68024B29 -:1057F000D1507047E0AD0208140C000010B51D4CEC -:105800001D4A00212000FCF73DFC20001B4C1C4AD7 -:105810000121FCF737FC1B4A02212000FCF732FC77 -:10582000194A03212000FCF72DFC184A042120000E -:10583000FCF728FC164A05212000FCF723FC154A3A -:1058400006212000FCF71EFC2000134C134A072100 -:10585000FCF718FC124A04212000FCF713FC114A43 -:1058600006212000FCF70EFC0F4A07212000FCF760 -:1058700009FC10BD000032407CD30D108005324081 -:10588000B0D30D1048D30D10E0D20D10ACD20D10D6 -:1058900078D20D1044D20D100003324014D30D10F5 -:1058A000E4D30D1018D40D104CD40D1010B50A4BC4 -:1058B0001B683E331B7883420BD9E0220F24074B31 -:1058C0008000C01892008358A343194381500020E0 -:1058D00010BD0348FCE7C046E0AD020800002640CA -:1058E00001004A0010B50A4B1B683E331B78834207 -:1058F0000CD9E0223024074B8000C0189200835856 -:105900000901A34319438150002010BD0248FCE760 -:10591000E0AD02080000264001004A00054B0649A0 -:105920001B681A000832D26F1B689B181A680A405D -:105930001A607047E0AD0208FF00FFFF074B1B68CD -:10594000190008311A68CB6F8021D21813684904F6 -:105950001B021B0A0B4313607047C046E0AD0208F0 -:10596000054B06491B681A00883212681B689B1891 -:105970001A680A401A607047E0AD0208FF00FFFF96 -:10598000FEE70000F8B596210020FEF7F1FEFEF7D5 -:10599000C7FE002801D1FEF7B1FE0120FFF720F974 -:1059A000644B65495A6C0A40E82189010A435A64EC -:1059B0005A6C120AD2B23A2A04D15A6C5F48024099 -:1059C0001143596400210800FFF78CFFFFF7C8FF5F -:1059D000FFF7B4FFFFF7A2FF594D5A4C2B685A4FFF -:1059E0003D331B78002B0ED0C0268023F600A25931 -:1059F0009B053A401343A3510120FEF767FEA359CC -:105A00005B005B08A35100210120FEF723FC2B68FB -:105A10003E331B78002B03D14C494D48FEF760FE06 -:105A2000E0239B00E6580F231E400AD13000FEF70A -:105A300039FC1223FF33984203D101213000FFF7D4 -:105A400035FFB122D200A35800213B408027BF057B -:105A50001F43A750083AA35808005B005B08A350F7 -:105A60003C4AA3585B005B08A350FEF7F3FB002100 -:105A70000800FFF71BFFFFF773FFFFF75FFFFFF75C -:105A80004DFF00210120FEF7E5FB01210020FFF77B -:105A90000DFF00210800FEF7DDFB00210220FEF7CC -:105AA000D9FB00210320FEF7D5FB00210420FEF7DF -:105AB000D1FB2948FEF71CFC002802D00420FFF788 -:105AC0005FFF2648FEF7C8FC002802D00420FFF73D -:105AD00057FF00210800FFF7E9FE00210800FFF74B -:105AE00001FF00210120FEF7B5FB00210220FFF796 -:105AF000DDFE01210220FFF7F5FE2B683E331B7807 -:105B0000022B06D9E22280239200A1581B060B43E8 -:105B1000A3508022124B1206E15800200A430121B3 -:105B2000E250E2580A43E2506331FEF721FEFFF7EC -:105B30001DFAF8BD00002740FF00FFFFFFC5FFDF93 -:105B4000E0AD020800002640FFFFFFCF6E06000018 -:105B500080D40D108C050000CCD40D10400D030036 -:105B60000C050000437802781B021A438378C07842 -:105B70001B0413430006184370470000F7B5A54BFC -:105B8000A54A9A58D10700D47BE00F22A34FBB68E7 -:105B90003D680093A24BDC6F0193009B1440073AD1 -:105BA000141B9C4200D91C009E4E002C18D1009B57 -:105BB0003D60BB60002B0CD1F92201209549D20039 -:105BC0008B5883438B50B861FB69002B01D0FB6974 -:105BD0009847F8230122DB008E49CA50CB58F7BD05 -:105BE000082C16D12800FFF7BDFF3060281DFFF7F5 -:105BF000B9FF3060009B2D191B1B0093019BDC6FCC -:105C00000F231C40073B1C1B009B9C42CDD91C0052 -:105C1000CBE7012C03D12A78834B1A60EAE7022CE8 -:105C200006D12A786B781B021343804A1360E1E7A0 -:105C3000032C07D16B782A781B0213437B4A13602D -:105C4000AA78E9E72800FFF78DFF042CD1D0306057 -:105C5000052C01D12A79DFE7062C02D12A796B794C -:105C6000E1E7072C07D16B792A791B0213436F4AAE -:105C70001360AA79D0E7281DFFF774FF082430606D -:105C8000B8E7910700D4A4E00F22644D68496C691D -:105C9000EB6808688C460240A24200D922006549A0 -:105CA000654E002A16D1EB606C61002C0DD1F922F3 -:105CB00002215848D20083588B4383500320A861A7 -:105CC0002B6A002B01D02B6A9847F8236C61DB000C -:105CD000022281E7082A19D10868070A18705F7044 -:105CE000070C000E9F70D8700868070A18715F7162 -:105CF000070C000E9F71D8719B18A41A62460F20E2 -:105D000012680240A242CCD92200CAE7012A03D17C -:105D10004A4800681870EFE7022A04D1306818700A -:105D2000000A5870E8E7032A07D130681870000AA3 -:105D30005870424800689870DEE7042A08D1086865 -:105D4000070A18705F70070C000E9F70D870D3E7B9 -:105D5000052A0BD10868070A18705F70070C000E3F -:105D6000D87036489F7000681871C5E7062A0CD1B4 -:105D70000868070A18705F70070C000E9F70D870D3 -:105D800030681871000A5871B6E7072A0FD1086801 -:105D9000070A18705F70070C000E9F70D87030688B -:105DA0001871000A5871254800689871A4E70A68BC -:105DB000100A1A705870100C120E9870DA700A6877 -:105DC000100A1A715871100C120EDA7198710822AB -:105DD00092E704210A4207D00520104A9061F82278 -:105DE000D20099509B58FAE608210A4202D00B4A89 -:105DF0000620F3E71020024206D00721074A9161EE -:105E0000F822D2009850EDE72020024200D1E6E6C9 -:105E1000024AF4E700004240CC07000020AE02082E -:105E200008004240980042409000424094004240A6 -:105E3000C4004240D8004240D4004240D00042401A -:105E400073B5684602001E4B12CB12C262B61D49E2 -:105E5000FEF7CEFB021E05D01B4B1C491B68D86801 -:105E600002F050F8FA221A4D92002B0019491A48F4 -:105E7000FDF732FB041E1ED1020001211648FDF77A -:105E80008FFB29001448FDF7B5FD0F4E134833680A -:105E9000D96802F091F82A0011490F48FEF7AAF8D4 -:105EA000041E08D133680F48D96802F085F8210034 -:105EB0000948FDF75FFB80220B4B20001A6076BD7E -:105EC00070D70D107D5B0D1084A10208EFD70D1067 -:105ED00020AE0208F4D10D10000042402FD80D1062 -:105EE00060D70D104CD80D1000E100E00C4B1B6882 -:105EF0009B691B68032B08D10023CB7083B21B0A5C -:105F000088704B70000C08707047042BFCD183B272 -:105F1000C8701B0A000C48708B70000AF3E7C0467B -:105F20005CA80208F0B50F2787B002ABFF1800236A -:105F300016003B708B690500DA6BDB6A03921B6805 -:105F40003A00DBB200960C00FDF77EFD021E06D083 -:105F5000104B11491B68D86801F0D4FF13E06B4661 -:105F60003A781B7B1A409A420DD03200210028005B -:105F7000FDF7C4FD021E08D1320021002800FDF704 -:105F800081FD0028F8D107B0F0BD024B03491B6822 -:105F9000E1E7C04684A1020878D70D10B4D70D10F0 -:105FA000F0B589B004000E00049217221A4D059333 -:105FB000296802A88B6912189F6ADB6A20001B6897 -:105FC0000096DBB2FDF740FD002823D1320029689E -:105FD0002000FDF71DFD00281CD1059B01900093BA -:105FE0000296049B0E9A29682000FDF7FBFD00280D -:105FF00010D1320029682000FDF744FD0028F8D1B7 -:1060000017223B6802A900965218DBB229682000CB -:10601000FDF71AFD09B0F0BD5CA8020870B54B6829 -:10602000056801229D4216D38A689B1800229D4272 -:1060300011D20C694B699C420FD20C236343CE688A -:106040000134F3180E685A701E705A8042685D6001 -:106050009A6001220C61100070BD0C235B428B61C1 -:10606000F9E7000010B502006F2809D0074B084976 -:1060700018686F23C06801F045FF1620404210BD2C -:1060800080235B050B600020F9E7C04684A102086D -:10609000A9D80D1010B50F4B02001879904215D0F9 -:1060A000187E904214D018002C3004780120404211 -:1060B00094420AD1033014224243101D181808607C -:1060C00000209B181A6901321A6110BD0020F2E706 -:1060D0000120F0E740A1020810B5021E0BD0011FFD -:1060E0000C4B0868984207D00B49137808680B4995 -:1060F000C06801F007FF10BD0B69002B07D1064BEC -:1061000012781B680649D86801F0FCFEF3E7013BF2 -:106110000B61F0E7EFBE0DD084A1020865D80D1029 -:1061200085D80D1070B515001E00446805480C197F -:106130000121FDF71FFA32002900200000F00AF9C2 -:1061400070BDC04600004240F0B51500F022144F6B -:1061500087B003933B684468DB6812060C199B18F0 -:10616000A34216D800210F48FDF704FA3B6805AE9C -:10617000D8688023201A5B05C0183100FFF7B6FEEF -:106180000096039B2A0008490648FFF709FF07B05D -:10619000F0BD039A2900200000F072F9F7E7C0462D -:1061A0005CA802080000424020AE0208F0B51500CD -:1061B000F022254F44683B681206DB680C199B18D7 -:1061C000C5B0A3423AD800212048FDF7D3F9802278 -:1061D0000021520004A801F03BFF3B680020D96871 -:1061E0008023641A5B052E0AE418002E14D00028C0 -:1061F00001D045B0F0BD03AF20003900FFF776FEB7 -:10620000802300975B0004AA114910480134FFF76E -:10621000C7FEFF34013EE8E7EDB2002DE9D00028CB -:10622000E7D103AE31002000FFF760FE00962B009F -:1062300004AA07490548FFF7B3FEDAE72900200062 -:1062400000F028F9D5E7C0465CA8020800004240EB -:1062500020AE020810B5007800F08CF910BD0130B6 -:1062600070470000431E022B15D8022808D00328CF -:106270000BD00A4B98680860DB68002013607047F9 -:10628000064BD86908601B6AF7E7F0231B030B6015 -:1062900080235B01F1E701204042F0E740A10208C2 -:1062A00030B589B00C00150002A903AA0190FFF7D0 -:1062B000D9FF002811D1236805900693084B079059 -:1062C00001AA18680749049500F00EF807980028FD -:1062D00001D1059B236009B030BD01204042FAE79F -:1062E0001CAE02081D600D10F0B5002426004368A6 -:1062F0008BB002911B6906A905A8039298470194E7 -:10630000069BB34201D80BB0F0BD059BF700DF1927 -:106310007B68019D0893019B3A68EB1A9A4202D868 -:1063200001360195ECE707940995039907A8029BAC -:1063300098470028E7D0089B0135E418EBE70000F8 -:10634000024B036001230B607047C046D4D80D1088 -:10635000002070470B00802110B549054118180036 -:1063600001F06DFE002010BDF0B5264CF023A544D1 -:106370000024039020001B06CB1801935B0A5B02EC -:1063800004AF0292FD1A029AA24201D900280CD051 -:106390001D4B984234D01D4B984231D0431E98413A -:1063A000400085239B009D44F0BD802201009200A7 -:1063B0009E18019A9A421DD8029AA2421AD9039AAB -:1063C000125DEA54002906D180214905591809783F -:1063D000511A4A1E914101340133B342E9D10029D7 -:1063E00004D00B4B3900F018FBF7D2FD094BED1828 -:1063F0003300C8E7802252059A181278EA54EBE776 -:106400000120CEE7ECFDFFFF020052000600520023 -:1064100000FEFF0F00FEFFFF00207047F8B5124C92 -:106420000023A1421CD91E00104C8D18AC425E41C5 -:106430000F4CA14215D91F000E4CAC425F413C00ED -:106440000D4FB94202D90D4FAF425B413443234354 -:106450000124002B02D0FFF787FF04002000F8BDC5 -:106460001E0000242300F1E7FFFFFF0F00001010C3 -:10647000FFFFFF1300800014FF070016000A00163C -:106480000B00802110B5490541181800FFF7C6FF21 -:1064900010BD00008023F0B55B05C0184518334CD3 -:1064A000EB05A544C605DB0DF60D01936B0A0393BE -:1064B00033005A1E9341400AC0186B0A1B1A0093FE -:1064C00043021F0000240293009B002B3ED1002EAC -:1064D0001AD0274A029B944663441C0019003200DC -:1064E00004A801F0ACFD2000FBF714FD4342584125 -:1064F000FEF7DEFF2100320004A8FFF78FFF040043 -:1065000060426041FEF7D4FF019B002B19D080242C -:10651000A400E41A2200290004A801F090FD039BC6 -:106520005802FBF7F7FC43425841FEF7C1FF220037 -:10653000290004A8FFF772FF040060426041FEF7E3 -:10654000B7FF200085239B009D44F0BD3800FBF77A -:10655000E1FC040060426041FEF7AAFF80239B003B -:10656000FF18009B013B0093AEE7C046ECFDFFFF28 -:1065700000FEFFFF0420704710B5102209490400F7 -:1065800001F04EFD0123002808D0230010332268BB -:10659000013205D104349C42F9D10323180010BD07 -:1065A0000223FBE7F4D80D1030B5040091B00120B0 -:1065B0000D00FEF77DFFA168102310396A46200008 -:1065C000FFF7B0FD002802D0012011B030BD6846B1 -:1065D000FFF7D2FF28702378032B0CD10120FEF7A0 -:1065E00067FFA1680123AA1C18392000FFF79AFD54 -:1065F000431E9841E9E70120FEF75AFF0120FEF70C -:1066000057FFA1686A1C203901232000FFF78AFD8B -:106610000028E3D0D8E737B50D00C0B201A9FFF7D5 -:1066200039FD0124002807D129000198FFF7BCFF9C -:1066300004000198FFF750FD20003EBDF7B5012092 -:106640006946FFF7E8FF002801D0FF20FEBD01AC3E -:1066500021000220FFF7DFFF0028F6D12078A6787E -:10666000234C6B46220019789D785F78123223788C -:10667000002B01D08B422FD16378002B01D08342B5 -:106680002AD1A378002B01D0AB4225D1E378002B8F -:1066900001D0B34220D12379002B1BD1154B164AD0 -:1066A0001B68D8686379022B06D0144A032B03D0E9 -:1066B000134A042B00D0134A134901F023FC022291 -:1066C00000206379023BDBB29A424041FEF7F0FEC4 -:1066D0006079BBE7BB42E1D006349442C7D1054B99 -:1066E0000A481B68D96801F067FC0120AEE7C04684 -:1066F00004D90D1084A102081BD90D1016D90D1054 -:1067000032D90D1020D90D1039D90D104FD90D10D7 -:10671000F0B597B01CAB1B7803900493137814006A -:10672000302B16D19378022B13D106AD40220021D5 -:10673000280001F08DFCE278A1184B79901D0979B1 -:10674000C0180290022904D1D1186078043188421F -:106750002AD0102017B0F0BD059A0F1A5618B4466B -:10676000A444664636790822B44604AEB61862469A -:106770002037F25501318842EED100220299C91A20 -:1067800064189A420AD16B46188A402300950193F7 -:10679000039A203B0A49F9F7DBFEDBE7D11AA05C3C -:1067A000403168540132ECE7202B00DD202310003B -:1067B000202A00DD2020121A00210592DBE7C046C6 -:1067C00009000610002803D1044B1B7F18007047F6 -:1067D00000230128FAD1014BDB7FF7E748AE02081E -:1067E000F0B5F7B00500029111A8594917000493BC -:1067F000F9F736FF00284CD17C9B002B3FD10024B9 -:106800002B89EA689B180393039BA34214D9039B2B -:10681000049E1B1B9E4200D91E0033003A0021003B -:106820000298FFF77FFC002833D13200390011A80D -:10683000F9F724FF00282ED008AB202209A911A8BF -:10684000F9F72CFF002824D17E9B002B04D02022B6 -:1068500009A9180001F0F3FBEB682C8907ADE418D7 -:106860002A00042321000298FFF75CFC002810D1C5 -:10687000384B2A889A4210D00120404209E07D9B83 -:10688000002BBCDD1A007C9911A8F9F7F7FE00284F -:10689000B5D077B0F0BDA419B6E76B8801251B19F8 -:1068A00005930434039004906D42059B9C4205D3EC -:1068B000049B002BE0D003980138EAE708AF0423DB -:1068C0003A0021000298FFF72DFC0028E1D13B7827 -:1068D0007E88102B17D1202ECED1211D330011AA76 -:1068E0000298FFF71FFC0028D3D1320011A909A894 -:1068F00001F096FB0028BFD10123049308AB5B880D -:106900000433E418D1E7012B04D17F98FFF75AFF35 -:106910000500F3E7222BF1D13300483BB82BABD86D -:10692000211D330011AA0298FFF7FCFB0028A3D118 -:10693000EDB27B8811AA0095202109A80125FFF757 -:10694000E7FE6D420028D9D101230393D6E7C04664 -:106950000900000107690000F7B5070000240126BF -:106960002000FFF77CFC01A9C0B2FFF793FB3500C4 -:10697000011E0AD12C2363430B4A0198D21820230D -:10698000FFF7D0FB0500681E85410198FFF7A4FBC7 -:10699000002D04D0012C00D13D002800FEBD012CAB -:1069A000FBD03400DCE7C04660A8020873B50C00D9 -:1069B000C0B201A91500FFF76DFB0126002807D121 -:1069C0002A0021000198FFF7F1FB0600701E8641A6 -:1069D0000198FFF781FB300076BD0000F0B52C2454 -:1069E0004443324B87B01C1923680500013301D1A1 -:1069F000012049E02369DB06FAD4FFF730FC04A943 -:106A0000C0B2FFF747FB03000120002B3DD1E36834 -:106A1000268905AFF6183A00042331000498FFF7E1 -:106A200081FB0028E4D1224B3A889A4201D1788830 -:106A300080192C236B431D4AD3181B6A9B68834221 -:106A4000D6D31C4BA27A1B789A42D1D12000F9F7F9 -:106A500099FB0028CCD1184B22689A4217D1802389 -:106A600002900190009003955B00144A0499200065 -:106A7000FFF7B6FE00280AD10498FFF72DFB20008F -:106A8000F9F7A4FB431E9841404207B0F0BD002D2A -:106A900004D0049800218268FFF788FB084B2A0085 -:106AA0001B680849D86801F02DFAA1E760A8020820 -:106AB0000769000048AE02083DB8F396D0AC020862 -:106AC00084A10208F6DA0D100023F0B5B04CB14AEB -:106AD000B14DA544012013602B60FFF77FFFAF4B42 -:106AE000040001201F79FFF76DFE002C47D1AC4B4D -:106AF000C2B2DB6C39005E6880235B05F318029339 -:106B0000A84BF618300013ABFBF760F8041E36D123 -:106B100005A8F9F7E7FD8021A34A890005A8F9F740 -:106B2000EFFD05A90B20F9F7FBFD041E27D110236B -:106B300013AA9E490B20F9F7C3FD0123041E2B6005 -:106B40001DD1994A0B211BA8F9F716FD041E16D179 -:106B5000102217A91BA8F9F731FD041E0FD120221E -:106B600004AB2DAD019300922B0031001BA8F9F767 -:106B700035FD049B0400202B10D001246442864B79 -:106B80001B68002B05D00B20F9F73EFD002800D034 -:106B900004002000D3239B009D44F0BD0028EED1CB -:106BA000020004AB29001BA8F9F7F6FC041EE6D18D -:106BB00007AE33002A0013CA13C37D4F126831A9F0 -:106BC0001A603800102201F03AFA05A90C20F9F7F2 -:106BD000A7FD041ED3D11023320074490C20F9F70D -:106BE0006FFD01226B4B041E1A60C8D171496DA85C -:106BF000F9F736FD041EC2D1029B029A1B890C21B3 -:106C0000D3181BA8684A0393F9F7B6FC041EB6D143 -:106C1000102239001BA8F9F7D1FC041EAFD1802641 -:106C200004AB7600019300962B00320003991BA859 -:106C3000F9F7D4FC049B0400B3429ED100289ED1F6 -:106C40002D9B2E89AA7A309F3199581C00D194E748 -:106C5000C90600D591E75249C96C8968B94200D28A -:106C60008BE755498B4200D087E74C4B1B7893420A -:106C700000D082E78022290052006DA8F9F7FEFCBF -:106C8000041E00D07BE7F619330AF6B2771EBE4128 -:106C900001279B190293039B3E029E19029BBB4254 -:106CA00022D9002C00D06AE704AB019380232DAADF -:106CB0005B00009313008022310052001BA8F9F7FB -:106CC0008DFC8023049A04005B009A4209D10028BD -:106CD00005D11A002DA96DA8F9F7D0FC04000137E1 -:106CE000D9E701246442FAE7002C00D047E704AF5B -:106CF0003B0020220BA96DA8F9F7D0FC041E00D0A0 -:106D00003DE780225200019700922B0031001BA822 -:106D1000F9F764FC041E00D031E702003B002900B3 -:106D20001BA8F9F739FC2D9B244A9BB2040093421F -:106D300000D022E7002800D021E72E9AD3B2102BF2 -:106D400000D01AE7120C202A00D016E72FA90BA8B2 -:106D500001F066F9041E00D011E7379BDBB2012B6E -:106D600000D00AE70120FFF72DFD409BDAB2222A6E -:106D700000D002E71B0C482B00D0FEE6C0B200900A -:106D800041AA20210BA8FFF7C3FC0400F7E6C04688 -:106D9000B4FCFFFF34B0020830B0020848AE02086D -:106DA00060A80208200000100001600401000040FB -:106DB000C0AC0208090000013DB8F3960769000065 -:106DC0000023F0B51D4C0700A5446946022000933E -:106DD0000193FFF75FF900280ED0012600980028E4 -:106DE00001D0FFF779F90198002801D0FFF774F975 -:106DF0003000134B9D44F0BD01A90120FFF74AF973 -:106E00000600041EE9D10098A742E7D980233D1B64 -:106E1000DB009D4200D91D002B0002AA2100FFF7D4 -:106E200081F90028D9D12B0002AA21000198FFF78F -:106E30008BF90028D1D16419E5E7C046F4FBFFFFC8 -:106E40000C040000F0B500242500614E9BB03368AF -:106E50006048D96801F0B0F833685F48D96801F03C -:106E6000ABF85E4FBB6A0393039BAB4269D13368B7 -:106E70002200D8685A4901F045F85A4BDB78002BBC -:106E800000D1A1E0002305A9022005930693FFF796 -:106E900001F9002821D106A90130FFF7FBF80028ED -:106EA0001BD1514A0C2108A8F9F766FB002814D120 -:106EB00010224E4908A8F9F781FB041E0DD10600E7 -:106EC000BB6B0133FF330293059B5B680393029B0B -:106ED000B34200D86EE0002C46D00598002801D0BF -:106EE000FFF7FAF80698002801D0FFF7F5F8404BB5 -:106EF0001B68002B02D00C20F9F786FB1022002122 -:106F00003A4801F0A5F83B6D00219A680220FFF78E -:106F10004DFD43425841FEF7CBFA0C237A6D396D93 -:106F2000013A5343CB185A6849680220511A9A68AB -:106F3000FFF73CFD43425841FEF7BAFA00201BB070 -:106F4000F0BD0C236B437A6A2100D3189B680120A3 -:106F50001A000293FFF72AFD43425841FEF7A8FAB0 -:106F6000029B0135E4187FE7029B9D1B8023DB0019 -:106F70009D4200D91D00039B009599191D4B2A00C5 -:106F8000C91807AB019308A81B4BF9F727FB079B10 -:106F90000400AB420BD1002899D12B00164A3100D6 -:106FA0000698FFF7D1F8002897D176198FE70124CA -:106FB00064428CE7002C00D08FE707AB22000E491B -:106FC00008A8F9F7E9FA88E72000FFF7F9FE9AE741 -:106FD00084A1020867D90D108CD90D1060A8020891 -:106FE000A2D90D1048AE020800016004C0AC02082E -:106FF00034B0020800040010C0A8020873B5164E91 -:10700000164CF368626A5B0A01A901200193FFF73D -:1070100047F9012500281AD1019B226DA362F3686C -:1070200001A95B0A02300193FFF73AF9051E10D15E -:10703000019B206A6365FFF70DF90600A06DFFF75D -:1070400009F9331C864200D2031C5C3423702800EB -:1070500076BD0125FBE7C04640A1020860A80208F2 -:10706000F0B50C266E4F89B0FB6800905C0A744343 -:10707000200000F0AFFF0190200000F0ABFF019B6B -:10708000684C0290636220650020FFF7E8F8210059 -:10709000C0B22031FEF7FEFF43425841FEF708FA26 -:1070A0000120FFF7DCF82100C0B24C31FEF7F2FFFF -:1070B00043425841FEF7FCF9210003205831FEF706 -:1070C000E9FF43425841FEF7F3F9FFF797FF051E2A -:1070D00019D0554BFA681B68520A5449D86800F019 -:1070E00011FF019800F080FF029800F07DFFA06D75 -:1070F000FEF7F2FFE06CFEF7EFFF206AFEF7ECFF11 -:10710000280009B0F0BDFFF727FC051EE9D1FB6898 -:10711000A06A5B0A984202D8626D9A4219D9424B22 -:1071200043481B68D96800F047FF0020FFF756FC72 -:10713000050068426841FEF7BBF9002D5ED1236A65 -:1071400000995A780A715B680C600393039A8A600D -:10715000C7E7904239D108234643626A216D083659 -:107160009E4237D1334E7378002BDED00C220021A3 -:1071700005A800F06DFF0120FEF79AF9FFF75EFA0F -:10718000831E0500022B0DD8274B1B68D968F378A6 -:10719000002B2CD0284800F00FFFFFF795FC0028AB -:1071A0002ED005250120FEF783F9012DBDD0002D3D -:1071B00001DD052D2EDD1C4B20481B68D96800F031 -:1071C000FBFE0020FEF774F9FEE7174B1C481B6816 -:1071D000D968A8E71800D558CB580C309D4204D088 -:1071E000114B18481B68D9689DE70300B8E716489B -:1071F00000F0E2FE0120FFF7F1FBD0E7032570E786 -:107200000120FEF755F9FFF71DFE43425841FEF7F6 -:107210004FF9C7E70020FFF79FFB051E85D060E709 -:1072200040A1020860A8020884A10208D0D90D106C -:1072300015DA0D1048AE0208BFDA0D10E7DA0D10AE -:1072400047DA0D1086DA0D10D1DA0D1010B501787D -:1072500004000A00303AD3B2092B1FD811000A01EA -:1072600061780B00303BD8B2092824D89918A2784D -:1072700009011300303BD8B209282AD85A18E378FC -:10728000120118003038C1B28018092905D9190037 -:10729000413905292BD8373B981810BD0B00413BCD -:1072A000052B01D83739DAE70B00613B0020052BAD -:1072B000F3D85739D3E70B00413B052B02D83739B8 -:1072C0008918D4E70B00613B0020052BE5D857391E -:1072D000F6E71300413B052B02D8373A5218CEE7A8 -:1072E0001300613B0020052BD7D8573AF6E7190069 -:1072F000613900200529D0D8573BCDE7F7B50B7889 -:1073000007004E1C222B0FD00026554B1960300071 -:10731000FEBD02331A780130222A08D0002A06D096 -:107320005C2AF6D00133F5E733000020F2E74D4B3D -:107330001B6898470190041E07D1019EE7E7721C65 -:107340005C2B13D02370013416003378222B01D02C -:10735000002BF4D1002323703378223B5A4253414F -:10736000F618019B3B610423FB60D0E773786E2B1A -:1073700017D007D8611C622B0CD0662B0FD023705E -:1073800001340AE0742B0ED0752B0ED0722BF6D17F -:107390000D23F4E7082323700C000132D4E70C23FB -:1073A000F9E70A23EBE70923E9E7B01CFFF74EFFF3 -:1073B0002D4B2E49C3180500721D8B42EDD90028B4 -:1073C000EBD02B4BC3188B4227D8B3795C2BE4D17D -:1073D000F379752BE1D130000830FFF737FF320029 -:1073E000214B2249C3180B328B42D6D8214BAD0218 -:1073F0001D4080238005800D05435B02ED181E4B68 -:10740000E11C9D4223D803234C1E3F2080212840AD -:10741000494201432170AD0910E07F2809D80123BA -:1074200001341648611EC05C013B05430D70E41831 -:10743000B3E7134B9842E2D8022302343F20802165 -:1074400028404942013C01432170AD09E9E73F2052 -:10745000802328405B420343E370AD090423D3E754 -:10746000D0AD020880A102080024FFFFFF03000046 -:107470000028FFFF00FC0F00FFFF00001DDB0D10C8 -:10748000FF070000002803D00378013B1F2B00D921 -:1074900070470130F6E70000064B10B51B68282046 -:1074A0009847041E03D02822002100F0D1FD2000BF -:1074B00010BDC04680A10208F0B5050087B00E1EC1 -:1074C00001D1002413E004227549300001F045FC8D -:1074D000002803D10223EB60341D08E00522714926 -:1074E000300001F03AFC002804D1E860741D20004F -:1074F00007B0F0BD04226C49300001F02EFC0028DA -:1075000006D101230122EB600023AA61EB61E3E7CE -:107510003378222B05D131002800FFF7EFFE04005D -:10752000E5E71A00303AD2B22D2B01D0092A1AD839 -:10753000340000E0013423781A00303A092AF9D9DE -:107540002D2BF7D0A71B3A003100684600F077FDDD -:1075500000236A466846D35500F0CEFC0323A86199 -:10756000E961EB60C3E75B2B37D1563BEB60701CE6 -:10757000FFF788FF037804005D2B01D10134B6E7E3 -:10758000FFF78AFF061EA8609BD02000FFF77AFF56 -:1075900001003000FFF790FFFFF774FF0400002C9C -:1075A00000D18EE723782C2B04D05D2BE6D03F4B07 -:1075B0001C6086E7FFF770FF051E00D181E7306091 -:1075C0004660601CFFF75EFF01002800FFF774FFB4 -:1075D000FFF758FF2E000400E1E77B2B5DD1753BE0 -:1075E000EB60701CFFF74EFF037804007D2BC5D0C5 -:1075F000FFF752FF061EA86000D162E72000FFF7E8 -:1076000041FF01003000FFF779FEFFF73BFF002844 -:1076100000D156E7002433693461336203783A2B92 -:1076200002D0224B186062E70130FFF72BFF010008 -:107630003000FFF741FFFFF725FF0400002C00D1C9 -:107640003FE723782C2B02D07D2B97D0AFE7FFF7B5 -:1076500023FF051E00D134E730604660601CFFF751 -:1076600011FF01002800FFF749FEFFF70BFF00287C -:1076700000D126E700242B692C612B6203783A2B7A -:10768000CFD10130FFF7FEFE01002800FFF714FF05 -:10769000FFF7F8FE2E000400D0E7044B1E6010E751 -:1076A00024DB0D1029DB0D102FDB0D10D0AD0208EF -:1076B0000849094A002803D1084B0B60084B07E032 -:1076C0000368002B00D1054B0B604368002BF5D0FD -:1076D0001360704780A102087CA10208D57F0D10BD -:1076E000E97F0D10F8B5802604007600002C00D14B -:1076F000F8BDE3682768334204D1A068002801D0B0 -:10770000FFF7F0FFE3680B4D334204D120690028F6 -:1077100001D02B6898478022E3689200134204D17D -:10772000206A002801D02B68984720002B689847D2 -:107730003C00DBE77CA10208F7B505000E000192D2 -:10774000FFF7AAFE0023134F04003B6098420CD0C1 -:107750002800FFF797FE01002000FFF7ADFE051E91 -:1077600005D12000FFF7BEFF00242000FEBD019BD5 -:10777000002B0AD0FFF786FE03780500002B04D00B -:107780002000FFF7AFFF3D60EEE7002EEDD0356043 -:10779000EBE7C046D0AD0208002210B51100FFF79C -:1077A000CBFF10BD0300093B0122042B02D9203876 -:1077B0004242424110007047F0B500251700060014 -:1077C0002C0089B003930E9B02901B0CDBB2049338 -:1077D0000E9B00911B0ADBB205930E9BDBB2079355 -:1077E000731C069333780193002B08D0009B002B69 -:1077F00022DB029A731C9B1A009A9A421CDA0E9B97 -:10780000DBB2002B00D1B4E0019A9A4200D0AEE086 -:10781000009B002B06DB029A731C9B1A009A934272 -:1078200000DDA4E0B31C7678032D00D9A1E0280088 -:1078300000F0ACF88989637B0198FFF7B3FF00285B -:1078400039D1079B019A9342D9D04F4E1100300095 -:1078500001F05CFA031E08D1049B019A93420BD0FD -:10786000059B93426FD133003F33032D23D828006B -:1078700000F08CF80510233533003E33F5E7002F78 -:1078800006D0039A94425ED23F4A9B1A9B003B5516 -:10789000012510E0621C002F0BD003998A4252D2BE -:1078A00039493C195B1A2178181101431B012170D9 -:1078B000BB5414000225069E92E7621C002F0BD0D9 -:1078C00003998A423FD230493C195B1A21789810BB -:1078D00001439B012170BB5414000325EBE7002FEB -:1078E00008D0039A94422ED227493A195B1A11788C -:1078F0000B43137001340025DDE71D00002E22D05C -:10790000009B002B22DB029B009AEB1A9A421DDAA5 -:10791000019BB34217D1009B002B04DD029B009A10 -:10792000EB1A93420FDC2E786B1C029A9D1A002EE4 -:1079300004D0009B002B11DBAB420FDA002F18D0D4 -:107940003B5D002B15D00124644219E03000FFF7A5 -:1079500029FF0028DCD02E780135CFE73000FFF773 -:1079600021FF0028EFD0029B5E5D0135DFE7002D8F -:10797000E9D1039B9C42E6D2002F01D000233B5566 -:10798000200009B0F0BDC04634DB0D1002B47146D2 -:1079900049084900095C49008E4402BC7047C04652 -:1079A000002243088B4274D303098B425FD3030A3E -:1079B0008B4244D3030B8B4228D3030C8B420DD351 -:1079C000FF22090212BA030C8B4202D312120902DF -:1079D00065D0030B8B4219D300E0090AC30B8B421D -:1079E00001D3CB03C01A5241830B8B4201D38B03CB -:1079F000C01A5241430B8B4201D34B03C01A524170 -:107A0000030B8B4201D30B03C01A5241C30A8B42B2 -:107A100001D3CB02C01A5241830A8B4201D38B029D -:107A2000C01A5241430A8B4201D34B02C01A524141 -:107A3000030A8B4201D30B02C01A5241CDD2C309B3 -:107A40008B4201D3CB01C01A524183098B4201D32F -:107A50008B01C01A524143098B4201D34B01C01A1A -:107A6000524103098B4201D30B01C01A5241C30892 -:107A70008B4201D3CB00C01A524183088B4201D301 -:107A80008B00C01A524143088B4201D34B00C01AED -:107A90005241411A00D20146524110467047FFE759 -:107AA00001B5002000F0F0F802BDC0460029F7D073 -:107AB00076E7704703460B437FD4002243088B428E -:107AC00074D303098B425FD3030A8B4244D3030B65 -:107AD0008B4228D3030C8B420DD3FF22090212BA2A -:107AE000030C8B4202D31212090265D0030B8B42A6 -:107AF00019D300E0090AC30B8B4201D3CB03C01A90 -:107B00005241830B8B4201D38B03C01A5241430B6A -:107B10008B4201D34B03C01A5241030B8B4201D35A -:107B20000B03C01A5241C30A8B4201D3CB02C01AC5 -:107B30005241830A8B4201D38B02C01A5241430A3D -:107B40008B4201D34B02C01A5241030A8B4201D32C -:107B50000B02C01A5241CDD2C3098B4201D3CB01D3 -:107B6000C01A524183098B4201D38B01C01A524182 -:107B700043098B4201D34B01C01A524103098B4286 -:107B800001D30B01C01A5241C3088B4201D3CB0071 -:107B9000C01A524183088B4201D38B00C01A524154 -:107BA00043088B4201D34B00C01A5241411A00D204 -:107BB00001465241104670475DE0CA0F00D049426D -:107BC000031000D34042534000229C4603098B42DD -:107BD0002DD3030A8B4212D3FC22890112BA030A65 -:107BE0008B420CD3890192118B4208D389019211E7 -:107BF0008B4204D389013AD0921100E08909C3096C -:107C00008B4201D3CB01C01A524183098B4201D36D -:107C10008B01C01A524143098B4201D34B01C01A58 -:107C2000524103098B4201D30B01C01A5241C308D0 -:107C30008B4201D3CB00C01A524183088B4201D33F -:107C40008B00C01A5241D9D243088B4201D34B005A -:107C5000C01A5241411A00D20146634652415B109C -:107C6000104601D34042002B00D54942704763467D -:107C70005B1000D3404201B5002000F005F802BDC2 -:107C80000029F8D016E770477047C046002B11D185 -:107C9000002A0FD1002900D1002802D00021C943B9 -:107CA000081C07B4024802A14018029003BDC04658 -:107CB000D9FFFFFF03B4684601B5029800F030F821 -:107CC000019B9E4602B00CBC7047C046F0B5CE4644 -:107CD000474615042D0C2E0080B50704140C3F0CEC -:107CE0009946030C7E435D43674363437F19340C1D -:107CF000E4199C46A54203D980235B029846C444FC -:107D00004B4643435143250C36046544360C24044A -:107D1000A4195B19591820000CBC90469946F0BD77 -:107D2000F0B54F464646D646C0B5040082B00D00B9 -:107D3000914698468B422FD82CD04146484600F0B9 -:107D4000CFF829000600200000F0CAF8331A9C463C -:107D5000203B9A4600D576E04B46524693401F00A2 -:107D60004B46624693401E00AF4228D825D053466A -:107D7000A41BBD41002B00DA7BE00022002300920F -:107D8000019301235246934001930123624693409D -:107D9000009318E08242D0D9002200230092019380 -:107DA0000A9B002B01D01C605D600098019902B015 -:107DB0001CBC90469946A246F0BDA342D7D90022EA -:107DC0000023009201936346002BE9D0FB079846FD -:107DD000414672080A437B0866460EE0AB4201D179 -:107DE000A2420CD8A41A9D41012024196D41002102 -:107DF000013E24184D41002E06D0AB42EED9013E83 -:107E000024196D41002EF8D10098019953460019AC -:107E10006941002B23DB2B005246D3402A006446E5 -:107E2000E2401C0053461500002B2DDB2600574670 -:107E3000BE40330026006746BE403200801A99419A -:107E400000900191ACE7624620239B1A4A46DA4033 -:107E50006146130042468A4017001F4380E762468E -:107E600020239B1A2A0066469A402300F3401343BE -:107E7000D4E76246202300219B1A00220091019240 -:107E80000122DA40019280E72023624626009B1AF5 -:107E9000DE402F00B0466646B74046463B003343BF -:107EA000C8E7C0461C2101231B04984201D3000CE3 -:107EB00010391B0A984201D3000A08391B0998425D -:107EC00001D30009043902A2105C40187047C04673 -:107ED0000403020201010101000000000000000093 -:107EE00010B5002903D1FFF7DDFF203002E0081CA8 -:107EF000FFF7D8FF10BDC04610B50A22002100F0E0 -:107F0000FDFF10BD0EB403B5010003AB044804CB64 -:107F10000068019300F074F902B008BC03B0184780 -:107F200084A1020870B505000E001400002804D0DA -:107F30008369002B01D102F02BF81C4B9C420FD11E -:107F40006C68A3891B0702D52369002B21D121006E -:107F5000280001F049F800281BD00120404270BDE4 -:107F6000134B9C4201D1AC68EBE7124B9C42E8D129 -:107F7000EC68E6E7A3680136013BA360002B04DA56 -:107F8000A26993420ADB0A2908D023685A1C22609E -:107F9000197031780029EDD10800E0E722002800AF -:107FA00000F0C0FF431CF4D1D7E7C046F8DC0D1049 -:107FB00018DD0D10D8DC0D1010B5034B0A000100C0 -:107FC0001868FFF7AFFF10BD84A10208EC3000680D -:107FD0007047000010B5034B0100186800F08AF8E4 -:107FE00010BDC04684A1020810B5034B01001868FB -:107FF00000F036F810BDC04684A1020882B0002906 -:1080000000D101A9101E06D0002B06D013780B60FA -:108010001078431E984102B0704702204042FAE7B0 -:1080200030B50024A24201D1002005E0035D651CAB -:108030000C5DA34201D0181B30BD2C00F2E70023D9 -:1080400010B59A4200D110BDCC5CC4540133F8E79E -:1080500003001218934200D1704719700133F9E7F9 -:1080600070B50500002910D00C1F2368002B00DA22 -:10807000E418280002F0A3F81D4A1368002B05D16C -:1080800063601460280002F09BF870BDA34209D918 -:10809000216860188342F3D118685B684118216039 -:1080A000EEE713005A68002A01D0A242F9D91968F4 -:1080B0005818A0420BD1206809185818196082423C -:1080C000E0D110685268411819605A60DAE7A0429E -:1080D00002D90C232B60D5E721686018824203D1B6 -:1080E000106852684118216062605C60CAE7C0464F -:1080F000D4AD0208032370B5CD1C9D43083506009E -:108100000C2D1ED20C25A9421DD8300002F057F8C4 -:10811000254A14682100002919D1244C2368002B1A -:1081200003D1300000F0E0FD20602900300000F0B5 -:10813000DBFD431C2BD10C233000336002F040F8F0 -:1081400003E0002DDFDA0C233360002070BD0B68E4 -:108150005B1B19D40B2B03D90B60CC18256003E0F3 -:108160004B688C420DD11360300002F029F82000DA -:1081700007220B30231D9043C31AE7D05A42E25026 -:10818000E4E763600C00EFE70C004968C3E70323F2 -:10819000C41C9C43A042E1D0211A300000F0A4FD91 -:1081A000431CDBD1C7E7C046D4AD0208D8AD0208F6 -:1081B000936810B5013B9360002B04DA9469A342E5 -:1081C00007DB0A2905D01368581C106019700800D5 -:1081D00010BD00F0A7FE0100F9E7F8B506000F009A -:1081E0001400D518AC4201D1002007E021783A00F4 -:1081F0003000FFF7DDFF0134431CF3D1F8BD000070 -:10820000F0B59FB002900F0016000593002805D02E -:1082100083690493002B01D101F0BAFE7B4B9F428E -:108220005BD1029B5F68BB891B0762D53B69002B52 -:108230005FD0002306AC6361203363761033A376EE -:1082400035002B78002B01D0252B5CD1AB1B049380 -:108250000CD0320039000298FFF7BFFF431C00D159 -:10826000C4E06269049B9446634463612B78002BED -:1082700000D1BBE0012200235242626002A95432C5 -:1082800052186E1C2360E360A3601370A3653178FD -:1082900005225F4801F088FF751C002835D122684F -:1082A000D30604D5532302A95B18202119701307A4 -:1082B00004D5532302A95B182B21197033782A2B7C -:1082C0002CD0350000210A20E3682A786E1C303A51 -:1082D000092A64D900292ED026E04E4B9F4202D1B4 -:1082E000029B9F689FE74C4B9F429CD1029BDF689B -:1082F00099E73900029800F077FE002899D0012014 -:1083000040421FB0F0BD01359BE7414B2268C01AC7 -:1083100001238340134323602E00B8E7059B191DFA -:108320001B680591002B01DB099304E05B42E360CD -:108330000223134323602B782E2B0AD16B782A2B30 -:1083400035D1059B02351A1D1B680592002B2BDBCE -:108350000793324E29780322300001F025FF0028D0 -:1083600006D04023801B83402268013513432360DD -:10837000297806222A486E1C217601F015FF002874 -:108380003AD0284B002B25D10722059B0733934376 -:10839000083305936369039A9B18636150E743436D -:1083A00001219B18350090E701235B42D0E70023B1 -:1083B0000A201A000135636029786E1C30390929BA -:1083C00003D9002BC5D00792C3E7424301235218BB -:1083D0003500F1E705AB00933A00134B21000298FA -:1083E00000F0C0F80390039B0133D3D1BB895B0637 -:1083F00000D584E70B9884E705AB00933A000A4B5D -:108400002100029800F068FBECE7C046F8DC0D1094 -:1084100082DB0D1018DD0D10D8DC0D1088DB0D107F -:108420008CDB0D1065850D10DB810D10F0B58BB068 -:1084300014001D1E129953DA802424061B191D00F6 -:1084400014002D230B702023149E03229E43462EDE -:1084500007D03300453B59424B411099013ACB18A4 -:10846000109309AB049308AB0393139B0092029300 -:10847000109B220001932B0000F0B2FE0700472E54 -:1084800002D1119BDB0724D5109BFB180793462EC6 -:1084900014D13B78302B0CD100220023200029007E -:1084A00002F052FA002804D10123109A9B1A139A61 -:1084B0001360139B079A1B68D318079300220023AD -:1084C0002000290002F040FA302200280DD0079B3E -:1084D00009933800099B159ADB1B13600BB0F0BDA4 -:1084E0000023AFE7591C09911A70099B07998B4229 -:1084F000F8D3EEE7F0B5831C85B0019306000C00BD -:1085000002702B23002901DA2D234C427370092CB1 -:1085100022DD02ABDD1D20000A21FFF7B1FB6F1E3B -:108520003031397020000A21FFF7C4FA040009280D -:108530000BDC023D3034019B2C7002AA073218007C -:10854000AA4204D8801B05B0F0BD3D00E3E72A78BD -:1085500001351A700133F0E73023E418B370301D91 -:10856000F470EFE7F0B595B00C000A920B931A9DEA -:10857000099001F0A1FD036818000C9300F0E6FBE0 -:108580000023129323680E900D930D99277E2B687C -:108590000722C90545D59B1893431A0008322A6063 -:1085A0001A685B68A264E3640122E56CA66C6B0048 -:1085B0005B080F935242AC4B30000F9903F0D2FE90 -:1085C000002830D10122A84B524230000F9902F00E -:1085D000CBF9002827D1002200233000290002F027 -:1085E000B9F9002803D023002D2243331A709F4D80 -:1085F000472F00D89E4D032300260D9A2361013397 -:108600009A4322600B9B13AA009321000A9B0998AE -:1086100000F0F4F9431C00D093E00120404215B073 -:10862000F0BD0733B8E732002B003000290003F01B -:1086300099FE002804D08F4D472FDCD88E4DDAE705 -:1086400080230D996268DB000B43511C43D1073234 -:10865000626012AA0021059211AA039223222360CC -:108660000691019308A963685218029200933200A0 -:108670002B0004970998FFF7D9FE20233A00050044 -:108680009A43472A07D1119BDA1C02DB62689342A6 -:1086900045DD023FFFB21199652F25D82000013931 -:1086A0003A0050301191FFF725FF129A0600131877 -:1086B0002361012A02DC2268D20701D5013323613C -:1086C000232308AA9B181B78002B9BD023002D2264 -:1086D00043331A7096E7672F00D176E1472FB8D160 -:1086E000002AB6D10122B3E7662F19D163680029A9 -:1086F0000CDD2161002B02D12268D20702D50133A3 -:108700005B182361119B0026A365D9E7002B03D1D9 -:1087100001222168114200D09A1C2261F2E76727EA -:10872000119B129A934205DB22682361D207E9D597 -:108730000133E6E70121002B01DC4918C91A521860 -:10874000EBE72268530508D423692A000A9909989F -:108750000B9DA847431C29D15FE7652F00D8E0E0B7 -:10876000A06CE16C0022002302F0EEF8002834D067 -:108770000123424A0A9909980B9DA847431C00D13E -:108780004BE7119B129A934202DB2368DB070DD55E -:108790000B9D0E9B0C9A0A990998A8470025431C2B -:1087A00000D13AE7129B013BAB420ADC23689B07EE -:1087B00000D508E1139BE068984200DB2FE7180022 -:1087C0002DE7220001231A320A9909980B9EB0471F -:1087D000431C00D121E70135E4E7119B002B2DDC80 -:1087E0000123264A0A9909980B9EB047431C00D1E1 -:1087F00013E7119B002B05D1129B002B02D123689C -:10880000DB07D3D50B9E0E9B0C9A0A990998B047AB -:108810000026431C00D100E7119B5B42B34201DC00 -:10882000129B92E7220001231A320A9909980B9FA2 -:10883000B847431C00D1F0E60136EDE7A36D129F67 -:108840009F4200DD1F00002F08DD3B002A000A992F -:1088500009980B9EB047431C00D1DEE600230D9320 -:10886000FB43DB170F9318E0FFFFEF7F97DB0D1043 -:1088700093DB0D109FDB0D109BDB0D10A3DB0D10A8 -:10888000220001231A320A9909980B9EB047431C13 -:1088900000D1C2E60D9B01330D930F9BA66D0D9A7F -:1088A0003B40F31A9342EBDC119B129AAD199342B1 -:1088B00010DB2368DB070DD4129F119BBE1BFF1A30 -:1088C000B74200DD3700002F0DDCFE43F317002513 -:1088D0000C931CE00E9B0C9A0A9909980B9FB847C1 -:1088E000431CE9D199E63B002A000A9909980B9D9F -:1088F000A847431CE9D190E6220001231A320A99C5 -:1089000009980B9EB047431C00D186E60135119AA9 -:10891000129B0C999B1A3A000A409B1AAB42EBDC63 -:1089200044E7129B012B02DC01231A4232D00123BF -:108930002A000A9909980B9FB847431C00D16CE69E -:108940000E9B0C9A0A9909980B9F0135B847431C56 -:1089500000D162E6A06CE16C129B00225F1E002336 -:1089600001F0F2FF3B00002814D000250AE02200AD -:1089700001231A320A9909980B9FB847431C00D16A -:108980004BE60135129B013BAB42F0DC2200330089 -:108990005032DBE62A000A9909980B9DA847431C30 -:1089A000F4D13AE62200012319320A9909980B9E64 -:1089B000B047431C00D130E60135E368139A9B1A97 -:1089C000AB42EFDCF6E60025F7E7002A00D189E6A6 -:1089D0000021069112A9059111A90391232108A84C -:1089E00009182360019300922B0004970291320032 -:1089F0000998FFF71BFD050045E6C046F7B51500D1 -:108A000001938A680B6900900C00934200DA13000E -:108A100022002B6043321278002A01D001332B60F0 -:108A200023689B0602D52B6802332B600627236838 -:108A30001F4027D0230043331B785A1E93412268DE -:108A4000920630D42200019943320098089EB04724 -:108A5000431C25D0062320682A68E16803400025CE -:108A6000042B03D18D1AEB43DB171D40A368226949 -:108A7000934201DD9B1AED180027BD4220D1002052 -:108A800010E00137E3682A689B1ABB42D2DD22005E -:108A90000123193201990098089EB047431CF0D178 -:108AA00001204042FEBD3020E11843310870210012 -:108AB0005A1C45310978A218433202331170C1E7BC -:108AC000220001231A3201990098089EB047431CE6 -:108AD000E6D00137D1E70000F0B589B004920A0072 -:108AE00043320593039002920A7E0C000E9B6E2A7D -:108AF00000D186E01FD8632A33D008D8002A00D1DD -:108B00008CE0582A4DD0250042352A7030E0642A86 -:108B100001D0692AF7D1196825680A1D280629D5C8 -:108B200008681A60002803DA2D23029A4042137065 -:108B30006B4E0A274FE0732A74D008D86F2A1FD0D3 -:108B4000702AE0D1202209680A43226003E0752AD6 -:108B500016D0782AD7D12200782145321170614E83 -:108B600022E025001A684235111D196013682B7028 -:108B7000012365E008681A606906D3D500B2D1E721 -:108B800019682568081D186008682E0605D5544E1A -:108B900008276F2A1BD00A2719E06D06F7D580B287 -:108BA000F5E745314E4E0A7018682268011D0068CD -:108BB0001960150621D5D30702D520231A43226058 -:108BC0001027002803D1202322689A432260230023 -:108BD000002243331A706368A360002B58DB042221 -:108BE000216891432160002854D1029D002B5AD066 -:108BF0002500337842352B7055E05506DBD580B221 -:108C0000D9E71A680D68101D4969186013682E06A7 -:108C100001D5196002E06D06FBD519800023029D85 -:108C200023614FE01A68111D196015680021626800 -:108C3000280001F0B9FA002801D0401B6060636889 -:108C400023610023029A13703CE023692A000499EF -:108C50000398059DA847431C3ED023689B0715D465 -:108C6000079BE068984239DA180037E022000123B8 -:108C7000193204990398059EB047431C2CD0013546 -:108C8000E368079A9B1AAB42F0DCE9E70025F7E7B7 -:108C90000028ADD0029D3900FEF708FF735C013D4E -:108CA0002B700028F7D1082F09D12368DB0706D5E0 -:108CB00063682269934202DC3023013D2B70029BE2 -:108CC0005B1B2361059B07AA00932100049B03986B -:108CD000FFF794FE431CB8D10120404209B0F0BD1B -:108CE000A5DB0D10B6DB0D10002370B5064C05009A -:108CF0000800236003F014FC431C03D12368002BFD -:108D000000D02B6070BDC0463CB00208C9B20378E9 -:108D1000002B04D08B4200D170470130F7E74B4263 -:108D2000594149420840F7E702780B78002A03D0FE -:108D3000013001319A42F7D0D01A704703000A7807 -:108D400001311A700133002AF9D170470023C25C47 -:108D50000133002AFBD1581E7047002330B59A42D8 -:108D60000AD0013AC45CCD5CAC4204D1934202D03B -:108D70000133002CF6D1631B180030BD30B505005F -:108D8000002A00D130BD0C78013A6B1C2C700131E7 -:108D9000002C05D19A189A42F4D01C700133FAE7DE -:108DA0001D00EDE7F0B51F000E008DB00B90029195 -:108DB000039212983478FFF709F9082200194378D2 -:108DC000751C134053D12D2C53D17478B51C01332D -:108DD0000193002F00D18AE0102F0AD1302C08D146 -:108DE00020222B789343582B00D07AE010276C7800 -:108DF0000235019B002B41D1013B04933E4B05936F -:108E00003A00FB17049805990893FEF73FFF0023EB -:108E100009900E00002000210A922200303A092A0F -:108E200031D81400A7423DDD5A1C1DD0B14236D8BE -:108E300002D1099B984232D8099B834206D18E42C7 -:108E400004D101230A9A5B42A2420DDB0B0002000F -:108E500008993800FEF73AFFE31706940793069B3C -:108E6000079CC018614101232C780135D5E72E00FD -:108E70009FE72B2CACD1B51C7478A9E70023049391 -:108E800080231B06BBE72200413A192A01D8373C50 -:108E9000C8E72200613A192A04D8573CC2E70123E7 -:108EA0005B42E1E75A1C09D10B9A23331360039B01 -:108EB00004980599002B0ED10DB0F0BD019A002A3F -:108EC00004D006000F0000217042B941039A002A25 -:108ED000F2D0002B01D06B1E0293039B029A1A6002 -:108EE000EAE73024002F00D083E7082781E7302C01 -:108EF00000D175E70A277CE7FFFFFF7F37B5130036 -:108F0000064A05001068046A002C00D1044C0A00CF -:108F100000942900FFF746FF03B030BD84A102088A -:108F2000E8A10208F8B505000E001400002804D0DE -:108F30008369002B01D101F02BF8224B9C422DD1EB -:108F40006C68A369A360A3891B0731D52369002B33 -:108F50002ED023682269F7B2981A6369F6B2834269 -:108F600005DC2100280000F0A5FF002826D1A36819 -:108F70000130013BA36023685A1C22601F706369A3 -:108F8000834204D0A389DB071AD50A2E18D1210009 -:108F9000280000F08FFF002812D00FE00A4B9C42FF -:108FA00001D1AC68CDE7094B9C42CAD1EC68C8E757 -:108FB0002100280000F018F80028CAD001267642C7 -:108FC0003000F8BDF8DC0D1018DD0D10D8DC0D10E8 -:108FD0000B1E04D0FF2A04D98A2303608B3B1800A0 -:108FE00070470A700123FAE7364B70B51D6806001A -:108FF0000C00002D05D0AB69002B02D1280000F039 -:10900000C7FF314B9C420FD16C680C23E25E93B2D8 -:1090100019072DD4D90611D4092301203360373321 -:109020001343A381404270BD284B9C4201D1AC68E0 -:10903000EBE7274B9C42E8D1EC68E6E75B0713D5EA -:10904000616B002908D023004433994202D03000DC -:10905000FFF706F8002363632422A3899343A381C7 -:1090600000236360236923600823A2891343A3813B -:109070002369002B0BD1A0218022A38989009200B3 -:109080000B40934203D02100300001F049F8012346 -:10909000A289134011D00023A36063695B42A361DE -:1090A000002023698342BED10C23E25E1306BAD5A9 -:1090B00040231343A3810138B5E7920700D46369C5 -:1090C000A360EDE784A10208F8DC0D1018DD0D1097 -:1090D000D8DC0D10F0B503690C6989B00700059163 -:1090E0000026A34265DB0B00013C1433A50003936B -:1090F0005B1904930300143302935D19049B2868E1 -:109100001B68591C0193FEF74BFC0190B04229D01B -:10911000039B02989C460696624608CA9446019AAA -:1091200099B251431B0C534389190A0C9B1807939E -:109130001E0C036889B29AB2069BD2180368521AB1 -:10914000190C6B469B8BCB1A11145B18191492B235 -:109150001B041A43049B069104C06345DCD22B68B0 -:10916000002B2DD00599380001F040FA00281FDBB4 -:109170000025019B0298013303990193026808C9F5 -:1091800092B255199AB2AA1A05681B0C2D0CEB1A4B -:1091900015145B191D1492B21B04134308C0049BE1 -:1091A0008B42EBD2029AA300D3181A68002A11D07E -:1091B000019E300009B0F0BD2B68002B04D1013CAA -:1091C000029B043DAB42F7D33C61CBE71A68002A0F -:1091D00004D1013C029A043B9A42F7D33C61E7E791 -:1091E000F0B516001F00446A9BB00290239D0696BE -:1091F0000797002C08D11020FEF7ECFE029B586266 -:10920000446084600460C460029B5B6A1968002942 -:109210000BD05A68012393404A608B60029801F09A -:1092200008F80022029B5B6A1A60002F20DA0123F3 -:109230002B607B005B080793079CB24B22001793BF -:109240001A409A4217D1B04B229A1360069B002B0A -:1092500003D1240301D100F087FDAC4B249A08937D -:10926000002A02D0AA4B249A136008981BB0F0BDC4 -:1092700000232B60E0E7069E079F002200233000BA -:10928000390001F061FB051E0BD00123229A136007 -:10929000A04B249A0893002AE7D09F4A24990A6099 -:1092A000E3E718AB019319AB009332003B0002983F -:1092B00001F01AFA630003905B0D74D03A03974CE7 -:1092C000120B14432100964A300016959E18002276 -:1092D000944B02F0FFFC944A944B02F089FA944AB2 -:1092E000944B01F05FFB040030000D0003F08CF89C -:1092F000914A924B02F07CFA02000B0020002900F8 -:1093000001F050FB04000D0003F048F800220700B4 -:1093100000232000290001F01DFB002809D038009F -:1093200003F072F82B00220001F00EFB434258417B -:109330003F1A01231493162F0DD88149FB00C91839 -:1093400008684968069A079B01F018FB002846D078 -:109350000023013F1493189B9E1B00230A933300A4 -:10936000013B0B9304D501239B1B0A9300230B9312 -:10937000002F36DB0B9B1197DB190B930023049313 -:10938000209B0124092B00D984E0052B02DD002459 -:10939000043B2093209B981E032800D984E0FEF70D -:1093A000F5FA7577286A189B199A9E18654BF2187A -:1093B000202A0FDD40239B1A9C40634B0698F3182C -:1093C000D840204303F05AF80123604C013E0919AC -:1093D00016937CE7202306989B1A9840F2E7149096 -:1093E000B9E70A9BDB1B0A937B420493002311938A -:1093F000C6E701230D93219B002B59DD0C930993A4 -:10940000029A556A00226A600432100014306968BA -:10941000984252D9029800F0D4FE029B28605B6A01 -:109420001B680893099B0E2B00D90AE1002C00D180 -:1094300007E1069B079C12931394002F00DC89E040 -:109440000F213A003E4B0A40D2009B181D685E680F -:1094500002233C110E93E3060BD53D4B0C401A6AD8 -:109460005B6A1298139901F0B9FD032306900791E6 -:109470000E9300233AE001230D93219BFB180C93DC -:1094800001330993002BBBDC0123B9E70023B1E7CB -:109490000023F1E700230D942093013B00220C935D -:1094A000099313332192ABE701230D93023BF5E7B8 -:1094B00001230C9309931A00F4E70131696052000B -:1094C000A3E701231C420ED00E9B214A01330E93C9 -:1094D000109B2800DB009B1831001A685B6802F0C3 -:1094E00087F905000E00109B641001331093002CC7 -:1094F000E7D1069807992A00330001F06FFD069026 -:10950000079142E00000F07F0F270000D1DC0D1032 -:10951000D4DC0D10A3DB0D10A4DB0D100000F03F18 -:1095200001FCFFFF0000F83F61436F63A787D23F54 -:10953000B3C8608B288AC63FFB799F501344D33F42 -:1095400060DD0D103204000012040000000010FE67 -:1095500038DD0D1002230E93002F16D012981399A8 -:109560007C420D332340CE4ADB00D3181A685B6877 -:1095700002F03EF9002301261D00069007912411F8 -:10958000002C00D08CE0002BB9D1149B002B00D113 -:1095900096E0069C079D0022C24B2000290001F0A6 -:1095A000D9F9002800D18BE0099B002B00D187E07E -:1095B0000C9B002B41DDBC4B00222000290002F057 -:1095C00017F90E9B0690079101330E930C9B7E1E9C -:1095D0000E98109302F018FF069A079B02F008F904 -:1095E0000022B24B01F0DEF9B14A0E900F910E9CB1 -:1095F0000F9D94460F9B634415931D00109B002BF9 -:1096000061D1069807990022AA4B02F063FB220061 -:10961000159B0690079101F0B1F9002800D0A8E24F -:10962000A5480F99844661440B00069807992200CB -:1096300001F090F9002800D095E2129B139C06934C -:109640000794199B002B00DA5CE10E2F00DD59E135 -:10965000934BFA009B185C681B6804930594219B4C -:10966000002B00DBD8E0099B002B00DDD4E000D00C -:109670007DE20498059900228E4B02F0B9F8069A13 -:10968000079B01F085F9099B04931E00002800D078 -:109690004FE2089B089A5D1C3123013713704BE29F -:1096A00034420AD00E9B854A01330E93EB009B187F -:1096B0001A685B6802F09CF83300641001355FE7BC -:1096C0003E00099B84E7109B0D995A1E744BD200F3 -:1096D0009B181A685B68002949D00020784901F07E -:1096E0007DFC2B00220002F0F5FA089B0E900F91F2 -:1096F00015930698079902F051FE040002F084FECB -:1097000002000B000698079902F0E4FA159B30342A -:109710005D1C1C700E9A0F9B0690079101F01AF9C0 -:1097200000286CD1069A079B00205E4902F0D2FA0D -:109730000E9A0F9B01F00EF9002800D0C3E0089BA1 -:10974000109AEB1A9A4200DC77E70E980F990022E4 -:10975000554B02F04DF800220E900F910698079994 -:10976000514B02F045F8159506900791C1E720008E -:10977000290002F03DF8089C109A230094460E90B0 -:109780000F91634415930698079902F007FE0500B0 -:1097900002F03AFE0B0002000698079902F09AFACE -:1097A0003035159B2570013406900791A3422AD1CC -:1097B0000E980F99089A109B9446634400221D004E -:1097C0003F4B01F0EFF802000B000698079901F0FB -:1097D000D5F8002800D076E00E9A0F9B002038497B -:1097E00002F078FA02000B000698079901F0B2F82F -:1097F000002800D121E76B1E1A78302A01D03700EB -:109800003FE01D00F7E7069807990022264B01F07C -:10981000EFFF06900791B6E7089E049A059B06980D -:10982000079901F0DBFB02F0B9FD040002F0ECFD4A -:10983000049A059B01F0DCFF02000B0006980799D3 -:1098400002F048FA230030333370099A089B751CE4 -:10985000EB1A9A4248D102000B0001F0A3F8049AD7 -:10986000059B0690079101F089F800282AD1049AF7 -:10987000059B0698079901F067F8002801D0E307D7 -:1098800020D40399029800F0D4FC00232B70229B73 -:1098900001371F60249B002B00D1E6E41D60E4E447 -:1098A00060DD0D100000F03F0000244000001C406F -:1098B0000000C0FC000014400000C07C38DD0D102A -:1098C0000000E03F3E006B1E1A78392A06D1089A44 -:1098D0009A4207D130231370130001361A780132EF -:1098E0001A708CE71D00EEE70022A44B01F080FF08 -:1098F00000220023069007912E0001F025F8002891 -:109900008BD0BEE70D9A002A00D1DAE0209A012A16 -:1099100000DDBDE0169A002A00D1B5E0984A9B18F8 -:10992000049D0A9C0A9A0121D2180A920B9A029865 -:10993000D3180B9300F01DFD0600002C0EDD0B9BD1 -:10994000002B0BDD0B9A2300944200DD13000A9AD2 -:10995000E41AD21A0A920B9AD31A0B93049B002B87 -:109960001FD00D9B002B00D1AFE0002D11D0310096 -:109970002A00029800F096FD039A01000600029862 -:1099800000F000FD03991090029800F052FC109B2B -:109990000393049B5A1B04D00399029800F082FDA4 -:1099A00003900121029800F0E4FC119B0490002B2D -:1099B00000D1E3E11A000100029800F073FD209B42 -:1099C0000490012B00DD82E00025069BAB420ED106 -:1099D000079B1B03AB420AD1179B079A134206D081 -:1099E0000A9B013501330A930B9B01330B93119BA7 -:1099F0000120002B6CD10B9B18181F2318407ED020 -:109A000001331B1A042B70DD1C23181A0A9B24181F -:109A10001B180A930B9B1B180B930A9B002B05DD4D -:109A20001A000399029800F08FFD03900B9B002B06 -:109A300005DD1A000499029800F086FD0490149B3D -:109A4000002B5ED00499039800F0D0FD002858DA6E -:109A500000230A220399029800F004FC0D9B013FA9 -:109A60000390002B00D190E1002331000A220298DC -:109A700000F0F8FB0C9B0600002B00DD88E0209B2B -:109A8000022B00DC84E044E03623189A9B1A47E757 -:109A9000099B5D1E049BAB4208DB5D1B099B002BF1 -:109AA0000CDA0A9B099A9C1A00233BE7049B049555 -:109AB000EA1A119B00259B181193EFE70A9C099B5A -:109AC00030E7049D0A9C0D9E37E7049A64E7002561 -:109AD000049B049A1B69109303339B00D3185868A6 -:109AE00000F0FEFB2023181A85E7042B95D00A9A74 -:109AF0001C33D2180A920B9AE418D3188CE703008F -:109B0000F5E7099B002B3DDC209B022B3ADD099BEE -:109B10000C930C9B002B0CD104990522029800F0A9 -:109B2000A1FB04900100039800F060FD002800DD17 -:109B3000AFE5219B089DDF43002309930499029818 -:109B400000F077FB002E00D19BE6099B002B05D08F -:109B5000B34203D01900029800F06BFB3100029869 -:109B600000F067FB8DE6109B04931E00E1E70023E5 -:109B7000FAE7109B370004931E008AE5000024409A -:109B8000330400000D9B002B00D1B2E0099B0C9325 -:109B9000002C05DD31002200029800F0D5FC060003 -:109BA0003000002D11D07168029800F00AFB3100DE -:109BB000040033690C319A1C92000C30FEF73FFA16 -:109BC00001222100029800F0BFFC09960600089BC4 -:109BD0000A9304990398FFF77DFA09990D90040000 -:109BE000039800F003FD320010900499029800F0F1 -:109BF00017FD01230B93C36830340500002B04D1FB -:109C00000100039800F0F2FC0B902900029800F08C -:109C100010FB0B9B209A13430ED1069A013313427B -:109C20000AD1392C26D0109B002B01DD0D9C31343C -:109C30000A9B5D1C1C7081E7109B002B07DB1D003D -:109C4000209B1D4322D10123069A13421ED10B9B58 -:109C5000002BEDDD03990122029800F075FC0499B8 -:109C6000039000F0C3FC002802DCE1D1E307DFD55C -:109C7000392CDBD10A9B0A9A5D1C392313706B1EA9 -:109C80001A78392A67D001321A7057E70A9B5D1C8F -:109C90000B9B002B04DD392CECD001340A9BC9E767 -:109CA0000A9B0C9A1C70089BEB1A93423ED000232F -:109CB0000A220399029800F0D5FA099B0390B34257 -:109CC00009D100230A220999029800F0CBFA0990E1 -:109CD00006000A957DE7099900230A22029800F000 -:109CE000C1FA002309900A223100029800F0BAFA62 -:109CF000EEE7099B0C93089B069304990398FFF7E2 -:109D0000E9F9069B30305D1C18700C9A089B040022 -:109D1000EB1A9A4208DD00230A220399029800F008 -:109D2000A1FA06950390E8E700230993039901221D -:109D3000029800F009FC0499039000F057FC0028F9 -:109D40009DDC01D1E3079AD46B1E1A78302A00D02B -:109D5000F4E61D00F8E7089A9A4203D1312301374F -:109D60001370EBE61D008AE70B4B249A08930B4B0C -:109D7000002A01D0FFF777FAFFF777FA209B012B33 -:109D800000DC21E6119D012035E60C9B002BB2DCA6 -:109D9000209B022BAFDDBCE6C8DC0D10D0DC0D1023 -:109DA000F7B58A8905000C00130760D44B68002BB7 -:109DB00004DC0B6C002B01DC0020FEBDE76A002FE9 -:109DC000FAD000232E682B6080235B01216A1A40A1 -:109DD00034D0606DA3895B0706D56368C01A636BD6 -:109DE000002B01D0236CC01A0200216A0023280036 -:109DF000E76AB847A189431C06D12B681D2B30D8D0 -:109E00002B4ADA40D3072CD50023636023692360F3 -:109E1000CB0405D5431C02D12B68002B00D1606513 -:109E2000616B2E600029C7D023004433994202D0D1 -:109E30002800FEF715F900206063BEE70123280023 -:109E4000B847431CC6D12B68002BC3D01D2B01D0B3 -:109E5000162B01D12E60AFE74023A2891343A381C3 -:109E6000ABE740230B430120A3814042A5E70F69E4 -:109E7000002FA1D00B680F60DB1B0193002392071A -:109E800000D14B69A360019B002B00DC94E7019B90 -:109E90003A00216A2800A66AB047002803DC402364 -:109EA000A2891343DFE7019B3F181B1A0193EAE7DE -:109EB000010040200B6970B505000C00002B01D19A -:109EC000002070BD002804D08369002B01D100F070 -:109ED0005FF80B4B9C4209D16C680C22A35E002BEF -:109EE000EED021002800FFF75BFFEAE7054B9C421C -:109EF00001D1AC68F1E7044B9C42EED1EC68ECE791 -:109F0000F8DC0D1018DD0D10D8DC0D10002310B595 -:109F1000040003604360836081814366C281036102 -:109F200043618361190008225C30FEF791F8054B0C -:109F300024626362044BA362044BE362044B236319 -:109F400010BDC046ADA70D10D5A70D100DA80D1062 -:109F500039A80D1010B5024900F08CF810BDC046AC -:109F6000B59E0D1070B568254A1E55430E00290098 -:109F70007431FEF7BFF8041E08D000212A000160EA -:109F800046600C30A0606832FEF762F8200070BDB9 -:109F9000836913B50400002B28D18364C36403656F -:109FA000134B144A1B6882620193984201D101232A -:109FB0008361200000F020F86060200000F01CF8B1 -:109FC000A060200000F018F80022E0600421606822 -:109FD000FFF79CFF01220921A068FFF797FF0222EB -:109FE0001221E068FFF792FF0123A36113BDC04671 -:109FF00074DB0D10559F0D10F8B51C4B07001E6843 -:10A00000B369002B02D13000FFF7C2FF4836B468B5 -:10A010007368013B04D53368002B07D03668F6E738 -:10A020000C22A55E002D0DD06834F2E70421380023 -:10A03000FFF798FF30600028F0D10C2304003B604C -:10A040002000F8BD20000A4B656625606560A560AC -:10A05000E36025616561A561082229005C30FDF798 -:10A06000F7FF6563A563A564E564E9E774DB0D109C -:10A070000100FFFFF7B504000700002601914834F6 -:10A08000002C01D13000FEBD6368A5680093009BE1 -:10A09000013B009301D52468F2E7AB89012B08D975 -:10A0A0000E22AB5E013304D029003800019B984793 -:10A0B00006436835EBE70000034B1B68186A00286D -:10A0C00000D10248F030704784A10208E8A10208DC -:10A0D00070B50E001D000E23C95E96B01400002955 -:10A0E00007DA00232B60B3891B0611D48023DB0021 -:10A0F0000FE06A4600F0CCFB0028F2DBF022019B67 -:10A1000012021340054A9B185A4253412B60EDE757 -:10A1100040230020236016B070BDC04600E0FFFF62 -:10A12000F7B502268B8905000C00334206D02300C8 -:10A1300047332360236101236361F7BD01AB6A46A6 -:10A14000FFF7C6FF009907002800FDF7D3FF00289E -:10A1500008D10C22A35E9A05EFD4032293431E4339 -:10A16000A681E4E70F4BAB628023A28920601343F2 -:10A17000A381009B20616361019B002B0DD00E2306 -:10A18000E15E280000F096FB002806D00322A38998 -:10A1900093431A0001231343A381A0893843A0816C -:10A1A000CBE7C046559F0D10C9B28218904201D12D -:10A1B0000020704703788B42FBD00130F6E77047F0 -:10A1C000704770B5466A04000D00002E07D11020BC -:10A1D000FDF700FF6062466086600660C660666AE2 -:10A1E000F368002B13D0636AAA00DB689B18186819 -:10A1F000002818D101210E00AE40721D92002000EF -:10A2000000F0C6FA00280CD0456086600DE02122DF -:10A210000421200000F0BCFA636AF060DB68002BC8 -:10A22000E1D1002070BD02681A6000230361C360A1 -:10A23000F8E770B5446A06000D00002C07D1102025 -:10A24000FDF7C8FE7062446084600460C460002D45 -:10A2500007D0736A6A68DB6892009B181A682A60E4 -:10A260001D6070BDF7B51E0014239C4607000C004E -:10A2700000200D698C4463461B68013099B2634627 -:10A280001B6851431B0C534389190E0C9B1989B24F -:10A290001E0C1B045B18614608C18C468542EADC33 -:10A2A000002E1BD0A368AB4212DC63683800591C37 -:10A2B000FFF787FF2100236901909A1C92000C315F -:10A2C0000C30FDF7BCFE21003800FFF7B2FF019C07 -:10A2D0002B1D9B00E31801355E6025612000FEBD4B -:10A2E0000300020C0020824201D11B0410301A0E20 -:10A2F00001D108301B021A0F01D104301B019A0F43 -:10A3000001D102309B00002B03DB01305B0000D445 -:10A31000202070470722036810B501001A400DD0B5 -:10A3200001240020234205D10230034203D0E34040 -:10A3300020000B6010BD9B080B60FBE79CB2100077 -:10A34000002C01D110201B0CDAB2002A01D10830F8 -:10A350001B0A1A0701D104301B099A0701D10230E8 -:10A360009B08DA07E8D45B0801D00130E4E720203D -:10A37000E0E710B50C000121FFF723FF0123446142 -:10A38000036110BDF0B50B691400126989B00D00AE -:10A39000934201DA25000C002F6926696968BB1910 -:10A3A0000293AB68BA19934200DA0131FFF709FF53 -:10A3B0000200BB1914329B00D3189C4600211300E5 -:10A3C000049063451DD31435BF00EB191434B60057 -:10A3D0000593A319039501940793079B019999424B -:10A3E00011D3029B002B06DD04235B429C44634691 -:10A3F0001B68002B51D0049B029A18001A6109B007 -:10A40000F0BD02C3DDE7019B1B6898B200281CD099 -:10A4100015000026039F02CF2C688BB24343090C22 -:10A420004143A4B21B199B190E0029680695090C1B -:10A4300071181E0C89190E0C9BB209040B4308C538 -:10A44000059BBB42E7D8069B5E60019B1B681D0C09 -:10A450001ED0100000271368039E3168046889B27B -:10A460006943240C0919C9190F049BB23B430360CB -:10A4700080CE43683F0C6F439BB2FB18090C5B18FE -:10A48000059906901F0C0430B142E6D806994B603E -:10A49000019B0432043301939FE7029B013B02932B -:10A4A0009FE700000323F7B5134005000E001400DA -:10A4B000002B08D02249013B9A005258002331005A -:10A4C000FFF7D0FE0600A310019336D06C6A002C73 -:10A4D00007D11020FDF77EFD68624460846004604F -:10A4E000C4606F6ABC68002C07D116492800FFF7CA -:10A4F00040FF00230400B86003600122019B134267 -:10A500000AD0310022002800FFF73CFF070031008D -:10A510002800FFF78EFE3E00019B5B1001930CD0DC -:10A520002068002807D1220021002800FFF72AFF19 -:10A530000023206003600400DFE73000FEBDC0465A -:10A5400028DE0D1071020000F0B50D0017002B6918 -:10A55000541185B0E3180193013300934968AB6847 -:10A560000290009A934235DB0298FFF72AFE0023FF -:10A570000200060019001432A3422EDBE343DB176E -:10A580001C402B00A40014192A69143392009A1855 -:10A5900094461F22174024D00132D21B039200227E -:10A5A00019682000B9400A4304C404CB0399CA4087 -:10A5B0009C45F5D84260002A02D0019B02330093EB -:10A5C000009B0298013B33612900FFF732FE300007 -:10A5D00005B0F0BD01315B00C3E7980011500133B5 -:10A5E000CAE704CB04C49C45FBD8E9E70A690369C0 -:10A5F00030B59B1A0DD1920014301431841889188B -:10A60000043C043925680A68954204D00123954228 -:10A6100004D3180030BDA042F2D3FAE75B42F8E75A -:10A62000F0B50D0085B00700110028001400FFF7F9 -:10A63000DDFF061E08D101003800FFF7C2FD01232F -:10A640004661036105B0F0BD01230193002804DBDE -:10A6500023002C001D000023019361683800FFF7E0 -:10A66000B0FD2F000022019B2669C3601434B300A3 -:10A67000E31802932B6914379B00FB180393030024 -:10A680009446143320CC04CF0192AAB294446A4673 -:10A69000614692882D0C8A1A0199090C691A1514C1 -:10A6A00049190D1492B209040A431A60039AAC4680 -:10A6B0000433BA42E6D802991A008C4205D3043A10 -:10A6C0001368002B0ED00661BCE704CC91B2614444 -:10A6D0000D14120C5219151489B212040A43AC4617 -:10A6E00004C3E8E7013EEAE7F7B51D0001211400C5 -:10A6F000089FFFF766FD2B036D0006001B0B6D0D19 -:10A7000024D10193002C27D068460094FFF702FE65 -:10A71000009C00281ED0019B20211A00091A8A40A3 -:10A72000C340224372610193019CB461631E9C414A -:10A7300001343461002D18D0124BED1835232D183B -:10A740003D60181A099B18603000FEBD802252033C -:10A750001343D6E77461E7E701A8FFF7DBFD0124A7 -:10A76000019B346173612030E4E7074BC018074B4D -:10A770003860E3189B00F3185869FFF7B1FD6401D6 -:10A78000201ADFE7CDFBFFFFCEFBFFFFFFFFFF3F00 -:10A790004A4370B511001400FDF7ACFC051E03D050 -:10A7A00022000021FDF754FC280070BD70B50C009C -:10A7B0000E25495F00F0A4F8002803DB636D1B1829 -:10A7C000636570BDA389024A1340A381F9E7C046BF -:10A7D000FFEFFFFFF8B51F008B8905000C00160086 -:10A7E000DB0505D50E23C95E0022022300F074F8B4 -:10A7F000A389054A28001340A38132000E23E15E9D -:10A800003B0000F01FF8F8BDFFEFFFFF70B50C0034 -:10A810000E25495F00F060F8A389421C03D1054A68 -:10A820001340A38170BD802252011343A381606550 -:10A83000F8E7C046FFEFFFFF10B50E23C95E00F03A -:10A8400015F810BD70B50500080011000022064C77 -:10A8500022601A00F7F754FA431C03D12368002B37 -:10A8600000D02B6070BDC0463CB00208002370B51C -:10A87000064C05000800236001F032FE431C03D1A2 -:10A880002368002B00D02B6070BDC0463CB002088E -:10A89000002370B5064C050008001100236001F08C -:10A8A00027FE431C03D12368002B00D02B6070BD12 -:10A8B0003CB00208002370B5064C05000800236078 -:10A8C00001F01EFE431C03D12368002B00D02B6037 -:10A8D00070BDC0463CB0020870B50500080011000C -:10A8E0000022064C22601A0001F012FE431C03D124 -:10A8F0002368002B00D02B6070BDC0463CB002081E -:10A9000070B50500080011000022064C22601A00F4 -:10A91000F7F708FA431C03D12368002B00D02B6003 -:10A9200070BDC0463CB002088446101C62468C468E -:10A93000191C634600E0C0461FB500F0F1FE002878 -:10A9400001D40021C8421FBD10B500F049FE4042AD -:10A95000013010BD10B500F0E3FE002801DB00203F -:10A9600010BD012010BDC04610B500F0D9FE002872 -:10A9700001DD002010BD012010BDC04610B500F063 -:10A980006BFE002801DC002010BD012010BDC04678 -:10A9900010B500F061FE002801DA002010BD012092 -:10A9A00010BDC046F0B54F464646D6460C000903DA -:10A9B000C0B5490A470F5E0039431F03DB0F9C46B1 -:10A9C00065007B0A570F1F436D0DE40F760DA146FE -:10A9D000C000B846D200AB1B64457BD0002B5FDDC6 -:10A9E000002E00D0A4E03E00164300D112E15E1E0E -:10A9F000002E00D09EE1871A4346B84280410125CF -:10AA0000C91A4042091A0B0200D431E149024E0A28 -:10AA1000002E00D16EE13000FDF744FA0300083B40 -:10AA20001F2B00DD61E120223900D21A9E40D14067 -:10AA30009F400E439D4200DD51E15D1B6B1C1F2BAF -:10AA400000DD7CE12021C91A3D0030008F408840A4 -:10AA5000DD40791E8F41310007222843D94000256F -:10AA600007433A40002A09D00F233B40042B05D06E -:10AA70003B1DBB42BF417F42C9191F000B0200D4DE -:10AA800026E26A1CC64B55056D0D9A4200D106E1BF -:10AA9000C44AFF080A40530752023B43120B8EE0A0 -:10AAA000002B00D0B8E06B1C5B055B0D012B00DCBC -:10AAB00030E1871A4346B842B641CB1A76429E1B14 -:10AAC000330200D54CE13B003343A1D100220024E6 -:10AAD000002570E0002B00DCE5E0002E00D183E0D3 -:10AAE000AF4EB54260D0802636043743B846382B87 -:10AAF00000DC3EE1434613431F007A1E97413F1896 -:10AB000087428041404209180B0200D4B0E0A44BB8 -:10AB100001359D4200D1C3E0A24A7B080A400121D1 -:10AB20000F401F435108D30707221F433A4099E7BC -:10AB30009B4EB54238D0802636043743B846382B72 -:10AB400000DDDCE01F2B00DC30E11E004746203E2C -:10AB5000F740BC46202B04D04026F31A46469E40C0 -:10AB60003243170063467A1E97411F43CCE0002B07 -:10AB700000D104E24346134300D159E14B07C0081A -:10AB800018438023C9081B03194208D04546ED0825 -:10AB90001D4204D14346D008590708432900420FFB -:10ABA000C9007F4D1143C0004B07CA087C49C0084B -:10ABB00003438D4268D012036D05120B6D0D002109 -:10ABC00012031800130B0A0D12051A43764B2D05BC -:10ABD00013402B435B00E4075B08234319001CBCB4 -:10ABE00090469946A246F0BD3E00164312D05E1E26 -:10ABF000002E00D000E18718874280414144404246 -:10AC0000091801250B0233D5022585E76446330078 -:10AC1000414610001D00C7E7002D00D0DAE00C000F -:10AC20000443F3D05C1C00D19FE15D4CA64200D1EF -:10AC30002FE1DB43382B00DD66E11F2B00DD83E1D4 -:10AC400020240500E41A0F00DD40D940A04043460F -:10AC5000A7405B1A441EA04198462F433843171A59 -:10AC6000BA42924143465242991A64463500CAE6B6 -:10AC700007223A40002A00D0F6E64B07CA084849A6 -:10AC8000FF083B438D4296D11900114300D19EE14C -:10AC9000802109030A431203120B414D8FE715006F -:10ACA000002200238BE7002B00D0C7E06B1C5F0560 -:10ACB0007F0D012F00DCF1E0394DAB4200D1B9E04E -:10ACC00085180A00854289414244494251180722A9 -:10ACD000CF076D082F4349083A401D00C2E60722FE -:10ACE0003049ED1A31403A40BCE63E0028388640F3 -:10ACF00000279FE63800FDF7D5F820308EE6434662 -:10AD000013431F007A1E9741C71BB842804140423F -:10AD1000091A78E60E003B0006431343002D61D16B -:10AD2000002E00D0F4E0002B00D11BE16446390076 -:10AD3000100039E71A4FBB427AD03300FFE63000EB -:10AD40001F3DE840202B03D04021CB1A9E403743C3 -:10AD50007B1E9F41072207433A400021002589E7D7 -:10AD6000171A4346BA42B641591A76428E1B6446B8 -:10AD70004EE61F2B00DDADE020264746F61AB74011 -:10AD8000B9461700B246DF404E463E4337005646AE -:10AD9000B240561EB24117434246DA408918AEE629 -:10ADA000FF070000FFFF7FFFFFFF0F8020264746C1 -:10ADB000F61AB740B9461700B246DF404E463E434A -:10ADC00037005646B240561EB24117434246DA405B -:10ADD000891A99E77F4CA6425BD0802424045B4209 -:10ADE000214327E7002E0CD1002B00D1CBE0644695 -:10ADF00039001000774DD7E6764FBB4218D03300AC -:10AE000075E6002B14D04B07C00818438023C908EF -:10AE10001B03194207D0FC081C4204D17907D00853 -:10AE20000843E14621004C46420FC9001143C000CF -:10AE3000684DB9E61D0000220023C0E6002D5BD15D -:10AE40000D00054300D1E2E65D1C00D1B0E0614D8C -:10AE5000AE421FD0DB43382B71DC1F2B00DD96E0A8 -:10AE600020250F00ED1AAF40B9460700AA46DF4083 -:10AE70004D463D432F005546A840D940451EA841A8 -:10AE800088440743BF1897429241514241443500DC -:10AE90003AE6644635004146100085E60B00034360 -:10AEA000002D00D063E6002BF5D04346134300D1BC -:10AEB0007AE68718874280410722414440420918B8 -:10AEC0003A400B0200D4D5E6434B01351940C9E5A1 -:10AED000380069E61E004746203EF740BC46202B5E -:10AEE00004D04026F31A46469E403243170063467C -:10AEF0007A1E97411F4302E6364DAE42CAD08025E6 -:10AF00002D045B422943A6E70843411E8841A6E67B -:10AF1000002B00D148E6871A4346B842B641CB1A07 -:10AF200076429E1B33024BD5171A4346BA429241D2 -:10AF3000591A5242891A072264463A4092E501435F -:10AF40000F00791E8F419DE71C000F00203CE74059 -:10AF5000202B03D04024E31A99400843411E884126 -:10AF600038437CE60022002425E6171A4346BA42FD -:10AF70009241591A5242891A6446350043E54146C6 -:10AF80001000144D10E680220024120380E61D00FC -:10AF90000F00203DEF40BC46202B03D04025EB1A8C -:10AFA0009940084307006346781E87411F4369E7BD -:10AFB000871897429B4141445B42C9183500A3E57D -:10AFC0003B003343CED0072231003A4052E6002303 -:10AFD0001A00F4E5FF070000FFFF7FFFF0B55746BA -:10AFE000DE464E464546E0B5834607000E03480060 -:10AFF00085B092461C00360B400DCD0F002800D1C5 -:10B000009DE0954B984239D08023F6001B041E43E7 -:10B01000924A7B0F3343994694460300634400935E -:10B0200000230026FF00029323031B0B98466300B6 -:10B03000E40F52465B0D019400D1B3E086498B4288 -:10B0400000D19EE04246D100802212040A435146BC -:10B05000490F11438B46814952468C4600996344FF -:10B06000CB1A0021D20000932B0063409A460F2E8A -:10B0700000D905E17A4BB6009B599F465B463343A6 -:10B08000994600D0B8E002230826002700900293DA -:10B09000CAE7CB463A0002990195019B9A460229DC -:10B0A00027D0032900D180E2012944D06D49009BBB -:10B0B0008C4663441C00002C38DD530700D013E29B -:10B0C000D2085B46DB0109D55946674B19408B46D0 -:10B0D0008021C9008C46009B63441C00634B9C424A -:10B0E00007DC5B4664055F075B0217431B0B620DC1 -:10B0F00002E000230027584A00211B031C0B0B0D04 -:10B100001B05234314055A4A380013401C43534679 -:10B110006400DB0764081C43210005B03CBC90467A -:10B120009946A246AB46F0BD0122524201231B1BA9 -:10B13000382B00DCADE1002200230027DCE75B4672 -:10B14000334399465ED0002E00D18AE13000FCF7EF -:10B15000A9FE03000B3B1C2B00DD7BE11D22D31A53 -:10B160005A460100DA4008398E4013005F463343E7 -:10B1700099468F403F4B00261B1A009300230293F1 -:10B1800052E7414653460B433B499B468C46009B46 -:10B19000634400935B46002B3BD1022300221E43F5 -:10B1A000022161E7434613439B4637D04346002BB9 -:10B1B00000D162E14046FCF775FE03000B3B1C2BFF -:10B1C00000DD53E102004146083A914088461D21C6 -:10B1D000CB1A5146D9400B0041460B439B46534680 -:10B1E00093401A00009B25499C46604403008C460E -:10B1F00063440093002137E70323B14600900C26F7 -:10B20000029311E7002300930133042600270293E1 -:10B210000AE70323C3461E43032125E701331E43E8 -:10B220000022012120E700239A46802300271B03E8 -:10B23000094A61E7802349461B03194200D1E2E035 -:10B240005946194200D0DEE00B431B0317001B0BCD -:10B25000A246014A50E7C046FF07000001FCFFFF7D -:10B2600034DE0D10FF030000FFFFFFFEFE070000AD -:10B27000FFFF0F800DFCFFFF01F8FFFFF30300004D -:10B28000D94500D9CBE000D1C6E03C0048460027B4 -:10B29000009B013B00935B46160E1B021E431302EC -:10B2A000984633041B0C9946310C0191FCF7FEFBC8 -:10B2B0004A4642430B04210C050019438A4207D930 -:10B2C0008919013D8E4203D88A4201D9851E891908 -:10B2D000881A0199FCF7EAFB09048C464A462104C6 -:10B2E00064464243090C030021438A4204D9891968 -:10B2F000013B8E4200D8F1E02D041D43AB4643468E -:10B30000891A4246280C12041D0C5B46140C2200BC -:10B310001B041B0C5A4303946B434443029568433C -:10B320001B19150CEB189C4203D980246402A44617 -:10B3300060441C0C15041B042D0C20185D1981425F -:10B3400077D373D00C1AA24A7D1BAF42BF419446FB -:10B35000009B7F426344E01B1C00864200D1DBE07F -:10B360000199FCF7A3FB4A4642430B04290C070052 -:10B3700019438A4207D98919013F8E4203D88A426C -:10B3800001D9871E8919881A0199FCF78FFB0904D6 -:10B390004A46894629044D464243090C0300294385 -:10B3A0008A4207D98919013B8E4203D88A4201D9C2 -:10B3B000831E89193F04891A3A00039F1A433800F3 -:10B3C00013041B0C584381460298150C6F434343EA -:10B3D00045434846000C8446DB1963449F4203D929 -:10B3E000802040028446654448461F0C00041B042C -:10B3F000000C7D191818A94200D284E000D17FE02A -:10B4000001231A4357E680234A461B0313431B03B9 -:10B410001B0BAA466F4A6FE6BA4200D935E74B4686 -:10B42000DC0758087B081C43FF0734E70024AF42C1 -:10B4300089D247444745A4415B466442A419641835 -:10B44000013BA6421ED2A0426DD800D1B6E0241A1C -:10B450009B4678E703005A46283B9A4000279146CE -:10B4600088E65846FCF71EFD203072E6030052467F -:10B47000283B9A4093460022B4E65046FCF712FD62 -:10B4800020309AE6A642E2D1B845DCD9341A9B4670 -:10B4900059E71F2B65DC504C0099A4465C4661447B -:10B4A00008008C4011008240D940501E82410C435C -:10B4B00014435A46DA401300620709D00F22224093 -:10B4C000042A05D02200141D9442894149425B1888 -:10B4D0001A0262D50122002300270DE68A4200D815 -:10B4E0000AE7831E891907E70F231340042B00D1B5 -:10B4F000E6E5171D9742924153429B44FA08E0E566 -:10B50000002800D1D7E57118531EB14227D3A942B4 -:10B5100015D358D01A0073E7002B00DC04E6012392 -:10B5200000229B44CDE502234744474589415B42C5 -:10B530009C46494289190C19E344241A03E74346FF -:10B540005F0047459B41B8465B429E19023A891904 -:10B55000A94200D054E7404500D051E7ABE51A00BE -:10B56000F6E71F215F4649420C1BE740202B07D01E -:10B570001A49009B8C46634418005B4683401A437B -:10B58000501E82413A4307270023174009D00F215C -:10B59000002311401400042995D122005F075B02AB -:10B5A0001B0BD20817430022A6E5802359461B0334 -:10B5B0000B431B0317001B0B064A9DE5BD42B2D887 -:10B5C0009B460024BFE68045B9D31A00C3E7C046B6 -:10B5D000FF030000FF0700001E0400003E040000FF -:10B5E000F0B54F464646D6468446C0B58046194E0D -:10B5F00018030F034D00000B5C0082463F0B6D0DDE -:10B60000C90F9146640DDB0F0120B5420AD0B44248 -:10B6100003D0A54201D157450CD01CBC9046994699 -:10B62000A246F0BD66463E43F7D1AC42F5D1544642 -:10B630001443F2D10120C845EFD1994207D0002D23 -:10B64000EBD163461F433800471EB841E5E70020B1 -:10B65000E3E7C046FF070000F0B54F464646D64632 -:10B660004D00C0B50E03C90F8A462C491F035C006C -:10B670008046360B6D0D91463F0B640DDB0F8D42FE -:10B680001ED08C4216D0002D1ED130438446002C93 -:10B6900001D13A4323D06246002A1AD09A4529D0D4 -:10B6A000514602200139084001381CBC9046994699 -:10B6B000A246F0BD39001143E5D002204042F4E734 -:10B6C0003043FAD1AC420FD0002C0FD13A43E7D02F -:10B6D0000CE00122013B934318000130E5E763468B -:10B6E0000020002BE1D0DBE73A43E6D19A45D7D1E1 -:10B6F000A542D5DCA54205DBBE42D1D808D000204A -:10B70000BE42D2D250460123013898430130CCE7E3 -:10B71000C845C5D80020C845F4D3C6E7FF070000D8 -:10B72000F0B54F464646D6464D00C0B50E03C90F8C -:10B730008A462E491F035C008046360B6D0D9146EC -:10B740003F0B640DDB0F8D4218D08C4211D0002DC1 -:10B7500018D130438446002C1ED13A431CD1634695 -:10B760000020002B30D0514602200139084001381A -:10B770002AE039001143EAD0022025E03043FBD112 -:10B78000AC4226D0002C26D13A4324D15146022087 -:10B7900001390840013817E06246002A0FD09A4567 -:10B7A000E1D1A54205DBBE42DDD819D00020BE4262 -:10B7B0000AD25046012301389843013004E00122A7 -:10B7C000013B9343180001301CBC90469946A246A9 -:10B7D000F0BD3A43D0D19A45C5D1A542C3DCE0E7DC -:10B7E000C845C0D80020C845E3D3EDE7FF070000F7 -:10B7F000F0B55746DE464E464546E0B58346060060 -:10B800000F03480087B092461D003F0B400DCC0F40 -:10B81000002800D16FE0DE4B984238D08023FF0033 -:10B820001B041F43730F3B430193DA4B00279946D8 -:10B8300000239B46F60081442B0369001B0B5246F4 -:10B840009846490DED0F002900D185E0D04B994273 -:10B8500000D173E04346DA0080231B0413435246B1 -:10B86000CC48520F84461343524600206144D20014 -:10B8700089442100694000918C46012149448A464F -:10B880000F2F00D990E0C449BF00CF59BF465B4697 -:10B890003B43019300D06AE102230827002681463A -:10B8A0009B46C9E732005846019B61460091022839 -:10B8B00000D175E0032800D1FEE1012800D02CE181 -:10B8C00000230027002600253F032A0D3F0BB34825 -:10B8D00012053A4302401B051343009A5B00D1074F -:10B8E0005B080B433000190007B03CBC90469946FA -:10B8F000A246AB46F0BD5B463B43019300D12FE12E -:10B90000002F00D1A5E13800FCF7CCFA03000B3B77 -:10B910001C2B00DD96E11D22D31A5A460100DA40A5 -:10B920005E4608398F4013008E403B4301939C4B89 -:10B9300000271B1A994600239B467DE74146534644 -:10B940000B4393498C46E144002B00D01AE10222BC -:10B950000220174300228CE7134300D10DE1434638 -:10B96000002B00D181E14046FCF79CFA02000B3A23 -:10B970001C2A00DD72E10100434608398B409846DD -:10B980001D239A1A5346D3401A0043461343524686 -:10B990008A404946081A824989468144002068E75E -:10B9A0007B4B002700268EE7140C1204120C1100AA -:10B9B000370C3604350C794328008C462E00604342 -:10B9C0006044834656432100300C804658467943F4 -:10B9D00040440291844506D98846802149028C461C -:10B9E000E044414602913604010C360C00048B46BB -:10B9F00081191E0C1B041B0C0391190079438C4602 -:10BA0000280075436544A8465843050C45447743D0 -:10BA1000A94203D9802149028C466744290C8C46EF -:10BA200039000004000C2D042D186144AB4405912D -:10BA30005946049101990F043F0C080C39005143F9 -:10BA40004243904602008C46090C8B4662437C437D -:10BA500044445C44A04503D98021490288464244BD -:10BA6000210C884661460904090C8C46390059436B -:10BA7000434370437E430F0CF6182404BE196444FC -:10BA800042448C46B34203D980235B02984640442B -:10BA9000029B61469846049B370443449B46AB4552 -:10BAA000AD416B420D0405992D0C8C467F196744FE -:10BAB000FD18A8465D462D19A542A441934664424F -:10BAC000A446C344DC448F42BF4198459B41934503 -:10BAD0009241A445A4415B427F421F43360C52422F -:10BAE0006442BF192243BF18624638184302D20D80 -:10BAF000039913436A020A43501E82416146ED0DC9 -:10BB00002A434E023243D90100D4B3E00126500843 -:10BB100032400243DE0732435B08224C5444002C7F -:10BB200062DD510709D00F201040042805D0101DF8 -:10BB30009042924152429B180200D90104D58024C0 -:10BB40001948E400034054441848844200DD27E7C4 -:10BB50005E075B02D2081F0B630516435B0DB2E65E -:10BB6000002399460133042700269B4664E60323FD -:10BB7000019781460C279B465EE601220120174370 -:10BB8000002276E6032303201F43434671E6C046A6 -:10BB9000FF07000001FCFFFF74DE0D10FFFF0F80A8 -:10BBA0000DFCFFFFFF030000FFFFFFFEFE0700008C -:10BBB0000023802700933F030026434B83E6019B2D -:10BBC0003200A446584670E6AC466EE680270199DE -:10BBD0003F0339422DD03B422BD11F433F033F0B44 -:10BBE00000951600384B6EE601252D1B382D00DD23 -:10BBF00066E61F2D40DC35481C005044160082408C -:10BC00008440EE40501E824134431443EB406207AF -:10BC100009D00F222240042A05D02200141D94428C -:10BC2000804140421B181A023ED5012300270026FE -:10BC300049E68027019B3F031F433F033F0B0094CE -:10BC4000214B40E603005A46283B9A4000260192C9 -:10BC50006DE65846FCF726F9203057E603005246B9 -:10BC6000283B9A401300002293E65046FCF71AF94D -:10BC700020307BE6CA4650E71F201E004042041BCE -:10BC8000E640202D03D0124C5444A3401A43501ECA -:10BC90008241324307260027164009D00F20002397 -:10BCA000104014000428B9D122005E075B021F0B6C -:10BCB000D2081643002306E680273F031F433F03B5 -:10BCC0003F0B1600004BFEE5FF0700001E040000BE -:10BCD0003E040000F8B557464E464546DE460C0089 -:10BCE0000903E0B5490A460F5F0031431E03DB0F2D -:10BCF000760A9B46530F3343C84E6500C000E40FDD -:10BD0000D2006D0DA24681467F0D9C469046B742FB -:10BD100000D1B9E05B46012673409B46EE1BA3456C -:10BD200000D183E0002E63DD002F00D0B1E0634638 -:10BD3000134300D123E1731E002B00D0BAE1861A11 -:10BD40006346B04280410125C91A4042091A0B02DC -:10BD500000D447E149024B0A98464346002B00D1E4 -:10BD600089E14046FCF79EF80300083B1F2B00DDED -:10BD70007CE120223000D21A4146D0409940020096 -:10BD80009E400A439D4200DD6AE15D1B6B1C1F2B38 -:10BD900000DD94E1202110003500C91A8E40DA4000 -:10BDA0008840DD40711E8E41110007222843002586 -:10BDB00006433240002A09D00F233340042B05D01C -:10BDC000331DB342B641764289191E000B0200D4DE -:10BDD0003DE26A1C914B55056D0D9A4200D119E167 -:10BDE0008F4AF6080A40570752023743120B9BE06E -:10BDF000002E00D0C5E06E1C7605760D012E00DC0D -:10BE000048E16746861ACB1BB042BF417F42B84625 -:10BE10001F004346FF1A3B00B8461B0200D55FE1F6 -:10BE200037439AD100220024002579E0002E00DC5F -:10BE3000FAE0002F00D18DE0784B9D4267D080233F -:10BE400067461B041F43BC46382E00DC52E16346A4 -:10BE500013435A1E93411E188642804140420918DE -:10BE60000B0200D4BEE06D4B01359D4200D1D2E003 -:10BE70006B4A73080A4001210E401E435108D30744 -:10BE800007221E43324095E71E00164300D045E7C7 -:10BE900040E7624B9D423AD0802367461B041F4314 -:10BEA000BC46382E00DDEBE01F2E00DC3AE133000B -:10BEB0006746203BDF403B00202E05D04027BF1BBC -:10BEC0006646BE40324390464646721E9641334314 -:10BED000DAE0002B00D114E26346134300D168E19D -:10BEE00080234E07C008C9081B030643194208D027 -:10BEF0006046C008184204D163460100D2085E07BC -:10BF00001643F3009946C900720F444D11434B4646 -:10BF1000DE08424B4F073743CA089D4200D16EE00E -:10BF200012036D05120B6D0D00211203130B0A0D88 -:10BF300012051A433B4B2D0513402B435B00E407CE -:10BF40005B082343380019003CBC90469946A24642 -:10BF5000AB46F8BD6346134311D0731E002B00D0CF -:10BF600007E1861886428041614440420918012554 -:10BF70000B0237D502257BE73E006146914635002E -:10BF8000C5E75C46002D00D0E1E00B000343F3D091 -:10BF9000731C00D1ACE1214B9F4200D13AE1F34345 -:10BFA000382B00DD6FE11F2B00DD8CE120250E001A -:10BFB000ED1AAE40B0460600AA46DE40454635437F -:10BFC0002E005546D940A8406346451EA8415B1A3D -:10BFD0009C463043161AB242924163465242991A25 -:10BFE0003D00B4E607223240002A00D0E4E60B4BC5 -:10BFF000F6084F073743CA089D4200D090E73B0040 -:10C00000134300D1A6E180231B031A431203120B32 -:10C01000024D89E715000022002785E7FF07000091 -:10C02000FFFF7FFFFFFF0F80002E00D0C7E06B1CDB -:10C030005E05760D012E00DCF0E0C84DAB4200D16C -:10C04000B9E085180A008542894162444942511885 -:10C050000722CE076D082E43490832401D00A9E68D -:10C06000BF49ED1A114007223240A3E632002838BA -:10C070008240002686E63000FBF714FF203073E68E -:10C08000634613435A1E9341C61AB0428041404250 -:10C09000091A5CE60E00674606431743002D5ED181 -:10C0A000002E00D0F3E0002F00D11EE15C46614677 -:10C0B00091462CE7A94FBE427BD01E00F1E610004E -:10C0C0001F3DE840202B03D04021CB1A9A40164355 -:10C0D000731E9E410722064332400021002583E75C -:10C0E000161A6346B2428041591A40420B1A9846CA -:10C0F0005C4632E61F2E00DDABE02027BB1B9A46D4 -:10C1000063465746BB40994613004F46F3401F43D2 -:10C110003B005746BA40571EBA4113436246F240AD -:10C12000891898E62027BB1B9A4663465746BB40B2 -:10C13000994613004F46F3401F433B005746BA4011 -:10C14000571EBA4113436246F240891A9CE7834B5B -:10C150009F425FD080252D047342294320E7002EA3 -:10C160000CD1002F00D1D0E05C46614691467B4D5A -:10C17000CDE67A4FBE421CD01E0065E6002F18D0D7 -:10C18000C0084E0706438020C9080003014208D0BA -:10C190006346DC08044204D12100DA46D2085E0777 -:10C1A0001643F300994601245346C900720F114308 -:10C1B0001C406A4DABE61D0000220027B4E6002DAE -:10C1C00059D10B00034300D1D6E6731C00D1B2E075 -:10C1D000624B9F421ED0F343382B6FDC1F2B00DDD8 -:10C1E00097E020250E00ED1AAE40B0460600AA46A4 -:10C1F000DE40454635432E005546A840D940451EF1 -:10C20000A8418C440643B61896429241514261447B -:10C210003D0025E63D006146914678E60B0003436C -:10C22000002D00D055E6002BF5D06346134300D116 -:10C230006DE686188642804161444042091800221A -:10C240000B0200D4D0E6464B01351940B2E5B146A9 -:10C250005DE633006746203BDF403B00202E05D0E3 -:10C260004027BF1B6646BE40324390464646721E7C -:10C2700096413343EFE5394B9F42CBD080252D04C7 -:10C2800073422943A8E70843411E8841A2E6002FD4 -:10C2900000D13CE66346861ACF1AB0429B415B420E -:10C2A000FB1A98461B024ED5161A6346B2429241BB -:10C2B000591A5242891A5C4600227BE501430E005E -:10C2C000711E8E419FE71D000E00203DEE40B046DE -:10C2D000202B04D04025EB1A99400843814648465C -:10C2E0004346411E8841184374E60022002417E6A5 -:10C2F000161A6346B2429241591A5242891A3D00B7 -:10C3000025E561469146154D01E680220024120381 -:10C3100079E61D000E00203DEE40B046202B04D0F3 -:10C320004025EB1A9940084381464E464346711E0C -:10C330008E411E4367E7861896429B4161445B42EB -:10C34000C9183D008CE547463743CED00722414609 -:10C35000324049E600273A00E6E5C046FF07000004 -:10C36000FFFF7FFF70B50C4E0D031C0349005B00FF -:10C370002D0B490D240B5B0DB14208D0064900205E -:10C380008B4203D114432000441EA04170BD0543DD -:10C390000120002DFAD1F1E7FF07000030B5144D60 -:10C3A0000A034B00120B5B0DC90F0024AB4211DDD9 -:10C3B000104CA34210DC8024640322430E4CE41A88 -:10C3C0001F2C0CDD0D48C31ADA4013005C42002913 -:10C3D00000D11C00200030BD094BCC18FAE7094DF4 -:10C3E000E040AC4663449A4013000343EEE7C04686 -:10C3F000FE0300001D0400003304000013040000CD -:10C40000FFFFFF7FEDFBFFFF70B500282DD0C317A6 -:10C41000C5185D40C40F2800FBF744FD154B1B1ADF -:10C420005B055B0D0A2815DD0B38854000222D03C6 -:10C430002D0B002110002D030A0D2D0B12052A4390 -:10C440000D4D1B052A4013435B00E4075B082343A3 -:10C45000190070BD02002900153291400A000B211D -:10C46000081AC5402D032D0BE3E700240023002507 -:10C470000022DEE71E040000FFFF0F8010B5041E3F -:10C4800025D0FBF70FFD144B1B1A5B055B0D0A282B -:10C4900012DD0B38844000222403240B00211000FD -:10C4A00024030A0D240B120522430C4C1B052240C9 -:10C4B00013435B00590810BD020021001532914062 -:10C4C0000A000B21081AC4402403240BE6E70023CA -:10C4D00000240022E2E7C0461E040000FFFF0F8098 -:10C4E00058220120014B40421A6070473CB00208BC -:10C4F00058220120014B40421A6070473CB00208AC -:10C500005822024B00201A607047C0463CB0020817 -:10C5100058220120014B40421A6070473CB002088B -:10C52000044A1368002B00D1034B18181060180040 -:10C530007047C046DCAD020800000208F8B5C046EE -:10C54000F8BC08BC9E467047F8B5C046F8BC08BCAD -:10C550009E4670470000000001B40248844601BCBA -:10C56000604700BF1DA5020801B40248844601BC13 -:10C57000604700BF03A7020801B40248844601BC1B -:10C58000604700BFEFA3020801B40248844601BC23 -:10C59000604700BF01A70208000000000700010378 -:10C5A00000000100030300003F00010300000F0032 -:10C5B000C0102040030300004000010300000F00F2 -:10C5C00000112040030300003F00010300000F00A2 -:10C5D00040112040030300007F00010300000F0012 -:10C5E00080112040000300000F00010300000F0035 -:10C5F00040122040030300003F00010300000F0031 -:10C6000080122040000300000F00010300000F0013 -:10C6100000162040000300000F00010300000F007F -:10C6200040162040000300000F00010300000F002F -:10C6300080162040000300000F00010300000F00DF -:10C6400000172040000300007F00010300000F00DE -:10C6500040002040030300007F00010300000F00A2 -:10C66000C0002040030300007F00010300000F0012 -:10C6700000012040030300007F00010300000F00C1 -:10C6800080012040005001400900000300000F001D -:10C69000010300000F0000000041014013000707E4 -:10C6A00000007F00802224400103010000000707F2 -:10C6B00000000300002124400103010001000707DE -:10C6C00000000300C020244001030100020007070E -:10C6D00000000F0080202440010301000500050533 -:10C6E00000017E00402024400103010006000303F6 -:10C6F00000017E0000202440010301000CC000075F -:10C7000000000F0000222440010301000D00010180 -:10C710000001700040222440010301000E000303C9 -:10C7200000000100C0212440010301000FC00707E1 -:10C7300000000F00802124400103010010000303CA -:10C740000000040040212440010301000CDF000729 -:10C7500000000F00402224400103010070726F7638 -:10C760005F726571007265736F7572636573004205 -:10C770004F4F5400555047524144450073697A6504 -:10C78000006C61756E6368006D6F6E6F746F6E69BB -:10C790006300656E637279707400656E63727970A0 -:10C7A000745F6B65795F6964006261636B757000CB -:10C7B000626F6F745F617574680075706772616431 -:10C7C000655F6175746800736D69665F69640072A6 -:10C7D0006570726F6772616D00737461727400725C -:10C7E0006570726F766973696F6E00626F6F745FE8 -:10C7F0006C6F61646572006B6579735F616E645F15 -:10C80000706F6C6963696573006D3070007065727C -:10C810006D697373696F6E00636F6E74726F6C0015 -:10C820006B6579006D340073797374656D0073798D -:10C830007363616C6C006D6D696F00726D61006493 -:10C84000657374726F795F66757365730064657381 -:10C8500074726F795F666C6173680070726573657E -:10C860006E74006669726D776172650063657274DB -:10C8700069666963617465006F70656E00646973F1 -:10C8800061626C656400656E61626C656400616C18 -:10C890006C6F77656400646562756700776F756EAD -:10C8A00064696E6700626F6F745F75706772616450 -:10C8B00065007479706500617272617900697465F0 -:10C8C0006D73006E756D62657200696E7465676583 -:10C8D0007200626F6F6C65616E00737472696E676F -:10C8E000006D6178696D756D006D696E696D756D4E -:10C8F000007065726970686572616C730062617363 -:10C90000655F61646472657373006D656D6F7269F4 -:10C91000657300776F726B666C6173680073666C29 -:10C92000617368007372616D00736F667477617212 -:10C9300065006361706162696C69747900464C419D -:10C9400053485F5043315F53504D00464C4153486C -:10C950005F50433200464C4153485F5043330046DA -:10C960004C4153485F50433400464C4153485F4D5F -:10C9700041494E5F434F444500464C4153485F4D4B -:10C9800041494E5F584F00464C4153485F4D414925 -:10C990004E5F4441544100464C4153485F5355500B -:10C9A00045525649534F525900464C4153485F57E0 -:10C9B0004F524B5F53454355524500464C415348F7 -:10C9C0005F574F524B005352414D5F5043305F50C1 -:10C9D000524956005352414D5F5043305F505542CB -:10C9E000005352414D5F53504D5F505249560053D2 -:10C9F00052414D5F53504D5F505542005352414D8F -:10CA00005F5043315F50524956005352414D5F5081 -:10CA100043325F50524956005352414D5F504333A9 -:10CA20005F50524956005352414D5F5043345F505E -:10CA3000524956005352414D5F4D41494E005352A9 -:10CA4000414D5F44415000534D49465F434F44457B -:10CA500000534D49465F584F00534D49465F44418E -:10CA6000544100000000214000002540000001402A -:10CA700000003440000024400000314000003240FB -:10CA800000001F410000234000001140010101018E -:10CA90000101010101101010800019005500F00083 -:10CAA0000501053B04101C01010000000FC000003F -:10CAB0000004000001010101011D3A5778960008A9 -:10CAC0002000101208000000001F00000010000FDE -:10CAD000002000023F06080E00080009000A000BB3 -:10CAE00024282C30340000001000000090000000CA -:10CAF00088000000080000008000000004F0000032 -:10CB000000F00000400200002005A000D00100015C -:10CB10008001A0012000000010000000433A5C5595 -:10CB2000736572735C646D69765C446F63756D6583 -:10CB30006E74735C6379626F6F746C6F616465723D -:10CB40005C70736F633670646C5C64726976657276 -:10CB5000735C696E636C7564652F63795F6970637C -:10CB60005F6472762E6800433A2F55736572732F97 -:10CB7000646D69762F446F63756D656E74732F6392 -:10CB800079626F6F746C6F616465722F70736F631D -:10CB90003670646C2F647269766572732F736F756B -:10CBA0007263652F63795F6770696F2E6300433A24 -:10CBB0005C55736572735C646D69765C446F637514 -:10CBC0006D656E74735C6379626F6F746C6F6164B2 -:10CBD00065725C70736F633670646C5C64726976E6 -:10CBE0006572735C696E636C7564652F63795F67EA -:10CBF00070696F2E6800433A2F55736572732F6406 -:10CC00006D69762F446F63756D656E74732F6379EC -:10CC1000626F6F746C6F616465722F70736F6336CF -:10CC200070646C2F647269766572732F736F75729E -:10CC300063652F63795F6970635F6472762E63004A -:10CC4000433A2F55736572732F646D69762F446F65 -:10CC500063756D656E74732F6379626F6F746C6F3B -:10CC6000616465722F70736F633670646C2F6472C9 -:10CC700069766572732F736F757263652F63795F61 -:10CC80006970635F706970652E6300433A2F557356 -:10CC90006572732F646D69762F446F63756D656E71 -:10CCA00074732F6379626F6F746C6F616465722F38 -:10CCB00070736F633670646C2F647269766572731B -:10CCC0002F736F757263652F63795F70726F742E47 -:10CCD0006300433A2F55736572732F646D69762F25 -:10CCE000446F63756D656E74732F6379626F6F74D3 -:10CCF0006C6F616465722F70736F633670646C2F34 -:10CD0000647269766572732F736F757263652F63D2 -:10CD1000795F7363625F756172742E6300433A2FAB -:10CD200055736572732F646D69762F446F63756DEB -:10CD3000656E74732F6379626F6F746C6F61646575 -:10CD4000722F70736F633670646C2F6472697665CE -:10CD500072732F736F757263652F63795F736D697B -:10CD6000662E6300010010008000E803100000013F -:10CD7000A00F00FA433A2F55736572732F646D69E3 -:10CD8000762F446F63756D656E74732F6379626F70 -:10CD90006F746C6F616465722F70736F633670644B -:10CDA0006C2F647269766572732F736F7572636529 -:10CDB0002F63795F736D69665F6D656D736C6F74FA -:10CDC0002E6300433A2F55736572732F646D697635 -:10CDD0002F446F63756D656E74732F6379626F6F27 -:10CDE000746C6F616465722F70736F633670646CFE -:10CDF0002F647269766572732F736F757263652F16 -:10CE000063795F737973636C6B2E6300433A2F55BC -:10CE1000736572732F646D69762F446F63756D65EA -:10CE20006E74732F6379626F6F746C6F6164657277 -:10CE30002F70736F633670646C2F647269766572DD -:10CE4000732F736F757263652F63795F737973697D -:10CE50006E742E6300433A2F55736572732F646DA1 -:10CE600069762F446F63756D656E74732F63796295 -:10CE70006F6F746C6F616465722F70736F6336705F -:10CE8000646C2F647269766572732F736F75726349 -:10CE9000652F63795F737973706D2E6300433A2F4A -:10CEA00055736572732F646D69762F446F63756D6A -:10CEB000656E74732F6379626F6F746C6F616465F4 -:10CEC000722F70736F633670646C2F64657669635C -:10CED00065732F70736F63362F737461727475701E -:10CEE0002F73797374656D5F70736F63365F636DF5 -:10CEF00030706C75732E63000100000006000000A6 -:10CF0000120000000000000000000000000000000F -:10CF10000000000000000000000000000000000011 -:10CF20000000000000000000000000005B455252BD -:10CF30005D20546865726520697320616E2065729A -:10CF4000726F72206F6363757272656420647572AC -:10CF5000696E6720626F6F746C6F616465722066C2 -:10CF60006C6F772E204D43552073746F707065641D -:10CF70002E0A0D005B4552525D204572726F722081 -:10CF80002578207768696C6520656E61626C696ED2 -:10CF90006720434D342061636365737320706F7243 -:10CFA000740A0D005B494E465D2054455354204D94 -:10CFB0004F44450A0D00000003000000010000007E -:10CFC00001000000000000000503600004000000F4 -:10CFD00001000000000000000100000006046000E5 -:10CFE000080000001CC0020879520D1050534F4336 -:10CFF000365F464C415348005B494E465D20200A4F -:10D000000D005B494E465D202F2A2A2A2A2A2A2A09 -:10D010002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A70 -:10D020002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A60 -:10D030002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2F4B -:10D040000A0D005B494E465D202050536F43362049 -:10D050004379426F6F746C6F6164657220417070C8 -:10D060006C69636174696F6E2025752E25752E2598 -:10D07000752E2575200A0D005B494E465D205374C0 -:10D08000617274696E6720626F6F746C6F61646542 -:10D09000720A0D005B4552525D20506F6C696379D6 -:10D0A0002070617273696E67206661696C656420C7 -:10D0B0007769746820636F64652025690A0D005BD9 -:10D0C0004552525D204170706C79696E67207072B4 -:10D0D0006F74656374696F6E2073657474696E67CD -:10D0E00073206661696C6564207769746820636F7A -:10D0F00064652025690A0D005B4552525D20534D41 -:10D10000494620626C6F636B206661696C656420C0 -:10D11000746F20737461727420776974682065720B -:10D12000726F7220636F64652025690A0D005B4988 -:10D130004E465D20534D4946204D656D6F72792FE7 -:10D14000584950204D6F64650A0D005B494E465D9D -:10D150002050726F63657373696E672061766169D1 -:10D160006C61626C6520696D616765730A0D005BB7 -:10D170004552525D20556E61626C6520746F206669 -:10D18000696E6420626F6F7461626C6520696D61A5 -:10D1900067650A0D005B494E465D204A756D7069F2 -:10D1A0006E6720746F2074686520696D6167652003 -:10D1B000696E20736C6F7420300A0D005B4552520B -:10D1C0005D204E657665722073686F756C642067AC -:10D1D000657420686572650A0D000000ECCF0D10C3 -:10D1E00019640D1000000000DCD10D10DCD80D100A -:10D1F0000000000000000000070000000100000027 -:10D20000000000000000000008000000080000000E -:10D21000000200000000000000000000000000000C -:10D2200000000000000000000000000000000000FE -:10D230000B0000003F000000000000003F00000065 -:10D2400000000000010000000E00000011000000BE -:10D2500000000000000000000000000000000000CE -:10D2600000000000000000000000000000000000BE -:10D270000000000000000000010000000E0000009F -:10D28000110000000000000000000000000000008D -:10D29000000000000000000000000000000000008E -:10D2A000000000000000000000000000010000007D -:10D2B0000E0000001100000000000000000000004F -:10D2C000000000000000000000000000000000005E -:10D2D000000000000000000000000000000000004E -:10D2E000010000000E00000011000000000000001E -:10D2F000000000000000000000000000000000002E -:10D30000000000000000000000000000000000001D -:10D3100000000000010000000600000011000000F5 -:10D3200000000000000000000000000000000000FD -:10D3300000000000000000000000000000000000ED -:10D3400000000000000000000100000006000000D6 -:10D3500011000000000000000000000000000000BC -:10D3600000000000000000000000000000000000BD -:10D3700000000000000000000000000001000000AC -:10D38000000000000000000000000000000000009D -:10D39000000000000000000000000000000000008D -:10D3A000000000000000000000000000000000007D -:10D3B000010000000000000000000000000000006C -:10D3C000000000000000000000000000000000005D -:10D3D000000000000000000000000000000000004D -:10D3E0000000000001000000060000001D00000019 -:10D3F000000000000000000000000000000000002D -:10D40000000000000000000000000000000000001C -:10D410000000000000000000010000000A00000001 -:10D420001D000000000000000000000000000000DF -:10D4300000000000000000000000000000000000EC -:10D4400000000000000000000000000001000000DB -:10D450000B0000001D0000000000000000000000A4 +:1054C000E5FDFFF74FFF021E04D023680D49D868A1 +:1054D00002F082FD0C4B1B68002B08DA0B4A0C4BC8 +:1054E0000C48DA642368D96802F0D0FD72B60A4825 +:1054F000FFF764FE07F0A0F810BDC04684A10208C3 +:10550000CCD00D1014D10D100001264021433412CF +:105510000000234044D10D1000400016F0B589B0C2 +:10552000FFF7B0FEFFF77EFE754C764A764B774D5F +:105530001A6023682800D96802F0A8FD2368744E19 +:10554000D968300002F0A2FD7D232068019300237A +:10555000009301226F49C06802F03EFD23683000CD +:10556000D96802F093FD23682800D96802F08EFD07 +:1055700023686948D96802F089FD802002AA03A93E +:105580004000FCF7EBFA051E00D0B4E0634E0300C8 +:10559000634A31000398FBF765F9051E00D0AAE0C5 +:1055A000B278022A05D923685E49D86802F014FD52 +:1055B000B570F022F3685C4F12069B18BB6033692C +:1055C000FB6073699B18FB61B3693B62FAF758FF94 +:1055D000051E38D1B378002B3CD0544A013B9B00C8 +:1055E000534E9B58336000F043FC071E06D02368DF +:1055F000050002004F49D86802F0EEFC4E4A3168BF +:105600004E4800F0A7FC002F08D123684C48D96809 +:1056100002F03CFD01214948FDF7ACFF68426841BA +:10562000FFF746FF23684748D96805AD02F02EFD15 +:10563000280001F07FFD2368D968002813D0424874 +:1056400002F024FDFEE72A0023684049D86802F0F2 +:10565000C3FCE3E73E4BFA699A42DFD975702368D1 +:1056600072693C49F2E73C4802F010FD04A9287930 +:1056700000F010FD43425841FFF71AFF822201203B +:10568000364992008E588B58F605DB0B0340F60D19 +:105690009B19002BF6D1049BAD68ED18059B1B8967 +:1056A000ED18FFF713FE43425841FFF701FF1B4B74 +:1056B0001878042819D802F0D3F90707030310005B +:1056C00002210020FDF7F0F82800FFF75FFE2368B5 +:1056D0002348D96802F0DAFCFEE706210E20FDF728 +:1056E000E3F82800FFF790FEF1E723681648D96831 +:1056F00002F0CCFCFEE723682A001A49A6E7C04660 +:1057000084A1020830D40D101CAE020898D10D10EF +:10571000A2D10D10E3D10D1018D20D1020AE020849 +:1057200074AF020834D20D1040A1020838A102085B +:105730005CA80208A8D20D1004B002080000424084 +:10574000DED20D1068D30D108CD30D106FD20D105A +:10575000FFFFFF07FBD20D10B2D30D100000664013 +:10576000D9D30D10F7D30D1010B504002100034854 +:10577000FDF7E8FC0028F9D010BDC04600006640E7 +:10578000C221044A89005358DB05FCD0D0239B007A +:10579000D05870470000664010B500F009F800F0DE +:1057A00035F800F043F800F005F900F02DF810BDD1 +:1057B00080218022124BC9001B68D205986810B561 +:1057C00042501A00743212880E4C121810680440AD +:1057D000D4208001204310601C001A007234703203 +:1057E0002478127898687333A2401C780323A3406E +:1057F00013438022120613434350435810BDC04642 +:10580000E0AD0208FF00FFFF70470000054B1B687A +:105810001A003F321278052A03D900219A68024BF8 +:10582000D1507047E0AD0208140C000010B51D4CBB +:105830001D4A00212000FCF725FC20001B4C1C4ABF +:105840000121FCF71FFC1B4A02212000FCF71AFC77 +:10585000194A03212000FCF715FC184A04212000F6 +:10586000FCF710FC164A05212000FCF70BFC154A3A +:1058700006212000FCF706FC2000134C134A0721E8 +:10588000FCF700FC124A04212000FCF7FBFB114A44 +:1058900006212000FCF7F6FB0F4A07212000FCF749 +:1058A000F1FB10BD00003240C4D50D108005324020 +:1058B000F8D50D1090D50D1028D50D10F4D40D107D +:1058C000C0D40D108CD40D10000332405CD50D10E7 +:1058D0002CD60D1060D60D1094D60D1010B50A4BB5 +:1058E0001B683E331B7883420BD9E0220F24074B01 +:1058F0008000C01892008358A343194381500020B0 +:1059000010BD0348FCE7C046E0AD02080000264099 +:1059100001004A0010B50A4B1B683E331B788342D6 +:105920000CD9E0223024074B8000C0189200835825 +:105930000901A34319438150002010BD0248FCE730 +:10594000E0AD02080000264001004A00054B064970 +:105950001B681A000832D26F1B689B181A680A402D +:105960001A607047E0AD0208FF00FFFF074B1B689D +:10597000190008311A68CB6F8021D21813684904C6 +:105980001B021B0A0B4313607047C046E0AD0208C0 +:10599000054B06491B681A00883212681B689B1861 +:1059A0001A680A401A607047E0AD0208FF00FFFF66 +:1059B000FEE70000F8B596210020FEF7D9FEFEF7BD +:1059C000AFFE002801D1FEF799FE0120FFF708F98C +:1059D000644B65495A6C0A40E82189010A435A64BC +:1059E0005A6C120AD2B23A2A04D15A6C5F48024069 +:1059F0001143596400210800FFF78CFFFFF7C8FF2F +:105A0000FFF7B4FFFFF7A2FF594D5A4C2B685A4FCE +:105A10003D331B78002B0ED0C0268023F600A25900 +:105A20009B053A401343A3510120FEF74FFEA359B3 +:105A30005B005B08A35100210120FEF70BFC2B68E3 +:105A40003E331B78002B03D14C494D48FEF748FEEE +:105A5000E0239B00E6580F231E400AD13000FEF7DA +:105A600021FC1223FF33984203D101213000FFF7BC +:105A700035FFB122D200A35800213B408027BF054B +:105A80001F43A750083AA35808005B005B08A350C7 +:105A90003C4AA3585B005B08A350FEF7DBFB0021E8 +:105AA0000800FFF71BFFFFF773FFFFF75FFFFFF72C +:105AB0004DFF00210120FEF7CDFB01210020FFF763 +:105AC0000DFF00210800FEF7C5FB00210220FEF7B4 +:105AD000C1FB00210320FEF7BDFB00210420FEF7DF +:105AE000B9FB2948FEF704FC002802D00420FFF788 +:105AF0005FFF2648FEF7B0FC002802D00420FFF725 +:105B000057FF00210800FFF7E9FE00210800FFF71A +:105B100001FF00210120FEF79DFB00210220FFF77D +:105B2000DDFE01210220FFF7F5FE2B683E331B78D6 +:105B3000022B06D9E22280239200A1581B060B43B8 +:105B4000A3508022124B1206E15800200A43012183 +:105B5000E250E2580A43E2506331FEF709FEFFF7D4 +:105B600005FAF8BD00002740FF00FFFFFFC5FFDF7B +:105B7000E0AD020800002640FFFFFFCF6E060000E8 +:105B8000C8D60D108C05000024D70D10400D030061 +:105B90000C050000437802781B021A438378C07812 +:105BA0001B0413430006184370470000F7B5A54BCC +:105BB000A54A9A58D10700D47BE00F22A34FBB68B7 +:105BC0003D680093A24BDC6F0193009B1440073AA1 +:105BD000141B9C4200D91C009E4E002C18D1009B27 +:105BE0003D60BB60002B0CD1F92201209549D20009 +:105BF0008B5883438B50B861FB69002B01D0FB6944 +:105C00009847F8230122DB008E49CA50CB58F7BDD4 +:105C1000082C16D12800FFF7BDFF3060281DFFF7C4 +:105C2000B9FF3060009B2D191B1B0093019BDC6F9B +:105C30000F231C40073B1C1B009B9C42CDD91C0022 +:105C4000CBE7012C03D12A78834B1A60EAE7022CB8 +:105C500006D12A786B781B021343804A1360E1E770 +:105C6000032C07D16B782A781B0213437B4A1360FD +:105C7000AA78E9E72800FFF78DFF042CD1D0306027 +:105C8000052C01D12A79DFE7062C02D12A796B791C +:105C9000E1E7072C07D16B792A791B0213436F4A7E +:105CA0001360AA79D0E7281DFFF774FF082430603D +:105CB000B8E7910700D4A4E00F22644D68496C69ED +:105CC000EB6808688C460240A24200D92200654970 +:105CD000654E002A16D1EB606C61002C0DD1F922C3 +:105CE00002215848D20083588B4383500320A86177 +:105CF0002B6A002B01D02B6A9847F8236C61DB00DC +:105D0000022281E7082A19D10868070A18705F7013 +:105D1000070C000E9F70D8700868070A18715F7131 +:105D2000070C000E9F71D8719B18A41A62460F20B1 +:105D300012680240A242CCD92200CAE7012A03D14C +:105D40004A4800681870EFE7022A04D130681870DA +:105D5000000A5870E8E7032A07D130681870000A73 +:105D60005870424800689870DEE7042A08D1086835 +:105D7000070A18705F70070C000E9F70D870D3E789 +:105D8000052A0BD10868070A18705F70070C000E0F +:105D9000D87036489F7000681871C5E7062A0CD184 +:105DA0000868070A18705F70070C000E9F70D870A3 +:105DB00030681871000A5871B6E7072A0FD10868D1 +:105DC000070A18705F70070C000E9F70D87030685B +:105DD0001871000A5871254800689871A4E70A688C +:105DE000100A1A705870100C120E9870DA700A6847 +:105DF000100A1A715871100C120EDA71987108227B +:105E000092E704210A4207D00520104A9061F82247 +:105E1000D20099509B58FAE608210A4202D00B4A58 +:105E20000620F3E71020024206D00721074A9161BD +:105E3000F822D2009850EDE72020024200D1E6E699 +:105E4000024AF4E700004240CC07000004B0020818 +:105E50000800424098004240900042409400424076 +:105E6000C4004240D8004240D4004240D0004240EA +:105E700073B5684602001E4B12CB12C262B61D49B2 +:105E8000FEF7B6FB021E05D01B4B1C491B68D868E9 +:105E900002F0A2F8FA221A4D92002B0019491A4872 +:105EA000FDF71AFB041E1ED1020001211648FDF762 +:105EB00077FB29001448FDF79DFD0F4E134833680A +:105EC000D96802F0E3F82A0011490F48FEF792F86A +:105ED000041E08D133680F48D96802F0D7F82100B2 +:105EE0000948FDF747FB80220B4B20001A6076BD66 +:105EF000C8D90D10AD5B0D1084A1020847DA0D1052 +:105F000004B002083CD40D100000424087DA0D10A6 +:105F1000B8D90D10A4DA0D1000E100E00C4B1B689D +:105F20009B691B68032B08D10023CB7083B21B0A2B +:105F300088704B70000C08707047042BFCD183B242 +:105F4000C8701B0A000C48708B70000AF3E7C0464B +:105F50005CA80208F0B50F2787B002ABFF1800233A +:105F600016003B708B690500DA6BDB6A03921B68D5 +:105F70003A00DBB200960C00FDF766FD021E06D06B +:105F8000104B11491B68D86802F026F813E06B46E5 +:105F90003A781B7B1A409A420DD03200210028002B +:105FA000FDF7ACFD021E08D1320021002800FDF7EC +:105FB00069FD0028F8D107B0F0BD024B03491B680A +:105FC000E1E7C04684A10208D0D90D100CDA0D100B +:105FD000F0B589B004000E00049217221A4D059303 +:105FE000296802A88B6912189F6ADB6A20001B6867 +:105FF0000096DBB2FDF728FD002823D13200296886 +:106000002000FDF705FD00281CD1059B01900093A1 +:106010000296049B0E9A29682000FDF7E3FD0028F4 +:1060200010D1320029682000FDF72CFD0028F8D19E +:1060300017223B6802A900965218DBB2296820009B +:10604000FDF702FD09B0F0BD5CA8020870B54B6811 +:10605000056801229D4216D38A689B1800229D4242 +:1060600011D20C694B699C420FD20C236343CE685A +:106070000134F3180E685A701E705A8042685D60D1 +:106080009A6001220C61100070BD0C235B428B6191 +:10609000F9E7000010B502006F2809D0074B084946 +:1060A00018686F23C06801F097FF1620404210BDAA +:1060B00080235B050B600020F9E7C04684A102083D +:1060C000A5DB0D1010B50F4B02001879904215D0CA +:1060D000187E904214D018002C30047801204042E1 +:1060E00094420AD1033014224243101D181808604C +:1060F00000209B181A6901321A6110BD0020F2E7D6 +:106100000120F0E740A1020810B5021E0BD0011FCC +:106110000C4B0868984207D00B49137808680B4964 +:10612000C06801F059FF10BD0B69002B07D1064B69 +:1061300012781B680649D86801F04EFFF3E7013B6F +:106140000B61F0E7EFBE0DD084A10208BDDA0D109F +:10615000DDDA0D1070B544680F480C1901211500E7 +:106160001E00FDF707FA80235B05E2180B4B9A42ED +:1061700003D90B4B9B78002B05D03200290020005F +:1061800000F04EF970BD074B07491B68D86801F055 +:1061900023FF01204042F5E700004240FFFFFF17C8 +:1061A00020AE020884A1020838DB0D10F0B51500FE +:1061B000F0221D4F87B003933B684468DB681206EA +:1061C0000C199B18A34216D800211848FDF7D2F9E4 +:1061D0003B6805AED8688023201A5B05C0183100E3 +:1061E000FFF79CFE0096039B2A0011490F48FFF71A +:1061F000EFFE07B0F0BD80235B05E2180D4B9A421D +:1062000003D90D4B9B78002B05D0039A2900200061 +:1062100000F09CF9EDE7094B09491B68D86801F0CB +:10622000DBFE01204042E4E75CA802080000424097 +:1062300004B00208FFFFFF1720AE020884A1020885 +:106240006EDB0D10F0B51500F0222E4F44683B6850 +:106250001206DB680C199B18C5B0A3423AD800217E +:106260002948FDF787F980220021520004A801F097 +:1062700059FF3B680020D9688023641A5B052E0A09 +:10628000E418002E14D0002801D045B0F0BD03AFB3 +:1062900020003900FFF742FE802300975B0004AA2C +:1062A0001A4919480134FFF793FEFF34013EE8E72D +:1062B000EDB2002DE9D00028E7D103AE3100200077 +:1062C000FFF72CFE00962B0004AA10490E48FFF79A +:1062D0007FFEDAE780235B05E2180D4B9A4203D973 +:1062E0000C4B9B78002B04D02900200000F038F9DB +:1062F000CBE7094B09491B68D86801F06DFE012006 +:106300004042C2E75CA802080000424004B0020814 +:10631000FFFFFF1720AE020884A1020801DB0D1069 +:1063200010B5007800F08CF910BD01307047000006 +:10633000431E022B15D8022808D003280BD00A4B85 +:1063400098680860DB68002013607047064BD869C6 +:1063500008601B6AF7E7F0231B030B6080235B01D7 +:10636000F1E701204042F0E740A1020830B589B0D2 +:106370000C00150002A903AA0190FFF7D9FF00281D +:1063800011D1236805900693084B079001AA18685D +:106390000749049500F00EF80798002801D1059BE5 +:1063A000236009B030BD01204042FAE71CAE02086C +:1063B0004D600D10F0B50024260043688BB00291AB +:1063C0001B6906A905A8039298470194069BB3424E +:1063D00001D80BB0F0BD059BF700DF197B68019D6C +:1063E0000893019B3A68EB1A9A4202D8013601954C +:1063F000ECE707940995039907A8029B98470028A2 +:10640000E7D0089B0135E418EBE70000024B03607E +:1064100001230B607047C046D0DB0D100020704791 +:106420000B00802110B549054118180001F071FEDC +:10643000002010BDF0B5264CF023A54400240390A5 +:1064400020001B06CB1801935B0A5B0204AF02928B +:10645000FD1A029AA24201D900280CD01D4B984285 +:1064600034D01D4B984231D0431E984140008523C3 +:106470009B009D44F0BD8022010092009E18019A6D +:106480009A421DD8029AA2421AD9039A125DEA547E +:10649000002906D18021490559180978511A4A1E48 +:1064A000914101340133B342E9D1002904D00B4BAF +:1064B0003900F018FBF76CFD094BED183300C8E705 +:1064C000802252059A181278EA54EBE70120CEE7B1 +:1064D000ECFDFFFF020052000600520000FEFF0F1D +:1064E00000FEFFFF00207047F8B5124C0023A142C8 +:1064F0001CD91E00104C8D18AC425E410F4CA142BD +:1065000015D91F000E4CAC425F413C000D4FB94203 +:1065100002D90D4FAF425B41344323430124002B8A +:1065200002D0FFF787FF04002000F8BD1E00002402 +:106530002300F1E7FFFFFF0F00001010FFFFFF1324 +:1065400000800014FF070016000A00160B008021CF +:1065500010B5490541181800FFF7C6FF10BD00002F +:106560008023F0B55B05C0184518334CEB05A544F6 +:10657000C605DB0DF60D01936B0A039333005A1E1B +:106580009341400AC0186B0A1B1A009343021F0074 +:1065900000240293009B002B3ED1002E1AD0274AE4 +:1065A000029B944663441C001900320004A801F0C9 +:1065B000B0FD2000FBF7AEFC43425841FEF778FFE8 +:1065C0002100320004A8FFF78FFF04006042604101 +:1065D000FEF76EFF019B002B19D08024A400E41A63 +:1065E0002200290004A801F094FD039B5802FBF748 +:1065F00091FC43425841FEF75BFF2200290004A8AA +:10660000FFF772FF040060426041FEF751FF200077 +:1066100085239B009D44F0BD3800FBF77BFC040004 +:1066200060426041FEF744FF80239B00FF18009BFF +:10663000013B0093AEE7C046ECFDFFFF00FEFFFF0D +:106640000420704710B510220949040001F052FDE2 +:106650000123002808D0230010332268013205D11D +:1066600004349C42F9D10323180010BD0223FBE738 +:10667000F0DB0D1030B5040091B001200D00FEF7E5 +:1066800017FFA168102310396A462000FFF762FD4A +:10669000002802D0012011B030BD6846FFF7D2FFBC +:1066A00028702378032B0CD10120FEF701FFA1688D +:1066B0000123AA1C18392000FFF74CFD431E984106 +:1066C000E9E70120FEF7F4FE0120FEF7F1FEA168E4 +:1066D0006A1C203901232000FFF73CFD0028E3D08D +:1066E000D8E737B50D00C0B201A9FFF7EBFC0124D4 +:1066F000002807D129000198FFF7BCFF040001988A +:10670000FFF702FD20003EBDF7B501206946FFF707 +:10671000E8FF002801D0FF20FEBD01AC21000220CF +:10672000FFF7DFFF0028F6D12078A678234C6B46D0 +:10673000220019789D785F7812322378002B01D0DF +:106740008B422FD16378002B01D083422AD1A378CA +:10675000002B01D0AB4225D1E378002B01D0B3420E +:1067600020D12379002B1BD1154B164A1B68D86802 +:106770006379022B06D0144A032B03D0134A042B4F +:1067800000D0134A134901F027FC0222002063794C +:10679000023BDBB29A424041FEF78AFE6079BBE7DA +:1067A000BB42E1D006349442C7D1054B0A481B686E +:1067B000D96801F06BFC0120AEE7C04600DC0D108B +:1067C00084A1020817DC0D1012DC0D102EDC0D1058 +:1067D0001CDC0D1035DC0D104BDC0D10F0B597B046 +:1067E0001CAB1B780390049313781400302B16D144 +:1067F0009378022B13D106AD40220021280001F02E +:1068000091FCE278A1184B79901D0979C01802908B +:10681000022904D1D1186078043188422AD010208E +:1068200017B0F0BD059A0F1A5618B446A444664630 +:1068300036790822B44604AEB61862462037F255BF +:1068400001318842EED100220299C91A64189A4295 +:106850000AD16B46188A402300950193039A203B86 +:106860000A49F9F775FEDBE7D11AA05C403168549C +:106870000132ECE7202B00DD20231000202A00DD70 +:106880002020121A00210592DBE7C04609000610FD +:10689000002803D1044B1B7F1800704700230128F8 +:1068A000FAD1014BDB7FF7E720AE0208F0B5F7B075 +:1068B0000500029111A8594917000493F9F7D0FE79 +:1068C00000284CD17C9B002B3FD100242B89EA6807 +:1068D0009B180393039BA34214D9039B049E1B1B89 +:1068E0009E4200D91E0033003A0021000298FFF7B3 +:1068F00031FC002833D13200390011A8F9F7BEFE6F +:1069000000282ED008AB202209A911A8F9F7C6FE4D +:10691000002824D17E9B002B04D0202209A9180036 +:1069200001F0F7FBEB682C8907ADE4182A0004237B +:1069300021000298FFF70EFC002810D1384B2A885E +:106940009A4210D00120404209E07D9B002BBCDD23 +:106950001A007C9911A8F9F791FE0028B5D077B0FC +:10696000F0BDA419B6E76B8801251B190593043403 +:10697000039004906D42059B9C4205D3049B002B21 +:10698000E0D003980138EAE708AF04233A00210079 +:106990000298FFF7DFFB0028E1D13B787E88102BBF +:1069A00017D1202ECED1211D330011AA0298FFF756 +:1069B000D1FB0028D3D1320011A909A801F09AFB1C +:1069C0000028BFD10123049308AB5B880433E4188B +:1069D000D1E7012B04D17F98FFF75AFF0500F3E7B9 +:1069E000222BF1D13300483BB82BABD8211D33000B +:1069F00011AA0298FFF7AEFB0028A3D1EDB27B8865 +:106A000011AA0095202109A80125FFF7E7FE6D4294 +:106A10000028D9D101230393D6E7C046090000011D +:106A200007690000F7B50700002401262000FFF7E2 +:106A30007CFC01A9C0B2FFF745FB3500011E0AD15D +:106A40002C2363430B4A0198D2182023FFF782FBC3 +:106A50000500681E85410198FFF756FB002D04D004 +:106A6000012C00D13D002800FEBD012CFBD03400DC +:106A7000DCE7C04660A8020873B50C00C0B201A9EB +:106A80001500FFF71FFB0126002807D12A0021006F +:106A90000198FFF7D7FB0600701E86410198FFF7AB +:106AA00033FB300076BD0000F0B52C244443344B5A +:106AB00087B01C19236805001A00324B9A4201D096 +:106AC00001204AE02369DB06FAD4FFF72EFC04A973 +:106AD000C0B2FFF7F7FA03000120002B3ED1E368B4 +:106AE000268905AFF6183A00042331000498FFF711 +:106AF00031FB0028E4D1244B3A889A4201D17888AE +:106B000080192C236B431E4AD3181B6A9B6883424F +:106B1000D6D31E4BA27A1B789A42D1D12000F9F726 +:106B200031FB0028CCD123681A00164B9A4217D1AA +:106B3000802302900190009003955B00144A049911 +:106B40002000FFF7B3FE00280AD10498FFF7DCFA13 +:106B50002000F9F73BFB431E9841404207B0F0BDCF +:106B6000002D04D0049800218268FFF76BFB094BCD +:106B70002A001B680849D86801F02EFAA0E7C04631 +:106B800060A802083DB8F3960769000020AE02082D +:106B9000D0AC020884A10208F2DD0D100023F0B58C +:106BA000B04CB14AB14DA544012013602B60FFF7F2 +:106BB0007BFFAF4B040001201F79FFF769FE002C1B +:106BC00047D1AC4BC2B2DB6C39005E6880235B05F9 +:106BD000F3180293A84BF618300013ABFAF7F6FF40 +:106BE000041E36D105A8F9F77DFD8021A34A89004E +:106BF00005A8F9F785FD05A90B20F9F791FD041EFD +:106C000027D1102313AA9E490B20F9F759FD012320 +:106C1000041E2B601DD1994A0B211BA8F9F7ACFC6F +:106C2000041E16D1102217A91BA8F9F7C7FC041ED1 +:106C30000FD1202204AB2DAD019300922B00310027 +:106C40001BA8F9F7CBFC049B0400202B10D00124D7 +:106C50006442864B1B68002B05D00B20F9F7D4FC4F +:106C6000002800D004002000D3239B009D44F0BDE9 +:106C70000028EED1020004AB29001BA8F9F78CFC18 +:106C8000041EE6D107AE33002A0013CA13C37D4F9A +:106C9000126831A91A603800102201F03AFA05A9E9 +:106CA0000C20F9F73DFD041ED3D1102332007449A6 +:106CB0000C20F9F705FD01226B4B041E1A60C8D1A8 +:106CC00071496DA8F9F7CCFC041EC2D1029B029A4F +:106CD0001B890C21D3181BA8684A0393F9F74CFCB5 +:106CE000041EB6D1102239001BA8F9F767FC041E58 +:106CF000AFD1802604AB7600019300962B003200C2 +:106D000003991BA8F9F76AFC049B0400B3429ED1C7 +:106D100000289ED12D9B2E89AA7A309F3199581C2C +:106D200000D194E7C90600D591E75249C96C89683A +:106D3000B94200D28BE755498B4200D087E74C4BD4 +:106D40001B78934200D082E78022290052006DA870 +:106D5000F9F794FC041E00D07BE7F619330AF6B26B +:106D6000771EBE4101279B190293039B3E029E1989 +:106D7000029BBB4222D9002C00D06AE704AB0193EE +:106D800080232DAA5B000093130080223100520063 +:106D90001BA8F9F723FC8023049A04005B009A42A5 +:106DA00009D1002805D11A002DA96DA8F9F766FCB4 +:106DB00004000137D9E701246442FAE7002C00D02F +:106DC00047E704AF3B0020220BA96DA8F9F766FC4A +:106DD000041E00D03DE780225200019700922B0054 +:106DE00031001BA8F9F7FAFB041E00D031E70200BE +:106DF0003B0029001BA8F9F7CFFB2D9B244A9BB22F +:106E00000400934200D022E7002800D021E72E9A08 +:106E1000D3B2102B00D01AE7120C202A00D016E7AC +:106E20002FA90BA801F066F9041E00D011E7379BCB +:106E3000DBB2012B00D00AE70120FFF729FD409BC0 +:106E4000DAB2222A00D002E71B0C482B00D0FEE663 +:106E5000C0B2009041AA20210BA8FFF7BFFC04009C +:106E6000F7E6C046B4FCFFFF34B0020830B00208B9 +:106E700020AE020860A80208200000100001600493 +:106E800001000040C0AC0208090000013DB8F396C3 +:106E9000076900000023F0B51D4C0700A5446946B2 +:106EA000022000930193FFF70DF900280ED0012670 +:106EB0000098002801D0FFF727F90198002801D099 +:106EC000FFF722F93000134B9D44F0BD01A90120CA +:106ED000FFF7F8F80600041EE9D10098A742E7D9A9 +:106EE00080233D1BDB009D4200D91D002B0002AA20 +:106EF0002100FFF72FF90028D9D12B0002AA210089 +:106F00000198FFF753F90028D1D16419E5E7C0468D +:106F1000F4FBFFFF0C040000F0B500242500614ED7 +:106F20009BB033686048D96801F0B0F833685F48B7 +:106F3000D96801F0ABF85E4FBB6A0393039BAB4289 +:106F400069D133682200D8685A4901F045F85A4B94 +:106F5000DB78002B00D1A1E0002305A902200593D6 +:106F60000693FFF7AFF8002821D106A90130FFF7FB +:106F7000A9F800281BD1514A0C2108A8F9F7FCFAFE +:106F8000002814D110224E4908A8F9F717FB041E57 +:106F90000DD10600BB6B0133FF330293059B5B6889 +:106FA0000393029BB34200D86EE0002C46D00598B4 +:106FB000002801D0FFF7A8F80698002801D0FFF7B5 +:106FC000A3F8404B1B68002B02D00C20F9F71CFBE8 +:106FD000102200213A4801F0A5F83B6D00219A6883 +:106FE0000220FFF749FD43425841FEF761FA0C23A6 +:106FF0007A6D396D013A5343CB185A6849680220BB +:10700000511A9A68FFF738FD43425841FEF750FA8B +:1070100000201BB0F0BD0C236B437A6A2100D3180B +:107020009B6801201A000293FFF726FD4342584156 +:10703000FEF73EFA029B0135E4187FE7029B9D1B99 +:107040008023DB009D4200D91D00039B0095991908 +:107050001D4B2A00C91807AB019308A81B4BF9F771 +:10706000BDFA079B0400AB420BD1002899D12B003D +:10707000164A31000698FFF799F8002897D176193B +:107080008FE7012464428CE7002C00D08FE707AB28 +:1070900022000E4908A8F9F77FFA88E72000FFF7D9 +:1070A000F9FE9AE784A1020863DC0D1088DC0D105C +:1070B00060A802089EDC0D1020AE020800016004EA +:1070C000C0AC020834B0020800040010C0A80208D6 +:1070D00073B5164E164CF368626A5B0A01A901206B +:1070E0000193FFF743F9012500281AD1019B226D76 +:1070F000A362F36801A95B0A02300193FFF736F936 +:10710000051E10D1019B206A6365FFF709F906008F +:10711000A06DFFF705F9331C864200D2031C5C34D6 +:107120002370280076BD0125FBE7C04640A1020878 +:1071300060A80208F0B50C266E4F89B0FB6800907D +:107140005C0A7443200000F0AFFF0190200000F0C3 +:10715000ABFF019B684C0290636220650020FFF743 +:10716000E4F82100C0B22031FEF7ACFF43425841A1 +:10717000FEF79EF90120FFF7D8F82100C0B24C318C +:10718000FEF7A0FF43425841FEF792F92100032089 +:107190005831FEF797FF43425841FEF789F9FFF750 +:1071A00097FF051E19D0554BFA681B68520A5449BF +:1071B000D86800F011FF019800F080FF029800F0FD +:1071C0007DFFA06DFEF7A0FFE06CFEF79DFF206A3B +:1071D000FEF79AFF280009B0F0BDFFF723FC051E5B +:1071E000E9D1FB68A06A5B0A984202D8626D9A42B4 +:1071F00019D9424B43481B68D96800F047FF00206B +:10720000FFF752FC050068426841FEF751F9002D76 +:107210005ED1236A00995A780A715B680C60039307 +:10722000039A8A60C7E7904239D108234643626ACD +:10723000216D08369E4237D1334E7378002BDED055 +:107240000C22002105A800F06DFF0120FEF730F9A7 +:10725000FFF75AFA831E0500022B0DD8274B1B6837 +:10726000D968F378002B2CD0284800F00FFFFFF7E7 +:1072700095FC00282ED005250120FEF719F9012DD7 +:10728000BDD0002D01DD052D2EDD1C4B20481B68D7 +:10729000D96800F0FBFE0020FEF70AF9FEE7174B65 +:1072A0001C481B68D968A8E71800D558CB580C3083 +:1072B0009D4204D0114B18481B68D9689DE7030014 +:1072C000B8E7164800F0E2FE0120FFF7EDFBD0E73B +:1072D000032570E70120FEF7EBF8FFF71DFE4342A0 +:1072E0005841FEF7E5F8C7E70020FFF79BFB051EB6 +:1072F00085D060E740A1020860A8020884A10208C6 +:10730000CCDC0D1011DD0D1020AE0208BBDD0D1020 +:10731000E3DD0D1043DD0D1082DD0D10CDDD0D1010 +:1073200010B5017804000A00303AD3B2092B1FD8F7 +:1073300011000A0161780B00303BD8B2092824D82B +:107340009918A27809011300303BD8B209282AD82D +:107350005A18E378120118003038C1B28018092990 +:1073600005D91900413905292BD8373B981810BD8C +:107370000B00413B052B01D83739DAE70B00613BA5 +:107380000020052BF3D85739D3E70B00413B052BE1 +:1073900002D837398918D4E70B00613B0020052B50 +:1073A000E5D85739F6E71300413B052B02D8373AA9 +:1073B0005218CEE71300613B0020052BD7D8573A6F +:1073C000F6E71900613900200529D0D8573BCDE7F1 +:1073D000F7B50B7807004E1C222B0FD00026554B1B +:1073E00019603000FEBD02331A780130222A08D01D +:1073F000002A06D05C2AF6D00133F5E733000020DE +:10740000F2E74D4B1B6898470190041E07D1019E7F +:10741000E7E7721C5C2B13D023700134160033781D +:10742000222B01D0002BF4D1002323703378223B90 +:107430005A425341F618019B3B610423FB60D0E79D +:1074400073786E2B17D007D8611C622B0CD0662B7B +:107450000FD0237001340AE0742B0ED0752B0ED0A0 +:10746000722BF6D10D23F4E7082323700C000132B0 +:10747000D4E70C23F9E70A23EBE70923E9E7B01C7B +:10748000FFF74EFF2D4B2E49C3180500721D8B428E +:10749000EDD90028EBD02B4BC3188B4227D8B379FA +:1074A0005C2BE4D1F379752BE1D130000830FFF784 +:1074B00037FF3200214B2249C3180B328B42D6D8FA +:1074C000214BAD021D4080238005800D05435B02EA +:1074D000ED181E4BE11C9D4223D803234C1E3F2078 +:1074E00080212840494201432170AD0910E07F28E6 +:1074F00009D8012301341648611EC05C013B0543D5 +:107500000D70E418B3E7134B9842E2D8022302341B +:107510003F20802128404942013C01432170AD09B0 +:10752000E9E73F20802328405B420343E370AD0935 +:107530000423D3E7D0AD020880A102080024FFFF96 +:10754000FF0300000028FFFF00FC0F00FFFF00000A +:1075500019DE0D10FF070000002803D00378013B5F +:107560001F2B00D970470130F6E70000064B10B51D +:107570001B6828209847041E03D02822002100F011 +:10758000D1FD200010BDC04680A10208F0B5050065 +:1075900087B00E1E01D1002413E00422754930008B +:1075A00001F045FC002803D10223EB60341D08E004 +:1075B00005227149300001F03AFC002804D1E8604E +:1075C000741D200007B0F0BD04226C49300001F0AA +:1075D0002EFC002806D101230122EB600023AA61C2 +:1075E000EB61E3E73378222B05D131002800FFF768 +:1075F000EFFE0400E5E71A00303AD2B22D2B01D09D +:10760000092A1AD8340000E0013423781A00303AED +:10761000092AF9D92D2BF7D0A71B3A00310068466B +:1076200000F077FD00236A466846D35500F0CEFC93 +:107630000323A861E961EB60C3E75B2B37D1563BBD +:10764000EB60701CFFF788FF037804005D2B01D10D +:107650000134B6E7FFF78AFF061EA8609BD0200022 +:10766000FFF77AFF01003000FFF790FFFFF774FF8C +:107670000400002C00D18EE723782C2B04D05D2B46 +:10768000E6D03F4B1C6086E7FFF770FF051E00D178 +:1076900081E730604660601CFFF75EFF0100280054 +:1076A000FFF774FFFFF758FF2E000400E1E77B2B84 +:1076B0005DD1753BEB60701CFFF74EFF0378040053 +:1076C0007D2BC5D0FFF752FF061EA86000D162E7F0 +:1076D0002000FFF741FF01003000FFF779FEFFF7C0 +:1076E0003BFF002800D156E7002433693461336240 +:1076F00003783A2B02D0224B186062E70130FFF783 +:107700002BFF01003000FFF741FFFFF725FF0400CA +:10771000002C00D13FE723782C2B02D07D2B97D073 +:10772000AFE7FFF723FF051E00D134E73060466066 +:10773000601CFFF711FF01002800FFF749FEFFF76B +:107740000BFF002800D126E700242B692C612B6257 +:1077500003783A2BCFD10130FFF7FEFE010028005D +:10776000FFF714FFFFF7F8FE2E000400D0E7044BEC +:107770001E6010E720DE0D1025DE0D102BDE0D1033 +:10778000D0AD02080849094A002803D1084B0B6014 +:10779000084B07E00368002B00D1054B0B604368E2 +:1077A000002BF5D01360704780A102087CA102086D +:1077B000A9800D10BD800D10F8B58026040076005C +:1077C000002C00D1F8BDE3682768334204D1A068DB +:1077D000002801D0FFF7F0FFE3680B4D334204D1DE +:1077E0002069002801D02B6898478022E368920026 +:1077F000134204D1206A002801D02B68984720004A +:107800002B6898473C00DBE77CA10208F7B5050030 +:107810000E000192FFF7AAFE0023134F04003B6005 +:1078200098420CD02800FFF797FE01002000FFF7D8 +:10783000ADFE051E05D12000FFF7BEFF002420008D +:10784000FEBD019B002B0AD0FFF786FE03780500E2 +:10785000002B04D02000FFF7AFFF3D60EEE7002EC5 +:10786000EDD03560EBE7C046D0AD0208002210B580 +:107870001100FFF7CBFF10BD0300093B0122042BD1 +:1078800002D920384242424110007047F0B500252D +:10789000170006002C0089B003930E9B02901B0C6E +:1078A000DBB204930E9B00911B0ADBB205930E9B87 +:1078B000DBB20793731C069333780193002B08D037 +:1078C000009B002B22DB029A731C9B1A009A9A429F +:1078D0001CDA0E9BDBB2002B00D1B4E0019A9A4275 +:1078E00000D0AEE0009B002B06DB029A731C9B1AB3 +:1078F000009A934200DDA4E0B31C7678032D00D9F2 +:10790000A1E0280000F0ACF88989637B0198FFF7BB +:10791000B3FF002839D1079B019A9342D9D04F4E2B +:107920001100300001F05CFA031E08D1049B019A9B +:1079300093420BD0059B93426FD133003F33032D0D +:1079400023D8280000F08CF80510233533003E338F +:10795000F5E7002F06D0039A94425ED23F4A9B1A65 +:107960009B003B55012510E0621C002F0BD00399B2 +:107970008A4252D239493C195B1A217818110143C5 +:107980001B012170BB5414000225069E92E7621C65 +:10799000002F0BD003998A423FD230493C195B1A21 +:1079A0002178981001439B012170BB5414000325DA +:1079B000EBE7002F08D0039A94422ED227493A19B8 +:1079C0005B1A11780B43137001340025DDE71D00AD +:1079D000002E22D0009B002B22DB029B009AEB1A88 +:1079E0009A421DDA019BB34217D1009B002B04DDA4 +:1079F000029B009AEB1A93420FDC2E786B1C029AC2 +:107A00009D1A002E04D0009B002B11DBAB420FDA35 +:107A1000002F18D03B5D002B15D00124644219E0E3 +:107A20003000FFF729FF0028DCD02E780135CFE7A2 +:107A30003000FFF721FF0028EFD0029B5E5D01358B +:107A4000DFE7002DE9D1039B9C42E6D2002F01D055 +:107A500000233B55200009B0F0BDC04630DE0D10BC +:107A600002B4714649084900095C49008E4402BCD1 +:107A70007047C046002243088B4274D303098B42EF +:107A80005FD3030A8B4244D3030B8B4228D3030CEE +:107A90008B420DD3FF22090212BA030C8B4202D390 +:107AA0001212090265D0030B8B4219D300E0090AB8 +:107AB000C30B8B4201D3CB03C01A5241830B8B42C1 +:107AC00001D38B03C01A5241430B8B4201D34B03AA +:107AD000C01A5241030B8B4201D30B03C01A52410F +:107AE000C30A8B4201D3CB02C01A5241830A8B4294 +:107AF00001D38B02C01A5241430A8B4201D34B027D +:107B0000C01A5241030A8B4201D30B02C01A5241E0 +:107B1000CDD2C3098B4201D3CB01C01A5241830994 +:107B20008B4201D38B01C01A524143098B4201D3CE +:107B30004B01C01A524103098B4201D30B01C01AF9 +:107B40005241C3088B4201D3CB00C01A5241830873 +:107B50008B4201D38B00C01A524143088B4201D3A0 +:107B60004B00C01A5241411A00D201465241104600 +:107B70007047FFE701B5002000F0F0F802BDC046F5 +:107B80000029F7D076E7704703460B437FD40022E5 +:107B900043088B4274D303098B425FD3030A8B42A1 +:107BA00044D3030B8B4228D3030C8B420DD3FF220B +:107BB000090212BA030C8B4202D31212090265D0D9 +:107BC000030B8B4219D300E0090AC30B8B4201D38C +:107BD000CB03C01A5241830B8B4201D38B03C01AD3 +:107BE0005241430B8B4201D34B03C01A5241030B4A +:107BF0008B4201D30B03C01A5241C30A8B4201D3FB +:107C0000CB02C01A5241830A8B4201D38B02C01AA5 +:107C10005241430A8B4201D34B02C01A5241030A1C +:107C20008B4201D30B02C01A5241CDD2C3098B4201 +:107C300001D3CB01C01A524183098B4201D38B017E +:107C4000C01A524143098B4201D34B01C01A524121 +:107C500003098B4201D30B01C01A5241C3088B4266 +:107C600001D3CB00C01A524183088B4201D38B0051 +:107C7000C01A524143088B4201D34B00C01A5241F3 +:107C8000411A00D201465241104670475DE0CA0FCA +:107C900000D04942031000D34042534000229C468A +:107CA00003098B422DD3030A8B4212D3FC22890194 +:107CB00012BA030A8B420CD3890192118B4208D36A +:107CC000890192118B4204D389013AD0921100E0CC +:107CD0008909C3098B4201D3CB01C01A52418309E0 +:107CE0008B4201D38B01C01A524143098B4201D30D +:107CF0004B01C01A524103098B4201D30B01C01A38 +:107D00005241C3088B4201D3CB00C01A52418308B1 +:107D10008B4201D38B00C01A5241D9D243088B4207 +:107D200001D34B00C01A5241411A00D201466346AA +:107D300052415B10104601D34042002B00D549420E +:107D4000704763465B1000D3404201B5002000F04D +:107D500005F802BD0029F8D016E770477047C04605 +:107D6000002B11D1002A0FD1002900D1002802D008 +:107D70000021C943081C07B4024802A14018029020 +:107D800003BDC046D9FFFFFF03B4684601B50298A2 +:107D900000F030F8019B9E4602B00CBC7047C04614 +:107DA000F0B5CE46474615042D0C2E0080B50704CD +:107DB000140C3F0C9946030C7E435D4367436343B9 +:107DC0007F19340CE4199C46A54203D980235B0239 +:107DD0009846C4444B4643435143250C36046544FE +:107DE000360C2404A4195B19591820000CBC9046C9 +:107DF0009946F0BDF0B54F464646D646C0B504009C +:107E000082B00D00914698468B422FD82CD0414627 +:107E1000484600F0CFF829000600200000F0CAF81C +:107E2000331A9C46203B9A4600D576E04B46524694 +:107E300093401F004B46624693401E00AF4228D835 +:107E400025D05346A41BBD41002B00DA7BE0002265 +:107E50000023009201930123524693400193012392 +:107E600062469340009318E08242D0D9002200235A +:107E7000009201930A9B002B01D01C605D6000986A +:107E8000019902B01CBC90469946A246F0BDA3429F +:107E9000D7D900220023009201936346002BE9D03A +:107EA000FB079846414672080A437B0866460EE087 +:107EB000AB4201D1A2420CD8A41A9D410120241941 +:107EC0006D410021013E24184D41002E06D0AB42E9 +:107ED000EED9013E24196D41002EF8D10098019988 +:107EE000534600196941002B23DB2B005246D34037 +:107EF0002A006446E2401C0053461500002B2DDB8F +:107F000026005746BE40330026006746BE4032007A +:107F1000801A994100900191ACE7624620239B1A98 +:107F20004A46DA406146130042468A4017001F4322 +:107F300080E7624620239B1A2A0066469A40230067 +:107F4000F3401343D4E76246202300219B1A00220A +:107F5000009101920122DA40019280E720236246DB +:107F600026009B1ADE402F00B0466646B7404646C4 +:107F70003B003343C8E7C0461C2101231B04984241 +:107F800001D3000C10391B0A984201D3000A0839AA +:107F90001B09984201D30009043902A2105C401861 +:107FA0007047C04604030202010101010000000005 +:107FB0000000000010B5002903D1FFF7DDFF2030DD +:107FC00002E0081CFFF7D8FF10BDC04610B50A221A +:107FD000002100F0FDFF10BD0EB403B5010003AB9E +:107FE000044804CB0068019300F074F902B008BCA7 +:107FF00003B0184784A1020870B505000E001400F4 +:10800000002804D08369002B01D102F02BF81C4B0F +:108010009C420FD16C68A3891B0702D52369002BF2 +:1080200021D12100280001F049F800281BD00120AF +:10803000404270BD134B9C4201D1AC68EBE7124B40 +:108040009C42E8D1EC68E6E7A3680136013BA360F7 +:10805000002B04DAA26993420ADB0A2908D02368BC +:108060005A1C2260197031780029EDD10800E0E730 +:108070002200280000F0C0FF431CF4D1D7E7C0461F +:10808000F4DF0D1014E00D10D4DF0D1010B5034B0C +:108090000A0001001868FFF7AFFF10BD84A10208B5 +:1080A000EC3000687047000010B5034B0100186801 +:1080B00000F08AF810BDC04684A1020810B5034B39 +:1080C0000100186800F036F810BDC04684A102080F +:1080D00082B0002900D101A9101E06D0002B06D0C5 +:1080E00013780B601078431E984102B0704702204D +:1080F0004042FAE730B50024A24201D1002005E059 +:10810000035D651C0C5DA34201D0181B30BD2C0023 +:10811000F2E7002310B59A4200D110BDCC5CC454E4 +:108120000133F8E703001218934200D17047197029 +:108130000133F9E770B50500002910D00C1F236842 +:10814000002B00DAE418280002F0A3F81D4A136897 +:10815000002B05D163601460280002F09BF870BD0D +:10816000A34209D9216860188342F3D118685B687B +:1081700041182160EEE713005A68002A01D0A2429C +:10818000F9D919685818A0420BD120680918581855 +:1081900019608242E0D110685268411819605A6033 +:1081A000DAE7A04202D90C232B60D5E721686018DA +:1081B000824203D1106852684118216062605C609D +:1081C000CAE7C046D4AD0208032370B5CD1C9D4359 +:1081D000083506000C2D1ED20C25A9421DD83000F2 +:1081E00002F057F8254A14682100002919D1244CBF +:1081F0002368002B03D1300000F0E0FD206029004F +:10820000300000F0DBFD431C2BD10C233000336029 +:1082100002F040F803E0002DDFDA0C233360002089 +:1082200070BD0B685B1B19D40B2B03D90B60CC18EA +:10823000256003E04B688C420DD11360300002F0E2 +:1082400029F8200007220B30231D9043C31AE7D0E2 +:108250005A42E250E4E763600C00EFE70C00496823 +:10826000C3E70323C41C9C43A042E1D0211A300081 +:1082700000F0A4FD431CDBD1C7E7C046D4AD020823 +:10828000D8AD0208936810B5013B9360002B04DA67 +:108290009469A34207DB0A2905D01368581C1060B3 +:1082A0001970080010BD00F0A7FE0100F9E7F8B54D +:1082B00006000F001400D518AC4201D1002007E0E1 +:1082C00021783A003000FFF7DDFF0134431CF3D181 +:1082D000F8BD0000F0B59FB002900F0016000593A6 +:1082E000002805D083690493002B01D101F0BAFE68 +:1082F0007B4B9F425BD1029B5F68BB891B0762D5AA +:108300003B69002B5FD0002306AC636120336376AA +:108310001033A37635002B78002B01D0252B5CD1B0 +:10832000AB1B04930CD0320039000298FFF7BFFF5B +:10833000431C00D1C4E06269049B944663446361BA +:108340002B78002B00D1BBE0012200235242626057 +:1083500002A9543252186E1C2360E360A3601370AC +:10836000A365317805225F4801F088FF751C00285D +:1083700035D12268D30604D5532302A95B182021E6 +:108380001970130704D5532302A95B182B21197008 +:1083900033782A2B2CD0350000210A20E3682A7874 +:1083A0006E1C303A092A64D900292ED026E04E4BA3 +:1083B0009F4202D1029B9F689FE74C4B9F429CD1FA +:1083C000029BDF6899E73900029800F077FE0028E9 +:1083D00099D0012040421FB0F0BD01359BE7414BD1 +:1083E0002268C01A01238340134323602E00B8E79C +:1083F000059B191D1B680591002B01DB099304E007 +:108400005B42E3600223134323602B782E2B0AD1B7 +:108410006B782A2B35D1059B02351A1D1B680592F6 +:10842000002B2BDB0793324E29780322300001F01A +:1084300025FF002806D04023801B83402268013599 +:1084400013432360297806222A486E1C217601F006 +:1084500015FF00283AD0284B002B25D10722059B79 +:1084600007339343083305936369039A9B18636149 +:1084700050E7434301219B18350090E701235B42FD +:10848000D0E700230A201A000135636029786E1CAA +:108490003039092903D9002BC5D00792C3E74243DD +:1084A000012352183500F1E705AB00933A00134B56 +:1084B0002100029800F0C0F80390039B0133D3D150 +:1084C000BB895B0600D584E70B9884E705AB009376 +:1084D0003A000A4B2100029800F068FBECE7C04626 +:1084E000F4DF0D107EDE0D1014E00D10D4DF0D1042 +:1084F00084DE0D1088DE0D1039860D10AF820D1050 +:10850000F0B58BB014001D1E129953DA8024240696 +:108510001B191D0014002D230B702023149E032211 +:108520009E43462E07D03300453B59424B4110999C +:10853000013ACB18109309AB049308AB0393139B38 +:1085400000920293109B220001932B0000F0B2FED8 +:108550000700472E02D1119BDB0724D5109BFB1887 +:108560000793462E14D13B78302B0CD100220023E8 +:108570002000290002F052FA002804D10123109AA9 +:108580009B1A139A1360139B079A1B68D3180793BF +:10859000002200232000290002F040FA30220028A7 +:1085A0000DD0079B09933800099B159ADB1B1360BC +:1085B0000BB0F0BD0023AFE7591C09911A70099B5D +:1085C00007998B42F8D3EEE7F0B5831C85B0019391 +:1085D00006000C0002702B23002901DA2D234C42E7 +:1085E0007370092C22DD02ABDD1D20000A21FFF78C +:1085F000B1FB6F1E3031397020000A21FFF7C4FA39 +:10860000040009280BDC023D3034019B2C7002AAC7 +:1086100007321800AA4204D8801B05B0F0BD3D0007 +:10862000E3E72A7801351A700133F0E73023E418C4 +:10863000B370301DF470EFE7F0B595B00C000A92FE +:108640000B931A9D099001F0A1FD036818000C938B +:1086500000F0E6FB0023129323680E900D930D9912 +:10866000277E2B680722C90545D59B1893431A001E +:1086700008322A601A685B68A264E3640122E56C30 +:10868000A66C6B005B080F935242AC4B30000F9905 +:1086900003F0D2FE002830D10122A84B5242300014 +:1086A0000F9902F0CBF9002827D1002200233000D7 +:1086B000290002F0B9F9002803D023002D2243330A +:1086C0001A709F4D472F00D89E4D032300260D9A08 +:1086D000236101339A4322600B9B13AA009321006C +:1086E0000A9B099800F0F4F9431C00D093E00120A4 +:1086F000404215B0F0BD0733B8E732002B00300020 +:10870000290003F099FE002804D08F4D472FDCD8B4 +:108710008E4DDAE780230D996268DB000B43511C14 +:1087200043D10732626012AA0021059211AA039276 +:10873000232223600691019308A9636852180292CC +:10874000009332002B0004970998FFF7D9FE2023ED +:108750003A0005009A43472A07D1119BDA1C02DB35 +:108760006268934245DD023FFFB21199652F25D81B +:10877000200001393A0050301191FFF725FF129A7D +:10878000060013182361012A02DC2268D20701D5F2 +:1087900001332361232308AA9B181B78002B9BD04D +:1087A00023002D2243331A7096E7672F00D176E11C +:1087B000472FB8D1002AB6D10122B3E7662F19D1CD +:1087C000636800290CDD2161002B02D12268D207E9 +:1087D00002D501335B182361119B0026A365D9E7FD +:1087E000002B03D101222168114200D09A1C226182 +:1087F000F2E76727119B129A934205DB22682361F7 +:10880000D207E9D50133E6E70121002B01DC491845 +:10881000C91A5218EBE72268530508D423692A00C5 +:108820000A9909980B9DA847431C29D15FE7652F3A +:1088300000D8E0E0A06CE16C0022002302F0EEF82A +:10884000002834D00123424A0A9909980B9DA84771 +:10885000431C00D14BE7119B129A934202DB236821 +:10886000DB070DD50B9D0E9B0C9A0A990998A8471A +:108870000025431C00D13AE7129B013BAB420ADCC6 +:1088800023689B0700D508E1139BE068984200DB52 +:108890002FE718002DE7220001231A320A990998C0 +:1088A0000B9EB047431C00D121E70135E4E7119B43 +:1088B000002B2DDC0123264A0A9909980B9EB0470C +:1088C000431C00D113E7119B002B05D1129B002BF9 +:1088D00002D12368DB07D3D50B9E0E9B0C9A0A9915 +:1088E0000998B0470026431C00D100E7119B5B426A +:1088F000B34201DC129B92E7220001231A320A994B +:1089000009980B9FB847431C00D1F0E60136EDE70C +:10891000A36D129F9F4200DD1F00002F08DD3B006A +:108920002A000A9909980B9EB047431C00D1DEE645 +:1089300000230D93FB43DB170F9318E0FFFFEF7F3E +:1089400093DE0D108FDE0D109BDE0D1097DE0D10E7 +:108950009FDE0D10220001231A320A9909980B9EFE +:10896000B047431C00D1C2E60D9B01330D930F9B12 +:10897000A66D0D9A3B40F31A9342EBDC119B129AC1 +:10898000AD19934210DB2368DB070DD4129F119BB6 +:10899000BE1BFF1AB74200DD3700002F0DDCFE437F +:1089A000F31700250C931CE00E9B0C9A0A9909986A +:1089B0000B9FB847431CE9D199E63B002A000A996E +:1089C00009980B9DA847431CE9D190E6220001239A +:1089D0001A320A9909980B9EB047431C00D186E6CB +:1089E0000135119A129B0C999B1A3A000A409B1A66 +:1089F000AB42EBDC44E7129B012B02DC01231A4261 +:108A000032D001232A000A9909980B9FB847431CCA +:108A100000D16CE60E9B0C9A0A9909980B9F0135C0 +:108A2000B847431C00D162E6A06CE16C129B0022A7 +:108A30005F1E002301F0F2FF3B00002814D0002548 +:108A40000AE0220001231A320A9909980B9FB847BD +:108A5000431C00D14BE60135129B013BAB42F0DCDD +:108A6000220033005032DBE62A000A9909980B9D58 +:108A7000A847431CF4D13AE62200012319320A998F +:108A800009980B9EB047431C00D130E60135E368DE +:108A9000139A9B1AAB42EFDCF6E60025F7E7002AB3 +:108AA00000D189E60021069112A9059111A903912F +:108AB000232108A809182360019300922B00049732 +:108AC000029132000998FFF71BFD050045E6C046FC +:108AD000F7B5150001938A680B6900900C0093426A +:108AE00000DA130022002B6043321278002A01D0F2 +:108AF00001332B6023689B0602D52B6802332B6061 +:108B0000062723681F4027D0230043331B785A1EB3 +:108B100093412268920630D4220001994332009892 +:108B2000089EB047431C25D0062320682A68E168C8 +:108B300003400025042B03D18D1AEB43DB171D40A6 +:108B4000A3682269934201DD9B1AED180027BD42FC +:108B500020D1002010E00137E3682A689B1ABB424D +:108B6000D2DD22000123193201990098089EB047F6 +:108B7000431CF0D101204042FEBD3020E1184331BA +:108B8000087021005A1C45310978A218433202337B +:108B90001170C1E7220001231A3201990098089E42 +:108BA000B047431CE6D00137D1E70000F0B589B0EB +:108BB00004920A0043320593039002920A7E0C004D +:108BC0000E9B6E2A00D186E01FD8632A33D008D8C6 +:108BD000002A00D18CE0582A4DD0250042352A7059 +:108BE00030E0642A01D0692AF7D1196825680A1D86 +:108BF000280629D508681A60002803DA2D23029A6E +:108C0000404213706B4E0A274FE0732A74D008D885 +:108C10006F2A1FD0702AE0D1202209680A432260FF +:108C200003E0752A16D0782AD7D122007821453260 +:108C30001170614E22E025001A684235111D19603D +:108C400013682B70012365E008681A606906D3D5A4 +:108C500000B2D1E719682568081D186008682E065B +:108C600005D5544E08276F2A1BD00A2719E06D0638 +:108C7000F7D580B2F5E745314E4E0A701868226884 +:108C8000011D00681960150621D5D30702D52023E0 +:108C90001A4322601027002803D1202322689A4318 +:108CA00022602300002243331A706368A360002B04 +:108CB00058DB0422216891432160002854D1029D91 +:108CC000002B5AD02500337842352B7055E05506DD +:108CD000DBD580B2D9E71A680D68101D49691860A4 +:108CE00013682E0601D5196002E06D06FBD51980C8 +:108CF0000023029D23614FE01A68111D1960156859 +:108D000000216268280001F0B9FA002801D0401B58 +:108D10006060636823610023029A13703CE023695A +:108D20002A0004990398059DA847431C3ED0236858 +:108D30009B0715D4079BE068984239DA180037E0A2 +:108D400022000123193204990398059EB047431C61 +:108D50002CD00135E368079A9B1AAB42F0DCE9E7B7 +:108D60000025F7E70028ADD0029D3900FEF708FF87 +:108D7000735C013D2B700028F7D1082F09D12368BF +:108D8000DB0706D563682269934202DC3023013D8C +:108D90002B70029B5B1B2361059B07AA009321009C +:108DA000049B0398FFF794FE431CB8D10120404276 +:108DB00009B0F0BDA1DE0D10B2DE0D10002370B5BC +:108DC000064C05000800236003F014FC431C03D18B +:108DD0002368002B00D02B6070BDC0463CB0020859 +:108DE000C9B20378002B04D08B4200D17047013008 +:108DF000F7E74B42594149420840F7E702780B78C0 +:108E0000002A03D0013001319A42F7D0D01A7047BE +:108E100003000A7801311A700133002AF9D1704732 +:108E20000023C25C0133002AFBD1581E7047002387 +:108E300030B59A420AD0013AC45CCD5CAC4204D150 +:108E4000934202D00133002CF6D1631B180030BDD1 +:108E500030B50500002A00D130BD0C78013A6B1CFA +:108E60002C700131002C05D19A189A42F4D01C7054 +:108E70000133FAE71D00EDE7F0B51F000E008DB0DD +:108E80000B900291039212983478FFF709F90822A7 +:108E900000194378751C134053D12D2C53D174788D +:108EA000B51C01330193002F00D18AE0102F0AD1A5 +:108EB000302C08D120222B789343582B00D07AE015 +:108EC00010276C780235019B002B41D1013B0493A4 +:108ED0003E4B05933A00FB17049805990893FEF75B +:108EE0003FFF002309900E00002000210A9222007B +:108EF000303A092A31D81400A7423DDD5A1C1DD052 +:108F0000B14236D802D1099B984232D8099B83429C +:108F100006D18E4204D101230A9A5B42A2420DDBA4 +:108F20000B00020008993800FEF73AFFE317069499 +:108F30000793069B079CC018614101232C780135DB +:108F4000D5E72E009FE72B2CACD1B51C7478A9E790 +:108F50000023049380231B06BBE72200413A192A11 +:108F600001D8373CC8E72200613A192A04D8573C97 +:108F7000C2E701235B42E1E75A1C09D10B9A233374 +:108F80001360039B04980599002B0ED10DB0F0BD22 +:108F9000019A002A04D006000F0000217042B94156 +:108FA000039A002AF2D0002B01D06B1E0293039B80 +:108FB000029A1A60EAE73024002F00D083E70827DE +:108FC00081E7302C00D175E70A277CE7FFFFFF7FA0 +:108FD00037B51300064A05001068046A002C00D15A +:108FE000044C0A0000942900FFF746FF03B030BD8F +:108FF00084A10208E8A10208F8B505000E001400DB +:10900000002804D08369002B01D101F02BF8224BFA +:109010009C422DD16C68A369A360A3891B0731D53D +:109020002369002B2ED023682269F7B2981A63694E +:10903000F6B2834205DC2100280000F0A5FF0028DD +:1090400026D1A3680130013BA36023685A1C22602B +:109050001F706369834204D0A389DB071AD50A2EE7 +:1090600018D12100280000F08FFF002812D00FE057 +:109070000A4B9C4201D1AC68CDE7094B9C42CAD156 +:10908000EC68C8E72100280000F018F80028CAD0D2 +:10909000012676423000F8BDF4DF0D1014E00D100B +:1090A000D4DF0D100B1E04D0FF2A04D98A230360DD +:1090B0008B3B180070470A700123FAE7364B70B5F6 +:1090C0001D6806000C00002D05D0AB69002B02D1F5 +:1090D000280000F0C7FF314B9C420FD16C680C2375 +:1090E000E25E93B219072DD4D90611D409230120C9 +:1090F000336037331343A381404270BD284B9C42F9 +:1091000001D1AC68EBE7274B9C42E8D1EC68E6E77D +:109110005B0713D5616B002908D0230044339942C3 +:1091200002D03000FFF706F8002363632422A389EE +:109130009343A38100236360236923600823A289EA +:109140001343A3812369002B0BD1A0218022A38983 +:10915000890092000B40934203D02100300001F0BF +:1091600049F80123A289134011D00023A360636949 +:109170005B42A361002023698342BED10C23E25EDF +:109180001306BAD540231343A3810138B5E79207EC +:1091900000D46369A360EDE784A10208F4DF0D1039 +:1091A00014E00D10D4DF0D10F0B503690C6989B01F +:1091B000070005910026A34265DB0B00013C143338 +:1091C000A50003935B1904930300143302935D1904 +:1091D000049B28681B68591C0193FEF74BFC019007 +:1091E000B04229D0039B02989C460696624608CA64 +:1091F0009446019A99B251431B0C534389190A0CA6 +:109200009B1807931E0C036889B29AB2069BD2186A +:109210000368521A190C6B469B8BCB1A11145B18FE +:10922000191492B21B041A43049B069104C06345AF +:10923000DCD22B68002B2DD00599380001F040FAC4 +:1092400000281FDB0025019B02980133039901933D +:10925000026808C992B255199AB2AA1A05681B0C7D +:109260002D0CEB1A15145B191D1492B21B04134339 +:1092700008C0049B8B42EBD2029AA300D3181A6851 +:10928000002A11D0019E300009B0F0BD2B68002BE0 +:1092900004D1013C029B043DAB42F7D33C61CBE7D8 +:1092A0001A68002A04D1013C029A043B9A42F7D37F +:1092B0003C61E7E7F0B516001F00446A9BB00290DE +:1092C000239D06960797002C08D11020FEF7ECFE90 +:1092D000029B5862446084600460C460029B5B6AC5 +:1092E000196800290BD05A68012393404A608B60AB +:1092F000029801F008F80022029B5B6A1A60002FB6 +:1093000020DA01232B607B005B080793079CB24B9C +:10931000220017931A409A4217D1B04B229A136039 +:10932000069B002B03D1240301D100F087FDAC4B39 +:10933000249A0893002A02D0AA4B249A1360089812 +:109340001BB0F0BD00232B60E0E7069E079F0022C4 +:1093500000233000390001F061FB051E0BD0012312 +:10936000229A1360A04B249A0893002AE7D09F4AC0 +:1093700024990A60E3E718AB019319AB009332001C +:109380003B00029801F01AFA630003905B0D74D061 +:109390003A03974C120B14432100964A300016955D +:1093A0009E180022944B02F0FFFC944A944B02F06A +:1093B00089FA944A944B01F05FFB040030000D00E1 +:1093C00003F08CF8914A924B02F07CFA02000B00F9 +:1093D0002000290001F050FB04000D0003F048F8C4 +:1093E0000022070000232000290001F01DFB0028B7 +:1093F00009D0380003F072F82B00220001F00EFBB8 +:10940000434258413F1A01231493162F0DD8814926 +:10941000FB00C91808684968069A079B01F018FB09 +:10942000002846D00023013F1493189B9E1B002365 +:109430000A933300013B0B9304D501239B1B0A9332 +:1094400000230B93002F36DB0B9B1197DB190B933B +:1094500000230493209B0124092B00D984E0052BD1 +:1094600002DD0024043B2093209B981E032800D992 +:1094700084E0FEF7F5FA7577286A189B199A9E180A +:10948000654BF218202A0FDD40239B1A9C40634B4A +:109490000698F318D840204303F05AF80123604C93 +:1094A000013E091916937CE7202306989B1A9840E1 +:1094B000F2E71490B9E70A9BDB1B0A937B42049303 +:1094C00000231193C6E701230D93219B002B59DD47 +:1094D0000C930993029A556A00226A6004321000C4 +:1094E00014306968984252D9029800F0D4FE029B69 +:1094F00028605B6A1B680893099B0E2B00D90AE160 +:10950000002C00D107E1069B079C12931394002FB7 +:1095100000DC89E00F213A003E4B0A40D2009B1844 +:109520001D685E6802233C110E93E3060BD53D4B8C +:109530000C401A6A5B6A1298139901F0B9FD032373 +:10954000069007910E9300233AE001230D93219B8F +:10955000FB180C9301330993002BBBDC0123B9E703 +:109560000023B1E70023F1E700230D942093013B92 +:1095700000220C93099313332192ABE701230D933F +:10958000023BF5E701230C9309931A00F4E701313C +:1095900069605200A3E701231C420ED00E9B214AB2 +:1095A00001330E93109B2800DB009B1831001A68D2 +:1095B0005B6802F087F905000E00109B6410013310 +:1095C0001093002CE7D1069807992A00330001F088 +:1095D0006FFD0690079142E00000F07F0F2700002A +:1095E000CDDF0D10D0DF0D109FDE0D10A0DE0D10B1 +:1095F0000000F03F01FCFFFF0000F83F61436F6394 +:10960000A787D23FB3C8608B288AC63FFB799F509B +:109610001344D33F60E00D10320400001204000038 +:10962000000010FE38E00D1002230E93002F16D01C +:10963000129813997C420D332340CE4ADB00D31895 +:109640001A685B6802F03EF9002301261D000690AF +:1096500007912411002C00D08CE0002BB9D1149B71 +:10966000002B00D196E0069C079D0022C24B2000F3 +:10967000290001F0D9F9002800D18BE0099B002BCB +:1096800000D187E00C9B002B41DDBC4B0022200069 +:10969000290002F017F90E9B0690079101330E93F3 +:1096A0000C9B7E1E0E98109302F018FF069A079BE3 +:1096B00002F008F90022B24B01F0DEF9B14A0E9037 +:1096C0000F910E9C0F9D94460F9B634415931D00B4 +:1096D000109B002B61D1069807990022AA4B02F03B +:1096E00063FB2200159B0690079101F0B1F9002859 +:1096F00000D0A8E2A5480F99844661440B00069863 +:109700000799220001F090F9002800D095E2129B01 +:10971000139C06930794199B002B00DA5CE10E2F33 +:1097200000DD59E1934BFA009B185C681B680493B9 +:109730000594219B002B00DBD8E0099B002B00DD6A +:10974000D4E000D07DE20498059900228E4B02F00F +:10975000B9F8069A079B01F085F9099B04931E004E +:10976000002800D04FE2089B089A5D1C3123013786 +:1097700013704BE234420AD00E9B854A01330E939C +:10978000EB009B181A685B6802F09CF833006410C9 +:1097900001355FE73E00099B84E7109B0D995A1E37 +:1097A000744BD2009B181A685B68002949D00020CE +:1097B000784901F07DFC2B00220002F0F5FA089BAD +:1097C0000E900F9115930698079902F051FE040030 +:1097D00002F084FE02000B000698079902F0E4FAFA +:1097E000159B30345D1C1C700E9A0F9B06900791E0 +:1097F00001F01AF900286CD1069A079B00205E49F7 +:1098000002F0D2FA0E9A0F9B01F00EF9002800D058 +:10981000C3E0089B109AEB1A9A4200DC77E70E9897 +:109820000F990022554B02F04DF800220E900F9137 +:1098300006980799514B02F045F815950690079147 +:10984000C1E72000290002F03DF8089C109A23008F +:1098500094460E900F91634415930698079902F071 +:1098600007FE050002F03AFE0B0002000698079979 +:1098700002F09AFA3035159B257001340690079155 +:10988000A3422AD10E980F99089A109B94466344DC +:1098900000221D003F4B01F0EFF802000B0006987C +:1098A000079901F0D5F8002800D076E00E9A0F9BBA +:1098B0000020384902F078FA02000B000698079958 +:1098C00001F0B2F8002800D121E76B1E1A78302A87 +:1098D00001D037003FE01D00F7E706980799002206 +:1098E000264B01F0EFFF06900791B6E7089E049A19 +:1098F000059B0698079901F0DBFB02F0B9FD040017 +:1099000002F0ECFD049A059B01F0DCFF02000B0065 +:109910000698079902F048FA230030333370099A09 +:10992000089B751CEB1A9A4248D102000B0001F00B +:10993000A3F8049A059B0690079101F089F8002886 +:109940002AD1049A059B0698079901F067F8002828 +:1099500001D0E30720D40399029800F0D4FC00233F +:109960002B70229B01371F60249B002B00D1E6E463 +:109970001D60E4E460E00D100000F03F00002440B2 +:1099800000001C400000C0FC000014400000C07C2F +:1099900038E00D100000E03F3E006B1E1A78392AB7 +:1099A00006D1089A9A4207D130231370130001366A +:1099B0001A7801321A708CE71D00EEE70022A44BE2 +:1099C00001F080FF00220023069007912E0001F095 +:1099D00025F800288BD0BEE70D9A002A00D1DAE0E6 +:1099E000209A012A00DDBDE0169A002A00D1B5E0D8 +:1099F000984A9B18049D0A9C0A9A0121D2180A923F +:109A00000B9A0298D3180B9300F01DFD0600002C52 +:109A10000EDD0B9B002B0BDD0B9A2300944200DD27 +:109A200013000A9AE41AD21A0A920B9AD31A0B93C9 +:109A3000049B002B1FD00D9B002B00D1AFE0002D0D +:109A400011D031002A00029800F096FD039A01001F +:109A50000600029800F000FD03991090029800F0B3 +:109A600052FC109B0393049B5A1B04D00399029849 +:109A700000F082FD03900121029800F0E4FC119BAC +:109A80000490002B00D1E3E11A000100029800F0DD +:109A900073FD209B0490012B00DD82E00025069BD6 +:109AA000AB420ED1079B1B03AB420AD1179B079A0F +:109AB000134206D00A9B013501330A930B9B0133F5 +:109AC0000B93119B0120002B6CD10B9B18181F23AB +:109AD00018407ED001331B1A042B70DD1C23181A8A +:109AE0000A9B24181B180A930B9B1B180B930A9BA9 +:109AF000002B05DD1A000399029800F08FFD0390FA +:109B00000B9B002B05DD1A000499029800F086FDDE +:109B10000490149B002B5ED00499039800F0D0FDB4 +:109B2000002858DA00230A220399029800F004FC66 +:109B30000D9B013F0390002B00D190E100233100E9 +:109B40000A22029800F0F8FB0C9B0600002B00DDB7 +:109B500088E0209B022B00DC84E044E03623189A46 +:109B60009B1A47E7099B5D1E049BAB4208DB5D1B0C +:109B7000099B002B0CDA0A9B099A9C1A00233BE7ED +:109B8000049B0495EA1A119B00259B181193EFE79B +:109B90000A9C099B30E7049D0A9C0D9E37E7049AB6 +:109BA00064E70025049B049A1B69109303339B0010 +:109BB000D318586800F0FEFB2023181A85E7042B01 +:109BC00095D00A9A1C33D2180A920B9AE418D3182B +:109BD0008CE70300F5E7099B002B3DDC209B022B63 +:109BE0003ADD099B0C930C9B002B0CD104990522A8 +:109BF000029800F0A1FB04900100039800F060FDC2 +:109C0000002800DDAFE5219B089DDF430023099379 +:109C10000499029800F077FB002E00D19BE6099B87 +:109C2000002B05D0B34203D01900029800F06BFB63 +:109C30003100029800F067FB8DE6109B04931E0034 +:109C4000E1E70023FAE7109B370004931E008AE542 +:109C500000002440330400000D9B002B00D1B2E033 +:109C6000099B0C93002C05DD31002200029800F0C6 +:109C7000D5FC06003000002D11D07168029800F06C +:109C80000AFB3100040033690C319A1C92000C303D +:109C9000FEF73FFA01222100029800F0BFFC09966E +:109CA0000600089B0A9304990398FFF77DFA099927 +:109CB0000D900400039800F003FD32001090049909 +:109CC000029800F017FD01230B93C36830340500A0 +:109CD000002B04D10100039800F0F2FC0B90290046 +:109CE000029800F010FB0B9B209A13430ED1069AAA +:109CF000013313420AD1392C26D0109B002B01DDF1 +:109D00000D9C31340A9B5D1C1C7081E7109B002B5D +:109D100007DB1D00209B1D4322D10123069A13421D +:109D20001ED10B9B002BEDDD03990122029800F060 +:109D300075FC0499039000F0C3FC002802DCE1D11B +:109D4000E307DFD5392CDBD10A9B0A9A5D1C392346 +:109D500013706B1E1A78392A67D001321A7057E7D0 +:109D60000A9B5D1C0B9B002B04DD392CECD00134CD +:109D70000A9BC9E70A9B0C9A1C70089BEB1A93423A +:109D80003ED000230A220399029800F0D5FA099BDD +:109D90000390B34209D100230A220999029800F0E6 +:109DA000CBFA099006000A957DE7099900230A225B +:109DB000029800F0C1FA002309900A2231000298AB +:109DC00000F0BAFAEEE7099B0C93089B06930499FE +:109DD0000398FFF7E9F9069B30305D1C18700C9A68 +:109DE000089B0400EB1A9A4208DD00230A2203991B +:109DF000029800F0A1FA06950390E8E70023099382 +:109E000003990122029800F009FC0499039000F0E4 +:109E100057FC00289DDC01D1E3079AD46B1E1A7809 +:109E2000302A00D0F4E61D00F8E7089A9A4203D1E0 +:109E3000312301371370EBE61D008AE70B4B249AA0 +:109E400008930B4B002A01D0FFF777FAFFF777FA58 +:109E5000209B012B00DC21E6119D012035E60C9BA7 +:109E6000002BB2DC209B022BAFDDBCE6C4DF0D1063 +:109E7000CCDF0D10F7B58A8905000C00130760D4FC +:109E80004B68002B04DC0B6C002B01DC0020FEBDBA +:109E9000E76A002FFAD000232E682B6080235B0135 +:109EA000216A1A4034D0606DA3895B0706D56368C8 +:109EB000C01A636B002B01D0236CC01A0200216A08 +:109EC00000232800E76AB847A189431C06D12B6804 +:109ED0001D2B30D82B4ADA40D3072CD500236360E2 +:109EE00023692360CB0405D5431C02D12B68002BCA +:109EF00000D16065616B2E600029C7D02300443318 +:109F0000994202D02800FEF715F900206063BEE7F1 +:109F100001232800B847431CC6D12B68002BC3D0AF +:109F20001D2B01D0162B01D12E60AFE74023A28953 +:109F30001343A381ABE740230B430120A38140429D +:109F4000A5E70F69002FA1D00B680F60DB1B019301 +:109F50000023920700D14B69A360019B002B00DC1A +:109F600094E7019B3A00216A2800A66AB0470028BE +:109F700003DC4023A2891343DFE7019B3F181B1A30 +:109F80000193EAE7010040200B6970B505000C0061 +:109F9000002B01D1002070BD002804D08369002B64 +:109FA00001D100F05FF80B4B9C4209D16C680C2288 +:109FB000A35E002BEED021002800FFF75BFFEAE74D +:109FC000054B9C4201D1AC68F1E7044B9C42EED1B9 +:109FD000EC68ECE7F4DF0D1014E00D10D4DF0D1089 +:109FE000002310B5040003604360836081814366F1 +:109FF000C281036143618361190008225C30FEF76E +:10A0000091F8054B24626362044BA362044BE36244 +:10A01000044B236310BDC04681A80D10A9A80D10E4 +:10A02000E1A80D100DA90D1010B5024900F08CF833 +:10A0300010BDC046899F0D1070B568254A1E554356 +:10A040000E0029007431FEF7BFF8041E08D000216D +:10A050002A00016046600C30A0606832FEF762F8AA +:10A06000200070BD836913B50400002B28D18364E0 +:10A07000C3640365134B144A1B68826201939842C0 +:10A0800001D101238361200000F020F860602000EE +:10A0900000F01CF8A060200000F018F80022E0603A +:10A0A00004216068FFF79CFF01220921A068FFF7E7 +:10A0B00097FF02221221E068FFF792FF0123A361BC +:10A0C00013BDC04670DE0D1029A00D10F8B51C4B55 +:10A0D00007001E68B369002B02D13000FFF7C2FFF2 +:10A0E0004836B4687368013B04D53368002B07D049 +:10A0F0003668F6E70C22A55E002D0DD06834F2E735 +:10A1000004213800FFF798FF30600028F0D10C23BD +:10A1100004003B602000F8BD20000A4B6566256006 +:10A120006560A560E36025616561A561082229007D +:10A130005C30FDF7F7FF6563A563A564E564E9E7B7 +:10A1400070DE0D100100FFFFF7B5040007000026C8 +:10A1500001914834002C01D13000FEBD6368A56830 +:10A160000093009B013B009301D52468F2E7AB8983 +:10A17000012B08D90E22AB5E013304D02900380030 +:10A18000019B984706436835EBE70000034B1B68CB +:10A19000186A002800D10248F030704784A10208F4 +:10A1A000E8A1020870B50E001D000E23C95E96B02E +:10A1B0001400002907DA00232B60B3891B0611D491 +:10A1C0008023DB000FE06A4600F0CCFB0028F2DBC6 +:10A1D000F022019B12021340054A9B185A42534138 +:10A1E0002B60EDE740230020236016B070BDC04611 +:10A1F00000E0FFFFF7B502268B8905000C00334213 +:10A2000006D0230047332360236101236361F7BD38 +:10A2100001AB6A46FFF7C6FF009907002800FDF76B +:10A22000D3FF002808D10C22A35E9A05EFD40322A5 +:10A2300093431E43A681E4E70F4BAB628023A289C0 +:10A2400020601343A381009B20616361019B002B6D +:10A250000DD00E23E15E280000F096FB002806D00A +:10A260000322A38993431A0001231343A381A089E6 +:10A270003843A081CBE7C04629A00D10C9B282188F +:10A28000904201D10020704703788B42FBD001300F +:10A29000F6E77047704770B5466A04000D00002E5F +:10A2A00007D11020FDF700FF6062466086600660FF +:10A2B000C660666AF368002B13D0636AAA00DB6885 +:10A2C0009B181868002818D101210E00AE40721D9D +:10A2D0009200200000F0C6FA00280CD0456086608D +:10A2E0000DE021220421200000F0BCFA636AF06036 +:10A2F000DB68002BE1D1002070BD02681A600023EA +:10A300000361C360F8E770B5446A06000D00002CD5 +:10A3100007D11020FDF7C8FE7062446084600460BD +:10A32000C460002D07D0736A6A68DB6892009B18CE +:10A330001A682A601D6070BDF7B51E0014239C4684 +:10A3400007000C0000200D698C4463461B68013037 +:10A3500099B263461B6851431B0C534389190E0C79 +:10A360009B1989B21E0C1B045B18614608C18C4600 +:10A370008542EADC002E1BD0A368AB4212DC636886 +:10A380003800591CFFF787FF2100236901909A1CB0 +:10A3900092000C310C30FDF7BCFE21003800FFF7B5 +:10A3A000B2FF019C2B1D9B00E31801355E60256107 +:10A3B0002000FEBD0300020C0020824201D11B04DC +:10A3C00010301A0E01D108301B021A0F01D10430CF +:10A3D0001B019A0F01D102309B00002B03DB0130DF +:10A3E0005B0000D4202070470722036810B50100ED +:10A3F0001A400DD001240020234205D1023003422F +:10A4000003D0E34020000B6010BD9B080B60FBE70E +:10A410009CB21000002C01D110201B0CDAB2002AD3 +:10A4200001D108301B0A1A0701D104301B099A0711 +:10A4300001D102309B08DA07E8D45B0801D0013073 +:10A44000E4E72020E0E710B50C000121FFF723FF2F +:10A4500001234461036110BDF0B50B69140012695A +:10A4600089B00D00934201DA25000C002F6926699E +:10A470006968BB190293AB68BA19934200DA0131DB +:10A48000FFF709FF0200BB1914329B00D3189C464A +:10A4900000211300049063451DD31435BF00EB1950 +:10A4A0001434B6000593A319039501940793079BF1 +:10A4B0000199994211D3029B002B06DD04235B42D4 +:10A4C0009C4463461B68002B51D0049B029A1800E1 +:10A4D0001A6109B0F0BD02C3DDE7019B1B6898B2A9 +:10A4E00000281CD015000026039F02CF2C688BB2D9 +:10A4F0004343090C4143A4B21B199B190E00296860 +:10A500000695090C71181E0C89190E0C9BB20904D2 +:10A510000B4308C5059BBB42E7D8069B5E60019BC9 +:10A520001B681D0C1ED0100000271368039E3168A5 +:10A53000046889B26943240C0919C9190F049BB234 +:10A540003B43036080CE43683F0C6F439BB2FB18D4 +:10A55000090C5B18059906901F0C0430B142E6D82F +:10A5600006994B60019B0432043301939FE7029BE1 +:10A57000013B02939FE700000323F7B5134005005A +:10A580000E001400002B08D02249013B9A005258BB +:10A5900000233100FFF7D0FE0600A310019336D050 +:10A5A0006C6A002C07D11020FDF77EFD68624460C4 +:10A5B00084600460C4606F6ABC68002C07D11649CF +:10A5C0002800FFF740FF00230400B8600360012269 +:10A5D000019B13420AD0310022002800FFF73CFF04 +:10A5E000070031002800FFF78EFE3E00019B5B1044 +:10A5F00001930CD02068002807D1220021002800F8 +:10A60000FFF72AFF0023206003600400DFE730002B +:10A61000FEBDC04628E10D1071020000F0B50D002E +:10A6200017002B69541185B0E3180193013300938F +:10A630004968AB680290009A934235DB0298FFF7B5 +:10A640002AFE00230200060019001432A3422EDB6A +:10A65000E343DB171C402B00A40014192A691433B0 +:10A6600092009A1894461F22174024D00132D21B20 +:10A670000392002219682000B9400A4304C404CBA5 +:10A680000399CA409C45F5D84260002A02D0019B3C +:10A6900002330093009B0298013B33612900FFF7CE +:10A6A00032FE300005B0F0BD01315B00C3E7980019 +:10A6B00011500133CAE704CB04C49C45FBD8E9E739 +:10A6C0000A69036930B59B1A0DD192001430143118 +:10A6D00084188918043C043925680A68954204D016 +:10A6E0000123954204D3180030BDA042F2D3FAE70B +:10A6F0005B42F8E7F0B50D0085B0070011002800B7 +:10A700001400FFF7DDFF061E08D101003800FFF737 +:10A71000C2FD01234661036105B0F0BD0123019331 +:10A72000002804DB23002C001D0000230193616836 +:10A730003800FFF7B0FD2F000022019B2669C3609F +:10A740001434B300E31802932B6914379B00FB18F1 +:10A75000039303009446143320CC04CF0192AAB291 +:10A7600094446A46614692882D0C8A1A0199090C14 +:10A77000691A151449190D1492B209040A431A6092 +:10A78000039AAC460433BA42E6D802991A008C42C6 +:10A7900005D3043A1368002B0ED00661BCE704CC45 +:10A7A00091B261440D14120C5219151489B212049D +:10A7B0000A43AC4604C3E8E7013EEAE7F7B51D00EB +:10A7C00001211400089FFFF766FD2B036D000600B2 +:10A7D0001B0B6D0D24D10193002C27D068460094EB +:10A7E000FFF702FE009C00281ED0019B20211A00CA +:10A7F000091A8A40C340224372610193019CB461EB +:10A80000631E9C4101343461002D18D0124BED18A9 +:10A8100035232D183D60181A099B18603000FEBDC5 +:10A82000802252031343D6E77461E7E701A8FFF7DC +:10A83000DBFD0124019B346173612030E4E7074BA9 +:10A84000C018074B3860E3189B00F3185869FFF7EE +:10A85000B1FD6401201ADFE7CDFBFFFFCEFBFFFF58 +:10A86000FFFFFF3F4A4370B511001400FDF7ACFC39 +:10A87000051E03D022000021FDF754FC280070BD06 +:10A8800070B50C000E25495F00F0A4F8002803DB2A +:10A89000636D1B18636570BDA389024A1340A381D1 +:10A8A000F9E7C046FFEFFFFFF8B51F008B890500F1 +:10A8B0000C001600DB0505D50E23C95E002202231D +:10A8C00000F074F8A389054A28001340A3813200E0 +:10A8D0000E23E15E3B0000F01FF8F8BDFFEFFFFF25 +:10A8E00070B50C000E25495F00F060F8A389421C8A +:10A8F00003D1054A1340A38170BD80225201134346 +:10A90000A3816065F8E7C046FFEFFFFF10B50E2397 +:10A91000C95E00F015F810BD70B505000800110003 +:10A920000022064C22601A00F7F7EAF9431C03D113 +:10A930002368002B00D02B6070BDC0463CB00208DD +:10A94000002370B5064C05000800236001F032FEBC +:10A95000431C03D12368002B00D02B6070BDC04680 +:10A960003CB00208002370B5064C05000800110039 +:10A97000236001F027FE431C03D12368002B00D085 +:10A980002B6070BD3CB00208002370B5064C05007A +:10A990000800236001F01EFE431C03D12368002B36 +:10A9A00000D02B6070BDC0463CB0020870B50500F9 +:10A9B000080011000022064C22601A0001F012FE6D +:10A9C000431C03D12368002B00D02B6070BDC04610 +:10A9D0003CB0020870B50500080011000022064CCA +:10A9E00022601A00F7F79EF9431C03D12368002B5D +:10A9F00000D02B6070BDC0463CB002088446101CDD +:10AA000062468C46191C634600E0C0461FB500F044 +:10AA1000F1FE002801D40021C8421FBD10B500F08E +:10AA200049FE4042013010BD10B500F0E3FE0028A1 +:10AA300001DB002010BD012010BDC04610B500F0A4 +:10AA4000D9FE002801DD002010BD012010BDC04648 +:10AA500010B500F06BFE002801DC002010BD0120C5 +:10AA600010BDC04610B500F061FE002801DA0020DC +:10AA700010BD012010BDC046F0B54F464646D64633 +:10AA80000C000903C0B5490A470F5E0039431F0394 +:10AA9000DB0F9C4665007B0A570F1F436D0DE40FCB +:10AAA000760DA146C000B846D200AB1B64457BD0F2 +:10AAB000002B5FDD002E00D0A4E03E00164300D145 +:10AAC00012E15E1E002E00D09EE1871A4346B84276 +:10AAD00080410125C91A4042091A0B0200D431E114 +:10AAE00049024E0A002E00D16EE13000FDF744FA13 +:10AAF0000300083B1F2B00DD61E120223900D21A40 +:10AB00009E40D1409F400E439D4200DD51E15D1BC0 +:10AB10006B1C1F2B00DD7CE12021C91A3D00300099 +:10AB20008F408840DD40791E8F4131000722284345 +:10AB3000D940002507433A40002A09D00F233B4063 +:10AB4000042B05D03B1DBB42BF417F42C9191F00EA +:10AB50000B0200D426E26A1CC64B55056D0D9A42C5 +:10AB600000D106E1C44AFF080A40530752023B43A2 +:10AB7000120B8EE0002B00D0B8E06B1C5B055B0D68 +:10AB8000012B00DC30E1871A4346B842B641CB1AAC +:10AB900076429E1B330200D54CE13B003343A1D1EA +:10ABA00000220024002570E0002B00DCE5E0002EF0 +:10ABB00000D183E0AF4EB54260D0802636043743E3 +:10ABC000B846382B00DC3EE1434613431F007A1E93 +:10ABD00097413F1887428041404209180B0200D438 +:10ABE000B0E0A44B01359D4200D1C3E0A24A7B08EE +:10ABF0000A4001210F401F435108D30707221F437A +:10AC00003A4099E79B4EB54238D080263604374308 +:10AC1000B846382B00DDDCE01F2B00DC30E11E00E5 +:10AC20004746203EF740BC46202B04D04026F31A6E +:10AC300046469E403243170063467A1E97411F43A3 +:10AC4000CCE0002B00D104E24346134300D159E18C +:10AC50004B07C00818438023C9081B03194208D0BA +:10AC60004546ED081D4204D14346D0085907084324 +:10AC70002900420FC9007F4D1143C0004B07CA088D +:10AC80007C49C00803438D4268D012036D05120B46 +:10AC90006D0D002112031800130B0A0D12051A4343 +:10ACA000764B2D0513402B435B00E4075B082343E1 +:10ACB00019001CBC90469946A246F0BD3E001643C2 +:10ACC00012D05E1E002E00D000E18718874280411E +:10ACD00041444042091801250B0233D5022585E77E +:10ACE00064463300414610001D00C7E7002D00D028 +:10ACF000DAE00C000443F3D05C1C00D19FE15D4C12 +:10AD0000A64200D12FE1DB43382B00DD66E11F2B8B +:10AD100000DD83E120240500E41A0F00DD40D94066 +:10AD2000A0404346A7405B1A441EA04198462F43CB +:10AD30003843171ABA42924143465242991A64461E +:10AD40003500CAE607223A40002A00D0F6E64B0753 +:10AD5000CA084849FF083B438D4296D11900114368 +:10AD600000D19EE1802109030A431203120B414DD9 +:10AD70008FE71500002200238BE7002B00D0C7E0EF +:10AD80006B1C5F057F0D012F00DCF1E0394DAB42FC +:10AD900000D1B9E085180A00854289414244494200 +:10ADA00051180722CF076D082F4349083A401D006C +:10ADB000C2E607223049ED1A31403A40BCE63E0077 +:10ADC0002838864000279FE63800FDF7D5F8203068 +:10ADD0008EE6434613431F007A1E9741C71BB842B5 +:10ADE00080414042091A78E60E003B0006431343B7 +:10ADF000002D61D1002E00D0F4E0002B00D11BE12A +:10AE000064463900100039E71A4FBB427AD033004C +:10AE1000FFE630001F3DE840202B03D04021CB1A35 +:10AE20009E4037437B1E9F41072207433A40002143 +:10AE3000002589E7171A4346BA42B641591A7642A5 +:10AE40008E1B64464EE61F2B00DDADE020264746F4 +:10AE5000F61AB740B9461700B246DF404E463E43A9 +:10AE600037005646B240561EB24117434246DA40BA +:10AE70008918AEE6FF070000FFFF7FFFFFFF0F808E +:10AE800020264746F61AB740B9461700B246DF40BB +:10AE90004E463E4337005646B240561EB241174317 +:10AEA0004246DA40891A99E77F4CA6425BD080245B +:10AEB00024045B42214327E7002E0CD1002B00D154 +:10AEC000CBE0644639001000774DD7E6764FBB42A1 +:10AED00018D0330075E6002B14D04B07C008184378 +:10AEE0008023C9081B03194207D0FC081C4204D167 +:10AEF0007907D0080843E14621004C46420FC900BB +:10AF00001143C000684DB9E61D0000220023C0E6D1 +:10AF1000002D5BD10D00054300D1E2E65D1C00D1A0 +:10AF2000B0E0614DAE421FD0DB43382B71DC1F2BEC +:10AF300000DD96E020250F00ED1AAF40B94607006E +:10AF4000AA46DF404D463D432F005546A840D94014 +:10AF5000451EA84188440743BF1897429241514279 +:10AF6000414435003AE6644635004146100085E626 +:10AF70000B000343002D00D063E6002BF5D04346C1 +:10AF8000134300D17AE68718874280410722414463 +:10AF9000404209183A400B0200D4D5E6434B013534 +:10AFA0001940C9E5380069E61E004746203EF740D3 +:10AFB000BC46202B04D04026F31A46469E4032431E +:10AFC000170063467A1E97411F4302E6364DAE4294 +:10AFD000CAD080252D045B422943A6E70843411EC1 +:10AFE0008841A6E6002B00D148E6871A4346B842BE +:10AFF000B641CB1A76429E1B33024BD5171A4346F5 +:10B00000BA429241591A5242891A072264463A407A +:10B0100092E501430F00791E8F419DE71C000F0050 +:10B02000203CE740202B03D04024E31A99400843FA +:10B03000411E884138437CE60022002425E6171A89 +:10B040004346BA429241591A5242891A644635001F +:10B0500043E541461000144D10E6802200241203FF +:10B0600080E61D000F00203DEF40BC46202B03D0A2 +:10B070004025EB1A9940084307006346781E874134 +:10B080001F4369E7871897429B4141445B42C918B7 +:10B090003500A3E53B003343CED0072231003A40D0 +:10B0A00052E600231A00F4E5FF070000FFFF7FFFD0 +:10B0B000F0B55746DE464E464546E0B583460700A6 +:10B0C0000E03480085B092461C00360B400DCD0F94 +:10B0D000002800D19DE0954B984239D08023F6009E +:10B0E0001B041E43924A7B0F334399469446030048 +:10B0F0006344009300230026FF00029323031B0BED +:10B1000098466300E40F52465B0D019400D1B3E012 +:10B1100086498B4200D19EE04246D1008022120433 +:10B120000A435146490F11438B46814952468C468A +:10B1300000996344CB1A0021D20000932B00634096 +:10B140009A460F2E00D905E17A4BB6009B599F46CF +:10B150005B463343994600D0B8E002230826002717 +:10B1600000900293CAE7CB463A0002990195019BF1 +:10B170009A46022927D0032900D180E2012944D030 +:10B180006D49009B8C4663441C00002C38DD53073E +:10B1900000D013E2D2085B46DB0109D55946674B64 +:10B1A00019408B468021C9008C46009B63441C00DB +:10B1B000634B9C4207DC5B4664055F075B021743F9 +:10B1C0001B0B620D02E000230027584A00211B03DD +:10B1D0001C0B0B0D1B05234314055A4A3800134062 +:10B1E0001C4353466400DB0764081C43210005B080 +:10B1F0003CBC90469946A246AB46F0BD0122524265 +:10B2000001231B1B382B00DCADE1002200230027AB +:10B21000DCE75B46334399465ED0002E00D18AE1DD +:10B220003000FCF7A9FE03000B3B1C2B00DD7BE18B +:10B230001D22D31A5A460100DA4008398E40130005 +:10B240005F46334399468F403F4B00261B1A0093BD +:10B250000023029352E7414653460B433B499B462A +:10B260008C46009B634400935B46002B3BD102233A +:10B2700000221E43022161E7434613439B4637D019 +:10B280004346002B00D162E14046FCF775FE030007 +:10B290000B3B1C2B00DD53E102004146083A914074 +:10B2A00088461D21CB1A5146D9400B0041460B431D +:10B2B0009B46534693401A00009B25499C46604498 +:10B2C00003008C4663440093002137E70323B14613 +:10B2D00000900C26029311E700230093013304260B +:10B2E000002702930AE70323C3461E43032125E7F1 +:10B2F00001331E430022012120E700239A468023C8 +:10B3000000271B03094A61E7802349461B031942B2 +:10B3100000D1E2E05946194200D0DEE00B431B03A6 +:10B3200017001B0BA246014A50E7C046FF0700006A +:10B3300001FCFFFF34E10D10FF030000FFFFFFFEE3 +:10B34000FE070000FFFF0F800DFCFFFF01F8FFFF6D +:10B35000F3030000D94500D9CBE000D1C6E03C00A2 +:10B3600048460027009B013B00935B46160E1B02DC +:10B370001E431302984633041B0C9946310C01916D +:10B38000FCF7FEFB4A4642430B04210C050019431F +:10B390008A4207D98919013D8E4203D88A4201D9D0 +:10B3A000851E8919881A0199FCF7EAFB09048C4665 +:10B3B0004A46210464464243090C030021438A4261 +:10B3C00004D98919013B8E4200D8F1E02D041D43B8 +:10B3D000AB464346891A4246280C12041D0C5B46B4 +:10B3E000140C22001B041B0C5A4303946B4344436C +:10B3F000029568431B19150CEB189C4203D9802455 +:10B400006402A44660441C0C15041B042D0C201877 +:10B410005D19814277D373D00C1AA24A7D1BAF42CB +:10B42000BF419446009B7F426344E01B1C00864260 +:10B4300000D1DBE00199FCF7A3FB4A4642430B0431 +:10B44000290C070019438A4207D98919013F8E4206 +:10B4500003D88A4201D9871E8919881A0199FCF7F5 +:10B460008FFB09044A46894629044D464243090C8C +:10B47000030029438A4207D98919013B8E4203D828 +:10B480008A4201D9831E89193F04891A3A00039F11 +:10B490001A43380013041B0C584381460298150CBC +:10B4A0006F43434345434846000C8446DB196344DD +:10B4B0009F4203D9802040028446654448461F0CC1 +:10B4C00000041B04000C7D191818A94200D284E066 +:10B4D00000D17FE001231A4357E680234A461B032D +:10B4E00013431B031B0BAA466F4A6FE6BA4200D9EF +:10B4F00035E74B46DC0758087B081C43FF0734E759 +:10B500000024AF4289D247444745A4415B46644288 +:10B51000A4196418013BA6421ED2A0426DD800D1E6 +:10B52000B6E0241A9B4678E703005A46283B9A4027 +:10B530000027914688E65846FCF71EFD203072E64B +:10B5400003005246283B9A4093460022B4E65046F8 +:10B55000FCF712FD20309AE6A642E2D1B845DCD9CC +:10B56000341A9B4659E71F2B65DC504C0099A446C2 +:10B570005C46614408008C4011008240D940501E56 +:10B5800082410C4314435A46DA401300620709D043 +:10B590000F222240042A05D02200141D9442894122 +:10B5A00049425B181A0262D50122002300270DE6EA +:10B5B0008A4200D80AE7831E891907E70F23134040 +:10B5C000042B00D1E6E5171D9742924153429B445C +:10B5D000FA08E0E5002800D1D7E57118531EB14202 +:10B5E00027D3A94215D358D01A0073E7002B00DCEB +:10B5F00004E6012300229B44CDE50223474447454E +:10B6000089415B429C46494289190C19E344241A3A +:10B6100003E743465F0047459B41B8465B429E199E +:10B62000023A8919A94200D054E7404500D051E7B9 +:10B63000ABE51A00F6E71F215F4649420C1BE740C5 +:10B64000202B07D01A49009B8C46634418005B46A8 +:10B6500083401A43501E82413A4307270023174074 +:10B6600009D00F21002311401400042995D1220094 +:10B670005F075B021B0BD20817430022A6E580235D +:10B6800059461B030B431B0317001B0B064A9DE582 +:10B69000BD42B2D89B460024BFE68045B9D31A000C +:10B6A000C3E7C046FF030000FF0700001E040000C0 +:10B6B0003E040000F0B54F464646D6468446C0B527 +:10B6C0008046194E18030F034D00000B5C008246A4 +:10B6D0003F0B6D0DC90F9146640DDB0F0120B54284 +:10B6E0000AD0B44203D0A54201D157450CD01CBCAE +:10B6F00090469946A246F0BD66463E43F7D1AC421D +:10B70000F5D154461443F2D10120C845EFD19942F6 +:10B7100007D0002DEBD163461F433800471EB841C8 +:10B72000E5E70020E3E7C046FF070000F0B54F461D +:10B730004646D6464D00C0B50E03C90F8A462C4971 +:10B740001F035C008046360B6D0D91463F0B640D68 +:10B75000DB0F8D421ED08C4216D0002D1ED13043FF +:10B760008446002C01D13A4323D06246002A1AD0E5 +:10B770009A4529D0514602200139084001381CBCA5 +:10B7800090469946A246F0BD39001143E5D002200B +:10B790004042F4E73043FAD1AC420FD0002C0FD135 +:10B7A0003A43E7D00CE00122013B934318000130FB +:10B7B000E5E763460020002BE1D0DBE73A43E6D122 +:10B7C0009A45D7D1A542D5DCA54205DBBE42D1D8EA +:10B7D00008D00020BE42D2D25046012301389843FF +:10B7E0000130CCE7C845C5D80020C845F4D3C6E72A +:10B7F000FF070000F0B54F464646D6464D00C0B59F +:10B800000E03C90F8A462E491F035C008046360B83 +:10B810006D0D91463F0B640DDB0F8D4218D08C42AD +:10B8200011D0002D18D130438446002C1ED13A434C +:10B830001CD163460020002B30D051460220013934 +:10B84000084001382AE039001143EAD0022025E0FF +:10B850003043FBD1AC4226D0002C26D13A4324D130 +:10B860005146022001390840013817E06246002A9B +:10B870000FD09A45E1D1A54205DBBE42DDD819D0F3 +:10B880000020BE420AD250460123013898430130BD +:10B8900004E00122013B9343180001301CBC904698 +:10B8A0009946A246F0BD3A43D0D19A45C5D1A542AA +:10B8B000C3DCE0E7C845C0D80020C845E3D3EDE7C6 +:10B8C000FF070000F0B55746DE464E464546E0B558 +:10B8D000834606000F03480087B092461D003F0BC9 +:10B8E000400DCC0F002800D16FE0DE4B984238D0DD +:10B8F0008023FF001B041F43730F3B430193DA4B6C +:10B900000027994600239B46F60081442B036900DB +:10B910001B0B52469846490DED0F002900D185E0DA +:10B92000D04B994200D173E04346DA0080231B04D8 +:10B9300013435246CC48520F8446134352460020CC +:10B940006144D20089442100694000918C46012164 +:10B9500049448A460F2F00D990E0C449BF00CF590F +:10B96000BF465B463B43019300D06AE102230827B0 +:10B97000002681469B46C9E732005846019B614636 +:10B980000091022800D175E0032800D1FEE10128D2 +:10B9900000D02CE100230027002600253F032A0DBC +:10B9A0003F0BB34812053A4302401B051343009A6C +:10B9B0005B00D1075B080B433000190007B03CBCAB +:10B9C00090469946A246AB46F0BD5B463B43019389 +:10B9D00000D12FE1002F00D1A5E13800FCF7CCFA0F +:10B9E00003000B3B1C2B00DD96E11D22D31A5A46A7 +:10B9F0000100DA405E4608398F4013008E403B4319 +:10BA000001939C4B00271B1A994600239B467DE718 +:10BA1000414653460B4393498C46E144002B00D0EA +:10BA20001AE102220220174300228CE7134300D1BF +:10BA30000DE14346002B00D181E14046FCF79CFA22 +:10BA400002000B3A1C2A00DD72E10100434608396E +:10BA50008B4098461D239A1A5346D3401A004346FA +:10BA6000134352468A404946081A8249894681440E +:10BA7000002068E77B4B002700268EE7140C120499 +:10BA8000120C1100370C3604350C794328008C4613 +:10BA90002E0060436044834656432100300C8046AC +:10BAA0005846794340440291844506D9884680210E +:10BAB00049028C46E044414602913604010C360CA2 +:10BAC00000048B4681191E0C1B041B0C03911900EA +:10BAD00079438C46280075436544A8465843050CB5 +:10BAE00045447743A94203D9802149028C466744E3 +:10BAF000290C8C4639000004000C2D042D186144DB +:10BB0000AB4405915946049101990F043F0C080C70 +:10BB1000390051434243904602008C46090C8B4643 +:10BB200062437C4344445C44A04503D980214902DC +:10BB300088464244210C884661460904090C8C461B +:10BB400039005943434370437E430F0CF6182404D5 +:10BB5000BE19644442448C46B34203D980235B023D +:10BB600098464044029B61469846049B37044344F0 +:10BB70009B46AB45AD416B420D0405992D0C8C469F +:10BB80007F196744FD18A8465D462D19A542A441BA +:10BB900093466442A446C344DC448F42BF41984567 +:10BBA0009B4193459241A445A4415B427F421F4380 +:10BBB000360C52426442BF192243BF1862463818FD +:10BBC0004302D20D039913436A020A43501E824175 +:10BBD0006146ED0D2A434E023243D90100D4B3E051 +:10BBE0000126500832400243DE0732435B08224CF4 +:10BBF0005444002C62DD510709D00F201040042866 +:10BC000005D0101D9042924152429B180200D9016A +:10BC100004D580241948E400034054441848844261 +:10BC200000DD27E75E075B02D2081F0B63051643A2 +:10BC30005B0DB2E6002399460133042700269B469C +:10BC400064E60323019781460C279B465EE60122AA +:10BC500001201743002276E6032303201F434346B7 +:10BC600071E6C046FF07000001FCFFFF74E10D1004 +:10BC7000FFFF0F800DFCFFFFFF030000FFFFFFFE33 +:10BC8000FE0700000023802700933F030026434B5C +:10BC900083E6019B3200A446584670E6AC466EE649 +:10BCA000802701993F0339422DD03B422BD11F43BE +:10BCB0003F033F0B00951600384B6EE601252D1B08 +:10BCC000382D00DD66E61F2D40DC35481C00504451 +:10BCD000160082408440EE40501E8241344314439B +:10BCE000EB40620709D00F222240042A05D022002F +:10BCF000141D9442804140421B181A023ED5012374 +:10BD00000027002649E68027019B3F031F433F038E +:10BD10003F0B0094214B40E603005A46283B9A40D3 +:10BD2000002601926DE65846FCF726F9203057E6CA +:10BD300003005246283B9A401300002293E65046E7 +:10BD4000FCF71AF920307BE6CA4650E71F201E0098 +:10BD50004042041BE640202D03D0124C5444A34023 +:10BD60001A43501E8241324307260027164009D04D +:10BD70000F200023104014000428B9D122005E07D0 +:10BD80005B021F0BD2081643002306E680273F0301 +:10BD90001F433F033F0B1600004BFEE5FF0700006B +:10BDA0001E0400003E040000F8B557464E464546C6 +:10BDB000DE460C000903E0B5490A460F5F00314337 +:10BDC0001E03DB0F760A9B46530F3343C84E6500B4 +:10BDD000C000E40FD2006D0DA24681467F0D9C4647 +:10BDE0009046B74200D1B9E05B46012673409B46BE +:10BDF000EE1BA34500D183E0002E63DD002F00D0B1 +:10BE0000B1E06346134300D123E1731E002B00D041 +:10BE1000BAE1861A6346B04280410125C91A404200 +:10BE2000091A0B0200D447E149024B0A98464346DF +:10BE3000002B00D189E14046FCF79EF80300083B47 +:10BE40001F2B00DD7CE120223000D21A4146D04079 +:10BE5000994002009E400A439D4200DD6AE15D1B5D +:10BE60006B1C1F2B00DD94E1202110003500C91A46 +:10BE70008E40DA408840DD40711E8E41110007225D +:10BE80002843002506433240002A09D00F233340BF +:10BE9000042B05D0331DB342B641764289191E00EA +:10BEA0000B0200D43DE26A1C914B55056D0D9A4280 +:10BEB00000D119E18F4AF6080A405707520237436A +:10BEC000120B9BE0002E00D0C5E06E1C7605760DAF +:10BED000012E00DC48E16746861ACB1BB042BF4109 +:10BEE0007F42B8461F004346FF1A3B00B8461B027C +:10BEF00000D55FE137439AD100220024002579E084 +:10BF0000002E00DCFAE0002F00D18DE0784B9D423E +:10BF100067D0802367461B041F43BC46382E00DCD5 +:10BF200052E1634613435A1E93411E1886428041D4 +:10BF3000404209180B0200D4BEE06D4B01359D4212 +:10BF400000D1D2E06B4A73080A4001210E401E4323 +:10BF50005108D30707221E43324095E71E001643BF +:10BF600000D045E740E7624B9D423AD080236746C8 +:10BF70001B041F43BC46382E00DDEBE01F2E00DC07 +:10BF80003AE133006746203BDF403B00202E05D0DE +:10BF90004027BF1B6646BE40324390464646721E4F +:10BFA00096413343DAE0002B00D114E26346134399 +:10BFB00000D168E180234E07C008C9081B0306436F +:10BFC000194208D06046C008184204D163460100F7 +:10BFD000D2085E071643F3009946C900720F444D1C +:10BFE00011434B46DE08424B4F073743CA089D4278 +:10BFF00000D16EE012036D05120B6D0D00211203CE +:10C00000130B0A0D12051A433B4B2D0513402B430E +:10C010005B00E4075B082343380019003CBC9046F2 +:10C020009946A246AB46F8BD6346134311D0731E32 +:10C03000002B00D007E186188642804161444042CF +:10C04000091801250B0237D502257BE73E00614622 +:10C0500091463500C5E75C46002D00D0E1E00B00BD +:10C060000343F3D0731C00D1ACE1214B9F4200D1BC +:10C070003AE1F343382B00DD6FE11F2B00DD8CE14B +:10C0800020250E00ED1AAE40B0460600AA46DE405E +:10C09000454635432E005546D940A8406346451EC7 +:10C0A000A8415B1A9C463043161AB242924163463D +:10C0B0005242991A3D00B4E607223240002A00D0CD +:10C0C000E4E60B4BF6084F073743CA089D4200D001 +:10C0D00090E73B00134300D1A6E180231B031A43E2 +:10C0E0001203120B024D89E715000022002785E795 +:10C0F000FF070000FFFF7FFFFFFF0F80002E00D033 +:10C10000C7E06B1C5E05760D012E00DCF0E0C84D2B +:10C11000AB4200D1B9E085180A00854289416244EA +:10C12000494251180722CE076D082E434908324074 +:10C130001D00A9E6BF49ED1A114007223240A3E6CF +:10C14000320028388240002686E63000FBF714FFD4 +:10C15000203073E6634613435A1E9341C61AB04219 +:10C1600080414042091A5CE60E00674606431743C9 +:10C17000002D5ED1002E00D0F3E0002F00D11EE193 +:10C180005C46614691462CE7A94FBE427BD01E001B +:10C19000F1E610001F3DE840202B03D04021CB1AD0 +:10C1A0009A401643731E9E410722064332400021E7 +:10C1B000002583E7161A6346B2428041591A40426D +:10C1C0000B1A98465C4632E61F2E00DDABE02027B6 +:10C1D000BB1B9A4663465746BB40994613004F46E1 +:10C1E000F3401F433B005746BA40571EBA41134322 +:10C1F0006246F240891898E62027BB1B9A466346A0 +:10C200005746BB40994613004F46F3401F433B003F +:10C210005746BA40571EBA4113436246F240891A44 +:10C220009CE7834B9F425FD080252D0473422943B6 +:10C2300020E7002E0CD1002F00D1D0E05C466146F3 +:10C2400091467B4DCDE67A4FBE421CD01E0065E67E +:10C25000002F18D0C0084E0706438020C9080003ED +:10C26000014208D06346DC08044204D12100DA46CA +:10C27000D2085E071643F300994601245346C900CD +:10C28000720F11431C406A4DABE61D0000220027CF +:10C29000B4E6002D59D10B00034300D1D6E6731C40 +:10C2A00000D1B2E0624B9F421ED0F343382B6FDCCB +:10C2B0001F2B00DD97E020250E00ED1AAE40B046A2 +:10C2C0000600AA46DE40454635432E005546A840A6 +:10C2D000D940451EA8418C440643B6189642924167 +:10C2E000514261443D0025E63D006146914678E6B5 +:10C2F0000B000343002D00D055E6002BF5D063461C +:10C30000134300D16DE68618864280416144404265 +:10C31000091800220B0200D4D0E6464B0135194023 +:10C32000B2E5B1465DE633006746203BDF403B00A7 +:10C33000202E05D04027BF1B6646BE4032439046A4 +:10C340004646721E96413343EFE5394B9F42CBD0B0 +:10C3500080252D0473422943A8E70843411E8841E4 +:10C36000A2E6002F00D13CE66346861ACF1AB042FF +:10C370009B415B42FB1A98461B024ED5161A634638 +:10C38000B2429241591A5242891A5C4600227BE518 +:10C3900001430E00711E8E419FE71D000E00203DDF +:10C3A000EE40B046202B04D04025EB1A99400843BC +:10C3B000814648464346411E8841184374E60022A0 +:10C3C000002417E6161A6346B2429241591A5242A5 +:10C3D000891A3D0025E561469146154D01E680220A +:10C3E0000024120379E61D000E00203DEE40B04609 +:10C3F000202B04D04025EB1A9940084381464E4635 +:10C400004346711E8E411E4367E7861896429B4144 +:10C4100061445B42C9183D008CE547463743CED0A6 +:10C4200007224146324049E600273A00E6E5C04689 +:10C43000FF070000FFFF7FFF70B50C4E0D031C03CC +:10C4400049005B002D0B490D240B5B0DB14208D058 +:10C45000064900208B4203D114432000441EA04112 +:10C4600070BD05430120002DFAD1F1E7FF07000060 +:10C4700030B5144D0A034B00120B5B0DC90F00249D +:10C48000AB4211DD104CA34210DC80246403224334 +:10C490000E4CE41A1F2C0CDD0D48C31ADA401300B1 +:10C4A0005C42002900D11C00200030BD094BCC1893 +:10C4B000FAE7094DE040AC4663449A401300034359 +:10C4C000EEE7C046FE0300001D0400003304000038 +:10C4D00013040000FFFFFF7FEDFBFFFF70B5002896 +:10C4E0002DD0C317C5185D40C40F2800FBF744FDCD +:10C4F000154B1B1A5B055B0D0A2815DD0B388540B3 +:10C5000000222D032D0B002110002D030A0D2D0BF1 +:10C5100012052A430D4D1B052A4013435B00E40717 +:10C520005B082343190070BD0200290015329140B9 +:10C530000A000B21081AC5402D032D0BE3E7002448 +:10C54000002300250022DEE71E040000FFFF0F800D +:10C5500010B5041E25D0FBF70FFD144B1B1A5B050D +:10C560005B0D0A2812DD0B38844000222403240BC3 +:10C570000021100024030A0D240B120522430C4C49 +:10C580001B05224013435B00590810BD0200210027 +:10C59000153291400A000B21081AC4402403240BD1 +:10C5A000E6E7002300240022E2E7C0461E04000064 +:10C5B000FFFF0F8058220120014B40421A60704754 +:10C5C0003CB0020858220120014B40421A607047DB +:10C5D0003CB002085822024B00201A607047C04647 +:10C5E0003CB0020858220120014B40421A607047BB +:10C5F0003CB00208044A1368002B00D1034B181802 +:10C60000106018007047C046DCAD02080000020848 +:10C61000F8B5C046F8BC08BC9E467047F8B5C046A1 +:10C62000F8BC08BC9E46704701B40248844601BC71 +:10C63000604700BFEFA3020801B40248844601BC72 +:10C64000604700BF01A7020801B40248844601BC4C +:10C65000604700BF1DA5020801B40248844601BC22 +:10C66000604700BF03A702080000000007000103A5 +:10C6700000000100030300003F00010300000F0061 +:10C68000C0102040030300004000010300000F0021 +:10C6900000112040030300003F00010300000F00D1 +:10C6A00040112040030300007F00010300000F0041 +:10C6B00080112040000300000F00010300000F0064 +:10C6C00040122040030300003F00010300000F0060 +:10C6D00080122040000300000F00010300000F0043 +:10C6E00000162040000300000F00010300000F00AF +:10C6F00040162040000300000F00010300000F005F +:10C7000080162040000300000F00010300000F000E +:10C7100000172040000300007F00010300000F000D +:10C7200040002040030300007F00010300000F00D1 +:10C73000C0002040030300007F00010300000F0041 +:10C7400000012040030300007F00010300000F00F0 +:10C7500080012040000001400900000300000F009C +:10C76000010300000F000000004101401300070713 +:10C7700000007F0080222440010301000000070721 +:10C78000000003000021244001030100010007070D +:10C7900000000300C020244001030100020007073D +:10C7A00000000F0080202440010301000500050562 +:10C7B00000017E0040202440010301000600030325 +:10C7C00000017E0000202440010301000CC000078E +:10C7D00000000F0000222440010301000D000101B0 +:10C7E0000001700040222440010301000E000303F9 +:10C7F00000000100C0212440010301000FC0070711 +:10C8000000000F00802124400103010010000303F9 +:10C810000000040040212440010301000CDF000758 +:10C8200000000F00402224400103010070726F7667 +:10C830005F726571007265736F7572636573004234 +:10C840004F4F5400555047524144450073697A6533 +:10C85000006C61756E6368006D6F6E6F746F6E69EA +:10C860006300656E637279707400656E63727970CF +:10C87000745F6B65795F6964006261636B757000FA +:10C88000626F6F745F617574680075706772616460 +:10C89000655F6175746800736D69665F69640072D5 +:10C8A0006570726F6772616D00737461727400728B +:10C8B0006570726F766973696F6E00626F6F745F17 +:10C8C0006C6F61646572006B6579735F616E645F44 +:10C8D000706F6C6963696573006D307000706572AC +:10C8E0006D697373696F6E00636F6E74726F6C0045 +:10C8F0006B6579006D340073797374656D007379BD +:10C900007363616C6C006D6D696F00726D610064C2 +:10C91000657374726F795F667573657300646573B0 +:10C9200074726F795F666C617368007072657365AD +:10C930006E74006669726D7761726500636572740A +:10C9400069666963617465006F70656E0064697320 +:10C9500061626C656400656E61626C656400616C47 +:10C960006C6F77656400646562756700776F756EDC +:10C9700064696E6700626F6F745F7570677261647F +:10C98000650074797065006172726179006974651F +:10C990006D73006E756D62657200696E74656765B2 +:10C9A0007200626F6F6C65616E00737472696E679E +:10C9B000006D6178696D756D006D696E696D756D7D +:10C9C000007065726970686572616C730062617392 +:10C9D000655F61646472657373006D656D6F726924 +:10C9E000657300776F726B666C6173680073666C59 +:10C9F000617368007372616D00736F667477617242 +:10CA000065006361706162696C69747900464C41CC +:10CA100053485F5043315F53504D00464C4153489B +:10CA20005F50433200464C4153485F504333004609 +:10CA30004C4153485F50433400464C4153485F4D8E +:10CA400041494E5F434F444500464C4153485F4D7A +:10CA500041494E5F584F00464C4153485F4D414954 +:10CA60004E5F4441544100464C4153485F5355503A +:10CA700045525649534F525900464C4153485F570F +:10CA80004F524B5F53454355524500464C41534826 +:10CA90005F574F524B005352414D5F5043305F50F0 +:10CAA000524956005352414D5F5043305F505542FA +:10CAB000005352414D5F53504D5F50524956005301 +:10CAC00052414D5F53504D5F505542005352414DBE +:10CAD0005F5043315F50524956005352414D5F50B1 +:10CAE00043325F50524956005352414D5F504333D9 +:10CAF0005F50524956005352414D5F5043345F508E +:10CB0000524956005352414D5F4D41494E005352D8 +:10CB1000414D5F44415000534D49465F434F4445AA +:10CB200000534D49465F584F00534D49465F4441BD +:10CB30005441000000002140000025400000014059 +:10CB4000000034400000244000003140000032402A +:10CB500000001F41000023400000114001010101BD +:10CB60000101010101101010800019005500F000B2 +:10CB70000501053B04101C01010000000FC000006E +:10CB80000004000001010101011D3A5778960008D8 +:10CB90002000101208000000001F00000010000F0D +:10CBA000002000023F06080E00080009000A000BE2 +:10CBB00024282C30340000001000000090000000F9 +:10CBC00088000000080000008000000004F0000061 +:10CBD00000F00000400200002005A000D00100018C +:10CBE0008001A0012000000010000000433A5C47D3 +:10CBF00069744C61622D52756E6E65725C62756906 +:10CC00006C64735C32643334316331325C305C7237 +:10CC100065706F5C6379626F6F746C6F616465726D +:10CC20005C70736F633670646C5C64726976657295 +:10CC3000735C696E636C7564652F63795F6970639B +:10CC40005F6472762E6800433A2F4769744C6162C4 +:10CC50002D52756E6E65722F6275696C64732F321A +:10CC6000643334316331322F302F7265706F2F632C +:10CC700079626F6F746C6F616465722F70736F632C +:10CC80003670646C2F647269766572732F736F757A +:10CC90007263652F63795F6770696F2E6300433A33 +:10CCA0005C4769744C61622D52756E6E65725C6290 +:10CCB00075696C64735C32643334316331325C3077 +:10CCC0005C7265706F5C6379626F6F746C6F6164C6 +:10CCD00065725C70736F633670646C5C64726976E5 +:10CCE0006572735C696E636C7564652F63795F67E9 +:10CCF00070696F2E6800433A2F4769744C61622D4A +:10CD000052756E6E65722F6275696C64732F326432 +:10CD10003334316331322F302F7265706F2F637966 +:10CD2000626F6F746C6F616465722F70736F6336BE +:10CD300070646C2F647269766572732F736F75728D +:10CD400063652F63795F6970635F6472762E630039 +:10CD5000433A2F4769744C61622D52756E6E65724D +:10CD60002F6275696C64732F3264333431633132EE +:10CD70002F302F7265706F2F6379626F6F746C6FD5 +:10CD8000616465722F70736F633670646C2F6472A8 +:10CD900069766572732F736F757263652F63795F40 +:10CDA0006970635F706970652E6300433A2F47694D +:10CDB000744C61622D52756E6E65722F6275696C6E +:10CDC00064732F32643334316331322F302F726504 +:10CDD000706F2F6379626F6F746C6F616465722F0F +:10CDE00070736F633670646C2F64726976657273EA +:10CDF0002F736F757263652F63795F70726F742E16 +:10CE00006300433A2F4769744C61622D52756E6E10 +:10CE100065722F6275696C64732F326433343163C9 +:10CE200031322F302F7265706F2F6379626F6F749C +:10CE30006C6F616465722F70736F633670646C2FF2 +:10CE4000647269766572732F736F757263652F6391 +:10CE5000795F7363625F756172742E6300433A2F6A +:10CE60004769744C61622D52756E6E65722F6275E2 +:10CE7000696C64732F32643334316331322F302F55 +:10CE80007265706F2F6379626F6F746C6F61646528 +:10CE9000722F70736F633670646C2F64726976657D +:10CEA00072732F736F757263652F63795F736D692A +:10CEB000662E6300010010008000E80310000001EE +:10CEC000A00F00FA433A2F4769744C61622D5275E6 +:10CED0006E6E65722F6275696C64732F32643334C1 +:10CEE000316331322F302F7265706F2F6379626F2B +:10CEF0006F746C6F616465722F70736F63367064EA +:10CF00006C2F647269766572732F736F75726365C7 +:10CF10002F63795F736D69665F6D656D736C6F7498 +:10CF20002E6300433A2F4769744C61622D52756E2F +:10CF30006E65722F6275696C64732F32643334319D +:10CF40006331322F302F7265706F2F6379626F6F8C +:10CF5000746C6F616465722F70736F633670646C8C +:10CF60002F647269766572732F736F757263652FA4 +:10CF700063795F737973636C6B2E6300433A2F4759 +:10CF800069744C61622D52756E6E65722F6275699F +:10CF90006C64732F32643334316331322F302F722B +:10CFA00065706F2F6379626F6F746C6F6164657207 +:10CFB0002F70736F633670646C2F6472697665725C +:10CFC000732F736F757263652F63795F73797369FC +:10CFD0006E742E6300433A2F4769744C61622D5280 +:10CFE000756E6E65722F6275696C64732F3264336F +:10CFF00034316331322F302F7265706F2F63796255 +:10D000006F6F746C6F616465722F70736F633670CD +:10D01000646C2F647269766572732F736F757263B7 +:10D02000652F63795F737973706D2E6300433A2FB8 +:10D030004769744C61622D52756E6E65722F627510 +:10D04000696C64732F32643334316331322F302F83 +:10D050007265706F2F6379626F6F746C6F61646556 +:10D06000722F70736F633670646C2F6465766963BA +:10D0700065732F70736F63362F737461727475707C +:10D080002F73797374656D5F70736F63365F636D53 +:10D0900030706C75732E6300010000000600000004 +:10D0A000120000000000000000000000000000006E +:10D0B0000000000000000000000000000000000070 +:10D0C0000000000000000000000000005B4552521C +:10D0D0005D20546865726520697320616E206572F9 +:10D0E000726F72206F63637572726564206475720B +:10D0F000696E6720626F6F746C6F61646572206621 +:10D100006C6F772E204D43552073746F707065647B +:10D110002E0A0D005B4552525D204572726F7220DF +:10D120002578207768696C6520656E61626C696E30 +:10D130006720434D342061636365737320706F72A1 +:10D14000740A0D005B494E465D2054455354204DF2 +:10D150004F44450A0D0000000300000001000000DC +:10D160000100000000000000050360000400000052 +:10D170000100000000000000010000000604600043 +:10D18000080000001CC0020879520D1050534F4394 +:10D19000365F464C415348005B494E465D20200AAD +:10D1A0000D005B494E465D202F2A2A2A2A2A2A2A68 +:10D1B0002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2ACF +:10D1C0002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2ABF +:10D1D0002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2FAA +:10D1E0000A0D005B494E465D202050536F433620A8 +:10D1F0004379426F6F746C6F616465722041707027 +:10D200006C69636174696F6E2025752E25752E25F6 +:10D21000752E2575200A0D005B494E465D2053741E +:10D22000617274696E6720626F6F746C6F616465A0 +:10D23000720A0D005B4552525D20506F6C69637934 +:10D2400020636F6E7461696E7320616E20696E6316 +:10D250006F727265637420736D69665F6964203DE7 +:10D260002025692C2069676E6F7265640A0D005B6A +:10D270004552525D204170706C79696E6720707202 +:10D280006F74656374696F6E2073657474696E671B +:10D2900073206661696C6564207769746820636FC8 +:10D2A00064652025690A0D005B4552525D20534D8F +:10D2B000494620626C6F636B206661696C6564200F +:10D2C000746F20737461727420776974682065725A +:10D2D000726F7220636F64652025690A0D005B49D7 +:10D2E0004E465D20534D4946204D656D6F72792F36 +:10D2F000584950204D6F64650A0D005B494E465DEC +:10D3000020736D69665F696420697320736574209A +:10D31000746F20302C20627574205550475241475D +:10D320004520736C6F74207374617274732066721D +:10D330006F6D20534D49462061726561203078251C +:10D3400030386C782E205570677261646520667580 +:10D350006E6374696F6E616C69747920646973615E +:10D36000626C65642E0A0D005B494E465D2050726A +:10D370006F63657373696E6720617661696C616262 +:10D380006C6520696D616765730A0D005B455252DB +:10D390005D20556E61626C6520746F2066696E64F5 +:10D3A00020626F6F7461626C6520696D6167650AE8 +:10D3B0000D005B494E465D204A756D70696E6720B1 +:10D3C000746F2074686520696D61676520696E20DF +:10D3D000736C6F7420300A0D005B4552525D204E15 +:10D3E000657665722073686F756C6420676574205C +:10D3F000686572650A0D005B4552525D20506F6C86 +:10D400006963792070617273696E67206661696C07 +:10D410006564207769746820636F64652025690AF4 +:10D420000D0000008CD10D10E5640D10000000000F +:10D4300024D40D10D8DB0D10000000000000000007 +:10D4400007000000010000000000000000000000D4 +:10D4500008000000080000000002000000000000BA :10D4600000000000000000000000000000000000BC -:10D4700000000000000000000000000000000000AC -:10D48000433A5C55736572735C646D69765C446F96 -:10D4900063756D656E74735C6379626F6F746C6FC6 -:10D4A000616465725C70736F633670646C5C647227 -:10D4B00069766572735C696E636C7564652F6379F8 -:10D4C0005F737973636C6B2E68000000F4010000D9 -:10D4D000140004010A0009050800030063010000AC -:10D4E000020000000300000000000000000000181F -:10D4F0000000800000000000C8D60D106000000091 -:10D5000000000000FFFFFFFF00000000000000001F -:10D51000000000002000000000000000FFFFFFFFEF -:10D5200000000000000000000000000002000000F9 -:10D5300000000000FFFFFFFF0000000000000000EF -:10D5400000000000EB0000000002000001000000ED -:10D55000020000000800000002000000350000008A -:10D5600000000000FFFFFFFF0000000000000000BF -:10D57000000000000500000000000000FFFFFFFFAA -:10D580000000000000000000000000000400000097 -:10D5900000000000FFFFFFFF00000000000000008F -:10D5A000000000000600000000000000FFFFFFFF79 -:10D5B000000000000000000000000000010000006A -:10D5C00000000000FFFFFFFF00000000000000005F -:10D5D0000000000001000000030000000000000047 -:10D5E00000000018000000010000000014D70D101A -:10D5F0006000000000000000FFFFFFFF00000000CF -:10D6000000000000000000002000000000000000FA -:10D61000FFFFFFFF0000000000000000000000000E -:10D620003800000000020000FFFFFFFF02000000C2 -:10D630000000000002000000EB00000000020000FB -:10D6400001000000020000000400000002000000D1 -:10D650003500000000000000FFFFFFFF0000000099 -:10D6600000000000000000000500000000000000B5 -:10D67000FFFFFFFF000000000000000000000000AE -:10D680000400000000000000FFFFFFFF000000009A -:10D690000000000000000000060000000000000084 -:10D6A000FFFFFFFF0000000000000000000000007E -:10D6B0000100000000000000FFFFFFFF000000006D -:10D6C00000000000000000000300000000008000D7 -:10D6D00044D50D10A4D50D108CD50D1014D50D10FA -:10D6E00000100000FCD40D102CD50D10000100001E -:10D6F00074D50D105CD50D10BCD50D1000000000C8 -:10D70000010000000200000041000000D8D6000027 -:10D71000C2010000030000000000000138D60D1017 -:10D7200098D60D1080D60D1008D60D1000100000F0 -:10D73000F0D50D1020D60D100001000068D60D1098 -:10D7400050D60D10B0D60D100000000001000000F2 -:10D75000020000008C000000409C0000FA00000065 -:10D76000010000005CA80208010000001400000095 -:10D7700007008E00010000005B4552525D204D65A0 -:10D780006D6F7279204D6F64756C652052656164B0 -:10D7900020537461747573206661696C65642077C9 -:10D7A000697468206572726F7220636F64652025EA -:10D7B000690A0D005B4552525D204D656D6F7279AF -:10D7C000204D6F64756C652051756164456E6162B2 -:10D7D0006C65206661696C65642077697468206592 -:10D7E00072726F7220636F64652025690A0D005B99 -:10D7F0004552525D20534D494620496E7465727200 -:10D8000075707420696E697469616C697A61746994 -:10D810006F6E206661696C65642077697468206545 -:10D8200072726F7220636F64652025690A0D005B58 -:10D83000494E465D20534D494620426C6F636B2034 -:10D84000456E61626C65640D0A0A0D005B494E46C7 -:10D850005D20534D4946204E6F726D616C204D6FB7 -:10D8600064650A0D005B4552525D20696E76616CFD -:10D870006964206172656120257020286964202513 -:10D8800075290A0D005B4552525D20617265612069 -:10D8900025752075736520636F756E7420756E64D1 -:10D8A0006572666C6F770A0D005B4552525D2069A8 -:10D8B0006E76616C696420666C61736820494420EF -:10D8C00025643B2065787065637465642025640A6F -:10D8D0000D000000000008000002000055630D105C -:10D8E00081640D1095640D1051630D1041630D108E -:10D8F0000400000077C295F360D2EF7F3552500FDD -:10D900002CB67980000100FF000200010001000335 -:10D910000103FF0001047065726D0074657374008B -:10D920004255473B2063616E2774206861707065C3 -:10D930006E00726576657274005B494E465D2053D9 -:10D9400077617020747970653A2025730A0D005B49 -:10D95000494E465D205377617020747970653A2096 -:10D960006E6F6E650A0D005B494E465D20496D6124 -:10D970006765207570677261646520736C6F7431C0 -:10D98000202D3E20736C6F74300A0D005B494E46AB -:10D990005D2045726173696E6720736C6F74300A25 -:10D9A0000D005B494E465D20436F7079696E6720BC -:10D9B000736C6F74203120746F20736C6F7420301F -:10D9C0003A203078256C782062797465730A0D00EE -:10D9D0005B57524E5D204661696C656420726561DB -:10D9E00064696E6720736563746F72733B20424F86 -:10D9F0004F545F4D41585F494D475F534543544F26 -:10DA000052533D2564202D20746F6F20736D616C1F -:10DA10006C3F0A0D005B57524E5D2043616E6E6F86 -:10DA20007420757067726164653A206D6F7265204D -:10DA3000736563746F7273207468616E20616C6CBF -:10DA40006F7765640A0D005B57524E5D2043616E2F -:10DA50006E6F7420757067726164653A206E756DC3 -:10DA6000626572206F6620736563746F72732064E1 -:10DA70006966666572206265747765656E20736C91 -:10DA80006F74730A0D005B57524E5D2043616E6EDA -:10DA90006F7420757067726164653A20616E2069E9 -:10DAA0006E636F6D70617469626C65207365637419 -:10DAB0006F722077617320666F756E640A0D005B6C -:10DAC000494E465D20456E637279707465640A0D37 -:10DAD000005B494E465D204E4F4E2D456E63727978 -:10DAE000707465640A0D005B4552525D2070616E72 -:10DAF0006963210A0D005B4552525D20496D6167E3 -:10DB00006520696E20736C6F742025642069732012 -:10DB10006E6F742076616C6964210A0D000000C08C -:10DB2000E0F0F8FC6E756C6C0066616C73650074F7 -:10DB3000727565004142434445464748494A4B4C4B -:10DB40004D4E4F505152535455565758595A616281 -:10DB5000636465666768696A6B6C6D6E6F7071721D -:10DB6000737475767778797A303132333435363765 -:10DB70003839000088A102084300504F534958002B -:10DB80002E00232D302B2000686C4C006566674505 -:10DB9000464700494E4600696E66004E414E006E93 -:10DBA000616E003000303132333435363738394128 -:10DBB0004243444546003031323334353637383904 -:10DBC0006162636465660000202020202020202000 -:10DBD000202828282828202020202020202020201D -:10DBE000202020202020202088101010101010103D -:10DBF0001010101010101010040404040404040485 -:10DC00000404101010101010104141414141410115 -:10DC100001010101010101010101010101010101F4 -:10DC20000101011010101010104242424242420203 -:10DC300002020202020202020202020202020202C4 -:10DC4000020202101010102000000000000000006E -:10DC500000000000000000000000000000000000C4 -:10DC600000000000000000000000000000000000B4 -:10DC700000000000000000000000000000000000A4 -:10DC80000000000000000000000000000000000094 -:10DC90000000000000000000000000000000000084 -:10DCA0000000000000000000000000000000000074 -:10DCB0000000000000000000000000000000000064 -:10DCC0000000000000000000496E66696E6974790A -:10DCD000004E614E00000000000000000000000047 -:10DCE0000000000000000000000000000000000034 -:10DCF0000000000000000000000000000000000024 -:10DD00000000000000000000000000000000000013 -:10DD10000000000000000000000000000000000003 -:10DD200000000000000000000000000000000000F3 -:10DD300000000000000000000080E03779C341438C -:10DD4000176E05B5B5B89346F5F93FE9034F384D61 -:10DD5000321D30F94877825A3CBF737FDD4F15750D -:10DD6000000000000000F03F000000000000244020 -:10DD700000000000000059400000000000408F40FB -:10DD8000000000000088C34000000000006AF84066 -:10DD90000000000080842E4100000000D01263418A -:10DDA0000000000084D797410000000065CDCD4100 -:10DDB000000000205FA00242000000E876483742E1 -:10DDC000000000A2941A6D42000040E59C30A2427F -:10DDD0000000901EC4BCD64200003426F56B0C43F4 -:10DDE0000080E03779C3414300A0D885573476439B -:10DDF00000C84E676DC1AB43003D9160E458E143FC -:10DE0000408CB5781DAF154450EFE2D6E41A4B4470 -:10DE100092D54D06CFF08044F64AE1C7022DB544B5 -:10DE2000B49DD9794378EA44050000001900000048 -:10DE30007D00000080B20D10F2B00D1036B10D1053 -:10DE40009AB00D1036B10D1026B20D1036B10D106E -:10DE50009AB00D10F2B00D10F2B00D1026B20D10E8 -:10DE60009AB00D1092B00D1092B00D1092B00D102E -:10DE700034B20D10A8B90D10AAB80D10AAB80D1023 -:10DE8000C8BB0D10A4B80D10A4B80D10B0BB0D1078 -:10DE9000C8BB0D10A4B80D10B0BB0D10A4B80D1068 -:10DEA000C8BB0D10BEBB0D10BEBB0D10BEBB0D1010 -:08DEB000CCBB0D1000000000C6 -:08DEB800689EFF7F01000000DD -:10DEC00000000D1000A00208C0000000E8DE0D10E8 -:08DED000C0A00208F0060000EA -:10DED800ECA702085408000000C002089C010000DA -:10DEE8003DC90D104BC90D1055C90D105FC90D1056 -:10DEF80069C90D1079C90D1087C90D1097C90D1082 -:10DF0800A9C90D10BBC90D10C6C90D10D4C90D1073 -:10DF1800E1C90D10EFC90D10FCC90D100ACA0D108A -:10DF280018CA0D1026CA0D1034CA0D103ECA0D109D -:10DF380047CA0D1051CA0D1059CA0D1000093D00ED -:10DF480000127A0000093D000000D00700093D00DA -:10DF5800A00F000004000000D4D50D10E0D40D106F -:10DF6800EFBE0DD0016F00000000000000000200AD -:10DF780000000000EFBE0DD0026F00000000050099 -:10DF88000000020000000000EFBE0DD0036F00008B -:10DF980000000F000010000000000000E97F0D10D5 -:10DFA800D57F0D1088A1020800000000F8DC0D10D4 -:10DFB80018DD0D10D8DC0D10000000000000000076 -:10DFC8000000000000000000000000000000000049 -:10DFD8000000000000000000000000000000000039 -:10DFE8000000000000000000000000000000000029 -:10DFF8000000000000000000000000000000000019 -:10E0080000000000000000004300000000000000C5 -:10E0180000000000000000000000000000000000F8 -:10E0280000000000000000004300000000000000A5 -:10E0380000000000000000000000000000000000D8 -:10E048000000000000000000430000000000000085 -:10E0580000000000000000000000000000000000B8 -:10E068000000000000000000430000000000000065 -:10E078000000000000000000000000000000000098 -:10E088000000000000000000430000000000000045 -:10E098000000000000000000000000000000000078 -:10E0A8000000000000000000430000000000000025 -:10E0B8000000000000000000000000000000000058 -:10E0C8000000000000000000430000000000000005 -:10E0D8000000000000000000000000000000000038 -:10E0E8000000000000000000D18F0D10FD7F0D1012 -:10E0F80000000000C7DB0D1080DB0D104BD80D10A1 -:10E108004BD80D104BD80D104BD80D104BD80D1007 -:10E118004BD80D104BD80D104BD80D104BD80D10F7 -:10E12800FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000F5 -:10E13800010041534349490000000000000000006D -:10E1480000000000000000000000000000000000C7 -:10E15800000041534349490000000000000000004E -:10E1680000000000000000000000000000000000A7 -:10E1780000000000E9000D10C1000D1080B230B59C -:10E18800C00020D0104B07221C682300B0331B8826 -:10E198005A43236AD31819680029FCDA3E210B4B2D -:10E1A800062519600A4B0B491960A3210A4BC900BF -:10E1B8005D500A4958505858206A1218002050607B -:10E1C8005A58002AFCDA30BDE0AD020804012640A6 -:10E1D800080126401E1F0000000026401C05000004 -:10E1E80010B54378FF2B11D100F0A2F904000320E9 -:10E1F80000F0C6F9C3685A68012311681943116011 -:10E2080011681942FCD1200000F0D2F910BDF7B511 -:10E2180000900020019100F0B3F93F4D06002B68F3 -:10E228001A005033B43214681B780419002B5AD0E2 -:10E2380000F0AEF9070003281BD000F079F9374A3F -:10E24800374B0500D358002B3EDA364A01213000FF -:10E2580000F0A6F9002837D10198FFF78FFF009B3F -:10E26800002B3ED02368002BFCDB00F069F904008A -:10E278002BE0062000F084F92B68B4331B68C01823 -:10E288000368002B02DA284C2000FEBD002000F0B5 -:10E298005FF9264B9842F6D00023254A19001268E8 -:10E2A800012000F05DF90025A842ECD1002000F023 -:10E2B8004FF91E4A1F4B904203D09D42E3D00135CF -:10E2C800F4E79D42B9D1DEE7174C032F05D10121B0 -:10E2D800002000F04DF90028F9D1280000F068F975 -:10E2E800D2E7154CF1E700F023F90E4A05000121A9 -:10E2F800300000F055F9002809D1009B002B08D008 -:10E308002368002BFCDB00F01BF90400E5E7064C52 -:10E31800E3E7094CE1E7C046E0AD0208000026400B -:10E328001C05000008A80208050052000101880029 -:10E3380018A80208F049020001005000F7B56E4D18 -:10E3480004002A68536800931300B0331988072320 -:10E358004B43126A9B181A68002AFCDA00F030F95D -:10E368002A681300B033198807234B43212800D0AB -:10E3780096E0116A5B180221D8680143D960D96810 -:10E38800C9072FD508208446944460461600D968EA -:10E39800C06F0191116888360818356807684919EF -:10E3A8000D683902FF273F040F40694689882D0A06 -:10E3B8002D0639432943D960902103684F4D09013F -:10E3C8002B400B430360136830681B18186805401E -:10E3D8002943196013686246D26F9A181268326826 -:10E3E8009B181B68444D2A681300B033198807230B -:10E3F8004B43126A9B1800225A600423404A116951 -:10E408000B431361012C50D030BF2A681300B0337E -:10E41800198807234B43126A9B181A68002AFCDAEA -:10E4280000F0CEF8212842D1296807220B000124E8 -:10E43800B0331B8800205A430B6AD318DD68254285 -:10E448001CD0080008300D68C06F2C4E28180568CD -:10E45800DB6835401B0C1B061B0C2B4303600B00B1 -:10E46800883318680B6818180B6A0568D318DB68B6 -:10E478002E401B0E1B023343036020000B6A02214F -:10E48800D218D3688B43D3601B4B1A681300B03380 -:10E49800198807234B43126A9B1800225A60FEBD55 -:10E4A800126A9B18174ADA609CE720BFADE7002084 -:10E4B800009BFC331B698342E6D1A320124B13490E -:10E4C800134A144FC0000E681D5814680F600627C1 -:10E4D8001F503E20106010483E371F501F58002F15 -:10E4E800FCDA00980D4FFC3007610E60A321C900CB -:10E4F8005D5001201460C7E7E0AD0208FF00FFFF90 -:10E5080000ED00E024A8020800002640080126408B -:10E51800040126401E1F00001C050000AAAAAAAA82 -:10E52800FEE7024A1368002BFCDB70470001264017 -:10E5380001B40248844601BC604700BF631D0D104A -:10E5480001B40248844601BC604700BF911E0D100B -:10E5580001B40248844601BC604700BF71280D1011 -:10E5680001B40248844601BC604700BF79250D10FC -:10E5780001B40248844601BC604700BFFD270D1066 -:10E5880001B40248844601BC604700BF5D1E0D10FF -:10E5980001B40248844601BC604700BF79510D10A0 -:10E5A80001B40248844601BC604700BF81230D10B6 -:10E5B80001B40248844601BC604700BF6B1D0D10C2 -:10E5C80001B40248844601BC604700BF2D480D10C5 +:10D4700000000000000000000B0000003F00000062 +:10D48000000000003F00000000000000010000005C +:10D490000E0000001100000000000000000000006D +:10D4A000000000000000000000000000000000007C +:10D4B000000000000000000000000000000000006C +:10D4C000010000000E00000011000000000000003C +:10D4D000000000000000000000000000000000004C +:10D4E000000000000000000000000000000000003C +:10D4F00000000000010000000E000000110000000C +:10D50000000000000000000000000000000000001B +:10D51000000000000000000000000000000000000B +:10D520000000000000000000010000000E000000EC +:10D5300011000000000000000000000000000000DA +:10D5400000000000000000000000000000000000DB +:10D5500000000000000000000000000001000000CA +:10D5600006000000110000000000000000000000A4 +:10D5700000000000000000000000000000000000AB +:10D58000000000000000000000000000000000009B +:10D590000100000006000000110000000000000073 +:10D5A000000000000000000000000000000000007B +:10D5B000000000000000000000000000000000006B +:10D5C000000000000100000000000000000000005A +:10D5D000000000000000000000000000000000004B +:10D5E000000000000000000000000000000000003B +:10D5F000000000000000000001000000000000002A +:10D60000000000000000000000000000000000001A +:10D61000000000000000000000000000000000000A +:10D6200000000000000000000000000001000000F9 +:10D63000060000001D0000000000000000000000C7 +:10D6400000000000000000000000000000000000DA +:10D6500000000000000000000000000000000000CA +:10D66000010000000A0000001D0000000000000092 +:10D6700000000000000000000000000000000000AA +:10D68000000000000000000000000000000000009A +:10D6900000000000010000000B0000001D00000061 +:10D6A000000000000000000000000000000000007A +:10D6B000000000000000000000000000000000006A +:10D6C0000000000000000000433A5C4769744C61B0 +:10D6D000622D52756E6E65725C6275696C64735C06 +:10D6E00032643334316331325C305C7265706F5C4C +:10D6F0006379626F6F746C6F616465725C70736F75 +:10D70000633670646C5C647269766572735C696EB2 +:10D71000636C7564652F63795F737973636C6B2ECB +:10D7200068000000F4010000140004010A0009056B +:10D730000800030063010000020000000300000075 +:10D740000000000000000018000080000000000041 +:10D7500020D90D106000000000000000FFFFFFFF57 +:10D760000000000000000000000000002000000099 +:10D7700000000000FFFFFFFF0000000000000000AD +:10D78000000000000200000000000000FFFFFFFF9B +:10D79000000000000000000000000000EB0000009E +:10D7A000000200000100000002000000080000006C +:10D7B000020000003500000000000000FFFFFFFF36 +:10D7C0000000000000000000000000000500000054 +:10D7D00000000000FFFFFFFF00000000000000004D +:10D7E000000000000400000000000000FFFFFFFF39 +:10D7F0000000000000000000000000000600000023 +:10D8000000000000FFFFFFFF00000000000000001C +:10D81000000000000100000000000000FFFFFFFF0B +:10D8200000000000000000000000000001000000F7 +:10D8300003000000000000000000001800000001CC +:10D84000000000006CD90D10600000000000000016 +:10D85000FFFFFFFF000000000000000000000000CC +:10D860002000000000000000FFFFFFFF000000009C +:10D87000000000000000000038000000000200006E +:10D88000FFFFFFFF02000000000000000200000098 +:10D89000EB00000000020000010000000200000098 +:10D8A000040000000200000035000000000000003D +:10D8B000FFFFFFFF0000000000000000000000006C +:10D8C0000500000000000000FFFFFFFF0000000057 +:10D8D0000000000000000000040000000000000044 +:10D8E000FFFFFFFF0000000000000000000000003C +:10D8F0000600000000000000FFFFFFFF0000000026 +:10D900000000000000000000010000000000000016 +:10D91000FFFFFFFF0000000000000000000000000B +:10D9200003000000000080009CD70D10FCD70D10F4 +:10D93000E4D70D106CD70D100010000054D70D1057 +:10D9400084D70D1000010000CCD70D10B4D70D10F6 +:10D9500014D80D10000000000100000002000000BB +:10D9600041000000D8D60000C20100000300000002 +:10D970000000000190D80D10F0D80D10D8D80D106F +:10D9800060D80D100010000048D80D1078D80D1088 +:10D9900000010000C0D80D10A8D80D1008D90D1036 +:10D9A0000000000001000000020000008C000000E8 +:10D9B000409C0000FA000000010000005CA8020882 +:10D9C000010000001400000007008E0001000000AC +:10D9D0005B4552525D204D656D6F7279204D6F64CD +:10D9E000756C652052656164205374617475732091 +:10D9F0006661696C65642077697468206572726F0E +:10DA00007220636F64652025690A0D005B455252E0 +:10DA10005D204D656D6F7279204D6F64756C65206A +:10DA200051756164456E61626C65206661696C6503 +:10DA3000642077697468206572726F7220636F6406 +:10DA4000652025690A0D005B4552525D20534D4902 +:10DA50004620496E7465727275707420696E6974BF +:10DA600069616C697A6174696F6E206661696C6561 +:10DA7000642077697468206572726F7220636F64C6 +:10DA8000652025690A0D005B494E465D20534D49CE +:10DA90004620426C6F636B20456E61626C65640D5D +:10DAA0000A0A0D005B494E465D20534D4946204E03 +:10DAB0006F726D616C204D6F64650A0D005B45529D +:10DAC000525D20696E76616C6964206172656120C7 +:10DAD000257020286964202575290A0D005B4552B0 +:10DAE000525D206172656120257520757365206324 +:10DAF0006F756E7420756E646572666C6F770A0D53 +:10DB0000005B4552525D20496E636F7272656374AB +:10DB100020657261736520696D6167652061646469 +:10DB2000726573732030782530386C782C206967E3 +:10DB30006E6F7265640A0D005B4552525D20496E3E +:10DB4000636F7272656374207265616420696D61D0 +:10DB5000676520616464726573732030782530389E +:10DB60006C782C2069676E6F7265640A0D005B45E6 +:10DB700052525D20496E636F7272656374207772D2 +:10DB800069746520696D616765206164647265739D +:10DB9000732030782530386C782C2069676E6F726E +:10DBA00065640A0D005B4552525D20696E76616CBA +:10DBB000696420666C6173682049442025643B20B9 +:10DBC00065787065637465642025640A0D00000043 +:10DBD000000008000002000021640D104D650D10CA +:10DBE00061650D101D640D100D640D100400000022 +:10DBF00077C295F360D2EF7F3552500F2CB6798003 +:10DC0000000100FF00020001000100030103FF000A +:10DC100001047065726D0074657374004255473B72 +:10DC20002063616E27742068617070656E00726594 +:10DC300076657274005B494E465D205377617020B3 +:10DC4000747970653A2025730A0D005B494E465D74 +:10DC5000205377617020747970653A206E6F6E651D +:10DC60000A0D005B494E465D20496D616765207570 +:10DC700070677261646520736C6F7431202D3E2073 +:10DC8000736C6F74300A0D005B494E465D2045721F +:10DC90006173696E6720736C6F74300A0D005B49A5 +:10DCA0004E465D20436F7079696E6720736C6F74A8 +:10DCB000203120746F20736C6F7420303A203078DC +:10DCC000256C782062797465730A0D005B57524E9B +:10DCD0005D204661696C65642072656164696E6788 +:10DCE00020736563746F72733B20424F4F545F4DD6 +:10DCF00041585F494D475F534543544F52533D256B +:10DD000064202D20746F6F20736D616C6C3F0A0D61 +:10DD1000005B57524E5D2043616E6E6F74207570CC +:10DD200067726164653A206D6F7265207365637414 +:10DD30006F7273207468616E20616C6C6F776564BC +:10DD40000A0D005B57524E5D2043616E6E6F74206A +:10DD5000757067726164653A206E756D62657220D8 +:10DD60006F6620736563746F72732064696666659D +:10DD700072206265747765656E20736C6F74730AC8 +:10DD80000D005B57524E5D2043616E6E6F742075BF +:10DD90007067726164653A20616E20696E636F6DB1 +:10DDA00070617469626C6520736563746F7220774B +:10DDB000617320666F756E640A0D005B494E465DA7 +:10DDC00020456E637279707465640A0D005B494E7C +:10DDD000465D204E4F4E2D456E63727970746564BA +:10DDE0000A0D005B4552525D2070616E6963210A25 +:10DDF0000D005B4552525D20496D61676520696E7B +:10DE000020736C6F74202564206973206E6F7420FA +:10DE100076616C6964210A0D000000C0E0F0F8FC36 +:10DE20006E756C6C0066616C73650074727565006C +:10DE30004142434445464748494A4B4C4D4E4F505A +:10DE40005152535455565758595A61626364656626 +:10DE50006768696A6B6C6D6E6F70717273747576DA +:10DE60007778797A303132333435363738390000C3 +:10DE700088A102084300504F534958002E00232D1B +:10DE8000302B2000686C4C006566674546470049AA +:10DE90004E4600696E66004E414E006E616E003067 +:10DEA0000030313233343536373839414243444516 +:10DEB0004600303132333435363738396162636485 +:10DEC00065660000202020202020202020282828EF +:10DED0002828202020202020202020202020202032 +:10DEE000202020208810101010101010101010107A +:10DEF000101010100404040404040404040410109A +:10DF00001010101010414141414141010101010136 +:10DF100001010101010101010101010101010110E2 +:10DF2000101010101042424242424202020202020B +:10DF300002020202020202020202020202020210B3 +:10DF40001010102000000000000000000000000081 +:10DF500000000000000000000000000000000000C1 +:10DF600000000000000000000000000000000000B1 +:10DF700000000000000000000000000000000000A1 +:10DF80000000000000000000000000000000000091 +:10DF90000000000000000000000000000000000081 +:10DFA0000000000000000000000000000000000071 +:10DFB0000000000000000000000000000000000061 +:10DFC00000000000496E66696E697479004E614E0A +:10DFD0000000000000000000000000000000000041 +:10DFE0000000000000000000000000000000000031 +:10DFF0000000000000000000000000000000000021 +:10E000000000000000000000000000000000000010 +:10E010000000000000000000000000000000000000 +:10E0200000000000000000000000000000000000F0 +:10E0300000000000000000000080E03779C3414389 +:10E04000176E05B5B5B89346F5F93FE9034F384D5E +:10E05000321D30F94877825A3CBF737FDD4F15750A +:10E06000000000000000F03F00000000000024401D +:10E0700000000000000059400000000000408F40F8 +:10E08000000000000088C34000000000006AF84063 +:10E090000000000080842E4100000000D012634187 +:10E0A0000000000084D797410000000065CDCD41FD +:10E0B000000000205FA00242000000E876483742DE +:10E0C000000000A2941A6D42000040E59C30A2427C +:10E0D0000000901EC4BCD64200003426F56B0C43F1 +:10E0E0000080E03779C3414300A0D8855734764398 +:10E0F00000C84E676DC1AB43003D9160E458E143F9 +:10E10000408CB5781DAF154450EFE2D6E41A4B446D +:10E1100092D54D06CFF08044F64AE1C7022DB544B2 +:10E12000B49DD9794378EA44050000001900000045 +:10E130007D00000054B30D10C6B10D100AB20D10D1 +:10E140006EB10D100AB20D10FAB20D100AB20D1018 +:10E150006EB10D10C6B10D10C6B10D10FAB20D1092 +:10E160006EB10D1066B10D1066B10D1066B10D10D7 +:10E1700008B30D107CBA0D107EB90D107EB90D10CC +:10E180009CBC0D1078B90D1078B90D1084BC0D1021 +:10E190009CBC0D1078B90D1084BC0D1078B90D1011 +:10E1A0009CBC0D1092BC0D1092BC0D1092BC0D10B9 +:08E1B000A0BC0D1000000000EE +:08E1B8003C9CFF7F0100000008 +:10E1C00000000D1000A00208C0000000E8E10D10E2 +:08E1D000C0A00208F0060000E7 +:10E1D800ECA702085408000000C002089C010000D7 +:10E1E8000DCA0D101BCA0D1025CA0D102FCA0D100F +:10E1F80039CA0D1049CA0D1057CA0D1067CA0D103B +:10E2080079CA0D108BCA0D1096CA0D10A4CA0D102C +:10E21800B1CA0D10BFCA0D10CCCA0D10DACA0D1044 +:10E22800E8CA0D10F6CA0D1004CB0D100ECB0D1058 +:10E2380017CB0D1021CB0D1029CB0D1000093D0077 +:10E2480000127A0000093D000000D00700093D00D7 +:10E25800A00F0000040000002CD80D1038D70D10B6 +:10E26800EFBE0DD0016F00000000000000000200AA +:10E2780000000000EFBE0DD0026F00000000050096 +:10E288000000020000000000EFBE0DD0036F000088 +:10E2980000000F000010000000000000BD800D10FD +:10E2A800A9800D1088A1020800000000F4DF0D10FD +:10E2B80014E00D10D4DF0D10000000000000000075 +:10E2C8000000000000000000000000000000000046 +:10E2D8000000000000000000000000000000000036 +:10E2E8000000000000000000000000000000000026 +:10E2F8000000000000000000000000000000000016 +:10E3080000000000000000004300000000000000C2 +:10E3180000000000000000000000000000000000F5 +:10E3280000000000000000004300000000000000A2 +:10E3380000000000000000000000000000000000D5 +:10E348000000000000000000430000000000000082 +:10E3580000000000000000000000000000000000B5 +:10E368000000000000000000430000000000000062 +:10E378000000000000000000000000000000000095 +:10E388000000000000000000430000000000000042 +:10E398000000000000000000000000000000000075 +:10E3A8000000000000000000430000000000000022 +:10E3B8000000000000000000000000000000000055 +:10E3C8000000000000000000430000000000000002 +:10E3D8000000000000000000000000000000000035 +:10E3E8000000000000000000A5900D10D1800D1065 +:10E3F80000000000C3DE0D107CDE0D10A3DA0D1046 +:10E40800A3DA0D10A3DA0D10A3DA0D10A3DA0D109C +:10E41800A3DA0D10A3DA0D10A3DA0D10A3DA0D108C +:10E42800FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000F2 +:10E43800010041534349490000000000000000006A +:10E4480000000000000000000000000000000000C4 +:10E45800000041534349490000000000000000004B +:10E4680000000000000000000000000000000000A4 +:10E4780000000000E9000D10C1000D1080B230B599 +:10E48800C00020D0104B07221C682300B0331B8823 +:10E498005A43236AD31819680029FCDA3E210B4B2A +:10E4A800062519600A4B0B491960A3210A4BC900BC +:10E4B8005D500A4958505858206A12180020506078 +:10E4C8005A58002AFCDA30BDE0AD020804012640A3 +:10E4D800080126401E1F0000000026401C05000001 +:10E4E80010B54378FF2B11D100F0A2F904000320E6 +:10E4F80000F0C6F9C3685A6801231168194311600E +:10E5080011681942FCD1200000F0D2F910BDF7B50E +:10E5180000900020019100F0B3F93F4D06002B68F0 +:10E528001A005033B43214681B780419002B5AD0DF +:10E5380000F0AEF9070003281BD000F079F9374A3C +:10E54800374B0500D358002B3EDA364A01213000FC +:10E5580000F0A6F9002837D10198FFF78FFF009B3C +:10E56800002B3ED02368002BFCDB00F069F9040087 +:10E578002BE0062000F084F92B68B4331B68C01820 +:10E588000368002B02DA284C2000FEBD002000F0B2 +:10E598005FF9264B9842F6D00023254A19001268E5 +:10E5A800012000F05DF90025A842ECD1002000F020 +:10E5B8004FF91E4A1F4B904203D09D42E3D00135CC +:10E5C800F4E79D42B9D1DEE7174C032F05D10121AD +:10E5D800002000F04DF90028F9D1280000F068F972 +:10E5E800D2E7154CF1E700F023F90E4A05000121A6 +:10E5F800300000F055F9002809D1009B002B08D005 +:10E608002368002BFCDB00F01BF90400E5E7064C4F +:10E61800E3E7094CE1E7C046E0AD02080000264008 +:10E628001C05000008A80208050052000101880026 +:10E6380018A80208F049020001005000F7B56E4D15 +:10E6480004002A68536800931300B033198807231D +:10E658004B43126A9B181A68002AFCDA00F030F95A +:10E668002A681300B033198807234B43212800D0A8 +:10E6780096E0116A5B180221D8680143D960D9680D +:10E68800C9072FD508208446944460461600D968E7 +:10E69800C06F0191116888360818356807684919EC +:10E6A8000D683902FF273F040F40694689882D0A03 +:10E6B8002D0639432943D960902103684F4D09013C +:10E6C8002B400B430360136830681B18186805401B +:10E6D8002943196013686246D26F9A181268326823 +:10E6E8009B181B68444D2A681300B0331988072308 +:10E6F8004B43126A9B1800225A600423404A11694E +:10E708000B431361012C50D030BF2A681300B0337B +:10E71800198807234B43126A9B181A68002AFCDAE7 +:10E7280000F0CEF8212842D1296807220B000124E5 +:10E73800B0331B8800205A430B6AD318DD68254282 +:10E748001CD0080008300D68C06F2C4E28180568CA +:10E75800DB6835401B0C1B061B0C2B4303600B00AE +:10E76800883318680B6818180B6A0568D318DB68B3 +:10E778002E401B0E1B023343036020000B6A02214C +:10E78800D218D3688B43D3601B4B1A681300B0337D +:10E79800198807234B43126A9B1800225A60FEBD52 +:10E7A800126A9B18174ADA609CE720BFADE7002081 +:10E7B800009BFC331B698342E6D1A320124B13490B +:10E7C800134A144FC0000E681D5814680F600627BE +:10E7D8001F503E20106010483E371F501F58002F12 +:10E7E800FCDA00980D4FFC3007610E60A321C900C8 +:10E7F8005D5001201460C7E7E0AD0208FF00FFFF8D +:10E8080000ED00E024A80208000026400801264088 +:10E81800040126401E1F00001C050000AAAAAAAA7F +:10E82800FEE7024A1368002BFCDB70470001264014 +:10E8380001B40248844601BC604700BF631D0D1047 +:10E8480001B40248844601BC604700BF911E0D1008 +:10E8580001B40248844601BC604700BF71280D100E +:10E8680001B40248844601BC604700BF79250D10F9 +:10E8780001B40248844601BC604700BFFD270D1063 +:10E8880001B40248844601BC604700BF5D1E0D10FC +:10E8980001B40248844601BC604700BF79510D109D +:10E8A80001B40248844601BC604700BF81230D10B3 +:10E8B80001B40248844601BC604700BF6B1D0D10BF +:10E8C80001B40248844601BC604700BF2D480D10C2 :10FE0000FC010000211221010000000000000000A0 -:10FE100000000D1000FE00000000010009000000BD +:10FE100000000D1000FE0000000001007D00000049 :10FE20000100000000DA0F100000000000000000D8 :10FE300000000000000000000000000000000000C2 :10FE400000000000000000000000000000000000B2 @@ -3709,6 +3757,6 @@ :10FFC0000000000000000000000000000000000031 :10FFD0000000000000000000000000000000000021 :10FFE0000000000000000000000000000000000011 -:10FFF0000000000000000000000000000000862D4E +:10FFF000000000000000000000000000000028D306 :04000005100D4EDFAD :00000001FF diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt index 1484a8ef3da..ddb28220334 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt @@ -1 +1 @@ -eyJhbGciOiJFUzI1NiJ9.eyJjeV9wdWJfa2V5Ijp7ImNydiI6IlAtMjU2Iiwia2lkIjoiMyIsImt0eSI6IkVDIiwidXNlIjoic2lnIiwieCI6IlNiOGxUcHlfcGQzTnJVVGtoSXpnMmp6TTM3dU5xTml1dDhXQy1RdjNYTVEiLCJ5IjoiQ3R3Q2k0YXJYc2pFRDVUVm1yX3ZQbFAya2UxMzNLSzdsUDdTel9JWmlERSJ9LCJleHAiOjE1Nzc3NDMyMDAsImlhdCI6MTU2MjMzOTY0MywiaW1hZ2VfYWRkcmVzcyI6MjY5Mjg3NDI0LCJpbWFnZV9maWxlIjoiQ3lwcmVzc0Jvb3Rsb2FkZXJfQ00wcC5oZXgiLCJpbWFnZV9oYXNoIjpbMTkyLDIxNiwyMDMsNjUsMTQxLDc5LDgwLDE0NCwxOTYsMzUsNTAsNDUsMTI5LDEzNCwyNSwyNDksOTUsMzgsMTgzLDY1LDI0MiwxMTEsNzAsNDcsOTksNTksMTkzLDE0MSw5OSw5OCwyMjQsMTE2XSwiaW1hZ2VfaWQiOjAsImltYWdlX3ZlcnNpb24iOiIxLjAuMC45IiwicG9saWN5X3RlbXBsYXRlIjoiIn0.N3VTh3_2F7H9HlOKNBzWCzlO3THIVjxKHL9AGc0KkL0GavZ4TU6k3O7grXi4ZxZNR9eGUWWHx6lxGpeYYg3D-g \ No newline at end of file +eyJhbGciOiJFUzI1NiJ9.eyJjeV9wdWJfa2V5Ijp7ImNydiI6IlAtMjU2Iiwia2lkIjoiMyIsImt0eSI6IkVDIiwidXNlIjoic2lnIiwieCI6IlNiOGxUcHlfcGQzTnJVVGtoSXpnMmp6TTM3dU5xTml1dDhXQy1RdjNYTVEiLCJ5IjoiQ3R3Q2k0YXJYc2pFRDVUVm1yX3ZQbFAya2UxMzNLSzdsUDdTel9JWmlERSJ9LCJleHAiOjE1Nzc3NDMyMDAsImlhdCI6MTU2MzI4NjA3NiwiaW1hZ2VfYWRkcmVzcyI6MjY5Mjg3NDI0LCJpbWFnZV9maWxlIjoiQ3lwcmVzc0Jvb3Rsb2FkZXJfQ00wcC5oZXgiLCJpbWFnZV9oYXNoIjpbMTY3LDExNSwxMTUsNjIsNiwyMjEsMTIsMjM0LDE0MiwzNyw0NiwyNTQsMjM5LDI0OCw2MCwxNTcsOTksNCwxOTcsMTc1LDIxNiw4MCwxMDIsNDYsMTY5LDE5NiwxNzgsNTMsOTQsNDksMjMxLDIwMl0sImltYWdlX2lkIjowLCJpbWFnZV92ZXJzaW9uIjoiMS4wLjAuMTI1IiwicG9saWN5X3RlbXBsYXRlIjoiIn0.kC_8cSqHKBHl1770umc1em1ZhuwjSHKxY1TigIBjcPVd_Gnr2X4LcMGIB6biwVWWYmtONF7k87XXfpM4NqByAg \ No newline at end of file From 7e8d5692616543df7e2cb17ac1bb0d8853b6cb13 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Tue, 16 Jul 2019 19:27:32 +0300 Subject: [PATCH 06/16] Added example x.509 certificate for provisioning. --- targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md | 10 +++++++--- .../TARGET_PSOC6/sb-tools/prepare/example_cert.pem | 10 ++++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/example_cert.pem diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md index c28419aba83..89e19bdc2ef 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md @@ -2,6 +2,8 @@ This directory contains tools and scripts for generating keys, preparing provisi These files are relevant to CY8CPROTO_064_SB or CY8CPROTO_064_SB_M0_PSA, CY8CPROTO_064_SB_PSA targets. Version of Python required is 3.7+ +**_NOTE_:** Detailed description about Secure Boot tools availabe on this link https://www.cypress.com/secureboot-sdk-user-guide + # DEVICE PROVISIONING ## 1. Generate new keys by executing the following commands from ./keys: @@ -15,7 +17,7 @@ Version of Python required is 3.7+ python keygen.py --aes aes.key -**_NOTE_:** DO NOT COMMIT any new keys to repository. --- +**_NOTE_:** DO NOT COMMIT any new keys to repository. ## 2. Create provisioning packets: Use *provisioning_packet.py* from ./prepare folder. @@ -33,11 +35,13 @@ Options: * To create packet for CY8CPROTO_064_SB target using single-stage policy (CM4 only): - python provisioning_packet.py --policy policy_single_stage_CM4.json --out ../packet --cyboot ../prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt --ckey ../keys/USERAPP_CM4_KEY.json + python provisioning_packet.py --policy policy_single_stage_CM4.json --out ../packet --cyboot ../prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt --ckey ../keys/USERAPP_CM4_KEY.json --devcert example_cert.pem * To use external memory (via SMIF) as staging(upgrade) area (slot_1) of NSPE (CM4) image use policy file with corresponding name: - python provisioning_packet.py --policy policy_single_stage_CM4_smif.json --out ../packet --cyboot ../prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt --ckey ../keys/USERAPP_CM4_KEY.json + python provisioning_packet.py --policy policy_single_stage_CM4_smif.json --out ../packet --cyboot ../prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt --ckey ../keys/USERAPP_CM4_KEY.json --devcert example_cert.pem + + The certificate in above examples is signed with OEM key from ./prebuild folder. Prebuild folder contains CyBootloader_WithLogs and CyBootloader_Release with corresponding *.hex and *.jwt files. * WithLogs prints execution results to terminal. diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/example_cert.pem b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/example_cert.pem new file mode 100644 index 00000000000..ebc4b43f9d8 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/example_cert.pem @@ -0,0 +1,10 @@ +-----BEGIN CERTIFICATE----- +MIIBTzCB9qADAgECAhQCJF8kCV5oVGofjI+lrnVsCSI+cjAKBggqhkjOPQQDAjAg +MR4wHAYDVQQDDBVDeXByZXNzIFNlbWljb25kdWN0b3IwHhcNMTkwNzE1MTkzNzQ3 +WhcNMjAwNzE0MTkzNzQ3WjAeMRwwGgYDVQQDDBNFeGFtcGxlIGNlcnRpZmljYXRl +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEvfb7/jewTxpFVINcXdrZQJBArC5i +grN0BLc783FigrP2sEFQpfOmPUDkrt/E+0Rol2x+jsmP/CwXstNktz6w86MQMA4w +DAYDVR0TAQH/BAIwADAKBggqhkjOPQQDAgNIADBFAiEA3I3zaBbwMzSJ6xU9ngUM +Dyk4XstQF3tLzmvBRUkX8woCICk0YiVqk4tD2wvgUYkPztBKu6tVl/OqF2Ee+aQs +uwQc +-----END CERTIFICATE----- From 74c5ea6517362abaad29c82d05aaf4ad9efa2eb6 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Wed, 17 Jul 2019 15:58:02 +0300 Subject: [PATCH 07/16] Updated BSD license file content. --- .../Other/bsd_base64_license.txt | 109 ++++++++---------- 1 file changed, 46 insertions(+), 63 deletions(-) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt index d95796bd1b5..8ab19243a91 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt @@ -1,63 +1,46 @@ -Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX - -ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. - -1. DEFINITIONS. "Software" means the software identified above in binary form that you selected for download, install or use (in the version You selected for download, install or use) from Oracle or its authorized licensees and/or those portions of such software produced by jlink as output using a Program’s code, when such output is in unmodified form in combination, and for sole use with, that Program, as well as any other machine readable materials (including, but not limited to, libraries, source files, header files, and data files), any updates or error corrections provided by Oracle, and any user manuals, programming guides and other documentation provided to you by Oracle under this Agreement. The Java Linker (jlink) is available with Java 9 and later versions. "General Purpose Desktop Computers and Servers" means computers, including desktop and laptop computers, or servers, used for general computing functions under end user control (such as but not specifically limited to email, general purpose Internet browsing, and office suite productivity tools). The use of Software in systems and solutions that provide dedicated functionality (other than as mentioned above) or designed for use in embedded or function-specific software applications, for example but not limited to: Software embedded in or bundled with industrial control systems, wireless mobile telephones, wireless handheld devices, kiosks, TV/STB, Blu-ray Disc devices, telematics and network control switching equipment, printers and storage management systems, and other related systems are excluded from this definition and not licensed under this Agreement. "Programs" means (a) Java technology applets and applications intended to run on the Java Platform, Standard Edition platform on Java-enabled General Purpose Desktop Computers and Servers; and (b) JavaFX technology applications intended to run on the JavaFX Runtime on JavaFX-enabled General Purpose Desktop Computers and Servers. “Java SE LIUM” means the Licensing Information User Manual – Oracle Java SE and Oracle Java Embedded Products Document accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. “Commercial Features” means those features that are identified as such in the Java SE LIUM under the “Description of Product Editions and Permitted Features” section. - -2. LICENSE TO USE. Subject to the terms and conditions of this Agreement including, but not limited to, the Java Technology Restrictions of the Supplemental License Terms, Oracle grants you a non-exclusive, non-transferable, limited license without license fees to reproduce and use internally the Software complete and unmodified for the sole purpose of running Programs. THE LICENSE SET FORTH IN THIS SECTION 2 DOES NOT EXTEND TO THE COMMERCIAL FEATURES. YOUR RIGHTS AND OBLIGATIONS RELATED TO THE COMMERCIAL FEATURES ARE AS SET FORTH IN THE SUPPLEMENTAL TERMS ALONG WITH ADDITIONAL LICENSES FOR DEVELOPERS AND PUBLISHERS. - -3. RESTRICTIONS. Software is copyrighted. Title to Software and all associated intellectual property rights is retained by Oracle and/or its licensors. Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software. You acknowledge that the Software is developed for general use in a variety of information management applications; it is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use the Software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle disclaims any express or implied warranty of fitness for such uses. No right, title or interest in or to any trademark, service mark, logo or trade name of Oracle or its licensors is granted under this Agreement. Additional restrictions for developers and/or publishers licenses are set forth in the Supplemental License Terms. - -4. DISCLAIMER OF WARRANTY. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. - -5. LIMITATION OF LIABILITY. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). - -6. TERMINATION. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of Software. This Agreement will terminate immediately without notice from Oracle if you fail to comply with any provision of this Agreement. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. Upon termination, you must destroy all copies of Software. - -7. EXPORT REGULATIONS. You agree that U.S. export control laws and other applicable export and import laws govern your use of the Software, including technical data; additional information can be found on Oracle's Global Trade Compliance web site (http://www.oracle.com/us/products/export). You agree that neither the Software nor any direct product thereof will be exported, directly, or indirectly, in violation of these laws, or will be used for any purpose prohibited by these laws including, without limitation, nuclear, chemical, or biological weapons proliferation. - -8. TRADEMARKS AND LOGOS. You acknowledge and agree as between you and Oracle that Oracle owns the ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations ("Oracle Marks"), and you agree to comply with the Third Party Usage Guidelines for Oracle Trademarks currently located at http://www.oracle.com/us/legal/third-party-trademarks/index.html. Any use you make of the Oracle Marks inures to Oracle's benefit. - -9. U.S. GOVERNMENT LICENSE RIGHTS. If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation shall be only those set forth in this Agreement. - -10. GOVERNING LAW. This agreement is governed by the substantive and procedural laws of California. You and Oracle agree to submit to the exclusive jurisdiction of, and venue in, the courts of San Francisco, or Santa Clara counties in California in any dispute arising out of or relating to this agreement. - -11. SEVERABILITY. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. - -12. INTEGRATION. This Agreement is the entire agreement between you and Oracle relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. - -SUPPLEMENTAL LICENSE TERMS - -These Supplemental License Terms add to or modify the terms of the Binary Code License Agreement. Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Binary Code License Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Binary Code License Agreement, or in any license contained within the Software. - -A. COMMERCIAL FEATURES. You may not use the Commercial Features for running Programs, Java applets or applications in your internal business operations or for any commercial or production purpose, or for any purpose other than as set forth in Sections B, C, D and E of these Supplemental Terms. If You want to use the Commercial Features for any purpose other than as permitted in this Agreement, You must obtain a separate license from Oracle. - -B. SOFTWARE INTERNAL USE FOR DEVELOPMENT LICENSE GRANT. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM incorporated herein by reference, including, but not limited to the Java Technology Restrictions of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce internally and use internally the Software complete and unmodified for the purpose of designing, developing, and testing your Programs. - -C. LICENSE TO DISTRIBUTE SOFTWARE. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM, including, but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute the Software, provided that (i) you distribute the Software complete and unmodified and only bundled as part of, and for the sole purpose of running, your Programs, (ii) the Programs add significant and primary functionality to the Software, (iii) you do not distribute additional software intended to replace any component(s) of the Software, (iv) you do not remove or alter any proprietary legends or notices contained in the Software, (v) you only distribute the Software subject to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in this Agreement and that includes the notice set forth in Section H, and (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section C does not extend to the Software identified in Section G. - -D. LICENSE TO DISTRIBUTE REDISTRIBUTABLES. Subject to the terms and conditions of this Agreement and restrictions and exceptions set forth in the Java SE LIUM, including but not limited to the Java Technology Restrictions and Limitations on Redistribution of these Supplemental Terms, Oracle grants you a non-exclusive, non-transferable, limited license without fees to reproduce and distribute those files specifically identified as redistributable in the Java SE LIUM ("Redistributables") provided that: (i) you distribute the Redistributables complete and unmodified, and only bundled as part of Programs, (ii) the Programs add significant and primary functionality to the Redistributables, (iii) you do not distribute additional software intended to supersede any component(s) of the Redistributables (unless otherwise specified in the applicable Java SE LIUM), (iv) you do not remove or alter any proprietary legends or notices contained in or on the Redistributables, (v) you only distribute the Redistributables pursuant to a license agreement that: (a) is a complete, unmodified reproduction of this Agreement; or (b) protects Oracle's interests consistent with the terms contained in the Agreement and includes the notice set forth in Section H, (vi) you agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. The license set forth in this Section D does not extend to the Software identified in Section G. - -E. DISTRIBUTION BY PUBLISHERS. This section pertains to your distribution of the JavaTM SE Development Kit Software (“JDK”) with your printed book or magazine (as those terms are commonly used in the industry) relating to Java technology ("Publication"). Subject to and conditioned upon your compliance with the restrictions and obligations contained in the Agreement, Oracle hereby grants to you a non-exclusive, nontransferable limited right to reproduce complete and unmodified copies of the JDK on electronic media (the "Media") for the sole purpose of inclusion and distribution with your Publication(s), subject to the following terms: (i) You may not distribute the JDK on a stand-alone basis; it must be distributed with your Publication(s); (ii) You are responsible for downloading the JDK from the applicable Oracle web site; (iii) You must refer to the JDK as JavaTM SE Development Kit; (iv) The JDK must be reproduced in its entirety and without any modification whatsoever (including with respect to all proprietary notices) and distributed with your Publication subject to a license agreement that is a complete, unmodified reproduction of this Agreement; (v) The Media label shall include the following information: “Copyright [YEAR], Oracle America, Inc. All rights reserved. Use is subject to license terms. ORACLE and JAVA trademarks and all ORACLE- and JAVA-related trademarks, service marks, logos and other brand designations are trademarks or registered trademarks of Oracle in the U.S. and other countries.” [YEAR] is the year of Oracle's release of the Software; the year information can typically be found in the Software’s “About” box or screen. This information must be placed on the Media label in such a manner as to only apply to the JDK; (vi) You must clearly identify the JDK as Oracle's product on the Media holder or Media label, and you may not state or imply that Oracle is responsible for any third-party software contained on the Media; (vii) You may not include any third party software on the Media which is intended to be a replacement or substitute for the JDK; (viii) You agree to defend and indemnify Oracle and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of the JDK and/or the Publication; ; and (ix) You shall provide Oracle with a written notice for each Publication; such notice shall include the following information: (1) title of Publication, (2) author(s), (3) date of Publication, and (4) ISBN or ISSN numbers. Such notice shall be sent to Oracle America, Inc., 500 Oracle Parkway, Redwood Shores, California 94065 U.S.A , Attention: General Counsel. - -F. JAVA TECHNOLOGY RESTRICTIONS. You may not create, modify, or change the behavior of, or authorize your licensees to create, modify, or change the behavior of, classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun", “oracle” or similar convention as specified by Oracle in any naming convention designation. - -G. LIMITATIONS ON REDISTRIBUTION. You may not redistribute or otherwise transfer patches, bug fixes or updates made available by Oracle through Oracle Premier Support, including those made available under Oracle's Java SE Support program. - -H. COMMERCIAL FEATURES NOTICE. For purpose of complying with Supplemental Term Section C.(v)(b) and D.(v)(b), your license agreement shall include the following notice, where the notice is displayed in a manner that anyone using the Software will see the notice: - -Use of the Commercial Features for any commercial or production purpose requires a separate license from Oracle. “Commercial Features” means those features that are identified as such in the Licensing Information User Manual – Oracle Java SE and Oracle Java Embedded Products Document, accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html, under the “Description of Product Editions and Permitted Features” section. - -I. SOURCE CODE. Software may contain source code that, unless expressly licensed for other purposes, is provided solely for reference purposes pursuant to the terms of this Agreement. Source code may not be redistributed unless expressly provided for in this Agreement. - -J. THIRD PARTY CODE. Additional copyright notices and license terms applicable to portions of the Software are set forth in the Java SE LIUM accessible at http://www.oracle.com/technetwork/java/javase/documentation/index.html. In addition to any terms and conditions of any third party opensource/freeware license identified in the Java SE LIUM, the disclaimer of warranty and limitation of liability provisions in paragraphs 4 and 5 of the Binary Code License Agreement shall apply to all Software in this distribution. - -K. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. - -L. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javase/documentation/index.html. - -For inquiries please contact: Oracle America, Inc., 500 Oracle Parkway, - -Redwood Shores, California 94065, USA. - -Last updated 21 September 2017 \ No newline at end of file +/* + * $ Copyright Cypress Semiconductor $ + */ +/* $OpenBSD: base64.c,v 1.3 1997/11/08 20:46:55 deraadt Exp $ */ + +/* + * Copyright (c) 1996 by Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS + * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE + * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL + * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR + * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS + * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS + * SOFTWARE. + */ + +/* + * Portions Copyright (c) 1995 by International Business Machines, Inc. + * + * International Business Machines, Inc. (hereinafter called IBM) grants + * permission under its copyrights to use, copy, modify, and distribute this + * Software with or without fee, provided that the above copyright notice and + * all paragraphs of this notice appear in all copies, and that the name of IBM + * not be used in connection with the marketing of any product incorporating + * the Software or modifications thereof, without specific, written prior + * permission. + * + * To the extent it has a right to do so, IBM grants an immunity from suit + * under its patents, if any, for the use, sale or manufacture of products to + * the extent that such products are used for performing Domain Name System + * dynamic updates in TCP/IP networks by means of the Software. No immunity is + * granted for any product per se or for any other function of any product. + * + * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, + * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + * PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, + * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING + * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN + * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. + */ \ No newline at end of file From f22e488083027a536248ef32ad092223c389b228 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Fri, 26 Jul 2019 00:21:49 +0300 Subject: [PATCH 08/16] Added sb-tools requirements to main mbed-os requirements file. --- requirements.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/requirements.txt b/requirements.txt index e8a6f9a4620..747d9e26006 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,3 +26,8 @@ cmsis-pack-manager>=0.2.3,<0.3.0 pywin32==224;platform_system=='Windows' wmi==1.4.9;platform_system=='Windows' psutil==5.6.2 +cryptography>=2.4.2 +Click>=7.0 +intelhex>=2.2.1 +jwcrypto>=0.6.0 +pathlib>=19.1.1 From 5262cf1f87236920a7fc4fd795e740d843dbcba0 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Tue, 30 Jul 2019 15:30:20 +0300 Subject: [PATCH 09/16] Updated python module requirements.txt --- requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 747d9e26006..187317660ba 100644 --- a/requirements.txt +++ b/requirements.txt @@ -28,6 +28,5 @@ wmi==1.4.9;platform_system=='Windows' psutil==5.6.2 cryptography>=2.4.2 Click>=7.0 -intelhex>=2.2.1 jwcrypto>=0.6.0 -pathlib>=19.1.1 +pathlib>=1.0.1 From 74e873a0454f5a63c49dbbce6c581316581e09c4 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Wed, 7 Aug 2019 17:21:59 +0300 Subject: [PATCH 10/16] Updated README.md --- targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md index 89e19bdc2ef..d9866dba135 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md @@ -1,6 +1,7 @@ +#### Version of Python required is 3.7+ + This directory contains tools and scripts for generating keys, preparing provisioning packets and execution of provisioning. These files are relevant to CY8CPROTO_064_SB or CY8CPROTO_064_SB_M0_PSA, CY8CPROTO_064_SB_PSA targets. -Version of Python required is 3.7+ **_NOTE_:** Detailed description about Secure Boot tools availabe on this link https://www.cypress.com/secureboot-sdk-user-guide @@ -80,7 +81,7 @@ Secure Boot enabled targets support image upgrades, if specified by policy. Ther The upgrade images types are determined by the following policy setting (firmware sections): -- **_"smif_id":_** 0, - should be set to 2 if AUGUST_CYW43012 target is used, 1 - if CY8CPROTO_064_SB, 0 - SMIF disabled +- **_"smif_id":_** should be set to 1 for CY8CPROTO_064_SB onboard SMIF, default is 0 - SMIF disabled - **_"upgrade":_** true/false, - should be set to *true* if UPGRADE supported, *false* - if disabled - **_"encrypt":_** true/false, - should be set to *true* if encrypted UPGRADE supported, *false* - if disabled - **_"encrypt_key_id":_** 1, - should remain unchanged, means that Device Key will be used in ECDH/HKDF protocol From 44401b5917e291bfc06e8322be613ab815b6c517 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Wed, 14 Aug 2019 01:13:14 +0300 Subject: [PATCH 11/16] Added licenses types for python packets to LICENSE.md, updated versions definition in requirements.txt --- LICENSE.md | 3 +++ requirements.txt | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 4891943d11a..e3a1bc6227d 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -54,3 +54,6 @@ The Python modules used by Mbed tools are used under the following licenses: - [pywin32](https://pypi.org/project/pywin32/) - PSF - [wmi](https://pypi.org/project/WMI/) - MIT - [psutil](https://pypi.org/project/psutil/) - BSD +- [click](https://pypi.org/project/click/) - BSD-3-Clause +- [cryptography](https://pypi.org/project/cryptography/) - BSD, Apache-2.0 +- [jwcrypto](https://pypi.org/project/jwcrypto/) - LGPLv3+ diff --git a/requirements.txt b/requirements.txt index 187317660ba..02433ec4409 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,7 +26,7 @@ cmsis-pack-manager>=0.2.3,<0.3.0 pywin32==224;platform_system=='Windows' wmi==1.4.9;platform_system=='Windows' psutil==5.6.2 -cryptography>=2.4.2 -Click>=7.0 -jwcrypto>=0.6.0 +cryptography>=2.4.x,<2.5 +Click>=7.0,<7.1 +jwcrypto>=0.6,<0.7 pathlib>=1.0.1 From 515555e7bacc396f8f98e4a96fd9fd4e7ef47827 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Sat, 24 Aug 2019 01:27:54 +0300 Subject: [PATCH 12/16] Removed scripts for provisiongs from repository, made fixes per PR comments, adjusted Readme.md --- LICENSE.md | 1 - requirements.txt | 1 - .../secure_image_parameters.json | 2 +- .../TARGET_PSOC6/sb-tools/.gitignore | 2 +- .../TARGET_PSOC6/sb-tools/README.md | 88 +- .../sb-tools/entrance_exam_runner.py | 45 - .../sb-tools/execute/entrance_exam.py | 68 - .../TARGET_PSOC6/sb-tools/execute/enums.py | 30 - .../sb-tools/execute/gen_data_from_json.py | 38 - .../TARGET_PSOC6/sb-tools/execute/helper.py | 59 - .../sb-tools/execute/p6_memory_map.py | 17 - .../TARGET_PSOC6/sb-tools/execute/p6_reg.py | 95 - .../sb-tools/execute/programmer/__init__.py | 18 - .../sb-tools/execute/programmer/base.py | 179 - .../sb-tools/execute/programmer/exceptions.py | 23 - .../sb-tools/execute/programmer/programmer.py | 29 - .../execute/programmer/pyocd_wrapper.py | 272 -- .../sb-tools/execute/provision_device.py | 105 - .../TARGET_PSOC6/sb-tools/execute/sys_call.py | 198 - .../TARGET_PSOC6/sb-tools/keys/keygen.py | 73 - .../{prepare => policy}/example_cert.pem | 0 .../policy_single_stage_CM4.json | 0 .../policy_single_stage_CM4_smif.json | 2 +- .../CypressBootloader_CM0p.hex | 2396 ----------- .../CypressBootloader_CM0p.jwt | 1 - .../CypressBootloader_CM0p.hex | 3762 ----------------- .../CypressBootloader_CM0p.jwt | 1 - .../TARGET_PSOC6/sb-tools/prebuild/LICENSE | 51 - .../sb-tools/prebuild/cy_auth.jwt | 1 - .../sb-tools/prebuild/hsm_state.json | 18 - .../sb-tools/prebuild/oem_state.json | 18 - .../Apache/LICENSE-2.0.txt | 202 - .../third_party_licenses/Apache/README.txt | 5 - .../MIT/cjason-license.txt | 23 - .../Other/bsd_base64_license.txt | 46 - .../prepare/provisioning_lib/cyprov_crypto.py | 116 - .../provisioning_lib/cyprov_customer.py | 50 - .../prepare/provisioning_lib/cyprov_entity.py | 46 - .../prepare/provisioning_lib/cyprov_hsm.py | 443 -- .../prepare/provisioning_lib/cyprov_oem.py | 143 - .../prepare/provisioning_lib/cyprov_pem.py | 79 - .../prepare/provisioning_lib/cyprov_types.py | 29 - .../sb-tools/prepare/provisioning_packet.py | 133 - .../sb-tools/provision_device_runner.py | 80 - .../TARGET_PSOC6/sb-tools/requirements.txt | 7 - .../sb-tools/test/test_data/blinky_large.hex | 1410 ------ .../sb-tools/test/test_data/blinky_small.hex | 30 - .../sb-tools/test/test_pyocd_wrapper.py | 301 -- .../sb-tools/test/test_utility.py | 39 - tools/targets/PSOC6.py | 194 +- tools/targets/__init__.py | 12 +- 51 files changed, 121 insertions(+), 10860 deletions(-) delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/entrance_exam_runner.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/entrance_exam.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/enums.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/gen_data_from_json.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/helper.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_memory_map.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_reg.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/__init__.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/base.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/exceptions.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/programmer.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/pyocd_wrapper.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/provision_device.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/sys_call.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/keys/keygen.py rename targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/{prepare => policy}/example_cert.pem (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/{prepare => policy}/policy_single_stage_CM4.json (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/{prepare => policy}/policy_single_stage_CM4_smif.json (98%) delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/LICENSE delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/cy_auth.jwt delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/hsm_state.json delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/oem_state.json delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/LICENSE-2.0.txt delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/README.txt delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/MIT/cjason-license.txt delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_crypto.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_customer.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_entity.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_hsm.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_oem.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_pem.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_types.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_packet.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/provision_device_runner.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/requirements.txt delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_large.hex delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_small.hex delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_pyocd_wrapper.py delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_utility.py diff --git a/LICENSE.md b/LICENSE.md index e3a1bc6227d..831caa12b00 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -56,4 +56,3 @@ The Python modules used by Mbed tools are used under the following licenses: - [psutil](https://pypi.org/project/psutil/) - BSD - [click](https://pypi.org/project/click/) - BSD-3-Clause - [cryptography](https://pypi.org/project/cryptography/) - BSD, Apache-2.0 -- [jwcrypto](https://pypi.org/project/jwcrypto/) - LGPLv3+ diff --git a/requirements.txt b/requirements.txt index 02433ec4409..40b86802c0f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -28,5 +28,4 @@ wmi==1.4.9;platform_system=='Windows' psutil==5.6.2 cryptography>=2.4.x,<2.5 Click>=7.0,<7.1 -jwcrypto>=0.6,<0.7 pathlib>=1.0.1 diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/secure_image_parameters.json b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/secure_image_parameters.json index 7e2c874a4b6..b66402fccc5 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/secure_image_parameters.json +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/secure_image_parameters.json @@ -13,5 +13,5 @@ "priv_key_file": "keys/USERAPP_CM4_KEY_PRIV.pem", "aes_key_file": "keys/image-aes-128.key", "dev_pub_key_file": "keys/dev_pub_key.pem", - "policy_file": "prepare/policy_single_stage_CM4.json" + "policy_file": "policy/policy_single_stage_CM4.json" } diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/.gitignore b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/.gitignore index 601bb601e2c..23a0757e7cf 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/.gitignore +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/.gitignore @@ -1 +1 @@ -packet \ No newline at end of file +packet diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md index d9866dba135..8819df6beaa 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/README.md @@ -1,77 +1,9 @@ #### Version of Python required is 3.7+ -This directory contains tools and scripts for generating keys, preparing provisioning packets and execution of provisioning. -These files are relevant to CY8CPROTO_064_SB or CY8CPROTO_064_SB_M0_PSA, CY8CPROTO_064_SB_PSA targets. +This directory contains scripts for adding signatures . +These files are relevant to CY8CPROTO_064_SB target. -**_NOTE_:** Detailed description about Secure Boot tools availabe on this link https://www.cypress.com/secureboot-sdk-user-guide - -# DEVICE PROVISIONING - -## 1. Generate new keys by executing the following commands from ./keys: - - *Create keys for image signing:* - - python keygen.py -k 8 --jwk USERAPP_CM4_KEY.json --pem-priv USERAPP_CM4_KEY_PRIV.pem - - *Create key for image encryption:* - - python keygen.py --aes aes.key - - -**_NOTE_:** DO NOT COMMIT any new keys to repository. - -## 2. Create provisioning packets: -Use *provisioning_packet.py* from ./prepare folder. - -Options: - - --oem OEM key file. - --hsm HSM key file. - --cyboot Cypress Bootloader image certificate. - --cyauth Provisioning authorization certificate. - --policy Policy file. - --out Output directory. - --ckey Customer key that will be used for image signing. Use the option multiple times to specify multiple keys. - --devcert Chain of trust certificate. Use the option multiple times to specify multiple certificates. - -* To create packet for CY8CPROTO_064_SB target using single-stage policy (CM4 only): - - python provisioning_packet.py --policy policy_single_stage_CM4.json --out ../packet --cyboot ../prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt --ckey ../keys/USERAPP_CM4_KEY.json --devcert example_cert.pem - -* To use external memory (via SMIF) as staging(upgrade) area (slot_1) of NSPE (CM4) image use policy file with corresponding name: - - python provisioning_packet.py --policy policy_single_stage_CM4_smif.json --out ../packet --cyboot ../prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt --ckey ../keys/USERAPP_CM4_KEY.json --devcert example_cert.pem - - The certificate in above examples is signed with OEM key from ./prebuild folder. - -Prebuild folder contains CyBootloader_WithLogs and CyBootloader_Release with corresponding *.hex and *.jwt files. - * WithLogs prints execution results to terminal. - * Release does not print to terminal and boots up silently. - -**_NOTE:_** CypressBootloader_CM0p.jwt and CypressBootloader_CM0p.hex must be used in pair from the same directory in provisioning packet generation (.packets/prov_cmd.jwt) and provisioning procedure itself. - -## 3. Run entrance exam - - python entrance_exam_runner.py - -## 4. Perform provisioning: -**_ATTENTION:_** Proceed to **UPGRADE IMAGES** section first if UPGRADE image is needed. - -Execute *provision_device_runner.py*. -The script will run with the default arguments if no arguments specified. - -Default arguments can be overridden with a custom: - - --prov-jwt Path to provisioning JWT file (packet which contains all data necessary for provisioning, including policy, authorization packets and keys) - --hex Path to Cypress Bootloader HEX binary file - --pubkey-json File where to save public key in JSON format - --pubkey-pem File where to save public key in PEM format - -*Example:* - - python provision_device_runner.py --prov-jwt packet/prov_cmd.jwt --hex prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex --pubkey-json keys/dev_pub_key.json --pubkey-pem keys/dev_pub_key.pem - -**_NOTE:_** PSoC6 supply voltage of 2.5V is required to perform provisioning. +**_NOTE_:** Before starting work with Cypress Secure Boot enabled target please read User Guide https://www.cypress.com/secureboot-sdk-user-guide ## UPGRADE IMAGES @@ -87,9 +19,9 @@ The upgrade images types are determined by the following policy setting (firmwar - **_"encrypt_key_id":_** 1, - should remain unchanged, means that Device Key will be used in ECDH/HKDF protocol Requirements: -- Policy with **_smif.json** from prepare/ folder should be used. +- Policy with **_smif.json** from policy/ folder should be used. For encrypted image: -- aes.key generated, as described in **DEVICE_PROVISIONING - 1** +- aes.key generated, as described in user guide - dev_pub_key.pem must be placed in keys/ folder (this key is generated in provisioning procedure) - secure_image_parameters.json file in the target directory must contain valid keys' paths @@ -110,7 +42,7 @@ Encrypted UPGRADE image: "encrypt": true, "encrypt_key_id": 1, -Modified policy file should be used for provisioning the device, as described in paragraph 4. +Modified policy file should be used for provisioning the device, as described in User Guide. Now mbed-os application or test can be built as described in section **TESTS**. Images for UPGRADE are generated at build time, according to policy. @@ -140,11 +72,3 @@ The generic HEX file (for example one that is produced by mbed-os build system) Run commands: mbed test --compile -m CY8CPROTO_064_SB -t GCC_ARM -n tests-mbed* -v - -# TROUBLESHOOTING: - -1. In case of messages like "unable to find device" execute "mbedls -m 1907:CY8CPROTO_064_SB", then check with "mbedls" if device is detected as CY8CPROTO_064_SB with code 1907. -2. Keys, from ./keys folder is used for signing images by default, these keys should be used for provisioning. -3. Consider using CyBootloader from CyBootloader_WithLogs folder. It produces logs, which are useful to understand whether CyBootloader works correctly. -4. When running application with SMIF and _smif.json policy the field "smif_id" should be set to 1 for CY8CPROTO_064_SB. -5. Low frequency quartz (32768 Hz) oscillator have to be soldered on CY8CPROTO_064_SB (not present in stock version of board). diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/entrance_exam_runner.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/entrance_exam_runner.py deleted file mode 100644 index ead6127934b..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/entrance_exam_runner.py +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import sys -from execute.enums import DebugCore -from execute.helper import get_target_name -from execute.programmer.programmer import ProgrammingTool -from execute.entrance_exam import entrance_exam - -TOOL_NAME = 'pyocd' # Programming/debugging tool used for communication with device -ACCESS_PORT = DebugCore.debug_sys_ap # Access port used for entrance exam - - -def main(): - """ - Provides high level support for entrance exam procedure. - """ - target = get_target_name(TOOL_NAME, ACCESS_PORT) - if not target: - print('Invalid access port.') - sys.exit(1) - - status = False - tool = ProgrammingTool.create(TOOL_NAME) - if tool.connect(target): - status = entrance_exam(tool) - - if not status: - sys.exit(1) - - -if __name__ == "__main__": - main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/entrance_exam.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/entrance_exam.py deleted file mode 100644 index 8757f02db33..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/entrance_exam.py +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -from time import sleep -from execute.helper import check_mode -from execute.enums import ProtectionState -from execute.gen_data_from_json import ENTRANCE_EXAM_FW_STATUS_REG, ENTRANCE_EXAM_FW_STATUS_MASK, \ - ENTRANCE_EXAM_FW_STATUS_VAL, ENTRANCE_EXAM_REGION_HASH_ADDR, ENTRANCE_EXAM_REGION_HASH_SIZE, \ - ENTRANCE_EXAM_REGION_HASH_MODE, ENTRANCE_EXAM_REGION_HASH_EXPECTED_VAL -from execute.sys_call import region_hash - - -def entrance_exam(tool): - """ - Checks device life-cycle, Flashboot firmware and Flash state. - :param tool: Programming/debugging tool used for communication with device. - :return: True if entrance exam passed, otherwise False. - """ - # Check the device life-cycle stage - print('Check device protection state:') - if not check_mode(tool, ProtectionState.secure): - return False - - # Check if any firmware is launched by FlashBoot and running on the device - print(os.linesep + 'Read Flashboot firmware status:') - fb_firmware_status = tool.read32(ENTRANCE_EXAM_FW_STATUS_REG) - print(f'FB Firmware status = {hex(fb_firmware_status)}') - print(f'Received FB_FW_STATUS = {hex(fb_firmware_status & ENTRANCE_EXAM_FW_STATUS_MASK)}') - print(f'Expected FB_FW_STATUS = {hex(ENTRANCE_EXAM_FW_STATUS_VAL)}') - is_exam_pass = (fb_firmware_status & ENTRANCE_EXAM_FW_STATUS_MASK) == ENTRANCE_EXAM_FW_STATUS_VAL - if is_exam_pass: - print('PASS: FB Firmware status is as expected') - else: - print('FAIL: FB Firmware status is not as expected') - if fb_firmware_status == 0xA1000100: - print('Test firmware exists and running on CM4 core. Device is in SECURE UNCLAIMED mode') - elif fb_firmware_status == 0xA1000101: - print('Secure firmware exists and running on CM0p core. Device is in SECURE CLAIMED mode') - return False - - # Check flash for malicious firmware - print(os.linesep + 'Check if Main Flash of the device is empty:') - if region_hash(tool, ENTRANCE_EXAM_REGION_HASH_ADDR, ENTRANCE_EXAM_REGION_HASH_SIZE, - ENTRANCE_EXAM_REGION_HASH_MODE, ENTRANCE_EXAM_REGION_HASH_EXPECTED_VAL): - print('PASS: Flash value is as expected') - print() - print('*****************************************') - print(' ENTRANCE EXAM TEST PASSED ') - print('*****************************************') - tool.reset() - sleep(0.2) - else: - print('FAIL: Flash value is not as expected') - return False - return True diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/enums.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/enums.py deleted file mode 100644 index 7624fc3f129..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/enums.py +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from enum import IntEnum, Enum - - -class DebugCore(Enum): - """ - Provides set of access ports for programming/debugging. - """ - debug_cm0_ap, debug_cm4_ap, debug_sys_ap = range(3) - - -class ProtectionState(IntEnum): - """ - Provides set of device life-cycle stages. - """ - unknown, virgin, normal, secure, dead = range(5) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/gen_data_from_json.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/gen_data_from_json.py deleted file mode 100644 index b2b815e8798..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/gen_data_from_json.py +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -################################################################################# -# ENTRANCE EXAM REGISTER AND VARIABLE CONSTANTS -################################################################################# -ENTRANCE_EXAM_EFUSE_ASSET_HASH_BASE_REG = 0x402C0840 -ENTRANCE_EXAM_ASSET_HASH_LEN = 16 -ENTRANCE_EXAM_ASSET_HASH_ZEROS = 72 -ENTRANCE_EXAM_ASSET_HASH_EXPECTED_STR = "0xD9 0x1B 0x11 0xAA 0x5D 0x75 0x68 0x6A " \ - "0x12 0x10 0xE0 0x88 0x38 0xE1 0x2B 0x79" - -ENTRANCE_EXAM_LIFECYCLE_STAGE_REG = 0x402C082b -ENTRANCE_EXAM_LIFECYCLE_STAGE_EXPECTED_VAL = 0x01 - -ENTRANCE_EXAM_FW_STATUS_REG = 0x08044800 -ENTRANCE_EXAM_FW_STATUS_VAL = 0xF0000000 -ENTRANCE_EXAM_FW_STATUS_MASK = 0xF0800000 - -ENTRANCE_EXAM_SRAM_ADDR = 0x0802c000 -ENTRANCE_EXAM_SRAM_SIZE = 0x00004000 - -ENTRANCE_EXAM_REGION_HASH_ADDR = 0x10000000 -ENTRANCE_EXAM_REGION_HASH_SIZE = 0x000e0000 -ENTRANCE_EXAM_REGION_HASH_MODE = 255 -ENTRANCE_EXAM_REGION_HASH_EXPECTED_VAL = 0x00 diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/helper.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/helper.py deleted file mode 100644 index 6264202c9e3..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/helper.py +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from execute.enums import DebugCore, ProtectionState -from execute.p6_reg import CYREG_CPUSS_PROTECTION, CYREG_IPC2_STRUCT_DATA, CYREG_EFUSE_SECURE_HASH - - -def check_mode(tool, expected_mode: ProtectionState): - """ - Checks device protection state and compares with the expected. - :return: The device protection state. - """ - mode_name = expected_mode.name.upper() - if tool.read32(CYREG_CPUSS_PROTECTION) != int(expected_mode): - print(f'FAIL: Device is not in {mode_name} mode, error code: {hex(tool.read32(CYREG_IPC2_STRUCT_DATA))}') - print('Read Secure Hash from eFUSEs:') # 00 expected on virgin device - got_factory_hash = '' - i = 0 - while i < 24: - hash_byte_val = hex(tool.read8(CYREG_EFUSE_SECURE_HASH + i)) - got_factory_hash += hash_byte_val + ' ' - i += 1 - print(f"Received SECURE_HASH: '{got_factory_hash}'") - return False - print(f'PASS: Device is in {mode_name} mode') - return True - - -def get_target_name(tool_name, access_port): - """ - Gets name of the target based on programming tool and access port. - :param tool_name: The name of programming/debugging tool. - :param access_port: The access port used for communication. - :return: The target name. - """ - if tool_name == 'pyocd': - if access_port == DebugCore.debug_cm0_ap: - target = 'cy8c64xx_cm0' - elif access_port == DebugCore.debug_cm4_ap: - target = 'cy8c64xx_cm4' - elif access_port == DebugCore.debug_sys_ap: - target = 'cy8c64xx_cm4_full' - else: - raise ValueError(f"Unhandled access port value: '{access_port}'") - else: - raise ValueError(f"Unhandled programming tool: '{tool_name}'") - return target diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_memory_map.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_memory_map.py deleted file mode 100644 index 98700bf20cb..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_memory_map.py +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FLASH_ADDRESS = 0x10000000 -FLASH_SIZE = 0x000e0000 diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_reg.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_reg.py deleted file mode 100644 index 2e8e630aed9..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/p6_reg.py +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -################################################################################# -# PSOC6 BLE REGISTER ADDRESSES -################################################################################# -CYREG_IPC2_STRUCT_ACQUIRE = 0x40230040 # 0x40220040 2M -CYREG_IPC2_STRUCT_NOTIFY = 0x40230048 -CYREG_IPC2_STRUCT_DATA = 0x4023004C -CYREG_IPC2_STRUCT_DATA1 = 0x40230050 # for 2M only -CYREG_IPC2_STRUCT_LOCK_STATUS = 0x40230050 # 0x4023005C -CYREG_CPUSS_PROTECTION = 0x40210500 # 0x4023005C 2M - -CYREG_EFUSE_FACTORY_HASH = 0x402c082c -CYREG_EFUSE_LIFECYCLE_STAGE = 0x402c082b -CYREG_EFUSE_SECURE_HASH = 0x402c0814 -CYREG_EFUSE_LAST_BYTE = 0x402c0879 - -NVSTORE_AREA_1_ADDRESS = 0x100FB600 -NVSTORE_OEM_ADDRESS = 0x100FFA00 -NVSTORE_DEV_KEY_ADDRESS = 0x100FFC00 -NVSTORE_UDS_ADDRESS = 0x100FFE00 - -################################################################################# -# PSOC6 BLE SFLASH ADDRESSES -################################################################################# -SFLASH_TOC1_ADDR = 0x16007800 -SFLASH_TOC1_LEN = 0x1C -SFLASH_TOC2_ADDR = 0x16007c00 -SFLASH_TOC2_LEN = 0x30 -TOC1_ROW_IDX = 60 -TOC1_DUPL_ROW_IDX = 61 -TOC2_ROW_IDX = 62 -TOC2_DUPL_ROW_IDX = 63 -TOC1_BYTE_SIZE = 0x1C # Stored as 1st word of TOC1 -MAGIC_NUMBER1 = 0x01211219 # Stored as 2nd word of TOC1 -NUM_OBJECTS_TOC1 = 0x4 # Stored as 3rd word of TOC1 -SFLASH_TRIM_START_ADDR = 0x16000200 # Stored as 4th word of TOC1 -SFLASH_HV_PARAM_TABLE_ADDR = 0x16000400 -SRAM_HV_PARAM_TABLE_ADDR = 0x08001000 # Only for *C PSoC6ABLE2 silicon -SFLASH_UNIQUEID_START_ADDR = 0x16000600 # Stored as 5th word of TOC1 -FLASHBOOT_START_ADDR = 0x16002000 # Stored as 6th word of TOC1 -SFLASH_SYSCALL_TABLE_PTR_ADDR = 0x16000004 # Stored as 7th word of TOC1 -SFLASH_SYSCALL_TABLE_PTR = 0x16004100 -SFLASH_SKIP_HASH = 0x16000008 -SFLASH_FLL_CONTROL = 0x16000008 -SFLASH_NORMAL_ACCESS_CTL = 0x16000008 -MAGIC_NUMBER2 = 0x01211220 -SFLASH_FLL_EN_IDX = 0x2 - -################################################################################# -# CONSTANTS AND DEFINITIONS -################################################################################# -# any random SRAM address. Fixing it to 0x2000 for all sram_scratch purposes. -# SRAM_SCRATCH = 0x08046000 -# SRAM_SCRATCH_SIZE = 0x00000800 -FLASH_START_ADDR = 0x10000000 -FLASH_SHA256_STR_ADDR = 0x10000100 -FLASH_SHA256_STR_LEN = 12 -FLASH_SHA256_DIG_ADDR = 0x10000110 -FLASH_SIZE = 0x200000 # 2 MB for PSoC 6A-2M -SFLASH_START_ADDR = 0x16000000 -SFLASH_SIZE = 0x8000 - -GENERAL_TRIM_TABLE_HASH_ADDR = 0x16000200 -TRIM_START_ADDR = 0x16000203 -TRIM_TABLE_LEN_ADDR = 0x16000200 -WFLASH_START_ADDR = 0x14000000 -WFLASH_SIZE = 0x8000 -SRAM_START_ADDR = 0x08000000 -SRAM_SIZE = 0x48000 -# SRAM_PUB_ADDR = 0x08046800 # 2M: 0x080ff400 -ADDR_FMPARAMSTRUCT = 0x08000800 -FLASH_ROW_SIZE = 512 -# Number of trials -TRIAL_MAX = 300 -SYSTEM_RESET = 0x0 -ONLY_CM4_RESET = 0x1 -INVALIDRESETTYPE = 0x3 -R_ACCESS = 0x01 -W_ACCESS = 0x02 -X_ACCESS = 0x04 -NIL_ACCESS = 0x00 diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/__init__.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/__init__.py deleted file mode 100644 index acba3a75512..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/__init__.py +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from . import base -from . import programmer -from . import pyocd_wrapper diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/base.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/base.py deleted file mode 100644 index 0bd3d25f101..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/base.py +++ /dev/null @@ -1,179 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from enum import Enum -from abc import ABCMeta, abstractmethod - - -class ResetType(Enum): - SW = 1, - HW = 2 - - -class Interface(Enum): - SWD = 1 - JTAG = 2 - - -class ProgrammerBase(metaclass=ABCMeta): - def __init__(self): - pass - - @abstractmethod - def connect(self, target_name=None, interface=None): - """ - Connects to target. - :param target_name: The target name. - :param interface: Debug interface. - :return: True if connected successfully, otherwise False. - """ - raise NotImplementedError() - - @abstractmethod - def disconnect(self): - """ - Disconnects from target. - """ - raise NotImplementedError() - - @abstractmethod - def set_frequency(self, value_khz): - """ - Sets probe frequency. - :param value_khz: Frequency in kHz. - """ - raise NotImplementedError() - - @abstractmethod - def halt(self): - """ - Halts the target. - """ - raise NotImplementedError() - - @abstractmethod - def resume(self): - """ - Resumes the execution - """ - raise NotImplementedError() - - @abstractmethod - def reset(self, reset_type=ResetType.SW): - """ - Resets the target. - :param reset_type: The reset type. - """ - raise NotImplementedError() - - @abstractmethod - def reset_and_halt(self, reset_type=ResetType.SW): - """ - Resets the target and halts the CPU immediately after reset. - :param reset_type: The reset type. - """ - raise NotImplementedError() - - @abstractmethod - def read8(self, address): - """ - Reads 8-bit value from specified memory location. - :param address: The memory address to read. - :return: The read value. - """ - raise NotImplementedError() - - @abstractmethod - def read16(self, address): - """ - Reads 16-bit value from specified memory location. - :param address: The memory address to read. - :return: The read value. - """ - raise NotImplementedError() - - @abstractmethod - def read32(self, address): - """ - Reads 32-bit value from specified memory location. - :param address: The memory address to read. - :return: The read value. - """ - raise NotImplementedError() - - @abstractmethod - def write8(self, address, value): - """ - Writes 8-bit value by specified memory location. - :param address: The memory address to write. - :param value: The 8-bit value to write. - """ - raise NotImplementedError() - - @abstractmethod - def write16(self, address, value): - """ - Writes 16-bit value by specified memory location. - :param address: The memory address to write. - :param value: The 16-bit value to write. - """ - raise NotImplementedError() - - @abstractmethod - def write32(self, address, value): - """ - Writes 32-bit value by specified memory location. - :param address: The memory address to write. - :param value: The 32-bit value to write. - """ - raise NotImplementedError() - - @abstractmethod - def read_reg(self, reg_name): - """ - Gets value of a core register. - :param reg_name: Core register name. - :return: The register value. - """ - raise NotImplementedError() - - @abstractmethod - def write_reg(self, reg_name, value): - """ - Sets value of a core register. - :param reg_name: Core register name. - :param value: The value to set. - """ - raise NotImplementedError() - - @abstractmethod - def erase(self, address, size): - """ - Erases entire device flash or specified sectors. - :param address: The memory location. - :param size: The memory size. - """ - raise NotImplementedError() - - @abstractmethod - def program(self, filename, file_format=None, address=None): - """ - Programs a file into flash. - :param filename: Path to a file. - :param file_format: File format. Default is to use the file's extension. - :param address: Base address used for the address where to flash a binary. - :return: True if programmed successfully, otherwise False. - """ - raise NotImplementedError() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/exceptions.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/exceptions.py deleted file mode 100644 index 0183ced9e30..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/exceptions.py +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from pyocd.core.exceptions import TransferFaultError - - -class ExtendedTransferFaultError(TransferFaultError): - def __str__(self): - desc = super().__str__() - desc += ' If address points to a register it should be aligned with the register size.' - return desc diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/programmer.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/programmer.py deleted file mode 100644 index 2beda8b8c70..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/programmer.py +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from execute.programmer.pyocd_wrapper import Pyocd - - -tools = { - 'pyocd': Pyocd -} - - -class ProgrammingTool: - @staticmethod - def create(name): - tool_type = tools[name] - tool = tool_type() - return tool diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/pyocd_wrapper.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/pyocd_wrapper.py deleted file mode 100644 index 076250a4fbc..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/programmer/pyocd_wrapper.py +++ /dev/null @@ -1,272 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from execute.programmer.base import ProgrammerBase, Interface, ResetType -from pyocd.core.helpers import ConnectHelper -from pyocd.core import exceptions -from pyocd.flash import loader -from pyocd.flash.loader import FlashEraser -from pyocd import coresight -from execute.programmer.exceptions import ExtendedTransferFaultError - - -class Pyocd(ProgrammerBase): - def __init__(self): - super(Pyocd, self).__init__() - self.session = None - self.board = None - self.target = None - self.probe = None - - def connect(self, target_name=None, interface=None, probe_id=None): - """ - Connects to target using default debug interface. - :param target_name: The target name. - :param interface: Debug interface. - :param probe_id: Probe serial number. - :return: True if connected successfully, otherwise False. - """ - if interface: - raise NotImplementedError - else: - if target_name: - options = { - 'target_override': target_name - } - else: - options = {} - self.session = ConnectHelper.session_with_chosen_probe(blocking=True, options=options, board_id=probe_id, unique_id=probe_id) - if self.session is None: - return False - self.board = self.session.board - try: - self.session.open() - except exceptions.TransferFaultError as e: - if not self.board.target.is_locked(): - print(f"Transfer fault while initializing board: {e}") - return False - except Exception as e: - print(f"Exception while initializing board: {e}") - return False - - self.target = self.board.target - self.probe = self.session.probe - - # Write infinite loop into RAM and start core execution - self.halt() - # B662 - CPSIE I - Enable IRQ by clearing PRIMASK - # E7FE - B - Jump to address (argument is an offset) - self.write32(0x08000000, 0xE7FEB662) - self.write_reg('pc', 0x08000000) - self.write_reg('sp', 0x08001000) - self.write_reg('xpsr', 0x01000000) - self.resume() - - return True - - def disconnect(self): - """ - Closes active connection. - """ - if self.session is None: - raise ValueError('Debug session is not initialized.') - self.session.close() - - def set_frequency(self, value_khz): - """ - Sets probe frequency. - :param value_khz: Frequency in kHz. - """ - if self.probe is None: - raise ValueError('Debug probe is not initialized.') - self.probe.set_clock(value_khz * 1000) - - def halt(self): - """ - Halts the target. - """ - if self.session is None: - raise ValueError('Debug session is not initialized.') - self.target.halt() - - def resume(self): - """ - Resumes the execution - """ - if self.target is None: - raise ValueError('Target is not initialized.') - self.target.resume() - - def reset(self, reset_type=ResetType.SW): - """ - Resets the target. - :param reset_type: The reset type. - """ - if self.target is None: - raise ValueError('Target is not initialized.') - self.target.reset(reset_type=reset_type) - - def reset_and_halt(self, reset_type=ResetType.SW): - """ - Resets the target and halts the CPU immediately after reset. - :param reset_type: The reset type. - """ - if self.target is None: - raise ValueError('Target is not initialized.') - self.target.reset_and_halt(reset_type=reset_type) - - def read8(self, address): - """ - Reads 8-bit value from specified memory location. - :param address: The memory address to read. - :return: The read value. - """ - if self.target is None: - raise ValueError('Target is not initialized.') - try: - data = self.target.read_memory(address, transfer_size=8) - except exceptions.TransferFaultError as e: - raise ExtendedTransferFaultError(e.fault_address, e.fault_length) - return data - - def read16(self, address): - """ - Reads 16-bit value from specified memory location. - :param address: The memory address to read. - :return: The read value. - """ - if self.target is None: - raise ValueError('Target is not initialized.') - if (address & 0x01) == 0: - try: - data = self.target.read_memory(address, transfer_size=16) - except exceptions.TransferFaultError as e: - raise ExtendedTransferFaultError(e.fault_address, e.fault_length) - return data - else: - raise ValueError('Address not aligned.') - - def read32(self, address): - """ - Reads 32-bit value from specified memory location. - :param address: The memory address to read. - :return: The read value. - """ - if self.target is None: - raise ValueError('Target is not initialized.') - if (address & 0x03) == 0: - try: - data = self.target.read_memory(address, transfer_size=32) - except exceptions.TransferFaultError as e: - raise ExtendedTransferFaultError(e.fault_address, e.fault_length) - return data - else: - raise ValueError('Address not aligned.') - - def write8(self, address, value): - """ - Writes 8-bit value by specified memory location. - :param address: The memory address to write. - :param value: The 8-bit value to write. - """ - if self.target is None: - raise ValueError('Target is not initialized.') - try: - data = self.target.write_memory(address, value, transfer_size=8) - except exceptions.TransferFaultError as e: - raise ExtendedTransferFaultError(e.fault_address, e.fault_length) - return data - - def write16(self, address, value): - """ - Writes 16-bit value by specified memory location. - :param address: The memory address to write. - :param value: The 16-bit value to write. - """ - if self.target is None: - raise ValueError('Target is not initialized.') - try: - data = self.target.write_memory(address, value, transfer_size=16) - except exceptions.TransferFaultError as e: - raise ExtendedTransferFaultError(e.fault_address, e.fault_length) - return data - - def write32(self, address, value): - """ - Writes 32-bit value by specified memory location. - :param address: The memory address to write. - :param value: The 32-bit value to write. - """ - if self.target is None: - raise ValueError('Target is not initialized.') - try: - data = self.target.write_memory(address, value, transfer_size=32) - except exceptions.TransferFaultError as e: - raise ExtendedTransferFaultError(e.fault_address, e.fault_length) - return data - - def read_reg(self, reg_name): - """ - Gets value of a core register. - :param reg_name: Core register name. - :return: The register value. - """ - reg = reg_name.lower() - if reg in coresight.cortex_m.CORE_REGISTER: - value = self.target.read_core_register(reg) - return value - else: - raise ValueError(f'Unknown core register {reg}.') - - def write_reg(self, reg_name, value): - """ - Sets value of a core register. - :param reg_name: Core register name. - :param value: The value to set. - :return: The register value. - """ - reg = reg_name.lower() - if reg in coresight.cortex_m.CORE_REGISTER: - self.target.write_core_register(reg, value) - else: - raise ValueError(f'Unknown core register {reg}.') - - def erase(self, address, size): - """ - Erases entire device flash or specified sectors. - :param address: The memory location. - :param size: The memory size. - """ - region = self.session.target.memory_map.get_region_for_address(address) - if not region: - raise ValueError('Address 0x%08x is not within a memory region.' % address) - if not region.is_flash: - raise ValueError('Address 0x%08x is not in flash.' % address) - eraser = FlashEraser(self.session, FlashEraser.Mode.SECTOR) - address_range = f"{hex(address)}-{hex(address + size)}" - eraser.erase([address_range]) - - def program(self, filename, file_format=None, address=None): - """ - Programs a file into flash. - :param filename: Path to a file. - :param file_format: File format. Default is to use the file's extension. - :param address: Base address used for the address where to flash a binary. - :return: True if programmed successfully, otherwise False. - """ - if self.session is None: - raise ValueError('Debug session is not initialized.') - programmer = loader.FileProgrammer(self.session, chip_erase='sector') - programmer.program(filename, base_address=address, file_format=file_format) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/provision_device.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/provision_device.py deleted file mode 100644 index cb135b2b543..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/provision_device.py +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -from time import sleep -from execute.helper import check_mode -from execute.enums import ProtectionState -from execute.sys_call import get_prov_details, provision_keys_and_policies -from execute.p6_memory_map import FLASH_ADDRESS, FLASH_SIZE -from execute.gen_data_from_json import ENTRANCE_EXAM_FW_STATUS_REG, ENTRANCE_EXAM_FW_STATUS_MASK, \ - ENTRANCE_EXAM_FW_STATUS_VAL -from execute.p6_reg import CYREG_CPUSS_PROTECTION, NVSTORE_AREA_1_ADDRESS - - -def provision_execution(tool, pub_key_json, prov_cmd_jwt, cy_bootloader_hex): - """ - Programs Cypress Bootloader and calls system calls for device provisioning. - :param tool: Programming/debugging tool used for communication with device. - :param pub_key_json: File where to save public key in JSON format. - :param prov_cmd_jwt: Path to provisioning JWT file (packet which contains - all data necessary for provisioning, including policy, authorization - packets and keys). - :param cy_bootloader_hex: Path to Cypress Bootloader program file. - :return: True if provisioning passed, otherwise False. - """ - tool.set_frequency(200) - - print("CPUSS.PROTECTION state: '0': UNKNOWN. '1': VIRGIN. '2': NORMAL. '3': SECURE. '4': DEAD.") - print(hex(CYREG_CPUSS_PROTECTION), hex(tool.read32(CYREG_CPUSS_PROTECTION))) - - reset_device(tool) - result, key = get_prov_details(tool, 1) - print('Device public key has been read successfully.' if result else 'FAIL: Cannot read device public key.') - print(key) - - with open(os.path.join(pub_key_json), 'w') as json_file: - json_file.write(key) - - # Check the device life-cycle stage - print('Check device protection state') - if not check_mode(tool, ProtectionState.secure): - return False - - print(os.linesep + 'Erase main flash and TOC3:') - print('erasing...') - tool.erase(FLASH_ADDRESS, FLASH_SIZE) - reset_device(tool) - - print(os.linesep + 'Read FB Firmware status:') - fb_firmware_status = tool.read32(ENTRANCE_EXAM_FW_STATUS_REG) - print(f'FB Firmware status = {hex(fb_firmware_status)}') - # Print Expected and received LIFECYCLE_STAGE values - print(f'Received FB_FW_STATUS = {hex(fb_firmware_status & ENTRANCE_EXAM_FW_STATUS_MASK)}') - print(f'Expected FB_FW_STATUS = {hex(ENTRANCE_EXAM_FW_STATUS_VAL)}') - # Verify if received value is the same as expected - is_exam_pass = (fb_firmware_status & ENTRANCE_EXAM_FW_STATUS_MASK) == ENTRANCE_EXAM_FW_STATUS_VAL - print('PASS: FB Firmware status is as expected' if is_exam_pass else 'FAIL: FB Firmware status is not as expected') - - if is_exam_pass: - print(os.linesep + 'PROGRAMMING APP HEX:') - tool.program(cy_bootloader_hex) - reset_device(tool) - - if is_exam_pass: - print(os.linesep + 'Run provisioning syscall') - blow_secure_fuse = 1 # indicates whether to convert device to SECURE CLAIMED mode - is_exam_pass = provision_keys_and_policies(tool, blow_secure_fuse, os.path.join(prov_cmd_jwt)) - print(hex(NVSTORE_AREA_1_ADDRESS) + ': ', sep=' ', end='', flush=True) - if is_exam_pass: - i = 0 - while i < 8 * 4: # output 8 words - print(hex(tool.read32(NVSTORE_AREA_1_ADDRESS + i)) + ' ', sep=' ', end='', flush=True) - i += 4 - print(os.linesep) - else: - print('FAIL: Unexpected ProvisionKeysAndPolicies syscall response') - - if is_exam_pass: - print('*****************************************') - print(" PROVISIONING PASSED ") - print("*****************************************") - - reset_device(tool) - return is_exam_pass - - -def reset_device(tool): - """ - Resets device and waits for device initialization. - :param tool: Programming/debugging tool used for communication with device. - """ - tool.reset() - sleep(0.2) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/sys_call.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/sys_call.py deleted file mode 100644 index a74bc4fce42..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/execute/sys_call.py +++ /dev/null @@ -1,198 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -from execute.gen_data_from_json import ENTRANCE_EXAM_SRAM_ADDR, ENTRANCE_EXAM_SRAM_SIZE -from execute.p6_reg import CYREG_IPC2_STRUCT_ACQUIRE, CYREG_IPC2_STRUCT_DATA, CYREG_IPC2_STRUCT_NOTIFY, \ - CYREG_IPC2_STRUCT_LOCK_STATUS - -PROVISION_KEYS_AND_POLICIES_OPCODE = 0x33 # ProvisionKeysAndPolicies API opcode -GET_PROV_DETAILS_OPCODE = 0x37 # GetProvDetails() API opcode -REGION_HASH_OPCODE = 0x31 # RegionHash() API opcode - - -def region_hash(tool, address, length, mode, exp_value): - """ - Procedure calls RegionHash syscall over IPC and read response. - :param tool: Programming/debugging tool used for communication with device. - :param address: Region hash address. - :param length: Region hash size. - :param mode: Region hash mode. - :param exp_value: Region hash expected value. - :return: True if syscall executed successfully, otherwise False. - """ - # Acquire IPC structure - tool.write32(CYREG_IPC2_STRUCT_ACQUIRE, 0x80000000) - ipc_acquire = 0 - while (ipc_acquire & 0x80000000) == 0: - ipc_acquire = tool.read32(CYREG_IPC2_STRUCT_ACQUIRE) - - # Set RAM address and Opcode - op_code = (REGION_HASH_OPCODE << 24) + (exp_value << 16) + (mode << 8) + 0 - tool.write32(CYREG_IPC2_STRUCT_DATA, ENTRANCE_EXAM_SRAM_ADDR) - tool.write32(ENTRANCE_EXAM_SRAM_ADDR, op_code) - - scratch_addr = ENTRANCE_EXAM_SRAM_ADDR + 0x08 - tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x04, scratch_addr) - tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x08, length) - tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x0C, address) - - # IPC_STRUCT[ipc_id].IPC_NOTIFY - - tool.write32(CYREG_IPC2_STRUCT_NOTIFY, 0x00000001) - - # Wait on response - response = 0x80000000 - while (response & 0x80000000) != 0: - response = tool.read32(CYREG_IPC2_STRUCT_LOCK_STATUS) - response = tool.read32(ENTRANCE_EXAM_SRAM_ADDR) - - if (response & 0xFF000000) == 0xa0000000: - print('Region compare complete') - return True - else: - print('Region compare error response:') - print(hex(CYREG_IPC2_STRUCT_DATA), hex(tool.read32(CYREG_IPC2_STRUCT_DATA))) - print(hex(ENTRANCE_EXAM_SRAM_ADDR), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR))) - print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x04), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x04))) - print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x08), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x08))) - print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x0C), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x0C))) - return False - - -def get_prov_details(tool, key_id): - """ - Calls GetProvDetails syscall over IPC. - :param tool: Programming/debugging tool used for communication with device. - :param key_id: Public key ID. - :return: True if get provision details successfully, otherwise False. - """ - # Acquire IPC structure - tool.write32(CYREG_IPC2_STRUCT_ACQUIRE, 0x80000000) - print(hex(CYREG_IPC2_STRUCT_ACQUIRE), hex(tool.read32(CYREG_IPC2_STRUCT_ACQUIRE))) - ipc_acquire = 0 - while (ipc_acquire & 0x80000000) == 0: - ipc_acquire = tool.read32(CYREG_IPC2_STRUCT_ACQUIRE) - - # Set RAM address and Opcode - op_code = GET_PROV_DETAILS_OPCODE << 24 - tool.write32(CYREG_IPC2_STRUCT_DATA, ENTRANCE_EXAM_SRAM_ADDR) # IPC_STRUCT.DATA - tool.write32(ENTRANCE_EXAM_SRAM_ADDR, op_code) # SRAM_SCRATCH - - scratch_addr = ENTRANCE_EXAM_SRAM_ADDR + 0x08 - tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x04, scratch_addr) - tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x08, key_id) - tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x0C, 0x0) - - # IPC_STRUCT[ipc_id].IPC_NOTIFY - - tool.write32(CYREG_IPC2_STRUCT_NOTIFY, 0x00000001) - - # Wait on response - response = 0x80000000 - while (response & 0x80000000) != 0: - response = tool.read32(CYREG_IPC2_STRUCT_LOCK_STATUS) - response = tool.read32(ENTRANCE_EXAM_SRAM_ADDR) - - print(hex(CYREG_IPC2_STRUCT_DATA), hex(tool.read32(CYREG_IPC2_STRUCT_DATA))) - print(hex(ENTRANCE_EXAM_SRAM_ADDR), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR))) # Expected MSB=0xA0 - print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x04), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x04))) - print(hex(ENTRANCE_EXAM_SRAM_ADDR + 0x08), hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x08))) - - is_exam_pass = (response & 0xFF000000) == 0xa0000000 - if is_exam_pass: - scratch_addr = tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x04) - read_hash_size = tool.read32(scratch_addr + 0x00) - read_hash_addr = tool.read32(scratch_addr + 0x04) - - i = 0 - response = '' - while i < read_hash_size: - # Save data in string format - hash_byte_chr = chr(tool.read8(read_hash_addr + i)) - response += hash_byte_chr - i += 1 - response = response.strip() - else: - print(hex(CYREG_IPC2_STRUCT_DATA), tool.read32(CYREG_IPC2_STRUCT_DATA)) - print(hex(ENTRANCE_EXAM_SRAM_ADDR), tool.read32(ENTRANCE_EXAM_SRAM_ADDR)) - response = None - - return is_exam_pass, response - - -def provision_keys_and_policies(tool, blow_secure_efuse, filename): - """ - Calls ProvisionKeysAndPolicies syscall over IPC. - :param tool: Programming/debugging tool used for communication with device. - :param blow_secure_efuse: Indicates whether to convert device to SECURE CLAIMED mode. - :param filename: Path to provisioning JWT file (packet which contains - all data necessary for provisioning, including policy, authorization - packets and keys). - :return: True if sending provision keys and policies passed, otherwise False - """ - file_size = os.path.getsize(filename) - if file_size > ENTRANCE_EXAM_SRAM_SIZE: - print('JWT packet too long') - return False - - print('UDS eFuses will be blown' if blow_secure_efuse == 1 else 'UDS eFuses will NOT be blown') - print(f'JWT packet size: {file_size}') - with open(filename, 'r+') as jwt_file: - jwt_file.seek(0) - content = jwt_file.read() - jwt_chars = list(content) - - # Acquires IPC structure. - tool.write32(CYREG_IPC2_STRUCT_ACQUIRE, 0x80000000) - print(hex(CYREG_IPC2_STRUCT_ACQUIRE), hex(tool.read32(CYREG_IPC2_STRUCT_ACQUIRE))) - - ipc_acquire = 0 - while (ipc_acquire & 0x80000000) == 0: - ipc_acquire = tool.read32(CYREG_IPC2_STRUCT_ACQUIRE) - - # Set RAM address and Opcode - tool.write32(CYREG_IPC2_STRUCT_DATA, ENTRANCE_EXAM_SRAM_ADDR) - tool.write32(ENTRANCE_EXAM_SRAM_ADDR, (PROVISION_KEYS_AND_POLICIES_OPCODE << 24) + (blow_secure_efuse << 16)) - - scratch_addr = ENTRANCE_EXAM_SRAM_ADDR + 0x08 - tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x04, scratch_addr) - tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x08, file_size + 0x04) - scratch_addr = ENTRANCE_EXAM_SRAM_ADDR + 0x0C - - for char in jwt_chars: - tool.write8(scratch_addr, ord(char)) - scratch_addr += 1 - - # IPC_STRUCT[ipc_id].IPC_NOTIFY - - tool.write32(CYREG_IPC2_STRUCT_NOTIFY, 0x00000001) - print(hex(CYREG_IPC2_STRUCT_NOTIFY), hex(tool.read32(CYREG_IPC2_STRUCT_NOTIFY))) - # Wait on response - response = 0x80000000 - while (response & 0x80000000) != 0: - response = tool.read32(CYREG_IPC2_STRUCT_LOCK_STATUS) - - # Read response for test - print(hex(CYREG_IPC2_STRUCT_DATA), hex(tool.read32(CYREG_IPC2_STRUCT_DATA))) - print(hex(ENTRANCE_EXAM_SRAM_ADDR) + ': ', sep=' ', end='', flush=True) - i = 0 - while i < 4 * 4: # output 4 words - print(hex(tool.read32(ENTRANCE_EXAM_SRAM_ADDR)) + ' ', sep=' ', end='', flush=True) - i += 4 - print(os.linesep) - - response = tool.read32(ENTRANCE_EXAM_SRAM_ADDR) - result = (response & 0xFF000000) == 0xa0000000 - - print('ProvisionKeysAndPolicies', 'complete' if result else f'error response: {hex(response)}') - return result diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/keys/keygen.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/keys/keygen.py deleted file mode 100644 index f23e74a91f6..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/keys/keygen.py +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -import click -import json -from jwcrypto import jwk - -CUSTOMER_KEY_ID_MIN = 6 -CUSTOMER_KEY_ID_MAX = 10 - -kid_help = 'Key ID to define key slot number in the key storage. Key ID must be in range {}.' - -@click.command() -@click.option('-k', '--kid', 'kId', - type=click.IntRange(CUSTOMER_KEY_ID_MIN, CUSTOMER_KEY_ID_MAX), - default=CUSTOMER_KEY_ID_MIN, - help=kid_help.format(str(list(range(CUSTOMER_KEY_ID_MIN, CUSTOMER_KEY_ID_MAX+1))))) -@click.option('--jwk', 'jwKey', - type=click.File('w'), - default='key.json', - help='Name of the key in JWK format to create.') -@click.option('--pem-priv', 'pemPriv', - type=click.File('wb'), - default=None, - help='Name of the private key in PEM format to create. If it is not given PEM file will not be created.') -@click.option('--pem-pub', 'pemPub', - type=click.File('wb'), - default=None, - help='Name of the public key in PEM format to create. If it is not given PEM file will not be created.') -@click.option('--aes', 'aes', - type=click.File('w'), - default=None, - help='Name of the AES-128 key to create. If it is given only AES key wiil be created and JWK will not.') -def main(kId, jwKey, pemPriv, pemPub, aes): - if aes == None: - key = jwk.JWK.generate(kty='EC', crv='P-256', use='sig') - - keyJson = json.loads(key.export(private_key=True)) - keyJson['kid'] = str(kId) - - keyStr = json.dumps(keyJson, indent=4) - jwKey.write(keyStr) - - if pemPriv != None: - pemPriv.write(key.export_to_pem(private_key=True, password=None)) - - if pemPub != None: - pemPub.write(key.export_to_pem(private_key=False, password=None)) - - print(keyStr) - else: - key = os.urandom(16) - iv = os.urandom(16) - file = key.hex() + '\n' + iv.hex() - aes.write(file) - print('AES-128 KEY: ', key.hex(), sep='\t') - print('AES-128 IV:', iv.hex(), sep='\t') - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/example_cert.pem b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/policy/example_cert.pem similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/example_cert.pem rename to targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/policy/example_cert.pem diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4.json b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/policy/policy_single_stage_CM4.json similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4.json rename to targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/policy/policy_single_stage_CM4.json diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4_smif.json b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/policy/policy_single_stage_CM4_smif.json similarity index 98% rename from targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4_smif.json rename to targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/policy/policy_single_stage_CM4_smif.json index 9bb1f75d0e0..36bb8fb840c 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/policy_single_stage_CM4_smif.json +++ b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/policy/policy_single_stage_CM4_smif.json @@ -90,7 +90,7 @@ "id": 4, "monotonic": 0, "smif_id": 1, - "upgrade": true, + "upgrade": false, "encrypt": false, "encrypt_key_id": 1, "upgrade_auth": [ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex deleted file mode 100644 index ed18b2a5472..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex +++ /dev/null @@ -1,2396 +0,0 @@ -:02000004100DDD -:1000000000C00208334B0D100D000000A14B0D1075 -:1000100000000000000000000000000000000000E0 -:100020000000000000000000000000009D4B0D10CB -:1000300000000000000000009D4B0D109D4B0D10B6 -:100040009D4B0D109D4B0D109D4B0D109D4B0D109C -:100050009D4B0D109D4B0D109D4B0D109D4B0D108C -:100060009D4B0D109D4B0D109D4B0D109D4B0D107C -:100070009D4B0D109D4B0D109D4B0D109D4B0D106C -:100080009D4B0D109D4B0D109D4B0D109D4B0D105C -:100090009D4B0D109D4B0D109D4B0D109D4B0D104C -:1000A0009D4B0D109D4B0D109D4B0D109D4B0D103C -:1000B0009D4B0D109D4B0D109D4B0D109D4B0D102C -:1000C00010B5064C2378002B07D1054B002B02D02E -:1000D000044800E000BF0123237010BDECA7020814 -:1000E00000000000508C0D10044B10B5002B03D005 -:1000F0000349044800E000BF10BDC04600000000F6 -:10010000F0A70208508C0D100021124B124A10B5B6 -:10011000D8601C68002C06DB914202D101204042CD -:1001200010BD0131F5E79142F8D00121996000211D -:100130001C69002C03DA9142F0D00131F8E79142BA -:10014000ECD0A0220368120600209342E8D01800E9 -:10015000E6E7C04600002340983A00001FB50023A0 -:100160000193D82300049B05C018029001AB02A89C -:100170000C000393FFF7C8FF002801D1019B236007 -:1001800004B010BD13B5084BC47A986801A9C0B279 -:10019000FFF7E4FF002803D1019B9C42804116BD7C -:1001A00001204042FBE7C046E8AD02081FB5064B00 -:1001B0000004C018029001AB02A801910393FFF75D -:1001C000A3FF05B000BDC0460001003610B5034BCB -:1001D000C17A9868C0B2FFF7E9FF10BDE8AD020828 -:1001E000F0B50F000400002685B0BE4201D100200A -:1001F0003EE0A0221F4BD2009A582378032A04D055 -:10020000092B02D801361034EFE71B4A0A33DB0012 -:1002100099580029F6D0D3185B6801AD2B7163782B -:1002200001916B71A3782900AB71E378A068EB7141 -:1002300023792B7263796B72E3886B8102F0B0FBD8 -:10024000002815D1237B2900AB71637BA068EB717B -:10025000E3896B8102F04AFB002809D1A06802F013 -:1002600025FC002804D1A06802F008FC0028C9D0B1 -:1002700005B0F0BD00002140E8AD020870B50600F1 -:100280000024104AA3019B180F491A68A3015B18A8 -:100290001B68002A04DA0134102CF2D1002070BD52 -:1002A000002BF8DB094B3100E518AD01280002F006 -:1002B0001DFB0028F3D1280002F0E0FB0028EAD063 -:1002C000EDE7C04604202440242024408090000113 -:1002D00073B50E0004000025B54201D1002076BDA3 -:1002E0006A462378694613706378E0685370A37890 -:1002F0009370E378D370A388938002F06BFE00289C -:10030000EDD16A46A37969461370E379E0685370CA -:10031000237A93706389938002F000FE0028DED177 -:10032000E06802F0CDFE0028D9D1E06802F0AEFE10 -:1003300010340028D3D10135CEE773B50E00040088 -:100340000025B54201D1002076BD6A462378694672 -:1003500013706378E0685370A3789370E378D37078 -:10036000A388938002F036FD0028EDD16A46A37978 -:1003700069461370E379E0685370237A9370638958 -:10038000938002F0CBFC0028DED1E06802F0A2FDF1 -:100390000028D9D1E06802F079FD10340028D3D1CB -:1003A0000135CEE7F0B50F000400002685B0BE424F -:1003B00002D1002005B0F0BD236801AD019323797F -:1003C00029002B71637960696B71A379AB71E37953 -:1003D000EB71237A2B72637A6B7263896B8102F003 -:1003E000DDFB0028E6D1237B2900AB71637B6069CC -:1003F000EB71A37B2B72238A6B8102F06FFB0028C9 -:10040000D8D1606902F066FC0028D3D1606902F09F -:100410003DFC18340028CDD10136C8E730B5174B64 -:1004200085B001930D2301AD2B71437804006B71EE -:1004300083782900AB71C378EB7103792B72437910 -:100440006B72C38880686B8102F0AAFA002813D10E -:10045000237B2900AB71637BA068EB71E3896B811F -:1004600002F044FA002807D1A06802F01FFB002820 -:1004700002D1A06802F002FB05B030BD00C0020846 -:10048000B02310B55B055B78124C232B1BD00B21DE -:100490002000FFF7A5FE00281AD10F48FFF7EEFE57 -:1004A000002815D10A210D48FFF712FF00280FD1AF -:1004B00004210B48FFF741FF002809D10121094819 -:1004C000FFF770FF04E02000FFF7A8FF0028DED050 -:1004D00010BDC0462C7C0D10287B0D10347B0D10F8 -:1004E000D47B0D10147C0D1010B501210148FFF7CD -:1004F00077FE10BDDC7C0D100022124B124910B5A6 -:10050000D8601C68002C05DB8A4201D1012010BD97 -:100510000132F6E78A42F9D001229A6000220B49A3 -:100520001C69002C03DA8A42F0D00132F8E78A42D3 -:10053000ECD0A0220368120600209342E7D01800F6 -:10054000E5E7C04600002340983A00000094357764 -:1005500010B5D42488B005930A9BA40506930B9B81 -:100560000094029002AC68460194039104920793B0 -:10057000FFF7C2FF08B010BD00B5064B89B000936D -:10058000029002AB6846019303910492FFF7B4FF17 -:1005900009B000BD000B003510B5074C88B00094C1 -:1005A000029002AC68460194039104920593FFF710 -:1005B000A3FF08B010BDC046000E003500B5064BC5 -:1005C00089B00093029002AB6846019303910492B4 -:1005D000FFF792FF09B000BD000C003510B588B0E0 -:1005E00005930A9B074C06930B9B0094029002AC68 -:1005F00068460194039104920793FFF77DFF08B0CA -:1006000010BDC046000D003500B5054B89B0009304 -:10061000029002AB68460193FFF76EFF09B000BD80 -:10062000000A003500B5054B89B00093029002AB7B -:1006300068460193FFF760FF09B000BD0005003573 -:1006400000B5064B89B00093029002AB6846019357 -:1006500003910492FFF750FF09B000BD000400357C -:100660001FB5054B02900093684602AB01930391BE -:10067000FFF742FF05B000BD001000357FB5064B07 -:100680000390019301A803AB029304910592FFF735 -:1006900033FF07B000BDC0460011003510B5074C50 -:1006A00086B00094029002AC6846019403910492D3 -:1006B0000593FFF721FF06B010BDC04600120035BC -:1006C00010B5074C86B00094029002AC68460194C5 -:1006D000039104920593FFF70FFF06B010BDC046CB -:1006E000000900357FB5054B0390019301A803ABCA -:1006F0000293FFF701FF07B000BDC04600060035BA -:100700007FB5064B0390019301A803AB02930491BC -:100710000592FFF7F1FE07B000BDC04600070035A7 -:100720007FB5054B0390019301A803AB029304919D -:10073000FFF7E2FE07B000BD000800357FB5064BAD -:100740000390019301A803AB029304910592FFF774 -:10075000D3FE07B000BDC0460002003510B5074CFF -:1007600086B00094029002AC684601940391049212 -:100770000593FFF7C1FE06B010BDC046000100356D -:1007800010B58CB006930E9B0A4C07930F9B0194F7 -:100790000893109B03900993119B03AC0A93129B3F -:1007A00001A80294049105920B93FFF7A5FE0CB0EB -:1007B00010BDC04600030035F0B58DB01D0012AB72 -:1007C00040CB02921B780F000393002305AA04A9D3 -:1007D0000493059300F03DF9041E3BD1204B3A00F1 -:1007E00000930599029B049806F08EFC002834DDE6 -:1007F000022007AA06A9FF300694079401F0AEF97B -:10080000002803D12900069800F0F4FF812007AAF0 -:1008100006A9400001F0A2F9652400281ED131008C -:10082000069800F077FD041E14D108A9380000F0E6 -:1008300028F9041E0ED131000B9800F063FB041E52 -:1008400008D1039A29000B9800F03AF9040008989F -:1008500006F0F0FB20000DB0F0BD14246442F9E76F -:10086000005F2D00F0B51F00002387B002910392B6 -:1008700004A905AA0493059300F0EBF8041E2ED1F9 -:10088000059800F07FF8040006F0FEFE051E31D04A -:100890001A4B0200009305992300049806F034FCDB -:1008A000002822DD280006F01FFC061E20D00100D3 -:1008B000134800F09FF8002814D00069002811D0D8 -:1008C000039B220000930197029B2900FFF774FF0E -:1008D0000400300006F0AEFB280006F0DFFE20002A -:1008E00007B0F0BD01246442F3E714246442F3E747 -:1008F0000524FBE764246442F1E7C046005F2D0055 -:10090000EC7C0D1010B5010004000B4806F0CAFF86 -:10091000002398420DD02100084806F0C3FF0123B0 -:10092000002806D02100064806F0BCFF43424341A0 -:100930005B00180010BDC046F37D0D10FC7D0D104E -:10094000087E0D1010B5010004000B4806F0AAFF48 -:10095000002398420DD02100084806F0A3FF012390 -:10096000002806D02100064806F09CFF4342434180 -:100970005B00180010BDC0460D7E0D10167E0D10D8 -:100980001E7E0D100323584380089843043070479F -:10099000F8B5C3680D000860062B21D18468124F9A -:1009A000002C01D12000F8BD266A002E06D03100AF -:1009B0000E4806F077FF002802D16C602468EFE74C -:1009C00031000B4806F06EFF002801D1AC60F5E75E -:1009D0003100380006F066FF0028EFD1EC60EDE74B -:1009E00002204042DFE7C046357E0D10267E0D1006 -:1009F0002C7E0D10F0B507000D00002491B001AE63 -:100A0000002D02D1280011B0F0BD296A002904D0C0 -:100A1000380006F047FF0028F4D0AB68002B06D062 -:100A20000E2C12D8A200955101341D00E8E72B6866 -:100A3000002BFAD1002C0AD0013CA3009B591B6863 -:100A4000002BF2D1002CF7D1EFE70025DAE72500E3 -:100A5000D8E7F8B50E002E21170006F015FF041E8A -:100A60000CD0451C2E21280006F00EFF002805D0D2 -:100A7000001B0138386000203560F8BD1620404268 -:100A8000FBE770B5050000200C0006F0B9FA28005D -:100A900006F02AFB002803D02100FFF779FF70BD84 -:100AA00005204042FBE7002304220133002901D145 -:100AB000904203D952001D2BF7D102331800704722 -:100AC000F0B589B005900C000100C24807920027DC -:100AD000FFF790FFB84200D145E18568069702957F -:100AE0000497029B002B00D08AE0EB68062B00D015 -:100AF00039E12E00B84F31003800FFF77BFF079A2D -:100B0000037E9A4200D0DEE03100B448FFF772FF66 -:100B10008369237029003800FFF76CFF2278037E79 -:100B20009A4200D1A8E12D68002DF3D12900AC48EC -:100B3000FFF760FF002806D02300FF335B7B012B0B -:100B400001D18369A3602900A648FFF753FF00285D -:100B500008D02300FF339B7A012B03D1C3685A1EB0 -:100B6000934163702900A048FFF744FF002808D094 -:100B70002300FF331B7B012B03D1C3685A1E934113 -:100B8000E37029009948FFF735FF002806D02300BD -:100B9000FF331B7B012B01D183692371290094480A -:100BA000FFF728FF002809D02300FF331B7E012B0D -:100BB00004D1C3685A1E9341E21CD37729008D48A3 -:100BC000FFF718FF002800D1A6E0C368052B00D06E -:100BD000A2E082682300200012331530FF33FF307B -:100BE000002A00D198E01978012903D119009669EB -:100BF000F5390E700133984200D18DE01268EFE7AD -:100C000002997D48FFF7F6FE002804D0836801931F -:100C1000019B002B03D1029B1B68029361E70199A2 -:100C20007648FFF7E7FE00284AD0036974491800A8 -:100C3000039306F037FE002842D07249039806F06D -:100C400031FE00283CD000266F4AB3009958039823 -:100C500006F028FE071E05D00136172EF4D1052711 -:100C6000183E7F4201996948FFF7C4FE002801D071 -:100C70008369069301996648FFF7BCFE002804D0FB -:100C8000C1698069FFF70FFF0490731C18D0049BA3 -:100C9000002B15DD92227300E31852009A5C012AA2 -:100CA00004D1320006990A32D20011512622FF32B5 -:100CB0009B5C012B04D10A36F600049BA6197360D5 -:100CC000019B1B68A3E73668002E00D012E721E7DE -:100CD0004C49380006F0E6FD002800D0FFE0310066 -:100CE0004A48FFF787FE002806D02300FF331B7C0D -:100CF000012B01D18369636131004548FFF77AFE1A -:100D0000002800D1EBE02300FF331B7C012B00D037 -:100D1000E5E08369A361E2E029003E48FFF76AFE4F -:100D2000002817D0C368052B14D182682300200047 -:100D300015331830FF33FF30002A0BD01978012902 -:100D400003D119009669F5390E700133984201D02C -:100D50001268F1E729003048FFF74CFE002835D033 -:100D600000278369A37005992C48FFF743FE0028EC -:100D700058D000258668002E54D031002448FFF753 -:100D800039FE00280BD063191A001A32FF3212788C -:100D9000012A04D102326A439B1882699A623100A7 -:100DA0001F48FFF727FE00280BD063191A001932DD -:100DB000FF321278012A04D102326A439B188269F9 -:100DC0005A6202350A2D2DD03668D4E7A07007008C -:100DD000C9E7C046F37D0D105C7D0D10117D0D102F -:100DE000187D0D103A7E0D10227D0D102A7D0D10FC -:100DF000397D0D10407D0D10F57C0D10427E0D10DB -:100E0000FF7C0D10047D0D10C0A00208927E0D1015 -:100E10000C7D0D104A7D0D10577D0D105F7D0D105E -:100E2000697D0D1005992F48FFF7E4FD051E20D0C0 -:100E300001002D48FFF7DEFD00280AD02423FF33F0 -:100E4000E35C012B05D1C3685A1E934122004D3249 -:100E5000137029002548FFF7CDFD002809D0912304 -:100E60005B00E35C012B04D1C3684C345A1E9341F0 -:100E70002370380009B0F0BD29001D48FFF7BAFD06 -:100E8000002800D152E68668002E00D14EE63100DF -:100E90001848FFF7AFFD002821D007691649380030 -:100EA00006F000FD002800D012E731001348FFF7DC -:100EB000A1FD002806D02300FF339B7B012B01D12D -:100EC0008369E36031000E48FFF794FD002806D0E7 -:100ED0002300FF33DB7B012B01D18369236136685B -:100EE000D2E7C0466F7D0D107B7D0D10877D0D1004 -:100EF000F57C0D10427E0D10FF7C0D10927E0D10C2 -:100F00000C7D0D10F8B507000C000100BA48FFF782 -:100F100071FDBA4E051E2AD001003000FFF76AFDB0 -:100F2000002808D0230068331B78012B03D1006907 -:100F3000FFF708FD20702900B148FFF75BFD00288E -:100F400008D0230069331B78012B03D10069FFF718 -:100F5000D9FC60702900AB48FFF74CFD002806D093 -:100F600023006A331B78012B01D18369A3703900F8 -:100F7000A548FFF73FFD051E2AD001003000FFF70E -:100F800039FD002808D023006B331B78012B03D1D7 -:100F90000069FFF7D7FCE07029009948FFF72AFDA8 -:100FA000002808D023006C331B78012B03D1006983 -:100FB000FFF7A8FC207129009248FFF71BFD0028CD -:100FC00006D023006D331B78012B01D18369637137 -:100FD00039008E48FFF70EFD051E00D184E00100A8 -:100FE0003000FFF707FD002808D023006E331B7880 -:100FF000012B03D10069FFF7A5FCA07129008048EF -:10100000FFF7F8FC002808D023006F331B78012B72 -:1010100003D10069FFF776FCE07129007948FFF7FA -:10102000E9FC002806D0230070331B78012B01D186 -:101030008369237229007648FFF7DCFC002808D07A -:10104000230071331B78012B03D1C3685A1E9341CF -:10105000637229006F48FFF7CDFC002808D02300F9 -:1010600072331B78012B03D1C3685A1E9341A372BC -:1010700029006948FFF7BEFC002808D0230073331D -:101080001B78012B03D1C3685A1E9341E3722900D8 -:101090006248FFF7AFFC002808D0230074331B78A8 -:1010A000012B03D1C3685A1E9341237329005C4866 -:1010B000FFF7A0FC002808D0230075331B78012B14 -:1010C00003D1C3685A1E9341637329005548FFF743 -:1010D00091FC002808D0230076331B78012B03D124 -:1010E000C3685A1E9341A37339004F48FFF782FC2F -:1010F000050001003000FFF77DFC002808D0230028 -:1011000077331B78012B03D10069FFF71BFC207498 -:1011100029003C48FFF76EFC002808D023008C33E0 -:101120001B78012B03D12300826964331A702900D4 -:101130003E48FFF75FFC00282AD000268768002F72 -:1011400026D039003A48FFF755FC00280AD0A319E9 -:101150001A0078321278012A04D1023272439B18A5 -:1011600082695A6139003348FFF744FC00280AD0ED -:10117000A3191A0079321278012A04D1023272437B -:101180009B1882699A6102360A2E01D03F68D6E721 -:1011900029002948FFF72EFC00282BD00025032723 -:1011A0008668002E26D031002148FFF723FC002856 -:1011B0000AD063191A0082321278012A04D13A0047 -:1011C0006A439B188269DA6331001A48FFF712FC00 -:1011D00000280AD063191A0083321278012A04D138 -:1011E0003A006A439B1882691A6402350A2D01D0BD -:1011F0003668D6E70020F8BD997D0D109D7D0D1055 -:10120000A87D0D10B07D0D10B47D0D10B77D0D10B3 -:10121000BE7D0D10C67D0D10E57D0D10A37E0D1059 -:10122000AD7E0D10B47E0D10CB7D0D10CF7D0D1059 -:10123000697D0D100C7D0D10DD7D0D1070B5040065 -:101240000D0086B00021142201A806F05BFA2900E7 -:101250002000FFF7CFFB0400002C18D021001C4811 -:10126000FFF7C8FB0028F7D00569002D0AD0194EFA -:101270002900300006F016FB00280BD1310001A830 -:1012800006F01AFB210001A8FFF7B4FB04002000C0 -:1012900006B070BD104E2900300006F003FB002898 -:1012A000ECD029000D4806F0FDFA0028E6D00C4EDF -:1012B0002900300006F0F6FA0028DFD0290009489E -:1012C00006F0F0FA0028DDD121000748C1E7C0464A -:1012D000427E0D106A7E0D10537E0D105A7E0D1049 -:1012E000627E0D10477E0D104D7E0D1010B5FFF77C -:1012F00081FB0124002809D08168002906D0044818 -:10130000FFF778FB002801D0C468E4B2200010BDCC -:10131000EB7D0D10F0B5050085B000200C0005F048 -:101320006FFE280005F0E0FE0190002800D14BE29E -:101330000100A148FFF75EFB051E00D0B4E00123C9 -:101340005B42009301999D48FFF754FB051E00D0B6 -:10135000EEE001235B42009301999948FFF74AFBB5 -:10136000051E00D03EE101235B42009301999548A0 -:10137000FFF740FB071E00D122E2934E0100300030 -:10138000FFF75CFF390005003000FFF7AFFF0600F4 -:10139000002D00D1F6E12869FFF7D4FA2300773356 -:1013A00020741E70894E39003000FFF747FF390066 -:1013B00005003000FFF79AFF002D00D1E6E1230081 -:1013C000AA6964331A702833187039008048FFF70F -:1013D00011FB051E00D1E6E101007E48FFF72EFF5C -:1013E000290006007B48FFF781FF0390002E00D103 -:1013F000D0E1B369029329007748FFF71FFF290066 -:1014000006007548FFF772FF002E00D1C7E1B669EC -:10141000230022002100143378323C31029D5E60AB -:101420001D606D462D7B0833507015700232994255 -:10143000F4D139006948FFF7DDFA061E00D1BFE19B -:10144000644F01003800FFF7F9FE31000500380055 -:10145000FFF74CFF0390002D00D1A8E1AB69029388 -:101460005D4F31003800FFF7E9FE3100050038001C -:10147000FFF73CFF002D00D19EE1AD692300220063 -:101480003C338232643402995D6019606946097B9D -:101490000833507011700232A342F4D1019805F064 -:1014A000C9FD009805B0F0BD474F01003800FFF7B7 -:1014B000C5FE290006003800FFF718FF0700002EC0 -:1014C0002FD03069FFF73EFA2300683320701F7079 -:1014D0000023434F290038000093FFF7AFFE290097 -:1014E00006003800FFF702FF0700002E1CD030690D -:1014F000FFF708FA2300693360701F70334F29002B -:101500003800FFF79BFE290006003800FFF7EEFECB -:10151000002E00D113E7B369A37023006A3318705B -:1015200010E701235B42D4E701235B420093E5E728 -:10153000254F01003800FFF781FE29000600380022 -:10154000FFF7D4FE0700002E2DD03069FFF7FAF91F -:1015500023006B33E0701F70214F29003800FFF724 -:101560006DFE290006003800FFF7C0FE0700002EC0 -:101570001DD03069FFF7C6F923006C3320711F704E -:10158000124F29003800FFF759FE290006003800E5 -:10159000FFF7ACFE002E00D1DBE6B36963712300D8 -:1015A0006D331870D8E601235B420093D4E7012322 -:1015B0005B420093E4E7C046997D0D10B47D0D10A9 -:1015C000B77D0D10CB7D0D109D7D0D10B07D0D10E4 -:1015D000CF7D0D10697D0D100C7D0D10DD7D0D1082 -:1015E000A87D0D107A4F01003800FFF727FE290073 -:1015F00006003800FFF77AFE0700002E00D1A1E0B8 -:101600003069FFF79FF923006E33A0711F70714F8F -:1016100029003800FFF712FE290006003800FFF706 -:1016200065FE0700002E00D190E03069FFF76AF9EF -:1016300023006F33E0711F70674F29003800FFF7F8 -:10164000FDFD290006003800FFF750FE002E00D1F6 -:1016500080E0B36923722300703318705F4F290054 -:101660003800FFF7EBFD290006003800FFF73EFECB -:10167000002E73D0F3685A1E9341637223007133B6 -:101680001870574F29003800FFF7D8FD29000600D1 -:101690003800FFF72BFE002E64D0F3685A1E9341EA -:1016A000A3722300723318704E4F29003800FFF7E1 -:1016B000C5FD290006003800FFF718FE002E55D0A2 -:1016C000F3685A1E9341E372230073331870464F38 -:1016D00029003800FFF7B2FD290006003800FFF7A7 -:1016E00005FE002E46D0F3685A1E93412373230053 -:1016F000743318703D4F29003800FFF79FFD290013 -:1017000006003800FFF7F2FD002E37D0F3685A1EAE -:1017100093416373230075331870354F29003800E7 -:10172000FFF78CFD290006003800FFF7DFFD002ED3 -:1017300000D118E6F3685A1E9341A3732300763351 -:10174000187013E601235B42009360E701235B42BC -:10175000009371E701235B4200937FE701235B4223 -:1017600000938EE701235B4200939DE701235B42D8 -:101770000093ACE701235B420093BBE701235B428C -:101780000093CAE701235B4200930BE601235B420F -:1017900000931AE601235B42029600932BE6012395 -:1017A0005B42009334E601235B42009341E6012350 -:1017B0005B420295009353E601235B4200935DE692 -:1017C00001235B42009369E605235B42009368E6D0 -:1017D0009D7D0D10A87D0D10B07D0D10BE7D0D10EE -:1017E000C67D0D10E57D0D10A37E0D10AD7E0D1094 -:1017F000B47E0D10F0B5050085B000200C0005F09A -:10180000FFFB280005F070FC0190002800D181E169 -:101810000100C248FFF7EEF8051E00D13AE1C04FC3 -:1018200001003800FFF70AFD290006003800FFF725 -:101830005DFD002E00D109E1B36923702300FF3361 -:1018400058720023B74F290038000093FFF7F6FCC9 -:10185000290006003800FFF749FD002E00D1F8E00E -:10186000F3685A1E934163702300FF339872AE4FA2 -:1018700029003800FFF7E2FC290006003800FFF7D6 -:1018800035FD002E00D1E8E0F3685A1E9341E37065 -:101890002300FF331873A54F29003800FFF7CEFC53 -:1018A000290006003800FFF721FD002E00D1D8E006 -:1018B000B369A3602300FF3358739D4F290038009C -:1018C000FFF7BCFC290006003800FFF70FFD002ED3 -:1018D00000D1CAE02200B369FF32DBB223779074F3 -:1018E0006377D074A3771075924F29003800FFF703 -:1018F000A5FC290006003800FFF7F8FC002E00D1F7 -:10190000B7E02200B369FF32DBB2611CE3775075A8 -:10191000CB77A11C9075CB77D075874E290030000E -:10192000FFF78CFC290007003000FFF7DFFC002FD9 -:1019300000D1A2E0FB685A1E9341E21CD37723003A -:10194000FF33187601997D48FFF754F80600002F01 -:1019500000D19FE023000122794FFF3301009A73E9 -:10196000DA731A745A743800FFF768FC3100050006 -:101970003800FFF7BBFC0390002D00D181E0AB697C -:101980000293704F31003800FFF758FC310005001A -:101990003800FFF7ABFC002D00D177E0AD692200E5 -:1019A00021002300253209315033FF32FF31029EDE -:1019B0005D601E606E46367B0833167050700232D2 -:1019C0008B42F4D101996048FFF714F8061E00D14C -:1019D0006DE05E4F01003800FFF730FC310005007C -:1019E0003800FFF783FC0390002D57D0AB690293BA -:1019F000544F31003800FFF721FC3100050038005A -:101A0000FFF774FC002D4ED0AD69220023002100A9 -:101A100019322433FF324C31029E5D601E606E46E7 -:101A2000367B08335070167002329942F4D1019916 -:101A30004748FEF7DFFF051E3DD101235B420093BF -:101A4000019805F0F7FA009805B0F0BD01235B425C -:101A5000F8E601235B42009309E701235B42009310 -:101A600019E701235B42009327E701235B420093C0 -:101A70003AE701235B4200934FE701235B42009367 -:101A800060E701235B42029500937AE701235B4202 -:101A9000009384E701235B42009393E701235B42B9 -:101AA00002950093A4E701235B420093ADE7012375 -:101AB0005B420093BBE7274F01003800FFF7BEFBF6 -:101AC000290006003800FFF711FC002E1ED0F36835 -:101AD0005A1E934122004C32137091235B00E05454 -:101AE0001D4F29003800FFF7A9FB29000600380028 -:101AF000FFF7FCFB002EA0D0F3685A1E9341220092 -:101B00004D3213702423FF33E05499E701235B42E5 -:101B10000093E5E705235B42009394E7F37D0D1006 -:101B20005C7D0D103A7E0D10227D0D10187D0D107C -:101B3000407D0D104A7D0D10397D0D10F57C0D1086 -:101B4000927E0D100C7D0D105F7D0D10697D0D10C6 -:101B50006F7D0D10877D0D107B7D0D107FB5DC2313 -:101B60009B0500936C46002302AD01950290154839 -:101B70006B60C460144C0668002E07DBA34203D1DF -:101B80000120404204B070BD0133F4E7A342F7D016 -:101B90000123836000230669002E03DAA342EFD0FD -:101BA0000133F8E7A342EBD0A02300981B0698422C -:101BB00001D00098E6E7029B002013606B680B6081 -:101BC000E0E7C04600002340983A0000F0B5170057 -:101BD0008A22434C9200A544079008910EA8002148 -:101BE000BFB2099305F08EFD0CAA0BA93800FEF7D1 -:101BF000A5FD00260500B0422CD1C02280210B9B00 -:101C0000D2051A40C9058A4237D10C9BDC1DE40875 -:101C100020000D9405F038FD0925061E1AD001009C -:101C20000DAB22003800FEF799FD051E12D16B4660 -:101C3000198C102304930293079B079A3033019366 -:101C4000284B40320392009332000D9B0EA8FEF702 -:101C500097FD0500300005F021FD002D05D1202263 -:101C600009990EA8FEF7ECFC05000EA8FEF7DAFCB9 -:101C7000280099239B009D44F0BD1B4A934207D145 -:101C80000C9B5C0809230134E4085C433B34BFE748 -:101C9000164A934203D10C9BDC082934B8E7144A56 -:101CA000934205D103240C9BDB085C435A34AFE715 -:101CB000104A934205D103240C9BDB085C434A3451 -:101CC000A6E70D4A1B0C1B0493429ED00B4A04004E -:101CD00093429DD10C9BDC1DE4081234640097E70D -:101CE0009CFDFFFF0901202200000170000001603F -:101CF000000002700000026000000370000003603A -:101D00000230800803D001300238FCD1C046C04602 -:101D10007047EFF3108072B6704780F310887047F9 -:101D2000014B18607047C046E0AD0208044B1B68C9 -:101D30001A0008321B68D26F9B181868000E704793 -:101D4000E0AD0208054B1B681A0008321B68D26F11 -:101D50009B181868000AC0B27047C046E0AD020880 -:101D60001D4B98420FD010D840282FD005D80028FE -:101D700030D0102828D019481EE0802828D0802391 -:101D80005B009842F7D1144816E0154B984214D0E6 -:101D900008D8A0231B0698421CD0124B9842EAD1C7 -:101DA000A0200BE0104B98420AD0104B984209D06B -:101DB0000F4B9842DFD10F487047A420C003FBE7C8 -:101DC0000D48F9E70D48F7E70D48F5E70D48F3E74B -:101DD0000D48F1E70020EFE706005200FF00520037 -:101DE000010000F0090000A0040000F0050000F070 -:101DF000030000F0010052000200520003005200F4 -:101E000001005000020050000500520070B50A4D5C -:101E100004002B6831331B78834204D8E62107483D -:101E2000490002F087FA2B681A00B0321088444348 -:101E3000186A201870BDC046E0AD0208AC800D10D5 -:101E400010B50020FFF7E2FF0A4B1C682300B433F3 -:101E50001B68C0180368002B0ADB074B1868FFF7E4 -:101E60007FFF012263689A609A68002AFCD110BD46 -:101E70000248FCE7E0AD020808A802080200500092 -:101E80000D4B10B51860002804D0FE235B42038080 -:101E900000234380094B1B681A0050321278002A35 -:101EA00008D051331B78002B04D0022204490020B3 -:101EB00000F086FB10BDC04618A80208E0AD02087D -:101EC000C1A3020870B5C4050500E40D28D102F0D5 -:101ED00077FE144B144A1A605D609C60DC60134B03 -:101EE0001B6854331978002915D0FFF71FFF040031 -:101EF000FFF728FFFA210134013060430C4B0D4CF1 -:101F000089004443186805F0F3F90100200005F04A -:101F1000EFF9094BC1188020400005F0F5FD70BDB8 -:101F20000648FCE708A802080001001CE0AD020812 -:101F300020A1020860F590009808000006005200F9 -:101F400070B5C40506000D00E40D2AD1002928D083 -:101F500002F036FE144B154A1A605C609E60DD602C -:101F6000134B1B6852331978002915D0FFF7DEFE9A -:101F70000400FFF7E7FEFA210134013060430D4B06 -:101F80000D4C89004443186805F0B2F901002000A7 -:101F900005F0AEF9094BC1188020400005F0B4FDF2 -:101FA00070BD0748FCE7C04608A80208000100050C -:101FB000E0AD020820A10208C0EA21014826000085 -:101FC0000600520070B506000C001500072903D961 -:101FD0001449154802F0AEF91F232A009A4303D092 -:101FE0001249114802F0A6F9114B1B689A695B6906 -:101FF000B01AC0090001C0181F231D40032C07D8C8 -:10200000E400A340A54002689A431543056070BDF3 -:10201000043CE400A340A54042689A431543456050 -:10202000F5E7C046910200005E810D1092020000AB -:10203000E0AD0208F0B585B000900D001400002856 -:1020400000D138E1002A00D135E1072903D94E211A -:102050009A4802F06FF92368012B03D94F21974862 -:1020600002F068F90F2362689A4303D05021934825 -:1020700002F060F91F22237A934303D051218F4845 -:1020800002F058F9E368032B03D952218B4802F080 -:1020900051F92369012B03D95321884802F04AF9E9 -:1020A0006369012B03D95421844802F043F9A369E1 -:1020B000012B03D95521814802F03CF9E369032B38 -:1020C00003D956217D4802F035F9236A012B03D943 -:1020D00057217A4802F02EF9636A012B03D958215F -:1020E000764802F027F9A36A012B03D959217348D6 -:1020F00002F020F9E36A032B03D95A216F4802F05A -:1021000019F9236B072B03D95B216C4802F012F9F4 -:102110002668072D04D9CC216948890002F00AF904 -:102120000122AA400192012E07D96649644802F0B3 -:1021300001F9009B019A9A6004E0002EF9D1009BFE -:10214000019A5A606668072D03D95F495C4802F01E -:10215000F1F80F2332009A4303D05C49584802F04B -:10216000E9F80F215A4FAB0002933B6808007D331A -:102170001A78009B0E40D2181368A9009C46AB0049 -:10218000984063468E4083431E431660227A29009E -:102190000098FFF717FFE668082D03D94D49484816 -:1021A00002F0C8F8032E03D94B49454802F0C2F8A3 -:1021B000032108006B0003933B686F00B8400E409A -:1021C000BE407C331A78009B9A18136883431E43E1 -:1021D00016602669082D03D94049394802F0AAF84B -:1021E000012E03D93E49364802F0A4F8019A009B1B -:1021F000D74301221640AE409B693B401E43009BE3 -:102200009E616669072D03D936492D4802F092F880 -:10221000012E03D934492A4802F08CF801202C4BB6 -:1022200006401968AE400B0084467E331B78009A46 -:10223000D3181A68174037431F600B0062467F337C -:102240001878009B6E001818A36910361340AB4035 -:10225000E56902321540B540B2402B43019D076845 -:102260002A4397433B4303600220042580310A78C8 -:10227000009B9A18636A11685B000340A06A8000A3 -:10228000284003436046256A284018250343E06A36 -:10229000C00028400343206BFF244001204003433B -:1022A000FE20029D80000540AB400020A1430B436F -:1022B000136005B0F0BD0D48FBE7C04607810D1067 -:1022C0005E810D1031030000CD030000CE0300003D -:1022D000E0AD0208F1060000F20600007206000000 -:1022E000730600000C0400000D04000001005A00F9 -:1022F0000B4B70B51B680500B4331B680C00C3188A -:102300001B68002B09DA0B0C03D00649064802F0C3 -:1023100011F80020A4B26C6070BD0448FCE7C04610 -:10232000E0AD0208DE020000AC800D1001008A0062 -:10233000036870B505000C00002B0BDAC2600B0CB3 -:1023400004D0B1210448890001F0F4FF0020A4B2B8 -:10235000AC6070BD0148FCE7AC800D1001008A0044 -:1023600070B505000C1E03D1A221084801F0E2FF60 -:10237000074B1B68B4331B68EB181B68002B03DA90 -:102380000020EB68236070BD0248FCE7B6810D10A9 -:10239000E0AD020801008A00024B1A68002A00D151 -:1023A000186070471CA80208F0B5314D1F002B685B -:1023B00085B0040002910392002B03D1BE212D4869 -:1023C00001F0B8FF2C23FF225C432B683D001C1951 -:1023D0003B0A3F0CA760284F134063603B681540E1 -:1023E000256031331B789D4204D3E6212348490000 -:1023F00001F0A0FF3B681A00B032128855431A6AF8 -:102400003233AD1825611B7865689D4204D3F421F1 -:102410001A48490001F08EFF3B681E6A2B0080338A -:102420005B01F3186361A36801931B0C09D0134F80 -:102430001349380001F07EFF82213800890001F045 -:1024400079FF019B6D011B041A0C13430D4A75198A -:10245000AD182B60039BE361029B23620023A36101 -:102460000A9B002B01D01B88A38105B0F0BDC0469C -:102470001CA8020810820D10E0AD0208AC800D10FF -:102480000702000008100000F0B5040085B0002825 -:1024900003D15B21214801F04DFF6368032B03D971 -:1024A0005D211E4801F046FFE36A002B03D1612144 -:1024B0001A4801F03FFF236B002B03D1622117481C -:1024C00001F038FFA36802AD2B80154B22681B6812 -:1024D000E16ADB8EE0689B18AB706368A26A0393C5 -:1024E00000952369266A676AFFF75EFF00213B00BB -:1024F0000A0000913000FFF757FF216B280001F020 -:10250000A1FE0022AB5E002B06DB1F2213401E3A09 -:102510009A401300034A136005B0F0BD10820D10FD -:10252000E0AD020800E100E0F7B504000F00151E61 -:10253000019304D183211D48490001F0FBFE1C4E8C -:102540003368002B04D108211848FF3101F0F2FE56 -:102550002C235C4332685F4314192669D719002E77 -:1025600020D0BB69002B1FD13368002B1CDA01225D -:102570006368140011009C407B6899402B68090433 -:102580009BB20B432B60019BF5607B62BA61230C0D -:1025900004D0B1210748890001F0CCFE0020A4B28C -:1025A000B460FEBD0448FCE70448FAE710820D1051 -:1025B0001CA80208AC800D1004028A0007028A00E1 -:1025C000F8B5114F04003B680E001500002B04D134 -:1025D00068210E48FF3101F0ADFE2C2060433C68BD -:1025E0002418236A002B04D16C210848FF3101F024 -:1025F000A1FEE369AB4204D90020236AAD00EE508E -:10260000F8BD0348FCE7C0461CA8020810820D1064 -:102610000A028A00002373B504000193984204D192 -:10262000ED212C48490001F085FE2369002B04D1DF -:10263000DC212848FF3101F07DFE6369002B04D1C5 -:10264000EE212448490001F075FE236A002B04D1D5 -:10265000DE212048FF3101F06DFE6269D5682B0C48 -:1026600022D01B04136013681B4B20691B68B43312 -:102670001B68C3181B68002B16DA01A9FFF770FE50 -:102680000026B0420CD10198E26903681E0CDBB24F -:102690009A4205D9226A9B009B58002B00D098478C -:1026A00031002069FFF724FEADB2002D09D0636927 -:1026B0001D6000251B68636AAB4205D098476562C0 -:1026C000A56163691B6873BDA36A002BF8D09847A6 -:1026D000F6E7C04610820D10E0AD020870B5084C58 -:1026E00005002368002B04D1DD210648490001F0D4 -:1026F00021FE2C20454320684019FFF78BFF70BD59 -:102700001CA8020810820D1070B50A4D04002B6839 -:1027100031331B78834204D8E6210748490001F091 -:1027200009FE2B681A00B03210884443186A20183A -:1027300070BDC046E0AD0208AC800D10F8B5174B77 -:102740000D001B6831331B78834225D9002923D023 -:102750001F240B681C401FD1FFF7D6FF07002B6812 -:102760000F4EDA0821003060686804F0CBFF2100CA -:102770003800FFF7BDFD21002A003068FFF7D8FDC3 -:10278000041E07D101003068FFF7B2FD03002000EE -:10279000002B00D00348F8BD0348FCE7E0AD020879 -:1027A00020A8020801018A0003018A00F7B5184F2A -:1027B00004003B680191DE683368834226D9002516 -:1027C000A94202D1FFF7A5FA050038680368002B7B -:1027D0001ADA1F2201232240934064097268A40080 -:1027E0001419226813420DD09A432260002400215C -:1027F000FFF77EFD019B002B02D12800FFF78DFA29 -:102800002000FEBD034CF2E7034CF3E7034CF7E76F -:1028100020A80208020188000301880004018A0040 -:102820000A4B1B68DB681A6882420DD959681F235E -:10283000420918401E3B8340920050581840431EE6 -:102840009841034BC01870470248FCE720A80208D3 -:102850000001880004018A0070B5154E0400336839 -:102860000D009B6CC340DB0703D4A721114801F086 -:1028700061FD0F2D03D9A8210E4801F05BFDF02268 -:102880002B041203290013400F2211400B4331681F -:10289000A402096964188021C9016350605810407E -:1028A000401B431E9841044B4042184070BDC04637 -:1028B000E0AD02086B820D100300C20070B5094D37 -:1028C00004002B689B6CC340DB0703D4C721064878 -:1028D00001F030FD2B6810341B69A402E0580F236F -:1028E000184070BDE0AD02086B820D1070B5040099 -:1028F0000D00002804D17A212448FF3101F01AFD8F -:102900006B89DB0B04D0BD212048490001F012FD8A -:102910000222AB799343012B04D07C211B48FF3169 -:1029200001F008FD0222EB799343012B04D0BE2174 -:102930001648490001F0FEFC6A897F231100994383 -:1029400022D10721AB7952020B4013436A7A31310D -:1029500092071343EA79D2000A4013430122297AED -:102960004A40920113431A0009490A409A420BD186 -:102970006262606A0840801A43425841054B4042F7 -:102980001840054BC01870BD0448FCE76B820D1061 -:10299000DBFEFFE0FDFF3DFF0300C2000100C200BF -:1029A00070B504000D00002804D1C2212E48FF316B -:1029B00001F0C0FC6B89DB0B04D0E1212A484900FF -:1029C00001F0B8FCAB79072B04D9C4212648FF31AC -:1029D00001F0B0FCEB79072B04D9E2212248490031 -:1029E00001F0A8FC2B79073B182B04D9C6211E48FF -:1029F000FF3101F09FFC6B897F22190091430A1E71 -:102A00002ED12968FF3291430A006979A8790A43D7 -:102A100007215B02084018436B7A31319B0718434A -:102A2000EB79DB000B4018430123297A4B40F82156 -:102A30009B0118432B7949051B060B400343636038 -:102A40002260216891420DD16068084A1040C01A86 -:102A500043425841064B40421840064BC01870BDD7 -:102A60000548FCE70348FAE76B820D10FFFEFFFF05 -:102A7000FDFF3DFF0300C2000100C20010B5041EAF -:102A800004D1FF210748490001F054FC8023626A09 -:102A90001B0613436362606A034BC00F0138184082 -:102AA00010BDC0466B820D100300C20010B5041E9D -:102AB00003D10749074801F03DFC802362681B06EB -:102AC000134363606068044BC00F0138184010BDA9 -:102AD0004E0200006B820D100300C20070B50400AE -:102AE0000D00002803D12449244801F023FC0222D0 -:102AF000AB799343012B04D0A5212048C90001F0F4 -:102B000019FC0222EB799343012B03D01C491B488B -:102B100001F010FC1B4B1B682F331A78012A26D1B9 -:102B200069897F230800984323D10720AB794902A4 -:102B300003400B43697A313089070B43E979C900B7 -:102B400001400B43297A4A40920113431A000E496F -:102B50000A409A420DD16262606A0840801A43427C -:102B600058410A4B40421840094BC01870BD0948F3 -:102B7000FCE70948FAE7C046270500006B820D1004 -:102B800029050000E0AD0208DBFEFFE0FDFF3DFF90 -:102B90000300C2000200C2000100C20070B50500BF -:102BA0000C00002803D12F492F4801F0C3FBA37963 -:102BB000032B03D92D492C4801F0BCFBE379032BEF -:102BC00003D92B49284801F0B5FB2379073B182B83 -:102BD00004D9AF212448C90001F0ACFB254B1B6888 -:102BE0002F331A78012A36D161897F230800984350 -:102BF00033D10720A379490203400B43617A313076 -:102C000089070B43E179C90001400B43217A4A400F -:102C1000F821920113432279490512060A40134311 -:102C20001A0015490A409A4217D1FF232068984399 -:102C3000030060796A6003432B60286898420ED1D4 -:102C400068680840801A434258410C4B4042184083 -:102C50000B4BC01870BD0B48FCE70B48FAE708485F -:102C6000F8E7C046750500006B820D107605000080 -:102C700077050000E0AD0208DBFEFFFFFDFF3DFF32 -:102C80000300C2000200C2000100C20010B5041E11 -:102C900003D10B490B4801F04DFB0B4B1B682F3345 -:102CA0001B78012B0AD18023626A1B0613436362DF -:102CB000606A064BC00F0138184010BD0448FCE79D -:102CC000BD0500006B820D10E0AD02080300C200DC -:102CD0000200C20010B5041E03D10B490B4801F0DD -:102CE00029FB0B4B1B682F331B78012B0AD1802348 -:102CF00062681B06134363606068064BC00F0138AF -:102D0000184010BD0448FCE7160600006B820D1049 -:102D1000E0AD02080300C2000200C20070B504006A -:102D20000D00002803D12149214801F003FB2B7835 -:102D3000032B03D91F491E4801F0FCFA6B78032BC3 -:102D400003D91D491A4801F0F5FA1C4B1B682F33B3 -:102D50001A78012A26D1A9887F230800984323D115 -:102D600007202B78490203400B43E978313089076B -:102D70000B436978C90001400B43A9784A4092018E -:102D800013431A000E490A409A420DD16262606AEA -:102D90000840801A434258410A4B404218400A4BAF -:102DA000C01870BD0948FCE70948FAE7560800005A -:102DB0006B820D105708000058080000E0AD0208B3 -:102DC000DBFEFFE0FDFF3DFF0300C2000200C2008A -:102DD0000100C20070B504000D00002803D1214994 -:102DE000214801F0A7FA2B78032B03D91F491E486D -:102DF00001F0A0FA6B78032B03D91D491A4801F0A2 -:102E000099FA1C4B1B682F331A78012A26D1A988FE -:102E10007F230800984323D107202B7849020340E1 -:102E20000B43E978313089070B436978C9000140C9 -:102E30000B43A9784A40920113431A000E490A40F5 -:102E40009A420DD1626060680840801A434258413E -:102E50000A4B404218400A4BC01870BD0948FCE7B5 -:102E60000948FAE7A70800006B820D10A8080000C7 -:102E7000A9080000E0AD0208DBFEFFE0FDFF3DFF1A -:102E80000300C2000200C2000100C20010B5041E0F -:102E900003D10B490B4801F04DFA0B4B1B682F3344 -:102EA0001B78012B0AD18023626A1B0613436362DD -:102EB000606A064BC00F0138184010BD0448FCE79B -:102EC000EB0800006B820D10E0AD02080300C200A9 -:102ED0000200C20010B5041E03D10B490B4801F0DB -:102EE00029FA0B4B1B682F331B78012B0AD1802347 -:102EF00062681B06134363606068064BC00F0138AD -:102F0000184010BD0448FCE7440900006B820D1016 -:102F1000E0AD02080300C2000200C20070B5040068 -:102F20000D00002803D12149214801F003FA2B7834 -:102F3000032B03D91F491E4801F0FCF96B78032BC2 -:102F400003D91D491A4801F0F5F91C4B1B682F33B2 -:102F50001A78012A26D1A9887F230800984323D113 -:102F600007202B78490203400B43E9783130890769 -:102F70000B436978C90001400B43A9784A4092018C -:102F800013431A000E490A409A420DD16262606AE8 -:102F90000840801A434258410A4B404218400A4BAD -:102FA000C01870BD0948FCE70948FAE7A809000005 -:102FB0006B820D10A9090000AA090000E0AD02080B -:102FC000DBFEFFE0FDFF3DFF0300C2000200C20088 -:102FD0000100C20070B504000D00002803D1214992 -:102FE000214801F0A7F92B78032B03D91F491E486C -:102FF00001F0A0F96B78032B03D91D491A4801F0A1 -:1030000099F91C4B1B682F331A78012A26D1A988FD -:103010007F230800984323D107202B7849020340DF -:103020000B43E978313089070B436978C9000140C7 -:103030000B43A9784A40920113431A000E490A40F3 -:103040009A420DD1626060680840801A434258413C -:103050000A4B404218400A4BC01870BD0948FCE7B3 -:103060000948FAE7F90900006B820D10FA0900001F -:10307000FB090000E0AD0208DBFEFFE0FDFF3DFFC5 -:103080000300C2000200C2000100C200094B1B681D -:103090002F331B78012B0AD18023426A1B0613436E -:1030A0004362406A044BC00F013818407047034820 -:1030B000FCE7C046E0AD02080300C2000200C20007 -:1030C000094B1B682F331B78012B0AD180234268E0 -:1030D0001B06134343604068044BC00F013818407F -:1030E00070470348FCE7C046E0AD02080300C20099 -:1030F0000200C200036810B50400002B07D00120B5 -:1031000001F00EF92368013B2360002B01D0002061 -:1031100010BD0148FCE7C0460200B200030A087077 -:103120004B70030C000E8B70C870704770B50400B4 -:103130000D00002841D000293FD0002B3DD05A621D -:10314000F9220321D20083588B4383502B68DBB2D2 -:10315000012B03D957311A4801F0ECF8AB68DBB208 -:10316000032B03D95B21164801F0E4F86B68072BA9 -:1031700003D95C21124801F0DDF8EB68DBB2012BCA -:1031800003D95D210E4801F0D5F8C022E021AB68DB -:1031900092011B0313406A68C90212040A401343D8 -:1031A0000122296800200A4080211343EA6849046B -:1031B00012060A401343236070BD0248FCE7C04674 -:1031C000C2820D100400B20010B50400012907D915 -:1031D000A021074801F0AEF801232268134304E060 -:1031E0000029F9D1012203689343236010BDC04632 -:1031F000C2820D1070B54E1EF3B204001500012BF3 -:1032000007D9042925D0082927D0E521154801F040 -:1032100091F8032D03D9E621124801F08BF8072E0F -:1032200014D8300004F05AF8041312171212121BAB -:1032300080231B01E418002C08D0C0222D04920228 -:1032400023681540084A13401D43256070BD88233C -:10325000EFE7032ADFD89023EBE7032ADBD8982394 -:10326000E7E7C046C2820D10FFFFFCFFF0B5160075 -:1032700089B005930EAB04CB01901B7802910493A7 -:1032800010AB1D78331FDBB20392129CFA2B04D8CB -:103290003E213B48FF3101F04DF8049B043BDBB27B -:1032A000FA2B04D89F213648490001F043F86B1EE1 -:1032B000012B08D9FB222B1F134204D04021304898 -:1032C000FF3101F037F8119B2D02DF07039B360415 -:1032D000002B46D0059B002B04D1A0212848490093 -:1032E00001F028F8049BFF2B04D142212448FF3130 -:1032F00001F020F8F0231B011D40636A0793C023EF -:103300009B021E40029B2B4333433E0C00270024AC -:10331000C0221F43019B20001F650727049B9202C8 -:103320001B0413401D43039B9C4202D2154B984241 -:1033300001D109B0F0BD019B5B6C3B40032B0CD865 -:10334000059B03991B5D01342B4332008C4200D254 -:1033500000221343019AE4B2136507A8FFF7CAFEDF -:10336000E1E7F0231B011D40636A3F0C0793C02374 -:103370009B021E40029B2B4333433E00C7E7C046DF -:10338000C2820D100200B200F7B50193043BDBB21C -:1033900005000F001600099CFA2B04D8D521164809 -:1033A000490000F0C7FF002E21D007226B6C1340AC -:1033B000032B1ED88023C021721EDB0292B21A4357 -:1033C000019B89021B040B4013432B65381E0DD053 -:1033D000089B2760F922A660E36102230020A36115 -:1033E000D200A958013B0B436660AB50FEBD0348B9 -:1033F000FCE70348FAE7C046C2820D100400B200A1 -:103400000100B200F7B50193043BDBB205000F00E9 -:103410001600099CFA2B04D89C211648890000F05C -:1034200089FF002E22D007226B6C1340032B1FD87C -:103430008023C021721E92031B03920B1A43019B2F -:1034400089021B040B4013432B65381E0DD0089BCB -:10345000E760F9226661236204230020A361D200A1 -:10346000A958023B0B432661AB50FEBD0248FCE766 -:103470000248FAE7C2820D100400B2000100B20057 -:10348000F0B51F00043BDBB28FB006000D00140046 -:10349000FA2B03D85B495C4800F04CFF002C00D1AC -:1034A000ABE00722736C1340032B00D9A7E0631E27 -:1034B0009B039A0B80231B031343C0223F049202F9 -:1034C00017401F433765281E0ED0149B00205B6AEF -:1034D00007950393042309940C900A930A9B042BE9 -:1034E00002D14A4B984201D10FB0F0BD099B079C15 -:1034F00000933300C43301931D680F231D40009BCC -:103500009D4200D91D00002D17D1009B07940993FF -:10351000002B0CD1F92202210320D200B3588B4397 -:10352000B3500A900C9B002B01D00C9B9847009B3A -:1035300003A80993FFF7DEFDD0E7082D0AD1370075 -:10354000D83738682100FFF7E9FD3868211DFFF7FB -:10355000E5FD05E0012D09D13300D0331B68237050 -:10356000009B64195B1B0093019BC5E7022D06D1EC -:103570003300D4331B6823701B0A6370F0E7032DFC -:103580000AD13300D4331B6823701B0A63703300E5 -:10359000D0331B68A370E3E73700D83738682100C1 -:1035A000042DD4D0052D06D1FFF7B8FD3300D0335C -:1035B0001B682371D4E7062D08D1FFF7AFFD330058 -:1035C000D4331B6823711B0A6371C9E7072D0CD123 -:1035D000FFF7A4FD3300D4331B6823711B0A63710A -:1035E0003300D0331B68A371BAE7FFF797FD386843 -:1035F000211DFFF793FD0825B2E7054874E705484C -:1036000072E7C046CD020000C2820D100200B20077 -:103610000400B2000100B20000290CD00722436C64 -:103620001340032B09D8C023013989B21B03194366 -:103630000165002070470248FCE70248FAE7C046EF -:103640000400B2000100B20000230B604B608B60ED -:103650000B61CB604B618B61802302681B061343B7 -:103660000360704730B58B6987B0DB680C001500CC -:10367000002B0FD019681A79012303932378C9B25C -:103680000293FF230193002304950093FFF7EEFDBF -:1036900007B030BD0048FBE78000B20070B51600EF -:1036A00000220400080086B00A9D039204951900C8 -:1036B000037800920293FF23200001931300FFF789 -:1036C000D5FD002806D1030000950122310020001D -:1036D000FFF7D6FE06B070BD30B50F24012385B0CC -:1036E0008D696C442370AB6A002B0BD01B68009271 -:1036F000DBB22200FFF7D2FF002803D12378AA6BA8 -:10370000134023702078431E9841C0B205B030BDED -:10371000F0B587B017000C9A05000C001E00FFF7EB -:10372000A1FF002812D1A3690122DB6B022B00D07C -:103730001300039222780C990292002204910093C4 -:1037400001923B0031002800FFF790FD07B0F0BD6B -:103750000023F0B58F6989B00D00F96A07AC060047 -:103760000292238099425FD03A6B9A425CD0BB6A46 -:10377000002B59D01B68096812680593029BC9B2D7 -:1037800003910492009322000B002900FFF786FFAB -:1037900000282FD16B46FF6B1B7C0493402F1ED05B -:1037A000802F29D0022F41D16B46029A1B7D290020 -:1037B000009230002200FFF771FF00281AD10D227D -:1037C000029B04A900935218039B29003000FFF7C5 -:1037D00065FF00280ED163781F43677002E02378ED -:1037E0001F4327702200029B0093049B2900300096 -:1037F000FFF78EFF09B0F0BD0D22029B04A90093D4 -:103800005218039B29003000FFF748FF0028F1D130 -:10381000802362785B4213430D226370029B04A9EC -:1038200000935218049BE1E70148E3E70148E1E710 -:103830008000B2000300B200F0B51F008B6989B0B0 -:103840001C6A0500002C47D0002A47D0586A0E9EFB -:10385000B04243D34869C6B24869002800D10E7807 -:1038600021682079C9B2079110990296049100212C -:103870000391617901911B6807990093130002007D -:103880002800FFF7F3FC002824D1A1684B1C12D1BB -:103890002169002904D02800FFF7BEFE002819D1B5 -:1038A000109A237D01920F9A3900009228000E9AF7 -:1038B000FFF76AFD0EE0109B227B0493FF23039029 -:1038C000019300900300C9B202962800FFF7CEFCD6 -:1038D0000028DDD009B0F0BD0148FBE70148F9E759 -:1038E0008000B2000400B200F0B5CDB006000C1E9E -:1038F0000692089303D1C449C44800F01BFD00237D -:103900000BAF656B3B80BB70089A06993000FFF7E0 -:1039100071FC002D03D1BE4A10004DB0F0BD2B68E4 -:103920002A79D9B2529B3000049300230393069B5B -:1039300002936B790193032300933B00FFF796FCFE -:10394000021EE9D129693000FFF766FE021EE3D1AD -:1039500052992B7D0CAD01910090FF32290030006F -:10396000FFF750FD021ED7D1529B5E6AA94B5299B8 -:103970008869032812D09A42CED0002E0CD00120A4 -:10398000013E00F0CDFC3200531E9A41A24B524240 -:103990001A40A04BD218E9E73200E8E7002ABBD171 -:1039A0002B78532BB7D16B78462BB4D1AB78442B03 -:1039B000B1D1EB78502BAED12B79052BABD96B79EC -:1039C000012BA8D1297BA3686D18AD7806956D08E9 -:1039D0000540012D00D8B1E0022D00D1ADE00F254A -:1039E0001F278E080936B6004CA880190138FF3809 -:1039F0000068BC46054001356D00079505093D404E -:103A0000079F01356F4309970327400A3840834DCC -:103A10004000405B099D45430DA8256485596646D5 -:103A2000280E3040079E013070436E0F37407C4EA9 -:103A30007F00BE5B40277043606460462E0A0640EC -:103A400010382840AD0400D4383F01304000013622 -:103A500046437E430CA8A6640E1D87197D78079007 -:103A60002802FD782D0605430798865D3543BE780C -:103A70003604354364D40135ED080798656047186E -:103A80003D0028352E78012528003609B0403E7FBC -:103A90006062B5400698A5610CAD800655D502263A -:103AA0000898B043012850D0082084467F7A8C447F -:103AB0001F60002760461F71079F5E713F5C7F0992 -:103AC0005BD1033E9E6060461F262D5C35401D6124 -:103AD00002251D750623E56804262B6000232B7143 -:103AE000256907982E602B71E5695C362E602B7175 -:103AF0004118487F6569022728602B716B71012589 -:103B0000266A01206D42337137607371B56033618D -:103B100033750526A063A06A3A310660266B0371EF -:103B2000337108784006400F052800D9F4E6E16AB1 -:103B300003F0D4FB65787E847878042020604EE71B -:103B40008026033D3606354397E70698400618D58C -:103B500002260898B043012813D00A2084466E1824 -:103B6000F67A8C441E60002660461E715E712F5CE2 -:103B70007F09B74201D1013EA4E7FF271E739F6072 -:103B8000A1E710270698074017D06E18F67B012092 -:103B90001E600F00002658711E710E37EE5D76090B -:103BA00007D1013E9E60ED5D1F2635401D61012558 -:103BB0008FE7FF2618739E60F5E7012606983040D0 -:103BC00014D00C2084468C4460466E18767B1F719E -:103BD0001E605F712E5C760904D1013E9E606046D6 -:103BE0002D5CE1E7FF261F739E60F8E703251D604B -:103BF000043D187158719D60186118756AE7E56396 -:103C000035600D6088E6C046F90300002A830D1078 -:103C10000500B2000200B200FEFF4DFF1A830D1036 -:103C200022830D100123E763336034330B6073E6A6 -:103C30004023E3633F3B33600433F7E78023E363D0 -:103C4000423B33600133F1E7F0B589B0029007924F -:103C5000002800D11EE1002900D11BE14B6805932B -:103C6000002B00D116E1002A00D113E10B68069366 -:103C7000002B00D10EE10023C02603930493B6026B -:103C8000039B059A9B00D458002C4DD023785A1ED4 -:103C9000012A09D90422043B9343DBB2002B03D051 -:103CA0006E217D4800F046FB237A032B03D96F2158 -:103CB000794800F03FFBA369002B03D170217648BF -:103CC00000F038FBA3691B68013B032B03D971216A -:103CD000714800F02FFB2278501E072800D9D7E04A -:103CE00003F0FCFA0432D635D6D6D6388021029BB2 -:103CF00009015D18237A2968684F1804304039405B -:103D00000143042029606168014226D00799029886 -:103D10000091A169FFF7E8FD00281ED00823039A4F -:103D20009340049A1A430492039B01330393039A2A -:103D3000069B9342A4D10020049B002B02D0B2200A -:103D40000004184309B0F0BD029B8821D0E7029B14 -:103D50009021CDE7029B9821CAE763689B07E3D5D2 -:103D60002169E06803F04AFB002903D08C214A480E -:103D700000F0E0FA23694A4A934202D95A1E1342DC -:103D800003D08D21444800F0D5FAFF218C466746C8 -:103D9000E168A069B9438268036AA9602169494260 -:103DA000B943E96001680320013901406069471E99 -:103DB000B841000201432962002A2DD01068002179 -:103DC000471C08D067460740802011790006090487 -:103DD00031400743394329645179906809043140DF -:103DE00069640021471C07D08027117BC0B20904F9 -:103DF0003F063140384301430020A96411698142E4 -:103E000005D01F3001390140802000060843E864D6 -:103E1000127D120432402A65002B2CD01968002232 -:103E2000481C07D080201A79C9B21204000632401B -:103E300001430A432A665A799968120432406A6635 -:103E40000022481C07D080201A7BC9B21204000649 -:103E5000324001430A430021AA661A698A4205D00A -:103E60001F31013A0A40802109061143E9661B7D92 -:103E70001B0433402B6702216268FF31114080220E -:103E8000237A12061B0433400A4313432B604BE78B -:103E9000044851E7034855E72A830D10FFFFFCFF54 -:103EA000FFFF00000400B200104B1B683C331B787E -:103EB000834219D9042910D94B1EFF3B132B13D869 -:103EC0001F2319400A4B8000C018C02304229B0006 -:103ED000C1504033C250002070470723D0301940F2 -:103EE000034B8000C150F6E70248F5E7E0AD020859 -:103EF0000000264001004A0010B50F4B04001B686B -:103F00003C331B78834204D8A3210C48490000F0BD -:103F100011FA0B4BA400E418D0239B00E0580723B0 -:103F20001840042807D1C0239B00E0581F230340FA -:103F300080204000184310BDE0AD020889830D10B9 -:103F400000002640F7B5041E03D14649464800F05C -:103F5000F1F9B023454DDB00EB58002B00DA7FE090 -:103F6000434B22689A4203D942493F4800F0E2F9A4 -:103F7000E2792368511E8A419B0312069B0B13436F -:103F8000B022D200AB50A3883B4FBB4204D994214E -:103F90003548890000F0CEF92389384EB34203D961 -:103FA0003749314800F0C6F92389A28835491B04F6 -:103FB000D204D20C0B401343334AAB50A37A019185 -:103FC0000F2B04D996212848890000F0B3F9E37A31 -:103FD0000F2B03D92D49244800F0ACF9A389BB422B -:103FE00003D92B49204800F0A5F9FF22E37A29499B -:103FF0001B011340A28912020A400F211343A27A27 -:104000000A40C0211343A27B890512070A401343CB -:10401000B122D200AB50A379042B03D91E49124818 -:1040200000F088F9238AB34204D999210E48890007 -:1040300000F080F9E020A379184AC0001B02A958BB -:104040000340174801400B43AB50238A01981B04DF -:10405000A95803401348014000200B43AB50FEBD5C -:104060001148FCE73F02000089830D100000264044 -:10407000FFFF030049020000FF1F0000FF010000D6 -:10408000510200000000FF018405000059020000F9 -:104090005A02000000FF1F00630200008C050000B0 -:1040A000FFF8FFFFFFFF00FE03004A00F7B5802284 -:1040B000B22607000500324B324C1206E158F600DA -:1040C0000A43E25000930422A359134201D1002D68 -:1040D00035D1B1208023C00022582B499B050A40CE -:1040E000134323500191002F01D0002D06D0B022A0 -:1040F0008023D200A1581B060B43A3500126B223F4 -:10410000DB00E358334224D1002D1DD1002F24D0F1 -:10411000B121C9006258019B1C481A4080239B05AD -:104120001343B0226350D200A3585B005B08A35036 -:10413000009B009AE3585B005B08A350FEBD012082 -:1041400000F0EEF8013DBEE7300000F0E9F8013D77 -:10415000D5E7002F01D0002DDAD0B122C0230020F6 -:10416000D200A1589B050B43A3508742E6D0681E9E -:1041700085416842064D054B2840C018DEE7C04621 -:104180008C05000000002640FFFFFFCF02004A0020 -:10419000FEFFB5FF70B51A4E050033680C001A001B -:1041A00028321278012A15D182080721100088438D -:1041B0000FD103202840C00084401B6892002033A8 -:1041C0009B182200FF24844019684A4014404C4048 -:1041D0001C6070BD5B8FDBB28B4203D17F2109482D -:1041E00000F0A8F807208022054080203368920163 -:1041F0001B680006A4180543A400E550E9E7C04683 -:10420000E0AD0208E2830D100A4B70B59B680A4EC0 -:1042100010300D008400B34209D1002904D1A0213F -:104220000648490000F086F83059355170BD044BFE -:104230001859FBE700ED00E000A00208E2830D1032 -:1042400000000D10F8B506000D00002841D04368AD -:10425000032B03D93B21204800F06CF80023F05ECB -:10426000002828DBB178FFF795FF0024FF22032701 -:1042700094460023F05E716883B21F40FF006646DB -:10428000BA4089013140D243B940002815DB134EB2 -:1042900083089B009B19C026B6009F593A401143E2 -:1042A00099510F4B9A680F4B9A4202D12900FFF7A0 -:1042B000ABFF2000F8BD0C4CD8E70F263340083B7D -:1042C000074E9B089B009B19DE6932401143D96160 -:1042D000E7E7054CEDE7C046E2830D1000E100E0A2 -:1042E00000ED00E000A002080100560070B5802536 -:1042F00004002D02AC4205D8064B18686043FDF758 -:10430000FFFC70BD044B1868FDF7FAFC034BE41882 -:10431000F0E7C04630A1020828A102080080FFFF94 -:1043200010B5034B1B785843FDF7EAFC10BDC0469F -:1043300034A1020870B50D00044C010018222000C1 -:1043400003F0D3FAA56101BEFEE7C046B0A702089C -:104350008022054B12069A64986C044BC043C01728 -:104360001840034BC018704700002740FDFFB9FFFD -:10437000030046008022054B120198585B68DBB2AF -:10438000002B02D08023DB02184370470000264038 -:10439000FEE7000002680A4B10B5DA6142681A6253 -:1043A00082685A62C2689A620269DA6242691A6372 -:1043B00082695A63C2699A63FFF7EAFF10BDC0467B -:1043C000B0A70208F0B51922002800D14B322A4BC1 -:1043D0008A4292411B6852421C00A83424881D68FE -:1043E000671903253E68AE4316433E601E68A41954 -:1043F0002768224E374027601C00AA3424881E6894 -:10440000A7193E68AE4332433A601A681B4EA218A1 -:1044100014682640166000280ED00020102904D908 -:10442000213088428041404201300F225B68196888 -:10443000914308431860F0BD1A00553212788A4241 -:10444000F3D21A005632127801208A42EDD21A00B5 -:104450005732127800188A42E7D21A00583212787E -:1044600028008A42E1D21A005932107888428041ED -:1044700040420430D9E7C046E0AD0208FFFCFFFF30 -:10448000B0235B055A782120002A01D05878C0B2A9 -:104490007047B0235B059A89002A02D0988980B2C0 -:1044A000704780204000FBE770B5FFF7F2FF8023E4 -:1044B000184A5B00984215D111680F240B000222A4 -:1044C000983318680B6818180368A34313430360F4 -:1044D00008009C300B6801685B181968A1430A4307 -:1044E0001A6070BD1268B0201100C02598311468A0 -:1044F0000968094B4005C35861180C68AD002B438F -:1045000023430B6011009C3113680A689B18034A0F -:104510008258E5E7E0AD02084818000044180000A2 -:1045200070B5FFF7B6FF8023184A5B00984215D19B -:1045300011680F240B000322983318680B681818B1 -:104540000368A3431343036008009C300B680168B1 -:104550005B181968A1430A431A6070BD1268B02441 -:104560001100C120C0269831156809686405400112 -:10457000235869180D68B60033432B430B601100B4 -:104580009C3113680A689B182258E5E7E0AD0208E1 -:1045900010B5FFF77EFF8023114A5B0098420DD1D2 -:1045A000136810491A00983212681B689B181A6821 -:1045B0001140C022D2010A431A6010BDB021126816 -:1045C000094B4905CB581100C02098310968126881 -:1045D00080005218116803430B431360EDE7C04697 -:1045E000E0AD0208FF8FFFFF1818000070B5FFF75D -:1045F00050FF8023144A5B0098420DD11368134981 -:104600001A00983212681B689B181A6811408022A1 -:10461000D2010A431A6070BD1268B0241100C0268E -:10462000983115680A4809686405235869180D68A7 -:10463000B60033432B430B6011009C3113680A68AA -:104640009B182258E6E7C046E0AD0208FF8FFFFF47 -:104650004C18000010B50020FEF730F90400FFF7F9 -:104660000FFF01221300222801D863426341134047 -:10467000180010BD10B5074C236831331B78002B90 -:1046800004D1E62104484900FFF754FE2368186A64 -:1046900010BDC046E0AD0208AC800D1030B504007E -:1046A00085B00D00042803D927492848FFF742FEAA -:1046B0006B1E012B07D9FB222B1F134203D0244969 -:1046C0002248FFF737FE234BA400E458042D01D005 -:1046D000012D1AD100200FE0A3682B420BD1E36813 -:1046E00029001A685B6802920193039302A8236869 -:1046F0009847194B1C606469002C04D0174B9842F2 -:10470000EAD1012DE8D105B030BD022D06D1124B02 -:104710001B68181EF7D01C6903E01C006369002B9E -:10472000FBD10020002CEED0A3682B4209D1E36816 -:1047300029001A685B6802920193039302A8236818 -:1047400098472469EEE7C046E50900003B840D1058 -:10475000E609000048A8020844A80208FF00420039 -:10476000F8B50400012803D92A492B48FFF7E2FDD8 -:10477000FFF786FE85B2FFF78CFE0700002080263B -:10478000FEF79CF87600002811D1B74211D1222DF6 -:104790000FD88025214B6D041B6824065968204BD7 -:1047A0002C40CA581F4D2A401443CC50F8BDB74284 -:1047B00029D0FFF75FFF0500B7420FD1621E944179 -:1047C000802362425B001A40174BD2180121280057 -:1047D000FDF7AEFD002808D01448E7E7621E9441BB -:1047E000022362421A40124BEFE70C4B1B68B433B2 -:1047F0001B68EB181A68002AFCDBEB6800201B0E14 -:10480000A02BE9D1D2E7222DE6D9FFF733FF05002F -:10481000D4E7C0467F0A00003B840D10E0AD0208DB -:1048200018F00000FFFFFFFE01000030040042000E -:104830000100000CF7B50700012803D929492A48CF -:10484000FFF778FDFFF725FE80235B0098421CD020 -:10485000FDF75FFAB0230190244D254A5B05002F38 -:104860001AD0244903205958A950234A23499C5C53 -:104870001F226B58E4B293431A000B2313436B506F -:10488000FFF74EFDFFF7B2FE12E0FFF7E3FE002850 -:10489000DED11B4E3000FEBDAF50E8220120D20019 -:1048A0009C5CFFF75DFFE4B2061E0DD1FFF7FCFD37 -:1048B0001F21124A0C40AB588B431C43AC50002FB5 -:1048C00006D1FFF765FE3E000198FDF726FAE1E705 -:1048D0000720FFF725FDFFF723FE0020FFF740FF2D -:1048E0000600F1E7530800003B840D10000026404D -:1048F000307F000010180000410700001CFF00007E -:104900000300420010B5041E03D111491148FFF7FE -:1049100011FDF222104BD2011B68DB689A5822600D -:10492000F022D2019A5862600C4A9A58A2600C4A4E -:104930009A58E2600B4A9A5822610B4A9A5862616F -:104940000A4A9A58A2610A4A9B58E36110BDC046C0 -:10495000D40A00003B840D10E0AD0208047800008A -:10496000087800000C78000010780000147800002F -:104970001878000010B5041E03D110491048FFF745 -:10498000D9FCF0220F4B61681B68D201DB6899509B -:10499000A1680D4A9950E1680C4A995021690C4A66 -:1049A000995061690B4A9950A1690B4A9950E16984 -:1049B0000A4A99502168E832995010BDFC0A00005B -:1049C0003B840D10E0AD0208047800000878000078 -:1049D0000C780000107800001478000018780000AF -:1049E000F7B50700012803D940494148FFF7A2FC69 -:1049F000404D6B68002B4AD1FDF78BF96B68019035 -:104A0000002B56D13C4E33681A0043321278002AEC -:104A100007D09B68E0331B68DB0602D53748FFF7F9 -:104A200071FFFFF736FD80235B00984246D13800C6 -:104A300003F05AF8002433681A0043321278002A2F -:104A400017D0002815D09B68E0331B68DB0610D513 -:104A5000FFF716FD294B212808D032681300B03328 -:104A6000198807234B43126A9B18DB681800FFF76D -:104A700081FF0198FDF751F9002C0ED16B68002BD6 -:104A800003D008210120FFF709FE2000FEBD01210F -:104A90000800FFF703FE041EAED06B68002B03D0A6 -:104AA00002210120FFF7FAFD154B9C42EDD0154C79 -:104AB000EBE704210120FFF7F1FDA3E7FFF7DAFDA3 -:104AC0003368B4331B68C0180368002B0BDB042366 -:104AD0000D4A11690B431361012F02D030BF002032 -:104AE000A8E720BFFBE70020054CA4E7AE020000CA -:104AF0003B840D1048A80208E0AD020824A8020873 -:104B000005004200FF00420000ED00E0C0228020CE -:104B1000064952008B58C0059B009B0803438B50ED -:104B2000802388581B0603438B50704700002640A3 -:104B30007047FFF7FDFF72B6124C134DAC4209DA15 -:104B400021686268A368043B02DBC858D050FAE7CA -:104B50000C34F3E70D4B0E4CA34208DA19685A687F -:104B60000020043A01DB8850FBE70833F4E70948EA -:104B700009490860BFF34F8F00F0E4F800F09CFA99 -:104B8000FEE700005C8C0D10748C0D10748C0D1001 -:104B9000848C0D1000A0020808ED00E0FEE7FEE79F -:104BA00000B504207146084202D0EFF3098001E00D -:104BB000EFF308800430FFF7EDFBFEE770470000DD -:104BC000E02370B5504C9B00E2580F23D021072002 -:104BD00013409A00121989005158014066D00429E7 -:104BE00058D04A48002B66D1B223B1220321DB0002 -:104BF000D200E558A358A6581B0F360F0B400E42A3 -:104C000004D0A258120F0A40012A01D1EA0701D4A8 -:104C1000032B11D1B0233E4ADB00E558A158E658DA -:104C2000C904C90C02F064FBAD03AD0B6843F1018C -:104C3000C90F013102F05CFBE0239B00E3589B06A7 -:104C40009B0FD840334B1860334B1C691969240AF9 -:104C5000090E013102F04CFB304BE1B2186001311A -:104C600002F046FB2E4B040018602E4B2E491860B4 -:104C70002E4BC01802F03CFBFA212D4B8900187016 -:104C80002C4BE01802F034FB2B4B18602B4BC0036D -:104C9000186070BDC021890052581F210A40112A96 -:104CA00001D0132A04D1802000029BE7244899E711 -:104CB000FA20C00196E7012BBED1C823C0220321F0 -:104CC000DB00D200E558A358A6581B0F360F0B4047 -:104CD0000E4204D0A258120F0A40012A01D1EA075D -:104CE00001D4032BA8D1C022D200A358A158A558A3 -:104CF0007F221F261340090A3140584302F0F8FA78 -:104D0000290C314096E7C0460000264000366E016F -:104D10008405000020A102080000214024A102080F -:104D20001CA102082CA1020840420F003F420F00C4 -:104D300034A10208E703000030A1020828A10208FC -:104D400000127A0010B51B48FCF7EAFFB022E02100 -:104D50003020194CD200A35889005B005B08A35097 -:104D600063588343635080235B04A350134B144A5E -:104D7000E250A02204339201E250FF22114BE25094 -:104D8000FFF7C4FEC02201215200A3588B43A35059 -:104D9000FFF714FFFFF714FFB0235B055A78002AD2 -:104DA00002D05B78212B03D10022074BDA605A60D6 -:104DB00010BDC046F47F0D100000264084050000A1 -:104DC000010002008C050000E0002340024BD86F78 -:104DD000032318407047C0460400214010B5FCF77B -:104DE00098FF0749074ACB6F1A40074B1343CB671D -:104DF000102306490A681A42FCD0FCF78EFF10BD4A -:104E000004002140FCFF00000100FA058800214059 -:104E100070B583050600002B04D0E8211048FF314F -:104E2000FFF788FA0F4CFCF774FFE36F0500DB43D4 -:104E30009B0701D1FFF7D2FFB0230B4A9B00D6504E -:104E4000E36F0A4A0A491A400A4B1343E3671023E7 -:104E50000A681A42FCD02800FCF75FFF70BDC0460C -:104E600093840D100400214000002140FCFF00004D -:104E7000880021400300FA0510B562B600F0BCF9C5 -:104E8000FFF744FEC0220120024952008B588343A1 -:104E90008B5010BD0000264010B50020FDF71EFC11 -:104EA00010BD0000802310B50C4C032023602300AC -:104EB000210008336360FDF741FC0948FDF76CFAF7 -:104EC000084B1B6851331B78002B02D00648FDF7B6 -:104ED000DBFA20001830FCF7D3FF10BD00C0020839 -:104EE0003CC00208E0AD020800850D1010B5044872 -:104EF000044A0021121A02F005FCFBF7F5FA10BD76 -:104F00000000020800A002080022E82313B5019265 -:104F1000019C9B0523430193019B090419430191C3 -:104F2000019B000218430123019001990B43019357 -:104F30000199124BD96012491868002806DB8A4291 -:104F400002D10120404216BD0132F5E78A42F8D075 -:104F500001229A6000221869002803DA8A42F0D000 -:104F60000132F8E78A42ECD0DB6800200193A023ED -:104F7000019A1B069A42E6D00198E4E7000023401C -:104F8000983A000010B5084B0024DB78013B012B58 -:104F900007D801210800FFF7B7FF04006420FFF7DE -:104FA000A5F9200010BDC0463CAF0208A02270B594 -:104FB0000E4DD200AA580400032A01D0FFF7E2FFE9 -:104FC0000B4B1B68002B06DA0A4B0B4ADA6472B6ED -:104FD00002F0A2FD62B6AC239B00EC50074B9C6034 -:104FE000236883F3088863689847FEE70000214040 -:104FF00000012640000023402143341200ED00E070 -:1050000070B50400FFF7BEFF144B1B68002B1DDAC0 -:10501000134B144ADA6472B6B023134A134D9B0043 -:105020001348EA50C36F134A13491A40134B1343F2 -:10503000C36710230A681A42FCD00120FFF756F913 -:10504000B0239B00EC5002F067FD62B62000FFF732 -:10505000DFFE0020FFF7C4FCFBE7C046000126404E -:10506000000023402143341200400016000021407C -:1050700004002140FCFF0000880021400300FA05E5 -:1050800010B500280ED1FFF77DFF074B1B68002BE2 -:1050900003DA064B064ADA6472B60648FFF7B8FE32 -:1050A00002F02AFD10BDC04600012640000023404A -:1050B000214334120040001670B586B0FFF7F2FEAF -:1050C000FFF7DAFE8020424A424B01A91A604000F5 -:1050D0006A46FCF743FD041E34D13F4D03003F4AAE -:1050E00029000198FBF7BEFB041E2BD1AB78022BE5 -:1050F00000D9A870F022EB68394E12069B18B360F5 -:105100002B69F3606B699B18F361AB693362FBF742 -:10511000B7F9041E16D1AB78002B1ED0314A013BE3 -:105120009B00314D9B582B6000F0D2FB2F4A0600AC -:1051300029682F4800F024FC002E14D101212C48AE -:10514000FEF742F86042604103ACFFF799FF200090 -:1051500001F066FC002808D0FEE7264BF2699A426F -:10516000F0D96C70EEE73400ECE702A9207900F08A -:1051700094FC43425841FFF783FF029BA468E41864 -:10518000039B1B89E418FFF7B1FE43425841FFF728 -:1051900077FF114B1878042818D802F09FF8030302 -:1051A00007070F002000FFF701FFFEE702210020A4 -:1051B000FDF752FB2000FFF7F9FEF6E706210E206F -:1051C000FDF74AFB2000FFF71BFFEEE7FEE7C046B6 -:1051D0004C850D10E4AD0208E8AD02083CAF0208B2 -:1051E00040A1020838A102085CA80208CCAF02085E -:1051F00000004240FFFFFF0710B500F009F800F083 -:1052000035F800F043F800F005F900F02DF810BD76 -:1052100080218022124BC9001B68D205986810B506 -:1052200042501A00743212880E4C12181068044052 -:10523000D4208001204310601C001A0072347032A8 -:105240002478127898687333A2401C780323A34013 -:1052500013438022120613434350435810BDC046E7 -:10526000E0AD0208FF00FFFF70470000054B1B6820 -:105270001A003F321278052A03D900219A68024B9E -:10528000D1507047E0AD0208140C000010B51D4C61 -:105290001D4A00212000FCF7CDFE20001B4C1C4ABB -:1052A0000121FCF7C7FE1B4A02212000FCF7C2FEC9 -:1052B000194A03212000FCF7BDFE184A04212000F2 -:1052C000FCF7B8FE164A05212000FCF7B3FE154A8C -:1052D00006212000FCF7AEFE2000134C134A0721E4 -:1052E000FCF7A8FE124A04212000FCF7A3FE114A95 -:1052F00006212000FCF79EFE0F4A07212000FCF744 -:1053000099FE10BD00003240A0860D10800532408D -:10531000D4860D106C860D1004860D10D0850D10EE -:105320009C850D1068850D100003324038860D10E5 -:1053300008870D103C870D1070870D1010B50A4BB3 -:105340001B683E331B7883420BD9E0220F24074BA6 -:105350008000C01892008358A34319438150002055 -:1053600010BD0348FCE7C046E0AD0208000026403F -:1053700001004A0010B50A4B1B683E331B7883427C -:105380000CD9E0223024074B8000C01892008358CB -:105390000901A34319438150002010BD0248FCE7D6 -:1053A000E0AD02080000264001004A00054B064916 -:1053B0001B681A000832D26F1B689B181A680A40D3 -:1053C0001A607047E0AD0208FF00FFFF074B1B6843 -:1053D000190008311A68CB6F8021D218136849046C -:1053E0001B021B0A0B4313607047C046E0AD020866 -:1053F000054B06491B681A00883212681B689B1807 -:105400001A680A401A607047E0AD0208FF00FFFF0B -:10541000FEE70000F8B596210020FEF7D3FFFEF767 -:10542000A9FF002801D1FEF793FF0120FFF702FA40 -:10543000644B65495A6C0A40E82189010A435A6461 -:105440005A6C120AD2B23A2A04D15A6C5F4802400E -:105450001143596400210800FFF78CFFFFF7C8FFD4 -:10546000FFF7B4FFFFF7A2FF594D5A4C2B685A4F74 -:105470003D331B78002B0ED0C0268023F600A259A6 -:105480009B053A401343A3510120FEF749FFA3595E -:105490005B005B08A35100210120FEF705FD2B688E -:1054A0003E331B78002B03D14C494D48FEF742FF99 -:1054B000E0239B00E6580F231E400AD13000FEF780 -:1054C0001BFD1223FF33984203D101213000FFF767 -:1054D00035FFB122D200A35800213B408027BF05F1 -:1054E0001F43A750083AA35808005B005B08A3506D -:1054F0003C4AA3585B005B08A350FEF7D5FC002193 -:105500000800FFF71BFFFFF773FFFFF75FFFFFF7D1 -:105510004DFF00210120FEF7C7FC01210020FFF70D -:105520000DFF00210800FEF7BFFC00210220FEF75E -:10553000BBFC00210320FEF7B7FC00210420FEF78E -:10554000B3FC2948FEF7FEFC002802D00420FFF738 -:105550005FFF2648FEF7AAFD002802D00420FFF7CF -:1055600057FF00210800FFF7E9FE00210800FFF7C0 -:1055700001FF00210120FEF797FC00210220FFF728 -:10558000DDFE01210220FFF7F5FE2B683E331B787C -:10559000022B06D9E22280239200A1581B060B435E -:1055A000A3508022124B1206E15800200A43012129 -:1055B000E250E2580A43E2506331FEF703FFFFF77F -:1055C000FFFAF8BD00002740FF00FFFFFFC5FFDF27 -:1055D000E0AD020800002640FFFFFFCF6E0600008E -:1055E000A4870D108C05000000880D10400D0300ED -:1055F0000C050000437802781B021A438378C078B8 -:105600001B0413430006184370470000F7B5A54B71 -:10561000A54A9A58D10700D47BE00F22A34FBB685C -:105620003D680093A24BDC6F0193009B1440073A46 -:10563000141B9C4200D91C009E4E002C18D1009BCC -:105640003D60BB60002B0CD1F92201209549D200AE -:105650008B5883438B50B861FB69002B01D0FB69E9 -:105660009847F8230122DB008E49CA50CB58F7BD7A -:10567000082C16D12800FFF7BDFF3060281DFFF76A -:10568000B9FF3060009B2D191B1B0093019BDC6F41 -:105690000F231C40073B1C1B009B9C42CDD91C00C8 -:1056A000CBE7012C03D12A78834B1A60EAE7022C5E -:1056B00006D12A786B781B021343804A1360E1E716 -:1056C000032C07D16B782A781B0213437B4A1360A3 -:1056D000AA78E9E72800FFF78DFF042CD1D03060CD -:1056E000052C01D12A79DFE7062C02D12A796B79C2 -:1056F000E1E7072C07D16B792A791B0213436F4A24 -:105700001360AA79D0E7281DFFF774FF08243060E2 -:10571000B8E7910700D4A4E00F22644D68496C6992 -:10572000EB6808688C460240A24200D92200654915 -:10573000654E002A16D1EB606C61002C0DD1F92268 -:1057400002215848D20083588B4383500320A8611C -:105750002B6A002B01D02B6A9847F8236C61DB0081 -:10576000022281E7082A19D10868070A18705F70B9 -:10577000070C000E9F70D8700868070A18715F71D7 -:10578000070C000E9F71D8719B18A41A62460F2057 -:1057900012680240A242CCD92200CAE7012A03D1F2 -:1057A0004A4800681870EFE7022A04D13068187080 -:1057B000000A5870E8E7032A07D130681870000A19 -:1057C0005870424800689870DEE7042A08D10868DB -:1057D000070A18705F70070C000E9F70D870D3E72F -:1057E000052A0BD10868070A18705F70070C000EB5 -:1057F000D87036489F7000681871C5E7062A0CD12A -:105800000868070A18705F70070C000E9F70D87048 -:1058100030681871000A5871B6E7072A0FD1086876 -:10582000070A18705F70070C000E9F70D870306800 -:105830001871000A5871254800689871A4E70A6831 -:10584000100A1A705870100C120E9870DA700A68EC -:10585000100A1A715871100C120EDA719871082220 -:1058600092E704210A4207D00520104A9061F822ED -:10587000D20099509B58FAE608210A4202D00B4AFE -:105880000620F3E71020024206D00721074A916163 -:10589000F822D2009850EDE72020024200D1E6E63F -:1058A000024AF4E700004240CC070000CCAF0208F7 -:1058B000080042409800424090004240940042401C -:1058C000C4004240D8004240D4004240D000424090 -:1058D00037B568460200154B12CB12C262B61449A6 -:1058E000FEF7B0FCFA22134D92002B001249134828 -:1058F000FDF71CFC041E13D1020001210F48FDF727 -:1059000079FC29000D48FDF79FFE2A000C490B4841 -:10591000FEF79AF9041E03D101000848FDF754FC74 -:105920008022084B20001A603EBDC046A48A0D109C -:105930000D560D10CCAF020858850D1000004240E6 -:10594000948A0D1000E100E00C4B1B689B691B68FA -:10595000032B08D10023CB7083B21B0A88704B70D5 -:10596000000C08707047042BFCD183B2C8701B0A6E -:10597000000C48708B70000AF3E7C0465CA8020870 -:10598000F0B50F2787B002ABFF18002316003B705D -:105990008B690500DA6BDB6A03921B683A00DBB2A5 -:1059A00000960C00FDF77AFE002813D16B463A787A -:1059B0001B7B1A409A420DD0320021002800FDF7CF -:1059C000C7FE002806D1320021002800FDF784FE22 -:1059D0000028F8D107B0F0BDF0B589B004000E0082 -:1059E000049217221A4D0593296802A88B69121890 -:1059F0009F6ADB6A20001B680096DBB2FDF74EFE53 -:105A0000002823D1320029682000FDF72BFE002852 -:105A10001CD1059B019000930296049B0E9A296865 -:105A20002000FDF709FF002810D13200296820006E -:105A3000FDF752FE0028F8D117223B6802A9009614 -:105A40005218DBB229682000FDF728FE09B0F0BD2E -:105A50005CA8020870B54B68056801229D4216D308 -:105A60008A689B1800229D4211D20C694B699C42A6 -:105A70000FD20C236343CE680134F3180E685A70BA -:105A80001E705A8042685D609A6001220C611000AD -:105A900070BD0C235B428B61F9E76F2804D1802332 -:105AA00000205B050B60704716204042FBE70000BA -:105AB00010B50F4B02001879904215D0187E904215 -:105AC00014D018002C3004780120404294420AD1AE -:105AD000033014224243101D1818086000209B1840 -:105AE0001A6901321A6110BD0020F2E70120F0E7C7 -:105AF00040A10208002809D00438054B02689A42E8 -:105B000004D10369002B01D0013B03617047C046FB -:105B1000EFBE0DD070B544680C480C19012115007A -:105B20001E00FDF751FB80235B05E218084B9A42EB -:105B300003D9084B9B78002B05D0320029002000A8 -:105B400000F030F970BD01204042FBE70000424008 -:105B5000FFFFFF17E8AD0208F0B51500F0221A4F5D -:105B600087B003933B684468DB6812060C199B18E6 -:105B7000A34216D800211548FDF726FB3B6805AE69 -:105B8000D8688023201A5B05C0183100FFF7DCFEBF -:105B90000096039B2A000E490C48FFF71DFF07B033 -:105BA000F0BD80230B4A5B05E318934203D90A4BEF -:105BB0009B78002B05D0039A2900200000F088F97B -:105BC000EDE701204042EAE75CA8020800004240FD -:105BD000CCAF0208FFFFFF17E8AD0208F0B51500D3 -:105BE000F0222B4F44683B681206DB680C199B18A7 -:105BF000C5B0A3423AD800212648FDF7E5FA802235 -:105C00000021520004A801F07DFD3B680020D96806 -:105C10008023641A5B052E0AE418002E14D0002895 -:105C200001D045B0F0BD03AF20003900FFF78CFE76 -:105C3000802300975B0004AA174916480134FFF738 -:105C4000CBFEFF34013EE8E7EDB2002DE9D000289D -:105C5000E7D103AE31002000FFF776FE00962B005F -:105C600004AA0D490B48FFF7B7FEDAE780230B4A79 -:105C70005B05E318934203D9094B9B78002B04D0B2 -:105C80002900200000F02EF9CBE701204042C8E7B0 -:105C90005CA8020800004240CCAF0208FFFFFF17DB -:105CA000E8AD020810B5007800F08CF910BD0130A5 -:105CB00070470000431E022B15D8022808D0032885 -:105CC0000BD00A4B98680860DB68002013607047AF -:105CD000064BD86908601B6AF7E7F0231B030B60CB -:105CE00080235B01F1E701204042F0E740A1020878 -:105CF00030B589B00C00150002A903AA0190FFF786 -:105D0000D9FF002811D1236805900693084B07900E -:105D100001AA18680749049500F00EF807980028B2 -:105D200001D1059B236009B030BD01204042FAE754 -:105D3000E4AD0208555A0D10F0B500242600436862 -:105D40008BB002911B6906A905A80392984701949C -:105D5000069BB34201D80BB0F0BD059BF700DF19DD -:105D60007B68019D0893019B3A68EB1A9A4202D81E -:105D700001360195ECE707940995039907A8029B62 -:105D800098470028E7D0089B0135E418EBE70000AE -:105D9000024B036001230B607047C046AC8A0D10B4 -:105DA000002070470B00802110B5490541181800EC -:105DB00001F09FFC002010BDF0B5264CF023A54457 -:105DC0000024039020001B06CB1801935B0A5B02A2 -:105DD00004AF0292FD1A029AA24201D900280CD007 -:105DE0001D4B984234D01D4B984231D0431E9841F0 -:105DF000400085239B009D44F0BD8022010092005D -:105E00009E18019A9A421DD8029AA2421AD9039A60 -:105E1000125DEA54002906D18021490559180978F4 -:105E2000511A4A1E914101340133B342E9D100298C -:105E300004D00B4B3900F018FCF782F8094BED1831 -:105E40003300C8E7802252059A181278EA54EBE72B -:105E50000120CEE7ECFDFFFF0200520006005200D9 -:105E600000FEFF0F00FEFFFF00207047F8B5124C48 -:105E70000023A1421CD91E00104C8D18AC425E417B -:105E80000F4CA14215D91F000E4CAC425F413C00A3 -:105E90000D4FB94202D90D4FAF425B41344323430A -:105EA0000124002B02D0FFF787FF04002000F8BD7B -:105EB0001E0000242300F1E7FFFFFF0F0000101079 -:105EC000FFFFFF1300800014FF070016000A0016F2 -:105ED0000B00802110B5490541181800FFF7C6FFD7 -:105EE00010BD00008023F0B55B05C0184518334C89 -:105EF000EB05A544C605DB0DF60D01936B0A039374 -:105F000033005A1E9341400AC0186B0A1B1A0093B3 -:105F100043021F0000240293009B002B3ED1002E61 -:105F20001AD0274A029B944663441C001900320091 -:105F300004A801F0DEFB2000FBF7C4FF43425841F8 -:105F4000FFF79EF82100320004A8FFF78FFF04003E -:105F500060426041FFF794F8019B002B19D0802428 -:105F6000A400E41A2200290004A801F0C2FB039B4C -:105F70005802FBF7A7FF43425841FFF781F8220080 -:105F8000290004A8FFF772FF040060426041FFF798 -:105F900077F8200085239B009D44F0BD3800FBF777 -:105FA00091FF040060426041FFF76AF880239B0084 -:105FB000FF18009B013B0093AEE7C046ECFDFFFFDE -:105FC00000FEFFFF0420704710B5102209490400AD -:105FD00001F080FB0123002808D023001033226841 -:105FE000013205D104349C42F9D10323180010BDBD -:105FF0000223FBE7CC8A0D1030B5040091B00120DC -:106000000D00FFF73DF8A168102310396A46200003 -:10601000FFF780FD002802D0012011B030BD684696 -:10602000FFF7D2FF28702378032B0CD10120FFF754 -:1060300027F8A1680123AA1C18392000FFF76AFD80 -:10604000431E9841E9E70120FFF71AF80120FFF706 -:1060500017F8A1686A1C203901232000FFF75AFDB8 -:106060000028E3D0D8E737B50D00C0B201A9FFF78B -:106070001FFD0124002807D129000198FFF7BCFF6C -:1060800004000198FFF736FD20003EBDF7B5012062 -:106090006946FFF7E8FF002838D101AC2100023043 -:1060A000FFF7E1FF002831D12078A678184C6B4625 -:1060B000220019789D785F7812322378002B01D066 -:1060C0008B421ED16378002B01D0834219D1A37873 -:1060D000002B01D0AB4214D1E378002B01D0B342A6 -:1060E0000FD12379002B0AD1022200206379023BD1 -:1060F000DBB29A424041FEF7C3FF6079FEBDBB426E -:10610000F2D006349442D8D10120F7E7FF20F5E71A -:10611000DC8A0D10F0B597B01CAB1B78039004938C -:1061200013781400302B16D19378022B13D106ADBF -:1061300040220021280001F0E5FAE278A1184B790D -:10614000901D0979C0180290022904D1D1186078F5 -:10615000043188422AD0102017B0F0BD059A0F1ADA -:106160005618B446A444664636790822B44604AEAE -:10617000B61862462037F25501318842EED100222E -:106180000299C91A64189A420AD16B46188A4023A8 -:1061900000950193039A203B0A49FAF7D9F9DBE706 -:1061A000D11AA05C403168540132ECE7202B00DDAD -:1061B00020231000202A00DD2020121A0021059241 -:1061C000DBE7C04609000610002803D1044B1B7F03 -:1061D0001800704700230128FAD1014BDB7FF7E755 -:1061E000E8AD0208F0B5F7B00500029111A85949D1 -:1061F00017000493FAF734FA00284CD17C9B002B4B -:106200003FD100242B89EA689B180393039BA34288 -:1062100014D9039B049E1B1B9E4200D91E00330011 -:106220003A0021000298FFF775FC002833D13200B4 -:10623000390011A8FAF722FA00282ED008AB202244 -:1062400009A911A8FAF72AFA002824D17E9B002B6D -:1062500004D0202209A9180001F04BFAEB682C8920 -:1062600007ADE4182A00042321000298FFF752FC2E -:10627000002810D1384B2A889A4210D00120404281 -:1062800009E07D9B002BBCDD1A007C9911A8FAF770 -:10629000F5F90028B5D077B0F0BDA419B6E76B8842 -:1062A00001251B1905930434039004906D42059B4E -:1062B0009C4205D3049B002BE0D003980138EAE709 -:1062C00008AF04233A0021000298FFF723FC0028BE -:1062D000E1D13B787E88102B17D1202ECED1211D05 -:1062E000330011AA0298FFF715FC0028D3D1320021 -:1062F00011A909A801F0EEF90028BFD101230493E8 -:1063000008AB5B880433E418D1E7012B04D17F98F4 -:10631000FFF75AFF0500F3E7222BF1D13300483B8A -:10632000B82BABD8211D330011AA0298FFF7F2FB5E -:106330000028A3D1EDB27B8811AA0095202109A8DD -:106340000125FFF7E7FE6D420028D9D10123039311 -:10635000D6E7C0460900000107690000F7B507004D -:10636000002401262000FFF7A2FC01A9C0B2FFF71C -:106370009FFB3500011E0AD12C2363430B4A019871 -:10638000D2182023FFF7C6FB0500681E854101983F -:10639000FFF7B0FB002D04D0012C00D13D002800F8 -:1063A000FEBD012CFBD03400DCE7C04660A802082B -:1063B00073B50C00C0B201A91500FFF779FB0126E7 -:1063C000002807D12A0021000198FFF707FC0600EA -:1063D000701E86410198FFF78DFB300076BD0000EE -:1063E000F0B52C244443304B87B01C1923680500BA -:1063F0001A002E4B9A4201D001204AE02369DB06A5 -:10640000FAD4FFF754FC04A9C0B2FFF751FB030014 -:106410000120002B3ED1E368268905AFF6183A002B -:10642000042331000498FFF775FB0028E4D1204BCA -:106430003A889A4201D1788880192C236B431A4AF2 -:10644000D3181B6A9B688342D6D31A4BA27A1B7857 -:106450009A42D1D12000F9F795FE0028CCD12368CB -:106460001A00124B9A4217D180230290019000909B -:1064700003955B00104A04992000FFF7B3FE002843 -:106480000AD10498FFF736FB2000F9F79FFE431E60 -:106490009841404207B0F0BD002DADD004980021D6 -:1064A0008268FFF79BFBA7E760A802083DB8F39658 -:1064B00007690000E8AD0208D0AC02080023F0B57F -:1064C000B04CB14AB14DA544012013602B60FFF7D9 -:1064D00087FFAF4B040001201F79FFF775FE002CEA -:1064E00047D1AC4BC2B2DB6C39005E6880235B05E0 -:1064F000F3180293A84BF618300013ABFBF766FBBA -:10650000041E36D105A8FAF7EDF88021A34A8900C8 -:1065100005A8FAF7F5F805A90B20FAF701F9041E0A -:1065200027D1102313AA9E490B20FAF7C9F801239B -:10653000041E2B601DD1994A0B211BA8FAF71CF8E9 -:10654000041E16D1102217A91BA8FAF737F8041E4B -:106550000FD1202204AB2DAD019300922B0031000E -:106560001BA8FAF73BF8049B0400202B10D0012451 -:106570006442864B1B68002B05D00B20FAF744F8C9 -:10658000002800D004002000D3239B009D44F0BDD0 -:106590000028EED1020004AB29001BA8F9F7FCFF8C -:1065A000041EE6D107AE33002A0013CA13C37D4F81 -:1065B000126831A91A603800102201F09AF805A972 -:1065C0000C20FAF7ADF8041ED3D110233200744921 -:1065D0000C20FAF775F801226B4B041E1A60C8D123 -:1065E00071496DA8FAF73CF8041EC2D1029B029AC9 -:1065F0001B890C21D3181BA8684A0393F9F7BCFF29 -:10660000041EB6D1102239001BA8F9F7D7FF041ECB -:10661000AFD1802604AB7600019300962B003200A8 -:1066200003991BA8F9F7DAFF049B0400B3429ED13B -:1066300000289ED12D9B2E89AA7A309F3199581C13 -:1066400000D194E7C90600D591E75249C96C896821 -:10665000B94200D28BE755498B4200D087E74C4BBB -:106660001B78934200D082E78022290052006DA857 -:10667000FAF704F8041E00D07BE7F619330AF6B2E5 -:10668000771EBE4101279B190293039B3E029E1970 -:10669000029BBB4222D9002C00D06AE704AB0193D5 -:1066A00080232DAA5B00009313008022310052004A -:1066B0001BA8F9F793FF8023049A04005B009A4219 -:1066C00009D1002805D11A002DA96DA8F9F7D6FF28 -:1066D00004000137D9E701246442FAE7002C00D016 -:1066E00047E704AF3B0020220BA96DA8F9F7D6FFBE -:1066F000041E00D03DE780225200019700922B003B -:1067000031001BA8F9F76AFF041E00D031E7020030 -:106710003B0029001BA8F9F73FFF2D9B244A9BB2A1 -:106720000400934200D022E7002800D021E72E9AEF -:10673000D3B2102B00D01AE7120C202A00D016E793 -:106740002FA90BA800F0C6FF041E00D011E7379B4D -:10675000DBB2012B00D00AE70120FFF735FD409B9B -:10676000DAB2222A00D002E71B0C482B00D0FEE64A -:10677000C0B2009041AA20210BA8FFF7CBFC040077 -:10678000F7E6C046B4FCFFFFFCAF0208F8AF020812 -:10679000E8AD020860A802082000001000016004B3 -:1067A00001000040C0AC0208090000013DB8F396AA -:1067B000076900000023F0B51D4C0700A544694699 -:1067C000022000930193FFF773F900280ED00126F1 -:1067D0000098002801D0FFF78DF90198002801D01A -:1067E000FFF788F93000134B9D44F0BD01A901204B -:1067F000FFF75EF90600041EE9D10098A742E7D929 -:1068000080233D1BDB009D4200D91D002B0002AA06 -:106810002100FFF77FF90028D9D12B0002AA21001F -:106820000198FFF799F90028D1D16419E5E7C0462E -:10683000F4FBFFFF0C040000F0B500242500584FC6 -:106840009BB0BB6A0293029BAB4263D1554BDB7892 -:10685000002B00D19FE0002305A902200593069399 -:10686000FFF726F9002821D106A90130FFF720F90A -:1068700000281BD14C4A0C2108A8F9F77DFE0028FE -:1068800014D11022494908A8F9F798FE041E0DD129 -:106890000600BB6B0133FF330293059B5B680393D8 -:1068A000029BB34200D86CE0002C44D0059800282D -:1068B00001D0FFF71FF90698002801D0FFF71AF959 -:1068C0003B4B1B68002B02D00C20F9F79DFE1022D9 -:1068D0000021364800F016FF3B6D00219A68022027 -:1068E000FFF766FD43425841FEF7CAFB0C237A6D61 -:1068F000396D013A5343CB185A6849680220511A3E -:106900009A68FFF755FD43425841FEF7B9FB002056 -:106910001BB0F0BD0C236B437A6A2100D3189E682C -:1069200001203200FFF744FD43425841FEF7A8FB27 -:10693000A419013587E7029B9D1B8023DB009D4244 -:1069400000D91D00039B009599191A4B2A00C918FC -:1069500007AB019308A8184BF9F740FE079B04000A -:10696000AB420BD100289BD12B00134A3100069873 -:10697000FFF7F2F8002899D1761991E701246442D3 -:106980008EE7002C00D091E707AB22000A4908A847 -:10699000F9F702FE8AE72000FFF70CFF9CE7C046EC -:1069A00060A80208E8AD020800016004C0AC02085B -:1069B000FCAF020800040010C0A8020873B5164E10 -:1069C000164CF368626A5B0A01A901200193FFF784 -:1069D0008FF9012500281AD1019B226DA362F3686B -:1069E00001A95B0A02300193FFF782F9051E10D15D -:1069F000019B206A6365FFF755F90600A06DFFF75C -:106A000051F9331C864200D2031C5C3423702800E9 -:106A100076BD0125FBE7C04640A1020860A8020838 -:106A2000F0B50C265A4F89B0FB6800905C0A74439D -:106A3000200000F029FE0190200000F025FE019BBF -:106A4000544C0290636220650020FFF730F921006A -:106A5000C0B22031FFF72CF843425841FEF710FB3B -:106A60000120FFF724F92100C0B24C31FFF720F8D4 -:106A700043425841FEF704FB210003205831FFF741 -:106A800017F843425841FEF7FBFAFFF797FF051E40 -:106A90006BD1FFF763FC051E67D1FB68A06A5B0A38 -:106AA00098424FD8626D9A424CD890424AD10823FE -:106AB0004643626A216D08369E4226D1364E73786F -:106AC000002B3FD00C22002105A800F01BFE012066 -:106AD000FEF7D6FAFFF7DAFA831E0500022B07D875 -:106AE000F378002B19D0FFF7E9FC00281BD005250F -:106AF0000120FEF7C5FA012D24D0002D01DD052D62 -:106B00001BDD0020FEF7BCFAFEE71800D558CB5875 -:106B10000C309D4216D10300CEE70120FFF760FC48 -:106B2000E3E7032521E00120FEF7AAFAFFF784FE40 -:106B300043425841FEF7A4FADAE70020FFF70EFCC3 -:106B4000051E12D10020FFF74BFC0500684268418A -:106B5000FEF796FA002DE4D1236A00995A780A715B -:106B60005B680C600393039A8A60019800F096FDBD -:106B7000029800F093FDA06DFEF7BCFFE06CFEF7FD -:106B8000B9FF206AFEF7B6FF280009B0F0BDC04685 -:106B900040A1020860A80208E8AD020810B501781B -:106BA00004000A00303AD3B2092B1FD811000A01A1 -:106BB00061780B00303BD8B2092824D89918A27804 -:106BC00009011300303BD8B209282AD85A18E378B3 -:106BD000120118003038C1B28018092905D91900EE -:106BE000413905292BD8373B981810BD0B00413B84 -:106BF000052B01D83739DAE70B00613B0020052B64 -:106C0000F3D85739D3E70B00413B052B02D837396E -:106C10008918D4E70B00613B0020052BE5D85739D4 -:106C2000F6E71300413B052B02D8373A5218CEE75E -:106C30001300613B0020052BD7D8573AF6E719001F -:106C4000613900200529D0D8573BCDE7F7B50B783F -:106C500007004E1C222B0FD00026554B1960300028 -:106C6000FEBD02331A780130222A08D0002A06D04D -:106C70005C2AF6D00133F5E733000020F2E74D4BF4 -:106C80001B6898470190041E07D1019EE7E7721C1C -:106C90005C2B13D02370013416003378222B01D0E3 -:106CA000002BF4D1002323703378223B5A42534106 -:106CB000F618019B3B610423FB60D0E773786E2BD1 -:106CC00017D007D8611C622B0CD0662B0FD0237015 -:106CD00001340AE0742B0ED0752B0ED0722BF6D136 -:106CE0000D23F4E7082323700C000132D4E70C23B2 -:106CF000F9E70A23EBE70923E9E7B01CFFF74EFFAA -:106D00002D4B2E49C3180500721D8B42EDD900286A -:106D1000EBD02B4BC3188B4227D8B3795C2BE4D133 -:106D2000F379752BE1D130000830FFF737FF3200DF -:106D3000214B2249C3180B328B42D6D8214BAD02CE -:106D40001D4080238005800D05435B02ED181E4B1E -:106D5000E11C9D4223D803234C1E3F208021284064 -:106D6000494201432170AD0910E07F2809D8012371 -:106D700001341648611EC05C013B05430D70E418E8 -:106D8000B3E7134B9842E2D8022302343F2080211C -:106D900028404942013C01432170AD09E9E73F2009 -:106DA000802328405B420343E370AD090423D3E70B -:106DB000D0AD020880A102080024FFFFFF030000FD -:106DC0000028FFFF00FC0F00FFFF0000EE8A0D10FF -:106DD000FF070000002803D00378013B1F2B00D9D8 -:106DE00070470130F6E70000064B10B51B682820FD -:106DF0009847041E03D02822002100F083FC2000C5 -:106E000010BDC04680A10208F0B5050087B00E1E77 -:106E100001D1002413E004227549300000F054FD34 -:106E2000002803D10223EB60341D08E005227149DC -:106E3000300000F049FD002804D1E860741D2000F6 -:106E400007B0F0BD04226C49300000F03DFD002881 -:106E500006D101230122EB600023AA61EB61E3E785 -:106E60003378222B05D131002800FFF7EFFE040014 -:106E7000E5E71A00303AD2B22D2B01D0092A1AD8F0 -:106E8000340000E0013423781A00303A092AF9D995 -:106E90002D2BF7D0A71B3A003100684600F029FCE3 -:106EA00000236A466846D35500F0E4FB0323A8613B -:106EB000E961EB60C3E75B2B37D1563BEB60701C9D -:106EC000FFF788FF037804005D2B01D10134B6E79A -:106ED000FFF78AFF061EA8609BD02000FFF77AFF0D -:106EE00001003000FFF790FFFFF774FF0400002C53 -:106EF00000D18EE723782C2B04D05D2BE6D03F4BBE -:106F00001C6086E7FFF770FF051E00D181E7306047 -:106F10004660601CFFF75EFF01002800FFF774FF6A -:106F2000FFF758FF2E000400E1E77B2B5DD1753B96 -:106F3000EB60701CFFF74EFF037804007D2BC5D07B -:106F4000FFF752FF061EA86000D162E72000FFF79E -:106F500041FF01003000FFF779FEFFF73BFF0028FB -:106F600000D156E7002433693461336203783A2B49 -:106F700002D0224B186062E70130FFF72BFF0100BF -:106F80003000FFF741FFFFF725FF0400002C00D180 -:106F90003FE723782C2B02D07D2B97D0AFE7FFF76C -:106FA00023FF051E00D134E730604660601CFFF708 -:106FB00011FF01002800FFF749FEFFF70BFF002833 -:106FC00000D126E700242B692C612B6203783A2B31 -:106FD000CFD10130FFF7FEFE01002800FFF714FFBC -:106FE000FFF7F8FE2E000400D0E7044B1E6010E708 -:106FF000F58A0D10FA8A0D10008B0D10D0AD020825 -:107000000849094A002803D1084B0B60084B07E0E8 -:107010000368002B00D1054B0B604368002BF5D0B3 -:107020001360704780A102087CA1020889760D10C8 -:107030009D760D10F8B5802604007600002C00D156 -:10704000F8BDE3682768334204D1A068002801D066 -:10705000FFF7F0FFE3680B4D334204D120690028AD -:1070600001D02B6898478022E3689200134204D134 -:10707000206A002801D02B68984720002B68984789 -:107080003C00DBE77CA10208F7B505000E00019289 -:10709000FFF7AAFE0023134F04003B6098420CD078 -:1070A0002800FFF797FE01002000FFF7ADFE051E48 -:1070B00005D12000FFF7BEFF00242000FEBD019B8C -:1070C000002B0AD0FFF786FE03780500002B04D0C2 -:1070D0002000FFF7AFFF3D60EEE7002EEDD03560FA -:1070E000EBE7C046D0AD0208002210B51100FFF753 -:1070F000CBFF10BD0300093B0122042B02D920382D -:107100004242424110007047F0B5002517000600CA -:107110002C0089B003930E9B02901B0CDBB20493EE -:107120000E9B00911B0ADBB205930E9BDBB207930B -:10713000731C069333780193002B08D0009B002B1F -:1071400022DB029A731C9B1A009A9A421CDA0E9B4D -:10715000DBB2002B00D1B4E0019A9A4200D0AEE03D -:10716000009B002B06DB029A731C9B1A009A934229 -:1071700000DDA4E0B31C7678032D00D9A1E028003F -:1071800000F0ACF88989637B0198FFF7B3FF002812 -:1071900039D1079B019A9342D9D04F4E110030004C -:1071A00000F072FB031E08D1049B019A93420BD09E -:1071B000059B93426FD133003F33032D23D8280022 -:1071C00000F08CF80510233533003E33F5E7002F2F -:1071D00006D0039A94425ED23F4A9B1A9B003B55CD -:1071E000012510E0621C002F0BD003998A4252D275 -:1071F00039493C195B1A2178181101431B01217090 -:10720000BB5414000225069E92E7621C002F0BD08F -:1072100003998A423FD230493C195B1A2178981071 -:1072200001439B012170BB5414000325EBE7002FA1 -:1072300008D0039A94422ED227493A195B1A117842 -:107240000B43137001340025DDE71D00002E22D012 -:10725000009B002B22DB029B009AEB1A9A421DDA5C -:10726000019BB34217D1009B002B04DD029B009AC7 -:10727000EB1A93420FDC2E786B1C029A9D1A002E9B -:1072800004D0009B002B11DBAB420FDA002F18D08B -:107290003B5D002B15D00124644219E03000FFF75C -:1072A00029FF0028DCD02E780135CFE73000FFF72A -:1072B00021FF0028EFD0029B5E5D0135DFE7002D46 -:1072C000E9D1039B9C42E6D2002F01D000233B551D -:1072D000200009B0F0BDC046058B0D1002B4714608 -:1072E00049084900095C49008E4402BC7047C04609 -:1072F000002243088B4274D303098B425FD3030AF5 -:107300008B4244D3030B8B4228D3030C8B420DD307 -:10731000FF22090212BA030C8B4202D31212090295 -:1073200065D0030B8B4219D300E0090AC30B8B42D3 -:1073300001D3CB03C01A5241830B8B4201D38B0381 -:10734000C01A5241430B8B4201D34B03C01A524126 -:10735000030B8B4201D30B03C01A5241C30A8B4269 -:1073600001D3CB02C01A5241830A8B4201D38B0254 -:10737000C01A5241430A8B4201D34B02C01A5241F8 -:10738000030A8B4201D30B02C01A5241CDD2C3096A -:107390008B4201D3CB01C01A524183098B4201D3E6 -:1073A0008B01C01A524143098B4201D34B01C01AD1 -:1073B000524103098B4201D30B01C01A5241C30849 -:1073C0008B4201D3CB00C01A524183088B4201D3B8 -:1073D0008B00C01A524143088B4201D34B00C01AA4 -:1073E0005241411A00D20146524110467047FFE710 -:1073F00001B5002000F006F802BDC0460029F7D014 -:1074000076E770477047C046002B11D1002A0FD194 -:10741000002900D1002802D00021C943081C07B46C -:10742000024802A14018029003BDC046D9FFFFFFE9 -:1074300003B4684601B5029800F030F8019B9E46FF -:1074400002B00CBC7047C046F0B5CE4647461504A6 -:107450002D0C2E0080B50704140C3F0C9946030C2C -:107460007E435D43674363437F19340CE4199C46B4 -:10747000A54203D980235B029846C4444B4643434C -:107480005143250C36046544360C2404A4195B19B9 -:10749000591820000CBC90469946F0BDF0B54F46F7 -:1074A0004646D646C0B5040082B00D0091469846C7 -:1074B0008B422FD82CD04146484600F0CFF8290007 -:1074C0000600200000F0CAF8331A9C46203B9A467A -:1074D00000D576E04B46524693401F004B4662462D -:1074E00093401E00AF4228D825D05346A41BBD416F -:1074F000002B00DA7BE0002200230092019301239D -:10750000524693400193012362469340009318E052 -:107510008242D0D900220023009201930A9B002BC3 -:1075200001D01C605D600098019902B01CBC9046BF -:107530009946A246F0BDA342D7D90022002300926B -:1075400001936346002BE9D0FB0798464146720839 -:107550000A437B0866460EE0AB4201D1A2420CD83A -:10756000A41A9D41012024196D410021013E2418D7 -:107570004D41002E06D0AB42EED9013E24196D419B -:10758000002EF8D100980199534600196941002B4B -:1075900023DB2B005246D3402A006446E2401C0005 -:1075A00053461500002B2DDB26005746BE40330006 -:1075B00026006746BE403200801A99410090019132 -:1075C000ACE7624620239B1A4A46DA406146130024 -:1075D00042468A4017001F4380E7624620239B1AD9 -:1075E0002A0066469A402300F3401343D4E76246DC -:1075F000202300219B1A0022009101920122DA40EF -:10760000019280E72023624626009B1ADE402F006D -:10761000B0466646B74046463B003343C8E7C046DF -:107620001C2101231B04984201D3000C10391B0AB2 -:10763000984201D3000A08391B09984201D3000976 -:10764000043902A2105C40187047C04604030202CD -:1076500001010101000000000000000010B5002938 -:1076600003D1FFF7DDFF203002E0081CFFF7D8FF51 -:1076700010BDC04610B50A22002100F0F7F910BD78 -:10768000EC3000687047000010B5034B010018682B -:1076900000F08AF810BDC04684A1020810B5034B63 -:1076A0000100186800F036F810BDC04684A1020839 -:1076B00082B0002900D101A9101E06D0002B06D0EF -:1076C00013780B601078431E984102B07047022077 -:1076D0004042FAE730B50024A24201D1002005E083 -:1076E000035D651C0C5DA34201D0181B30BD2C004E -:1076F000F2E7002310B59A4200D110BDCC5CC4540F -:107700000133F8E703001218934200D17047197053 -:107710000133F9E770B50500002910D00C1F23686C -:10772000002B00DAE418280000F0C0F91D4A1368A5 -:10773000002B05D163601460280000F0B8F970BD1B -:10774000A34209D9216860188342F3D118685B68A5 -:1077500041182160EEE713005A68002A01D0A242C6 -:10776000F9D919685818A0420BD12068091858187F -:1077700019608242E0D110685268411819605A605D -:10778000DAE7A04202D90C232B60D5E72168601804 -:10779000824203D1106852684118216062605C60C7 -:1077A000CAE7C046D4AD0208032370B5CD1C9D4383 -:1077B000083506000C2D1ED20C25A9421DD830001C -:1077C00000F074F9254A14682100002919D1244CCD -:1077D0002368002B03D1300000F044F8206029001A -:1077E000300000F03FF8431C2BD10C2330003360F5 -:1077F00000F05DF903E0002DDFDA0C233360002098 -:1078000070BD0B685B1B19D40B2B03D90B60CC1814 -:10781000256003E04B688C420DD11360300000F00E -:1078200046F9200007220B30231D9043C31AE7D0EE -:107830005A42E250E4E763600C00EFE70C0049684D -:10784000C3E70323C41C9C43A042E1D0211A3000AB -:1078500000F008F8431CDBD1C7E7C046D4AD0208EE -:10786000D8AD0208002370B5064C0500080023605F -:1078700000F01EF9431C03D12368002B00D02B60BD -:1078800070BDC04604B00208C9B20378002B04D012 -:107890008B4200D170470130F7E74B4259414942D2 -:1078A0000840F7E702780B78002A03D00130013155 -:1078B0009A42F7D0D01A704703000A7801311A7043 -:1078C0000133002AF9D17047002330B59A420AD01B -:1078D000013AC45CCD5CAC4204D1934202D0013386 -:1078E000002CF6D1631B180030BD30B50500002A0E -:1078F00000D130BD0C78013A6B1C2C700131002C8A -:1079000005D19A189A42F4D01C700133FAE71D0091 -:10791000EDE70000F0B51F000E008DB00B90029156 -:10792000039212983478FFF7ABFE082200194378CF -:10793000751C134053D12D2C53D17478B51C0133D1 -:107940000193002F00D18AE0102F0AD1302C08D1EA -:1079500020222B789343582B00D07AE010276C78A4 -:107960000235019B002B41D1013B04933E4B059313 -:107970003A00FB17049805990893FFF745FD00238B -:1079800009900E00002000210A922200303A092AB4 -:1079900031D81400A7423DDD5A1C1DD0B14236D863 -:1079A00002D1099B984232D8099B834206D18E426C -:1079B00004D101230A9A5B42A2420DDB0B000200B4 -:1079C00008993800FFF740FDE31706940793069BDC -:1079D000079CC018614101232C780135D5E72E00A2 -:1079E0009FE72B2CACD1B51C7478A9E70023049336 -:1079F00080231B06BBE72200413A192A01D8373CF5 -:107A0000C8E72200613A192A04D8573CC2E701238B -:107A10005B42E1E75A1C09D10B9A23331360039BA5 -:107A200004980599002B0ED10DB0F0BD019A002AE3 -:107A300004D006000F0000217042B941039A002AC9 -:107A4000F2D0002B01D06B1E0293039B029A1A60A6 -:107A5000EAE73024002F00D083E7082781E7302CA5 -:107A600000D175E70A277CE7FFFFFF7F37B51300DA -:107A7000064A05001068046A002C00D1044C0A0074 -:107A800000942900FFF746FF03B030BD84A102082F -:107A9000E8A102080B1E04D0FF2A04D98A23036040 -:107AA0008B3B180070470A700123FAE77047704754 -:107AB000044A1368002B00D1034B181810601800FB -:107AC0007047C046DCAD020800000208F8B5C046A9 -:107AD000F8BC08BC9E467047F8B5C046F8BC08BC68 -:107AE0009E4670470000000001B40248844601BC75 -:107AF000604700BF1DA5020801B40248844601BCCE -:107B0000604700BF01A7020801B40248844601BCD7 -:107B1000604700BFEFA3020801B40248844601BCDD -:107B2000604700BF03A70208000000000700010330 -:107B300000000100030300003F00010300000F00EC -:107B4000C0102040030300004000010300000F00AC -:107B500000112040030300003F00010300000F005C -:107B600040112040030300007F00010300000F00CC -:107B700080112040000300000F00010300000F00EF -:107B800040122040030300003F00010300000F00EB -:107B900080122040000300000F00010300000F00CE -:107BA00000162040000300000F00010300000F003A -:107BB00040162040000300000F00010300000F00EA -:107BC00080162040000300000F00010300000F009A -:107BD00000172040000300007F00010300000F0099 -:107BE00040002040030300007F00010300000F005D -:107BF000C0002040030300007F00010300000F00CD -:107C000000012040030300007F00010300000F007B -:107C100080012040000001400900000300000F0027 -:107C2000010300000F00000000410140130007079E -:107C300000007F00802224400103010000000707AC -:107C40000000030000212440010301000100070798 -:107C500000000300C02024400103010002000707C8 -:107C600000000F00802024400103010005000505ED -:107C700000017E00402024400103010006000303B0 -:107C800000017E0000202440010301000CC0000719 -:107C900000000F0000222440010301000D0001013B -:107CA0000001700040222440010301000E00030384 -:107CB00000000100C0212440010301000FC007079C -:107CC00000000F0080212440010301001000030385 -:107CD0000000040040212440010301000CDF0007E4 -:107CE00000000F00402224400103010070726F76F3 -:107CF0005F726571007265736F75726365730042C0 -:107D00004F4F5400555047524144450073697A65BE -:107D1000006C61756E6368006D6F6E6F746F6E6975 -:107D20006300656E637279707400656E637279705A -:107D3000745F6B65795F6964006261636B75700085 -:107D4000626F6F745F6175746800757067726164EB -:107D5000655F6175746800736D69665F6964007260 -:107D60006570726F6772616D007374617274007216 -:107D70006570726F766973696F6E00626F6F745FA2 -:107D80006C6F61646572006B6579735F616E645FCF -:107D9000706F6C6963696573006D30700070657237 -:107DA0006D697373696F6E00636F6E74726F6C00D0 -:107DB0006B6579006D340073797374656D00737948 -:107DC0007363616C6C006D6D696F00726D6100644E -:107DD000657374726F795F6675736573006465733C -:107DE00074726F795F666C61736800707265736539 -:107DF0006E74006669726D77617265006365727496 -:107E000069666963617465006F70656E00646973AB -:107E100061626C656400656E61626C656400616CD2 -:107E20006C6F77656400646562756700776F756E67 -:107E300064696E6700626F6F745F7570677261640A -:107E400065007479706500617272617900697465AA -:107E50006D73006E756D62657200696E746567653D -:107E60007200626F6F6C65616E00737472696E6729 -:107E7000006D6178696D756D006D696E696D756D08 -:107E8000007065726970686572616C73006261731D -:107E9000655F61646472657373006D656D6F7269AF -:107EA000657300776F726B666C6173680073666CE4 -:107EB000617368007372616D00736F6674776172CD -:107EC00065006361706162696C69747900464C4158 -:107ED00053485F5043315F53504D00464C41534827 -:107EE0005F50433200464C4153485F504333004695 -:107EF0004C4153485F50433400464C4153485F4D1A -:107F000041494E5F434F444500464C4153485F4D05 -:107F100041494E5F584F00464C4153485F4D4149DF -:107F20004E5F4441544100464C4153485F535550C5 -:107F300045525649534F525900464C4153485F579A -:107F40004F524B5F53454355524500464C415348B1 -:107F50005F574F524B005352414D5F5043305F507B -:107F6000524956005352414D5F5043305F50554285 -:107F7000005352414D5F53504D5F5052495600538C -:107F800052414D5F53504D5F505542005352414D49 -:107F90005F5043315F50524956005352414D5F503C -:107FA00043325F50524956005352414D5F50433364 -:107FB0005F50524956005352414D5F5043345F5019 -:107FC000524956005352414D5F4D41494E00535264 -:107FD000414D5F44415000534D49465F434F444536 -:107FE00000534D49465F584F00534D49465F444149 -:107FF00054410000000021400000254000000140E5 -:1080000000003440000024400000314000003240B5 -:1080100000001F4100002340000011400101010148 -:108020000101010101101010800019005500F0003D -:108030000501053B04101C01010000000FC00000F9 -:108040000004000001010101011D3A577896000863 -:108050002000101208000000001F00000010000F98 -:10806000002000023F06080E00080009000A000B6D -:1080700024282C3034000000100000009000000084 -:1080800088000000080000008000000004F00000EC -:1080900000F00000400200002005A000D001000117 -:1080A0008001A0012000000010000000433A5C475E -:1080B00069744C61622D52756E6E65725C62756991 -:1080C0006C64735C32643334316331325C305C72C3 -:1080D00065706F5C6379626F6F746C6F61646572F9 -:1080E0005C70736F633670646C5C64726976657221 -:1080F000735C696E636C7564652F63795F69706327 -:108100005F6472762E6800433A2F4769744C61624F -:108110002D52756E6E65722F6275696C64732F32A5 -:10812000643334316331322F302F7265706F2F63B7 -:1081300079626F6F746C6F616465722F70736F63B7 -:108140003670646C2F647269766572732F736F7505 -:108150007263652F63795F6770696F2E6300433ABE -:108160005C4769744C61622D52756E6E65725C621B -:1081700075696C64735C32643334316331325C3002 -:108180005C7265706F5C6379626F6F746C6F616451 -:1081900065725C70736F633670646C5C6472697670 -:1081A0006572735C696E636C7564652F63795F6774 -:1081B00070696F2E6800433A2F4769744C61622DD5 -:1081C00052756E6E65722F6275696C64732F3264BE -:1081D0003334316331322F302F7265706F2F6379F2 -:1081E000626F6F746C6F616465722F70736F63364A -:1081F00070646C2F647269766572732F736F757219 -:1082000063652F63795F6970635F6472762E6300C4 -:10821000433A2F4769744C61622D52756E6E6572D8 -:108220002F6275696C64732F326433343163313279 -:108230002F302F7265706F2F6379626F6F746C6F60 -:10824000616465722F70736F633670646C2F647233 -:1082500069766572732F736F757263652F63795FCB -:108260006970635F706970652E6300433A2F4769D8 -:10827000744C61622D52756E6E65722F6275696CF9 -:1082800064732F32643334316331322F302F72658F -:10829000706F2F6379626F6F746C6F616465722F9A -:1082A00070736F633670646C2F6472697665727375 -:1082B0002F736F757263652F63795F70726F742EA1 -:1082C0006300433A2F4769744C61622D52756E6E9C -:1082D00065722F6275696C64732F32643334316355 -:1082E00031322F302F7265706F2F6379626F6F7428 -:1082F0006C6F616465722F70736F633670646C2F7E -:10830000647269766572732F736F757263652F631C -:10831000795F736D69662E630000010010008000B4 -:10832000E80310000001A00F00FA433A2F476974D8 -:108330004C61622D52756E6E65722F6275696C6448 -:10834000732F32643334316331322F302F726570C2 -:108350006F2F6379626F6F746C6F616465722F70D9 -:10836000736F633670646C2F647269766572732FF5 -:10837000736F757263652F63795F736D69665F6D87 -:10838000656D736C6F742E6300433A2F4769744CAC -:1083900061622D52756E6E65722F6275696C6473C1 -:1083A0002F32643334316331322F302F7265706F66 -:1083B0002F6379626F6F746C6F616465722F707375 -:1083C0006F633670646C2F647269766572732F7395 -:1083D0006F757263652F63795F737973636C6B2E4E -:1083E0006300433A2F4769744C61622D52756E6E7B -:1083F00065722F6275696C64732F32643334316334 -:1084000031322F302F7265706F2F6379626F6F7406 -:108410006C6F616465722F70736F633670646C2F5C -:10842000647269766572732F736F757263652F63FB -:10843000795F737973696E742E6300433A2F4769CD -:10844000744C61622D52756E6E65722F6275696C27 -:1084500064732F32643334316331322F302F7265BD -:10846000706F2F6379626F6F746C6F616465722FC8 -:1084700070736F633670646C2F64726976657273A3 -:108480002F736F757263652F63795F737973706D86 -:108490002E6300433A2F4769744C61622D52756E0A -:1084A0006E65722F6275696C64732F326433343178 -:1084B0006331322F302F7265706F2F6379626F6F67 -:1084C000746C6F616465722F70736F633670646C67 -:1084D0002F646576696365732F70736F63362F73CE -:1084E0007461727475702F73797374656D5F7073D6 -:1084F0006F63365F636D30706C75732E63000000C0 -:108500000300000001000000010000000000000066 -:1085100005036000040000000100000000000000EE -:108520000100000006046000080000001CC00208F2 -:10853000994E0D1050534F43365F464C41534800FF -:1085400034850D10695E0D100000000040850D108F -:10855000B48A0D10000000000000000007000000B9 -:108560000100000000000000010000000E000000FB -:1085700011000000000000000000000000000000EA -:1085800000000000000000000000000000000000EB -:1085900000000000000000000000000001000000DA -:1085A0000E000000110000000000000000000000AC -:1085B00000000000000000000000000000000000BB -:1085C00000000000000000000000000000000000AB -:1085D000010000000E00000011000000000000007B -:1085E000000000000000000000000000000000008B -:1085F000000000000000000000000000000000007B -:1086000000000000010000000E000000110000004A -:10861000000000000000000000000000000000005A -:10862000000000000000000000000000000000004A -:108630000000000000000000010000000600000033 -:108640001100000000000000000000000000000019 -:10865000000000000000000000000000000000001A -:108660000000000000000000000000000100000009 -:1086700006000000110000000000000000000000E3 -:1086800000000000000000000000000000000000EA -:1086900000000000000000000000000000000000DA -:1086A00001000000000000000000000000000000C9 -:1086B00000000000000000000000000000000000BA -:1086C00000000000000000000000000000000000AA -:1086D0000000000001000000000000000000000099 -:1086E000000000000000000000000000000000008A -:1086F000000000000000000000000000000000007A -:108700000000000000000000010000000600000062 -:108710001D0000000000000000000000000000003C -:108720000000000000000000000000000000000049 -:108730000000000000000000000000000100000038 -:108740000A0000001D000000000000000000000002 -:108750000000000000000000000000000000000019 -:108760000000000000000000000000000000000009 -:10877000010000000B0000001D00000000000000D0 -:1087800000000000000000000000000000000000E9 -:1087900000000000000000000000000000000000D9 -:1087A00000000000433A5C4769744C61622D5275C9 -:1087B0006E6E65725C6275696C64735C32643334CE -:1087C000316331325C305C7265706F5C6379626F0B -:1087D0006F746C6F616465725C70736F6336706424 -:1087E0006C5C647269766572735C696E636C7564E7 -:1087F000652F63795F737973636C6B2E680000007B -:10880000F4010000140004010A0009050800030037 -:1088100063010000020000000300000000000000EF -:10882000000000180000800000000000FC890D100E -:108830006000000000000000FFFFFFFF00000000DC -:108840000000000000000000200000000000000008 -:10885000FFFFFFFF0000000000000000000000001C -:108860000200000000000000FFFFFFFF000000000A -:108870000000000000000000EB000000000200000B -:1088800001000000020000000800000002000000DB -:108890003500000000000000FFFFFFFF00000000A7 -:1088A00000000000000000000500000000000000C3 -:1088B000FFFFFFFF000000000000000000000000BC -:1088C0000400000000000000FFFFFFFF00000000A8 -:1088D0000000000000000000060000000000000092 -:1088E000FFFFFFFF0000000000000000000000008C -:1088F0000100000000000000FFFFFFFF000000007B -:108900000000000000000000010000000300000063 -:10891000000000000000001800000001000000003E -:10892000488A0D106000000000000000FFFFFFFFFC -:108930000000000000000000000000002000000017 -:1089400000000000FFFFFFFF00000000000000002B -:10895000000000003800000000020000FFFFFFFFE1 -:10896000020000000000000002000000EB00000018 -:1089700000020000010000000200000004000000EE -:10898000020000003500000000000000FFFFFFFFB4 -:1089900000000000000000000000000005000000D2 -:1089A00000000000FFFFFFFF0000000000000000CB -:1089B000000000000400000000000000FFFFFFFFB7 -:1089C00000000000000000000000000006000000A1 -:1089D00000000000FFFFFFFF00000000000000009B -:1089E000000000000100000000000000FFFFFFFF8A -:1089F0000000000000000000000000000300000074 -:108A00000000800078880D10D8880D10C0880D10E7 -:108A100048880D100010000030880D1060880D107F -:108A200000010000A8880D1090880D10F0880D102E -:108A300000000000010000000200000041000000F2 -:108A4000D8D60000C20100000300000000000001B1 -:108A50006C890D10CC890D10B4890D103C890D1056 -:108A60000010000024890D1054890D100001000031 -:108A70009C890D1084890D10E4890D100000000000 -:108A800001000000020000008C000000409C00007B -:108A9000FA000000010000005CA8020801000000CC -:108AA0001400000007008E00010000000000080014 -:108AB00000020000A55D0D10D15E0D10E55E0D10E9 -:108AC000A15D0D10915D0D100400000077C295F3BB -:108AD00060D2EF7F3552500F2CB67980000100FF35 -:108AE00000020001000100030103FF000104000077 -:108AF000C0E0F0F8FC6E756C6C0066616C7365002C -:108B000074727565004142434445464748494A4BA3 -:108B10004C4D4E4F505152535455565758595A6117 -:108B200062636465666768696A6B6C6D6E6F7071AD -:108B300072737475767778797A30313233343536AA -:108B4000373839004300504F534958002E00002059 -:108B500020202020202020202828282828202020ED -:108B6000202020202020202020202020202020889D -:108B70001010101010101010101010101010100401 -:108B80000404040404040404041010101010101051 -:108B90004141414141410101010101010101010145 -:108BA000010101010101010101011010101010105B -:108BB0004242424242420202020202020202020215 -:108BC0000202020202020202020210101010200031 -:108BD0000000000000000000000000000000000095 -:108BE0000000000000000000000000000000000085 -:108BF0000000000000000000000000000000000075 -:108C00000000000000000000000000000000000064 -:108C10000000000000000000000000000000000054 -:108C20000000000000000000000000000000000044 -:108C30000000000000000000000000000000000034 -:108C40000000000000000000000000000000000024 -:048C50000000000020 -:088C540048E8FF7F0100000069 -:108C5C0000000D1000A00208C0000000848C0D1054 -:088C6C00C0A00208F0060000A0 -:108C7400ECA702081C08000000C002089C010000C8 -:108C8400CD7E0D10DB7E0D10E57E0D10EF7E0D10F8 -:108C9400F97E0D10097F0D10177F0D10277F0D1021 -:108CA400397F0D104B7F0D10567F0D10647F0D1012 -:108CB400717F0D107F7F0D108C7F0D109A7F0D102A -:108CC400A87F0D10B67F0D10C47F0D10CE7F0D1040 -:108CD400D77F0D10E17F0D10E97F0D1000093D00D5 -:108CE40000127A0000093D000000D00700093D0091 -:108CF400A00F00000400000008890D1014880D1056 -:108D0400EFBE0DD0016F0000000000000000020063 -:108D140000000000EFBE0DD0026F0000000005004F -:108D24000000020000000000EFBE0DD0036F000041 -:108D340000000F0000100000000000009D760D10E0 -:108D440089760D1088A102080000000000000000D0 -:108D5400000000000000000000000000000000000F -:108D640000000000000000000000000000000000FF -:108D740000000000000000000000000000000000EF -:108D840000000000000000000000000000000000DF -:108D940000000000000000000000000000000000CF -:108DA400000000000000000043000000000000007C -:108DB40000000000000000000000000000000000AF -:108DC400000000000000000043000000000000005C -:108DD400000000000000000000000000000000008F -:108DE400000000000000000043000000000000003C -:108DF400000000000000000000000000000000006F -:108E0400000000000000000043000000000000001B -:108E1400000000000000000000000000000000004E -:108E240000000000000000004300000000000000FB -:108E3400000000000000000000000000000000002E -:108E440000000000000000004300000000000000DB -:108E5400000000000000000000000000000000000E -:108E640000000000000000004300000000000000BB -:108E740000000000000000000000000000000000EE -:108E84000000000000000000957A0D10B1760D106E -:108E9400000000004E8B0D104C8B0D104D8B0D10EF -:108EA4004D8B0D104D8B0D104D8B0D104D8B0D10EA -:108EB4004D8B0D104D8B0D104D8B0D104D8B0D10DA -:108EC400FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000AC -:108ED4000100415343494900000000000000000024 -:108EE400000000000000000000000000000000007E -:108EF4000000415343494900000000000000000005 -:108F0400000000000000000000000000000000005D -:108F140000000000E9000D10C1000D1080B230B552 -:108F2400C00020D0104B07221C682300B0331B88DC -:108F34005A43236AD31819680029FCDA3E210B4BE3 -:108F4400062519600A4B0B491960A3210A4BC90075 -:108F54005D500A4958505858206A12180020506031 -:108F64005A58002AFCDA30BDE0AD0208040126405C -:108F7400080126401E1F0000000026401C050000BA -:108F840010B54378FF2B11D100F0BAF90400032087 -:108F940000F0A6F9C3685A680123116819431160E7 -:108FA40011681942FCD1200000F092F910BDF7B508 -:108FB40000900020019100F093F93F4D06002B68CA -:108FC4001A005033B43214681B780419002B5AD099 -:108FD40000F0B6F9070003281BD000F091F9374AD6 -:108FE400374B0500D358002B3EDA364A01213000B6 -:108FF40000F0B6F9002837D10198FFF78FFF009BE6 -:10900400002B3ED02368002BFCDB00F081F9040028 -:109014002BE0062000F064F92B68B4331B68C018F9 -:109024000368002B02DA284C2000FEBD002000F06B -:109034005FF9264B9842F6D00023254A190012689E -:10904400012000F085F90025A842ECD1002000F0B1 -:109054004FF91E4A1F4B904203D09D42E3D0013585 -:10906400F4E79D42B9D1DEE7174C032F05D1012166 -:10907400002000F05DF90028F9D1280000F028F95B -:10908400D2E7154CF1E700F03BF90E4A0500012147 -:10909400300000F065F9002809D1009B002B08D0AE -:1090A4002368002BFCDB00F033F90400E5E7064CF1 -:1090B400E3E7094CE1E7C046E0AD020800002640C2 -:1090C4001C05000008A802080500520001018800E0 -:1090D40018A80208F049020001005000F7B56E4DCF -:1090E40004002A68536800931300B03319880723D7 -:1090F4004B43126A9B181A68002AFCDA00F010F934 -:109104002A681300B033198807234B43212800D061 -:1091140096E0116A5B180221D8680143D960D968C6 -:10912400C9072FD508208446944460461600D968A0 -:10913400C06F0191116888360818356807684919A5 -:109144000D683902FF273F040F40694689882D0ABC -:109154002D0639432943D960902103684F4D0901F5 -:109164002B400B430360136830681B1818680540D4 -:109174002943196013686246D26F9A1812683268DC -:109184009B181B68444D2A681300B03319880723C1 -:109194004B43126A9B1800225A600423404A116907 -:1091A4000B431361012C50D030BF2A681300B03335 -:1091B400198807234B43126A9B181A68002AFCDAA1 -:1091C40000F0AEF8212842D1296807220B000124BF -:1091D400B0331B8800205A430B6AD318DD6825423C -:1091E4001CD0080008300D68C06F2C4E2818056884 -:1091F400DB6835401B0C1B061B0C2B4303600B0068 -:10920400883318680B6818180B6A0568D318DB686C -:109214002E401B0E1B023343036020000B6A022105 -:10922400D218D3688B43D3601B4B1A681300B03336 -:10923400198807234B43126A9B1800225A60FEBD0B -:10924400126A9B18174ADA609CE720BFADE700203A -:10925400009BFC331B698342E6D1A320124B1349C4 -:10926400134A144FC0000E681D5814680F60062777 -:109274001F503E20106010483E371F501F58002FCB -:10928400FCDA00980D4FFC3007610E60A321C90081 -:109294005D5001201460C7E7E0AD0208FF00FFFF46 -:1092A40000ED00E024A80208000026400801264042 -:1092B400040126401E1F00001C050000AAAAAAAA39 -:1092C400FEE7024A1368002BFCDB704700012640CE -:1092D40001B40248844601BC604700BF1B1D0D1049 -:1092E40001B40248844601BC604700BF0D1E0D1046 -:1092F40001B40248844601BC604700BF21280D1018 -:1093040001B40248844601BC604700BF131D0D1020 -:1093140001B40248844601BC604700BF411E0D10E1 -:1093240001B40248844601BC604700BF81440D106B -:1093340001B40248844601BC604700BFAD270D104C -:1093440001B40248844601BC604700BFCD4D0D10F6 -:1093540001B40248844601BC604700BF29250D10B2 -:1093640001B40248844601BC604700BF31230D109C -:10FE0000FC010000211221010000000000000000A0 -:10FE100000000D1000FE0000000001007D00000049 -:10FE20000100000000DA0F100000000000000000D8 -:10FE300000000000000000000000000000000000C2 -:10FE400000000000000000000000000000000000B2 -:10FE500000000000000000000000000000000000A2 -:10FE60000000000000000000000000000000000092 -:10FE70000000000000000000000000000000000082 -:10FE80000000000000000000000000000000000072 -:10FE90000000000000000000000000000000000062 -:10FEA0000000000000000000000000000000000052 -:10FEB0000000000000000000000000000000000042 -:10FEC0000000000000000000000000000000000032 -:10FED0000000000000000000000000000000000022 -:10FEE0000000000000000000000000000000000012 -:10FEF0000000000000000000000000000000000002 -:10FF000000000000000000000000000000000000F1 -:10FF100000000000000000000000000000000000E1 -:10FF200000000000000000000000000000000000D1 -:10FF300000000000000000000000000000000000C1 -:10FF400000000000000000000000000000000000B1 -:10FF500000000000000000000000000000000000A1 -:10FF60000000000000000000000000000000000091 -:10FF70000000000000000000000000000000000081 -:10FF80000000000000000000000000000000000071 -:10FF90000000000000000000000000000000000061 -:10FFA0000000000000000000000000000000000051 -:10FFB0000000000000000000000000000000000041 -:10FFC0000000000000000000000000000000000031 -:10FFD0000000000000000000000000000000000021 -:10FFE0000000000000000000000000000000000011 -:10FFF000000000000000000000000000000028D306 -:04000005100D4B335C -:00000001FF diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt deleted file mode 100644 index 1b42147797f..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_Release/CypressBootloader_CM0p.jwt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFUzI1NiJ9.eyJjeV9wdWJfa2V5Ijp7ImNydiI6IlAtMjU2Iiwia2lkIjoiMyIsImt0eSI6IkVDIiwidXNlIjoic2lnIiwieCI6IlNiOGxUcHlfcGQzTnJVVGtoSXpnMmp6TTM3dU5xTml1dDhXQy1RdjNYTVEiLCJ5IjoiQ3R3Q2k0YXJYc2pFRDVUVm1yX3ZQbFAya2UxMzNLSzdsUDdTel9JWmlERSJ9LCJleHAiOjE1Nzc3NDMyMDAsImlhdCI6MTU2MzI4NTQ1NCwiaW1hZ2VfYWRkcmVzcyI6MjY5Mjg3NDI0LCJpbWFnZV9maWxlIjoiQ3lwcmVzc0Jvb3Rsb2FkZXJfQ00wcC5oZXgiLCJpbWFnZV9oYXNoIjpbNjksOTYsNTEsNCwxMzksMTcwLDE4MSwxNDMsMTU5LDE2MywyMDgsMCwzNiwyNDYsNTcsMTY1LDI1NCwxOTgsMTI0LDY5LDczLDAsMTAxLDIxNywxMjUsMTE4LDQ3LDIwLDQzLDYzLDIxMyw3NV0sImltYWdlX2lkIjowLCJpbWFnZV92ZXJzaW9uIjoiMS4wLjAuMTI1IiwicG9saWN5X3RlbXBsYXRlIjoiIn0.Y_P-BfopTCNRBi5ZhwjGsCkq3qeFoGAW30Oy-Tn4JK-BMxcyXyIoABcB06Oyg6PwJjcPprTNCuAV_Pxirn3r0A \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex deleted file mode 100644 index f2da6e43706..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.hex +++ /dev/null @@ -1,3762 +0,0 @@ -:02000004100DDD -:1000000000C00208DF4E0D100D0000004D4F0D1016 -:1000100000000000000000000000000000000000E0 -:10002000000000000000000000000000494F0D101B -:100030000000000000000000494F0D10494F0D1056 -:10004000494F0D10494F0D10494F0D10494F0D10DC -:10005000494F0D10494F0D10494F0D10494F0D10CC -:10006000494F0D10494F0D10494F0D10494F0D10BC -:10007000494F0D10494F0D10494F0D10494F0D10AC -:10008000494F0D10494F0D10494F0D10494F0D109C -:10009000494F0D10494F0D10494F0D10494F0D108C -:1000A000494F0D10494F0D10494F0D10494F0D107C -:1000B000494F0D10494F0D10494F0D10494F0D106C -:1000C00010B5064C2378002B07D1054B002B02D02E -:1000D000044800E000BF0123237010BDECA7020814 -:1000E00000000000B4E10D10044B10B5002B03D04C -:1000F0000349044800E000BF10BDC04600000000F6 -:10010000F0A70208B4E10D100021124B124A10B5FD -:10011000D8601C68002C06DB914202D101204042CD -:1001200010BD0131F5E79142F8D00121996000211D -:100130001C69002C03DA9142F0D00131F8E79142BA -:10014000ECD0A0220368120600209342E8D01800E9 -:10015000E6E7C04600002340983A00001FB50023A0 -:100160000193D82300049B05C018029001AB02A89C -:100170000C000393FFF7C8FF002801D1019B236007 -:1001800004B010BD13B5084BC47A986801A9C0B279 -:10019000FFF7E4FF002803D1019B9C42804116BD7C -:1001A00001204042FBE7C04620AE02081FB5064BC7 -:1001B0000004C018029001AB02A801910393FFF75D -:1001C000A3FF05B000BDC0460001003610B5034BCB -:1001D000C17A9868C0B2FFF7E9FF10BD20AE0208EF -:1001E000F0B50F000400002685B0BE4201D100200A -:1001F0003EE0A0221F4BD2009A582378032A04D055 -:10020000092B02D801361034EFE71B4A0A33DB0012 -:1002100099580029F6D0D3185B6801AD2B7163782B -:1002200001916B71A3782900AB71E378A068EB7141 -:1002300023792B7263796B72E3886B8102F0D8FBB0 -:10024000002815D1237B2900AB71637BA068EB717B -:10025000E3896B8102F072FB002809D1A06802F0EB -:100260004DFC002804D1A06802F030FC0028C9D061 -:1002700005B0F0BD0000214020AE020870B50600B8 -:100280000024104AA3019B180F491A68A3015B18A8 -:100290001B68002A04DA0134102CF2D1002070BD52 -:1002A000002BF8DB094B3100E518AD01280002F006 -:1002B00045FB0028F3D1280002F008FC0028EAD012 -:1002C000EDE7C04604202440242024408090000113 -:1002D00073B50E0004000025B54201D1002076BDA3 -:1002E0006A462378694613706378E0685370A37890 -:1002F0009370E378D370A388938002F093FE002874 -:10030000EDD16A46A37969461370E379E0685370CA -:10031000237A93706389938002F028FE0028DED14F -:10032000E06802F0F5FE0028D9D1E06802F0D6FEC0 -:1003300010340028D3D10135CEE773B50E00040088 -:100340000025B54201D1002076BD6A462378694672 -:1003500013706378E0685370A3789370E378D37078 -:10036000A388938002F05EFD0028EDD16A46A37950 -:1003700069461370E379E0685370237A9370638958 -:10038000938002F0F3FC0028DED1E06802F0CAFDA1 -:100390000028D9D1E06802F0A1FD10340028D3D1A3 -:1003A0000135CEE7F0B50F000400002685B0BE424F -:1003B00002D1002005B0F0BD236801AD019323797F -:1003C00029002B71637960696B71A379AB71E37953 -:1003D000EB71237A2B72637A6B7263896B8102F003 -:1003E00005FC0028E6D1237B2900AB71637B6069A3 -:1003F000EB71A37B2B72238A6B8102F097FB0028A1 -:10040000D8D1606902F08EFC0028D3D1606902F077 -:1004100065FC18340028CDD10136C8E730B5174B3C -:1004200085B001930D2301AD2B71437804006B71EE -:1004300083782900AB71C378EB7103792B72437910 -:100440006B72C38880686B8102F0D2FA002813D1E6 -:10045000237B2900AB71637BA068EB71E3896B811F -:1004600002F06CFA002807D1A06802F047FB0028D0 -:1004700002D1A06802F02AFB05B030BD00C002081E -:10048000B02310B55B055B78124C232B1BD00B21DE -:100490002000FFF7A5FE00281AD10F48FFF7EEFE57 -:1004A000002815D10A210D48FFF712FF00280FD1AF -:1004B00004210B48FFF741FF002809D10121094819 -:1004C000FFF770FF04E02000FFF7A8FF0028DED050 -:1004D00010BDC0466CC70D1068C60D1074C60D1057 -:1004E00014C70D1054C70D1010B501210148FFF7B6 -:1004F00077FE10BD1CC80D100022124B124910B51A -:10050000D8601C68002C05DB8A4201D1012010BD97 -:100510000132F6E78A42F9D001229A6000220B49A3 -:100520001C69002C03DA8A42F0D00132F8E78A42D3 -:10053000ECD0A0220368120600209342E7D01800F6 -:10054000E5E7C04600002340983A00000094357764 -:1005500010B5D42488B005930A9BA40506930B9B81 -:100560000094029002AC68460194039104920793B0 -:10057000FFF7C2FF08B010BD00B5064B89B000936D -:10058000029002AB6846019303910492FFF7B4FF17 -:1005900009B000BD000B003510B5074C88B00094C1 -:1005A000029002AC68460194039104920593FFF710 -:1005B000A3FF08B010BDC046000E003500B5064BC5 -:1005C00089B00093029002AB6846019303910492B4 -:1005D000FFF792FF09B000BD000C003510B588B0E0 -:1005E00005930A9B074C06930B9B0094029002AC68 -:1005F00068460194039104920793FFF77DFF08B0CA -:1006000010BDC046000D003500B5054B89B0009304 -:10061000029002AB68460193FFF76EFF09B000BD80 -:10062000000A003500B5054B89B00093029002AB7B -:1006300068460193FFF760FF09B000BD0005003573 -:1006400000B5064B89B00093029002AB6846019357 -:1006500003910492FFF750FF09B000BD000400357C -:100660001FB5054B02900093684602AB01930391BE -:10067000FFF742FF05B000BD001000357FB5064B07 -:100680000390019301A803AB029304910592FFF735 -:1006900033FF07B000BDC0460011003510B5074C50 -:1006A00086B00094029002AC6846019403910492D3 -:1006B0000593FFF721FF06B010BDC04600120035BC -:1006C00010B5074C86B00094029002AC68460194C5 -:1006D000039104920593FFF70FFF06B010BDC046CB -:1006E000000900357FB5054B0390019301A803ABCA -:1006F0000293FFF701FF07B000BDC04600060035BA -:100700007FB5064B0390019301A803AB02930491BC -:100710000592FFF7F1FE07B000BDC04600070035A7 -:100720007FB5054B0390019301A803AB029304919D -:10073000FFF7E2FE07B000BD000800357FB5064BAD -:100740000390019301A803AB029304910592FFF774 -:10075000D3FE07B000BDC0460002003510B5074CFF -:1007600086B00094029002AC684601940391049212 -:100770000593FFF7C1FE06B010BDC046000100356D -:1007800010B58CB006930E9B0A4C07930F9B0194F7 -:100790000893109B03900993119B03AC0A93129B3F -:1007A00001A80294049105920B93FFF7A5FE0CB0EB -:1007B00010BDC04600030035F0B58DB01D0012AB72 -:1007C00040CB02921B780F000393002305AA04A9D3 -:1007D0000493059300F03DF9041E3BD1204B3A00F1 -:1007E00000930599029B049807F050F8002834DD27 -:1007F000022007AA06A9FF300694079401F0AEF97B -:10080000002803D12900069800F0F4FF812007AAF0 -:1008100006A9400001F0A2F9652400281ED131008C -:10082000069800F077FD041E14D108A9380000F0E6 -:1008300028F9041E0ED131000B9800F063FB041E52 -:1008400008D1039A29000B9800F03AF9040008989F -:1008500006F0B2FF20000DB0F0BD14246442F9E7A9 -:10086000005F2D00F0B51F00002387B002910392B6 -:1008700004A905AA0493059300F0EBF8041E2ED1F9 -:10088000059800F07FF8040007F00EFC051E31D03B -:100890001A4B0200009305992300049806F0F6FF16 -:1008A000002822DD280006F0E1FF061E20D001000E -:1008B000134800F09FF8002814D00069002811D0D8 -:1008C000039B220000930197029B2900FFF774FF0E -:1008D0000400300006F070FF280007F0EFFB200056 -:1008E00007B0F0BD01246442F3E714246442F3E747 -:1008F0000524FBE764246442F1E7C046005F2D0055 -:100900002CC80D1010B5010004000B4808F076FA51 -:10091000002398420DD02100084808F06FFA012307 -:10092000002806D02100064808F068FA43424341F7 -:100930005B00180010BDC04633C90D103CC90D1036 -:1009400048C90D1010B5010004000B4808F056FA14 -:10095000002398420DD02100084808F04FFA0123E7 -:10096000002806D02100064808F048FA43424341D7 -:100970005B00180010BDC0464DC90D1056C90D10C2 -:100980005EC90D1003235843800898430430704714 -:10099000F8B5C3680D000860062B21D18468124F9A -:1009A000002C01D12000F8BD266A002E06D03100AF -:1009B0000E4808F023FA002802D16C602468EFE7A3 -:1009C00031000B4808F01AFA002801D1AC60F5E7B5 -:1009D0003100380008F012FA0028EFD1EC60EDE7A2 -:1009E00002204042DFE7C04675C90D1066C90D10F0 -:1009F0006CC90D10F0B507000D00002491B001AED8 -:100A0000002D02D1280011B0F0BD296A002904D0C0 -:100A1000380008F0F3F90028F4D0AB68002B06D0BA -:100A20000E2C12D8A200955101341D00E8E72B6866 -:100A3000002BFAD1002C0AD0013CA3009B591B6863 -:100A4000002BF2D1002CF7D1EFE70025DAE72500E3 -:100A5000D8E7F8B50E002E21170008F0C1F9041EE2 -:100A60000CD0451C2E21280008F0BAF9002805D02A -:100A7000001B0138386000203560F8BD1620404268 -:100A8000FBE770B5050000200C0006F07BFE280097 -:100A900006F0ECFE002803D02100FFF779FF70BDBF -:100AA00005204042FBE7002304220133002901D145 -:100AB000904203D952001D2BF7D102331800704722 -:100AC000F0B589B005900C000100C24807920027DC -:100AD000FFF790FFB84200D145E18568069702957F -:100AE0000497029B002B00D08AE0EB68062B00D015 -:100AF00039E12E00B84F31003800FFF77BFF079A2D -:100B0000037E9A4200D0DEE03100B448FFF772FF66 -:100B10008369237029003800FFF76CFF2278037E79 -:100B20009A4200D1A8E12D68002DF3D12900AC48EC -:100B3000FFF760FF002806D02300FF335B7B012B0B -:100B400001D18369A3602900A648FFF753FF00285D -:100B500008D02300FF339B7A012B03D1C3685A1EB0 -:100B6000934163702900A048FFF744FF002808D094 -:100B70002300FF331B7B012B03D1C3685A1E934113 -:100B8000E37029009948FFF735FF002806D02300BD -:100B9000FF331B7B012B01D183692371290094480A -:100BA000FFF728FF002809D02300FF331B7E012B0D -:100BB00004D1C3685A1E9341E21CD37729008D48A3 -:100BC000FFF718FF002800D1A6E0C368052B00D06E -:100BD000A2E082682300200012331530FF33FF307B -:100BE000002A00D198E01978012903D119009669EB -:100BF000F5390E700133984200D18DE01268EFE7AD -:100C000002997D48FFF7F6FE002804D0836801931F -:100C1000019B002B03D1029B1B68029361E70199A2 -:100C20007648FFF7E7FE00284AD0036974491800A8 -:100C3000039308F0E3F8002842D07249039808F0C3 -:100C4000DDF800283CD000266F4AB300995803987D -:100C500008F0D4F8071E05D00136172EF4D1052769 -:100C6000183E7F4201996948FFF7C4FE002801D071 -:100C70008369069301996648FFF7BCFE002804D0FB -:100C8000C1698069FFF70FFF0490731C18D0049BA3 -:100C9000002B15DD92227300E31852009A5C012AA2 -:100CA00004D1320006990A32D20011512622FF32B5 -:100CB0009B5C012B04D10A36F600049BA6197360D5 -:100CC000019B1B68A3E73668002E00D012E721E7DE -:100CD0004C49380008F092F8002800D0FFE03100BD -:100CE0004A48FFF787FE002806D02300FF331B7C0D -:100CF000012B01D18369636131004548FFF77AFE1A -:100D0000002800D1EBE02300FF331B7C012B00D037 -:100D1000E5E08369A361E2E029003E48FFF76AFE4F -:100D2000002817D0C368052B14D182682300200047 -:100D300015331830FF33FF30002A0BD01978012902 -:100D400003D119009669F5390E700133984201D02C -:100D50001268F1E729003048FFF74CFE002835D033 -:100D600000278369A37005992C48FFF743FE0028EC -:100D700058D000258668002E54D031002448FFF753 -:100D800039FE00280BD063191A001A32FF3212788C -:100D9000012A04D102326A439B1882699A623100A7 -:100DA0001F48FFF727FE00280BD063191A001932DD -:100DB000FF321278012A04D102326A439B188269F9 -:100DC0005A6202350A2D2DD03668D4E7A07007008C -:100DD000C9E7C04633C90D109CC80D1051C80D108D -:100DE00058C80D107AC90D1062C80D106AC80D10D0 -:100DF00079C80D1080C80D1035C80D1082C90D10AE -:100E00003FC80D1044C80D10C0A00208D2C90D1073 -:100E10004CC80D108AC80D1097C80D109FC80D1032 -:100E2000A9C80D1005992F48FFF7E4FD051E20D035 -:100E300001002D48FFF7DEFD00280AD02423FF33F0 -:100E4000E35C012B05D1C3685A1E934122004D3249 -:100E5000137029002548FFF7CDFD002809D0912304 -:100E60005B00E35C012B04D1C3684C345A1E9341F0 -:100E70002370380009B0F0BD29001D48FFF7BAFD06 -:100E8000002800D152E68668002E00D14EE63100DF -:100E90001848FFF7AFFD002821D007691649380030 -:100EA00007F0ACFF002800D012E731001348FFF72D -:100EB000A1FD002806D02300FF339B7B012B01D12D -:100EC0008369E36031000E48FFF794FD002806D0E7 -:100ED0002300FF33DB7B012B01D18369236136685B -:100EE000D2E7C046AFC80D10BBC80D10C7C80D1063 -:100EF00035C80D1082C90D103FC80D10D2C90D1094 -:100F00004CC80D10F8B507000C000100BA48FFF7F7 -:100F100071FDBA4E051E2AD001003000FFF76AFDB0 -:100F2000002808D0230068331B78012B03D1006907 -:100F3000FFF708FD20702900B148FFF75BFD00288E -:100F400008D0230069331B78012B03D10069FFF718 -:100F5000D9FC60702900AB48FFF74CFD002806D093 -:100F600023006A331B78012B01D18369A3703900F8 -:100F7000A548FFF73FFD051E2AD001003000FFF70E -:100F800039FD002808D023006B331B78012B03D1D7 -:100F90000069FFF7D7FCE07029009948FFF72AFDA8 -:100FA000002808D023006C331B78012B03D1006983 -:100FB000FFF7A8FC207129009248FFF71BFD0028CD -:100FC00006D023006D331B78012B01D18369637137 -:100FD00039008E48FFF70EFD051E00D184E00100A8 -:100FE0003000FFF707FD002808D023006E331B7880 -:100FF000012B03D10069FFF7A5FCA07129008048EF -:10100000FFF7F8FC002808D023006F331B78012B72 -:1010100003D10069FFF776FCE07129007948FFF7FA -:10102000E9FC002806D0230070331B78012B01D186 -:101030008369237229007648FFF7DCFC002808D07A -:10104000230071331B78012B03D1C3685A1E9341CF -:10105000637229006F48FFF7CDFC002808D02300F9 -:1010600072331B78012B03D1C3685A1E9341A372BC -:1010700029006948FFF7BEFC002808D0230073331D -:101080001B78012B03D1C3685A1E9341E3722900D8 -:101090006248FFF7AFFC002808D0230074331B78A8 -:1010A000012B03D1C3685A1E9341237329005C4866 -:1010B000FFF7A0FC002808D0230075331B78012B14 -:1010C00003D1C3685A1E9341637329005548FFF743 -:1010D00091FC002808D0230076331B78012B03D124 -:1010E000C3685A1E9341A37339004F48FFF782FC2F -:1010F000050001003000FFF77DFC002808D0230028 -:1011000077331B78012B03D10069FFF71BFC207498 -:1011100029003C48FFF76EFC002808D023008C33E0 -:101120001B78012B03D12300826964331A702900D4 -:101130003E48FFF75FFC00282AD000268768002F72 -:1011400026D039003A48FFF755FC00280AD0A319E9 -:101150001A0078321278012A04D1023272439B18A5 -:1011600082695A6139003348FFF744FC00280AD0ED -:10117000A3191A0079321278012A04D1023272437B -:101180009B1882699A6102360A2E01D03F68D6E721 -:1011900029002948FFF72EFC00282BD00025032723 -:1011A0008668002E26D031002148FFF723FC002856 -:1011B0000AD063191A0082321278012A04D13A0047 -:1011C0006A439B188269DA6331001A48FFF712FC00 -:1011D00000280AD063191A0083321278012A04D138 -:1011E0003A006A439B1882691A6402350A2D01D0BD -:1011F0003668D6E70020F8BDD9C80D10DDC80D103F -:10120000E8C80D10F0C80D10F4C80D10F7C80D1087 -:10121000FEC80D1006C90D1025C90D10E3C90D102B -:10122000EDC90D10F4C90D100BC90D100FC90D102B -:10123000A9C80D104CC80D101DC90D1070B50400C3 -:101240000D0086B00021142201A806F06BFF2900D2 -:101250002000FFF7CFFB0400002C18D021001C4811 -:10126000FFF7C8FB0028F7D00569002D0AD0194EFA -:101270002900300007F0C2FD00280BD1310001A881 -:1012800007F0C6FD210001A8FFF7B4FB0400200011 -:1012900006B070BD104E2900300007F0AFFD0028E9 -:1012A000ECD029000D4807F0A9FD0028E6D00C4E2F -:1012B0002900300007F0A2FD0028DFD029000948EE -:1012C00007F09CFD0028DDD121000748C1E7C0469A -:1012D00082C90D10AAC90D1093C90D109AC90D101D -:1012E000A2C90D1087C90D108DC90D1010B5FFF7DB -:1012F00081FB0124002809D08168002906D0044818 -:10130000FFF778FB002801D0C468E4B2200010BDCC -:101310002BC90D10F0B5050085B000200C0006F0BB -:1013200031FA280006F0A2FA0190002800D14BE221 -:101330000100A148FFF75EFB051E00D0B4E00123C9 -:101340005B42009301999D48FFF754FB051E00D0B6 -:10135000EEE001235B42009301999948FFF74AFBB5 -:10136000051E00D03EE101235B42009301999548A0 -:10137000FFF740FB071E00D122E2934E0100300030 -:10138000FFF75CFF390005003000FFF7AFFF0600F4 -:10139000002D00D1F6E12869FFF7D4FA2300773356 -:1013A00020741E70894E39003000FFF747FF390066 -:1013B00005003000FFF79AFF002D00D1E6E1230081 -:1013C000AA6964331A702833187039008048FFF70F -:1013D00011FB051E00D1E6E101007E48FFF72EFF5C -:1013E000290006007B48FFF781FF0390002E00D103 -:1013F000D0E1B369029329007748FFF71FFF290066 -:1014000006007548FFF772FF002E00D1C7E1B669EC -:10141000230022002100143378323C31029D5E60AB -:101420001D606D462D7B0833507015700232994255 -:10143000F4D139006948FFF7DDFA061E00D1BFE19B -:10144000644F01003800FFF7F9FE31000500380055 -:10145000FFF74CFF0390002D00D1A8E1AB69029388 -:101460005D4F31003800FFF7E9FE3100050038001C -:10147000FFF73CFF002D00D19EE1AD692300220063 -:101480003C338232643402995D6019606946097B9D -:101490000833507011700232A342F4D1019806F063 -:1014A0008BF9009805B0F0BD474F01003800FFF7F9 -:1014B000C5FE290006003800FFF718FF0700002EC0 -:1014C0002FD03069FFF73EFA2300683320701F7079 -:1014D0000023434F290038000093FFF7AFFE290097 -:1014E00006003800FFF702FF0700002E1CD030690D -:1014F000FFF708FA2300693360701F70334F29002B -:101500003800FFF79BFE290006003800FFF7EEFECB -:10151000002E00D113E7B369A37023006A3318705B -:1015200010E701235B42D4E701235B420093E5E728 -:10153000254F01003800FFF781FE29000600380022 -:10154000FFF7D4FE0700002E2DD03069FFF7FAF91F -:1015500023006B33E0701F70214F29003800FFF724 -:101560006DFE290006003800FFF7C0FE0700002EC0 -:101570001DD03069FFF7C6F923006C3320711F704E -:10158000124F29003800FFF759FE290006003800E5 -:10159000FFF7ACFE002E00D1DBE6B36963712300D8 -:1015A0006D331870D8E601235B420093D4E7012322 -:1015B0005B420093E4E7C046D9C80D10F4C80D1093 -:1015C000F7C80D100BC90D10DDC80D10F0C80D10B7 -:1015D0000FC90D10A9C80D104CC80D101DC90D1054 -:1015E000E8C80D107A4F01003800FFF727FE2900E8 -:1015F00006003800FFF77AFE0700002E00D1A1E0B8 -:101600003069FFF79FF923006E33A0711F70714F8F -:1016100029003800FFF712FE290006003800FFF706 -:1016200065FE0700002E00D190E03069FFF76AF9EF -:1016300023006F33E0711F70674F29003800FFF7F8 -:10164000FDFD290006003800FFF750FE002E00D1F6 -:1016500080E0B36923722300703318705F4F290054 -:101660003800FFF7EBFD290006003800FFF73EFECB -:10167000002E73D0F3685A1E9341637223007133B6 -:101680001870574F29003800FFF7D8FD29000600D1 -:101690003800FFF72BFE002E64D0F3685A1E9341EA -:1016A000A3722300723318704E4F29003800FFF7E1 -:1016B000C5FD290006003800FFF718FE002E55D0A2 -:1016C000F3685A1E9341E372230073331870464F38 -:1016D00029003800FFF7B2FD290006003800FFF7A7 -:1016E00005FE002E46D0F3685A1E93412373230053 -:1016F000743318703D4F29003800FFF79FFD290013 -:1017000006003800FFF7F2FD002E37D0F3685A1EAE -:1017100093416373230075331870354F29003800E7 -:10172000FFF78CFD290006003800FFF7DFFD002ED3 -:1017300000D118E6F3685A1E9341A3732300763351 -:10174000187013E601235B42009360E701235B42BC -:10175000009371E701235B4200937FE701235B4223 -:1017600000938EE701235B4200939DE701235B42D8 -:101770000093ACE701235B420093BBE701235B428C -:101780000093CAE701235B4200930BE601235B420F -:1017900000931AE601235B42029600932BE6012395 -:1017A0005B42009334E601235B42009341E6012350 -:1017B0005B420295009353E601235B4200935DE692 -:1017C00001235B42009369E605235B42009368E6D0 -:1017D000DDC80D10E8C80D10F0C80D10FEC80D10C2 -:1017E00006C90D1025C90D10E3C90D10EDC90D1066 -:1017F000F4C90D10F0B5050085B000200C0005F00F -:10180000C1FF280006F032F80190002800D181E1E4 -:101810000100C248FFF7EEF8051E00D13AE1C04FC3 -:1018200001003800FFF70AFD290006003800FFF725 -:101830005DFD002E00D109E1B36923702300FF3361 -:1018400058720023B74F290038000093FFF7F6FCC9 -:10185000290006003800FFF749FD002E00D1F8E00E -:10186000F3685A1E934163702300FF339872AE4FA2 -:1018700029003800FFF7E2FC290006003800FFF7D6 -:1018800035FD002E00D1E8E0F3685A1E9341E37065 -:101890002300FF331873A54F29003800FFF7CEFC53 -:1018A000290006003800FFF721FD002E00D1D8E006 -:1018B000B369A3602300FF3358739D4F290038009C -:1018C000FFF7BCFC290006003800FFF70FFD002ED3 -:1018D00000D1CAE02200B369FF32DBB223779074F3 -:1018E0006377D074A3771075924F29003800FFF703 -:1018F000A5FC290006003800FFF7F8FC002E00D1F7 -:10190000B7E02200B369FF32DBB2611CE3775075A8 -:10191000CB77A11C9075CB77D075874E290030000E -:10192000FFF78CFC290007003000FFF7DFFC002FD9 -:1019300000D1A2E0FB685A1E9341E21CD37723003A -:10194000FF33187601997D48FFF754F80600002F01 -:1019500000D19FE023000122794FFF3301009A73E9 -:10196000DA731A745A743800FFF768FC3100050006 -:101970003800FFF7BBFC0390002D00D181E0AB697C -:101980000293704F31003800FFF758FC310005001A -:101990003800FFF7ABFC002D00D177E0AD692200E5 -:1019A00021002300253209315033FF32FF31029EDE -:1019B0005D601E606E46367B0833167050700232D2 -:1019C0008B42F4D101996048FFF714F8061E00D14C -:1019D0006DE05E4F01003800FFF730FC310005007C -:1019E0003800FFF783FC0390002D57D0AB690293BA -:1019F000544F31003800FFF721FC3100050038005A -:101A0000FFF774FC002D4ED0AD69220023002100A9 -:101A100019322433FF324C31029E5D601E606E46E7 -:101A2000367B08335070167002329942F4D1019916 -:101A30004748FEF7DFFF051E3DD101235B420093BF -:101A4000019805F0B9FE009805B0F0BD01235B4296 -:101A5000F8E601235B42009309E701235B42009310 -:101A600019E701235B42009327E701235B420093C0 -:101A70003AE701235B4200934FE701235B42009367 -:101A800060E701235B42029500937AE701235B4202 -:101A9000009384E701235B42009393E701235B42B9 -:101AA00002950093A4E701235B420093ADE7012375 -:101AB0005B420093BBE7274F01003800FFF7BEFBF6 -:101AC000290006003800FFF711FC002E1ED0F36835 -:101AD0005A1E934122004C32137091235B00E05454 -:101AE0001D4F29003800FFF7A9FB29000600380028 -:101AF000FFF7FCFB002EA0D0F3685A1E9341220092 -:101B00004D3213702423FF33E05499E701235B42E5 -:101B10000093E5E705235B42009394E733C90D107A -:101B20009CC80D107AC90D1062C80D1058C80D1050 -:101B300080C80D108AC80D1079C80D1035C80D1059 -:101B4000D2C90D104CC80D109FC80D10A9C80D109A -:101B5000AFC80D10C7C80D10BBC80D107FB5DC2372 -:101B60009B0500936C46002302AD01950290154839 -:101B70006B60C460144C0668002E07DBA34203D1DF -:101B80000120404204B070BD0133F4E7A342F7D016 -:101B90000123836000230669002E03DAA342EFD0FD -:101BA0000133F8E7A342EBD0A02300981B0698422C -:101BB00001D00098E6E7029B002013606B680B6081 -:101BC000E0E7C04600002340983A0000F0B5170057 -:101BD0008A22434C9200A544079008910EA8002148 -:101BE000BFB2099306F09EFA0CAA0BA93800FEF7C3 -:101BF000A5FD00260500B0422CD1C02280210B9B00 -:101C0000D2051A40C9058A4237D10C9BDC1DE40875 -:101C100020000D9406F048FA0925061E1AD001008E -:101C20000DAB22003800FEF799FD051E12D16B4660 -:101C3000198C102304930293079B079A3033019366 -:101C4000284B40320392009332000D9B0EA8FEF702 -:101C500097FD0500300006F031FA002D05D1202255 -:101C600009990EA8FEF7ECFC05000EA8FEF7DAFCB9 -:101C7000280099239B009D44F0BD1B4A934207D145 -:101C80000C9B5C0809230134E4085C433B34BFE748 -:101C9000164A934203D10C9BDC082934B8E7144A56 -:101CA000934205D103240C9BDB085C435A34AFE715 -:101CB000104A934205D103240C9BDB085C434A3451 -:101CC000A6E70D4A1B0C1B0493429ED00B4A04004E -:101CD00093429DD10C9BDC1DE4081234640097E70D -:101CE0009CFDFFFF0901202200000170000001603F -:101CF000000002700000026000000370000003603A -:101D000070B508000D0014000E1E05D0731B9C4218 -:101D100003DCE043C017204070BD307803F024FDA1 -:101D20000136F3E770B500240D001600A1420AD178 -:101D3000200070BD03F024FDC0B2285501340A28EC -:101D4000F6D00D28F4D0B442F4DBF1E70000000037 -:101D50000230800803D001300238FCD1C046C046B2 -:101D60007047EFF3108072B6704780F310887047A9 -:101D7000014B18607047C046E0AD0208044B1B6879 -:101D80001A0008321B68D26F9B181868000E704743 -:101D9000E0AD0208054B1B681A0008321B68D26FC1 -:101DA0009B181868000AC0B27047C046E0AD020830 -:101DB0001D4B98420FD010D840282FD005D80028AE -:101DC00030D0102828D019481EE0802828D0802341 -:101DD0005B009842F7D1144816E0154B984214D096 -:101DE00008D8A0231B0698421CD0124B9842EAD177 -:101DF000A0200BE0104B98420AD0104B984209D01B -:101E00000F4B9842DFD10F487047A420C003FBE777 -:101E10000D48F9E70D48F7E70D48F5E70D48F3E7FA -:101E20000D48F1E70020EFE706005200FF005200E6 -:101E3000010000F0090000A0040000F0050000F01F -:101E4000030000F0010052000200520003005200A3 -:101E500001005000020050000500520070B50A4D0C -:101E600004002B6831331B78834204D8E6210748ED -:101E7000490002F035FC2B681A00B0321088444348 -:101E8000186A201870BDC046E0AD0208ECCB0D10FA -:101E900010B50020FFF7E2FF0A4B1C682300B433A3 -:101EA0001B68C0180368002B0ADB074B1868FFF794 -:101EB0007FFF012263689A609A68002AFCD110BDF6 -:101EC0000248FCE7E0AD020808A802080200500042 -:101ED0000D4B10B51860002804D0FE235B42038030 -:101EE00000234380094B1B681A0050321278002AE5 -:101EF00008D051331B78002B04D002220449002063 -:101F000000F086FB10BDC04618A80208E0AD02082C -:101F1000C1A3020870B5C4050500E40D28D103F083 -:101F200025F8144B144A1A605D609C60DC60134B0A -:101F30001B6854331978002915D0FFF71FFF0400E0 -:101F4000FFF728FFFA210134013060430C4B0D4CA0 -:101F500089004443186805F08DFD0100200005F05C -:101F600089FD094BC118802040000AF05DFB70BD5F -:101F70000648FCE708A802080001001CE0AD0208C2 -:101F800020A1020860F590009808000006005200A9 -:101F900070B5C40506000D00E40D2AD1002928D033 -:101FA00002F0E4FF144B154A1A605C609E60DD602D -:101FB000134B1B6852331978002915D0FFF7DEFE4A -:101FC0000400FFF7E7FEFA210134013060430D4BB6 -:101FD0000D4C89004443186805F04CFD01002000B9 -:101FE00005F048FD094BC118802040000AF01CFB99 -:101FF00070BD0748FCE7C04608A8020800010005BC -:10200000E0AD020820A10208C0EA21014826000034 -:102010000600520070B506000C001500072903D910 -:102020001449154802F05CFB1F232A009A4303D091 -:102030001249114802F054FB114B1B689A695B6905 -:10204000B01AC0090001C0181F231D40032C07D877 -:10205000E400A340A54002689A431543056070BDA3 -:10206000043CE400A340A54042689A431543456000 -:10207000F5E7C046910200009ECC0D1092020000D0 -:10208000E0AD0208F0B585B000900D001400002806 -:1020900000D138E1002A00D135E1072903D94E21CA -:1020A0009A4802F01DFB2368012B03D94F21974862 -:1020B00002F016FB0F2362689A4303D05021934825 -:1020C00002F00EFB1F22237A934303D051218F4845 -:1020D00002F006FBE368032B03D952218B4802F080 -:1020E000FFFA2369012B03D95321884802F0F8FA3B -:1020F0006369012B03D95421844802F0F1FAA369E2 -:10210000012B03D95521814802F0EAFAE369032B38 -:1021100003D956217D4802F0E3FA236A012B03D943 -:1021200057217A4802F0DCFA636A012B03D958215F -:10213000764802F0D5FAA36A012B03D959217348D6 -:1021400002F0CEFAE36A032B03D95A216F4802F05A -:10215000C7FA236B072B03D95B216C4802F0C0FA46 -:102160002668072D04D9CC216948890002F0B8FA05 -:102170000122AA400192012E07D96649644802F063 -:10218000AFFA009B019A9A6004E0002EF9D1009BFF -:10219000019A5A606668072D03D95F495C4802F0CE -:1021A0009FFA0F2332009A4303D05C49584802F04B -:1021B00097FA0F215A4FAB0002933B6808007D331A -:1021C0001A78009B0E40D2181368A9009C46AB00F9 -:1021D000984063468E4083431E431660227A29004E -:1021E0000098FFF717FFE668082D03D94D494848C6 -:1021F00002F076FA032E03D94B49454802F070FAF3 -:10220000032108006B0003933B686F00B8400E4049 -:10221000BE407C331A78009B9A18136883431E4390 -:1022200016602669082D03D94049394802F058FA4A -:10223000012E03D93E49364802F052FA019A009B1A -:10224000D74301221640AE409B693B401E43009B92 -:102250009E616669072D03D936492D4802F040FA80 -:10226000012E03D934492A4802F03AFA01202C4BB6 -:1022700006401968AE400B0084467E331B78009AF6 -:10228000D3181A68174037431F600B0062467F332C -:102290001878009B6E001818A36910361340AB40E5 -:1022A000E56902321540B540B2402B43019D0768F5 -:1022B0002A4397433B4303600220042580310A7878 -:1022C000009B9A18636A11685B000340A06A800053 -:1022D000284003436046256A284018250343E06AE6 -:1022E000C00028400343206BFF24400120400343EB -:1022F000FE20029D80000540AB400020A1430B431F -:10230000136005B0F0BD0D48FBE7C04647CC0D108B -:102310009ECC0D1031030000CD030000CE03000061 -:10232000E0AD0208F1060000F206000072060000AF -:10233000730600000C0400000D04000001005A00A8 -:102340000B4B70B51B680500B4331B680C00C31839 -:102350001B68002B09DA0B0C03D00649064802F073 -:10236000BFF90020A4B26C6070BD0448FCE7C04611 -:10237000E0AD0208DE020000ECCB0D1001008A0087 -:10238000036870B505000C00002B0BDAC2600B0C63 -:1023900004D0B1210448890002F0A2F90020A4B2BF -:1023A000AC6070BD0148FCE7ECCB0D1001008A0069 -:1023B00070B505000C1E03D1A221084802F090F967 -:1023C000074B1B68B4331B68EB181B68002B03DA40 -:1023D0000020EB68236070BD0248FCE7F6CC0D10CE -:1023E000E0AD020801008A00024B1A68002A00D101 -:1023F000186070471CA80208F0B5314D1F002B680B -:1024000085B0040002910392002B03D1BE212D4818 -:1024100002F066F92C23FF225C432B683D001C1957 -:102420003B0A3F0CA760284F134063603B68154090 -:10243000256031331B789D4204D3E62123484900AF -:1024400002F04EF93B681A00B032128855431A6AFE -:102450003233AD1825611B7865689D4204D3F421A1 -:102460001A48490002F03CF93B681E6A2B00803391 -:102470005B01F3186361A36801931B0C09D0134F30 -:102480001349380002F02CF982213800890002F04B -:1024900027F9019B6D011B041A0C13430D4A751992 -:1024A000AD182B60039BE361029B23620023A361B1 -:1024B0000A9B002B01D01B88A38105B0F0BDC0464C -:1024C0001CA8020850CD0D10E0AD0208ECCB0D1099 -:1024D0000702000008100000F0B5040085B00028D5 -:1024E00003D15B21214802F0FBF86368032B03D979 -:1024F0005D211E4802F0F4F8E36A002B03D161214C -:102500001A4802F0EDF8236B002B03D16221174823 -:1025100002F0E6F8A36802AD2B80154B22681B6819 -:10252000E16ADB8EE0689B18AB706368A26A039374 -:1025300000952369266A676AFFF75EFF00213B006A -:102540000A0000913000FFF757FF216B280002F0CE -:102550004FF80022AB5E002B06DB1F2213401E3A11 -:102560009A401300034A136005B0F0BD50CD0D1022 -:10257000E0AD020800E100E0F7B504000F00151E11 -:10258000019304D183211D48490002F0A9F81C4E93 -:102590003368002B04D108211848FF3102F0A0F85D -:1025A0002C235C4332685F4314192669D719002E27 -:1025B00020D0BB69002B1FD13368002B1CDA01220D -:1025C0006368140011009C407B6899402B680904E3 -:1025D0009BB20B432B60019BF5607B62BA61230CBD -:1025E00004D0B1210748890002F07AF80020A4B293 -:1025F000B460FEBD0448FCE70448FAE750CD0D1076 -:102600001CA80208ECCB0D1004028A0007028A0005 -:10261000F8B5114F04003B680E001500002B04D1E3 -:1026200068210E48FF3102F05BF82C2060433C68C3 -:102630002418236A002B04D16C210848FF3102F0D2 -:102640004FF8E369AB4204D90020236AAD00EE5095 -:10265000F8BD0348FCE7C0461CA8020850CD0D1089 -:102660000A028A00002373B504000193984204D142 -:10267000ED212C48490002F033F82369002B04D1E6 -:10268000DC212848FF3102F02BF86369002B04D1CC -:10269000EE212448490002F023F8236A002B04D1DC -:1026A000DE212048FF3102F01BF86269D5682B0C4F -:1026B00022D01B04136013681B4B20691B68B433C2 -:1026C0001B68C3181B68002B16DA01A9FFF770FE00 -:1026D0000026B0420CD10198E26903681E0CDBB2FF -:1026E0009A4205D9226A9B009B58002B00D098473C -:1026F00031002069FFF724FEADB2002D09D06369D7 -:102700001D6000251B68636AAB4205D0984765626F -:10271000A56163691B6873BDA36A002BF8D0984755 -:10272000F6E7C04650CD0D10E0AD020870B5084C7C -:1027300005002368002B04D1DD210648490001F083 -:10274000CFFF2C20454320684019FFF78BFF70BD59 -:102750001CA8020850CD0D1070B50A4D04002B685E -:1027600031331B78834204D8E6210748490001F041 -:10277000B7FF2B681A00B03210884443186A20183B -:1027800070BDC046E0AD0208ECCB0D10F8B5174B9C -:102790000D001B6831331B78834225D9002923D0D3 -:1027A0001F240B681C401FD1FFF7D6FF07002B68C2 -:1027B0000F4EDA0821003060686805F0B3FC210094 -:1027C0003800FFF7BDFD21002A003068FFF7D8FD73 -:1027D000041E07D101003068FFF7B2FD030020009E -:1027E000002B00D00348F8BD0348FCE7E0AD020829 -:1027F00020A8020801018A0003018A00F7B5184FDA -:1028000004003B680191DE683368834226D90025C5 -:10281000A94202D1FFF7A5FA050038680368002B2A -:102820001ADA1F2201232240934064097268A4002F -:102830001419226813420DD09A432260002400210B -:10284000FFF77EFD019B002B02D12800FFF78DFAD8 -:102850002000FEBD034CF2E7034CF3E7034CF7E71F -:1028600020A80208020188000301880004018A00F0 -:102870000A4B1B68DB681A6882420DD959681F230E -:10288000420918401E3B8340920050581840431E96 -:102890009841034BC01870470248FCE720A8020883 -:1028A0000001880004018A0070B5154E04003368E9 -:1028B0000D009B6CC340DB0703D4A721114801F036 -:1028C0000FFF0F2D03D9A8210E4801F009FFF022B8 -:1028D0002B041203290013400F2211400B433168CF -:1028E000A402096964188021C9016350605810402E -:1028F000401B431E9841044B4042184070BDC046E7 -:10290000E0AD0208ABCD0D100300C20070B5094D5B -:1029100004002B689B6CC340DB0703D4C721064827 -:1029200001F0DEFE2B6810341B69A402E0580F236F -:10293000184070BDE0AD0208ABCD0D1070B50400BD -:102940000D00002804D17A212448FF3101F0C8FE8F -:102950006B89DB0B04D0BD212048490001F0C0FE8B -:102960000222AB799343012B04D07C211B48FF3119 -:1029700001F0B6FE0222EB799343012B04D0BE2175 -:102980001648490001F0ACFE6A897F231100994383 -:1029900022D10721AB7952020B4013436A7A3131BD -:1029A00092071343EA79D2000A4013430122297A9D -:1029B0004A40920113431A0009490A409A420BD136 -:1029C0006262606A0840801A43425841054B4042A7 -:1029D0001840054BC01870BD0448FCE7ABCD0D1086 -:1029E000DBFEFFE0FDFF3DFF0300C2000100C2006F -:1029F00070B504000D00002804D1C2212E48FF311B -:102A000001F06EFE6B89DB0B04D0E1212A484900FE -:102A100001F066FEAB79072B04D9C4212648FF31AB -:102A200001F05EFEEB79072B04D9E2212248490030 -:102A300001F056FE2B79073B182B04D9C6211E48FE -:102A4000FF3101F04DFE6B897F22190091430A1E70 -:102A50002ED12968FF3291430A006979A8790A4387 -:102A600007215B02084018436B7A31319B071843FA -:102A7000EB79DB000B4018430123297A4B40F82106 -:102A80009B0118432B7949051B060B4003436360E8 -:102A90002260216891420DD16068084A1040C01A36 -:102AA00043425841064B40421840064BC01870BD87 -:102AB0000548FCE70348FAE7ABCD0D10FFFEFFFF2A -:102AC000FDFF3DFF0300C2000100C20010B5041E5F -:102AD00004D1FF210748490001F002FE8023626A09 -:102AE0001B0613436362606A034BC00F0138184032 -:102AF00010BDC046ABCD0D100300C20010B5041EC2 -:102B000003D10749074801F0EBFD802362681B06EB -:102B1000134363606068044BC00F0138184010BD58 -:102B20004E020000ABCD0D100300C20070B50400D2 -:102B30000D00002803D12449244801F0D1FD0222D0 -:102B4000AB799343012B04D0A5212048C90001F0A3 -:102B5000C7FD0222EB799343012B03D01C491B488C -:102B600001F0BEFD1B4B1B682F331A78012A26D1BA -:102B700069897F230800984323D10720AB79490254 -:102B800003400B43697A313089070B43E979C90067 -:102B900001400B43297A4A40920113431A000E491F -:102BA0000A409A420DD16262606A0840801A43422C -:102BB00058410A4B40421840094BC01870BD0948A3 -:102BC000FCE70948FAE7C04627050000ABCD0D1029 -:102BD00029050000E0AD0208DBFEFFE0FDFF3DFF40 -:102BE0000300C2000200C2000100C20070B505006F -:102BF0000C00002803D12F492F4801F071FDA37963 -:102C0000032B03D92D492C4801F06AFDE379032BEE -:102C100003D92B49284801F063FD2379073B182B82 -:102C200004D9AF212448C90001F05AFD254B1B6887 -:102C30002F331A78012A36D161897F2308009843FF -:102C400033D10720A379490203400B43617A313025 -:102C500089070B43E179C90001400B43217A4A40BF -:102C6000F821920113432279490512060A401343C1 -:102C70001A0015490A409A4217D1FF232068984349 -:102C8000030060796A6003432B60286898420ED184 -:102C900068680840801A434258410C4B4042184033 -:102CA0000B4BC01870BD0B48FCE70B48FAE708480F -:102CB000F8E7C04675050000ABCD0D1076050000A5 -:102CC00077050000E0AD0208DBFEFFFFFDFF3DFFE2 -:102CD0000300C2000200C2000100C20010B5041EC1 -:102CE00003D10B490B4801F0FBFC0B4B1B682F3346 -:102CF0001B78012B0AD18023626A1B06134363628F -:102D0000606A064BC00F0138184010BD0448FCE74C -:102D1000BD050000ABCD0D10E0AD02080300C20000 -:102D20000200C20010B5041E03D10B490B4801F08C -:102D3000D7FC0B4B1B682F331B78012B0AD1802348 -:102D400062681B06134363606068064BC00F01385E -:102D5000184010BD0448FCE716060000ABCD0D106E -:102D6000E0AD02080300C2000200C20070B504001A -:102D70000D00002803D12149214801F0B1FC2B7836 -:102D8000032B03D91F491E4801F0AAFC6B78032BC3 -:102D900003D91D491A4801F0A3FC1C4B1B682F33B3 -:102DA0001A78012A26D1A9887F230800984323D1C5 -:102DB00007202B78490203400B43E978313089071B -:102DC0000B436978C90001400B43A9784A4092013E -:102DD00013431A000E490A409A420DD16262606A9A -:102DE0000840801A434258410A4B404218400A4B5F -:102DF000C01870BD0948FCE70948FAE7560800000A -:102E0000ABCD0D105708000058080000E0AD0208D7 -:102E1000DBFEFFE0FDFF3DFF0300C2000200C20039 -:102E20000100C20070B504000D00002803D1214943 -:102E3000214801F055FC2B78032B03D91F491E486C -:102E400001F04EFC6B78032B03D91D491A4801F0A1 -:102E500047FC1C4B1B682F331A78012A26D1A988FE -:102E60007F230800984323D107202B784902034091 -:102E70000B43E978313089070B436978C900014079 -:102E80000B43A9784A40920113431A000E490A40A5 -:102E90009A420DD1626060680840801A43425841EE -:102EA0000A4B404218400A4BC01870BD0948FCE765 -:102EB0000948FAE7A7080000ABCD0D10A8080000EC -:102EC000A9080000E0AD0208DBFEFFE0FDFF3DFFCA -:102ED0000300C2000200C2000100C20010B5041EBF -:102EE00003D10B490B4801F0FBFB0B4B1B682F3345 -:102EF0001B78012B0AD18023626A1B06134363628D -:102F0000606A064BC00F0138184010BD0448FCE74A -:102F1000EB080000ABCD0D10E0AD02080300C200CD -:102F20000200C20010B5041E03D10B490B4801F08A -:102F3000D7FB0B4B1B682F331B78012B0AD1802347 -:102F400062681B06134363606068064BC00F01385C -:102F5000184010BD0448FCE744090000ABCD0D103B -:102F6000E0AD02080300C2000200C20070B5040018 -:102F70000D00002803D12149214801F0B1FB2B7835 -:102F8000032B03D91F491E4801F0AAFB6B78032BC2 -:102F900003D91D491A4801F0A3FB1C4B1B682F33B2 -:102FA0001A78012A26D1A9887F230800984323D1C3 -:102FB00007202B78490203400B43E9783130890719 -:102FC0000B436978C90001400B43A9784A4092013C -:102FD00013431A000E490A409A420DD16262606A98 -:102FE0000840801A434258410A4B404218400A4B5D -:102FF000C01870BD0948FCE70948FAE7A8090000B5 -:10300000ABCD0D10A9090000AA090000E0AD02082F -:10301000DBFEFFE0FDFF3DFF0300C2000200C20037 -:103020000100C20070B504000D00002803D1214941 -:10303000214801F055FB2B78032B03D91F491E486B -:1030400001F04EFB6B78032B03D91D491A4801F0A0 -:1030500047FB1C4B1B682F331A78012A26D1A988FD -:103060007F230800984323D107202B78490203408F -:103070000B43E978313089070B436978C900014077 -:103080000B43A9784A40920113431A000E490A40A3 -:103090009A420DD1626060680840801A43425841EC -:1030A0000A4B404218400A4BC01870BD0948FCE763 -:1030B0000948FAE7F9090000ABCD0D10FA09000044 -:1030C000FB090000E0AD0208DBFEFFE0FDFF3DFF75 -:1030D0000300C2000200C2000100C200094B1B68CD -:1030E0002F331B78012B0AD18023426A1B0613431E -:1030F0004362406A044BC00F0138184070470348D0 -:10310000FCE7C046E0AD02080300C2000200C200B6 -:10311000094B1B682F331B78012B0AD1802342688F -:103120001B06134343604068044BC00F013818402E -:1031300070470348FCE7C046E0AD02080300C20048 -:103140000200C200036810B5020080241B0500D4F1 -:10315000403C82239B00D3580020DB05DB0DA342BB -:1031600003D090239B00D150013010BD0368802014 -:103170001B0500D440387047F0B5050085B00C0041 -:103180001600002800D177E1002900D174E10B7806 -:10319000022B03D94821B94801F0A2FA637B023B14 -:1031A000062B03D94921B54801F09AFAA37B002BDD -:1031B00006D0023B012B03D94A21B04801F090FA16 -:1031C000A31CDB7F012B03D94B21AC4801F088FA0B -:1031D000230028331B78012B03D94C21A74801F089 -:1031E0007FFA2378012B00D93AE108236268083A74 -:1031F00093429B415B42002B03D04E219F4801F03C -:103200006FFAA368053B042B03D94F219B4801F0BB -:1032100067FA6369FF2B03D95021984801F060FADF -:10322000A369FF2B03D95121944801F059FAA37CDB -:10323000002B0CD02378002B05D1A368092B02D1D9 -:10324000A37B002B03D053218C4801F049FA8C4B0F -:10325000626B1A4203D05521884801F041FA894B2C -:10326000E26B1A4203D05621844801F039FA2378E0 -:10327000022B03D10022A37F934201D063685A1E20 -:10328000237F0021581E834118040823A768BB42EE -:10329000494107331A4080239B0413430343C90267 -:1032A0000B432B602800276BFFF760FF874203D397 -:1032B0006B21724801F014FA2800A76BFFF756FF44 -:1032C000874203D36C216D4801F00AFA2800676A2F -:1032D000FFF74CFF874203D36D21684801F000FAE5 -:1032E000C022217892040B0613402B64607FE76AAA -:1032F000431E984183010093A37C07205A1E9341EB -:10330000227C9B020193531E9A411302627C02931A -:10331000531E9A415302F02203937B1E12031B0497 -:103320001340627B013A02401343A27B2930120111 -:1033300002401A43009B1A43019B1A43029B1A4303 -:10334000039B1A43AA64207B431E9841E37B00023F -:10335000002B00D08DE002394B4259414B02A2684C -:10336000511E0F2211400143C020194380002950F3 -:10337000FF21A36909041B040B406169C9B20B4317 -:10338000C42189006B502B581A400332974201D355 -:10339000102F03D98321394801F0A2F90021E37FDE -:1033A00022788B4203D0531E59424B411902072009 -:1033B0003027637B013A013B0340A07B000138408A -:1033C00003430B436B64237B0F20591E8B4119026F -:1033D000A368013B03400B4351424A41120413438B -:1033E0008022FF219200AB50236B05320B40FF324D -:1033F000AB50631CDB7F5F1EBB415F06A31CDB7F02 -:10340000013B584243411806230028331B78013BF7 -:103410005A4253411A04636A0B403B43034313432C -:103420002B65A36B626B194081239B00E950164BFF -:1034300030001340154AAB50E36B154A1340154A50 -:10344000AB5000239E4209D01800134A7360B3604A -:103450003360F36033623363F362726305B0F0BDCF -:103460000023A27F9A4200D1C5E663685A1E062354 -:10347000BEE680239B0072E70848EFE702CE0D10FE -:1034800092F4FFFF8CF8FFFF6D0B0000C80F0000E7 -:1034900073070000880F0000EFCDAB000160AA00A9 -:1034A000036810B50400002B07D0012001F00EF9CD -:1034B0002368013B2360002B01D0002010BD014890 -:1034C000FCE7C0460200B200030A08704B70030C10 -:1034D000000E8B70C870704770B504000D00002896 -:1034E00041D000293FD0002B3DD05A62F922032160 -:1034F000D20083588B4383502B68DBB2012B03D956 -:1035000057311A4801F0ECF8AB68DBB2032B03D952 -:103510005B21164801F0E4F86B68072B03D95C21A6 -:10352000124801F0DDF8EB68DBB2012B03D95D2115 -:103530000E4801F0D5F8C022E021AB6892011B03D0 -:1035400013406A68C90212040A4013430122296821 -:1035500000200A4080211343EA68490412060A4009 -:103560001343236070BD0248FCE7C0465DCE0D10DA -:103570000400B20010B50400012907D9A0210748B2 -:1035800001F0AEF801232268134304E00029F9D1C9 -:10359000012203689343236010BDC0465DCE0D1029 -:1035A00070B54E1EF3B204001500012B07D9042993 -:1035B00025D0082927D0E521154801F091F8032DE1 -:1035C00003D9E621124801F08BF8072E14D83000F9 -:1035D00004F046FA041312171212121B80231B0167 -:1035E000E418002C08D0C0222D0492022368154054 -:1035F000084A13401D43256070BD8823EFE7032A66 -:10360000DFD89023EBE7032ADBD89823E7E7C0460F -:103610005DCE0D10FFFFFCFFF0B5160089B00593DD -:103620000EAB04CB01901B780291049310AB1D7874 -:10363000331FDBB20392129CFA2B04D83E213B4885 -:10364000FF3101F04DF8049B043BDBB2FA2B04D8A8 -:103650009F213648490001F043F86B1E012B08D921 -:10366000FB222B1F134204D040213048FF3101F0D0 -:1036700037F8119B2D02DF07039B3604002B46D041 -:10368000059B002B04D1A0212848490001F028F80F -:10369000049BFF2B04D142212448FF3101F020F884 -:1036A000F0231B011D40636A0793C0239B021E4049 -:1036B000029B2B4333433E0C00270024C0221F43B0 -:1036C000019B20001F650727049B92021B041340E7 -:1036D0001D43039B9C4202D2154B984201D109B075 -:1036E000F0BD019B5B6C3B40032B0CD8059B039901 -:1036F0001B5D01342B4332008C4200D20022134365 -:10370000019AE4B2136507A8FFF7CAFEE1E7F023C8 -:103710001B011D40636A3F0C0793C0239B021E40A0 -:10372000029B2B4333433E00C7E7C0465DCE0D10DE -:103730000200B200F7B50193043BDBB205000F00B5 -:103740001600099CFA2B04D8D5211648490000F030 -:10375000C7FF002E21D007226B6C1340032B1ED80D -:103760008023C021721EDB0292B21A43019B8902A0 -:103770001B040B4013432B65381E0DD0089B27609C -:10378000F922A660E36102230020A361D200A958B8 -:10379000013B0B436660AB50FEBD0348FCE70348AA -:1037A000FAE7C0465DCE0D100400B2000100B20081 -:1037B000F7B50193043BDBB205000F001600099C2E -:1037C000FA2B04D89C211648890000F089FF002EAE -:1037D00022D007226B6C1340032B1FD88023C021FB -:1037E000721E92031B03920B1A43019B89021B0456 -:1037F0000B4013432B65381E0DD0089BE760F92260 -:103800006661236204230020A361D200A958023B11 -:103810000B432661AB50FEBD0248FCE70248FAE7C5 -:103820005DCE0D100400B2000100B200F0B51F0023 -:10383000043BDBB28FB006000D001400FA2B03D856 -:103840005B495C4800F04CFF002C00D1ABE0072244 -:10385000736C1340032B00D9A7E0631E9B039A0BE4 -:1038600080231B031343C0223F04920217401F43CF -:103870003765281E0ED0149B00205B6A07950393C2 -:10388000042309940C900A930A9B042B02D14A4BFF -:10389000984201D10FB0F0BD099B079C0093330003 -:1038A000C43301931D680F231D40009B9D4200D926 -:1038B0001D00002D17D1009B07940993002B0CD1FC -:1038C000F92202210320D200B3588B43B3500A904F -:1038D0000C9B002B01D00C9B9847009B03A80993DD -:1038E000FFF7DEFDD0E7082D0AD13700D83738685A -:1038F0002100FFF7E9FD3868211DFFF7E5FD05E030 -:10390000012D09D13300D0331B682370009B64194B -:103910005B1B0093019BC5E7022D06D13300D43316 -:103920001B6823701B0A6370F0E7032D0AD1330074 -:10393000D4331B6823701B0A63703300D0331B68B9 -:10394000A370E3E73700D83738682100042DD4D0BE -:10395000052D06D1FFF7B8FD3300D0331B68237166 -:10396000D4E7062D08D1FFF7AFFD3300D4331B6831 -:1039700023711B0A6371C9E7072D0CD1FFF7A4FD62 -:103980003300D4331B6823711B0A63713300D033B7 -:103990001B68A371BAE7FFF797FD3868211DFFF791 -:1039A00093FD0825B2E7054874E7054872E7C0466D -:1039B000CD0200005DCE0D100200B2000400B20086 -:1039C0000100B20000290CD00722436C1340032BE6 -:1039D00009D8C023013989B21B03194301650020AE -:1039E00070470248FCE70248FAE7C0460400B2000C -:1039F0000100B20000230B604B608B600B61CB6059 -:103A00004B618B61802302681B0613430360704780 -:103A100030B58B6987B0DB680C001500002B0FD028 -:103A200019681A79012303932378C9B20293FF23FB -:103A30000193002304950093FFF7EEFD07B030BD1E -:103A40000048FBE78000B20070B5160000220400B9 -:103A5000080086B00A9D039204951900037800922D -:103A60000293FF23200001931300FFF7D5FD0028E8 -:103A700006D103000095012231002000FFF7D6FE99 -:103A800006B070BD30B50F24012385B08D696C443C -:103A90002370AB6A002B0BD01B680092DBB22200B4 -:103AA000FFF7D2FF002803D12378AA6B13402370BD -:103AB0002078431E9841C0B205B030BDF0B587B044 -:103AC00017000C9A05000C001E00FFF7A1FF00284C -:103AD00012D1A3690122DB6B022B00D013000392E9 -:103AE00022780C99029200220491009301923B00EB -:103AF00031002800FFF790FD07B0F0BD0023F0B5BE -:103B00008F6989B00D00F96A07AC06000292238024 -:103B100099425FD03A6B9A425CD0BB6A002B59D075 -:103B20001B68096812680593029BC9B2039104924D -:103B3000009322000B002900FFF786FF00282FD1F9 -:103B40006B46FF6B1B7C0493402F1ED0802F29D027 -:103B5000022F41D16B46029A1B7D29000092300052 -:103B60002200FFF771FF00281AD10D22029B04A941 -:103B700000935218039B29003000FFF765FF0028CF -:103B80000ED163781F43677002E023781F432770CC -:103B90002200029B0093049B29003000FFF78EFF58 -:103BA00009B0F0BD0D22029B04A900935218039B9B -:103BB00029003000FFF748FF0028F1D18023627808 -:103BC0005B4213430D226370029B04A900935218B9 -:103BD000049BE1E70148E3E70148E1E78000B20028 -:103BE0000300B200F0B51F008B6989B01C6A0500A4 -:103BF000002C47D0002A47D0586A0E9EB04243D3CB -:103C00004869C6B24869002800D10E782168207939 -:103C1000C9B207911099029604910021039161792C -:103C200001911B6807990093130002002800FFF719 -:103C3000F3FC002824D1A1684B1C12D12169002972 -:103C400004D02800FFF7BEFE002819D1109A237D6A -:103C500001920F9A3900009228000E9AFFF76AFD30 -:103C60000EE0109B227B0493FF23039001930090AE -:103C70000300C9B202962800FFF7CEFC0028DDD071 -:103C800009B0F0BD0148FBE70148F9E78000B20048 -:103C90000400B200F0B5CDB006000C1E06920893E9 -:103CA00003D1C449C44800F01BFD00230BAF656B72 -:103CB0003B80BB70089A06993000FFF771FC002D1D -:103CC00003D1BE4A10004DB0F0BD2B682A79D9B29D -:103CD000529B3000049300230393069B02936B795D -:103CE0000193032300933B00FFF796FC021EE9D1EA -:103CF00029693000FFF766FE021EE3D152992B7D41 -:103D00000CAD01910090FF3229003000FFF750FD0B -:103D1000021ED7D1529B5E6AA94B5299886903282B -:103D200012D09A42CED0002E0CD00120013E00F0DD -:103D3000CDFC3200531E9A41A24B52421A40A04B76 -:103D4000D218E9E73200E8E7002ABBD12B78532BE1 -:103D5000B7D16B78462BB4D1AB78442BB1D1EB788B -:103D6000502BAED12B79052BABD96B79012BA8D178 -:103D7000297BA3686D18AD7806956D080540012D67 -:103D800000D8B1E0022D00D1ADE00F251F278E082D -:103D90000936B6004CA880190138FF380068BC46C7 -:103DA000054001356D00079505093D40079F013528 -:103DB0006F4309970327400A3840834D4000405B1A -:103DC000099D45430DA8256485596646280E304057 -:103DD000079E013070436E0F37407C4E7F00BE5B04 -:103DE00040277043606460462E0A06401038284021 -:103DF000AD0400D4383F01304000013646437E43D5 -:103E00000CA8A6640E1D87197D7807902802FD78FE -:103E10002D0605430798865D3543BE783604354345 -:103E200064D40135ED080798656047183D002835D2 -:103E30002E78012528003609B0403E7F6062B540EB -:103E40000698A5610CAD800655D502260898B043AA -:103E5000012850D0082084467F7A8C441F600027B8 -:103E600060461F71079F5E713F5C7F095BD1033E17 -:103E70009E6060461F262D5C35401D6102251D7524 -:103E80000623E56804262B6000232B71256907981B -:103E90002E602B71E5695C362E602B714118487FCE -:103EA0006569022728602B716B710125266A012044 -:103EB0006D42337137607371B560336133750526B8 -:103EC000A063A06A3A310660266B037133710878EB -:103ED0004006400F052800D9F4E6E16A03F0C0FD72 -:103EE00065787E847878042020604EE78026033D44 -:103EF0003606354397E70698400618D502260898F7 -:103F0000B043012813D00A2084466E18F67A8C44F8 -:103F10001E60002660461E715E712F5C7F09B742ED -:103F200001D1013EA4E7FF271E739F60A1E7102780 -:103F30000698074017D06E18F67B01201E600F0010 -:103F4000002658711E710E37EE5D760907D1013ECD -:103F50009E60ED5D1F2635401D6101258FE7FF2620 -:103F600018739E60F5E701260698304014D00C20A7 -:103F700084468C4460466E18767B1F711E605F71AC -:103F80002E5C760904D1013E9E6060462D5CE1E71F -:103F9000FF261F739E60F8E703251D60043D18711E -:103FA00058719D60186118756AE7E56335600D60AA -:103FB00088E6C046F9030000C4CE0D100500B2002B -:103FC0000200B200FEFF4DFFB4CE0D10BCCE0D10AE -:103FD0000123E763336034330B6073E64023E3630C -:103FE0003F3B33600433F7E78023E363423B3360B6 -:103FF0000133F1E7F0B589B002900792002800D1B3 -:104000001EE1002900D11BE14B680593002B00D174 -:1040100016E1002A00D113E10B680693002B00D1B2 -:104020000EE10023C02603930493B602039B059A76 -:104030009B00D458002C4DD023785A1E012A09D950 -:104040000422043B9343DBB2002B03D06E217D4856 -:1040500000F046FB237A032B03D96F21794800F047 -:104060003FFBA369002B03D17021764800F038FB99 -:10407000A3691B68013B032B03D97121714800F030 -:104080002FFB2278501E072800D9D7E003F0E8FC68 -:104090000432D635D6D6D6388021029B09015D1868 -:1040A000237A2968684F18043040394001430420BE -:1040B00029606168014226D0079902980091A169A0 -:1040C000FFF7E8FD00281ED00823039A9340049AC6 -:1040D0001A430492039B01330393039A069B934272 -:1040E000A4D10020049B002B02D0B220000418436E -:1040F00009B0F0BD029B8821D0E7029B9021CDE75B -:10410000029B9821CAE763689B07E3D52169E068B1 -:1041100003F036FD002903D08C214A4800F0E0FA74 -:1041200023694A4A934202D95A1E134203D08D2171 -:10413000444800F0D5FAFF218C466746E168A06943 -:10414000B9438268036AA96021694942B943E960B9 -:1041500001680320013901406069471EB84100022F -:1041600001432962002A2DD010680021471C08D085 -:104170006746074080201179000609043140074353 -:1041800039432964517990680904314069640021F8 -:10419000471C07D08027117BC0B209043F0631407D -:1041A000384301430020A9641169814205D01F30C2 -:1041B00001390140802000060843E864127D1204A2 -:1041C00032402A65002B2CD019680022481C07D0E9 -:1041D00080201A79C9B212040006324001430A4312 -:1041E0002A665A799968120432406A660022481C8D -:1041F00007D080201A7BC9B2120400063240014366 -:104200000A430021AA661A698A4205D01F31013A81 -:104210000A40802109061143E9661B7D1B043340D7 -:104220002B6702216268FF3111408022237A120637 -:104230001B0433400A4313432B604BE7044851E708 -:10424000034855E7C4CE0D10FFFFFCFFFFFF000041 -:104250000400B200104B1B683C331B78834219D911 -:10426000042910D94B1EFF3B132B13D81F231940D1 -:104270000A4B8000C018C02304229B00C150403369 -:10428000C250002070470723D0301940034B8000F4 -:10429000C150F6E70248F5E7E0AD0208000026400D -:1042A00001004A0010B50F4B04001B683C331B781B -:1042B000834204D8A3210C48490000F011FA0B4BAB -:1042C000A400E418D0239B00E058072318400428DA -:1042D00007D1C0239B00E0581F23034080204000EB -:1042E000184310BDE0AD020823CF0D10000026409A -:1042F000F7B5041E03D14649464800F0F1F9B02352 -:10430000454DDB00EB58002B00DA7FE0434B226881 -:104310009A4203D942493F4800F0E2F9E279236822 -:10432000511E8A419B0312069B0B1343B022D200FD -:10433000AB50A3883B4FBB4204D994213548890038 -:1043400000F0CEF92389384EB34203D937493148BA -:1043500000F0C6F92389A28835491B04D204D20C87 -:104360000B401343334AAB50A37A01910F2B04D96E -:1043700096212848890000F0B3F9E37A0F2B03D97E -:104380002D49244800F0ACF9A389BB4203D92B493D -:10439000204800F0A5F9FF22E37A29491B011340C8 -:1043A000A28912020A400F211343A27A0A40C021B7 -:1043B0001343A27B890512070A401343B122D2009E -:1043C000AB50A379042B03D91E49124800F088F999 -:1043D000238AB34204D999210E48890000F080F95C -:1043E000E020A379184AC0001B02A95803401748CF -:1043F00001400B43AB50238A01981B04A95803408A -:104400001348014000200B43AB50FEBD1148FCE7B0 -:104410003F02000023CF0D1000002640FFFF0300E5 -:1044200049020000FF1F0000FF01000051020000D0 -:104430000000FF0184050000590200005A0200003C -:1044400000FF1F00630200008C050000FFF8FFFF63 -:10445000FFFF00FE03004A00F7B58022B2260700E6 -:104460000500324B324C1206E158F6000A43E25086 -:1044700000930422A359134201D1002D35D1B1205C -:104480008023C00022582B499B050A401343235028 -:104490000191002F01D0002D06D0B0228023D20040 -:1044A000A1581B060B43A3500126B223DB00E3589F -:1044B000334224D1002D1DD1002F24D0B121C900B9 -:1044C0006258019B1C481A4080239B051343B0226D -:1044D0006350D200A3585B005B08A350009B009A76 -:1044E000E3585B005B08A350FEBD012000F0EEF82E -:1044F000013DBEE7300000F0E9F8013DD5E7002FAF -:1045000001D0002DDAD0B122C0230020D200A15862 -:104510009B050B43A3508742E6D0681E8541684245 -:10452000064D054B2840C018DEE7C0468C0500004C -:1045300000002640FFFFFFCF02004A00FEFFB5FF4C -:1045400070B51A4E050033680C001A002832127834 -:10455000012A15D182080721100088430FD10320BA -:104560002840C00084401B68920020339B18220022 -:10457000FF24844019684A4014404C401C6070BDC0 -:104580005B8FDBB28B4203D17F21094800F0A8F892 -:104590000720802205408020336892011B680006B6 -:1045A000A4180543A400E550E9E7C046E0AD0208C1 -:1045B0007CCF0D100A4B70B59B680A4E10300D0071 -:1045C0008400B34209D1002904D1A0210648490042 -:1045D00000F086F83059355170BD044B1859FBE78F -:1045E00000ED00E000A002087CCF0D1000000D10CF -:1045F000F8B506000D00002841D04368032B03D90D -:104600003B21204800F06CF80023F05E002828DBF6 -:10461000B178FFF795FF0024FF220327944600237B -:10462000F05E716883B21F40FF006646BA408901A0 -:104630003140D243B940002815DB134E83089B005C -:104640009B19C026B6009F593A40114399510F4B10 -:104650009A680F4B9A4202D12900FFF7ABFF200066 -:10466000F8BD0C4CD8E70F263340083B074E9B089B -:104670009B009B19DE6932401143D961E7E7054C85 -:10468000EDE7C0467CCF0D1000E100E000ED00E05A -:1046900000A002080100560070B5802504002D021C -:1046A000AC4205D8064B18686043FDF751FB70BD5E -:1046B000044B1868FDF74CFB034BE418F0E7C046C9 -:1046C00030A1020828A102080080FFFF10B5034BAB -:1046D0001B785843FDF73CFB10BDC04634A10208CF -:1046E00070B50D00044C01001822200004F0B0FB4E -:1046F000A56101BEFEE7C046B0A702088022054BB7 -:1047000012069A64986C044BC043C0171840034BC0 -:10471000C018704700002740FDFFB9FF03004600A6 -:104720008022054B120198585B68DBB2002B02D047 -:104730008023DB021843704700002640FEE700009C -:1047400002680A4B10B5DA6142681A6282685A62DE -:10475000C2689A620269DA6242691A6382695A63BC -:10476000C2699A63FFF7EAFF10BDC046B0A702080E -:10477000F0B51922002800D14B322A4B8A429241CF -:104780001B6852421C00A83424881D686719032541 -:104790003E68AE4316433E601E68A4192768224E49 -:1047A000374027601C00AA3424881E68A7193E6879 -:1047B000AE4332433A601A681B4EA2181468264072 -:1047C000166000280ED00020102904D9213088421C -:1047D0008041404201300F225B68196891430843D1 -:1047E0001860F0BD1A00553212788A42F3D21A00CE -:1047F0005632127801208A42EDD21A0057321278CE -:1048000000188A42E7D21A005832127828008A42E9 -:10481000E1D21A0059321078884280414042043077 -:10482000D9E7C046E0AD0208FFFCFFFFB0235B05FF -:104830005A782120002A01D05878C0B27047B0239E -:104840005B059A89002A02D0988980B2704780203F -:104850004000FBE770B5FFF7F2FF8023184A5B00CA -:10486000984215D111680F240B0002229833186862 -:104870000B6818180368A3431343036008009C30B7 -:104880000B6801685B181968A1430A431A6070BD80 -:104890001268B0201100C025983114680968094BCE -:1048A0004005C35861180C68AD002B4323430B60CF -:1048B00011009C3113680A689B18034A8258E5E787 -:1048C000E0AD0208481800004418000070B5FFF77A -:1048D000B6FF8023184A5B00984215D111680F2457 -:1048E0000B000322983318680B6818180368A34359 -:1048F0001343036008009C300B6801685B1819685B -:10490000A1430A431A6070BD1268B0241100C1208F -:10491000C026983115680968640540012358691854 -:104920000D68B60033432B430B6011009C311368B4 -:104930000A689B182258E5E7E0AD020810B5FFF7BA -:104940007EFF8023114A5B0098420DD11368104905 -:104950001A00983212681B689B181A681140C0220E -:10496000D2010A431A6010BDB0211268094B4905F3 -:10497000CB581100C0209831096812688000521885 -:10498000116803430B431360EDE7C046E0AD020836 -:10499000FF8FFFFF1818000070B5FFF750FF80234E -:1049A000144A5B0098420DD1136813491A009832DB -:1049B00012681B689B181A6811408022D2010A43B2 -:1049C0001A6070BD1268B0241100C02698311568B5 -:1049D0000A4809686405235869180D68B60033430E -:1049E0002B430B6011009C3113680A689B182258F6 -:1049F000E6E7C046E0AD0208FF8FFFFF4C1800005D -:104A000010B50020FDF782FF0400FFF70FFF012221 -:104A10001300222801D8634263411340180010BDDF -:104A200010B5074C236831331B78002B04D1E621E5 -:104A300004484900FFF754FE2368186A10BDC046B9 -:104A4000E0AD0208ECCB0D1030B5040085B00D00D0 -:104A5000042803D927492848FFF742FE6B1E012B83 -:104A600007D9FB222B1F134203D024492248FFF70A -:104A700037FE234BA400E458042D01D0012D1AD198 -:104A800000200FE0A3682B420BD1E36829001A68CD -:104A90005B6802920193039302A823689847194B1D -:104AA0001C606469002C04D0174B9842EAD1012D98 -:104AB000E8D105B030BD022D06D1124B1B68181E7F -:104AC000F7D01C6903E01C006369002BFBD10020B8 -:104AD000002CEED0A3682B4209D1E36829001A68A4 -:104AE0005B6802920193039302A8236898472469A4 -:104AF000EEE7C046E5090000D5CF0D10E60900003D -:104B000048A8020844A80208FF004200F8B50400C3 -:104B1000012803D92A492B48FFF7E2FDFFF786FE5B -:104B200085B2FFF78CFE070000208026FDF7EEFE21 -:104B30007600002811D1B74211D1222D0FD880253F -:104B4000214B6D041B6824065968204B2C40CA5821 -:104B50001F4D2A401443CC50F8BDB74229D0FFF76F -:104B60005FFF0500B7420FD1621E9441802362426D -:104B70005B001A40174BD21801212800FDF700FCFA -:104B8000002808D01448E7E7621E944102236242DD -:104B90001A40124BEFE70C4B1B68B4331B68EB1841 -:104BA0001A68002AFCDBEB6800201B0EA02BE9D161 -:104BB000D2E7222DE6D9FFF733FF0500D4E7C04640 -:104BC0007F0A0000D5CF0D10E0AD020818F00000FC -:104BD000FFFFFFFE01000030040042000100000C56 -:104BE000F7B50700012803D929492A48FFF778FDBE -:104BF000FFF725FE80235B0098421CD0FDF7B1F83B -:104C0000B0230190244D254A5B05002F1AD024497A -:104C100003205958A950234A23499C5C1F226B58F2 -:104C2000E4B293431A000B2313436B50FFF74EFD7E -:104C3000FFF7B2FE12E0FFF7E3FE0028DED11B4EC5 -:104C40003000FEBDAF50E8220120D2009C5CFFF78F -:104C50005DFFE4B2061E0DD1FFF7FCFD1F21124AD5 -:104C60000C40AB588B431C43AC50002F06D1FFF7D0 -:104C700065FE3E000198FDF778F8E1E70720FFF7B1 -:104C800025FDFFF723FE0020FFF740FF0600F1E7B8 -:104C900053080000D5CF0D1000002640307F0000E3 -:104CA00010180000410700001CFF00000300420034 -:104CB00010B5041E03D111491148FFF711FDF2226E -:104CC000104BD2011B68DB689A582260F022D20197 -:104CD0009A5862600C4A9A58A2600C4A9A58E2604C -:104CE0000B4A9A5822610B4A9A5862610A4A9A58AA -:104CF000A2610A4A9B58E36110BDC046D40A000075 -:104D0000D5CF0D10E0AD020804780000087800004F -:104D10000C7800001078000014780000187800006B -:104D200010B5041E03D110491048FFF7D9FCF0223A -:104D30000F4B61681B68D201DB689950A1680D4A6E -:104D40009950E1680C4A995021690C4A995061695F -:104D50000B4A9950A1690B4A9950E1690A4A995046 -:104D60002168E832995010BDFC0A0000D5CF0D1023 -:104D7000E0AD020804780000087800000C7800001C -:104D8000107800001478000018780000F7B50700CC -:104D9000012803D940494148FFF7A2FC404D6B6808 -:104DA000002B4AD1FCF7DDFF6B680190002B56D138 -:104DB0003C4E33681A0043321278002A07D09B68B1 -:104DC000E0331B68DB0602D53748FFF771FFFFF7BA -:104DD00036FD80235B00984246D1380007F034FC52 -:104DE000002433681A0043321278002A17D00028B2 -:104DF00015D09B68E0331B68DB0610D5FFF716FD66 -:104E0000294B212808D032681300B03319880723B2 -:104E10004B43126A9B18DB681800FFF781FF01986B -:104E2000FCF7A3FF002C0ED16B68002B03D00821E8 -:104E30000120FFF709FE2000FEBD01210800FFF759 -:104E400003FE041EAED06B68002B03D002210120AC -:104E5000FFF7FAFD154B9C42EDD0154CEBE7042112 -:104E60000120FFF7F1FDA3E7FFF7DAFD3368B43364 -:104E70001B68C0180368002B0BDB04230D4A116963 -:104E80000B431361012F02D030BF0020A8E720BFE1 -:104E9000FBE70020054CA4E7AE020000D5CF0D10C3 -:104EA00048A80208E0AD020824A802080500420054 -:104EB000FF00420000ED00E0C022802006495200C1 -:104EC0008B58C0059B009B0803438B508023885858 -:104ED0001B0603438B507047000026407047FFF7C6 -:104EE000FDFF72B6124C134DAC4209DA21686268BC -:104EF000A368043B02DBC858D050FAE70C34F3E750 -:104F00000D4B0E4CA34208DA19685A680020043A87 -:104F100001DB8850FBE70833F4E7094809490860DA -:104F2000BFF34F8F00F0E4F800F0F8FAFEE700005E -:104F3000C0E10D10D8E10D10D8E10D10E8E10D1021 -:104F400000A0020808ED00E0FEE7FEE700B504203F -:104F50007146084202D0EFF3098001E0EFF30880C8 -:104F60000430FFF7EDFBFEE770470000E02370B56B -:104F7000504C9B00E2580F23D021072013409A0089 -:104F8000121989005158014066D0042958D04A4866 -:104F9000002B66D1B223B1220321DB00D200E558F9 -:104FA000A358A6581B0F360F0B400E4204D0A25830 -:104FB000120F0A40012A01D1EA0701D4032B11D1B3 -:104FC000B0233E4ADB00E558A158E658C904C90C95 -:104FD00002F050FDAD03AD0B6843F101C90F013183 -:104FE00002F048FDE0239B00E3589B069B0FD8404E -:104FF000334B1860334B1C691969240A090E0131BF -:1050000002F038FD304BE1B21860013102F032FDA0 -:105010002E4B040018602E4B2E4918602E4BC018E2 -:1050200002F028FDFA212D4B890018702C4BE01856 -:1050300002F020FD2B4B18602B4BC003186070BD95 -:10504000C021890052581F210A40112A01D0132A79 -:1050500004D1802000029BE7244899E7FA20C00190 -:1050600096E7012BBED1C823C0220321DB00D2006A -:10507000E558A358A6581B0F360F0B400E4204D01C -:10508000A258120F0A40012A01D1EA0701D4032BCA -:10509000A8D1C022D200A358A158A5587F221F260C -:1050A0001340090A3140584302F0E4FC290C314016 -:1050B00096E7C0460000264000366E0184050000D9 -:1050C00020A102080000214024A102081CA102081E -:1050D0002CA1020840420F003F420F0034A10208F9 -:1050E000E703000030A1020828A1020800127A009C -:1050F00010B51B48FCF73CFEB022E0213020194CD3 -:10510000D200A35889005B005B08A3506358834317 -:10511000635080235B04A350134B144AE250A02237 -:1051200004339201E250FF22114BE250FFF7C4FE1C -:10513000C02201215200A3588B43A350FFF714FF54 -:10514000FFF714FFB0235B055A78002A02D05B7882 -:10515000212B03D10022074BDA605A6010BDC046F4 -:1051600034CB0D1000002640840500000100020031 -:105170008C050000E0002340024BD86F0323184049 -:105180007047C0460400214010B5FCF7EAFD07490E -:10519000074ACB6F1A40074B1343CB6710230649CE -:1051A0000A681A42FCD0FCF7E0FD10BD0400214063 -:1051B000FCFF00000100FA058800214070B583055E -:1051C0000600002B04D0E8211048FF31FFF788FAD1 -:1051D0000F4CFCF7C6FDE36F0500DB439B0701D1D5 -:1051E000FFF7D2FFB0230B4A9B00D650E36F0A4A69 -:1051F0000A491A400A4B1343E36710230A681A420C -:10520000FCD02800FCF7B1FD70BDC0462DD00D10BC -:105210000400214000002140FCFF000088002140E4 -:105220000300FA0510B562B600F0B6FAFFF744FEC7 -:10523000C02201210A48520083580A4C8B438350F4 -:10524000094A0A48FCF71EFF094A0A492000FDF7EF -:1052500093FF802322681B061343236010BDC046C2 -:10526000000026400000664098D00D1080023240B9 -:10527000E4AD02084CD40D1010B50020FDF756FA2D -:1052800010BD0000802310B50C4C032023602300C8 -:10529000210008336360FDF779FA0948FDF7A4F8A7 -:1052A000084B1B6851331B78002B02D00648FDF7D2 -:1052B00013F920001830FCF70BFE10BD00C00208E7 -:1052C0003CC00208E0AD020858D10D1010B50448EA -:1052D000044A0021121A02F025FFFBF705F910BD60 -:1052E0000000020800A002080022E82313B5019282 -:1052F000019C9B0523430193019B090419430191E0 -:10530000019B000218430123019001990B43019373 -:105310000199124BD96012491868002806DB8A42AD -:1053200002D10120404216BD0132F5E78A42F8D091 -:1053300001229A6000221869002803DA8A42F0D01C -:105340000132F8E78A42ECD0DB6800200193A02309 -:10535000019A1B069A42E6D00198E4E70000234038 -:10536000983A000010B5084B0024DB78013B012B74 -:1053700007D801210800FFF7B7FF04006420FFF7FA -:105380008BF9200010BDC04674AF0208A02270B592 -:10539000154DD200AA580400032A09D0FFF7E2FFF6 -:1053A000021E05D0114B12491B68D86802F014FE8A -:1053B000104B1B68002B0CDA0F4A104B1048DA64B4 -:1053C0000A4B1B68D96802F061FE72B607F044F917 -:1053D00062B6AC239B00EC500A4B9C60236883F3BD -:1053E000088863689847FEE70000214084A102080E -:1053F00014D10D1000012640214334120000234037 -:1054000044D10D1000ED00E070B50400FFF7AAFFD5 -:10541000021E05D01A4B1B491B68D86802F0DCFD40 -:10542000194B1B68002B23DA184A194B1948DA6408 -:10543000134B1B68D96802F029FE72B6B023164AD6 -:10544000164D9B001648EA50C36F164A16491A407B -:10545000164B1343C36710230A681A42FCD001207D -:10546000FFF71AF9B0239B00EC5007F0F5F862B68D -:105470002000FFF7A3FE0020FFF788FCFBE7C046F3 -:1054800084A1020814D10D100001264021433412DA -:105490000000234044D10D100040001600002140C0 -:1054A00004002140FCFF0000880021400300FA05B1 -:1054B00010B5002820D1114C11482368D96802F09A -:1054C000E5FDFFF74FFF021E04D023680D49D868A1 -:1054D00002F082FD0C4B1B68002B08DA0B4A0C4BC8 -:1054E0000C48DA642368D96802F0D0FD72B60A4825 -:1054F000FFF764FE07F0A0F810BDC04684A10208C3 -:10550000CCD00D1014D10D100001264021433412CF -:105510000000234044D10D1000400016F0B589B0C2 -:10552000FFF7B0FEFFF77EFE754C764A764B774D5F -:105530001A6023682800D96802F0A8FD2368744E19 -:10554000D968300002F0A2FD7D232068019300237A -:10555000009301226F49C06802F03EFD23683000CD -:10556000D96802F093FD23682800D96802F08EFD07 -:1055700023686948D96802F089FD802002AA03A93E -:105580004000FCF7EBFA051E00D0B4E0634E0300C8 -:10559000634A31000398FBF765F9051E00D0AAE0C5 -:1055A000B278022A05D923685E49D86802F014FD52 -:1055B000B570F022F3685C4F12069B18BB6033692C -:1055C000FB6073699B18FB61B3693B62FAF758FF94 -:1055D000051E38D1B378002B3CD0544A013B9B00C8 -:1055E000534E9B58336000F043FC071E06D02368DF -:1055F000050002004F49D86802F0EEFC4E4A3168BF -:105600004E4800F0A7FC002F08D123684C48D96809 -:1056100002F03CFD01214948FDF7ACFF68426841BA -:10562000FFF746FF23684748D96805AD02F02EFD15 -:10563000280001F07FFD2368D968002813D0424874 -:1056400002F024FDFEE72A0023684049D86802F0F2 -:10565000C3FCE3E73E4BFA699A42DFD975702368D1 -:1056600072693C49F2E73C4802F010FD04A9287930 -:1056700000F010FD43425841FFF71AFF822201203B -:10568000364992008E588B58F605DB0B0340F60D19 -:105690009B19002BF6D1049BAD68ED18059B1B8967 -:1056A000ED18FFF713FE43425841FFF701FF1B4B74 -:1056B0001878042819D802F0D3F90707030310005B -:1056C00002210020FDF7F0F82800FFF75FFE2368B5 -:1056D0002348D96802F0DAFCFEE706210E20FDF728 -:1056E000E3F82800FFF790FEF1E723681648D96831 -:1056F00002F0CCFCFEE723682A001A49A6E7C04660 -:1057000084A1020830D40D101CAE020898D10D10EF -:10571000A2D10D10E3D10D1018D20D1020AE020849 -:1057200074AF020834D20D1040A1020838A102085B -:105730005CA80208A8D20D1004B002080000424084 -:10574000DED20D1068D30D108CD30D106FD20D105A -:10575000FFFFFF07FBD20D10B2D30D100000664013 -:10576000D9D30D10F7D30D1010B504002100034854 -:10577000FDF7E8FC0028F9D010BDC04600006640E7 -:10578000C221044A89005358DB05FCD0D0239B007A -:10579000D05870470000664010B500F009F800F0DE -:1057A00035F800F043F800F005F900F02DF810BDD1 -:1057B00080218022124BC9001B68D205986810B561 -:1057C00042501A00743212880E4C121810680440AD -:1057D000D4208001204310601C001A007234703203 -:1057E0002478127898687333A2401C780323A3406E -:1057F00013438022120613434350435810BDC04642 -:10580000E0AD0208FF00FFFF70470000054B1B687A -:105810001A003F321278052A03D900219A68024BF8 -:10582000D1507047E0AD0208140C000010B51D4CBB -:105830001D4A00212000FCF725FC20001B4C1C4ABF -:105840000121FCF71FFC1B4A02212000FCF71AFC77 -:10585000194A03212000FCF715FC184A04212000F6 -:10586000FCF710FC164A05212000FCF70BFC154A3A -:1058700006212000FCF706FC2000134C134A0721E8 -:10588000FCF700FC124A04212000FCF7FBFB114A44 -:1058900006212000FCF7F6FB0F4A07212000FCF749 -:1058A000F1FB10BD00003240C4D50D108005324020 -:1058B000F8D50D1090D50D1028D50D10F4D40D107D -:1058C000C0D40D108CD40D10000332405CD50D10E7 -:1058D0002CD60D1060D60D1094D60D1010B50A4BB5 -:1058E0001B683E331B7883420BD9E0220F24074B01 -:1058F0008000C01892008358A343194381500020B0 -:1059000010BD0348FCE7C046E0AD02080000264099 -:1059100001004A0010B50A4B1B683E331B788342D6 -:105920000CD9E0223024074B8000C0189200835825 -:105930000901A34319438150002010BD0248FCE730 -:10594000E0AD02080000264001004A00054B064970 -:105950001B681A000832D26F1B689B181A680A402D -:105960001A607047E0AD0208FF00FFFF074B1B689D -:10597000190008311A68CB6F8021D21813684904C6 -:105980001B021B0A0B4313607047C046E0AD0208C0 -:10599000054B06491B681A00883212681B689B1861 -:1059A0001A680A401A607047E0AD0208FF00FFFF66 -:1059B000FEE70000F8B596210020FEF7D9FEFEF7BD -:1059C000AFFE002801D1FEF799FE0120FFF708F98C -:1059D000644B65495A6C0A40E82189010A435A64BC -:1059E0005A6C120AD2B23A2A04D15A6C5F48024069 -:1059F0001143596400210800FFF78CFFFFF7C8FF2F -:105A0000FFF7B4FFFFF7A2FF594D5A4C2B685A4FCE -:105A10003D331B78002B0ED0C0268023F600A25900 -:105A20009B053A401343A3510120FEF74FFEA359B3 -:105A30005B005B08A35100210120FEF70BFC2B68E3 -:105A40003E331B78002B03D14C494D48FEF748FEEE -:105A5000E0239B00E6580F231E400AD13000FEF7DA -:105A600021FC1223FF33984203D101213000FFF7BC -:105A700035FFB122D200A35800213B408027BF054B -:105A80001F43A750083AA35808005B005B08A350C7 -:105A90003C4AA3585B005B08A350FEF7DBFB0021E8 -:105AA0000800FFF71BFFFFF773FFFFF75FFFFFF72C -:105AB0004DFF00210120FEF7CDFB01210020FFF763 -:105AC0000DFF00210800FEF7C5FB00210220FEF7B4 -:105AD000C1FB00210320FEF7BDFB00210420FEF7DF -:105AE000B9FB2948FEF704FC002802D00420FFF788 -:105AF0005FFF2648FEF7B0FC002802D00420FFF725 -:105B000057FF00210800FFF7E9FE00210800FFF71A -:105B100001FF00210120FEF79DFB00210220FFF77D -:105B2000DDFE01210220FFF7F5FE2B683E331B78D6 -:105B3000022B06D9E22280239200A1581B060B43B8 -:105B4000A3508022124B1206E15800200A43012183 -:105B5000E250E2580A43E2506331FEF709FEFFF7D4 -:105B600005FAF8BD00002740FF00FFFFFFC5FFDF7B -:105B7000E0AD020800002640FFFFFFCF6E060000E8 -:105B8000C8D60D108C05000024D70D10400D030061 -:105B90000C050000437802781B021A438378C07812 -:105BA0001B0413430006184370470000F7B5A54BCC -:105BB000A54A9A58D10700D47BE00F22A34FBB68B7 -:105BC0003D680093A24BDC6F0193009B1440073AA1 -:105BD000141B9C4200D91C009E4E002C18D1009B27 -:105BE0003D60BB60002B0CD1F92201209549D20009 -:105BF0008B5883438B50B861FB69002B01D0FB6944 -:105C00009847F8230122DB008E49CA50CB58F7BDD4 -:105C1000082C16D12800FFF7BDFF3060281DFFF7C4 -:105C2000B9FF3060009B2D191B1B0093019BDC6F9B -:105C30000F231C40073B1C1B009B9C42CDD91C0022 -:105C4000CBE7012C03D12A78834B1A60EAE7022CB8 -:105C500006D12A786B781B021343804A1360E1E770 -:105C6000032C07D16B782A781B0213437B4A1360FD -:105C7000AA78E9E72800FFF78DFF042CD1D0306027 -:105C8000052C01D12A79DFE7062C02D12A796B791C -:105C9000E1E7072C07D16B792A791B0213436F4A7E -:105CA0001360AA79D0E7281DFFF774FF082430603D -:105CB000B8E7910700D4A4E00F22644D68496C69ED -:105CC000EB6808688C460240A24200D92200654970 -:105CD000654E002A16D1EB606C61002C0DD1F922C3 -:105CE00002215848D20083588B4383500320A86177 -:105CF0002B6A002B01D02B6A9847F8236C61DB00DC -:105D0000022281E7082A19D10868070A18705F7013 -:105D1000070C000E9F70D8700868070A18715F7131 -:105D2000070C000E9F71D8719B18A41A62460F20B1 -:105D300012680240A242CCD92200CAE7012A03D14C -:105D40004A4800681870EFE7022A04D130681870DA -:105D5000000A5870E8E7032A07D130681870000A73 -:105D60005870424800689870DEE7042A08D1086835 -:105D7000070A18705F70070C000E9F70D870D3E789 -:105D8000052A0BD10868070A18705F70070C000E0F -:105D9000D87036489F7000681871C5E7062A0CD184 -:105DA0000868070A18705F70070C000E9F70D870A3 -:105DB00030681871000A5871B6E7072A0FD10868D1 -:105DC000070A18705F70070C000E9F70D87030685B -:105DD0001871000A5871254800689871A4E70A688C -:105DE000100A1A705870100C120E9870DA700A6847 -:105DF000100A1A715871100C120EDA71987108227B -:105E000092E704210A4207D00520104A9061F82247 -:105E1000D20099509B58FAE608210A4202D00B4A58 -:105E20000620F3E71020024206D00721074A9161BD -:105E3000F822D2009850EDE72020024200D1E6E699 -:105E4000024AF4E700004240CC07000004B0020818 -:105E50000800424098004240900042409400424076 -:105E6000C4004240D8004240D4004240D0004240EA -:105E700073B5684602001E4B12CB12C262B61D49B2 -:105E8000FEF7B6FB021E05D01B4B1C491B68D868E9 -:105E900002F0A2F8FA221A4D92002B0019491A4872 -:105EA000FDF71AFB041E1ED1020001211648FDF762 -:105EB00077FB29001448FDF79DFD0F4E134833680A -:105EC000D96802F0E3F82A0011490F48FEF792F86A -:105ED000041E08D133680F48D96802F0D7F82100B2 -:105EE0000948FDF747FB80220B4B20001A6076BD66 -:105EF000C8D90D10AD5B0D1084A1020847DA0D1052 -:105F000004B002083CD40D100000424087DA0D10A6 -:105F1000B8D90D10A4DA0D1000E100E00C4B1B689D -:105F20009B691B68032B08D10023CB7083B21B0A2B -:105F300088704B70000C08707047042BFCD183B242 -:105F4000C8701B0A000C48708B70000AF3E7C0464B -:105F50005CA80208F0B50F2787B002ABFF1800233A -:105F600016003B708B690500DA6BDB6A03921B68D5 -:105F70003A00DBB200960C00FDF766FD021E06D06B -:105F8000104B11491B68D86802F026F813E06B46E5 -:105F90003A781B7B1A409A420DD03200210028002B -:105FA000FDF7ACFD021E08D1320021002800FDF7EC -:105FB00069FD0028F8D107B0F0BD024B03491B680A -:105FC000E1E7C04684A10208D0D90D100CDA0D100B -:105FD000F0B589B004000E00049217221A4D059303 -:105FE000296802A88B6912189F6ADB6A20001B6867 -:105FF0000096DBB2FDF728FD002823D13200296886 -:106000002000FDF705FD00281CD1059B01900093A1 -:106010000296049B0E9A29682000FDF7E3FD0028F4 -:1060200010D1320029682000FDF72CFD0028F8D19E -:1060300017223B6802A900965218DBB2296820009B -:10604000FDF702FD09B0F0BD5CA8020870B54B6811 -:10605000056801229D4216D38A689B1800229D4242 -:1060600011D20C694B699C420FD20C236343CE685A -:106070000134F3180E685A701E705A8042685D60D1 -:106080009A6001220C61100070BD0C235B428B6191 -:10609000F9E7000010B502006F2809D0074B084946 -:1060A00018686F23C06801F097FF1620404210BDAA -:1060B00080235B050B600020F9E7C04684A102083D -:1060C000A5DB0D1010B50F4B02001879904215D0CA -:1060D000187E904214D018002C30047801204042E1 -:1060E00094420AD1033014224243101D181808604C -:1060F00000209B181A6901321A6110BD0020F2E7D6 -:106100000120F0E740A1020810B5021E0BD0011FCC -:106110000C4B0868984207D00B49137808680B4964 -:10612000C06801F059FF10BD0B69002B07D1064B69 -:1061300012781B680649D86801F04EFFF3E7013B6F -:106140000B61F0E7EFBE0DD084A10208BDDA0D109F -:10615000DDDA0D1070B544680F480C1901211500E7 -:106160001E00FDF707FA80235B05E2180B4B9A42ED -:1061700003D90B4B9B78002B05D03200290020005F -:1061800000F04EF970BD074B07491B68D86801F055 -:1061900023FF01204042F5E700004240FFFFFF17C8 -:1061A00020AE020884A1020838DB0D10F0B51500FE -:1061B000F0221D4F87B003933B684468DB681206EA -:1061C0000C199B18A34216D800211848FDF7D2F9E4 -:1061D0003B6805AED8688023201A5B05C0183100E3 -:1061E000FFF79CFE0096039B2A0011490F48FFF71A -:1061F000EFFE07B0F0BD80235B05E2180D4B9A421D -:1062000003D90D4B9B78002B05D0039A2900200061 -:1062100000F09CF9EDE7094B09491B68D86801F0CB -:10622000DBFE01204042E4E75CA802080000424097 -:1062300004B00208FFFFFF1720AE020884A1020885 -:106240006EDB0D10F0B51500F0222E4F44683B6850 -:106250001206DB680C199B18C5B0A3423AD800217E -:106260002948FDF787F980220021520004A801F097 -:1062700059FF3B680020D9688023641A5B052E0A09 -:10628000E418002E14D0002801D045B0F0BD03AFB3 -:1062900020003900FFF742FE802300975B0004AA2C -:1062A0001A4919480134FFF793FEFF34013EE8E72D -:1062B000EDB2002DE9D00028E7D103AE3100200077 -:1062C000FFF72CFE00962B0004AA10490E48FFF79A -:1062D0007FFEDAE780235B05E2180D4B9A4203D973 -:1062E0000C4B9B78002B04D02900200000F038F9DB -:1062F000CBE7094B09491B68D86801F06DFE012006 -:106300004042C2E75CA802080000424004B0020814 -:10631000FFFFFF1720AE020884A1020801DB0D1069 -:1063200010B5007800F08CF910BD01307047000006 -:10633000431E022B15D8022808D003280BD00A4B85 -:1063400098680860DB68002013607047064BD869C6 -:1063500008601B6AF7E7F0231B030B6080235B01D7 -:10636000F1E701204042F0E740A1020830B589B0D2 -:106370000C00150002A903AA0190FFF7D9FF00281D -:1063800011D1236805900693084B079001AA18685D -:106390000749049500F00EF80798002801D1059BE5 -:1063A000236009B030BD01204042FAE71CAE02086C -:1063B0004D600D10F0B50024260043688BB00291AB -:1063C0001B6906A905A8039298470194069BB3424E -:1063D00001D80BB0F0BD059BF700DF197B68019D6C -:1063E0000893019B3A68EB1A9A4202D8013601954C -:1063F000ECE707940995039907A8029B98470028A2 -:10640000E7D0089B0135E418EBE70000024B03607E -:1064100001230B607047C046D0DB0D100020704791 -:106420000B00802110B549054118180001F071FEDC -:10643000002010BDF0B5264CF023A54400240390A5 -:1064400020001B06CB1801935B0A5B0204AF02928B -:10645000FD1A029AA24201D900280CD01D4B984285 -:1064600034D01D4B984231D0431E984140008523C3 -:106470009B009D44F0BD8022010092009E18019A6D -:106480009A421DD8029AA2421AD9039A125DEA547E -:10649000002906D18021490559180978511A4A1E48 -:1064A000914101340133B342E9D1002904D00B4BAF -:1064B0003900F018FBF76CFD094BED183300C8E705 -:1064C000802252059A181278EA54EBE70120CEE7B1 -:1064D000ECFDFFFF020052000600520000FEFF0F1D -:1064E00000FEFFFF00207047F8B5124C0023A142C8 -:1064F0001CD91E00104C8D18AC425E410F4CA142BD -:1065000015D91F000E4CAC425F413C000D4FB94203 -:1065100002D90D4FAF425B41344323430124002B8A -:1065200002D0FFF787FF04002000F8BD1E00002402 -:106530002300F1E7FFFFFF0F00001010FFFFFF1324 -:1065400000800014FF070016000A00160B008021CF -:1065500010B5490541181800FFF7C6FF10BD00002F -:106560008023F0B55B05C0184518334CEB05A544F6 -:10657000C605DB0DF60D01936B0A039333005A1E1B -:106580009341400AC0186B0A1B1A009343021F0074 -:1065900000240293009B002B3ED1002E1AD0274AE4 -:1065A000029B944663441C001900320004A801F0C9 -:1065B000B0FD2000FBF7AEFC43425841FEF778FFE8 -:1065C0002100320004A8FFF78FFF04006042604101 -:1065D000FEF76EFF019B002B19D08024A400E41A63 -:1065E0002200290004A801F094FD039B5802FBF748 -:1065F00091FC43425841FEF75BFF2200290004A8AA -:10660000FFF772FF040060426041FEF751FF200077 -:1066100085239B009D44F0BD3800FBF77BFC040004 -:1066200060426041FEF744FF80239B00FF18009BFF -:10663000013B0093AEE7C046ECFDFFFF00FEFFFF0D -:106640000420704710B510220949040001F052FDE2 -:106650000123002808D0230010332268013205D11D -:1066600004349C42F9D10323180010BD0223FBE738 -:10667000F0DB0D1030B5040091B001200D00FEF7E5 -:1066800017FFA168102310396A462000FFF762FD4A -:10669000002802D0012011B030BD6846FFF7D2FFBC -:1066A00028702378032B0CD10120FEF701FFA1688D -:1066B0000123AA1C18392000FFF74CFD431E984106 -:1066C000E9E70120FEF7F4FE0120FEF7F1FEA168E4 -:1066D0006A1C203901232000FFF73CFD0028E3D08D -:1066E000D8E737B50D00C0B201A9FFF7EBFC0124D4 -:1066F000002807D129000198FFF7BCFF040001988A -:10670000FFF702FD20003EBDF7B501206946FFF707 -:10671000E8FF002801D0FF20FEBD01AC21000220CF -:10672000FFF7DFFF0028F6D12078A678234C6B46D0 -:10673000220019789D785F7812322378002B01D0DF -:106740008B422FD16378002B01D083422AD1A378CA -:10675000002B01D0AB4225D1E378002B01D0B3420E -:1067600020D12379002B1BD1154B164A1B68D86802 -:106770006379022B06D0144A032B03D0134A042B4F -:1067800000D0134A134901F027FC0222002063794C -:10679000023BDBB29A424041FEF78AFE6079BBE7DA -:1067A000BB42E1D006349442C7D1054B0A481B686E -:1067B000D96801F06BFC0120AEE7C04600DC0D108B -:1067C00084A1020817DC0D1012DC0D102EDC0D1058 -:1067D0001CDC0D1035DC0D104BDC0D10F0B597B046 -:1067E0001CAB1B780390049313781400302B16D144 -:1067F0009378022B13D106AD40220021280001F02E -:1068000091FCE278A1184B79901D0979C01802908B -:10681000022904D1D1186078043188422AD010208E -:1068200017B0F0BD059A0F1A5618B446A444664630 -:1068300036790822B44604AEB61862462037F255BF -:1068400001318842EED100220299C91A64189A4295 -:106850000AD16B46188A402300950193039A203B86 -:106860000A49F9F775FEDBE7D11AA05C403168549C -:106870000132ECE7202B00DD20231000202A00DD70 -:106880002020121A00210592DBE7C04609000610FD -:10689000002803D1044B1B7F1800704700230128F8 -:1068A000FAD1014BDB7FF7E720AE0208F0B5F7B075 -:1068B0000500029111A8594917000493F9F7D0FE79 -:1068C00000284CD17C9B002B3FD100242B89EA6807 -:1068D0009B180393039BA34214D9039B049E1B1B89 -:1068E0009E4200D91E0033003A0021000298FFF7B3 -:1068F00031FC002833D13200390011A8F9F7BEFE6F -:1069000000282ED008AB202209A911A8F9F7C6FE4D -:10691000002824D17E9B002B04D0202209A9180036 -:1069200001F0F7FBEB682C8907ADE4182A0004237B -:1069300021000298FFF70EFC002810D1384B2A885E -:106940009A4210D00120404209E07D9B002BBCDD23 -:106950001A007C9911A8F9F791FE0028B5D077B0FC -:10696000F0BDA419B6E76B8801251B190593043403 -:10697000039004906D42059B9C4205D3049B002B21 -:10698000E0D003980138EAE708AF04233A00210079 -:106990000298FFF7DFFB0028E1D13B787E88102BBF -:1069A00017D1202ECED1211D330011AA0298FFF756 -:1069B000D1FB0028D3D1320011A909A801F09AFB1C -:1069C0000028BFD10123049308AB5B880433E4188B -:1069D000D1E7012B04D17F98FFF75AFF0500F3E7B9 -:1069E000222BF1D13300483BB82BABD8211D33000B -:1069F00011AA0298FFF7AEFB0028A3D1EDB27B8865 -:106A000011AA0095202109A80125FFF7E7FE6D4294 -:106A10000028D9D101230393D6E7C046090000011D -:106A200007690000F7B50700002401262000FFF7E2 -:106A30007CFC01A9C0B2FFF745FB3500011E0AD15D -:106A40002C2363430B4A0198D2182023FFF782FBC3 -:106A50000500681E85410198FFF756FB002D04D004 -:106A6000012C00D13D002800FEBD012CFBD03400DC -:106A7000DCE7C04660A8020873B50C00C0B201A9EB -:106A80001500FFF71FFB0126002807D12A0021006F -:106A90000198FFF7D7FB0600701E86410198FFF7AB -:106AA00033FB300076BD0000F0B52C244443344B5A -:106AB00087B01C19236805001A00324B9A4201D096 -:106AC00001204AE02369DB06FAD4FFF72EFC04A973 -:106AD000C0B2FFF7F7FA03000120002B3ED1E368B4 -:106AE000268905AFF6183A00042331000498FFF711 -:106AF00031FB0028E4D1244B3A889A4201D17888AE -:106B000080192C236B431E4AD3181B6A9B6883424F -:106B1000D6D31E4BA27A1B789A42D1D12000F9F726 -:106B200031FB0028CCD123681A00164B9A4217D1AA -:106B3000802302900190009003955B00144A049911 -:106B40002000FFF7B3FE00280AD10498FFF7DCFA13 -:106B50002000F9F73BFB431E9841404207B0F0BDCF -:106B6000002D04D0049800218268FFF76BFB094BCD -:106B70002A001B680849D86801F02EFAA0E7C04631 -:106B800060A802083DB8F3960769000020AE02082D -:106B9000D0AC020884A10208F2DD0D100023F0B58C -:106BA000B04CB14AB14DA544012013602B60FFF7F2 -:106BB0007BFFAF4B040001201F79FFF769FE002C1B -:106BC00047D1AC4BC2B2DB6C39005E6880235B05F9 -:106BD000F3180293A84BF618300013ABFAF7F6FF40 -:106BE000041E36D105A8F9F77DFD8021A34A89004E -:106BF00005A8F9F785FD05A90B20F9F791FD041EFD -:106C000027D1102313AA9E490B20F9F759FD012320 -:106C1000041E2B601DD1994A0B211BA8F9F7ACFC6F -:106C2000041E16D1102217A91BA8F9F7C7FC041ED1 -:106C30000FD1202204AB2DAD019300922B00310027 -:106C40001BA8F9F7CBFC049B0400202B10D00124D7 -:106C50006442864B1B68002B05D00B20F9F7D4FC4F -:106C6000002800D004002000D3239B009D44F0BDE9 -:106C70000028EED1020004AB29001BA8F9F78CFC18 -:106C8000041EE6D107AE33002A0013CA13C37D4F9A -:106C9000126831A91A603800102201F03AFA05A9E9 -:106CA0000C20F9F73DFD041ED3D1102332007449A6 -:106CB0000C20F9F705FD01226B4B041E1A60C8D1A8 -:106CC00071496DA8F9F7CCFC041EC2D1029B029A4F -:106CD0001B890C21D3181BA8684A0393F9F74CFCB5 -:106CE000041EB6D1102239001BA8F9F767FC041E58 -:106CF000AFD1802604AB7600019300962B003200C2 -:106D000003991BA8F9F76AFC049B0400B3429ED1C7 -:106D100000289ED12D9B2E89AA7A309F3199581C2C -:106D200000D194E7C90600D591E75249C96C89683A -:106D3000B94200D28BE755498B4200D087E74C4BD4 -:106D40001B78934200D082E78022290052006DA870 -:106D5000F9F794FC041E00D07BE7F619330AF6B26B -:106D6000771EBE4101279B190293039B3E029E1989 -:106D7000029BBB4222D9002C00D06AE704AB0193EE -:106D800080232DAA5B000093130080223100520063 -:106D90001BA8F9F723FC8023049A04005B009A42A5 -:106DA00009D1002805D11A002DA96DA8F9F766FCB4 -:106DB00004000137D9E701246442FAE7002C00D02F -:106DC00047E704AF3B0020220BA96DA8F9F766FC4A -:106DD000041E00D03DE780225200019700922B0054 -:106DE00031001BA8F9F7FAFB041E00D031E70200BE -:106DF0003B0029001BA8F9F7CFFB2D9B244A9BB22F -:106E00000400934200D022E7002800D021E72E9A08 -:106E1000D3B2102B00D01AE7120C202A00D016E7AC -:106E20002FA90BA801F066F9041E00D011E7379BCB -:106E3000DBB2012B00D00AE70120FFF729FD409BC0 -:106E4000DAB2222A00D002E71B0C482B00D0FEE663 -:106E5000C0B2009041AA20210BA8FFF7BFFC04009C -:106E6000F7E6C046B4FCFFFF34B0020830B00208B9 -:106E700020AE020860A80208200000100001600493 -:106E800001000040C0AC0208090000013DB8F396C3 -:106E9000076900000023F0B51D4C0700A5446946B2 -:106EA000022000930193FFF70DF900280ED0012670 -:106EB0000098002801D0FFF727F90198002801D099 -:106EC000FFF722F93000134B9D44F0BD01A90120CA -:106ED000FFF7F8F80600041EE9D10098A742E7D9A9 -:106EE00080233D1BDB009D4200D91D002B0002AA20 -:106EF0002100FFF72FF90028D9D12B0002AA210089 -:106F00000198FFF753F90028D1D16419E5E7C0468D -:106F1000F4FBFFFF0C040000F0B500242500614ED7 -:106F20009BB033686048D96801F0B0F833685F48B7 -:106F3000D96801F0ABF85E4FBB6A0393039BAB4289 -:106F400069D133682200D8685A4901F045F85A4B94 -:106F5000DB78002B00D1A1E0002305A902200593D6 -:106F60000693FFF7AFF8002821D106A90130FFF7FB -:106F7000A9F800281BD1514A0C2108A8F9F7FCFAFE -:106F8000002814D110224E4908A8F9F717FB041E57 -:106F90000DD10600BB6B0133FF330293059B5B6889 -:106FA0000393029BB34200D86EE0002C46D00598B4 -:106FB000002801D0FFF7A8F80698002801D0FFF7B5 -:106FC000A3F8404B1B68002B02D00C20F9F71CFBE8 -:106FD000102200213A4801F0A5F83B6D00219A6883 -:106FE0000220FFF749FD43425841FEF761FA0C23A6 -:106FF0007A6D396D013A5343CB185A6849680220BB -:10700000511A9A68FFF738FD43425841FEF750FA8B -:1070100000201BB0F0BD0C236B437A6A2100D3180B -:107020009B6801201A000293FFF726FD4342584156 -:10703000FEF73EFA029B0135E4187FE7029B9D1B99 -:107040008023DB009D4200D91D00039B0095991908 -:107050001D4B2A00C91807AB019308A81B4BF9F771 -:10706000BDFA079B0400AB420BD1002899D12B003D -:10707000164A31000698FFF799F8002897D176193B -:107080008FE7012464428CE7002C00D08FE707AB28 -:1070900022000E4908A8F9F77FFA88E72000FFF7D9 -:1070A000F9FE9AE784A1020863DC0D1088DC0D105C -:1070B00060A802089EDC0D1020AE020800016004EA -:1070C000C0AC020834B0020800040010C0A80208D6 -:1070D00073B5164E164CF368626A5B0A01A901206B -:1070E0000193FFF743F9012500281AD1019B226D76 -:1070F000A362F36801A95B0A02300193FFF736F936 -:10710000051E10D1019B206A6365FFF709F906008F -:10711000A06DFFF705F9331C864200D2031C5C34D6 -:107120002370280076BD0125FBE7C04640A1020878 -:1071300060A80208F0B50C266E4F89B0FB6800907D -:107140005C0A7443200000F0AFFF0190200000F0C3 -:10715000ABFF019B684C0290636220650020FFF743 -:10716000E4F82100C0B22031FEF7ACFF43425841A1 -:10717000FEF79EF90120FFF7D8F82100C0B24C318C -:10718000FEF7A0FF43425841FEF792F92100032089 -:107190005831FEF797FF43425841FEF789F9FFF750 -:1071A00097FF051E19D0554BFA681B68520A5449BF -:1071B000D86800F011FF019800F080FF029800F0FD -:1071C0007DFFA06DFEF7A0FFE06CFEF79DFF206A3B -:1071D000FEF79AFF280009B0F0BDFFF723FC051E5B -:1071E000E9D1FB68A06A5B0A984202D8626D9A42B4 -:1071F00019D9424B43481B68D96800F047FF00206B -:10720000FFF752FC050068426841FEF751F9002D76 -:107210005ED1236A00995A780A715B680C60039307 -:10722000039A8A60C7E7904239D108234643626ACD -:10723000216D08369E4237D1334E7378002BDED055 -:107240000C22002105A800F06DFF0120FEF730F9A7 -:10725000FFF75AFA831E0500022B0DD8274B1B6837 -:10726000D968F378002B2CD0284800F00FFFFFF7E7 -:1072700095FC00282ED005250120FEF719F9012DD7 -:10728000BDD0002D01DD052D2EDD1C4B20481B68D7 -:10729000D96800F0FBFE0020FEF70AF9FEE7174B65 -:1072A0001C481B68D968A8E71800D558CB580C3083 -:1072B0009D4204D0114B18481B68D9689DE7030014 -:1072C000B8E7164800F0E2FE0120FFF7EDFBD0E73B -:1072D000032570E70120FEF7EBF8FFF71DFE4342A0 -:1072E0005841FEF7E5F8C7E70020FFF79BFB051EB6 -:1072F00085D060E740A1020860A8020884A10208C6 -:10730000CCDC0D1011DD0D1020AE0208BBDD0D1020 -:10731000E3DD0D1043DD0D1082DD0D10CDDD0D1010 -:1073200010B5017804000A00303AD3B2092B1FD8F7 -:1073300011000A0161780B00303BD8B2092824D82B -:107340009918A27809011300303BD8B209282AD82D -:107350005A18E378120118003038C1B28018092990 -:1073600005D91900413905292BD8373B981810BD8C -:107370000B00413B052B01D83739DAE70B00613BA5 -:107380000020052BF3D85739D3E70B00413B052BE1 -:1073900002D837398918D4E70B00613B0020052B50 -:1073A000E5D85739F6E71300413B052B02D8373AA9 -:1073B0005218CEE71300613B0020052BD7D8573A6F -:1073C000F6E71900613900200529D0D8573BCDE7F1 -:1073D000F7B50B7807004E1C222B0FD00026554B1B -:1073E00019603000FEBD02331A780130222A08D01D -:1073F000002A06D05C2AF6D00133F5E733000020DE -:10740000F2E74D4B1B6898470190041E07D1019E7F -:10741000E7E7721C5C2B13D023700134160033781D -:10742000222B01D0002BF4D1002323703378223B90 -:107430005A425341F618019B3B610423FB60D0E79D -:1074400073786E2B17D007D8611C622B0CD0662B7B -:107450000FD0237001340AE0742B0ED0752B0ED0A0 -:10746000722BF6D10D23F4E7082323700C000132B0 -:10747000D4E70C23F9E70A23EBE70923E9E7B01C7B -:10748000FFF74EFF2D4B2E49C3180500721D8B428E -:10749000EDD90028EBD02B4BC3188B4227D8B379FA -:1074A0005C2BE4D1F379752BE1D130000830FFF784 -:1074B00037FF3200214B2249C3180B328B42D6D8FA -:1074C000214BAD021D4080238005800D05435B02EA -:1074D000ED181E4BE11C9D4223D803234C1E3F2078 -:1074E00080212840494201432170AD0910E07F28E6 -:1074F00009D8012301341648611EC05C013B0543D5 -:107500000D70E418B3E7134B9842E2D8022302341B -:107510003F20802128404942013C01432170AD09B0 -:10752000E9E73F20802328405B420343E370AD0935 -:107530000423D3E7D0AD020880A102080024FFFF96 -:10754000FF0300000028FFFF00FC0F00FFFF00000A -:1075500019DE0D10FF070000002803D00378013B5F -:107560001F2B00D970470130F6E70000064B10B51D -:107570001B6828209847041E03D02822002100F011 -:10758000D1FD200010BDC04680A10208F0B5050065 -:1075900087B00E1E01D1002413E00422754930008B -:1075A00001F045FC002803D10223EB60341D08E004 -:1075B00005227149300001F03AFC002804D1E8604E -:1075C000741D200007B0F0BD04226C49300001F0AA -:1075D0002EFC002806D101230122EB600023AA61C2 -:1075E000EB61E3E73378222B05D131002800FFF768 -:1075F000EFFE0400E5E71A00303AD2B22D2B01D09D -:10760000092A1AD8340000E0013423781A00303AED -:10761000092AF9D92D2BF7D0A71B3A00310068466B -:1076200000F077FD00236A466846D35500F0CEFC93 -:107630000323A861E961EB60C3E75B2B37D1563BBD -:10764000EB60701CFFF788FF037804005D2B01D10D -:107650000134B6E7FFF78AFF061EA8609BD0200022 -:10766000FFF77AFF01003000FFF790FFFFF774FF8C -:107670000400002C00D18EE723782C2B04D05D2B46 -:10768000E6D03F4B1C6086E7FFF770FF051E00D178 -:1076900081E730604660601CFFF75EFF0100280054 -:1076A000FFF774FFFFF758FF2E000400E1E77B2B84 -:1076B0005DD1753BEB60701CFFF74EFF0378040053 -:1076C0007D2BC5D0FFF752FF061EA86000D162E7F0 -:1076D0002000FFF741FF01003000FFF779FEFFF7C0 -:1076E0003BFF002800D156E7002433693461336240 -:1076F00003783A2B02D0224B186062E70130FFF783 -:107700002BFF01003000FFF741FFFFF725FF0400CA -:10771000002C00D13FE723782C2B02D07D2B97D073 -:10772000AFE7FFF723FF051E00D134E73060466066 -:10773000601CFFF711FF01002800FFF749FEFFF76B -:107740000BFF002800D126E700242B692C612B6257 -:1077500003783A2BCFD10130FFF7FEFE010028005D -:10776000FFF714FFFFF7F8FE2E000400D0E7044BEC -:107770001E6010E720DE0D1025DE0D102BDE0D1033 -:10778000D0AD02080849094A002803D1084B0B6014 -:10779000084B07E00368002B00D1054B0B604368E2 -:1077A000002BF5D01360704780A102087CA102086D -:1077B000A9800D10BD800D10F8B58026040076005C -:1077C000002C00D1F8BDE3682768334204D1A068DB -:1077D000002801D0FFF7F0FFE3680B4D334204D1DE -:1077E0002069002801D02B6898478022E368920026 -:1077F000134204D1206A002801D02B68984720004A -:107800002B6898473C00DBE77CA10208F7B5050030 -:107810000E000192FFF7AAFE0023134F04003B6005 -:1078200098420CD02800FFF797FE01002000FFF7D8 -:10783000ADFE051E05D12000FFF7BEFF002420008D -:10784000FEBD019B002B0AD0FFF786FE03780500E2 -:10785000002B04D02000FFF7AFFF3D60EEE7002EC5 -:10786000EDD03560EBE7C046D0AD0208002210B580 -:107870001100FFF7CBFF10BD0300093B0122042BD1 -:1078800002D920384242424110007047F0B500252D -:10789000170006002C0089B003930E9B02901B0C6E -:1078A000DBB204930E9B00911B0ADBB205930E9B87 -:1078B000DBB20793731C069333780193002B08D037 -:1078C000009B002B22DB029A731C9B1A009A9A429F -:1078D0001CDA0E9BDBB2002B00D1B4E0019A9A4275 -:1078E00000D0AEE0009B002B06DB029A731C9B1AB3 -:1078F000009A934200DDA4E0B31C7678032D00D9F2 -:10790000A1E0280000F0ACF88989637B0198FFF7BB -:10791000B3FF002839D1079B019A9342D9D04F4E2B -:107920001100300001F05CFA031E08D1049B019A9B -:1079300093420BD0059B93426FD133003F33032D0D -:1079400023D8280000F08CF80510233533003E338F -:10795000F5E7002F06D0039A94425ED23F4A9B1A65 -:107960009B003B55012510E0621C002F0BD00399B2 -:107970008A4252D239493C195B1A217818110143C5 -:107980001B012170BB5414000225069E92E7621C65 -:10799000002F0BD003998A423FD230493C195B1A21 -:1079A0002178981001439B012170BB5414000325DA -:1079B000EBE7002F08D0039A94422ED227493A19B8 -:1079C0005B1A11780B43137001340025DDE71D00AD -:1079D000002E22D0009B002B22DB029B009AEB1A88 -:1079E0009A421DDA019BB34217D1009B002B04DDA4 -:1079F000029B009AEB1A93420FDC2E786B1C029AC2 -:107A00009D1A002E04D0009B002B11DBAB420FDA35 -:107A1000002F18D03B5D002B15D00124644219E0E3 -:107A20003000FFF729FF0028DCD02E780135CFE7A2 -:107A30003000FFF721FF0028EFD0029B5E5D01358B -:107A4000DFE7002DE9D1039B9C42E6D2002F01D055 -:107A500000233B55200009B0F0BDC04630DE0D10BC -:107A600002B4714649084900095C49008E4402BCD1 -:107A70007047C046002243088B4274D303098B42EF -:107A80005FD3030A8B4244D3030B8B4228D3030CEE -:107A90008B420DD3FF22090212BA030C8B4202D390 -:107AA0001212090265D0030B8B4219D300E0090AB8 -:107AB000C30B8B4201D3CB03C01A5241830B8B42C1 -:107AC00001D38B03C01A5241430B8B4201D34B03AA -:107AD000C01A5241030B8B4201D30B03C01A52410F -:107AE000C30A8B4201D3CB02C01A5241830A8B4294 -:107AF00001D38B02C01A5241430A8B4201D34B027D -:107B0000C01A5241030A8B4201D30B02C01A5241E0 -:107B1000CDD2C3098B4201D3CB01C01A5241830994 -:107B20008B4201D38B01C01A524143098B4201D3CE -:107B30004B01C01A524103098B4201D30B01C01AF9 -:107B40005241C3088B4201D3CB00C01A5241830873 -:107B50008B4201D38B00C01A524143088B4201D3A0 -:107B60004B00C01A5241411A00D201465241104600 -:107B70007047FFE701B5002000F0F0F802BDC046F5 -:107B80000029F7D076E7704703460B437FD40022E5 -:107B900043088B4274D303098B425FD3030A8B42A1 -:107BA00044D3030B8B4228D3030C8B420DD3FF220B -:107BB000090212BA030C8B4202D31212090265D0D9 -:107BC000030B8B4219D300E0090AC30B8B4201D38C -:107BD000CB03C01A5241830B8B4201D38B03C01AD3 -:107BE0005241430B8B4201D34B03C01A5241030B4A -:107BF0008B4201D30B03C01A5241C30A8B4201D3FB -:107C0000CB02C01A5241830A8B4201D38B02C01AA5 -:107C10005241430A8B4201D34B02C01A5241030A1C -:107C20008B4201D30B02C01A5241CDD2C3098B4201 -:107C300001D3CB01C01A524183098B4201D38B017E -:107C4000C01A524143098B4201D34B01C01A524121 -:107C500003098B4201D30B01C01A5241C3088B4266 -:107C600001D3CB00C01A524183088B4201D38B0051 -:107C7000C01A524143088B4201D34B00C01A5241F3 -:107C8000411A00D201465241104670475DE0CA0FCA -:107C900000D04942031000D34042534000229C468A -:107CA00003098B422DD3030A8B4212D3FC22890194 -:107CB00012BA030A8B420CD3890192118B4208D36A -:107CC000890192118B4204D389013AD0921100E0CC -:107CD0008909C3098B4201D3CB01C01A52418309E0 -:107CE0008B4201D38B01C01A524143098B4201D30D -:107CF0004B01C01A524103098B4201D30B01C01A38 -:107D00005241C3088B4201D3CB00C01A52418308B1 -:107D10008B4201D38B00C01A5241D9D243088B4207 -:107D200001D34B00C01A5241411A00D201466346AA -:107D300052415B10104601D34042002B00D549420E -:107D4000704763465B1000D3404201B5002000F04D -:107D500005F802BD0029F8D016E770477047C04605 -:107D6000002B11D1002A0FD1002900D1002802D008 -:107D70000021C943081C07B4024802A14018029020 -:107D800003BDC046D9FFFFFF03B4684601B50298A2 -:107D900000F030F8019B9E4602B00CBC7047C04614 -:107DA000F0B5CE46474615042D0C2E0080B50704CD -:107DB000140C3F0C9946030C7E435D4367436343B9 -:107DC0007F19340CE4199C46A54203D980235B0239 -:107DD0009846C4444B4643435143250C36046544FE -:107DE000360C2404A4195B19591820000CBC9046C9 -:107DF0009946F0BDF0B54F464646D646C0B504009C -:107E000082B00D00914698468B422FD82CD0414627 -:107E1000484600F0CFF829000600200000F0CAF81C -:107E2000331A9C46203B9A4600D576E04B46524694 -:107E300093401F004B46624693401E00AF4228D835 -:107E400025D05346A41BBD41002B00DA7BE0002265 -:107E50000023009201930123524693400193012392 -:107E600062469340009318E08242D0D9002200235A -:107E7000009201930A9B002B01D01C605D6000986A -:107E8000019902B01CBC90469946A246F0BDA3429F -:107E9000D7D900220023009201936346002BE9D03A -:107EA000FB079846414672080A437B0866460EE087 -:107EB000AB4201D1A2420CD8A41A9D410120241941 -:107EC0006D410021013E24184D41002E06D0AB42E9 -:107ED000EED9013E24196D41002EF8D10098019988 -:107EE000534600196941002B23DB2B005246D34037 -:107EF0002A006446E2401C0053461500002B2DDB8F -:107F000026005746BE40330026006746BE4032007A -:107F1000801A994100900191ACE7624620239B1A98 -:107F20004A46DA406146130042468A4017001F4322 -:107F300080E7624620239B1A2A0066469A40230067 -:107F4000F3401343D4E76246202300219B1A00220A -:107F5000009101920122DA40019280E720236246DB -:107F600026009B1ADE402F00B0466646B7404646C4 -:107F70003B003343C8E7C0461C2101231B04984241 -:107F800001D3000C10391B0A984201D3000A0839AA -:107F90001B09984201D30009043902A2105C401861 -:107FA0007047C04604030202010101010000000005 -:107FB0000000000010B5002903D1FFF7DDFF2030DD -:107FC00002E0081CFFF7D8FF10BDC04610B50A221A -:107FD000002100F0FDFF10BD0EB403B5010003AB9E -:107FE000044804CB0068019300F074F902B008BCA7 -:107FF00003B0184784A1020870B505000E001400F4 -:10800000002804D08369002B01D102F02BF81C4B0F -:108010009C420FD16C68A3891B0702D52369002BF2 -:1080200021D12100280001F049F800281BD00120AF -:10803000404270BD134B9C4201D1AC68EBE7124B40 -:108040009C42E8D1EC68E6E7A3680136013BA360F7 -:10805000002B04DAA26993420ADB0A2908D02368BC -:108060005A1C2260197031780029EDD10800E0E730 -:108070002200280000F0C0FF431CF4D1D7E7C0461F -:10808000F4DF0D1014E00D10D4DF0D1010B5034B0C -:108090000A0001001868FFF7AFFF10BD84A10208B5 -:1080A000EC3000687047000010B5034B0100186801 -:1080B00000F08AF810BDC04684A1020810B5034B39 -:1080C0000100186800F036F810BDC04684A102080F -:1080D00082B0002900D101A9101E06D0002B06D0C5 -:1080E00013780B601078431E984102B0704702204D -:1080F0004042FAE730B50024A24201D1002005E059 -:10810000035D651C0C5DA34201D0181B30BD2C0023 -:10811000F2E7002310B59A4200D110BDCC5CC454E4 -:108120000133F8E703001218934200D17047197029 -:108130000133F9E770B50500002910D00C1F236842 -:10814000002B00DAE418280002F0A3F81D4A136897 -:10815000002B05D163601460280002F09BF870BD0D -:10816000A34209D9216860188342F3D118685B687B -:1081700041182160EEE713005A68002A01D0A2429C -:10818000F9D919685818A0420BD120680918581855 -:1081900019608242E0D110685268411819605A6033 -:1081A000DAE7A04202D90C232B60D5E721686018DA -:1081B000824203D1106852684118216062605C609D -:1081C000CAE7C046D4AD0208032370B5CD1C9D4359 -:1081D000083506000C2D1ED20C25A9421DD83000F2 -:1081E00002F057F8254A14682100002919D1244CBF -:1081F0002368002B03D1300000F0E0FD206029004F -:10820000300000F0DBFD431C2BD10C233000336029 -:1082100002F040F803E0002DDFDA0C233360002089 -:1082200070BD0B685B1B19D40B2B03D90B60CC18EA -:10823000256003E04B688C420DD11360300002F0E2 -:1082400029F8200007220B30231D9043C31AE7D0E2 -:108250005A42E250E4E763600C00EFE70C00496823 -:10826000C3E70323C41C9C43A042E1D0211A300081 -:1082700000F0A4FD431CDBD1C7E7C046D4AD020823 -:10828000D8AD0208936810B5013B9360002B04DA67 -:108290009469A34207DB0A2905D01368581C1060B3 -:1082A0001970080010BD00F0A7FE0100F9E7F8B54D -:1082B00006000F001400D518AC4201D1002007E0E1 -:1082C00021783A003000FFF7DDFF0134431CF3D181 -:1082D000F8BD0000F0B59FB002900F0016000593A6 -:1082E000002805D083690493002B01D101F0BAFE68 -:1082F0007B4B9F425BD1029B5F68BB891B0762D5AA -:108300003B69002B5FD0002306AC636120336376AA -:108310001033A37635002B78002B01D0252B5CD1B0 -:10832000AB1B04930CD0320039000298FFF7BFFF5B -:10833000431C00D1C4E06269049B944663446361BA -:108340002B78002B00D1BBE0012200235242626057 -:1083500002A9543252186E1C2360E360A3601370AC -:10836000A365317805225F4801F088FF751C00285D -:1083700035D12268D30604D5532302A95B182021E6 -:108380001970130704D5532302A95B182B21197008 -:1083900033782A2B2CD0350000210A20E3682A7874 -:1083A0006E1C303A092A64D900292ED026E04E4BA3 -:1083B0009F4202D1029B9F689FE74C4B9F429CD1FA -:1083C000029BDF6899E73900029800F077FE0028E9 -:1083D00099D0012040421FB0F0BD01359BE7414BD1 -:1083E0002268C01A01238340134323602E00B8E79C -:1083F000059B191D1B680591002B01DB099304E007 -:108400005B42E3600223134323602B782E2B0AD1B7 -:108410006B782A2B35D1059B02351A1D1B680592F6 -:10842000002B2BDB0793324E29780322300001F01A -:1084300025FF002806D04023801B83402268013599 -:1084400013432360297806222A486E1C217601F006 -:1084500015FF00283AD0284B002B25D10722059B79 -:1084600007339343083305936369039A9B18636149 -:1084700050E7434301219B18350090E701235B42FD -:10848000D0E700230A201A000135636029786E1CAA -:108490003039092903D9002BC5D00792C3E74243DD -:1084A000012352183500F1E705AB00933A00134B56 -:1084B0002100029800F0C0F80390039B0133D3D150 -:1084C000BB895B0600D584E70B9884E705AB009376 -:1084D0003A000A4B2100029800F068FBECE7C04626 -:1084E000F4DF0D107EDE0D1014E00D10D4DF0D1042 -:1084F00084DE0D1088DE0D1039860D10AF820D1050 -:10850000F0B58BB014001D1E129953DA8024240696 -:108510001B191D0014002D230B702023149E032211 -:108520009E43462E07D03300453B59424B4110999C -:10853000013ACB18109309AB049308AB0393139B38 -:1085400000920293109B220001932B0000F0B2FED8 -:108550000700472E02D1119BDB0724D5109BFB1887 -:108560000793462E14D13B78302B0CD100220023E8 -:108570002000290002F052FA002804D10123109AA9 -:108580009B1A139A1360139B079A1B68D3180793BF -:10859000002200232000290002F040FA30220028A7 -:1085A0000DD0079B09933800099B159ADB1B1360BC -:1085B0000BB0F0BD0023AFE7591C09911A70099B5D -:1085C00007998B42F8D3EEE7F0B5831C85B0019391 -:1085D00006000C0002702B23002901DA2D234C42E7 -:1085E0007370092C22DD02ABDD1D20000A21FFF78C -:1085F000B1FB6F1E3031397020000A21FFF7C4FA39 -:10860000040009280BDC023D3034019B2C7002AAC7 -:1086100007321800AA4204D8801B05B0F0BD3D0007 -:10862000E3E72A7801351A700133F0E73023E418C4 -:10863000B370301DF470EFE7F0B595B00C000A92FE -:108640000B931A9D099001F0A1FD036818000C938B -:1086500000F0E6FB0023129323680E900D930D9912 -:10866000277E2B680722C90545D59B1893431A001E -:1086700008322A601A685B68A264E3640122E56C30 -:10868000A66C6B005B080F935242AC4B30000F9905 -:1086900003F0D2FE002830D10122A84B5242300014 -:1086A0000F9902F0CBF9002827D1002200233000D7 -:1086B000290002F0B9F9002803D023002D2243330A -:1086C0001A709F4D472F00D89E4D032300260D9A08 -:1086D000236101339A4322600B9B13AA009321006C -:1086E0000A9B099800F0F4F9431C00D093E00120A4 -:1086F000404215B0F0BD0733B8E732002B00300020 -:10870000290003F099FE002804D08F4D472FDCD8B4 -:108710008E4DDAE780230D996268DB000B43511C14 -:1087200043D10732626012AA0021059211AA039276 -:10873000232223600691019308A9636852180292CC -:10874000009332002B0004970998FFF7D9FE2023ED -:108750003A0005009A43472A07D1119BDA1C02DB35 -:108760006268934245DD023FFFB21199652F25D81B -:10877000200001393A0050301191FFF725FF129A7D -:10878000060013182361012A02DC2268D20701D5F2 -:1087900001332361232308AA9B181B78002B9BD04D -:1087A00023002D2243331A7096E7672F00D176E11C -:1087B000472FB8D1002AB6D10122B3E7662F19D1CD -:1087C000636800290CDD2161002B02D12268D207E9 -:1087D00002D501335B182361119B0026A365D9E7FD -:1087E000002B03D101222168114200D09A1C226182 -:1087F000F2E76727119B129A934205DB22682361F7 -:10880000D207E9D50133E6E70121002B01DC491845 -:10881000C91A5218EBE72268530508D423692A00C5 -:108820000A9909980B9DA847431C29D15FE7652F3A -:1088300000D8E0E0A06CE16C0022002302F0EEF82A -:10884000002834D00123424A0A9909980B9DA84771 -:10885000431C00D14BE7119B129A934202DB236821 -:10886000DB070DD50B9D0E9B0C9A0A990998A8471A -:108870000025431C00D13AE7129B013BAB420ADCC6 -:1088800023689B0700D508E1139BE068984200DB52 -:108890002FE718002DE7220001231A320A990998C0 -:1088A0000B9EB047431C00D121E70135E4E7119B43 -:1088B000002B2DDC0123264A0A9909980B9EB0470C -:1088C000431C00D113E7119B002B05D1129B002BF9 -:1088D00002D12368DB07D3D50B9E0E9B0C9A0A9915 -:1088E0000998B0470026431C00D100E7119B5B426A -:1088F000B34201DC129B92E7220001231A320A994B -:1089000009980B9FB847431C00D1F0E60136EDE70C -:10891000A36D129F9F4200DD1F00002F08DD3B006A -:108920002A000A9909980B9EB047431C00D1DEE645 -:1089300000230D93FB43DB170F9318E0FFFFEF7F3E -:1089400093DE0D108FDE0D109BDE0D1097DE0D10E7 -:108950009FDE0D10220001231A320A9909980B9EFE -:10896000B047431C00D1C2E60D9B01330D930F9B12 -:10897000A66D0D9A3B40F31A9342EBDC119B129AC1 -:10898000AD19934210DB2368DB070DD4129F119BB6 -:10899000BE1BFF1AB74200DD3700002F0DDCFE437F -:1089A000F31700250C931CE00E9B0C9A0A9909986A -:1089B0000B9FB847431CE9D199E63B002A000A996E -:1089C00009980B9DA847431CE9D190E6220001239A -:1089D0001A320A9909980B9EB047431C00D186E6CB -:1089E0000135119A129B0C999B1A3A000A409B1A66 -:1089F000AB42EBDC44E7129B012B02DC01231A4261 -:108A000032D001232A000A9909980B9FB847431CCA -:108A100000D16CE60E9B0C9A0A9909980B9F0135C0 -:108A2000B847431C00D162E6A06CE16C129B0022A7 -:108A30005F1E002301F0F2FF3B00002814D0002548 -:108A40000AE0220001231A320A9909980B9FB847BD -:108A5000431C00D14BE60135129B013BAB42F0DCDD -:108A6000220033005032DBE62A000A9909980B9D58 -:108A7000A847431CF4D13AE62200012319320A998F -:108A800009980B9EB047431C00D130E60135E368DE -:108A9000139A9B1AAB42EFDCF6E60025F7E7002AB3 -:108AA00000D189E60021069112A9059111A903912F -:108AB000232108A809182360019300922B00049732 -:108AC000029132000998FFF71BFD050045E6C046FC -:108AD000F7B5150001938A680B6900900C0093426A -:108AE00000DA130022002B6043321278002A01D0F2 -:108AF00001332B6023689B0602D52B6802332B6061 -:108B0000062723681F4027D0230043331B785A1EB3 -:108B100093412268920630D4220001994332009892 -:108B2000089EB047431C25D0062320682A68E168C8 -:108B300003400025042B03D18D1AEB43DB171D40A6 -:108B4000A3682269934201DD9B1AED180027BD42FC -:108B500020D1002010E00137E3682A689B1ABB424D -:108B6000D2DD22000123193201990098089EB047F6 -:108B7000431CF0D101204042FEBD3020E1184331BA -:108B8000087021005A1C45310978A218433202337B -:108B90001170C1E7220001231A3201990098089E42 -:108BA000B047431CE6D00137D1E70000F0B589B0EB -:108BB00004920A0043320593039002920A7E0C004D -:108BC0000E9B6E2A00D186E01FD8632A33D008D8C6 -:108BD000002A00D18CE0582A4DD0250042352A7059 -:108BE00030E0642A01D0692AF7D1196825680A1D86 -:108BF000280629D508681A60002803DA2D23029A6E -:108C0000404213706B4E0A274FE0732A74D008D885 -:108C10006F2A1FD0702AE0D1202209680A432260FF -:108C200003E0752A16D0782AD7D122007821453260 -:108C30001170614E22E025001A684235111D19603D -:108C400013682B70012365E008681A606906D3D5A4 -:108C500000B2D1E719682568081D186008682E065B -:108C600005D5544E08276F2A1BD00A2719E06D0638 -:108C7000F7D580B2F5E745314E4E0A701868226884 -:108C8000011D00681960150621D5D30702D52023E0 -:108C90001A4322601027002803D1202322689A4318 -:108CA00022602300002243331A706368A360002B04 -:108CB00058DB0422216891432160002854D1029D91 -:108CC000002B5AD02500337842352B7055E05506DD -:108CD000DBD580B2D9E71A680D68101D49691860A4 -:108CE00013682E0601D5196002E06D06FBD51980C8 -:108CF0000023029D23614FE01A68111D1960156859 -:108D000000216268280001F0B9FA002801D0401B58 -:108D10006060636823610023029A13703CE023695A -:108D20002A0004990398059DA847431C3ED0236858 -:108D30009B0715D4079BE068984239DA180037E0A2 -:108D400022000123193204990398059EB047431C61 -:108D50002CD00135E368079A9B1AAB42F0DCE9E7B7 -:108D60000025F7E70028ADD0029D3900FEF708FF87 -:108D7000735C013D2B700028F7D1082F09D12368BF -:108D8000DB0706D563682269934202DC3023013D8C -:108D90002B70029B5B1B2361059B07AA009321009C -:108DA000049B0398FFF794FE431CB8D10120404276 -:108DB00009B0F0BDA1DE0D10B2DE0D10002370B5BC -:108DC000064C05000800236003F014FC431C03D18B -:108DD0002368002B00D02B6070BDC0463CB0020859 -:108DE000C9B20378002B04D08B4200D17047013008 -:108DF000F7E74B42594149420840F7E702780B78C0 -:108E0000002A03D0013001319A42F7D0D01A7047BE -:108E100003000A7801311A700133002AF9D1704732 -:108E20000023C25C0133002AFBD1581E7047002387 -:108E300030B59A420AD0013AC45CCD5CAC4204D150 -:108E4000934202D00133002CF6D1631B180030BDD1 -:108E500030B50500002A00D130BD0C78013A6B1CFA -:108E60002C700131002C05D19A189A42F4D01C7054 -:108E70000133FAE71D00EDE7F0B51F000E008DB0DD -:108E80000B900291039212983478FFF709F90822A7 -:108E900000194378751C134053D12D2C53D174788D -:108EA000B51C01330193002F00D18AE0102F0AD1A5 -:108EB000302C08D120222B789343582B00D07AE015 -:108EC00010276C780235019B002B41D1013B0493A4 -:108ED0003E4B05933A00FB17049805990893FEF75B -:108EE0003FFF002309900E00002000210A9222007B -:108EF000303A092A31D81400A7423DDD5A1C1DD052 -:108F0000B14236D802D1099B984232D8099B83429C -:108F100006D18E4204D101230A9A5B42A2420DDBA4 -:108F20000B00020008993800FEF73AFFE317069499 -:108F30000793069B079CC018614101232C780135DB -:108F4000D5E72E009FE72B2CACD1B51C7478A9E790 -:108F50000023049380231B06BBE72200413A192A11 -:108F600001D8373CC8E72200613A192A04D8573C97 -:108F7000C2E701235B42E1E75A1C09D10B9A233374 -:108F80001360039B04980599002B0ED10DB0F0BD22 -:108F9000019A002A04D006000F0000217042B94156 -:108FA000039A002AF2D0002B01D06B1E0293039B80 -:108FB000029A1A60EAE73024002F00D083E70827DE -:108FC00081E7302C00D175E70A277CE7FFFFFF7FA0 -:108FD00037B51300064A05001068046A002C00D15A -:108FE000044C0A0000942900FFF746FF03B030BD8F -:108FF00084A10208E8A10208F8B505000E001400DB -:10900000002804D08369002B01D101F02BF8224BFA -:109010009C422DD16C68A369A360A3891B0731D53D -:109020002369002B2ED023682269F7B2981A63694E -:10903000F6B2834205DC2100280000F0A5FF0028DD -:1090400026D1A3680130013BA36023685A1C22602B -:109050001F706369834204D0A389DB071AD50A2EE7 -:1090600018D12100280000F08FFF002812D00FE057 -:109070000A4B9C4201D1AC68CDE7094B9C42CAD156 -:10908000EC68C8E72100280000F018F80028CAD0D2 -:10909000012676423000F8BDF4DF0D1014E00D100B -:1090A000D4DF0D100B1E04D0FF2A04D98A230360DD -:1090B0008B3B180070470A700123FAE7364B70B5F6 -:1090C0001D6806000C00002D05D0AB69002B02D1F5 -:1090D000280000F0C7FF314B9C420FD16C680C2375 -:1090E000E25E93B219072DD4D90611D409230120C9 -:1090F000336037331343A381404270BD284B9C42F9 -:1091000001D1AC68EBE7274B9C42E8D1EC68E6E77D -:109110005B0713D5616B002908D0230044339942C3 -:1091200002D03000FFF706F8002363632422A389EE -:109130009343A38100236360236923600823A289EA -:109140001343A3812369002B0BD1A0218022A38983 -:10915000890092000B40934203D02100300001F0BF -:1091600049F80123A289134011D00023A360636949 -:109170005B42A361002023698342BED10C23E25EDF -:109180001306BAD540231343A3810138B5E79207EC -:1091900000D46369A360EDE784A10208F4DF0D1039 -:1091A00014E00D10D4DF0D10F0B503690C6989B01F -:1091B000070005910026A34265DB0B00013C143338 -:1091C000A50003935B1904930300143302935D1904 -:1091D000049B28681B68591C0193FEF74BFC019007 -:1091E000B04229D0039B02989C460696624608CA64 -:1091F0009446019A99B251431B0C534389190A0CA6 -:109200009B1807931E0C036889B29AB2069BD2186A -:109210000368521A190C6B469B8BCB1A11145B18FE -:10922000191492B21B041A43049B069104C06345AF -:10923000DCD22B68002B2DD00599380001F040FAC4 -:1092400000281FDB0025019B02980133039901933D -:10925000026808C992B255199AB2AA1A05681B0C7D -:109260002D0CEB1A15145B191D1492B21B04134339 -:1092700008C0049B8B42EBD2029AA300D3181A6851 -:10928000002A11D0019E300009B0F0BD2B68002BE0 -:1092900004D1013C029B043DAB42F7D33C61CBE7D8 -:1092A0001A68002A04D1013C029A043B9A42F7D37F -:1092B0003C61E7E7F0B516001F00446A9BB00290DE -:1092C000239D06960797002C08D11020FEF7ECFE90 -:1092D000029B5862446084600460C460029B5B6AC5 -:1092E000196800290BD05A68012393404A608B60AB -:1092F000029801F008F80022029B5B6A1A60002FB6 -:1093000020DA01232B607B005B080793079CB24B9C -:10931000220017931A409A4217D1B04B229A136039 -:10932000069B002B03D1240301D100F087FDAC4B39 -:10933000249A0893002A02D0AA4B249A1360089812 -:109340001BB0F0BD00232B60E0E7069E079F0022C4 -:1093500000233000390001F061FB051E0BD0012312 -:10936000229A1360A04B249A0893002AE7D09F4AC0 -:1093700024990A60E3E718AB019319AB009332001C -:109380003B00029801F01AFA630003905B0D74D061 -:109390003A03974C120B14432100964A300016955D -:1093A0009E180022944B02F0FFFC944A944B02F06A -:1093B00089FA944A944B01F05FFB040030000D00E1 -:1093C00003F08CF8914A924B02F07CFA02000B00F9 -:1093D0002000290001F050FB04000D0003F048F8C4 -:1093E0000022070000232000290001F01DFB0028B7 -:1093F00009D0380003F072F82B00220001F00EFBB8 -:10940000434258413F1A01231493162F0DD8814926 -:10941000FB00C91808684968069A079B01F018FB09 -:10942000002846D00023013F1493189B9E1B002365 -:109430000A933300013B0B9304D501239B1B0A9332 -:1094400000230B93002F36DB0B9B1197DB190B933B -:1094500000230493209B0124092B00D984E0052BD1 -:1094600002DD0024043B2093209B981E032800D992 -:1094700084E0FEF7F5FA7577286A189B199A9E180A -:10948000654BF218202A0FDD40239B1A9C40634B4A -:109490000698F318D840204303F05AF80123604C93 -:1094A000013E091916937CE7202306989B1A9840E1 -:1094B000F2E71490B9E70A9BDB1B0A937B42049303 -:1094C00000231193C6E701230D93219B002B59DD47 -:1094D0000C930993029A556A00226A6004321000C4 -:1094E00014306968984252D9029800F0D4FE029B69 -:1094F00028605B6A1B680893099B0E2B00D90AE160 -:10950000002C00D107E1069B079C12931394002FB7 -:1095100000DC89E00F213A003E4B0A40D2009B1844 -:109520001D685E6802233C110E93E3060BD53D4B8C -:109530000C401A6A5B6A1298139901F0B9FD032373 -:10954000069007910E9300233AE001230D93219B8F -:10955000FB180C9301330993002BBBDC0123B9E703 -:109560000023B1E70023F1E700230D942093013B92 -:1095700000220C93099313332192ABE701230D933F -:10958000023BF5E701230C9309931A00F4E701313C -:1095900069605200A3E701231C420ED00E9B214AB2 -:1095A00001330E93109B2800DB009B1831001A68D2 -:1095B0005B6802F087F905000E00109B6410013310 -:1095C0001093002CE7D1069807992A00330001F088 -:1095D0006FFD0690079142E00000F07F0F2700002A -:1095E000CDDF0D10D0DF0D109FDE0D10A0DE0D10B1 -:1095F0000000F03F01FCFFFF0000F83F61436F6394 -:10960000A787D23FB3C8608B288AC63FFB799F509B -:109610001344D33F60E00D10320400001204000038 -:10962000000010FE38E00D1002230E93002F16D01C -:10963000129813997C420D332340CE4ADB00D31895 -:109640001A685B6802F03EF9002301261D000690AF -:1096500007912411002C00D08CE0002BB9D1149B71 -:10966000002B00D196E0069C079D0022C24B2000F3 -:10967000290001F0D9F9002800D18BE0099B002BCB -:1096800000D187E00C9B002B41DDBC4B0022200069 -:10969000290002F017F90E9B0690079101330E93F3 -:1096A0000C9B7E1E0E98109302F018FF069A079BE3 -:1096B00002F008F90022B24B01F0DEF9B14A0E9037 -:1096C0000F910E9C0F9D94460F9B634415931D00B4 -:1096D000109B002B61D1069807990022AA4B02F03B -:1096E00063FB2200159B0690079101F0B1F9002859 -:1096F00000D0A8E2A5480F99844661440B00069863 -:109700000799220001F090F9002800D095E2129B01 -:10971000139C06930794199B002B00DA5CE10E2F33 -:1097200000DD59E1934BFA009B185C681B680493B9 -:109730000594219B002B00DBD8E0099B002B00DD6A -:10974000D4E000D07DE20498059900228E4B02F00F -:10975000B9F8069A079B01F085F9099B04931E004E -:10976000002800D04FE2089B089A5D1C3123013786 -:1097700013704BE234420AD00E9B854A01330E939C -:10978000EB009B181A685B6802F09CF833006410C9 -:1097900001355FE73E00099B84E7109B0D995A1E37 -:1097A000744BD2009B181A685B68002949D00020CE -:1097B000784901F07DFC2B00220002F0F5FA089BAD -:1097C0000E900F9115930698079902F051FE040030 -:1097D00002F084FE02000B000698079902F0E4FAFA -:1097E000159B30345D1C1C700E9A0F9B06900791E0 -:1097F00001F01AF900286CD1069A079B00205E49F7 -:1098000002F0D2FA0E9A0F9B01F00EF9002800D058 -:10981000C3E0089B109AEB1A9A4200DC77E70E9897 -:109820000F990022554B02F04DF800220E900F9137 -:1098300006980799514B02F045F815950690079147 -:10984000C1E72000290002F03DF8089C109A23008F -:1098500094460E900F91634415930698079902F071 -:1098600007FE050002F03AFE0B0002000698079979 -:1098700002F09AFA3035159B257001340690079155 -:10988000A3422AD10E980F99089A109B94466344DC -:1098900000221D003F4B01F0EFF802000B0006987C -:1098A000079901F0D5F8002800D076E00E9A0F9BBA -:1098B0000020384902F078FA02000B000698079958 -:1098C00001F0B2F8002800D121E76B1E1A78302A87 -:1098D00001D037003FE01D00F7E706980799002206 -:1098E000264B01F0EFFF06900791B6E7089E049A19 -:1098F000059B0698079901F0DBFB02F0B9FD040017 -:1099000002F0ECFD049A059B01F0DCFF02000B0065 -:109910000698079902F048FA230030333370099A09 -:10992000089B751CEB1A9A4248D102000B0001F00B -:10993000A3F8049A059B0690079101F089F8002886 -:109940002AD1049A059B0698079901F067F8002828 -:1099500001D0E30720D40399029800F0D4FC00233F -:109960002B70229B01371F60249B002B00D1E6E463 -:109970001D60E4E460E00D100000F03F00002440B2 -:1099800000001C400000C0FC000014400000C07C2F -:1099900038E00D100000E03F3E006B1E1A78392AB7 -:1099A00006D1089A9A4207D130231370130001366A -:1099B0001A7801321A708CE71D00EEE70022A44BE2 -:1099C00001F080FF00220023069007912E0001F095 -:1099D00025F800288BD0BEE70D9A002A00D1DAE0E6 -:1099E000209A012A00DDBDE0169A002A00D1B5E0D8 -:1099F000984A9B18049D0A9C0A9A0121D2180A923F -:109A00000B9A0298D3180B9300F01DFD0600002C52 -:109A10000EDD0B9B002B0BDD0B9A2300944200DD27 -:109A200013000A9AE41AD21A0A920B9AD31A0B93C9 -:109A3000049B002B1FD00D9B002B00D1AFE0002D0D -:109A400011D031002A00029800F096FD039A01001F -:109A50000600029800F000FD03991090029800F0B3 -:109A600052FC109B0393049B5A1B04D00399029849 -:109A700000F082FD03900121029800F0E4FC119BAC -:109A80000490002B00D1E3E11A000100029800F0DD -:109A900073FD209B0490012B00DD82E00025069BD6 -:109AA000AB420ED1079B1B03AB420AD1179B079A0F -:109AB000134206D00A9B013501330A930B9B0133F5 -:109AC0000B93119B0120002B6CD10B9B18181F23AB -:109AD00018407ED001331B1A042B70DD1C23181A8A -:109AE0000A9B24181B180A930B9B1B180B930A9BA9 -:109AF000002B05DD1A000399029800F08FFD0390FA -:109B00000B9B002B05DD1A000499029800F086FDDE -:109B10000490149B002B5ED00499039800F0D0FDB4 -:109B2000002858DA00230A220399029800F004FC66 -:109B30000D9B013F0390002B00D190E100233100E9 -:109B40000A22029800F0F8FB0C9B0600002B00DDB7 -:109B500088E0209B022B00DC84E044E03623189A46 -:109B60009B1A47E7099B5D1E049BAB4208DB5D1B0C -:109B7000099B002B0CDA0A9B099A9C1A00233BE7ED -:109B8000049B0495EA1A119B00259B181193EFE79B -:109B90000A9C099B30E7049D0A9C0D9E37E7049AB6 -:109BA00064E70025049B049A1B69109303339B0010 -:109BB000D318586800F0FEFB2023181A85E7042B01 -:109BC00095D00A9A1C33D2180A920B9AE418D3182B -:109BD0008CE70300F5E7099B002B3DDC209B022B63 -:109BE0003ADD099B0C930C9B002B0CD104990522A8 -:109BF000029800F0A1FB04900100039800F060FDC2 -:109C0000002800DDAFE5219B089DDF430023099379 -:109C10000499029800F077FB002E00D19BE6099B87 -:109C2000002B05D0B34203D01900029800F06BFB63 -:109C30003100029800F067FB8DE6109B04931E0034 -:109C4000E1E70023FAE7109B370004931E008AE542 -:109C500000002440330400000D9B002B00D1B2E033 -:109C6000099B0C93002C05DD31002200029800F0C6 -:109C7000D5FC06003000002D11D07168029800F06C -:109C80000AFB3100040033690C319A1C92000C303D -:109C9000FEF73FFA01222100029800F0BFFC09966E -:109CA0000600089B0A9304990398FFF77DFA099927 -:109CB0000D900400039800F003FD32001090049909 -:109CC000029800F017FD01230B93C36830340500A0 -:109CD000002B04D10100039800F0F2FC0B90290046 -:109CE000029800F010FB0B9B209A13430ED1069AAA -:109CF000013313420AD1392C26D0109B002B01DDF1 -:109D00000D9C31340A9B5D1C1C7081E7109B002B5D -:109D100007DB1D00209B1D4322D10123069A13421D -:109D20001ED10B9B002BEDDD03990122029800F060 -:109D300075FC0499039000F0C3FC002802DCE1D11B -:109D4000E307DFD5392CDBD10A9B0A9A5D1C392346 -:109D500013706B1E1A78392A67D001321A7057E7D0 -:109D60000A9B5D1C0B9B002B04DD392CECD00134CD -:109D70000A9BC9E70A9B0C9A1C70089BEB1A93423A -:109D80003ED000230A220399029800F0D5FA099BDD -:109D90000390B34209D100230A220999029800F0E6 -:109DA000CBFA099006000A957DE7099900230A225B -:109DB000029800F0C1FA002309900A2231000298AB -:109DC00000F0BAFAEEE7099B0C93089B06930499FE -:109DD0000398FFF7E9F9069B30305D1C18700C9A68 -:109DE000089B0400EB1A9A4208DD00230A2203991B -:109DF000029800F0A1FA06950390E8E70023099382 -:109E000003990122029800F009FC0499039000F0E4 -:109E100057FC00289DDC01D1E3079AD46B1E1A7809 -:109E2000302A00D0F4E61D00F8E7089A9A4203D1E0 -:109E3000312301371370EBE61D008AE70B4B249AA0 -:109E400008930B4B002A01D0FFF777FAFFF777FA58 -:109E5000209B012B00DC21E6119D012035E60C9BA7 -:109E6000002BB2DC209B022BAFDDBCE6C4DF0D1063 -:109E7000CCDF0D10F7B58A8905000C00130760D4FC -:109E80004B68002B04DC0B6C002B01DC0020FEBDBA -:109E9000E76A002FFAD000232E682B6080235B0135 -:109EA000216A1A4034D0606DA3895B0706D56368C8 -:109EB000C01A636B002B01D0236CC01A0200216A08 -:109EC00000232800E76AB847A189431C06D12B6804 -:109ED0001D2B30D82B4ADA40D3072CD500236360E2 -:109EE00023692360CB0405D5431C02D12B68002BCA -:109EF00000D16065616B2E600029C7D02300443318 -:109F0000994202D02800FEF715F900206063BEE7F1 -:109F100001232800B847431CC6D12B68002BC3D0AF -:109F20001D2B01D0162B01D12E60AFE74023A28953 -:109F30001343A381ABE740230B430120A38140429D -:109F4000A5E70F69002FA1D00B680F60DB1B019301 -:109F50000023920700D14B69A360019B002B00DC1A -:109F600094E7019B3A00216A2800A66AB0470028BE -:109F700003DC4023A2891343DFE7019B3F181B1A30 -:109F80000193EAE7010040200B6970B505000C0061 -:109F9000002B01D1002070BD002804D08369002B64 -:109FA00001D100F05FF80B4B9C4209D16C680C2288 -:109FB000A35E002BEED021002800FFF75BFFEAE74D -:109FC000054B9C4201D1AC68F1E7044B9C42EED1B9 -:109FD000EC68ECE7F4DF0D1014E00D10D4DF0D1089 -:109FE000002310B5040003604360836081814366F1 -:109FF000C281036143618361190008225C30FEF76E -:10A0000091F8054B24626362044BA362044BE36244 -:10A01000044B236310BDC04681A80D10A9A80D10E4 -:10A02000E1A80D100DA90D1010B5024900F08CF833 -:10A0300010BDC046899F0D1070B568254A1E554356 -:10A040000E0029007431FEF7BFF8041E08D000216D -:10A050002A00016046600C30A0606832FEF762F8AA -:10A06000200070BD836913B50400002B28D18364E0 -:10A07000C3640365134B144A1B68826201939842C0 -:10A0800001D101238361200000F020F860602000EE -:10A0900000F01CF8A060200000F018F80022E0603A -:10A0A00004216068FFF79CFF01220921A068FFF7E7 -:10A0B00097FF02221221E068FFF792FF0123A361BC -:10A0C00013BDC04670DE0D1029A00D10F8B51C4B55 -:10A0D00007001E68B369002B02D13000FFF7C2FFF2 -:10A0E0004836B4687368013B04D53368002B07D049 -:10A0F0003668F6E70C22A55E002D0DD06834F2E735 -:10A1000004213800FFF798FF30600028F0D10C23BD -:10A1100004003B602000F8BD20000A4B6566256006 -:10A120006560A560E36025616561A561082229007D -:10A130005C30FDF7F7FF6563A563A564E564E9E7B7 -:10A1400070DE0D100100FFFFF7B5040007000026C8 -:10A1500001914834002C01D13000FEBD6368A56830 -:10A160000093009B013B009301D52468F2E7AB8983 -:10A17000012B08D90E22AB5E013304D02900380030 -:10A18000019B984706436835EBE70000034B1B68CB -:10A19000186A002800D10248F030704784A10208F4 -:10A1A000E8A1020870B50E001D000E23C95E96B02E -:10A1B0001400002907DA00232B60B3891B0611D491 -:10A1C0008023DB000FE06A4600F0CCFB0028F2DBC6 -:10A1D000F022019B12021340054A9B185A42534138 -:10A1E0002B60EDE740230020236016B070BDC04611 -:10A1F00000E0FFFFF7B502268B8905000C00334213 -:10A2000006D0230047332360236101236361F7BD38 -:10A2100001AB6A46FFF7C6FF009907002800FDF76B -:10A22000D3FF002808D10C22A35E9A05EFD40322A5 -:10A2300093431E43A681E4E70F4BAB628023A289C0 -:10A2400020601343A381009B20616361019B002B6D -:10A250000DD00E23E15E280000F096FB002806D00A -:10A260000322A38993431A0001231343A381A089E6 -:10A270003843A081CBE7C04629A00D10C9B282188F -:10A28000904201D10020704703788B42FBD001300F -:10A29000F6E77047704770B5466A04000D00002E5F -:10A2A00007D11020FDF700FF6062466086600660FF -:10A2B000C660666AF368002B13D0636AAA00DB6885 -:10A2C0009B181868002818D101210E00AE40721D9D -:10A2D0009200200000F0C6FA00280CD0456086608D -:10A2E0000DE021220421200000F0BCFA636AF06036 -:10A2F000DB68002BE1D1002070BD02681A600023EA -:10A300000361C360F8E770B5446A06000D00002CD5 -:10A3100007D11020FDF7C8FE7062446084600460BD -:10A32000C460002D07D0736A6A68DB6892009B18CE -:10A330001A682A601D6070BDF7B51E0014239C4684 -:10A3400007000C0000200D698C4463461B68013037 -:10A3500099B263461B6851431B0C534389190E0C79 -:10A360009B1989B21E0C1B045B18614608C18C4600 -:10A370008542EADC002E1BD0A368AB4212DC636886 -:10A380003800591CFFF787FF2100236901909A1CB0 -:10A3900092000C310C30FDF7BCFE21003800FFF7B5 -:10A3A000B2FF019C2B1D9B00E31801355E60256107 -:10A3B0002000FEBD0300020C0020824201D11B04DC -:10A3C00010301A0E01D108301B021A0F01D10430CF -:10A3D0001B019A0F01D102309B00002B03DB0130DF -:10A3E0005B0000D4202070470722036810B50100ED -:10A3F0001A400DD001240020234205D1023003422F -:10A4000003D0E34020000B6010BD9B080B60FBE70E -:10A410009CB21000002C01D110201B0CDAB2002AD3 -:10A4200001D108301B0A1A0701D104301B099A0711 -:10A4300001D102309B08DA07E8D45B0801D0013073 -:10A44000E4E72020E0E710B50C000121FFF723FF2F -:10A4500001234461036110BDF0B50B69140012695A -:10A4600089B00D00934201DA25000C002F6926699E -:10A470006968BB190293AB68BA19934200DA0131DB -:10A48000FFF709FF0200BB1914329B00D3189C464A -:10A4900000211300049063451DD31435BF00EB1950 -:10A4A0001434B6000593A319039501940793079BF1 -:10A4B0000199994211D3029B002B06DD04235B42D4 -:10A4C0009C4463461B68002B51D0049B029A1800E1 -:10A4D0001A6109B0F0BD02C3DDE7019B1B6898B2A9 -:10A4E00000281CD015000026039F02CF2C688BB2D9 -:10A4F0004343090C4143A4B21B199B190E00296860 -:10A500000695090C71181E0C89190E0C9BB20904D2 -:10A510000B4308C5059BBB42E7D8069B5E60019BC9 -:10A520001B681D0C1ED0100000271368039E3168A5 -:10A53000046889B26943240C0919C9190F049BB234 -:10A540003B43036080CE43683F0C6F439BB2FB18D4 -:10A55000090C5B18059906901F0C0430B142E6D82F -:10A5600006994B60019B0432043301939FE7029BE1 -:10A57000013B02939FE700000323F7B5134005005A -:10A580000E001400002B08D02249013B9A005258BB -:10A5900000233100FFF7D0FE0600A310019336D050 -:10A5A0006C6A002C07D11020FDF77EFD68624460C4 -:10A5B00084600460C4606F6ABC68002C07D11649CF -:10A5C0002800FFF740FF00230400B8600360012269 -:10A5D000019B13420AD0310022002800FFF73CFF04 -:10A5E000070031002800FFF78EFE3E00019B5B1044 -:10A5F00001930CD02068002807D1220021002800F8 -:10A60000FFF72AFF0023206003600400DFE730002B -:10A61000FEBDC04628E10D1071020000F0B50D002E -:10A6200017002B69541185B0E3180193013300938F -:10A630004968AB680290009A934235DB0298FFF7B5 -:10A640002AFE00230200060019001432A3422EDB6A -:10A65000E343DB171C402B00A40014192A691433B0 -:10A6600092009A1894461F22174024D00132D21B20 -:10A670000392002219682000B9400A4304C404CBA5 -:10A680000399CA409C45F5D84260002A02D0019B3C -:10A6900002330093009B0298013B33612900FFF7CE -:10A6A00032FE300005B0F0BD01315B00C3E7980019 -:10A6B00011500133CAE704CB04C49C45FBD8E9E739 -:10A6C0000A69036930B59B1A0DD192001430143118 -:10A6D00084188918043C043925680A68954204D016 -:10A6E0000123954204D3180030BDA042F2D3FAE70B -:10A6F0005B42F8E7F0B50D0085B0070011002800B7 -:10A700001400FFF7DDFF061E08D101003800FFF737 -:10A71000C2FD01234661036105B0F0BD0123019331 -:10A72000002804DB23002C001D0000230193616836 -:10A730003800FFF7B0FD2F000022019B2669C3609F -:10A740001434B300E31802932B6914379B00FB18F1 -:10A75000039303009446143320CC04CF0192AAB291 -:10A7600094446A46614692882D0C8A1A0199090C14 -:10A77000691A151449190D1492B209040A431A6092 -:10A78000039AAC460433BA42E6D802991A008C42C6 -:10A7900005D3043A1368002B0ED00661BCE704CC45 -:10A7A00091B261440D14120C5219151489B212049D -:10A7B0000A43AC4604C3E8E7013EEAE7F7B51D00EB -:10A7C00001211400089FFFF766FD2B036D000600B2 -:10A7D0001B0B6D0D24D10193002C27D068460094EB -:10A7E000FFF702FE009C00281ED0019B20211A00CA -:10A7F000091A8A40C340224372610193019CB461EB -:10A80000631E9C4101343461002D18D0124BED18A9 -:10A8100035232D183D60181A099B18603000FEBDC5 -:10A82000802252031343D6E77461E7E701A8FFF7DC -:10A83000DBFD0124019B346173612030E4E7074BA9 -:10A84000C018074B3860E3189B00F3185869FFF7EE -:10A85000B1FD6401201ADFE7CDFBFFFFCEFBFFFF58 -:10A86000FFFFFF3F4A4370B511001400FDF7ACFC39 -:10A87000051E03D022000021FDF754FC280070BD06 -:10A8800070B50C000E25495F00F0A4F8002803DB2A -:10A89000636D1B18636570BDA389024A1340A381D1 -:10A8A000F9E7C046FFEFFFFFF8B51F008B890500F1 -:10A8B0000C001600DB0505D50E23C95E002202231D -:10A8C00000F074F8A389054A28001340A3813200E0 -:10A8D0000E23E15E3B0000F01FF8F8BDFFEFFFFF25 -:10A8E00070B50C000E25495F00F060F8A389421C8A -:10A8F00003D1054A1340A38170BD80225201134346 -:10A90000A3816065F8E7C046FFEFFFFF10B50E2397 -:10A91000C95E00F015F810BD70B505000800110003 -:10A920000022064C22601A00F7F7EAF9431C03D113 -:10A930002368002B00D02B6070BDC0463CB00208DD -:10A94000002370B5064C05000800236001F032FEBC -:10A95000431C03D12368002B00D02B6070BDC04680 -:10A960003CB00208002370B5064C05000800110039 -:10A97000236001F027FE431C03D12368002B00D085 -:10A980002B6070BD3CB00208002370B5064C05007A -:10A990000800236001F01EFE431C03D12368002B36 -:10A9A00000D02B6070BDC0463CB0020870B50500F9 -:10A9B000080011000022064C22601A0001F012FE6D -:10A9C000431C03D12368002B00D02B6070BDC04610 -:10A9D0003CB0020870B50500080011000022064CCA -:10A9E00022601A00F7F79EF9431C03D12368002B5D -:10A9F00000D02B6070BDC0463CB002088446101CDD -:10AA000062468C46191C634600E0C0461FB500F044 -:10AA1000F1FE002801D40021C8421FBD10B500F08E -:10AA200049FE4042013010BD10B500F0E3FE0028A1 -:10AA300001DB002010BD012010BDC04610B500F0A4 -:10AA4000D9FE002801DD002010BD012010BDC04648 -:10AA500010B500F06BFE002801DC002010BD0120C5 -:10AA600010BDC04610B500F061FE002801DA0020DC -:10AA700010BD012010BDC046F0B54F464646D64633 -:10AA80000C000903C0B5490A470F5E0039431F0394 -:10AA9000DB0F9C4665007B0A570F1F436D0DE40FCB -:10AAA000760DA146C000B846D200AB1B64457BD0F2 -:10AAB000002B5FDD002E00D0A4E03E00164300D145 -:10AAC00012E15E1E002E00D09EE1871A4346B84276 -:10AAD00080410125C91A4042091A0B0200D431E114 -:10AAE00049024E0A002E00D16EE13000FDF744FA13 -:10AAF0000300083B1F2B00DD61E120223900D21A40 -:10AB00009E40D1409F400E439D4200DD51E15D1BC0 -:10AB10006B1C1F2B00DD7CE12021C91A3D00300099 -:10AB20008F408840DD40791E8F4131000722284345 -:10AB3000D940002507433A40002A09D00F233B4063 -:10AB4000042B05D03B1DBB42BF417F42C9191F00EA -:10AB50000B0200D426E26A1CC64B55056D0D9A42C5 -:10AB600000D106E1C44AFF080A40530752023B43A2 -:10AB7000120B8EE0002B00D0B8E06B1C5B055B0D68 -:10AB8000012B00DC30E1871A4346B842B641CB1AAC -:10AB900076429E1B330200D54CE13B003343A1D1EA -:10ABA00000220024002570E0002B00DCE5E0002EF0 -:10ABB00000D183E0AF4EB54260D0802636043743E3 -:10ABC000B846382B00DC3EE1434613431F007A1E93 -:10ABD00097413F1887428041404209180B0200D438 -:10ABE000B0E0A44B01359D4200D1C3E0A24A7B08EE -:10ABF0000A4001210F401F435108D30707221F437A -:10AC00003A4099E79B4EB54238D080263604374308 -:10AC1000B846382B00DDDCE01F2B00DC30E11E00E5 -:10AC20004746203EF740BC46202B04D04026F31A6E -:10AC300046469E403243170063467A1E97411F43A3 -:10AC4000CCE0002B00D104E24346134300D159E18C -:10AC50004B07C00818438023C9081B03194208D0BA -:10AC60004546ED081D4204D14346D0085907084324 -:10AC70002900420FC9007F4D1143C0004B07CA088D -:10AC80007C49C00803438D4268D012036D05120B46 -:10AC90006D0D002112031800130B0A0D12051A4343 -:10ACA000764B2D0513402B435B00E4075B082343E1 -:10ACB00019001CBC90469946A246F0BD3E001643C2 -:10ACC00012D05E1E002E00D000E18718874280411E -:10ACD00041444042091801250B0233D5022585E77E -:10ACE00064463300414610001D00C7E7002D00D028 -:10ACF000DAE00C000443F3D05C1C00D19FE15D4C12 -:10AD0000A64200D12FE1DB43382B00DD66E11F2B8B -:10AD100000DD83E120240500E41A0F00DD40D94066 -:10AD2000A0404346A7405B1A441EA04198462F43CB -:10AD30003843171ABA42924143465242991A64461E -:10AD40003500CAE607223A40002A00D0F6E64B0753 -:10AD5000CA084849FF083B438D4296D11900114368 -:10AD600000D19EE1802109030A431203120B414DD9 -:10AD70008FE71500002200238BE7002B00D0C7E0EF -:10AD80006B1C5F057F0D012F00DCF1E0394DAB42FC -:10AD900000D1B9E085180A00854289414244494200 -:10ADA00051180722CF076D082F4349083A401D006C -:10ADB000C2E607223049ED1A31403A40BCE63E0077 -:10ADC0002838864000279FE63800FDF7D5F8203068 -:10ADD0008EE6434613431F007A1E9741C71BB842B5 -:10ADE00080414042091A78E60E003B0006431343B7 -:10ADF000002D61D1002E00D0F4E0002B00D11BE12A -:10AE000064463900100039E71A4FBB427AD033004C -:10AE1000FFE630001F3DE840202B03D04021CB1A35 -:10AE20009E4037437B1E9F41072207433A40002143 -:10AE3000002589E7171A4346BA42B641591A7642A5 -:10AE40008E1B64464EE61F2B00DDADE020264746F4 -:10AE5000F61AB740B9461700B246DF404E463E43A9 -:10AE600037005646B240561EB24117434246DA40BA -:10AE70008918AEE6FF070000FFFF7FFFFFFF0F808E -:10AE800020264746F61AB740B9461700B246DF40BB -:10AE90004E463E4337005646B240561EB241174317 -:10AEA0004246DA40891A99E77F4CA6425BD080245B -:10AEB00024045B42214327E7002E0CD1002B00D154 -:10AEC000CBE0644639001000774DD7E6764FBB42A1 -:10AED00018D0330075E6002B14D04B07C008184378 -:10AEE0008023C9081B03194207D0FC081C4204D167 -:10AEF0007907D0080843E14621004C46420FC900BB -:10AF00001143C000684DB9E61D0000220023C0E6D1 -:10AF1000002D5BD10D00054300D1E2E65D1C00D1A0 -:10AF2000B0E0614DAE421FD0DB43382B71DC1F2BEC -:10AF300000DD96E020250F00ED1AAF40B94607006E -:10AF4000AA46DF404D463D432F005546A840D94014 -:10AF5000451EA84188440743BF1897429241514279 -:10AF6000414435003AE6644635004146100085E626 -:10AF70000B000343002D00D063E6002BF5D04346C1 -:10AF8000134300D17AE68718874280410722414463 -:10AF9000404209183A400B0200D4D5E6434B013534 -:10AFA0001940C9E5380069E61E004746203EF740D3 -:10AFB000BC46202B04D04026F31A46469E4032431E -:10AFC000170063467A1E97411F4302E6364DAE4294 -:10AFD000CAD080252D045B422943A6E70843411EC1 -:10AFE0008841A6E6002B00D148E6871A4346B842BE -:10AFF000B641CB1A76429E1B33024BD5171A4346F5 -:10B00000BA429241591A5242891A072264463A407A -:10B0100092E501430F00791E8F419DE71C000F0050 -:10B02000203CE740202B03D04024E31A99400843FA -:10B03000411E884138437CE60022002425E6171A89 -:10B040004346BA429241591A5242891A644635001F -:10B0500043E541461000144D10E6802200241203FF -:10B0600080E61D000F00203DEF40BC46202B03D0A2 -:10B070004025EB1A9940084307006346781E874134 -:10B080001F4369E7871897429B4141445B42C918B7 -:10B090003500A3E53B003343CED0072231003A40D0 -:10B0A00052E600231A00F4E5FF070000FFFF7FFFD0 -:10B0B000F0B55746DE464E464546E0B583460700A6 -:10B0C0000E03480085B092461C00360B400DCD0F94 -:10B0D000002800D19DE0954B984239D08023F6009E -:10B0E0001B041E43924A7B0F334399469446030048 -:10B0F0006344009300230026FF00029323031B0BED -:10B1000098466300E40F52465B0D019400D1B3E012 -:10B1100086498B4200D19EE04246D1008022120433 -:10B120000A435146490F11438B46814952468C468A -:10B1300000996344CB1A0021D20000932B00634096 -:10B140009A460F2E00D905E17A4BB6009B599F46CF -:10B150005B463343994600D0B8E002230826002717 -:10B1600000900293CAE7CB463A0002990195019BF1 -:10B170009A46022927D0032900D180E2012944D030 -:10B180006D49009B8C4663441C00002C38DD53073E -:10B1900000D013E2D2085B46DB0109D55946674B64 -:10B1A00019408B468021C9008C46009B63441C00DB -:10B1B000634B9C4207DC5B4664055F075B021743F9 -:10B1C0001B0B620D02E000230027584A00211B03DD -:10B1D0001C0B0B0D1B05234314055A4A3800134062 -:10B1E0001C4353466400DB0764081C43210005B080 -:10B1F0003CBC90469946A246AB46F0BD0122524265 -:10B2000001231B1B382B00DCADE1002200230027AB -:10B21000DCE75B46334399465ED0002E00D18AE1DD -:10B220003000FCF7A9FE03000B3B1C2B00DD7BE18B -:10B230001D22D31A5A460100DA4008398E40130005 -:10B240005F46334399468F403F4B00261B1A0093BD -:10B250000023029352E7414653460B433B499B462A -:10B260008C46009B634400935B46002B3BD102233A -:10B2700000221E43022161E7434613439B4637D019 -:10B280004346002B00D162E14046FCF775FE030007 -:10B290000B3B1C2B00DD53E102004146083A914074 -:10B2A00088461D21CB1A5146D9400B0041460B431D -:10B2B0009B46534693401A00009B25499C46604498 -:10B2C00003008C4663440093002137E70323B14613 -:10B2D00000900C26029311E700230093013304260B -:10B2E000002702930AE70323C3461E43032125E7F1 -:10B2F00001331E430022012120E700239A468023C8 -:10B3000000271B03094A61E7802349461B031942B2 -:10B3100000D1E2E05946194200D0DEE00B431B03A6 -:10B3200017001B0BA246014A50E7C046FF0700006A -:10B3300001FCFFFF34E10D10FF030000FFFFFFFEE3 -:10B34000FE070000FFFF0F800DFCFFFF01F8FFFF6D -:10B35000F3030000D94500D9CBE000D1C6E03C00A2 -:10B3600048460027009B013B00935B46160E1B02DC -:10B370001E431302984633041B0C9946310C01916D -:10B38000FCF7FEFB4A4642430B04210C050019431F -:10B390008A4207D98919013D8E4203D88A4201D9D0 -:10B3A000851E8919881A0199FCF7EAFB09048C4665 -:10B3B0004A46210464464243090C030021438A4261 -:10B3C00004D98919013B8E4200D8F1E02D041D43B8 -:10B3D000AB464346891A4246280C12041D0C5B46B4 -:10B3E000140C22001B041B0C5A4303946B4344436C -:10B3F000029568431B19150CEB189C4203D9802455 -:10B400006402A44660441C0C15041B042D0C201877 -:10B410005D19814277D373D00C1AA24A7D1BAF42CB -:10B42000BF419446009B7F426344E01B1C00864260 -:10B4300000D1DBE00199FCF7A3FB4A4642430B0431 -:10B44000290C070019438A4207D98919013F8E4206 -:10B4500003D88A4201D9871E8919881A0199FCF7F5 -:10B460008FFB09044A46894629044D464243090C8C -:10B47000030029438A4207D98919013B8E4203D828 -:10B480008A4201D9831E89193F04891A3A00039F11 -:10B490001A43380013041B0C584381460298150CBC -:10B4A0006F43434345434846000C8446DB196344DD -:10B4B0009F4203D9802040028446654448461F0CC1 -:10B4C00000041B04000C7D191818A94200D284E066 -:10B4D00000D17FE001231A4357E680234A461B032D -:10B4E00013431B031B0BAA466F4A6FE6BA4200D9EF -:10B4F00035E74B46DC0758087B081C43FF0734E759 -:10B500000024AF4289D247444745A4415B46644288 -:10B51000A4196418013BA6421ED2A0426DD800D1E6 -:10B52000B6E0241A9B4678E703005A46283B9A4027 -:10B530000027914688E65846FCF71EFD203072E64B -:10B5400003005246283B9A4093460022B4E65046F8 -:10B55000FCF712FD20309AE6A642E2D1B845DCD9CC -:10B56000341A9B4659E71F2B65DC504C0099A446C2 -:10B570005C46614408008C4011008240D940501E56 -:10B5800082410C4314435A46DA401300620709D043 -:10B590000F222240042A05D02200141D9442894122 -:10B5A00049425B181A0262D50122002300270DE6EA -:10B5B0008A4200D80AE7831E891907E70F23134040 -:10B5C000042B00D1E6E5171D9742924153429B445C -:10B5D000FA08E0E5002800D1D7E57118531EB14202 -:10B5E00027D3A94215D358D01A0073E7002B00DCEB -:10B5F00004E6012300229B44CDE50223474447454E -:10B6000089415B429C46494289190C19E344241A3A -:10B6100003E743465F0047459B41B8465B429E199E -:10B62000023A8919A94200D054E7404500D051E7B9 -:10B63000ABE51A00F6E71F215F4649420C1BE740C5 -:10B64000202B07D01A49009B8C46634418005B46A8 -:10B6500083401A43501E82413A4307270023174074 -:10B6600009D00F21002311401400042995D1220094 -:10B670005F075B021B0BD20817430022A6E580235D -:10B6800059461B030B431B0317001B0B064A9DE582 -:10B69000BD42B2D89B460024BFE68045B9D31A000C -:10B6A000C3E7C046FF030000FF0700001E040000C0 -:10B6B0003E040000F0B54F464646D6468446C0B527 -:10B6C0008046194E18030F034D00000B5C008246A4 -:10B6D0003F0B6D0DC90F9146640DDB0F0120B54284 -:10B6E0000AD0B44203D0A54201D157450CD01CBCAE -:10B6F00090469946A246F0BD66463E43F7D1AC421D -:10B70000F5D154461443F2D10120C845EFD19942F6 -:10B7100007D0002DEBD163461F433800471EB841C8 -:10B72000E5E70020E3E7C046FF070000F0B54F461D -:10B730004646D6464D00C0B50E03C90F8A462C4971 -:10B740001F035C008046360B6D0D91463F0B640D68 -:10B75000DB0F8D421ED08C4216D0002D1ED13043FF -:10B760008446002C01D13A4323D06246002A1AD0E5 -:10B770009A4529D0514602200139084001381CBCA5 -:10B7800090469946A246F0BD39001143E5D002200B -:10B790004042F4E73043FAD1AC420FD0002C0FD135 -:10B7A0003A43E7D00CE00122013B934318000130FB -:10B7B000E5E763460020002BE1D0DBE73A43E6D122 -:10B7C0009A45D7D1A542D5DCA54205DBBE42D1D8EA -:10B7D00008D00020BE42D2D25046012301389843FF -:10B7E0000130CCE7C845C5D80020C845F4D3C6E72A -:10B7F000FF070000F0B54F464646D6464D00C0B59F -:10B800000E03C90F8A462E491F035C008046360B83 -:10B810006D0D91463F0B640DDB0F8D4218D08C42AD -:10B8200011D0002D18D130438446002C1ED13A434C -:10B830001CD163460020002B30D051460220013934 -:10B84000084001382AE039001143EAD0022025E0FF -:10B850003043FBD1AC4226D0002C26D13A4324D130 -:10B860005146022001390840013817E06246002A9B -:10B870000FD09A45E1D1A54205DBBE42DDD819D0F3 -:10B880000020BE420AD250460123013898430130BD -:10B8900004E00122013B9343180001301CBC904698 -:10B8A0009946A246F0BD3A43D0D19A45C5D1A542AA -:10B8B000C3DCE0E7C845C0D80020C845E3D3EDE7C6 -:10B8C000FF070000F0B55746DE464E464546E0B558 -:10B8D000834606000F03480087B092461D003F0BC9 -:10B8E000400DCC0F002800D16FE0DE4B984238D0DD -:10B8F0008023FF001B041F43730F3B430193DA4B6C -:10B900000027994600239B46F60081442B036900DB -:10B910001B0B52469846490DED0F002900D185E0DA -:10B92000D04B994200D173E04346DA0080231B04D8 -:10B9300013435246CC48520F8446134352460020CC -:10B940006144D20089442100694000918C46012164 -:10B9500049448A460F2F00D990E0C449BF00CF590F -:10B96000BF465B463B43019300D06AE102230827B0 -:10B97000002681469B46C9E732005846019B614636 -:10B980000091022800D175E0032800D1FEE10128D2 -:10B9900000D02CE100230027002600253F032A0DBC -:10B9A0003F0BB34812053A4302401B051343009A6C -:10B9B0005B00D1075B080B433000190007B03CBCAB -:10B9C00090469946A246AB46F0BD5B463B43019389 -:10B9D00000D12FE1002F00D1A5E13800FCF7CCFA0F -:10B9E00003000B3B1C2B00DD96E11D22D31A5A46A7 -:10B9F0000100DA405E4608398F4013008E403B4319 -:10BA000001939C4B00271B1A994600239B467DE718 -:10BA1000414653460B4393498C46E144002B00D0EA -:10BA20001AE102220220174300228CE7134300D1BF -:10BA30000DE14346002B00D181E14046FCF79CFA22 -:10BA400002000B3A1C2A00DD72E10100434608396E -:10BA50008B4098461D239A1A5346D3401A004346FA -:10BA6000134352468A404946081A8249894681440E -:10BA7000002068E77B4B002700268EE7140C120499 -:10BA8000120C1100370C3604350C794328008C4613 -:10BA90002E0060436044834656432100300C8046AC -:10BAA0005846794340440291844506D9884680210E -:10BAB00049028C46E044414602913604010C360CA2 -:10BAC00000048B4681191E0C1B041B0C03911900EA -:10BAD00079438C46280075436544A8465843050CB5 -:10BAE00045447743A94203D9802149028C466744E3 -:10BAF000290C8C4639000004000C2D042D186144DB -:10BB0000AB4405915946049101990F043F0C080C70 -:10BB1000390051434243904602008C46090C8B4643 -:10BB200062437C4344445C44A04503D980214902DC -:10BB300088464244210C884661460904090C8C461B -:10BB400039005943434370437E430F0CF6182404D5 -:10BB5000BE19644442448C46B34203D980235B023D -:10BB600098464044029B61469846049B37044344F0 -:10BB70009B46AB45AD416B420D0405992D0C8C469F -:10BB80007F196744FD18A8465D462D19A542A441BA -:10BB900093466442A446C344DC448F42BF41984567 -:10BBA0009B4193459241A445A4415B427F421F4380 -:10BBB000360C52426442BF192243BF1862463818FD -:10BBC0004302D20D039913436A020A43501E824175 -:10BBD0006146ED0D2A434E023243D90100D4B3E051 -:10BBE0000126500832400243DE0732435B08224CF4 -:10BBF0005444002C62DD510709D00F201040042866 -:10BC000005D0101D9042924152429B180200D9016A -:10BC100004D580241948E400034054441848844261 -:10BC200000DD27E75E075B02D2081F0B63051643A2 -:10BC30005B0DB2E6002399460133042700269B469C -:10BC400064E60323019781460C279B465EE60122AA -:10BC500001201743002276E6032303201F434346B7 -:10BC600071E6C046FF07000001FCFFFF74E10D1004 -:10BC7000FFFF0F800DFCFFFFFF030000FFFFFFFE33 -:10BC8000FE0700000023802700933F030026434B5C -:10BC900083E6019B3200A446584670E6AC466EE649 -:10BCA000802701993F0339422DD03B422BD11F43BE -:10BCB0003F033F0B00951600384B6EE601252D1B08 -:10BCC000382D00DD66E61F2D40DC35481C00504451 -:10BCD000160082408440EE40501E8241344314439B -:10BCE000EB40620709D00F222240042A05D022002F -:10BCF000141D9442804140421B181A023ED5012374 -:10BD00000027002649E68027019B3F031F433F038E -:10BD10003F0B0094214B40E603005A46283B9A40D3 -:10BD2000002601926DE65846FCF726F9203057E6CA -:10BD300003005246283B9A401300002293E65046E7 -:10BD4000FCF71AF920307BE6CA4650E71F201E0098 -:10BD50004042041BE640202D03D0124C5444A34023 -:10BD60001A43501E8241324307260027164009D04D -:10BD70000F200023104014000428B9D122005E07D0 -:10BD80005B021F0BD2081643002306E680273F0301 -:10BD90001F433F033F0B1600004BFEE5FF0700006B -:10BDA0001E0400003E040000F8B557464E464546C6 -:10BDB000DE460C000903E0B5490A460F5F00314337 -:10BDC0001E03DB0F760A9B46530F3343C84E6500B4 -:10BDD000C000E40FD2006D0DA24681467F0D9C4647 -:10BDE0009046B74200D1B9E05B46012673409B46BE -:10BDF000EE1BA34500D183E0002E63DD002F00D0B1 -:10BE0000B1E06346134300D123E1731E002B00D041 -:10BE1000BAE1861A6346B04280410125C91A404200 -:10BE2000091A0B0200D447E149024B0A98464346DF -:10BE3000002B00D189E14046FCF79EF80300083B47 -:10BE40001F2B00DD7CE120223000D21A4146D04079 -:10BE5000994002009E400A439D4200DD6AE15D1B5D -:10BE60006B1C1F2B00DD94E1202110003500C91A46 -:10BE70008E40DA408840DD40711E8E41110007225D -:10BE80002843002506433240002A09D00F233340BF -:10BE9000042B05D0331DB342B641764289191E00EA -:10BEA0000B0200D43DE26A1C914B55056D0D9A4280 -:10BEB00000D119E18F4AF6080A405707520237436A -:10BEC000120B9BE0002E00D0C5E06E1C7605760DAF -:10BED000012E00DC48E16746861ACB1BB042BF4109 -:10BEE0007F42B8461F004346FF1A3B00B8461B027C -:10BEF00000D55FE137439AD100220024002579E084 -:10BF0000002E00DCFAE0002F00D18DE0784B9D423E -:10BF100067D0802367461B041F43BC46382E00DCD5 -:10BF200052E1634613435A1E93411E1886428041D4 -:10BF3000404209180B0200D4BEE06D4B01359D4212 -:10BF400000D1D2E06B4A73080A4001210E401E4323 -:10BF50005108D30707221E43324095E71E001643BF -:10BF600000D045E740E7624B9D423AD080236746C8 -:10BF70001B041F43BC46382E00DDEBE01F2E00DC07 -:10BF80003AE133006746203BDF403B00202E05D0DE -:10BF90004027BF1B6646BE40324390464646721E4F -:10BFA00096413343DAE0002B00D114E26346134399 -:10BFB00000D168E180234E07C008C9081B0306436F -:10BFC000194208D06046C008184204D163460100F7 -:10BFD000D2085E071643F3009946C900720F444D1C -:10BFE00011434B46DE08424B4F073743CA089D4278 -:10BFF00000D16EE012036D05120B6D0D00211203CE -:10C00000130B0A0D12051A433B4B2D0513402B430E -:10C010005B00E4075B082343380019003CBC9046F2 -:10C020009946A246AB46F8BD6346134311D0731E32 -:10C03000002B00D007E186188642804161444042CF -:10C04000091801250B0237D502257BE73E00614622 -:10C0500091463500C5E75C46002D00D0E1E00B00BD -:10C060000343F3D0731C00D1ACE1214B9F4200D1BC -:10C070003AE1F343382B00DD6FE11F2B00DD8CE14B -:10C0800020250E00ED1AAE40B0460600AA46DE405E -:10C09000454635432E005546D940A8406346451EC7 -:10C0A000A8415B1A9C463043161AB242924163463D -:10C0B0005242991A3D00B4E607223240002A00D0CD -:10C0C000E4E60B4BF6084F073743CA089D4200D001 -:10C0D00090E73B00134300D1A6E180231B031A43E2 -:10C0E0001203120B024D89E715000022002785E795 -:10C0F000FF070000FFFF7FFFFFFF0F80002E00D033 -:10C10000C7E06B1C5E05760D012E00DCF0E0C84D2B -:10C11000AB4200D1B9E085180A00854289416244EA -:10C12000494251180722CE076D082E434908324074 -:10C130001D00A9E6BF49ED1A114007223240A3E6CF -:10C14000320028388240002686E63000FBF714FFD4 -:10C15000203073E6634613435A1E9341C61AB04219 -:10C1600080414042091A5CE60E00674606431743C9 -:10C17000002D5ED1002E00D0F3E0002F00D11EE193 -:10C180005C46614691462CE7A94FBE427BD01E001B -:10C19000F1E610001F3DE840202B03D04021CB1AD0 -:10C1A0009A401643731E9E410722064332400021E7 -:10C1B000002583E7161A6346B2428041591A40426D -:10C1C0000B1A98465C4632E61F2E00DDABE02027B6 -:10C1D000BB1B9A4663465746BB40994613004F46E1 -:10C1E000F3401F433B005746BA40571EBA41134322 -:10C1F0006246F240891898E62027BB1B9A466346A0 -:10C200005746BB40994613004F46F3401F433B003F -:10C210005746BA40571EBA4113436246F240891A44 -:10C220009CE7834B9F425FD080252D0473422943B6 -:10C2300020E7002E0CD1002F00D1D0E05C466146F3 -:10C2400091467B4DCDE67A4FBE421CD01E0065E67E -:10C25000002F18D0C0084E0706438020C9080003ED -:10C26000014208D06346DC08044204D12100DA46CA -:10C27000D2085E071643F300994601245346C900CD -:10C28000720F11431C406A4DABE61D0000220027CF -:10C29000B4E6002D59D10B00034300D1D6E6731C40 -:10C2A00000D1B2E0624B9F421ED0F343382B6FDCCB -:10C2B0001F2B00DD97E020250E00ED1AAE40B046A2 -:10C2C0000600AA46DE40454635432E005546A840A6 -:10C2D000D940451EA8418C440643B6189642924167 -:10C2E000514261443D0025E63D006146914678E6B5 -:10C2F0000B000343002D00D055E6002BF5D063461C -:10C30000134300D16DE68618864280416144404265 -:10C31000091800220B0200D4D0E6464B0135194023 -:10C32000B2E5B1465DE633006746203BDF403B00A7 -:10C33000202E05D04027BF1B6646BE4032439046A4 -:10C340004646721E96413343EFE5394B9F42CBD0B0 -:10C3500080252D0473422943A8E70843411E8841E4 -:10C36000A2E6002F00D13CE66346861ACF1AB042FF -:10C370009B415B42FB1A98461B024ED5161A634638 -:10C38000B2429241591A5242891A5C4600227BE518 -:10C3900001430E00711E8E419FE71D000E00203DDF -:10C3A000EE40B046202B04D04025EB1A99400843BC -:10C3B000814648464346411E8841184374E60022A0 -:10C3C000002417E6161A6346B2429241591A5242A5 -:10C3D000891A3D0025E561469146154D01E680220A -:10C3E0000024120379E61D000E00203DEE40B04609 -:10C3F000202B04D04025EB1A9940084381464E4635 -:10C400004346711E8E411E4367E7861896429B4144 -:10C4100061445B42C9183D008CE547463743CED0A6 -:10C4200007224146324049E600273A00E6E5C04689 -:10C43000FF070000FFFF7FFF70B50C4E0D031C03CC -:10C4400049005B002D0B490D240B5B0DB14208D058 -:10C45000064900208B4203D114432000441EA04112 -:10C4600070BD05430120002DFAD1F1E7FF07000060 -:10C4700030B5144D0A034B00120B5B0DC90F00249D -:10C48000AB4211DD104CA34210DC80246403224334 -:10C490000E4CE41A1F2C0CDD0D48C31ADA401300B1 -:10C4A0005C42002900D11C00200030BD094BCC1893 -:10C4B000FAE7094DE040AC4663449A401300034359 -:10C4C000EEE7C046FE0300001D0400003304000038 -:10C4D00013040000FFFFFF7FEDFBFFFF70B5002896 -:10C4E0002DD0C317C5185D40C40F2800FBF744FDCD -:10C4F000154B1B1A5B055B0D0A2815DD0B388540B3 -:10C5000000222D032D0B002110002D030A0D2D0BF1 -:10C5100012052A430D4D1B052A4013435B00E40717 -:10C520005B082343190070BD0200290015329140B9 -:10C530000A000B21081AC5402D032D0BE3E7002448 -:10C54000002300250022DEE71E040000FFFF0F800D -:10C5500010B5041E25D0FBF70FFD144B1B1A5B050D -:10C560005B0D0A2812DD0B38844000222403240BC3 -:10C570000021100024030A0D240B120522430C4C49 -:10C580001B05224013435B00590810BD0200210027 -:10C59000153291400A000B21081AC4402403240BD1 -:10C5A000E6E7002300240022E2E7C0461E04000064 -:10C5B000FFFF0F8058220120014B40421A60704754 -:10C5C0003CB0020858220120014B40421A607047DB -:10C5D0003CB002085822024B00201A607047C04647 -:10C5E0003CB0020858220120014B40421A607047BB -:10C5F0003CB00208044A1368002B00D1034B181802 -:10C60000106018007047C046DCAD02080000020848 -:10C61000F8B5C046F8BC08BC9E467047F8B5C046A1 -:10C62000F8BC08BC9E46704701B40248844601BC71 -:10C63000604700BFEFA3020801B40248844601BC72 -:10C64000604700BF01A7020801B40248844601BC4C -:10C65000604700BF1DA5020801B40248844601BC22 -:10C66000604700BF03A702080000000007000103A5 -:10C6700000000100030300003F00010300000F0061 -:10C68000C0102040030300004000010300000F0021 -:10C6900000112040030300003F00010300000F00D1 -:10C6A00040112040030300007F00010300000F0041 -:10C6B00080112040000300000F00010300000F0064 -:10C6C00040122040030300003F00010300000F0060 -:10C6D00080122040000300000F00010300000F0043 -:10C6E00000162040000300000F00010300000F00AF -:10C6F00040162040000300000F00010300000F005F -:10C7000080162040000300000F00010300000F000E -:10C7100000172040000300007F00010300000F000D -:10C7200040002040030300007F00010300000F00D1 -:10C73000C0002040030300007F00010300000F0041 -:10C7400000012040030300007F00010300000F00F0 -:10C7500080012040000001400900000300000F009C -:10C76000010300000F000000004101401300070713 -:10C7700000007F0080222440010301000000070721 -:10C78000000003000021244001030100010007070D -:10C7900000000300C020244001030100020007073D -:10C7A00000000F0080202440010301000500050562 -:10C7B00000017E0040202440010301000600030325 -:10C7C00000017E0000202440010301000CC000078E -:10C7D00000000F0000222440010301000D000101B0 -:10C7E0000001700040222440010301000E000303F9 -:10C7F00000000100C0212440010301000FC0070711 -:10C8000000000F00802124400103010010000303F9 -:10C810000000040040212440010301000CDF000758 -:10C8200000000F00402224400103010070726F7667 -:10C830005F726571007265736F7572636573004234 -:10C840004F4F5400555047524144450073697A6533 -:10C85000006C61756E6368006D6F6E6F746F6E69EA -:10C860006300656E637279707400656E63727970CF -:10C87000745F6B65795F6964006261636B757000FA -:10C88000626F6F745F617574680075706772616460 -:10C89000655F6175746800736D69665F69640072D5 -:10C8A0006570726F6772616D00737461727400728B -:10C8B0006570726F766973696F6E00626F6F745F17 -:10C8C0006C6F61646572006B6579735F616E645F44 -:10C8D000706F6C6963696573006D307000706572AC -:10C8E0006D697373696F6E00636F6E74726F6C0045 -:10C8F0006B6579006D340073797374656D007379BD -:10C900007363616C6C006D6D696F00726D610064C2 -:10C91000657374726F795F667573657300646573B0 -:10C9200074726F795F666C617368007072657365AD -:10C930006E74006669726D7761726500636572740A -:10C9400069666963617465006F70656E0064697320 -:10C9500061626C656400656E61626C656400616C47 -:10C960006C6F77656400646562756700776F756EDC -:10C9700064696E6700626F6F745F7570677261647F -:10C98000650074797065006172726179006974651F -:10C990006D73006E756D62657200696E74656765B2 -:10C9A0007200626F6F6C65616E00737472696E679E -:10C9B000006D6178696D756D006D696E696D756D7D -:10C9C000007065726970686572616C730062617392 -:10C9D000655F61646472657373006D656D6F726924 -:10C9E000657300776F726B666C6173680073666C59 -:10C9F000617368007372616D00736F667477617242 -:10CA000065006361706162696C69747900464C41CC -:10CA100053485F5043315F53504D00464C4153489B -:10CA20005F50433200464C4153485F504333004609 -:10CA30004C4153485F50433400464C4153485F4D8E -:10CA400041494E5F434F444500464C4153485F4D7A -:10CA500041494E5F584F00464C4153485F4D414954 -:10CA60004E5F4441544100464C4153485F5355503A -:10CA700045525649534F525900464C4153485F570F -:10CA80004F524B5F53454355524500464C41534826 -:10CA90005F574F524B005352414D5F5043305F50F0 -:10CAA000524956005352414D5F5043305F505542FA -:10CAB000005352414D5F53504D5F50524956005301 -:10CAC00052414D5F53504D5F505542005352414DBE -:10CAD0005F5043315F50524956005352414D5F50B1 -:10CAE00043325F50524956005352414D5F504333D9 -:10CAF0005F50524956005352414D5F5043345F508E -:10CB0000524956005352414D5F4D41494E005352D8 -:10CB1000414D5F44415000534D49465F434F4445AA -:10CB200000534D49465F584F00534D49465F4441BD -:10CB30005441000000002140000025400000014059 -:10CB4000000034400000244000003140000032402A -:10CB500000001F41000023400000114001010101BD -:10CB60000101010101101010800019005500F000B2 -:10CB70000501053B04101C01010000000FC000006E -:10CB80000004000001010101011D3A5778960008D8 -:10CB90002000101208000000001F00000010000F0D -:10CBA000002000023F06080E00080009000A000BE2 -:10CBB00024282C30340000001000000090000000F9 -:10CBC00088000000080000008000000004F0000061 -:10CBD00000F00000400200002005A000D00100018C -:10CBE0008001A0012000000010000000433A5C47D3 -:10CBF00069744C61622D52756E6E65725C62756906 -:10CC00006C64735C32643334316331325C305C7237 -:10CC100065706F5C6379626F6F746C6F616465726D -:10CC20005C70736F633670646C5C64726976657295 -:10CC3000735C696E636C7564652F63795F6970639B -:10CC40005F6472762E6800433A2F4769744C6162C4 -:10CC50002D52756E6E65722F6275696C64732F321A -:10CC6000643334316331322F302F7265706F2F632C -:10CC700079626F6F746C6F616465722F70736F632C -:10CC80003670646C2F647269766572732F736F757A -:10CC90007263652F63795F6770696F2E6300433A33 -:10CCA0005C4769744C61622D52756E6E65725C6290 -:10CCB00075696C64735C32643334316331325C3077 -:10CCC0005C7265706F5C6379626F6F746C6F6164C6 -:10CCD00065725C70736F633670646C5C64726976E5 -:10CCE0006572735C696E636C7564652F63795F67E9 -:10CCF00070696F2E6800433A2F4769744C61622D4A -:10CD000052756E6E65722F6275696C64732F326432 -:10CD10003334316331322F302F7265706F2F637966 -:10CD2000626F6F746C6F616465722F70736F6336BE -:10CD300070646C2F647269766572732F736F75728D -:10CD400063652F63795F6970635F6472762E630039 -:10CD5000433A2F4769744C61622D52756E6E65724D -:10CD60002F6275696C64732F3264333431633132EE -:10CD70002F302F7265706F2F6379626F6F746C6FD5 -:10CD8000616465722F70736F633670646C2F6472A8 -:10CD900069766572732F736F757263652F63795F40 -:10CDA0006970635F706970652E6300433A2F47694D -:10CDB000744C61622D52756E6E65722F6275696C6E -:10CDC00064732F32643334316331322F302F726504 -:10CDD000706F2F6379626F6F746C6F616465722F0F -:10CDE00070736F633670646C2F64726976657273EA -:10CDF0002F736F757263652F63795F70726F742E16 -:10CE00006300433A2F4769744C61622D52756E6E10 -:10CE100065722F6275696C64732F326433343163C9 -:10CE200031322F302F7265706F2F6379626F6F749C -:10CE30006C6F616465722F70736F633670646C2FF2 -:10CE4000647269766572732F736F757263652F6391 -:10CE5000795F7363625F756172742E6300433A2F6A -:10CE60004769744C61622D52756E6E65722F6275E2 -:10CE7000696C64732F32643334316331322F302F55 -:10CE80007265706F2F6379626F6F746C6F61646528 -:10CE9000722F70736F633670646C2F64726976657D -:10CEA00072732F736F757263652F63795F736D692A -:10CEB000662E6300010010008000E80310000001EE -:10CEC000A00F00FA433A2F4769744C61622D5275E6 -:10CED0006E6E65722F6275696C64732F32643334C1 -:10CEE000316331322F302F7265706F2F6379626F2B -:10CEF0006F746C6F616465722F70736F63367064EA -:10CF00006C2F647269766572732F736F75726365C7 -:10CF10002F63795F736D69665F6D656D736C6F7498 -:10CF20002E6300433A2F4769744C61622D52756E2F -:10CF30006E65722F6275696C64732F32643334319D -:10CF40006331322F302F7265706F2F6379626F6F8C -:10CF5000746C6F616465722F70736F633670646C8C -:10CF60002F647269766572732F736F757263652FA4 -:10CF700063795F737973636C6B2E6300433A2F4759 -:10CF800069744C61622D52756E6E65722F6275699F -:10CF90006C64732F32643334316331322F302F722B -:10CFA00065706F2F6379626F6F746C6F6164657207 -:10CFB0002F70736F633670646C2F6472697665725C -:10CFC000732F736F757263652F63795F73797369FC -:10CFD0006E742E6300433A2F4769744C61622D5280 -:10CFE000756E6E65722F6275696C64732F3264336F -:10CFF00034316331322F302F7265706F2F63796255 -:10D000006F6F746C6F616465722F70736F633670CD -:10D01000646C2F647269766572732F736F757263B7 -:10D02000652F63795F737973706D2E6300433A2FB8 -:10D030004769744C61622D52756E6E65722F627510 -:10D04000696C64732F32643334316331322F302F83 -:10D050007265706F2F6379626F6F746C6F61646556 -:10D06000722F70736F633670646C2F6465766963BA -:10D0700065732F70736F63362F737461727475707C -:10D080002F73797374656D5F70736F63365F636D53 -:10D0900030706C75732E6300010000000600000004 -:10D0A000120000000000000000000000000000006E -:10D0B0000000000000000000000000000000000070 -:10D0C0000000000000000000000000005B4552521C -:10D0D0005D20546865726520697320616E206572F9 -:10D0E000726F72206F63637572726564206475720B -:10D0F000696E6720626F6F746C6F61646572206621 -:10D100006C6F772E204D43552073746F707065647B -:10D110002E0A0D005B4552525D204572726F7220DF -:10D120002578207768696C6520656E61626C696E30 -:10D130006720434D342061636365737320706F72A1 -:10D14000740A0D005B494E465D2054455354204DF2 -:10D150004F44450A0D0000000300000001000000DC -:10D160000100000000000000050360000400000052 -:10D170000100000000000000010000000604600043 -:10D18000080000001CC0020879520D1050534F4394 -:10D19000365F464C415348005B494E465D20200AAD -:10D1A0000D005B494E465D202F2A2A2A2A2A2A2A68 -:10D1B0002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2ACF -:10D1C0002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2ABF -:10D1D0002A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2FAA -:10D1E0000A0D005B494E465D202050536F433620A8 -:10D1F0004379426F6F746C6F616465722041707027 -:10D200006C69636174696F6E2025752E25752E25F6 -:10D21000752E2575200A0D005B494E465D2053741E -:10D22000617274696E6720626F6F746C6F616465A0 -:10D23000720A0D005B4552525D20506F6C69637934 -:10D2400020636F6E7461696E7320616E20696E6316 -:10D250006F727265637420736D69665F6964203DE7 -:10D260002025692C2069676E6F7265640A0D005B6A -:10D270004552525D204170706C79696E6720707202 -:10D280006F74656374696F6E2073657474696E671B -:10D2900073206661696C6564207769746820636FC8 -:10D2A00064652025690A0D005B4552525D20534D8F -:10D2B000494620626C6F636B206661696C6564200F -:10D2C000746F20737461727420776974682065725A -:10D2D000726F7220636F64652025690A0D005B49D7 -:10D2E0004E465D20534D4946204D656D6F72792F36 -:10D2F000584950204D6F64650A0D005B494E465DEC -:10D3000020736D69665F696420697320736574209A -:10D31000746F20302C20627574205550475241475D -:10D320004520736C6F74207374617274732066721D -:10D330006F6D20534D49462061726561203078251C -:10D3400030386C782E205570677261646520667580 -:10D350006E6374696F6E616C69747920646973615E -:10D36000626C65642E0A0D005B494E465D2050726A -:10D370006F63657373696E6720617661696C616262 -:10D380006C6520696D616765730A0D005B455252DB -:10D390005D20556E61626C6520746F2066696E64F5 -:10D3A00020626F6F7461626C6520696D6167650AE8 -:10D3B0000D005B494E465D204A756D70696E6720B1 -:10D3C000746F2074686520696D61676520696E20DF -:10D3D000736C6F7420300A0D005B4552525D204E15 -:10D3E000657665722073686F756C6420676574205C -:10D3F000686572650A0D005B4552525D20506F6C86 -:10D400006963792070617273696E67206661696C07 -:10D410006564207769746820636F64652025690AF4 -:10D420000D0000008CD10D10E5640D10000000000F -:10D4300024D40D10D8DB0D10000000000000000007 -:10D4400007000000010000000000000000000000D4 -:10D4500008000000080000000002000000000000BA -:10D4600000000000000000000000000000000000BC -:10D4700000000000000000000B0000003F00000062 -:10D48000000000003F00000000000000010000005C -:10D490000E0000001100000000000000000000006D -:10D4A000000000000000000000000000000000007C -:10D4B000000000000000000000000000000000006C -:10D4C000010000000E00000011000000000000003C -:10D4D000000000000000000000000000000000004C -:10D4E000000000000000000000000000000000003C -:10D4F00000000000010000000E000000110000000C -:10D50000000000000000000000000000000000001B -:10D51000000000000000000000000000000000000B -:10D520000000000000000000010000000E000000EC -:10D5300011000000000000000000000000000000DA -:10D5400000000000000000000000000000000000DB -:10D5500000000000000000000000000001000000CA -:10D5600006000000110000000000000000000000A4 -:10D5700000000000000000000000000000000000AB -:10D58000000000000000000000000000000000009B -:10D590000100000006000000110000000000000073 -:10D5A000000000000000000000000000000000007B -:10D5B000000000000000000000000000000000006B -:10D5C000000000000100000000000000000000005A -:10D5D000000000000000000000000000000000004B -:10D5E000000000000000000000000000000000003B -:10D5F000000000000000000001000000000000002A -:10D60000000000000000000000000000000000001A -:10D61000000000000000000000000000000000000A -:10D6200000000000000000000000000001000000F9 -:10D63000060000001D0000000000000000000000C7 -:10D6400000000000000000000000000000000000DA -:10D6500000000000000000000000000000000000CA -:10D66000010000000A0000001D0000000000000092 -:10D6700000000000000000000000000000000000AA -:10D68000000000000000000000000000000000009A -:10D6900000000000010000000B0000001D00000061 -:10D6A000000000000000000000000000000000007A -:10D6B000000000000000000000000000000000006A -:10D6C0000000000000000000433A5C4769744C61B0 -:10D6D000622D52756E6E65725C6275696C64735C06 -:10D6E00032643334316331325C305C7265706F5C4C -:10D6F0006379626F6F746C6F616465725C70736F75 -:10D70000633670646C5C647269766572735C696EB2 -:10D71000636C7564652F63795F737973636C6B2ECB -:10D7200068000000F4010000140004010A0009056B -:10D730000800030063010000020000000300000075 -:10D740000000000000000018000080000000000041 -:10D7500020D90D106000000000000000FFFFFFFF57 -:10D760000000000000000000000000002000000099 -:10D7700000000000FFFFFFFF0000000000000000AD -:10D78000000000000200000000000000FFFFFFFF9B -:10D79000000000000000000000000000EB0000009E -:10D7A000000200000100000002000000080000006C -:10D7B000020000003500000000000000FFFFFFFF36 -:10D7C0000000000000000000000000000500000054 -:10D7D00000000000FFFFFFFF00000000000000004D -:10D7E000000000000400000000000000FFFFFFFF39 -:10D7F0000000000000000000000000000600000023 -:10D8000000000000FFFFFFFF00000000000000001C -:10D81000000000000100000000000000FFFFFFFF0B -:10D8200000000000000000000000000001000000F7 -:10D8300003000000000000000000001800000001CC -:10D84000000000006CD90D10600000000000000016 -:10D85000FFFFFFFF000000000000000000000000CC -:10D860002000000000000000FFFFFFFF000000009C -:10D87000000000000000000038000000000200006E -:10D88000FFFFFFFF02000000000000000200000098 -:10D89000EB00000000020000010000000200000098 -:10D8A000040000000200000035000000000000003D -:10D8B000FFFFFFFF0000000000000000000000006C -:10D8C0000500000000000000FFFFFFFF0000000057 -:10D8D0000000000000000000040000000000000044 -:10D8E000FFFFFFFF0000000000000000000000003C -:10D8F0000600000000000000FFFFFFFF0000000026 -:10D900000000000000000000010000000000000016 -:10D91000FFFFFFFF0000000000000000000000000B -:10D9200003000000000080009CD70D10FCD70D10F4 -:10D93000E4D70D106CD70D100010000054D70D1057 -:10D9400084D70D1000010000CCD70D10B4D70D10F6 -:10D9500014D80D10000000000100000002000000BB -:10D9600041000000D8D60000C20100000300000002 -:10D970000000000190D80D10F0D80D10D8D80D106F -:10D9800060D80D100010000048D80D1078D80D1088 -:10D9900000010000C0D80D10A8D80D1008D90D1036 -:10D9A0000000000001000000020000008C000000E8 -:10D9B000409C0000FA000000010000005CA8020882 -:10D9C000010000001400000007008E0001000000AC -:10D9D0005B4552525D204D656D6F7279204D6F64CD -:10D9E000756C652052656164205374617475732091 -:10D9F0006661696C65642077697468206572726F0E -:10DA00007220636F64652025690A0D005B455252E0 -:10DA10005D204D656D6F7279204D6F64756C65206A -:10DA200051756164456E61626C65206661696C6503 -:10DA3000642077697468206572726F7220636F6406 -:10DA4000652025690A0D005B4552525D20534D4902 -:10DA50004620496E7465727275707420696E6974BF -:10DA600069616C697A6174696F6E206661696C6561 -:10DA7000642077697468206572726F7220636F64C6 -:10DA8000652025690A0D005B494E465D20534D49CE -:10DA90004620426C6F636B20456E61626C65640D5D -:10DAA0000A0A0D005B494E465D20534D4946204E03 -:10DAB0006F726D616C204D6F64650A0D005B45529D -:10DAC000525D20696E76616C6964206172656120C7 -:10DAD000257020286964202575290A0D005B4552B0 -:10DAE000525D206172656120257520757365206324 -:10DAF0006F756E7420756E646572666C6F770A0D53 -:10DB0000005B4552525D20496E636F7272656374AB -:10DB100020657261736520696D6167652061646469 -:10DB2000726573732030782530386C782C206967E3 -:10DB30006E6F7265640A0D005B4552525D20496E3E -:10DB4000636F7272656374207265616420696D61D0 -:10DB5000676520616464726573732030782530389E -:10DB60006C782C2069676E6F7265640A0D005B45E6 -:10DB700052525D20496E636F7272656374207772D2 -:10DB800069746520696D616765206164647265739D -:10DB9000732030782530386C782C2069676E6F726E -:10DBA00065640A0D005B4552525D20696E76616CBA -:10DBB000696420666C6173682049442025643B20B9 -:10DBC00065787065637465642025640A0D00000043 -:10DBD000000008000002000021640D104D650D10CA -:10DBE00061650D101D640D100D640D100400000022 -:10DBF00077C295F360D2EF7F3552500F2CB6798003 -:10DC0000000100FF00020001000100030103FF000A -:10DC100001047065726D0074657374004255473B72 -:10DC20002063616E27742068617070656E00726594 -:10DC300076657274005B494E465D205377617020B3 -:10DC4000747970653A2025730A0D005B494E465D74 -:10DC5000205377617020747970653A206E6F6E651D -:10DC60000A0D005B494E465D20496D616765207570 -:10DC700070677261646520736C6F7431202D3E2073 -:10DC8000736C6F74300A0D005B494E465D2045721F -:10DC90006173696E6720736C6F74300A0D005B49A5 -:10DCA0004E465D20436F7079696E6720736C6F74A8 -:10DCB000203120746F20736C6F7420303A203078DC -:10DCC000256C782062797465730A0D005B57524E9B -:10DCD0005D204661696C65642072656164696E6788 -:10DCE00020736563746F72733B20424F4F545F4DD6 -:10DCF00041585F494D475F534543544F52533D256B -:10DD000064202D20746F6F20736D616C6C3F0A0D61 -:10DD1000005B57524E5D2043616E6E6F74207570CC -:10DD200067726164653A206D6F7265207365637414 -:10DD30006F7273207468616E20616C6C6F776564BC -:10DD40000A0D005B57524E5D2043616E6E6F74206A -:10DD5000757067726164653A206E756D62657220D8 -:10DD60006F6620736563746F72732064696666659D -:10DD700072206265747765656E20736C6F74730AC8 -:10DD80000D005B57524E5D2043616E6E6F742075BF -:10DD90007067726164653A20616E20696E636F6DB1 -:10DDA00070617469626C6520736563746F7220774B -:10DDB000617320666F756E640A0D005B494E465DA7 -:10DDC00020456E637279707465640A0D005B494E7C -:10DDD000465D204E4F4E2D456E63727970746564BA -:10DDE0000A0D005B4552525D2070616E6963210A25 -:10DDF0000D005B4552525D20496D61676520696E7B -:10DE000020736C6F74202564206973206E6F7420FA -:10DE100076616C6964210A0D000000C0E0F0F8FC36 -:10DE20006E756C6C0066616C73650074727565006C -:10DE30004142434445464748494A4B4C4D4E4F505A -:10DE40005152535455565758595A61626364656626 -:10DE50006768696A6B6C6D6E6F70717273747576DA -:10DE60007778797A303132333435363738390000C3 -:10DE700088A102084300504F534958002E00232D1B -:10DE8000302B2000686C4C006566674546470049AA -:10DE90004E4600696E66004E414E006E616E003067 -:10DEA0000030313233343536373839414243444516 -:10DEB0004600303132333435363738396162636485 -:10DEC00065660000202020202020202020282828EF -:10DED0002828202020202020202020202020202032 -:10DEE000202020208810101010101010101010107A -:10DEF000101010100404040404040404040410109A -:10DF00001010101010414141414141010101010136 -:10DF100001010101010101010101010101010110E2 -:10DF2000101010101042424242424202020202020B -:10DF300002020202020202020202020202020210B3 -:10DF40001010102000000000000000000000000081 -:10DF500000000000000000000000000000000000C1 -:10DF600000000000000000000000000000000000B1 -:10DF700000000000000000000000000000000000A1 -:10DF80000000000000000000000000000000000091 -:10DF90000000000000000000000000000000000081 -:10DFA0000000000000000000000000000000000071 -:10DFB0000000000000000000000000000000000061 -:10DFC00000000000496E66696E697479004E614E0A -:10DFD0000000000000000000000000000000000041 -:10DFE0000000000000000000000000000000000031 -:10DFF0000000000000000000000000000000000021 -:10E000000000000000000000000000000000000010 -:10E010000000000000000000000000000000000000 -:10E0200000000000000000000000000000000000F0 -:10E0300000000000000000000080E03779C3414389 -:10E04000176E05B5B5B89346F5F93FE9034F384D5E -:10E05000321D30F94877825A3CBF737FDD4F15750A -:10E06000000000000000F03F00000000000024401D -:10E0700000000000000059400000000000408F40F8 -:10E08000000000000088C34000000000006AF84063 -:10E090000000000080842E4100000000D012634187 -:10E0A0000000000084D797410000000065CDCD41FD -:10E0B000000000205FA00242000000E876483742DE -:10E0C000000000A2941A6D42000040E59C30A2427C -:10E0D0000000901EC4BCD64200003426F56B0C43F1 -:10E0E0000080E03779C3414300A0D8855734764398 -:10E0F00000C84E676DC1AB43003D9160E458E143F9 -:10E10000408CB5781DAF154450EFE2D6E41A4B446D -:10E1100092D54D06CFF08044F64AE1C7022DB544B2 -:10E12000B49DD9794378EA44050000001900000045 -:10E130007D00000054B30D10C6B10D100AB20D10D1 -:10E140006EB10D100AB20D10FAB20D100AB20D1018 -:10E150006EB10D10C6B10D10C6B10D10FAB20D1092 -:10E160006EB10D1066B10D1066B10D1066B10D10D7 -:10E1700008B30D107CBA0D107EB90D107EB90D10CC -:10E180009CBC0D1078B90D1078B90D1084BC0D1021 -:10E190009CBC0D1078B90D1084BC0D1078B90D1011 -:10E1A0009CBC0D1092BC0D1092BC0D1092BC0D10B9 -:08E1B000A0BC0D1000000000EE -:08E1B8003C9CFF7F0100000008 -:10E1C00000000D1000A00208C0000000E8E10D10E2 -:08E1D000C0A00208F0060000E7 -:10E1D800ECA702085408000000C002089C010000D7 -:10E1E8000DCA0D101BCA0D1025CA0D102FCA0D100F -:10E1F80039CA0D1049CA0D1057CA0D1067CA0D103B -:10E2080079CA0D108BCA0D1096CA0D10A4CA0D102C -:10E21800B1CA0D10BFCA0D10CCCA0D10DACA0D1044 -:10E22800E8CA0D10F6CA0D1004CB0D100ECB0D1058 -:10E2380017CB0D1021CB0D1029CB0D1000093D0077 -:10E2480000127A0000093D000000D00700093D00D7 -:10E25800A00F0000040000002CD80D1038D70D10B6 -:10E26800EFBE0DD0016F00000000000000000200AA -:10E2780000000000EFBE0DD0026F00000000050096 -:10E288000000020000000000EFBE0DD0036F000088 -:10E2980000000F000010000000000000BD800D10FD -:10E2A800A9800D1088A1020800000000F4DF0D10FD -:10E2B80014E00D10D4DF0D10000000000000000075 -:10E2C8000000000000000000000000000000000046 -:10E2D8000000000000000000000000000000000036 -:10E2E8000000000000000000000000000000000026 -:10E2F8000000000000000000000000000000000016 -:10E3080000000000000000004300000000000000C2 -:10E3180000000000000000000000000000000000F5 -:10E3280000000000000000004300000000000000A2 -:10E3380000000000000000000000000000000000D5 -:10E348000000000000000000430000000000000082 -:10E3580000000000000000000000000000000000B5 -:10E368000000000000000000430000000000000062 -:10E378000000000000000000000000000000000095 -:10E388000000000000000000430000000000000042 -:10E398000000000000000000000000000000000075 -:10E3A8000000000000000000430000000000000022 -:10E3B8000000000000000000000000000000000055 -:10E3C8000000000000000000430000000000000002 -:10E3D8000000000000000000000000000000000035 -:10E3E8000000000000000000A5900D10D1800D1065 -:10E3F80000000000C3DE0D107CDE0D10A3DA0D1046 -:10E40800A3DA0D10A3DA0D10A3DA0D10A3DA0D109C -:10E41800A3DA0D10A3DA0D10A3DA0D10A3DA0D108C -:10E42800FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000F2 -:10E43800010041534349490000000000000000006A -:10E4480000000000000000000000000000000000C4 -:10E45800000041534349490000000000000000004B -:10E4680000000000000000000000000000000000A4 -:10E4780000000000E9000D10C1000D1080B230B599 -:10E48800C00020D0104B07221C682300B0331B8823 -:10E498005A43236AD31819680029FCDA3E210B4B2A -:10E4A800062519600A4B0B491960A3210A4BC900BC -:10E4B8005D500A4958505858206A12180020506078 -:10E4C8005A58002AFCDA30BDE0AD020804012640A3 -:10E4D800080126401E1F0000000026401C05000001 -:10E4E80010B54378FF2B11D100F0A2F904000320E6 -:10E4F80000F0C6F9C3685A6801231168194311600E -:10E5080011681942FCD1200000F0D2F910BDF7B50E -:10E5180000900020019100F0B3F93F4D06002B68F0 -:10E528001A005033B43214681B780419002B5AD0DF -:10E5380000F0AEF9070003281BD000F079F9374A3C -:10E54800374B0500D358002B3EDA364A01213000FC -:10E5580000F0A6F9002837D10198FFF78FFF009B3C -:10E56800002B3ED02368002BFCDB00F069F9040087 -:10E578002BE0062000F084F92B68B4331B68C01820 -:10E588000368002B02DA284C2000FEBD002000F0B2 -:10E598005FF9264B9842F6D00023254A19001268E5 -:10E5A800012000F05DF90025A842ECD1002000F020 -:10E5B8004FF91E4A1F4B904203D09D42E3D00135CC -:10E5C800F4E79D42B9D1DEE7174C032F05D10121AD -:10E5D800002000F04DF90028F9D1280000F068F972 -:10E5E800D2E7154CF1E700F023F90E4A05000121A6 -:10E5F800300000F055F9002809D1009B002B08D005 -:10E608002368002BFCDB00F01BF90400E5E7064C4F -:10E61800E3E7094CE1E7C046E0AD02080000264008 -:10E628001C05000008A80208050052000101880026 -:10E6380018A80208F049020001005000F7B56E4D15 -:10E6480004002A68536800931300B033198807231D -:10E658004B43126A9B181A68002AFCDA00F030F95A -:10E668002A681300B033198807234B43212800D0A8 -:10E6780096E0116A5B180221D8680143D960D9680D -:10E68800C9072FD508208446944460461600D968E7 -:10E69800C06F0191116888360818356807684919EC -:10E6A8000D683902FF273F040F40694689882D0A03 -:10E6B8002D0639432943D960902103684F4D09013C -:10E6C8002B400B430360136830681B18186805401B -:10E6D8002943196013686246D26F9A181268326823 -:10E6E8009B181B68444D2A681300B0331988072308 -:10E6F8004B43126A9B1800225A600423404A11694E -:10E708000B431361012C50D030BF2A681300B0337B -:10E71800198807234B43126A9B181A68002AFCDAE7 -:10E7280000F0CEF8212842D1296807220B000124E5 -:10E73800B0331B8800205A430B6AD318DD68254282 -:10E748001CD0080008300D68C06F2C4E28180568CA -:10E75800DB6835401B0C1B061B0C2B4303600B00AE -:10E76800883318680B6818180B6A0568D318DB68B3 -:10E778002E401B0E1B023343036020000B6A02214C -:10E78800D218D3688B43D3601B4B1A681300B0337D -:10E79800198807234B43126A9B1800225A60FEBD52 -:10E7A800126A9B18174ADA609CE720BFADE7002081 -:10E7B800009BFC331B698342E6D1A320124B13490B -:10E7C800134A144FC0000E681D5814680F600627BE -:10E7D8001F503E20106010483E371F501F58002F12 -:10E7E800FCDA00980D4FFC3007610E60A321C900C8 -:10E7F8005D5001201460C7E7E0AD0208FF00FFFF8D -:10E8080000ED00E024A80208000026400801264088 -:10E81800040126401E1F00001C050000AAAAAAAA7F -:10E82800FEE7024A1368002BFCDB70470001264014 -:10E8380001B40248844601BC604700BF631D0D1047 -:10E8480001B40248844601BC604700BF911E0D1008 -:10E8580001B40248844601BC604700BF71280D100E -:10E8680001B40248844601BC604700BF79250D10F9 -:10E8780001B40248844601BC604700BFFD270D1063 -:10E8880001B40248844601BC604700BF5D1E0D10FC -:10E8980001B40248844601BC604700BF79510D109D -:10E8A80001B40248844601BC604700BF81230D10B3 -:10E8B80001B40248844601BC604700BF6B1D0D10BF -:10E8C80001B40248844601BC604700BF2D480D10C2 -:10FE0000FC010000211221010000000000000000A0 -:10FE100000000D1000FE0000000001007D00000049 -:10FE20000100000000DA0F100000000000000000D8 -:10FE300000000000000000000000000000000000C2 -:10FE400000000000000000000000000000000000B2 -:10FE500000000000000000000000000000000000A2 -:10FE60000000000000000000000000000000000092 -:10FE70000000000000000000000000000000000082 -:10FE80000000000000000000000000000000000072 -:10FE90000000000000000000000000000000000062 -:10FEA0000000000000000000000000000000000052 -:10FEB0000000000000000000000000000000000042 -:10FEC0000000000000000000000000000000000032 -:10FED0000000000000000000000000000000000022 -:10FEE0000000000000000000000000000000000012 -:10FEF0000000000000000000000000000000000002 -:10FF000000000000000000000000000000000000F1 -:10FF100000000000000000000000000000000000E1 -:10FF200000000000000000000000000000000000D1 -:10FF300000000000000000000000000000000000C1 -:10FF400000000000000000000000000000000000B1 -:10FF500000000000000000000000000000000000A1 -:10FF60000000000000000000000000000000000091 -:10FF70000000000000000000000000000000000081 -:10FF80000000000000000000000000000000000071 -:10FF90000000000000000000000000000000000061 -:10FFA0000000000000000000000000000000000051 -:10FFB0000000000000000000000000000000000041 -:10FFC0000000000000000000000000000000000031 -:10FFD0000000000000000000000000000000000021 -:10FFE0000000000000000000000000000000000011 -:10FFF000000000000000000000000000000028D306 -:04000005100D4EDFAD -:00000001FF diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt deleted file mode 100644 index ddb28220334..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/CyBootloader_WithLogs/CypressBootloader_CM0p.jwt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFUzI1NiJ9.eyJjeV9wdWJfa2V5Ijp7ImNydiI6IlAtMjU2Iiwia2lkIjoiMyIsImt0eSI6IkVDIiwidXNlIjoic2lnIiwieCI6IlNiOGxUcHlfcGQzTnJVVGtoSXpnMmp6TTM3dU5xTml1dDhXQy1RdjNYTVEiLCJ5IjoiQ3R3Q2k0YXJYc2pFRDVUVm1yX3ZQbFAya2UxMzNLSzdsUDdTel9JWmlERSJ9LCJleHAiOjE1Nzc3NDMyMDAsImlhdCI6MTU2MzI4NjA3NiwiaW1hZ2VfYWRkcmVzcyI6MjY5Mjg3NDI0LCJpbWFnZV9maWxlIjoiQ3lwcmVzc0Jvb3Rsb2FkZXJfQ00wcC5oZXgiLCJpbWFnZV9oYXNoIjpbMTY3LDExNSwxMTUsNjIsNiwyMjEsMTIsMjM0LDE0MiwzNyw0NiwyNTQsMjM5LDI0OCw2MCwxNTcsOTksNCwxOTcsMTc1LDIxNiw4MCwxMDIsNDYsMTY5LDE5NiwxNzgsNTMsOTQsNDksMjMxLDIwMl0sImltYWdlX2lkIjowLCJpbWFnZV92ZXJzaW9uIjoiMS4wLjAuMTI1IiwicG9saWN5X3RlbXBsYXRlIjoiIn0.kC_8cSqHKBHl1770umc1em1ZhuwjSHKxY1TigIBjcPVd_Gnr2X4LcMGIB6biwVWWYmtONF7k87XXfpM4NqByAg \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/LICENSE b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/LICENSE deleted file mode 100644 index 7adfadddb21..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/LICENSE +++ /dev/null @@ -1,51 +0,0 @@ -Copyright (c) 2018-2019 Cypress Semiconductor Corporation - -Permissive Binary License - -Version 1.0, September 2015 - -Redistribution. Redistribution and use in binary form, without -modification, are permitted provided that the following conditions are -met: - -1) Redistributions must reproduce the above copyright notice and the - following disclaimer in the documentation and/or other materials - provided with the distribution. - -2) Unless to the extent explicitly permitted by law, no reverse - engineering, decompilation, or disassembly of this software is - permitted. - -3) Redistribution as part of a software development kit must include the - accompanying file named "DEPENDENCIES" and any dependencies listed in - that file. - -4) Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -Limited patent license. The copyright holders (and contributors) grant a -worldwide, non-exclusive, no-charge, royalty-free patent license to -make, have made, use, offer to sell, sell, import, and otherwise -transfer this software, where such license applies only to those patent -claims licensable by the copyright holders (and contributors) that are -necessarily infringed by this software. This patent license shall not -apply to any combinations that include this software. No hardware is -licensed hereunder. - -If you institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the software -itself infringes your patent(s), then your rights granted under this -license shall terminate as of the date such litigation is filed. - -DISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS." ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT -NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/cy_auth.jwt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/cy_auth.jwt deleted file mode 100644 index ce5af311fca..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/cy_auth.jwt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFUzI1NiJ9.eyJhdXRoIjp7fSwiY3lfcHViX2tleSI6eyJjcnYiOiJQLTI1NiIsImtpZCI6IjMiLCJrdHkiOiJFQyIsInVzZSI6InNpZyIsIngiOiJTYjhsVHB5X3BkM05yVVRraEl6ZzJqek0zN3VOcU5pdXQ4V0MtUXYzWE1RIiwieSI6IkN0d0NpNGFyWHNqRUQ1VFZtcl92UGxQMmtlMTMzS0s3bFA3U3pfSVppREUifSwiZXhwIjoxNTc3NzQzMjAwLCJoc21fcHViX2tleSI6eyJjcnYiOiJQLTI1NiIsImtpZCI6IjQiLCJrdHkiOiJFQyIsInVzZSI6InNpZyIsIngiOiJzSk1zTi0ySm8yN2tjNTF3Vks3eEoyZlA5QkRrekFjMmZaRVpNbG9oSFhBIiwieSI6Ik1XbHV6bVhnWE92ZFFRRFlYM3l5MVRrOVFvSEwtOURaaHN3WnBZMFhlNVUifSwiaWF0IjoxNTUzNjg1NTczLCJ0eXBlIjoiQ1lfQVVUSF9IU00ifQ.oXeFYugOceM2XvnoWTEju8ByztA4OvFKrQxndIOts_nlgmRti2ddoHRGR86GMNCDfcHr54mXH33GkQ8D96DoGw \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/hsm_state.json b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/hsm_state.json deleted file mode 100644 index e2481709d9f..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/hsm_state.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "hsm_priv_key": { - "crv": "P-256", - "d": "d-r9nPjLka7g5BHiT7OexYV7na-ofuNfjPPN4XvP_yQ", - "kty": "EC", - "use": "sig", - "x": "sJMsN-2Jo27kc51wVK7xJ2fP9BDkzAc2fZEZMlohHXA", - "y": "MWluzmXgXOvdQQDYX3yy1Tk9QoHL-9DZhswZpY0Xe5U" - }, - "hsm_pub_key": { - "crv": "P-256", - "kty": "EC", - "use": "sig", - "kid": "4", - "x": "sJMsN-2Jo27kc51wVK7xJ2fP9BDkzAc2fZEZMlohHXA", - "y": "MWluzmXgXOvdQQDYX3yy1Tk9QoHL-9DZhswZpY0Xe5U" - } -} \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/oem_state.json b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/oem_state.json deleted file mode 100644 index 978cfbd2358..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/oem_state.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "oem_priv_key": { - "crv": "P-256", - "d": "JVozA1oRvg-zSotMUbrGebV3oBhBaF1mqUyEn_Fdcqc", - "kty": "EC", - "use": "sig", - "x": "vfb7_jewTxpFVINcXdrZQJBArC5igrN0BLc783FigrM", - "y": "9rBBUKXzpj1A5K7fxPtEaJdsfo7Jj_wsF7LTZLc-sPM" - }, - "oem_pub_key": { - "crv": "P-256", - "kty": "EC", - "use": "sig", - "kid": "5", - "x": "vfb7_jewTxpFVINcXdrZQJBArC5igrN0BLc783FigrM", - "y": "9rBBUKXzpj1A5K7fxPtEaJdsfo7Jj_wsF7LTZLc-sPM" - } -} \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/LICENSE-2.0.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/LICENSE-2.0.txt deleted file mode 100644 index 7a4a3ea2424..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/LICENSE-2.0.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/README.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/README.txt deleted file mode 100644 index 3c082fb3baa..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Apache/README.txt +++ /dev/null @@ -1,5 +0,0 @@ -The following are licensed under the Apache 2.0 license: - -mcuboot -Mbed Crypto - diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/MIT/cjason-license.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/MIT/cjason-license.txt deleted file mode 100644 index 9b4fcd8266b..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/MIT/cjason-license.txt +++ /dev/null @@ -1,23 +0,0 @@ -Copyright (c) 2009 Dave Gamble - -Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - -The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. -*/ - diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt deleted file mode 100644 index 8ab19243a91..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prebuild/third_party_licenses/Other/bsd_base64_license.txt +++ /dev/null @@ -1,46 +0,0 @@ -/* - * $ Copyright Cypress Semiconductor $ - */ -/* $OpenBSD: base64.c,v 1.3 1997/11/08 20:46:55 deraadt Exp $ */ - -/* - * Copyright (c) 1996 by Internet Software Consortium. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS - * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE - * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL - * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR - * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS - * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS - * SOFTWARE. - */ - -/* - * Portions Copyright (c) 1995 by International Business Machines, Inc. - * - * International Business Machines, Inc. (hereinafter called IBM) grants - * permission under its copyrights to use, copy, modify, and distribute this - * Software with or without fee, provided that the above copyright notice and - * all paragraphs of this notice appear in all copies, and that the name of IBM - * not be used in connection with the marketing of any product incorporating - * the Software or modifications thereof, without specific, written prior - * permission. - * - * To the extent it has a right to do so, IBM grants an immunity from suit - * under its patents, if any, for the use, sale or manufacture of products to - * the extent that such products are used for performing Domain Name System - * dynamic updates in TCP/IP networks by means of the Software. No immunity is - * granted for any product per se or for any other function of any product. - * - * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, - * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - * PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, - * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING - * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN - * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. - */ \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_crypto.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_crypto.py deleted file mode 100644 index f73b4b73ee6..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_crypto.py +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from jwcrypto import jwk, jws, jwt -from jwcrypto.common import base64url_decode -from jwcrypto.common import json_decode -from datetime import datetime -import json -import copy - -class crypto : - - def create_jwk() : - key = jwk.JWK.generate(kty='EC', crv='P-256', use='sig') - pub_key= json.loads( key.export(private_key=False) ) - priv_key= json.loads( key.export(private_key=True) ) - - print( "create_jwk()= " + json.dumps( pub_key, indent=4 ) ) - return priv_key,pub_key - - def create_jwt( payload , key ) : - token= jwt.JWT( header={"alg": "ES256"},claims=payload ) - token.make_signed_token( jwk.JWK( **key ) ) - txt= token.serialize(compact=True) - - print( "create_jwt()= " + json.dumps( crypto.readable_jwt(txt) ,indent=4 )) - return txt - - def readable_jwt( txt ) : - """ - Convert a JWT token in base64url into a readable dictionary object - with decoded payload and header for printing and logging - """ - lst= txt.split('.') - readable= {} - readable["protected"]= json_decode(base64url_decode(lst[0])) - readable["payload"]= json_decode(base64url_decode(lst[1])) - readable["signature"]= lst[2] - - # create readable timestamps for exp/iat claims - payload= readable["payload"] - if "iat" in payload : - t= payload["iat"] - if isinstance(t,int) : - t= datetime.fromtimestamp(t).isoformat(' ') - payload["iat"]= t - if "exp" in payload : - t= payload["exp"] - if isinstance(t,int) : - t= datetime.fromtimestamp(t).isoformat(' ') - payload["exp"]= t - - print(json.dumps(readable,indent=4,sort_keys=False)) - return readable - - def dump_jwt( txt,file_name ) : - """ - Dumps a JWT dictionary object into a text file - """ - with open(file_name,"w") as f : - f.write(txt) - f.close() - - def read_jwt( file_name ) : - """ - Reads a JWT dictionary object from a text file - """ - with open(file_name,"r") as f : - txt = f.read() - f.close() - - return txt - - def jwt_payload( txt ) : - """ - Returns the payload of a JWT without validating it's signature - Sometimes used for tokens that contain a public key in its payload, where the signature proves possesion of the corresponding private key - In that case, the payload is needed to obtain the public key with which to then validate the JWT - """ - # split the token - lst= txt.split('.') - payload= lst[1] - obj= json_decode(base64url_decode(payload)) - return obj - - def validate_jwt( txt , key ) : - """ - Validates a signed JWT - """ - try : - jwt.JWT(key=jwk.JWK(**key),jwt=txt) - print( " JWT signature is valid" ) - return True - except : - print( " JWT signature is not valid" ) - return False - - def create_x509_cert( pub_key , priv_key , prod_id , die_id=None , dev_id=None ) : - """ - TODO: create a X.509 certificate here certifying pub_key, signed with private_key - """ - cert= "CertificateToBeDone(die_id={},dev_id={},prod_id={})".format(die_id,dev_id,prod_id) - return cert - \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_customer.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_customer.py deleted file mode 100644 index 4433ac92d78..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_customer.py +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from cyprov_entity import Entity -from cyprov_crypto import crypto - -# Customer Entity -class CustomerEntity(Entity): - def __init__(self, state_name, audit_name) : - Entity.__init__(self, state_name, audit_name) - if "custom_priv_key" not in self.state: - d = dict() - d["custom_priv_key"] = self.state - self.state = d - - def create_entity(self, kid) : - """ - Creates the Customer entity. - Creates the Customer main key-pair and returns nothing. - """ - customer_priv_key, customer_pub_key = crypto.create_jwk() - customer_priv_key["kid"] = str(kid) - customer_pub_key["kid"] = str(kid) - self.state["custom_priv_key"] = customer_priv_key - self.state["custom_pub_key"] = customer_pub_key - self.state_loaded = True - - def get_pub_key(self): - if "custom_pub_key" not in self.state: - key = dict(self.state["custom_priv_key"]) - del key["d"] - else: - key = self.state["custom_pub_key"] - return key - - def get_priv_key(self): - return self.state["custom_priv_key"] - \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_entity.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_entity.py deleted file mode 100644 index 456e2ead237..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_entity.py +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import json - -# Cypress Entity -class Entity : - def __init__( self , state_name , audit_name ) : - self.state_name= state_name - self.state_loaded= False - self.audit_name= audit_name - Entity.load_state(self) - - def load_state( self ) : - try : - with open(self.state_name,"r+") as f : - self.state= json.loads(f.read()) - f.close() - self.state_loaded= True - except FileNotFoundError: - self.state= {} - self.state_loaded= False - - def save_state( self ) : - if not self.state_loaded : - raise Exception( "Internal error - state not loaded" ) - with open(self.state_name,"w") as f : - f.write( json.dumps( self.state,indent=4 ) ) - f.close() - - def append_audit_record( self,record ) : - with open(self.audit_name,"a") as f : - f.write( json.dumps(record,indent=4) + "\n" ) - f.close() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_hsm.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_hsm.py deleted file mode 100644 index f4e1789921f..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_hsm.py +++ /dev/null @@ -1,443 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -from cyprov_types import types -from cyprov_entity import Entity -from cyprov_crypto import crypto -from datetime import datetime -from datetime import timedelta - - -# HSM Entity -class HsmEntity(Entity): - def __init__(self, state_name, audit_name): - Entity.__init__(self, state_name, audit_name) - - def create_entity(self): - """ - Creates the HSM entity. - Creates the hsm_priv_key,hsm_pub_key key-pair. - """ - hsm_priv_key, hsm_pub_key = crypto.create_jwk() - self.state["hsm_priv_key"] = hsm_priv_key - self.state["hsm_pub_key"] = hsm_pub_key - - def request_disti_authorization(self): - """ - HSM creates a request for authorization to Distributor - It includes just the HSM public key and a one week expiration limit - We use a JWT to prove knowledge of the private key and convey an expiration limit - """ - hsm_priv_key = self.state["hsm_priv_key"] - hsm_pub_key = self.state["hsm_pub_key"] - - # create the request - exp = datetime.now() + timedelta(7) - payload = {} - payload["type"] = types.HSM_REQ_DISTI_AUTH - payload["hsm_pub_key"] = hsm_pub_key - payload["iat"] = int(datetime.now().timestamp()) - payload["exp"] = int(exp.timestamp()) - auth_req = crypto.create_jwt(payload, hsm_priv_key) - - # Create audit record - record = {} - record["type"] = types.HSM_REQ_DISTI_AUTH - record["iat"] = datetime.now().isoformat(' ') - record["auth_req"] = crypto.readable_jwt(auth_req) - self.append_audit_record(record) - - return auth_req - - def install_disti_auth(self, disti_auth): - """ - Install distributor authorization. - Returns nothingraise Exception( - """ - hsm_pub_key = self.state["hsm_pub_key"] - - # Validate the distributor authorization - disti_auth_payload = crypto.jwt_payload(disti_auth) - disti_pub_key = disti_auth_payload["disti_pub_key"] - if not crypto.validate_jwt(disti_auth, disti_pub_key): - raise Exception("Invalid signature for distributor authorization") - if disti_auth_payload["type"] != types.DISTI_AUTH_HSM: - raise Exception("Invalid type for distributor authorization") - if disti_auth_payload["hsm_pub_key"] != hsm_pub_key: - raise Exception("Distributor authorization is not for this HSM") - if datetime.fromtimestamp(disti_auth_payload["exp"]) < datetime.now(): - raise Exception("Distributor authorization expired") - - # install distributor key and authorization - self.state["disti_pub_key"] = disti_pub_key - self.state["disti_auth"] = disti_auth - self.state["disti_auth_readable"] = crypto.readable_jwt(disti_auth) - - # create audit record - record = {} - record["type"] = types.DISTI_AUTH_HSM - record["iat"] = datetime.now().isoformat(' ') - record["disti_auth"] = crypto.readable_jwt(disti_auth) - self.append_audit_record(record) - - def request_cy_authorization(self, cy_pub_key=None): - """ - HSM creates a request for authorization to CY - It contains the HSM public key, the distributor authorization and a 1 week expiration - The JWT proves knowledge of the private key and the distributor authorization is used by CY to identify the request - """ - hsm_priv_key = self.state["hsm_priv_key"] - hsm_pub_key = self.state["hsm_pub_key"] - disti_auth = self.state["disti_auth"] - - # create the authorization request - exp = datetime.now() + timedelta(7) - payload = {} - payload["type"] = types.HSM_REQ_CY_AUTH - payload["hsm_pub_key"] = hsm_pub_key - payload["disti_auth"] = disti_auth - payload["iat"] = int(datetime.now().timestamp()) - payload["exp"] = int(exp.timestamp()) - if cy_pub_key != None: - payload["cy_pub_key"] = cy_pub_key - auth_req = crypto.create_jwt(payload, hsm_priv_key) - - # create audit record - cy_auth_readable = crypto.readable_jwt(auth_req) - cy_auth_readable["payload"]["disti_auth"] = crypto.readable_jwt(cy_auth_readable["payload"]["disti_auth"]) - record = {} - record["type"] = types.HSM_REQ_CY_AUTH - record["iat"] = datetime.now().isoformat(' ') - record["cy_auth_req"] = cy_auth_readable - self.append_audit_record(record) - - # install the cy_pub_key if one is given (allows for explicit binding to Cypress or some other supplier) - self.state["cy_pub_key"] = cy_pub_key - - return auth_req - - def install_cy_auth(self, cy_auth, cy_pub_key=None): - """ - Install Cypress authorization. - First checks the signature on the token and then just stores it - The expiration date on the token is enforced by the HSM only (since device has not time). - The authorization privilages (which may contain serial number and/or wounding limitations) are enforced by the device. - """ - hsm_pub_key = self.state["hsm_pub_key"] - - # validate the authorization - cy_auth_payload = crypto.jwt_payload(cy_auth) - if cy_pub_key == None: - cy_pub_key = cy_auth_payload["cy_pub_key"] - elif cy_auth_payload["cy_pub_key"] != cy_pub_key: - raise Exception("Cypress authorization is not from Cypress") - if not crypto.validate_jwt(cy_auth, cy_pub_key): - raise Exception("Invalid signature for CY HSM authorization") - if cy_auth_payload["type"] != types.CY_AUTH_HSM: - raise Exception("Invalid type for CY HSM authoriation") - if datetime.fromtimestamp(cy_auth_payload["exp"]) < datetime.now(): - raise Exception("CY HSM authorization is expired") - if cy_auth_payload["cy_pub_key"] != cy_pub_key: - raise Exception("Authorization appears to be not from Cypress") - - # install the authorization - self.state["cy_pub_key"] = cy_pub_key - self.state["cy_auth"] = cy_auth - self.state["cy_auth_readable"] = crypto.readable_jwt(cy_auth) - self.state["products"] = {} - - # create audit record - record = {} - record["type"] = types.CY_AUTH_HSM - record["iat"] = datetime.now().isoformat(' ') - record["cy_auth"] = crypto.readable_jwt(cy_auth) - self.append_audit_record(record) - - def create_signing_key(self, prod_id): - """ - Creates a signing-key package that an OEM uses to create its chain of trust - One or more OEM projects may share the same signing key - An HSM can maintain multiple signing keys for multiple OEMs, identified by a string "prod_id" - HSM operator must make sure that "prod_id" is unique across all of its customers, e.g. by including the customer name or ID - """ - cy_auth = self.state["cy_auth"] - disti_auth = self.state["disti_auth"] - hsm_priv_key = self.state["hsm_priv_key"] - - # create the signing key - signing_priv_key, signing_pub_key = crypto.create_jwk() - - # create the token - exp = datetime.now() + timedelta(7) - payload = {} - payload["type"] = types.HSM_SIGNING_KEY_PKG - payload["iat"] = int(datetime.now().timestamp()) - payload["exp"] = int(exp.timestamp()) - payload["prod_id"] = prod_id - payload["signing_pub_key"] = signing_pub_key - payload["cy_auth"] = cy_auth - payload["disti_auth"] = disti_auth - signing_pkg = crypto.create_jwt(payload, hsm_priv_key) - - # store signing key for later use - prod = {} - prod["iat"] = int(datetime.now().timestamp()) - prod["signing_priv_key"] = signing_priv_key - prod["signing_pub_key"] = signing_pub_key - self.state["products"][prod_id] = prod - - # create audit record - signing_pkg_readable = crypto.readable_jwt(signing_pkg) - signing_pkg_readable["payload"]["cy_auth"] = crypto.readable_jwt(signing_pkg_readable["payload"]["cy_auth"]) - signing_pkg_readable["payload"]["disti_auth"] = crypto.readable_jwt( - signing_pkg_readable["payload"]["disti_auth"]) - record = {} - record["type"] = types.HSM_SIGNING_KEY_PKG - record["iat"] = datetime.now().isoformat(' ') - record["signing_pkg"] = signing_pkg_readable - self.append_audit_record(record) - - return signing_pkg - - def install_rot_authorization(self, rot_auth_pkg): - """ - The HSM checks the response package and the rot_auth token itself and simply stores it for later use - """ - hsm_pub_key = self.state["hsm_pub_key"] - - rot_auth_pkg_payload = crypto.jwt_payload(rot_auth_pkg) - prod_id = rot_auth_pkg_payload["prod_id"] - rot_auth = rot_auth_pkg_payload["rot_auth"] - chain_of_trust = rot_auth_pkg_payload["chain_of_trust"] - - # validate the RoT authorization - rot_auth_payload = crypto.jwt_payload(rot_auth) - oem_pub_key = rot_auth_payload["oem_pub_key"] - if not crypto.validate_jwt(rot_auth, oem_pub_key): - raise Exception("Invalid signature on OEM root-of-trust authorization") - if rot_auth_payload["type"] != types.OEM_ROT_AUTH: - raise Exception("Invalid type for OEM root-of-trust authorization") - if rot_auth_payload["hsm_pub_key"] != hsm_pub_key: - raise Exception("Invalid HSM public key in OEM root-of-trust authorization") - if rot_auth_payload["prod_id"] != prod_id: - raise Exception("Invalid prod_id in OEM root-of-trust authorization") - - # validate the package itself - if not crypto.validate_jwt(rot_auth_pkg, oem_pub_key): - raise Exception("Invalid signature on OEM root-of-trust authorization package") - if rot_auth_pkg_payload["type"] != types.OEM_ROT_AUTH_PKG: - raise Exception("Invalid type for OEM root-of-trust authorization package") - if datetime.fromtimestamp(rot_auth_pkg_payload["exp"]) < datetime.now(): - raise Exception("OEM root-of-trust authorization package is expired") - - # store the result for later usage - prod = self.state["products"][prod_id] - prod["oem_pub_key"] = oem_pub_key - prod["rot_auth"] = rot_auth - prod["rot_auth_readable"] = crypto.readable_jwt(rot_auth) - prod["chain_of_trust"] = chain_of_trust - - # create audit record - rot_auth_pkg_readable = crypto.readable_jwt(rot_auth_pkg) - rot_auth_pkg_readable["payload"]["rot_auth"] = crypto.readable_jwt(rot_auth_pkg_readable["payload"]["rot_auth"]) - record = {} - record["type"] = types.OEM_ROT_AUTH_PKG - record["iat"] = datetime.now().isoformat(' ') - record["rot_auth_pkg"] = rot_auth_pkg_readable - self.append_audit_record(record) - - def create_rot_command(self, prod_id): - """ - The cy_auth token means Cypress authorized the HSM for provisioning - The rot_auth token means that the OEM authorized the HSM to provision RoT on its behalf - Together, they form the RoT command to the device - """ - hsm_priv_key = self.state["hsm_priv_key"] - cy_auth = self.state["cy_auth"] - rot_auth = self.state["products"][prod_id]["rot_auth"] - - # check CY authorization has not expired - cy_auth_payload = crypto.jwt_payload(cy_auth) - if datetime.fromtimestamp(cy_auth_payload["exp"]) < datetime.now(): - raise Exception("Cypress authorization for HSM expired") - - # create the RoT command - payload = {} - payload["type"] = types.HSM_ROT_CMD - payload["prod_id"] = prod_id - payload["cy_auth"] = cy_auth - payload["rot_auth"] = rot_auth - rot_cmd = crypto.create_jwt(payload, hsm_priv_key) - - # create audit record - rot_cmd_readable = crypto.readable_jwt(rot_cmd) - rot_cmd_readable["payload"]["cy_auth"] = crypto.readable_jwt(rot_cmd_readable["payload"]["cy_auth"]) - rot_cmd_readable["payload"]["rot_auth"] = crypto.readable_jwt(rot_cmd_readable["payload"]["rot_auth"]) - record = {} - record["type"] = types.HSM_ROT_CMD - record["iat"] = datetime.now().isoformat() - record["rot_cmd"] = rot_cmd_readable - self.append_audit_record(record) - - return rot_cmd - - def accept_provision_authorization(self, prov_auth): - """ - Accepts a provisioning request from an OEM, that is authorized by the distributor - prov_req= jwt( payload={ OEM_PROV_REQ , blob } , key=oem_priv_key ) - prov_auth= jwt( payload={ DISTI_PROV_AUTH , prov_req , cnt , exp } , key=disti_priv_key ) - When successful 'installs' the provisioning request in the HSM as the active request for given prod_id - """ - disti_pub_key = self.state["disti_pub_key"] - - # validate the Disti's command - prov_auth_payload = crypto.jwt_payload(prov_auth) - if not crypto.validate_jwt(prov_auth, disti_pub_key): - raise Exception("Invalid signature for provisioning authorization") - if prov_auth_payload["type"] != types.DISTI_PROV_AUTH: - raise Exception("Invalid type for provisioning authorization") - prov_req = prov_auth_payload["prov_req"] - prov_req_cnt = prov_auth_payload["cnt"] - prov_req_exp = datetime.fromtimestamp(prov_auth_payload["exp"]) - - # validate the OEM's provisioning request - prov_req_payload = crypto.jwt_payload(prov_req) - prod_id = prov_req_payload["prod_id"] - oem_pub_key = self.state["products"][prod_id]["oem_pub_key"] - if not crypto.validate_jwt(prov_req, oem_pub_key): - raise Exception("Invalid signature for provisioning request") - - # install the provisioning request for execution - prod = self.state["products"][prod_id] - prod["prov_req"] = prov_req - prod["prov_req_readable"] = crypto.readable_jwt(prov_req) - prod["prov_req_cnt"] = prov_req_cnt - prod["prov_req_exp"] = int(prov_req_exp.timestamp()) - - # create audit record - record = {} - record["type"] = types.DISTI_PROV_AUTH - record["iat"] = datetime.now().isoformat(' ') - record["prod_id"] = prod_id - record["prov_req"] = crypto.readable_jwt(prov_req) - self.append_audit_record(record) - - def create_provision_cmd(self, prod_id, dev_rsp, image_jwt_file): - """ - Creates and returns a provisioning command prov_cmd that can be send to a device. - prov_req= jwt( payload={ OEM_PROV_REQ , blob } , key=oem_priv_key ) - chain_of_trust= [ x509_certs ] - hsm_auth= jwt( payload={ CY_HSM_AUTH , hsm_pub_key , auth } , key=cy_priv_key ) - prov_cmd= jwt( payload={ HSM_PROV_CMD , prov_req , chain_of_trust , hsm_auth } , key=hsm_priv_key ) - Requires the device response to the RoT command (which contains the device identity and keys). - dev_rsp= jwt( payload= { DEV_ROT_RSP , prod_id,die_id,dev_id, dev_pub_key } , key=dev_priv_key ) - There must be an active provisioning request in the HSM for the given product ID. - """ - prod = self.state["products"][prod_id] - oem_pub_key = prod["oem_pub_key"] - signing_priv_key = prod["signing_priv_key"] - chain_of_trust = prod["chain_of_trust"] - prov_req = prod["prov_req"] - prov_req_cnt = prod["prov_req_cnt"] - prov_req_exp = datetime.fromtimestamp(prod["prov_req_exp"]) - hsm_priv_key = self.state["hsm_priv_key"] - cy_auth = self.state["cy_auth"] - image_cert = crypto.read_jwt(image_jwt_file) - - # validate the OEM's provisioning request - if prov_req_exp < datetime.now(): - raise Exception("Provisioning request expired") - if prov_req_cnt <= 0: - raise Exception("Provisioning request count exceeded") - prov_req_cnt -= 1; - - # validate the device response - dev_rsp_payload = crypto.jwt_payload(dev_rsp) - dev_pub_key = dev_rsp_payload["dev_pub_key"] - die_id = dev_rsp_payload["die_id"] - dev_id = dev_rsp_payload["dev_id"] - if dev_rsp_payload["prod_id"] != prod_id: - raise Exception("Product ID in provision request does not match device (" + prod_id + ")") - if not crypto.validate_jwt(dev_rsp, dev_pub_key): - raise Exception("Invalid signature on device response to RoT command") - - # create the device chain of trust (X509) - dev_cert = crypto.create_x509_cert(prod_id=prod_id, die_id=die_id, dev_id=dev_id, pub_key=dev_pub_key, - priv_key=signing_priv_key) - chain_of_trust = chain_of_trust + [dev_cert] - - # create the provisioning command - payload = {} - payload["type"] = types.HSM_PROV_CMD - payload["prov_req"] = prov_req - payload["image_cert"] = image_cert - payload["chain_of_trust"] = chain_of_trust - payload["cy_auth"] = cy_auth - prov_cmd = crypto.create_jwt(payload, hsm_priv_key) - - # create audit record - prov_cmd_readable = crypto.readable_jwt(prov_cmd) - prov_cmd_readable["payload"]["cy_auth"] = crypto.readable_jwt(prov_cmd_readable["payload"]["cy_auth"]) - prov_cmd_readable["payload"]["prov_req"] = crypto.readable_jwt(prov_cmd_readable["payload"]["prov_req"]) - prov_cmd_readable["payload"]["image_cert"] = crypto.readable_jwt(prov_cmd_readable["payload"]["image_cert"]) - record = {} - record["type"] = types.HSM_PROV_CMD - record["iat"] = datetime.now().isoformat(' ') - record["prod_id"] = prod_id - record["dev_rsp"] = crypto.readable_jwt(dev_rsp) - record["prov_cmd"] = prov_cmd_readable - self.append_audit_record(record) - - self.state["products"][prod_id]["prov_req_cnt"] = prov_req_cnt - return prov_cmd - - def pack_rot_command(self, prod_id, cy_auth_file, rot_auth): - payload = {} - - payload['type'] = types.HSM_ROT_CMD - payload['prod_id'] = prod_id - payload['cy_auth'] = crypto.read_jwt(cy_auth_file) - payload['rot_auth'] = rot_auth - - hsm_priv_key = self.state["hsm_priv_key"] - rot_cmd = crypto.create_jwt(payload, hsm_priv_key) - - return rot_cmd - - def pack_provision_cmd(self, **kwargs): - payload = {} - print(kwargs) - - if kwargs is not None: - for k, v in kwargs.items(): - if type(v) is tuple: - sequence = [] - for cert_file in v: - with open(cert_file) as cert: - sequence.append(cert.read()) - payload[k] = sequence - else: - if os.path.isfile(v): - payload[k] = crypto.read_jwt(v) - else: - payload[k] = v - - payload['type'] = types.HSM_PROV_CMD - - hsm_priv_key = self.state['hsm_priv_key'] - prov_cmd = crypto.create_jwt(payload, hsm_priv_key) - - return prov_cmd diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_oem.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_oem.py deleted file mode 100644 index ae418abda5b..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_oem.py +++ /dev/null @@ -1,143 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from cyprov_entity import Entity -from cyprov_crypto import crypto -from cyprov_types import types -from datetime import datetime -from datetime import timedelta - -# Oem (Customr) Entity -class OemEntity(Entity) : - def __init__( self , state_name , audit_name ) : - Entity.__init__(self,state_name,audit_name) - - def create_entity( self , chain_of_trust=[] ) : - """ - Creates the Oem entity. - Creates the Oem main key-pair and returns nothing. - """ - oem_priv_key,oem_pub_key= crypto.create_jwk() - self.state["oem_priv_key"]= oem_priv_key - self.state["oem_pub_key"]= oem_pub_key - self.state["oem_chain_of_trust"]= chain_of_trust - - def create_rot_authorization( self , signing_pkg ) : - """ - OEM creates a root-of-trust authorization package based on the signing key package from the HSM - It's a JWT with two main parts: - - a rot_auth authorization token that is sent to the device - - a chain of X509 certificates that establishses the OEM's trust in the HSM signing key - Note that this chain is not used inside the device and used only by 3rd parties - """ - oem_pub_key= self.state["oem_pub_key"] - oem_priv_key= self.state["oem_priv_key"] - oem_chain_of_trust= self.state["oem_chain_of_trust"] - - # get HSM public key and check CY authorization - signing_pkg_payload= crypto.jwt_payload(signing_pkg) - cy_auth= signing_pkg_payload["cy_auth"] - cy_auth_payload= crypto.jwt_payload(cy_auth) - cy_pub_key= cy_auth_payload["cy_pub_key"] - hsm_pub_key= cy_auth_payload["hsm_pub_key"] - if not crypto.validate_jwt( cy_auth , cy_pub_key ) : - raise Exception( "Invalid signature on Cypress HSM authorization in request" ) - if cy_auth_payload["type"] != types.CY_AUTH_HSM : - raise Exception( "Invalid type for Cypress HSM authorization in request" ) - if datetime.fromtimestamp(cy_auth_payload["exp"]) < datetime.now() : - raise Exception( "Cypress HSM authorization expired" ) - - # validate HSM request itself - signing_pub_key= signing_pkg_payload["signing_pub_key"] - prod_id= signing_pkg_payload["prod_id"] - if not crypto.validate_jwt( signing_pkg , hsm_pub_key ) : - raise Exception( "Invalid signature on HSM signing key package" ) - if signing_pkg_payload["type"] != types.HSM_SIGNING_KEY_PKG : - raise Exception( "Invalid type on HSM signing key package" ) - if datetime.fromtimestamp(signing_pkg_payload["exp"]) < datetime.now() : - raise Exception( "HSM signing key package expired" ) - - # create the RoT transfer authorization (that will go to the device) - payload= {} - payload["type"]= types.OEM_ROT_AUTH - payload["oem_pub_key"]= oem_pub_key - payload["hsm_pub_key"]= hsm_pub_key - payload["prod_id"]= prod_id - payload["iat"]= int(datetime.now().timestamp()) - rot_auth= crypto.create_jwt( payload , oem_priv_key ) - - # create the chain of trust - cert= crypto.create_x509_cert( signing_pub_key , oem_priv_key , prod_id ) - chain_of_trust= oem_chain_of_trust + [ cert ] - - # create the response - exp= datetime.now() + timedelta(7) - payload= {} - payload["type"]= types.OEM_ROT_AUTH_PKG - payload["iat"]= int(datetime.now().timestamp()) - payload["exp"]= int(exp.timestamp()) - payload["prod_id"]= prod_id - payload["rot_auth"]= rot_auth - payload["chain_of_trust"]= chain_of_trust - rot_auth_pkg= crypto.create_jwt( payload , oem_priv_key ) - - # create audit record - signing_pkg_readable= crypto.readable_jwt(signing_pkg) - signing_pkg_readable["payload"]["cy_auth"]= crypto.readable_jwt(signing_pkg_readable["payload"]["cy_auth"]) - signing_pkg_readable["payload"]["disti_auth"]= crypto.readable_jwt(signing_pkg_readable["payload"]["disti_auth"]) - rot_auth_pkg_readable= crypto.readable_jwt(rot_auth_pkg) - rot_auth_pkg_readable["payload"]["rot_auth"]= crypto.readable_jwt(rot_auth_pkg_readable["payload"]["rot_auth"]) - record= {} - record["type"]= types.OEM_ROT_AUTH_PKG - record["iat"]= datetime.now().isoformat(' ') - record["signing_pkg"]= signing_pkg_readable - record["rot_auth_pkg"]= rot_auth_pkg_readable - self.append_audit_record(record) - - return rot_auth_pkg - - def create_provision_request( self , blob ) : - """ - The OEM can create a request for provisioning by signing a keys & policies blob with its private key - Note that blob must contain at least the prod_id field - """ - # create the request - oem_priv_key= self.state["oem_priv_key"] - prov_req= crypto.create_jwt( blob , oem_priv_key ) - - # create audit record - record= {} - record["type"]= types.OEM_PROV_REQ - record["iat"]= datetime.now().isoformat(' ') - record["prod_id"]= blob["prod_id"] - record["prov_req"]= crypto.readable_jwt(prov_req) - self.append_audit_record(record) - - return prov_req - - def pack_rot_auth( self, prod_id, hsm_pub_key ): - oem_pub_key = self.state["oem_pub_key"] - oem_priv_key = self.state["oem_priv_key"] - - payload= {} - payload["type"] = types.OEM_ROT_AUTH - payload["oem_pub_key"] = oem_pub_key - payload["hsm_pub_key"] = hsm_pub_key - payload["prod_id"] = prod_id - payload["iat"] = int(datetime.now().timestamp()) - rot_auth = crypto.create_jwt( payload , oem_priv_key ) - - return rot_auth - \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_pem.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_pem.py deleted file mode 100644 index 42f9bc4d967..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_pem.py +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from jwcrypto import jwk -import json - -def pretty_search(dict_or_list, key_to_search, search_for_first_only=False): - """ - Give it a dict or a list of dicts and a dict key (to get values of), - it will search through it and all containing dicts and arrays - for all values of dict key you gave, and will return you set of them - unless you wont specify search_for_first_only=True - - :param dict_or_list: - :param key_to_search: - :param search_for_first_only: - :return: - """ - search_result = set() - if isinstance(dict_or_list, dict): - for key in dict_or_list: - key_value = dict_or_list[key] - if key == key_to_search: - if search_for_first_only: - return key_value - else: - search_result.add(key_value) - if isinstance(key_value, dict) or isinstance(key_value, list) or isinstance(key_value, set): - _search_result = pretty_search(key_value, key_to_search, search_for_first_only) - if _search_result and search_for_first_only: - return _search_result - elif _search_result: - for result in _search_result: - search_result.add(result) - elif isinstance(dict_or_list, list) or isinstance(dict_or_list, set): - for element in dict_or_list: - if isinstance(element, list) or isinstance(element, set) or isinstance(element, dict): - _search_result = pretty_search(element, key_to_search, search_result) - if _search_result and search_for_first_only: - return _search_result - elif _search_result: - for result in _search_result: - search_result.add(result) - return search_result if search_result else None - -class PemKey: - - def __init__(self, jwk_file = None, item = None): - if jwk_file != None: - with open(jwk_file) as f: - jwk_str = f.read() - self.jwk = json.loads(jwk_str) - - if item != None: - self.jwk = pretty_search(self.jwk, item, search_for_first_only=True) - - def save(self, file = None, private_key=False): - key = jwk.JWK(**self.jwk) - pem_str = key.export_to_pem(private_key, password=None) - if file != None: - with open(file, 'wb') as f: - f.write(pem_str) - else: - print(pem_str) - - def load(self, jwk): - self.jwk = jwk diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_types.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_types.py deleted file mode 100644 index f5aa542f0da..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_lib/cyprov_types.py +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -class types : - HSM_REQ_DISTI_AUTH= "HSM_REQ_DISTI_AUTH" - DISTI_AUTH_HSM= "DISTI_AUTH_HSM" - HSM_REQ_CY_AUTH= "HSM_REQ_CY_AUTH" - CY_AUTH_HSM= "CY_AUTH_HSM" - HSM_SIGNING_KEY_PKG= "HSM_SIGNING_KEY_PKG" - OEM_ROT_AUTH= "OEM_ROT_AUTH" - OEM_ROT_AUTH_PKG= "OEM_ROT_AUTH_PKG" - OEM_PROV_REQ= "OEM_PROV_REQ" - DISTI_PROV_AUTH= "DISTI_PROV_AUTH" - CY_DEV_ID= "CY_DEV_ID" - HSM_ROT_CMD= "HSM_ROT_CMD" - HSM_PROV_CMD= "HSM_PROV_CMD" - \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_packet.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_packet.py deleted file mode 100644 index 75e98e29cf5..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/prepare/provisioning_packet.py +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -import sys -import json -import click - -# Default input values and pathes -PROD_NAME = 'my_thing' -CYPROV_LIB_PATH = './provisioning_lib' - -# Default output values and pathes -OEM_AUDIT_NAME = 'oem_log.json' -HSM_AUDIT_NAME = 'hsm_log.json' -PROV_REQ_JWT_FILE = 'prov_req.jwt' -ROT_AUTH_JWT_FILE = 'rot_auth.jwt' -PROV_JWT_FILE = 'prov_cmd.jwt' - -CUSTOMER_KEY_N = 5 - -sys.path.insert(0, CYPROV_LIB_PATH) -from cyprov_hsm import HsmEntity -from cyprov_oem import OemEntity -from cyprov_customer import CustomerEntity -from cyprov_crypto import crypto - - -def process_customer_keys(paths): - customer_key_n = len(paths) - customer = [] - if customer_key_n > 0: - customer_key_id = 6 - for i in range(customer_key_n): - customer_log = os.path.basename(paths[i]) - customer_log = os.path.splitext(customer_log)[0] + '_log.json' - customer.append(CustomerEntity(paths[i], customer_log)) - if not customer[i].state_loaded: - customer[i].create_entity(customer_key_id + i) - customer[i].save_state() - return customer - - -@click.command() -@click.option('--oem', 'oem_state_path', - default='../prebuild/oem_state.json', - help='OEM key file.') -@click.option('--hsm', 'hsm_state_path', - default='../prebuild/hsm_state.json', - help='HSM key file.') -@click.option('--cyboot', 'image_cert', - default='../prebuild/CypressBootloader_CM0p.jwt', - help='Cypress Bootloader image certificate.') -@click.option('--cyauth', 'cy_auth_path', - default='../prebuild/cy_auth.jwt', - help='Provisioning authorization certificate.') -@click.option('--policy', 'policy_path', - default='policy_single_stage_CM4.json', - help='Policy file.') -@click.option('--out', 'output_path', - default='../packet', - help='Output directory.') -@click.option('--ckey', 'cust_key_path', - default=None, - multiple=True, - help='Customer key that will be used for image signing. Use the option multiple times ' - 'to specify multiple keys.') -@click.option('--devcert', 'dev_cert', - default=[], - multiple=True, - help='Chain of trust certificate. Use the option multiple times to specify multiple certificates.') -def main(oem_state_path, hsm_state_path, image_cert, cy_auth_path, - policy_path, output_path, cust_key_path, dev_cert): - - if len(cust_key_path) > CUSTOMER_KEY_N: - raise Exception('Maximum number of customer keys must be {}!'.format(CUSTOMER_KEY_N)) - - prod_id = PROD_NAME - - oem_audit_path = os.path.join(output_path, OEM_AUDIT_NAME) - hsm_audit_path = os.path.join(output_path, HSM_AUDIT_NAME) - prov_req_jwt_path = os.path.join(output_path, PROV_REQ_JWT_FILE) - rot_auth_jwt_path = os.path.join(output_path, ROT_AUTH_JWT_FILE) - prov_jwt_path = os.path.join(output_path, PROV_JWT_FILE) - - if not os.path.exists(output_path): - os.makedirs(output_path) - - oem = OemEntity(oem_state_path, oem_audit_path) - hsm = HsmEntity(hsm_state_path, hsm_audit_path) - - with open(policy_path) as f: - json_str = f.read() - blob = json.loads(json_str) - blob['prod_id'] = prod_id - - customer = process_customer_keys(cust_key_path) - if len(customer) > 0: - blob['custom_pub_key'] = [key.get_pub_key() for key in customer] - - prov_req = oem.create_provision_request(blob) - crypto.dump_jwt(prov_req, prov_req_jwt_path) - - rot_auth_pkg = oem.pack_rot_auth(prod_id, hsm.state["hsm_pub_key"]) - crypto.dump_jwt(rot_auth_pkg, rot_auth_jwt_path) - - prov_cmd = hsm.pack_provision_cmd( - cy_auth=cy_auth_path, - image_cert=image_cert, - prov_req=prov_req, - rot_auth=rot_auth_pkg, - chain_of_trust=dev_cert) - crypto.dump_jwt(prov_cmd, prov_jwt_path) - - print('#' * 80) - print('Provisioning packet is created') - print('#' * 80) - - -if __name__ == "__main__": - main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/provision_device_runner.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/provision_device_runner.py deleted file mode 100644 index 6b4c8282a29..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/provision_device_runner.py +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -import sys -import click -from execute.helper import get_target_name -from execute.enums import DebugCore -from execute.provision_device import provision_execution -from execute.programmer.programmer import ProgrammingTool -from prepare.provisioning_lib.cyprov_pem import PemKey - - -TOOL_NAME = 'pyocd' # Programming/debugging tool used for communication with device -ACCESS_PORT = DebugCore.debug_sys_ap # Access port used for device provisioning - - -@click.command() -@click.option('--prov-jwt', 'prov_cmd_jwt', - default='packet/prov_cmd.jwt', - type=click.STRING, - help='Path to provisioning JWT file (packet which contains all data necessary ' - 'for provisioning, including policy, authorization packets and keys)') -@click.option('--hex', 'cy_bootloader_hex', - default='prebuild/CyBootloader_Release/CypressBootloader_CM0p.hex', - type=click.STRING, - help='Path to Cypress Bootloader HEX binary file') -@click.option('--pubkey-json', 'pub_key_json', - default='keys/dev_pub_key.json', - type=click.STRING, - help='File where to save public key in JSON format') -@click.option('--pubkey-pem', 'pub_key_pem', - default='keys/dev_pub_key.pem', - type=click.STRING, - help='File where to save public key in PEM format') -def main(prov_cmd_jwt, cy_bootloader_hex, pub_key_json, pub_key_pem): - """ - Parses command line arguments and provides high level support for - provisioning device with the specified programming tool. - :param prov_cmd_jwt: Path to provisioning JWT file (packet which contains - all data necessary for provisioning, including policy, authorization - packets and keys). - :param cy_bootloader_hex: Path to Cypress Bootloader program file. - :param pub_key_json: File where to save public key in JSON format. - :param pub_key_pem: File where to save public key in PEM format. - """ - # Verify arguments - target = get_target_name(TOOL_NAME, ACCESS_PORT) - if not target: - print('Invalid access port.') - sys.exit(1) - - test_status = False - tool = ProgrammingTool.create(TOOL_NAME) - if tool.connect(target): - test_status = provision_execution(tool, pub_key_json, prov_cmd_jwt, cy_bootloader_hex) - - if test_status: - # Read device response file and take device key from it - if os.path.exists(pub_key_json): - pem = PemKey(pub_key_json) - pem.save(pub_key_pem, private_key=False) - else: - sys.exit(1) - - -if __name__ == "__main__": - main() diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/requirements.txt b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/requirements.txt deleted file mode 100644 index c24d45be803..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/requirements.txt +++ /dev/null @@ -1,7 +0,0 @@ -# To install next python modules, please execute command: -# python -m pip install -r requirements.txt - -cryptography>=2.4.2 -Click>=7.0 -intelhex>=2.2.1 -jwcrypto>=0.6.0 \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_large.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_large.hex deleted file mode 100644 index 3b8fa29b367..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_large.hex +++ /dev/null @@ -1,1410 +0,0 @@ -:020000041000EA -:20000000000100083101001000000000000000000000000000000000000000000000000095 -:200020000000000000000000000000000000000000000000000000000000000000000000C0 -:200040000000000000000000000000000000000000000000000000000000000000000000A0 -:20006000000000000000000000000000000000000000000000000000000000000000000080 -:20008000000000000000000000000000000000000000000000000000000000000000000060 -:2000A000000000000000000000000000000000000000000000000000000000000000000040 -:2000C000000000000000000000000000000000000000000000000000000000000000000020 -:2000E000000000000000000000000000000000000000000000000000000000000000000000 -:20010000526F736574746120636F646500000000764FAF5C61AC315F1497F9DFA5427139C1 -:2001200065B785E5CC2F707D6468D7D1124CDFCF13B500240C4800F01DF8210000940123B3 -:2001400006220A4800F062F80123009406221900064800F05BF801340222044B0448DC6021 -:20016000DA6000F099F8F7E7280300108000324020BCBE00014B18607047C0463C1000084A -:2001800070B50D00044C01001822200000F094F8A56101BEFEE7C0460010000870B5060013 -:2001A0000C001500072903D914491548FFF7E8FF1F232A009A4303D012491148FFF7E0FFD6 -:2001C000114B1B689A695B69B01AC0090001C0181F231D40032C07D8E400A340A54002684A -:2001E0009A431543056070BD043CE400A340A54042689A4315434560F5E7C04642020000A2 -:2002000033040010430200003C100008F7B51D0008AB1B7807000E0014000193072903D926 -:20022000D1211B48FFF7ACFF0F2322009A4303D0D2211748FFF7A4FF012D03D9D32114487F -:20024000FFF79EFF1F23019A9A4303D0D4211048FFF796FF012211001540B140B5400F2008 -:200260003B6804408B431D433D600500B1008D408C40084B31001B68380063331A78BA1844 -:200280001368AB431C431460019AFFF787FFF7BD100400103C1000080230800803D0013021 -:2002A0000238FCD1C046C0467047EFF3108072B6704780F310887047000052E3011041E2F8 -:2002C00000C0A0E11EFF2F0110402DE90C30A0E101E0F1E500005EE3014042E201E0C3E488 -:2002E0000400001A02C08CE00C0053E10500000A01E0C3E4FBFFFFEA000054E303C0A0E17D -:200300000420A0E1F0FFFF1A1040BDE81EFF2FE10DC0A0E1F8DF2DE904B04CE20DC0A0E1A3 -:20032000F8DF2DE904B04CE20000214000002540000001400000344000002440000031409E -:200340000000324000001F4101010101010101010110101080550501053B04101C01010045 -:200360000FC000000000100001010101011D3A577896000820000010000F002000023F062F -:20038000080E00080009000A000B24282C3034001000000090000000880000000800000015 -:2003A0008000000004F0000000F000002005A000D00100018001A00110000000040000000C -:2003C000400000004400000048000000800000000001000010020000880200000004000030 -:2003E00010040000200400004004000048040000800400008404000090040000C0070000CE -:20040000C4070000C8070000CC070000004000002E2F68616C2F70646C2F64726976657273 -:20042000732F736F757263652F63795F6770696F2E63002E2F68616C2F70646C2F64726970 -:20044000766572732F696E636C7564652F63795F6770696F2E68000000000000000000001A -:2004600000000000000000000000000000000000000000000000000000000000000000007C -:2004800000000000000000000000000000000000000000000000000000000000000000005C -:2004A00000000000000000000000000000000000000000000000000000000000000000003C -:2004C00000000000000000000000000000000000000000000000000000000000000000001C -:2004E0000000000000000000000000000000000000000000000000000000000000000000FC -:200500000000000000000000000000000000000000000000000000000000000000000000DB -:200520000000000000000000000000000000000000000000000000000000000000000000BB -:2005400000000000000000000000000000000000000000000000000000000000000000009B -:2005600000000000000000000000000000000000000000000000000000000000000000007B -:2005800000000000000000000000000000000000000000000000000000000000000000005B -:2005A00000000000000000000000000000000000000000000000000000000000000000003B -:2005C00000000000000000000000000000000000000000000000000000000000000000001B -:2005E0000000000000000000000000000000000000000000000000000000000000000000FB -:200600000000000000000000000000000000000000000000000000000000000000000000DA -:200620000000000000000000000000000000000000000000000000000000000000000000BA -:2006400000000000000000000000000000000000000000000000000000000000000000009A -:2006600000000000000000000000000000000000000000000000000000000000000000007A -:2006800000000000000000000000000000000000000000000000000000000000000000005A -:2006A00000000000000000000000000000000000000000000000000000000000000000003A -:2006C00000000000000000000000000000000000000000000000000000000000000000001A -:2006E0000000000000000000000000000000000000000000000000000000000000000000FA -:200700000000000000000000000000000000000000000000000000000000000000000000D9 -:200720000000000000000000000000000000000000000000000000000000000000000000B9 -:20074000000000000000000000000000000000000000000000000000000000000000000099 -:20076000000000000000000000000000000000000000000000000000000000000000000079 -:20078000000000000000000000000000000000000000000000000000000000000000000059 -:2007A000000000000000000000000000000000000000000000000000000000000000000039 -:2007C000000000000000000000000000000000000000000000000000000000000000000019 -:2007E0000000000000000000000000000000000000000000000000000000000000000000F9 -:200800000000000000000000000000000000000000000000000000000000000000000000D8 -:200820000000000000000000000000000000000000000000000000000000000000000000B8 -:20084000000000000000000000000000000000000000000000000000000000000000000098 -:20086000000000000000000000000000000000000000000000000000000000000000000078 -:20088000000000000000000000000000000000000000000000000000000000000000000058 -:2008A000000000000000000000000000000000000000000000000000000000000000000038 -:2008C000000000000000000000000000000000000000000000000000000000000000000018 -:2008E0000000000000000000000000000000000000000000000000000000000000000000F8 -:200900000000000000000000000000000000000000000000000000000000000000000000D7 -:200920000000000000000000000000000000000000000000000000000000000000000000B7 -:20094000000000000000000000000000000000000000000000000000000000000000000097 -:20096000000000000000000000000000000000000000000000000000000000000000000077 -:20098000000000000000000000000000000000000000000000000000000000000000000057 -:2009A000000000000000000000000000000000000000000000000000000000000000000037 -:2009C000000000000000000000000000000000000000000000000000000000000000000017 -:2009E0000000000000000000000000000000000000000000000000000000000000000000F7 -:200A00000000000000000000000000000000000000000000000000000000000000000000D6 -:200A20000000000000000000000000000000000000000000000000000000000000000000B6 -:200A4000000000000000000000000000000000000000000000000000000000000000000096 -:200A6000000000000000000000000000000000000000000000000000000000000000000076 -:200A8000000000000000000000000000000000000000000000000000000000000000000056 -:200AA000000000000000000000000000000000000000000000000000000000000000000036 -:200AC000000000000000000000000000000000000000000000000000000000000000000016 -:200AE0000000000000000000000000000000000000000000000000000000000000000000F6 -:200B00000000000000000000000000000000000000000000000000000000000000000000D5 -:200B20000000000000000000000000000000000000000000000000000000000000000000B5 -:200B4000000000000000000000000000000000000000000000000000000000000000000095 -:200B6000000000000000000000000000000000000000000000000000000000000000000075 -:200B8000000000000000000000000000000000000000000000000000000000000000000055 -:200BA000000000000000000000000000000000000000000000000000000000000000000035 -:200BC000000000000000000000000000000000000000000000000000000000000000000015 -:200BE0000000000000000000000000000000000000000000000000000000000000000000F5 -:200C00000000000000000000000000000000000000000000000000000000000000000000D4 -:200C20000000000000000000000000000000000000000000000000000000000000000000B4 -:200C4000000000000000000000000000000000000000000000000000000000000000000094 -:200C6000000000000000000000000000000000000000000000000000000000000000000074 -:200C8000000000000000000000000000000000000000000000000000000000000000000054 -:200CA000000000000000000000000000000000000000000000000000000000000000000034 -:200CC000000000000000000000000000000000000000000000000000000000000000000014 -:200CE0000000000000000000000000000000000000000000000000000000000000000000F4 -:200D00000000000000000000000000000000000000000000000000000000000000000000D3 -:200D20000000000000000000000000000000000000000000000000000000000000000000B3 -:200D4000000000000000000000000000000000000000000000000000000000000000000093 -:200D6000000000000000000000000000000000000000000000000000000000000000000073 -:200D8000000000000000000000000000000000000000000000000000000000000000000053 -:200DA000000000000000000000000000000000000000000000000000000000000000000033 -:200DC000000000000000000000000000000000000000000000000000000000000000000013 -:200DE0000000000000000000000000000000000000000000000000000000000000000000F3 -:200E00000000000000000000000000000000000000000000000000000000000000000000D2 -:200E20000000000000000000000000000000000000000000000000000000000000000000B2 -:200E4000000000000000000000000000000000000000000000000000000000000000000092 -:200E6000000000000000000000000000000000000000000000000000000000000000000072 -:200E8000000000000000000000000000000000000000000000000000000000000000000052 -:200EA000000000000000000000000000000000000000000000000000000000000000000032 -:200EC000000000000000000000000000000000000000000000000000000000000000000012 -:200EE0000000000000000000000000000000000000000000000000000000000000000000F2 -:200F00000000000000000000000000000000000000000000000000000000000000000000D1 -:200F20000000000000000000000000000000000000000000000000000000000000000000B1 -:200F4000000000000000000000000000000000000000000000000000000000000000000091 -:200F6000000000000000000000000000000000000000000000000000000000000000000071 -:200F8000000000000000000000000000000000000000000000000000000000000000000051 -:200FA000000000000000000000000000000000000000000000000000000000000000000031 -:200FC000000000000000000000000000000000000000000000000000000000000000000011 -:200FE0000000000000000000000000000000000000000000000000000000000000000000F1 -:201000000000000000000000000000000000000000000000000000000000000000000000D0 -:201020000000000000000000000000000000000000000000000000000000000000000000B0 -:20104000000000000000000000000000000000000000000000000000000000000000000090 -:20106000000000000000000000000000000000000000000000000000000000000000000070 -:20108000000000000000000000000000000000000000000000000000000000000000000050 -:2010A000000000000000000000000000000000000000000000000000000000000000000030 -:2010C000000000000000000000000000000000000000000000000000000000000000000010 -:2010E0000000000000000000000000000000000000000000000000000000000000000000F0 -:201100000000000000000000000000000000000000000000000000000000000000000000CF -:201120000000000000000000000000000000000000000000000000000000000000000000AF -:2011400000000000000000000000000000000000000000000000000000000000000000008F -:2011600000000000000000000000000000000000000000000000000000000000000000006F -:2011800000000000000000000000000000000000000000000000000000000000000000004F -:2011A00000000000000000000000000000000000000000000000000000000000000000002F -:2011C00000000000000000000000000000000000000000000000000000000000000000000F -:2011E0000000000000000000000000000000000000000000000000000000000000000000EF -:201200000000000000000000000000000000000000000000000000000000000000000000CE -:201220000000000000000000000000000000000000000000000000000000000000000000AE -:2012400000000000000000000000000000000000000000000000000000000000000000008E -:2012600000000000000000000000000000000000000000000000000000000000000000006E -:2012800000000000000000000000000000000000000000000000000000000000000000004E -:2012A00000000000000000000000000000000000000000000000000000000000000000002E -:2012C00000000000000000000000000000000000000000000000000000000000000000000E -:2012E0000000000000000000000000000000000000000000000000000000000000000000EE -:201300000000000000000000000000000000000000000000000000000000000000000000CD -:201320000000000000000000000000000000000000000000000000000000000000000000AD -:2013400000000000000000000000000000000000000000000000000000000000000000008D -:2013600000000000000000000000000000000000000000000000000000000000000000006D -:2013800000000000000000000000000000000000000000000000000000000000000000004D -:2013A00000000000000000000000000000000000000000000000000000000000000000002D -:2013C00000000000000000000000000000000000000000000000000000000000000000000D -:2013E0000000000000000000000000000000000000000000000000000000000000000000ED -:201400000000000000000000000000000000000000000000000000000000000000000000CC -:201420000000000000000000000000000000000000000000000000000000000000000000AC -:2014400000000000000000000000000000000000000000000000000000000000000000008C -:2014600000000000000000000000000000000000000000000000000000000000000000006C -:2014800000000000000000000000000000000000000000000000000000000000000000004C -:2014A00000000000000000000000000000000000000000000000000000000000000000002C -:2014C00000000000000000000000000000000000000000000000000000000000000000000C -:2014E0000000000000000000000000000000000000000000000000000000000000000000EC -:201500000000000000000000000000000000000000000000000000000000000000000000CB -:201520000000000000000000000000000000000000000000000000000000000000000000AB -:2015400000000000000000000000000000000000000000000000000000000000000000008B -:2015600000000000000000000000000000000000000000000000000000000000000000006B -:2015800000000000000000000000000000000000000000000000000000000000000000004B -:2015A00000000000000000000000000000000000000000000000000000000000000000002B -:2015C00000000000000000000000000000000000000000000000000000000000000000000B -:2015E0000000000000000000000000000000000000000000000000000000000000000000EB -:201600000000000000000000000000000000000000000000000000000000000000000000CA -:201620000000000000000000000000000000000000000000000000000000000000000000AA -:2016400000000000000000000000000000000000000000000000000000000000000000008A -:2016600000000000000000000000000000000000000000000000000000000000000000006A -:2016800000000000000000000000000000000000000000000000000000000000000000004A -:2016A00000000000000000000000000000000000000000000000000000000000000000002A -:2016C00000000000000000000000000000000000000000000000000000000000000000000A -:2016E0000000000000000000000000000000000000000000000000000000000000000000EA -:201700000000000000000000000000000000000000000000000000000000000000000000C9 -:201720000000000000000000000000000000000000000000000000000000000000000000A9 -:20174000000000000000000000000000000000000000000000000000000000000000000089 -:20176000000000000000000000000000000000000000000000000000000000000000000069 -:20178000000000000000000000000000000000000000000000000000000000000000000049 -:2017A000000000000000000000000000000000000000000000000000000000000000000029 -:2017C000000000000000000000000000000000000000000000000000000000000000000009 -:2017E0000000000000000000000000000000000000000000000000000000000000000000E9 -:201800000000000000000000000000000000000000000000000000000000000000000000C8 -:201820000000000000000000000000000000000000000000000000000000000000000000A8 -:20184000000000000000000000000000000000000000000000000000000000000000000088 -:20186000000000000000000000000000000000000000000000000000000000000000000068 -:20188000000000000000000000000000000000000000000000000000000000000000000048 -:2018A000000000000000000000000000000000000000000000000000000000000000000028 -:2018C000000000000000000000000000000000000000000000000000000000000000000008 -:2018E0000000000000000000000000000000000000000000000000000000000000000000E8 -:201900000000000000000000000000000000000000000000000000000000000000000000C7 -:201920000000000000000000000000000000000000000000000000000000000000000000A7 -:20194000000000000000000000000000000000000000000000000000000000000000000087 -:20196000000000000000000000000000000000000000000000000000000000000000000067 -:20198000000000000000000000000000000000000000000000000000000000000000000047 -:2019A000000000000000000000000000000000000000000000000000000000000000000027 -:2019C000000000000000000000000000000000000000000000000000000000000000000007 -:2019E0000000000000000000000000000000000000000000000000000000000000000000E7 -:201A00000000000000000000000000000000000000000000000000000000000000000000C6 -:201A20000000000000000000000000000000000000000000000000000000000000000000A6 -:201A4000000000000000000000000000000000000000000000000000000000000000000086 -:201A6000000000000000000000000000000000000000000000000000000000000000000066 -:201A8000000000000000000000000000000000000000000000000000000000000000000046 -:201AA000000000000000000000000000000000000000000000000000000000000000000026 -:201AC000000000000000000000000000000000000000000000000000000000000000000006 -:201AE0000000000000000000000000000000000000000000000000000000000000000000E6 -:201B00000000000000000000000000000000000000000000000000000000000000000000C5 -:201B20000000000000000000000000000000000000000000000000000000000000000000A5 -:201B4000000000000000000000000000000000000000000000000000000000000000000085 -:201B6000000000000000000000000000000000000000000000000000000000000000000065 -:201B8000000000000000000000000000000000000000000000000000000000000000000045 -:201BA000000000000000000000000000000000000000000000000000000000000000000025 -:201BC000000000000000000000000000000000000000000000000000000000000000000005 -:201BE0000000000000000000000000000000000000000000000000000000000000000000E5 -:201C00000000000000000000000000000000000000000000000000000000000000000000C4 -:201C20000000000000000000000000000000000000000000000000000000000000000000A4 -:201C4000000000000000000000000000000000000000000000000000000000000000000084 -:201C6000000000000000000000000000000000000000000000000000000000000000000064 -:201C8000000000000000000000000000000000000000000000000000000000000000000044 -:201CA000000000000000000000000000000000000000000000000000000000000000000024 -:201CC000000000000000000000000000000000000000000000000000000000000000000004 -:201CE0000000000000000000000000000000000000000000000000000000000000000000E4 -:201D00000000000000000000000000000000000000000000000000000000000000000000C3 -:201D20000000000000000000000000000000000000000000000000000000000000000000A3 -:201D4000000000000000000000000000000000000000000000000000000000000000000083 -:201D6000000000000000000000000000000000000000000000000000000000000000000063 -:201D8000000000000000000000000000000000000000000000000000000000000000000043 -:201DA000000000000000000000000000000000000000000000000000000000000000000023 -:201DC000000000000000000000000000000000000000000000000000000000000000000003 -:201DE0000000000000000000000000000000000000000000000000000000000000000000E3 -:201E00000000000000000000000000000000000000000000000000000000000000000000C2 -:201E20000000000000000000000000000000000000000000000000000000000000000000A2 -:201E4000000000000000000000000000000000000000000000000000000000000000000082 -:201E6000000000000000000000000000000000000000000000000000000000000000000062 -:201E8000000000000000000000000000000000000000000000000000000000000000000042 -:201EA000000000000000000000000000000000000000000000000000000000000000000022 -:201EC000000000000000000000000000000000000000000000000000000000000000000002 -:201EE0000000000000000000000000000000000000000000000000000000000000000000E2 -:201F00000000000000000000000000000000000000000000000000000000000000000000C1 -:201F20000000000000000000000000000000000000000000000000000000000000000000A1 -:201F4000000000000000000000000000000000000000000000000000000000000000000081 -:201F6000000000000000000000000000000000000000000000000000000000000000000061 -:201F8000000000000000000000000000000000000000000000000000000000000000000041 -:201FA000000000000000000000000000000000000000000000000000000000000000000021 -:201FC000000000000000000000000000000000000000000000000000000000000000000001 -:201FE0000000000000000000000000000000000000000000000000000000000000000000E1 -:202000000000000000000000000000000000000000000000000000000000000000000000C0 -:202020000000000000000000000000000000000000000000000000000000000000000000A0 -:20204000000000000000000000000000000000000000000000000000000000000000000080 -:20206000000000000000000000000000000000000000000000000000000000000000000060 -:20208000000000000000000000000000000000000000000000000000000000000000000040 -:2020A000000000000000000000000000000000000000000000000000000000000000000020 -:2020C000000000000000000000000000000000000000000000000000000000000000000000 -:2020E0000000000000000000000000000000000000000000000000000000000000000000E0 -:202100000000000000000000000000000000000000000000000000000000000000000000BF -:2021200000000000000000000000000000000000000000000000000000000000000000009F -:2021400000000000000000000000000000000000000000000000000000000000000000007F -:2021600000000000000000000000000000000000000000000000000000000000000000005F -:2021800000000000000000000000000000000000000000000000000000000000000000003F -:2021A00000000000000000000000000000000000000000000000000000000000000000001F -:2021C0000000000000000000000000000000000000000000000000000000000000000000FF -:2021E0000000000000000000000000000000000000000000000000000000000000000000DF -:202200000000000000000000000000000000000000000000000000000000000000000000BE -:2022200000000000000000000000000000000000000000000000000000000000000000009E -:2022400000000000000000000000000000000000000000000000000000000000000000007E -:2022600000000000000000000000000000000000000000000000000000000000000000005E -:2022800000000000000000000000000000000000000000000000000000000000000000003E -:2022A00000000000000000000000000000000000000000000000000000000000000000001E -:2022C0000000000000000000000000000000000000000000000000000000000000000000FE -:2022E0000000000000000000000000000000000000000000000000000000000000000000DE -:202300000000000000000000000000000000000000000000000000000000000000000000BD -:2023200000000000000000000000000000000000000000000000000000000000000000009D -:2023400000000000000000000000000000000000000000000000000000000000000000007D -:2023600000000000000000000000000000000000000000000000000000000000000000005D -:2023800000000000000000000000000000000000000000000000000000000000000000003D -:2023A00000000000000000000000000000000000000000000000000000000000000000001D -:2023C0000000000000000000000000000000000000000000000000000000000000000000FD -:2023E0000000000000000000000000000000000000000000000000000000000000000000DD -:202400000000000000000000000000000000000000000000000000000000000000000000BC -:2024200000000000000000000000000000000000000000000000000000000000000000009C -:2024400000000000000000000000000000000000000000000000000000000000000000007C -:2024600000000000000000000000000000000000000000000000000000000000000000005C -:2024800000000000000000000000000000000000000000000000000000000000000000003C -:2024A00000000000000000000000000000000000000000000000000000000000000000001C -:2024C0000000000000000000000000000000000000000000000000000000000000000000FC -:2024E0000000000000000000000000000000000000000000000000000000000000000000DC -:202500000000000000000000000000000000000000000000000000000000000000000000BB -:2025200000000000000000000000000000000000000000000000000000000000000000009B -:2025400000000000000000000000000000000000000000000000000000000000000000007B -:2025600000000000000000000000000000000000000000000000000000000000000000005B -:2025800000000000000000000000000000000000000000000000000000000000000000003B -:2025A00000000000000000000000000000000000000000000000000000000000000000001B -:2025C0000000000000000000000000000000000000000000000000000000000000000000FB -:2025E0000000000000000000000000000000000000000000000000000000000000000000DB -:202600000000000000000000000000000000000000000000000000000000000000000000BA -:2026200000000000000000000000000000000000000000000000000000000000000000009A -:2026400000000000000000000000000000000000000000000000000000000000000000007A -:2026600000000000000000000000000000000000000000000000000000000000000000005A -:2026800000000000000000000000000000000000000000000000000000000000000000003A -:2026A00000000000000000000000000000000000000000000000000000000000000000001A -:2026C0000000000000000000000000000000000000000000000000000000000000000000FA -:2026E0000000000000000000000000000000000000000000000000000000000000000000DA -:202700000000000000000000000000000000000000000000000000000000000000000000B9 -:20272000000000000000000000000000000000000000000000000000000000000000000099 -:20274000000000000000000000000000000000000000000000000000000000000000000079 -:20276000000000000000000000000000000000000000000000000000000000000000000059 -:20278000000000000000000000000000000000000000000000000000000000000000000039 -:2027A000000000000000000000000000000000000000000000000000000000000000000019 -:2027C0000000000000000000000000000000000000000000000000000000000000000000F9 -:2027E0000000000000000000000000000000000000000000000000000000000000000000D9 -:202800000000000000000000000000000000000000000000000000000000000000000000B8 -:20282000000000000000000000000000000000000000000000000000000000000000000098 -:20284000000000000000000000000000000000000000000000000000000000000000000078 -:20286000000000000000000000000000000000000000000000000000000000000000000058 -:20288000000000000000000000000000000000000000000000000000000000000000000038 -:2028A000000000000000000000000000000000000000000000000000000000000000000018 -:2028C0000000000000000000000000000000000000000000000000000000000000000000F8 -:2028E0000000000000000000000000000000000000000000000000000000000000000000D8 -:202900000000000000000000000000000000000000000000000000000000000000000000B7 -:20292000000000000000000000000000000000000000000000000000000000000000000097 -:20294000000000000000000000000000000000000000000000000000000000000000000077 -:20296000000000000000000000000000000000000000000000000000000000000000000057 -:20298000000000000000000000000000000000000000000000000000000000000000000037 -:2029A000000000000000000000000000000000000000000000000000000000000000000017 -:2029C0000000000000000000000000000000000000000000000000000000000000000000F7 -:2029E0000000000000000000000000000000000000000000000000000000000000000000D7 -:202A00000000000000000000000000000000000000000000000000000000000000000000B6 -:202A2000000000000000000000000000000000000000000000000000000000000000000096 -:202A4000000000000000000000000000000000000000000000000000000000000000000076 -:202A6000000000000000000000000000000000000000000000000000000000000000000056 -:202A8000000000000000000000000000000000000000000000000000000000000000000036 -:202AA000000000000000000000000000000000000000000000000000000000000000000016 -:202AC0000000000000000000000000000000000000000000000000000000000000000000F6 -:202AE0000000000000000000000000000000000000000000000000000000000000000000D6 -:202B00000000000000000000000000000000000000000000000000000000000000000000B5 -:202B2000000000000000000000000000000000000000000000000000000000000000000095 -:202B4000000000000000000000000000000000000000000000000000000000000000000075 -:202B6000000000000000000000000000000000000000000000000000000000000000000055 -:202B8000000000000000000000000000000000000000000000000000000000000000000035 -:202BA000000000000000000000000000000000000000000000000000000000000000000015 -:202BC0000000000000000000000000000000000000000000000000000000000000000000F5 -:202BE0000000000000000000000000000000000000000000000000000000000000000000D5 -:202C00000000000000000000000000000000000000000000000000000000000000000000B4 -:202C2000000000000000000000000000000000000000000000000000000000000000000094 -:202C4000000000000000000000000000000000000000000000000000000000000000000074 -:202C6000000000000000000000000000000000000000000000000000000000000000000054 -:202C8000000000000000000000000000000000000000000000000000000000000000000034 -:202CA000000000000000000000000000000000000000000000000000000000000000000014 -:202CC0000000000000000000000000000000000000000000000000000000000000000000F4 -:202CE0000000000000000000000000000000000000000000000000000000000000000000D4 -:202D00000000000000000000000000000000000000000000000000000000000000000000B3 -:202D2000000000000000000000000000000000000000000000000000000000000000000093 -:202D4000000000000000000000000000000000000000000000000000000000000000000073 -:202D6000000000000000000000000000000000000000000000000000000000000000000053 -:202D8000000000000000000000000000000000000000000000000000000000000000000033 -:202DA000000000000000000000000000000000000000000000000000000000000000000013 -:202DC0000000000000000000000000000000000000000000000000000000000000000000F3 -:202DE0000000000000000000000000000000000000000000000000000000000000000000D3 -:202E00000000000000000000000000000000000000000000000000000000000000000000B2 -:202E2000000000000000000000000000000000000000000000000000000000000000000092 -:202E4000000000000000000000000000000000000000000000000000000000000000000072 -:202E6000000000000000000000000000000000000000000000000000000000000000000052 -:202E8000000000000000000000000000000000000000000000000000000000000000000032 -:202EA000000000000000000000000000000000000000000000000000000000000000000012 -:202EC0000000000000000000000000000000000000000000000000000000000000000000F2 -:202EE0000000000000000000000000000000000000000000000000000000000000000000D2 -:202F00000000000000000000000000000000000000000000000000000000000000000000B1 -:202F2000000000000000000000000000000000000000000000000000000000000000000091 -:202F4000000000000000000000000000000000000000000000000000000000000000000071 -:202F6000000000000000000000000000000000000000000000000000000000000000000051 -:202F8000000000000000000000000000000000000000000000000000000000000000000031 -:202FA000000000000000000000000000000000000000000000000000000000000000000011 -:202FC0000000000000000000000000000000000000000000000000000000000000000000F1 -:202FE0000000000000000000000000000000000000000000000000000000000000000000D1 -:203000000000000000000000000000000000000000000000000000000000000000000000B0 -:20302000000000000000000000000000000000000000000000000000000000000000000090 -:20304000000000000000000000000000000000000000000000000000000000000000000070 -:20306000000000000000000000000000000000000000000000000000000000000000000050 -:20308000000000000000000000000000000000000000000000000000000000000000000030 -:2030A000000000000000000000000000000000000000000000000000000000000000000010 -:2030C0000000000000000000000000000000000000000000000000000000000000000000F0 -:2030E0000000000000000000000000000000000000000000000000000000000000000000D0 -:203100000000000000000000000000000000000000000000000000000000000000000000AF -:2031200000000000000000000000000000000000000000000000000000000000000000008F -:2031400000000000000000000000000000000000000000000000000000000000000000006F -:2031600000000000000000000000000000000000000000000000000000000000000000004F -:2031800000000000000000000000000000000000000000000000000000000000000000002F -:2031A00000000000000000000000000000000000000000000000000000000000000000000F -:2031C0000000000000000000000000000000000000000000000000000000000000000000EF -:2031E0000000000000000000000000000000000000000000000000000000000000000000CF -:203200000000000000000000000000000000000000000000000000000000000000000000AE -:2032200000000000000000000000000000000000000000000000000000000000000000008E -:2032400000000000000000000000000000000000000000000000000000000000000000006E -:2032600000000000000000000000000000000000000000000000000000000000000000004E -:2032800000000000000000000000000000000000000000000000000000000000000000002E -:2032A00000000000000000000000000000000000000000000000000000000000000000000E -:2032C0000000000000000000000000000000000000000000000000000000000000000000EE -:2032E0000000000000000000000000000000000000000000000000000000000000000000CE -:203300000000000000000000000000000000000000000000000000000000000000000000AD -:2033200000000000000000000000000000000000000000000000000000000000000000008D -:2033400000000000000000000000000000000000000000000000000000000000000000006D -:2033600000000000000000000000000000000000000000000000000000000000000000004D -:2033800000000000000000000000000000000000000000000000000000000000000000002D -:2033A00000000000000000000000000000000000000000000000000000000000000000000D -:2033C0000000000000000000000000000000000000000000000000000000000000000000ED -:2033E0000000000000000000000000000000000000000000000000000000000000000000CD -:203400000000000000000000000000000000000000000000000000000000000000000000AC -:2034200000000000000000000000000000000000000000000000000000000000000000008C -:2034400000000000000000000000000000000000000000000000000000000000000000006C -:2034600000000000000000000000000000000000000000000000000000000000000000004C -:2034800000000000000000000000000000000000000000000000000000000000000000002C -:2034A00000000000000000000000000000000000000000000000000000000000000000000C -:2034C0000000000000000000000000000000000000000000000000000000000000000000EC -:2034E0000000000000000000000000000000000000000000000000000000000000000000CC -:203500000000000000000000000000000000000000000000000000000000000000000000AB -:2035200000000000000000000000000000000000000000000000000000000000000000008B -:2035400000000000000000000000000000000000000000000000000000000000000000006B -:2035600000000000000000000000000000000000000000000000000000000000000000004B -:2035800000000000000000000000000000000000000000000000000000000000000000002B -:2035A00000000000000000000000000000000000000000000000000000000000000000000B -:2035C0000000000000000000000000000000000000000000000000000000000000000000EB -:2035E0000000000000000000000000000000000000000000000000000000000000000000CB -:203600000000000000000000000000000000000000000000000000000000000000000000AA -:2036200000000000000000000000000000000000000000000000000000000000000000008A -:2036400000000000000000000000000000000000000000000000000000000000000000006A -:2036600000000000000000000000000000000000000000000000000000000000000000004A -:2036800000000000000000000000000000000000000000000000000000000000000000002A -:2036A00000000000000000000000000000000000000000000000000000000000000000000A -:2036C0000000000000000000000000000000000000000000000000000000000000000000EA -:2036E0000000000000000000000000000000000000000000000000000000000000000000CA -:203700000000000000000000000000000000000000000000000000000000000000000000A9 -:20372000000000000000000000000000000000000000000000000000000000000000000089 -:20374000000000000000000000000000000000000000000000000000000000000000000069 -:20376000000000000000000000000000000000000000000000000000000000000000000049 -:20378000000000000000000000000000000000000000000000000000000000000000000029 -:2037A000000000000000000000000000000000000000000000000000000000000000000009 -:2037C0000000000000000000000000000000000000000000000000000000000000000000E9 -:2037E0000000000000000000000000000000000000000000000000000000000000000000C9 -:203800000000000000000000000000000000000000000000000000000000000000000000A8 -:20382000000000000000000000000000000000000000000000000000000000000000000088 -:20384000000000000000000000000000000000000000000000000000000000000000000068 -:20386000000000000000000000000000000000000000000000000000000000000000000048 -:20388000000000000000000000000000000000000000000000000000000000000000000028 -:2038A000000000000000000000000000000000000000000000000000000000000000000008 -:2038C0000000000000000000000000000000000000000000000000000000000000000000E8 -:2038E0000000000000000000000000000000000000000000000000000000000000000000C8 -:203900000000000000000000000000000000000000000000000000000000000000000000A7 -:20392000000000000000000000000000000000000000000000000000000000000000000087 -:20394000000000000000000000000000000000000000000000000000000000000000000067 -:20396000000000000000000000000000000000000000000000000000000000000000000047 -:20398000000000000000000000000000000000000000000000000000000000000000000027 -:2039A000000000000000000000000000000000000000000000000000000000000000000007 -:2039C0000000000000000000000000000000000000000000000000000000000000000000E7 -:2039E0000000000000000000000000000000000000000000000000000000000000000000C7 -:203A00000000000000000000000000000000000000000000000000000000000000000000A6 -:203A2000000000000000000000000000000000000000000000000000000000000000000086 -:203A4000000000000000000000000000000000000000000000000000000000000000000066 -:203A6000000000000000000000000000000000000000000000000000000000000000000046 -:203A8000000000000000000000000000000000000000000000000000000000000000000026 -:203AA000000000000000000000000000000000000000000000000000000000000000000006 -:203AC0000000000000000000000000000000000000000000000000000000000000000000E6 -:203AE0000000000000000000000000000000000000000000000000000000000000000000C6 -:203B00000000000000000000000000000000000000000000000000000000000000000000A5 -:203B2000000000000000000000000000000000000000000000000000000000000000000085 -:203B4000000000000000000000000000000000000000000000000000000000000000000065 -:203B6000000000000000000000000000000000000000000000000000000000000000000045 -:203B8000000000000000000000000000000000000000000000000000000000000000000025 -:203BA000000000000000000000000000000000000000000000000000000000000000000005 -:203BC0000000000000000000000000000000000000000000000000000000000000000000E5 -:203BE0000000000000000000000000000000000000000000000000000000000000000000C5 -:203C00000000000000000000000000000000000000000000000000000000000000000000A4 -:203C2000000000000000000000000000000000000000000000000000000000000000000084 -:203C4000000000000000000000000000000000000000000000000000000000000000000064 -:203C6000000000000000000000000000000000000000000000000000000000000000000044 -:203C8000000000000000000000000000000000000000000000000000000000000000000024 -:203CA000000000000000000000000000000000000000000000000000000000000000000004 -:203CC0000000000000000000000000000000000000000000000000000000000000000000E4 -:203CE0000000000000000000000000000000000000000000000000000000000000000000C4 -:203D00000000000000000000000000000000000000000000000000000000000000000000A3 -:203D2000000000000000000000000000000000000000000000000000000000000000000083 -:203D4000000000000000000000000000000000000000000000000000000000000000000063 -:203D6000000000000000000000000000000000000000000000000000000000000000000043 -:203D8000000000000000000000000000000000000000000000000000000000000000000023 -:203DA000000000000000000000000000000000000000000000000000000000000000000003 -:203DC0000000000000000000000000000000000000000000000000000000000000000000E3 -:203DE0000000000000000000000000000000000000000000000000000000000000000000C3 -:203E00000000000000000000000000000000000000000000000000000000000000000000A2 -:203E2000000000000000000000000000000000000000000000000000000000000000000082 -:203E4000000000000000000000000000000000000000000000000000000000000000000062 -:203E6000000000000000000000000000000000000000000000000000000000000000000042 -:203E8000000000000000000000000000000000000000000000000000000000000000000022 -:203EA000000000000000000000000000000000000000000000000000000000000000000002 -:203EC0000000000000000000000000000000000000000000000000000000000000000000E2 -:203EE0000000000000000000000000000000000000000000000000000000000000000000C2 -:203F00000000000000000000000000000000000000000000000000000000000000000000A1 -:203F2000000000000000000000000000000000000000000000000000000000000000000081 -:203F4000000000000000000000000000000000000000000000000000000000000000000061 -:203F6000000000000000000000000000000000000000000000000000000000000000000041 -:203F8000000000000000000000000000000000000000000000000000000000000000000021 -:203FA000000000000000000000000000000000000000000000000000000000000000000001 -:203FC0000000000000000000000000000000000000000000000000000000000000000000E1 -:203FE0000000000000000000000000000000000000000000000000000000000000000000C1 -:204000000000000000000000000000000000000000000000000000000000000000000000A0 -:20402000000000000000000000000000000000000000000000000000000000000000000080 -:20404000000000000000000000000000000000000000000000000000000000000000000060 -:20406000000000000000000000000000000000000000000000000000000000000000000040 -:20408000000000000000000000000000000000000000000000000000000000000000000020 -:2040A000000000000000000000000000000000000000000000000000000000000000000000 -:2040C0000000000000000000000000000000000000000000000000000000000000000000E0 -:2040E0000000000000000000000000000000000000000000000000000000000000000000C0 -:2041000000000000000000000000000000000000000000000000000000000000000000009F -:2041200000000000000000000000000000000000000000000000000000000000000000007F -:2041400000000000000000000000000000000000000000000000000000000000000000005F -:2041600000000000000000000000000000000000000000000000000000000000000000003F -:2041800000000000000000000000000000000000000000000000000000000000000000001F -:2041A0000000000000000000000000000000000000000000000000000000000000000000FF -:2041C0000000000000000000000000000000000000000000000000000000000000000000DF -:2041E0000000000000000000000000000000000000000000000000000000000000000000BF -:2042000000000000000000000000000000000000000000000000000000000000000000009E -:2042200000000000000000000000000000000000000000000000000000000000000000007E -:2042400000000000000000000000000000000000000000000000000000000000000000005E -:2042600000000000000000000000000000000000000000000000000000000000000000003E -:2042800000000000000000000000000000000000000000000000000000000000000000001E -:2042A0000000000000000000000000000000000000000000000000000000000000000000FE -:2042C0000000000000000000000000000000000000000000000000000000000000000000DE -:2042E0000000000000000000000000000000000000000000000000000000000000000000BE -:2043000000000000000000000000000000000000000000000000000000000000000000009D -:2043200000000000000000000000000000000000000000000000000000000000000000007D -:2043400000000000000000000000000000000000000000000000000000000000000000005D -:2043600000000000000000000000000000000000000000000000000000000000000000003D -:2043800000000000000000000000000000000000000000000000000000000000000000001D -:2043A0000000000000000000000000000000000000000000000000000000000000000000FD -:2043C0000000000000000000000000000000000000000000000000000000000000000000DD -:2043E0000000000000000000000000000000000000000000000000000000000000000000BD -:2044000000000000000000000000000000000000000000000000000000000000000000009C -:2044200000000000000000000000000000000000000000000000000000000000000000007C -:2044400000000000000000000000000000000000000000000000000000000000000000005C -:2044600000000000000000000000000000000000000000000000000000000000000000003C -:2044800000000000000000000000000000000000000000000000000000000000000000001C -:2044A0000000000000000000000000000000000000000000000000000000000000000000FC -:2044C0000000000000000000000000000000000000000000000000000000000000000000DC -:2044E0000000000000000000000000000000000000000000000000000000000000000000BC -:2045000000000000000000000000000000000000000000000000000000000000000000009B -:2045200000000000000000000000000000000000000000000000000000000000000000007B -:2045400000000000000000000000000000000000000000000000000000000000000000005B -:2045600000000000000000000000000000000000000000000000000000000000000000003B -:2045800000000000000000000000000000000000000000000000000000000000000000001B -:2045A0000000000000000000000000000000000000000000000000000000000000000000FB -:2045C0000000000000000000000000000000000000000000000000000000000000000000DB -:2045E0000000000000000000000000000000000000000000000000000000000000000000BB -:2046000000000000000000000000000000000000000000000000000000000000000000009A -:2046200000000000000000000000000000000000000000000000000000000000000000007A -:2046400000000000000000000000000000000000000000000000000000000000000000005A -:2046600000000000000000000000000000000000000000000000000000000000000000003A -:2046800000000000000000000000000000000000000000000000000000000000000000001A -:2046A0000000000000000000000000000000000000000000000000000000000000000000FA -:2046C0000000000000000000000000000000000000000000000000000000000000000000DA -:2046E0000000000000000000000000000000000000000000000000000000000000000000BA -:20470000000000000000000000000000000000000000000000000000000000000000000099 -:20472000000000000000000000000000000000000000000000000000000000000000000079 -:20474000000000000000000000000000000000000000000000000000000000000000000059 -:20476000000000000000000000000000000000000000000000000000000000000000000039 -:20478000000000000000000000000000000000000000000000000000000000000000000019 -:2047A0000000000000000000000000000000000000000000000000000000000000000000F9 -:2047C0000000000000000000000000000000000000000000000000000000000000000000D9 -:2047E0000000000000000000000000000000000000000000000000000000000000000000B9 -:20480000000000000000000000000000000000000000000000000000000000000000000098 -:20482000000000000000000000000000000000000000000000000000000000000000000078 -:20484000000000000000000000000000000000000000000000000000000000000000000058 -:20486000000000000000000000000000000000000000000000000000000000000000000038 -:20488000000000000000000000000000000000000000000000000000000000000000000018 -:2048A0000000000000000000000000000000000000000000000000000000000000000000F8 -:2048C0000000000000000000000000000000000000000000000000000000000000000000D8 -:2048E0000000000000000000000000000000000000000000000000000000000000000000B8 -:20490000000000000000000000000000000000000000000000000000000000000000000097 -:20492000000000000000000000000000000000000000000000000000000000000000000077 -:20494000000000000000000000000000000000000000000000000000000000000000000057 -:20496000000000000000000000000000000000000000000000000000000000000000000037 -:20498000000000000000000000000000000000000000000000000000000000000000000017 -:2049A0000000000000000000000000000000000000000000000000000000000000000000F7 -:2049C0000000000000000000000000000000000000000000000000000000000000000000D7 -:2049E0000000000000000000000000000000000000000000000000000000000000000000B7 -:204A0000000000000000000000000000000000000000000000000000000000000000000096 -:204A2000000000000000000000000000000000000000000000000000000000000000000076 -:204A4000000000000000000000000000000000000000000000000000000000000000000056 -:204A6000000000000000000000000000000000000000000000000000000000000000000036 -:204A8000000000000000000000000000000000000000000000000000000000000000000016 -:204AA0000000000000000000000000000000000000000000000000000000000000000000F6 -:204AC0000000000000000000000000000000000000000000000000000000000000000000D6 -:204AE0000000000000000000000000000000000000000000000000000000000000000000B6 -:204B0000000000000000000000000000000000000000000000000000000000000000000095 -:204B2000000000000000000000000000000000000000000000000000000000000000000075 -:204B4000000000000000000000000000000000000000000000000000000000000000000055 -:204B6000000000000000000000000000000000000000000000000000000000000000000035 -:204B8000000000000000000000000000000000000000000000000000000000000000000015 -:204BA0000000000000000000000000000000000000000000000000000000000000000000F5 -:204BC0000000000000000000000000000000000000000000000000000000000000000000D5 -:204BE0000000000000000000000000000000000000000000000000000000000000000000B5 -:204C0000000000000000000000000000000000000000000000000000000000000000000094 -:204C2000000000000000000000000000000000000000000000000000000000000000000074 -:204C4000000000000000000000000000000000000000000000000000000000000000000054 -:204C6000000000000000000000000000000000000000000000000000000000000000000034 -:204C8000000000000000000000000000000000000000000000000000000000000000000014 -:204CA0000000000000000000000000000000000000000000000000000000000000000000F4 -:204CC0000000000000000000000000000000000000000000000000000000000000000000D4 -:204CE0000000000000000000000000000000000000000000000000000000000000000000B4 -:204D0000000000000000000000000000000000000000000000000000000000000000000093 -:204D2000000000000000000000000000000000000000000000000000000000000000000073 -:204D4000000000000000000000000000000000000000000000000000000000000000000053 -:204D6000000000000000000000000000000000000000000000000000000000000000000033 -:204D8000000000000000000000000000000000000000000000000000000000000000000013 -:204DA0000000000000000000000000000000000000000000000000000000000000000000F3 -:204DC0000000000000000000000000000000000000000000000000000000000000000000D3 -:204DE0000000000000000000000000000000000000000000000000000000000000000000B3 -:204E0000000000000000000000000000000000000000000000000000000000000000000092 -:204E2000000000000000000000000000000000000000000000000000000000000000000072 -:204E4000000000000000000000000000000000000000000000000000000000000000000052 -:204E6000000000000000000000000000000000000000000000000000000000000000000032 -:204E8000000000000000000000000000000000000000000000000000000000000000000012 -:204EA0000000000000000000000000000000000000000000000000000000000000000000F2 -:204EC0000000000000000000000000000000000000000000000000000000000000000000D2 -:204EE0000000000000000000000000000000000000000000000000000000000000000000B2 -:204F0000000000000000000000000000000000000000000000000000000000000000000091 -:204F2000000000000000000000000000000000000000000000000000000000000000000071 -:204F4000000000000000000000000000000000000000000000000000000000000000000051 -:204F6000000000000000000000000000000000000000000000000000000000000000000031 -:204F8000000000000000000000000000000000000000000000000000000000000000000011 -:204FA0000000000000000000000000000000000000000000000000000000000000000000F1 -:204FC0000000000000000000000000000000000000000000000000000000000000000000D1 -:204FE0000000000000000000000000000000000000000000000000000000000000000000B1 -:20500000000000000000000000000000000000000000000000000000000000000000000090 -:20502000000000000000000000000000000000000000000000000000000000000000000070 -:20504000000000000000000000000000000000000000000000000000000000000000000050 -:20506000000000000000000000000000000000000000000000000000000000000000000030 -:20508000000000000000000000000000000000000000000000000000000000000000000010 -:2050A0000000000000000000000000000000000000000000000000000000000000000000F0 -:2050C0000000000000000000000000000000000000000000000000000000000000000000D0 -:2050E0000000000000000000000000000000000000000000000000000000000000000000B0 -:2051000000000000000000000000000000000000000000000000000000000000000000008F -:2051200000000000000000000000000000000000000000000000000000000000000000006F -:2051400000000000000000000000000000000000000000000000000000000000000000004F -:2051600000000000000000000000000000000000000000000000000000000000000000002F -:2051800000000000000000000000000000000000000000000000000000000000000000000F -:2051A0000000000000000000000000000000000000000000000000000000000000000000EF -:2051C0000000000000000000000000000000000000000000000000000000000000000000CF -:2051E0000000000000000000000000000000000000000000000000000000000000000000AF -:2052000000000000000000000000000000000000000000000000000000000000000000008E -:2052200000000000000000000000000000000000000000000000000000000000000000006E -:2052400000000000000000000000000000000000000000000000000000000000000000004E -:2052600000000000000000000000000000000000000000000000000000000000000000002E -:2052800000000000000000000000000000000000000000000000000000000000000000000E -:2052A0000000000000000000000000000000000000000000000000000000000000000000EE -:2052C0000000000000000000000000000000000000000000000000000000000000000000CE -:2052E0000000000000000000000000000000000000000000000000000000000000000000AE -:2053000000000000000000000000000000000000000000000000000000000000000000008D -:2053200000000000000000000000000000000000000000000000000000000000000000006D -:2053400000000000000000000000000000000000000000000000000000000000000000004D -:2053600000000000000000000000000000000000000000000000000000000000000000002D -:2053800000000000000000000000000000000000000000000000000000000000000000000D -:2053A0000000000000000000000000000000000000000000000000000000000000000000ED -:2053C0000000000000000000000000000000000000000000000000000000000000000000CD -:2053E0000000000000000000000000000000000000000000000000000000000000000000AD -:2054000000000000000000000000000000000000000000000000000000000000000000008C -:2054200000000000000000000000000000000000000000000000000000000000000000006C -:2054400000000000000000000000000000000000000000000000000000000000000000004C -:2054600000000000000000000000000000000000000000000000000000000000000000002C -:2054800000000000000000000000000000000000000000000000000000000000000000000C -:2054A0000000000000000000000000000000000000000000000000000000000000000000EC -:2054C0000000000000000000000000000000000000000000000000000000000000000000CC -:2054E0000000000000000000000000000000000000000000000000000000000000000000AC -:2055000000000000000000000000000000000000000000000000000000000000000000008B -:2055200000000000000000000000000000000000000000000000000000000000000000006B -:2055400000000000000000000000000000000000000000000000000000000000000000004B -:2055600000000000000000000000000000000000000000000000000000000000000000002B -:2055800000000000000000000000000000000000000000000000000000000000000000000B -:2055A0000000000000000000000000000000000000000000000000000000000000000000EB -:2055C0000000000000000000000000000000000000000000000000000000000000000000CB -:2055E0000000000000000000000000000000000000000000000000000000000000000000AB -:2056000000000000000000000000000000000000000000000000000000000000000000008A -:2056200000000000000000000000000000000000000000000000000000000000000000006A -:2056400000000000000000000000000000000000000000000000000000000000000000004A -:2056600000000000000000000000000000000000000000000000000000000000000000002A -:2056800000000000000000000000000000000000000000000000000000000000000000000A -:2056A0000000000000000000000000000000000000000000000000000000000000000000EA -:2056C0000000000000000000000000000000000000000000000000000000000000000000CA -:2056E0000000000000000000000000000000000000000000000000000000000000000000AA -:20570000000000000000000000000000000000000000000000000000000000000000000089 -:20572000000000000000000000000000000000000000000000000000000000000000000069 -:20574000000000000000000000000000000000000000000000000000000000000000000049 -:20576000000000000000000000000000000000000000000000000000000000000000000029 -:20578000000000000000000000000000000000000000000000000000000000000000000009 -:2057A0000000000000000000000000000000000000000000000000000000000000000000E9 -:2057C0000000000000000000000000000000000000000000000000000000000000000000C9 -:2057E0000000000000000000000000000000000000000000000000000000000000000000A9 -:20580000000000000000000000000000000000000000000000000000000000000000000088 -:20582000000000000000000000000000000000000000000000000000000000000000000068 -:20584000000000000000000000000000000000000000000000000000000000000000000048 -:20586000000000000000000000000000000000000000000000000000000000000000000028 -:20588000000000000000000000000000000000000000000000000000000000000000000008 -:2058A0000000000000000000000000000000000000000000000000000000000000000000E8 -:2058C0000000000000000000000000000000000000000000000000000000000000000000C8 -:2058E0000000000000000000000000000000000000000000000000000000000000000000A8 -:20590000000000000000000000000000000000000000000000000000000000000000000087 -:20592000000000000000000000000000000000000000000000000000000000000000000067 -:20594000000000000000000000000000000000000000000000000000000000000000000047 -:20596000000000000000000000000000000000000000000000000000000000000000000027 -:20598000000000000000000000000000000000000000000000000000000000000000000007 -:2059A0000000000000000000000000000000000000000000000000000000000000000000E7 -:2059C0000000000000000000000000000000000000000000000000000000000000000000C7 -:2059E0000000000000000000000000000000000000000000000000000000000000000000A7 -:205A0000000000000000000000000000000000000000000000000000000000000000000086 -:205A2000000000000000000000000000000000000000000000000000000000000000000066 -:205A4000000000000000000000000000000000000000000000000000000000000000000046 -:205A6000000000000000000000000000000000000000000000000000000000000000000026 -:205A8000000000000000000000000000000000000000000000000000000000000000000006 -:205AA0000000000000000000000000000000000000000000000000000000000000000000E6 -:205AC0000000000000000000000000000000000000000000000000000000000000000000C6 -:205AE0000000000000000000000000000000000000000000000000000000000000000000A6 -:205B0000000000000000000000000000000000000000000000000000000000000000000085 -:205B2000000000000000000000000000000000000000000000000000000000000000000065 -:205B4000000000000000000000000000000000000000000000000000000000000000000045 -:205B6000000000000000000000000000000000000000000000000000000000000000000025 -:205B8000000000000000000000000000000000000000000000000000000000000000000005 -:205BA0000000000000000000000000000000000000000000000000000000000000000000E5 -:205BC0000000000000000000000000000000000000000000000000000000000000000000C5 -:205BE0000000000000000000000000000000000000000000000000000000000000000000A5 -:205C0000000000000000000000000000000000000000000000000000000000000000000084 -:205C2000000000000000000000000000000000000000000000000000000000000000000064 -:205C4000000000000000000000000000000000000000000000000000000000000000000044 -:205C6000000000000000000000000000000000000000000000000000000000000000000024 -:205C8000000000000000000000000000000000000000000000000000000000000000000004 -:205CA0000000000000000000000000000000000000000000000000000000000000000000E4 -:205CC0000000000000000000000000000000000000000000000000000000000000000000C4 -:205CE0000000000000000000000000000000000000000000000000000000000000000000A4 -:205D0000000000000000000000000000000000000000000000000000000000000000000083 -:205D2000000000000000000000000000000000000000000000000000000000000000000063 -:205D4000000000000000000000000000000000000000000000000000000000000000000043 -:205D6000000000000000000000000000000000000000000000000000000000000000000023 -:205D8000000000000000000000000000000000000000000000000000000000000000000003 -:205DA0000000000000000000000000000000000000000000000000000000000000000000E3 -:205DC0000000000000000000000000000000000000000000000000000000000000000000C3 -:205DE0000000000000000000000000000000000000000000000000000000000000000000A3 -:205E0000000000000000000000000000000000000000000000000000000000000000000082 -:205E2000000000000000000000000000000000000000000000000000000000000000000062 -:205E4000000000000000000000000000000000000000000000000000000000000000000042 -:205E6000000000000000000000000000000000000000000000000000000000000000000022 -:205E8000000000000000000000000000000000000000000000000000000000000000000002 -:205EA0000000000000000000000000000000000000000000000000000000000000000000E2 -:205EC0000000000000000000000000000000000000000000000000000000000000000000C2 -:205EE0000000000000000000000000000000000000000000000000000000000000000000A2 -:205F0000000000000000000000000000000000000000000000000000000000000000000081 -:205F2000000000000000000000000000000000000000000000000000000000000000000061 -:205F4000000000000000000000000000000000000000000000000000000000000000000041 -:205F6000000000000000000000000000000000000000000000000000000000000000000021 -:205F8000000000000000000000000000000000000000000000000000000000000000000001 -:205FA0000000000000000000000000000000000000000000000000000000000000000000E1 -:205FC0000000000000000000000000000000000000000000000000000000000000000000C1 -:205FE0000000000000000000000000000000000000000000000000000000000000000000A1 -:20600000000000000000000000000000000000000000000000000000000000000000000080 -:20602000000000000000000000000000000000000000000000000000000000000000000060 -:20604000000000000000000000000000000000000000000000000000000000000000000040 -:20606000000000000000000000000000000000000000000000000000000000000000000020 -:20608000000000000000000000000000000000000000000000000000000000000000000000 -:2060A0000000000000000000000000000000000000000000000000000000000000000000E0 -:2060C0000000000000000000000000000000000000000000000000000000000000000000C0 -:2060E0000000000000000000000000000000000000000000000000000000000000000000A0 -:2061000000000000000000000000000000000000000000000000000000000000000000007F -:2061200000000000000000000000000000000000000000000000000000000000000000005F -:2061400000000000000000000000000000000000000000000000000000000000000000003F -:2061600000000000000000000000000000000000000000000000000000000000000000001F -:206180000000000000000000000000000000000000000000000000000000000000000000FF -:2061A0000000000000000000000000000000000000000000000000000000000000000000DF -:2061C0000000000000000000000000000000000000000000000000000000000000000000BF -:2061E00000000000000000000000000000000000000000000000000000000000000000009F -:2062000000000000000000000000000000000000000000000000000000000000000000007E -:2062200000000000000000000000000000000000000000000000000000000000000000005E -:2062400000000000000000000000000000000000000000000000000000000000000000003E -:2062600000000000000000000000000000000000000000000000000000000000000000001E -:206280000000000000000000000000000000000000000000000000000000000000000000FE -:2062A0000000000000000000000000000000000000000000000000000000000000000000DE -:2062C0000000000000000000000000000000000000000000000000000000000000000000BE -:2062E00000000000000000000000000000000000000000000000000000000000000000009E -:2063000000000000000000000000000000000000000000000000000000000000000000007D -:2063200000000000000000000000000000000000000000000000000000000000000000005D -:2063400000000000000000000000000000000000000000000000000000000000000000003D -:2063600000000000000000000000000000000000000000000000000000000000000000001D -:206380000000000000000000000000000000000000000000000000000000000000000000FD -:2063A0000000000000000000000000000000000000000000000000000000000000000000DD -:2063C0000000000000000000000000000000000000000000000000000000000000000000BD -:2063E00000000000000000000000000000000000000000000000000000000000000000009D -:2064000000000000000000000000000000000000000000000000000000000000000000007C -:2064200000000000000000000000000000000000000000000000000000000000000000005C -:2064400000000000000000000000000000000000000000000000000000000000000000003C -:2064600000000000000000000000000000000000000000000000000000000000000000001C -:206480000000000000000000000000000000000000000000000000000000000000000000FC -:2064A0000000000000000000000000000000000000000000000000000000000000000000DC -:2064C0000000000000000000000000000000000000000000000000000000000000000000BC -:2064E00000000000000000000000000000000000000000000000000000000000000000009C -:2065000000000000000000000000000000000000000000000000000000000000000000007B -:2065200000000000000000000000000000000000000000000000000000000000000000005B -:2065400000000000000000000000000000000000000000000000000000000000000000003B -:2065600000000000000000000000000000000000000000000000000000000000000000001B -:206580000000000000000000000000000000000000000000000000000000000000000000FB -:2065A0000000000000000000000000000000000000000000000000000000000000000000DB -:2065C0000000000000000000000000000000000000000000000000000000000000000000BB -:2065E00000000000000000000000000000000000000000000000000000000000000000009B -:2066000000000000000000000000000000000000000000000000000000000000000000007A -:2066200000000000000000000000000000000000000000000000000000000000000000005A -:2066400000000000000000000000000000000000000000000000000000000000000000003A -:2066600000000000000000000000000000000000000000000000000000000000000000001A -:206680000000000000000000000000000000000000000000000000000000000000000000FA -:2066A0000000000000000000000000000000000000000000000000000000000000000000DA -:2066C0000000000000000000000000000000000000000000000000000000000000000000BA -:2066E00000000000000000000000000000000000000000000000000000000000000000009A -:20670000000000000000000000000000000000000000000000000000000000000000000079 -:20672000000000000000000000000000000000000000000000000000000000000000000059 -:20674000000000000000000000000000000000000000000000000000000000000000000039 -:20676000000000000000000000000000000000000000000000000000000000000000000019 -:206780000000000000000000000000000000000000000000000000000000000000000000F9 -:2067A0000000000000000000000000000000000000000000000000000000000000000000D9 -:2067C0000000000000000000000000000000000000000000000000000000000000000000B9 -:2067E000000000000000000000000000000000000000000000000000000000000000000099 -:20680000000000000000000000000000000000000000000000000000000000000000000078 -:20682000000000000000000000000000000000000000000000000000000000000000000058 -:20684000000000000000000000000000000000000000000000000000000000000000000038 -:20686000000000000000000000000000000000000000000000000000000000000000000018 -:206880000000000000000000000000000000000000000000000000000000000000000000F8 -:2068A0000000000000000000000000000000000000000000000000000000000000000000D8 -:2068C0000000000000000000000000000000000000000000000000000000000000000000B8 -:2068E000000000000000000000000000000000000000000000000000000000000000000098 -:20690000000000000000000000000000000000000000000000000000000000000000000077 -:20692000000000000000000000000000000000000000000000000000000000000000000057 -:20694000000000000000000000000000000000000000000000000000000000000000000037 -:20696000000000000000000000000000000000000000000000000000000000000000000017 -:206980000000000000000000000000000000000000000000000000000000000000000000F7 -:2069A0000000000000000000000000000000000000000000000000000000000000000000D7 -:2069C0000000000000000000000000000000000000000000000000000000000000000000B7 -:2069E000000000000000000000000000000000000000000000000000000000000000000097 -:206A0000000000000000000000000000000000000000000000000000000000000000000076 -:206A2000000000000000000000000000000000000000000000000000000000000000000056 -:206A4000000000000000000000000000000000000000000000000000000000000000000036 -:206A6000000000000000000000000000000000000000000000000000000000000000000016 -:206A80000000000000000000000000000000000000000000000000000000000000000000F6 -:206AA0000000000000000000000000000000000000000000000000000000000000000000D6 -:206AC0000000000000000000000000000000000000000000000000000000000000000000B6 -:206AE000000000000000000000000000000000000000000000000000000000000000000096 -:206B0000000000000000000000000000000000000000000000000000000000000000000075 -:206B2000000000000000000000000000000000000000000000000000000000000000000055 -:206B4000000000000000000000000000000000000000000000000000000000000000000035 -:206B6000000000000000000000000000000000000000000000000000000000000000000015 -:206B80000000000000000000000000000000000000000000000000000000000000000000F5 -:206BA0000000000000000000000000000000000000000000000000000000000000000000D5 -:206BC0000000000000000000000000000000000000000000000000000000000000000000B5 -:206BE000000000000000000000000000000000000000000000000000000000000000000095 -:206C0000000000000000000000000000000000000000000000000000000000000000000074 -:206C2000000000000000000000000000000000000000000000000000000000000000000054 -:206C4000000000000000000000000000000000000000000000000000000000000000000034 -:206C6000000000000000000000000000000000000000000000000000000000000000000014 -:206C80000000000000000000000000000000000000000000000000000000000000000000F4 -:206CA0000000000000000000000000000000000000000000000000000000000000000000D4 -:206CC0000000000000000000000000000000000000000000000000000000000000000000B4 -:206CE000000000000000000000000000000000000000000000000000000000000000000094 -:206D0000000000000000000000000000000000000000000000000000000000000000000073 -:206D2000000000000000000000000000000000000000000000000000000000000000000053 -:206D4000000000000000000000000000000000000000000000000000000000000000000033 -:206D6000000000000000000000000000000000000000000000000000000000000000000013 -:206D80000000000000000000000000000000000000000000000000000000000000000000F3 -:206DA0000000000000000000000000000000000000000000000000000000000000000000D3 -:206DC0000000000000000000000000000000000000000000000000000000000000000000B3 -:206DE000000000000000000000000000000000000000000000000000000000000000000093 -:206E0000000000000000000000000000000000000000000000000000000000000000000072 -:206E2000000000000000000000000000000000000000000000000000000000000000000052 -:206E4000000000000000000000000000000000000000000000000000000000000000000032 -:206E6000000000000000000000000000000000000000000000000000000000000000000012 -:206E80000000000000000000000000000000000000000000000000000000000000000000F2 -:206EA0000000000000000000000000000000000000000000000000000000000000000000D2 -:206EC0000000000000000000000000000000000000000000000000000000000000000000B2 -:206EE000000000000000000000000000000000000000000000000000000000000000000092 -:206F0000000000000000000000000000000000000000000000000000000000000000000071 -:206F2000000000000000000000000000000000000000000000000000000000000000000051 -:206F4000000000000000000000000000000000000000000000000000000000000000000031 -:206F6000000000000000000000000000000000000000000000000000000000000000000011 -:206F80000000000000000000000000000000000000000000000000000000000000000000F1 -:206FA0000000000000000000000000000000000000000000000000000000000000000000D1 -:206FC0000000000000000000000000000000000000000000000000000000000000000000B1 -:206FE000000000000000000000000000000000000000000000000000000000000000000091 -:20700000000000000000000000000000000000000000000000000000000000000000000070 -:20702000000000000000000000000000000000000000000000000000000000000000000050 -:20704000000000000000000000000000000000000000000000000000000000000000000030 -:20706000000000000000000000000000000000000000000000000000000000000000000010 -:207080000000000000000000000000000000000000000000000000000000000000000000F0 -:2070A0000000000000000000000000000000000000000000000000000000000000000000D0 -:2070C0000000000000000000000000000000000000000000000000000000000000000000B0 -:2070E000000000000000000000000000000000000000000000000000000000000000000090 -:2071000000000000000000000000000000000000000000000000000000000000000000006F -:2071200000000000000000000000000000000000000000000000000000000000000000004F -:2071400000000000000000000000000000000000000000000000000000000000000000002F -:2071600000000000000000000000000000000000000000000000000000000000000000000F -:207180000000000000000000000000000000000000000000000000000000000000000000EF -:2071A0000000000000000000000000000000000000000000000000000000000000000000CF -:2071C0000000000000000000000000000000000000000000000000000000000000000000AF -:2071E00000000000000000000000000000000000000000000000000000000000000000008F -:2072000000000000000000000000000000000000000000000000000000000000000000006E -:2072200000000000000000000000000000000000000000000000000000000000000000004E -:2072400000000000000000000000000000000000000000000000000000000000000000002E -:2072600000000000000000000000000000000000000000000000000000000000000000000E -:207280000000000000000000000000000000000000000000000000000000000000000000EE -:2072A0000000000000000000000000000000000000000000000000000000000000000000CE -:2072C0000000000000000000000000000000000000000000000000000000000000000000AE -:2072E00000000000000000000000000000000000000000000000000000000000000000008E -:2073000000000000000000000000000000000000000000000000000000000000000000006D -:2073200000000000000000000000000000000000000000000000000000000000000000004D -:2073400000000000000000000000000000000000000000000000000000000000000000002D -:2073600000000000000000000000000000000000000000000000000000000000000000000D -:207380000000000000000000000000000000000000000000000000000000000000000000ED -:2073A0000000000000000000000000000000000000000000000000000000000000000000CD -:2073C0000000000000000000000000000000000000000000000000000000000000000000AD -:2073E00000000000000000000000000000000000000000000000000000000000000000008D -:2074000000000000000000000000000000000000000000000000000000000000000000006C -:2074200000000000000000000000000000000000000000000000000000000000000000004C -:2074400000000000000000000000000000000000000000000000000000000000000000002C -:2074600000000000000000000000000000000000000000000000000000000000000000000C -:207480000000000000000000000000000000000000000000000000000000000000000000EC -:2074A0000000000000000000000000000000000000000000000000000000000000000000CC -:2074C0000000000000000000000000000000000000000000000000000000000000000000AC -:2074E00000000000000000000000000000000000000000000000000000000000000000008C -:2075000000000000000000000000000000000000000000000000000000000000000000006B -:2075200000000000000000000000000000000000000000000000000000000000000000004B -:2075400000000000000000000000000000000000000000000000000000000000000000002B -:2075600000000000000000000000000000000000000000000000000000000000000000000B -:207580000000000000000000000000000000000000000000000000000000000000000000EB -:2075A0000000000000000000000000000000000000000000000000000000000000000000CB -:2075C0000000000000000000000000000000000000000000000000000000000000000000AB -:2075E00000000000000000000000000000000000000000000000000000000000000000008B -:2076000000000000000000000000000000000000000000000000000000000000000000006A -:2076200000000000000000000000000000000000000000000000000000000000000000004A -:2076400000000000000000000000000000000000000000000000000000000000000000002A -:2076600000000000000000000000000000000000000000000000000000000000000000000A -:207680000000000000000000000000000000000000000000000000000000000000000000EA -:2076A0000000000000000000000000000000000000000000000000000000000000000000CA -:2076C0000000000000000000000000000000000000000000000000000000000000000000AA -:2076E00000000000000000000000000000000000000000000000000000000000000000008A -:20770000000000000000000000000000000000000000000000000000000000000000000069 -:20772000000000000000000000000000000000000000000000000000000000000000000049 -:20774000000000000000000000000000000000000000000000000000000000000000000029 -:20776000000000000000000000000000000000000000000000000000000000000000000009 -:207780000000000000000000000000000000000000000000000000000000000000000000E9 -:2077A0000000000000000000000000000000000000000000000000000000000000000000C9 -:2077C0000000000000000000000000000000000000000000000000000000000000000000A9 -:2077E000000000000000000000000000000000000000000000000000000000000000000089 -:20780000000000000000000000000000000000000000000000000000000000000000000068 -:20782000000000000000000000000000000000000000000000000000000000000000000048 -:20784000000000000000000000000000000000000000000000000000000000000000000028 -:20786000000000000000000000000000000000000000000000000000000000000000000008 -:207880000000000000000000000000000000000000000000000000000000000000000000E8 -:2078A0000000000000000000000000000000000000000000000000000000000000000000C8 -:2078C0000000000000000000000000000000000000000000000000000000000000000000A8 -:2078E000000000000000000000000000000000000000000000000000000000000000000088 -:20790000000000000000000000000000000000000000000000000000000000000000000067 -:20792000000000000000000000000000000000000000000000000000000000000000000047 -:20794000000000000000000000000000000000000000000000000000000000000000000027 -:20796000000000000000000000000000000000000000000000000000000000000000000007 -:207980000000000000000000000000000000000000000000000000000000000000000000E7 -:2079A0000000000000000000000000000000000000000000000000000000000000000000C7 -:2079C0000000000000000000000000000000000000000000000000000000000000000000A7 -:2079E000000000000000000000000000000000000000000000000000000000000000000087 -:207A0000000000000000000000000000000000000000000000000000000000000000000066 -:207A2000000000000000000000000000000000000000000000000000000000000000000046 -:207A4000000000000000000000000000000000000000000000000000000000000000000026 -:207A6000000000000000000000000000000000000000000000000000000000000000000006 -:207A80000000000000000000000000000000000000000000000000000000000000000000E6 -:207AA0000000000000000000000000000000000000000000000000000000000000000000C6 -:207AC0000000000000000000000000000000000000000000000000000000000000000000A6 -:207AE000000000000000000000000000000000000000000000000000000000000000000086 -:207B0000000000000000000000000000000000000000000000000000000000000000000065 -:207B2000000000000000000000000000000000000000000000000000000000000000000045 -:207B4000000000000000000000000000000000000000000000000000000000000000000025 -:207B6000000000000000000000000000000000000000000000000000000000000000000005 -:207B80000000000000000000000000000000000000000000000000000000000000000000E5 -:207BA0000000000000000000000000000000000000000000000000000000000000000000C5 -:207BC0000000000000000000000000000000000000000000000000000000000000000000A5 -:207BE000000000000000000000000000000000000000000000000000000000000000000085 -:207C0000000000000000000000000000000000000000000000000000000000000000000064 -:207C2000000000000000000000000000000000000000000000000000000000000000000044 -:207C4000000000000000000000000000000000000000000000000000000000000000000024 -:207C6000000000000000000000000000000000000000000000000000000000000000000004 -:207C80000000000000000000000000000000000000000000000000000000000000000000E4 -:207CA0000000000000000000000000000000000000000000000000000000000000000000C4 -:207CC0000000000000000000000000000000000000000000000000000000000000000000A4 -:207CE000000000000000000000000000000000000000000000000000000000000000000084 -:207D0000000000000000000000000000000000000000000000000000000000000000000063 -:207D2000000000000000000000000000000000000000000000000000000000000000000043 -:207D4000000000000000000000000000000000000000000000000000000000000000000023 -:207D6000000000000000000000000000000000000000000000000000000000000000000003 -:207D80000000000000000000000000000000000000000000000000000000000000000000E3 -:207DA0000000000000000000000000000000000000000000000000000000000000000000C3 -:207DC0000000000000000000000000000000000000000000000000000000000000000000A3 -:207DE000000000000000000000000000000000000000000000000000000000000000000083 -:207E0000000000000000000000000000000000000000000000000000000000000000000062 -:207E2000000000000000000000000000000000000000000000000000000000000000000042 -:207E4000000000000000000000000000000000000000000000000000000000000000000022 -:207E6000000000000000000000000000000000000000000000000000000000000000000002 -:207E80000000000000000000000000000000000000000000000000000000000000000000E2 -:207EA0000000000000000000000000000000000000000000000000000000000000000000C2 -:207EC0000000000000000000000000000000000000000000000000000000000000000000A2 -:207EE000000000000000000000000000000000000000000000000000000000000000000082 -:207F0000000000000000000000000000000000000000000000000000000000000000000061 -:207F2000000000000000000000000000000000000000000000000000000000000000000041 -:207F4000000000000000000000000000000000000000000000000000000000000000000021 -:207F6000000000000000000000000000000000000000000000000000000000000000000001 -:207F80000000000000000000000000000000000000000000000000000000000000000000E1 -:207FA0000000000000000000000000000000000000000000000000000000000000000000C1 -:207FC0000000000000000000000000000000000000000000000000000000000000000000A1 -:207FE000000000000000000000000000000000000000000000000000000000000000000081 -:20800000000000000000000000000000000000000000000000000000000000000000000060 -:20802000000000000000000000000000000000000000000000000000000000000000000040 -:20804000000000000000000000000000000000000000000000000000000000000000000020 -:20806000000000000000000000000000000000000000000000000000000000000000000000 -:208080000000000000000000000000000000000000000000000000000000000000000000E0 -:2080A0000000000000000000000000000000000000000000000000000000000000000000C0 -:2080C0000000000000000000000000000000000000000000000000000000000000000000A0 -:2080E000000000000000000000000000000000000000000000000000000000000000000080 -:2081000000000000000000000000000000000000000000000000000000000000000000005F -:2081200000000000000000000000000000000000000000000000000000000000000000003F -:2081400000000000000000000000000000000000000000000000000000000000000000001F -:208160000000000000000000000000000000000000000000000000000000000000000000FF -:208180000000000000000000000000000000000000000000000000000000000000000000DF -:2081A0000000000000000000000000000000000000000000000000000000000000000000BF -:2081C00000000000000000000000000000000000000000000000000000000000000000009F -:2081E00000000000000000000000000000000000000000000000000000000000000000007F -:2082000000000000000000000000000000000000000000000000000000000000000000005E -:2082200000000000000000000000000000000000000000000000000000000000000000003E -:2082400000000000000000000000000000000000000000000000000000000000000000001E -:208260000000000000000000000000000000000000000000000000000000000000000000FE -:208280000000000000000000000000000000000000000000000000000000000000000000DE -:2082A0000000000000000000000000000000000000000000000000000000000000000000BE -:2082C00000000000000000000000000000000000000000000000000000000000000000009E -:2082E00000000000000000000000000000000000000000000000000000000000000000007E -:2083000000000000000000000000000000000000000000000000000000000000000000005D -:2083200000000000000000000000000000000000000000000000000000000000000000003D -:2083400000000000000000000000000000000000000000000000000000000000000000001D -:208360000000000000000000000000000000000000000000000000000000000000000000FD -:208380000000000000000000000000000000000000000000000000000000000000000000DD -:2083A0000000000000000000000000000000000000000000000000000000000000000000BD -:2083C00000000000000000000000000000000000000000000000000000000000000000009D -:2083E00000000000000000000000000000000000000000000000000000000000000000007D -:2084000000000000000000000000000000000000000000000000000000000000000000005C -:2084200000000000000000000000000000000000000000000000000000000000000000003C -:2084400000000000000000000000000000000000000000000000000000000000000000001C -:208460000000000000000000000000000000000000000000000000000000000000000000FC -:208480000000000000000000000000000000000000000000000000000000000000000000DC -:2084A0000000000000000000000000000000000000000000000000000000000000000000BC -:2084C00000000000000000000000000000000000000000000000000000000000000000009C -:2084E00000000000000000000000000000000000000000000000000000000000000000007C -:2085000000000000000000000000000000000000000000000000000000000000000000005B -:2085200000000000000000000000000000000000000000000000000000000000000000003B -:2085400000000000000000000000000000000000000000000000000000000000000000001B -:208560000000000000000000000000000000000000000000000000000000000000000000FB -:208580000000000000000000000000000000000000000000000000000000000000000000DB -:2085A0000000000000000000000000000000000000000000000000000000000000000000BB -:2085C00000000000000000000000000000000000000000000000000000000000000000009B -:2085E00000000000000000000000000000000000000000000000000000000000000000007B -:2086000000000000000000000000000000000000000000000000000000000000000000005A -:2086200000000000000000000000000000000000000000000000000000000000000000003A -:2086400000000000000000000000000000000000000000000000000000000000000000001A -:208660000000000000000000000000000000000000000000000000000000000000000000FA -:208680000000000000000000000000000000000000000000000000000000000000000000DA -:2086A0000000000000000000000000000000000000000000000000000000000000000000BA -:2086C00000000000000000000000000000000000000000000000000000000000000000009A -:2086E00000000000000000000000000000000000000000000000000000000000000000007A -:20870000000000000000000000000000000000000000000000000000000000000000000059 -:20872000000000000000000000000000000000000000000000000000000000000000000039 -:20874000000000000000000000000000000000000000000000000000000000000000000019 -:208760000000000000000000000000000000000000000000000000000000000000000000F9 -:208780000000000000000000000000000000000000000000000000000000000000000000D9 -:2087A0000000000000000000000000000000000000000000000000000000000000000000B9 -:2087C000000000000000000000000000000000000000000000000000000000000000000099 -:2087E000000000000000000000000000000000000000000000000000000000000000000079 -:20880000000000000000000000000000000000000000000000000000000000000000000058 -:20882000000000000000000000000000000000000000000000000000000000000000000038 -:20884000000000000000000000000000000000000000000000000000000000000000000018 -:208860000000000000000000000000000000000000000000000000000000000000000000F8 -:208880000000000000000000000000000000000000000000000000000000000000000000D8 -:2088A0000000000000000000000000000000000000000000000000000000000000000000B8 -:2088C000000000000000000000000000000000000000000000000000000000000000000098 -:2088E000000000000000000000000000000000000000000000000000000000000000000078 -:20890000000000000000000000000000000000000000000000000000000000000000000057 -:20892000000000000000000000000000000000000000000000000000000000000000000037 -:20894000000000000000000000000000000000000000000000000000000000000000000017 -:208960000000000000000000000000000000000000000000000000000000000000000000F7 -:208980000000000000000000000000000000000000000000000000000000000000000000D7 -:2089A0000000000000000000000000000000000000000000000000000000000000000000B7 -:2089C000000000000000000000000000000000000000000000000000000000000000000097 -:2089E000000000000000000000000000000000000000000000000000000000000000000077 -:208A0000000000000000000000000000000000000000000000000000000000000000000056 -:208A2000000000000000000000000000000000000000000000000000000000000000000036 -:208A4000000000000000000000000000000000000000000000000000000000000000000016 -:208A60000000000000000000000000000000000000000000000000000000000000000000F6 -:208A80000000000000000000000000000000000000000000000000000000000000000000D6 -:208AA0000000000000000000000000000000000000000000000000000000000000000000B6 -:208AC000000000000000000000000000000000000000000000000000000000000000000096 -:208AE000000000000000000000000000000000000000000000000000000000000000000076 -:208B0000000000000000000000000000000000000000000000000000000000000000000055 -:208B2000000000000000000000000000000000000000000000000000000000000000000035 -:208B4000000000000000000000000000000000000000000000000000000000000000000015 -:208B60000000000000000000000000000000000000000000000000000000000000000000F5 -:208B80000000000000000000000000000000000000000000000000000000000000000000D5 -:208BA0000000000000000000000000000000000000000000000000000000000000000000B5 -:208BC000000000000000000000000000000000000000000000000000000000000000000095 -:208BE000000000000000000000000000000000000000000000000000000000000000000075 -:208C0000000000000000000000000000000000000000000000000000000000000000000054 -:208C2000000000000000000000000000000000000000000000000000000000000000000034 -:208C4000000000000000000000000000000000000000000000000000000000000000000014 -:208C60000000000000000000000000000000000000000000000000000000000000000000F4 -:208C80000000000000000000000000000000000000000000000000000000000000000000D4 -:208CA0000000000000000000000000000000000000000000000000000000000000000000B4 -:208CC000000000000000000000000000000000000000000000000000000000000000000094 -:208CE000000000000000000000000000000000000000000000000000000000000000000074 -:208D0000000000000000000000000000000000000000000000000000000000000000000053 -:208D2000000000000000000000000000000000000000000000000000000000000000000033 -:208D4000000000000000000000000000000000000000000000000000000000000000000013 -:208D60000000000000000000000000000000000000000000000000000000000000000000F3 -:208D80000000000000000000000000000000000000000000000000000000000000000000D3 -:208DA0000000000000000000000000000000000000000000000000000000000000000000B3 -:208DC000000000000000000000000000000000000000000000000000000000000000000093 -:208DE000000000000000000000000000000000000000000000000000000000000000000073 -:208E0000000000000000000000000000000000000000000000000000000000000000000052 -:208E2000000000000000000000000000000000000000000000000000000000000000000032 -:208E4000000000000000000000000000000000000000000000000000000000000000000012 -:208E60000000000000000000000000000000000000000000000000000000000000000000F2 -:208E80000000000000000000000000000000000000000000000000000000000000000000D2 -:208EA0000000000000000000000000000000000000000000000000000000000000000000B2 -:208EC000000000000000000000000000000000000000000000000000000000000000000092 -:208EE000000000000000000000000000000000000000000000000000000000000000000072 -:208F0000000000000000000000000000000000000000000000000000000000000000000051 -:208F2000000000000000000000000000000000000000000000000000000000000000000031 -:208F4000000000000000000000000000000000000000000000000000000000000000000011 -:208F60000000000000000000000000000000000000000000000000000000000000000000F1 -:208F80000000000000000000000000000000000000000000000000000000000000000000D1 -:208FA0000000000000000000000000000000000000000000000000000000000000000000B1 -:208FC000000000000000000000000000000000000000000000000000000000000000000091 -:208FE000000000000000000000000000000000000000000000000000000000000000000071 -:20900000000000000000000000000000000000000000000000000000000000000000000050 -:20902000000000000000000000000000000000000000000000000000000000000000000030 -:20904000000000000000000000000000000000000000000000000000000000000000000010 -:209060000000000000000000000000000000000000000000000000000000000000000000F0 -:209080000000000000000000000000000000000000000000000000000000000000000000D0 -:2090A0000000000000000000000000000000000000000000000000000000000000000000B0 -:2090C000000000000000000000000000000000000000000000000000000000000000000090 -:2090E000000000000000000000000000000000000000000000000000000000000000000070 -:2091000000000000000000000000000000000000000000000000000000000000000000004F -:2091200000000000000000000000000000000000000000000000000000000000000000002F -:2091400000000000000000000000000000000000000000000000000000000000000000000F -:209160000000000000000000000000000000000000000000000000000000000000000000EF -:209180000000000000000000000000000000000000000000000000000000000000000000CF -:2091A0000000000000000000000000000000000000000000000000000000000000000000AF -:2091C00000000000000000000000000000000000000000000000000000000000000000008F -:2091E00000000000000000000000000000000000000000000000000000000000000000006F -:2092000000000000000000000000000000000000000000000000000000000000000000004E -:2092200000000000000000000000000000000000000000000000000000000000000000002E -:2092400000000000000000000000000000000000000000000000000000000000000000000E -:209260000000000000000000000000000000000000000000000000000000000000000000EE -:209280000000000000000000000000000000000000000000000000000000000000000000CE -:2092A0000000000000000000000000000000000000000000000000000000000000000000AE -:2092C00000000000000000000000000000000000000000000000000000000000000000008E -:2092E00000000000000000000000000000000000000000000000000000000000000000006E -:2093000000000000000000000000000000000000000000000000000000000000000000004D -:2093200000000000000000000000000000000000000000000000000000000000000000002D -:2093400000000000000000000000000000000000000000000000000000000000000000000D -:209360000000000000000000000000000000000000000000000000000000000000000000ED -:209380000000000000000000000000000000000000000000000000000000000000000000CD -:2093A0000000000000000000000000000000000000000000000000000000000000000000AD -:2093C00000000000000000000000000000000000000000000000000000000000000000008D -:2093E00000000000000000000000000000000000000000000000000000000000000000006D -:2094000000000000000000000000000000000000000000000000000000000000000000004C -:2094200000000000000000000000000000000000000000000000000000000000000000002C -:2094400000000000000000000000000000000000000000000000000000000000000000000C -:209460000000000000000000000000000000000000000000000000000000000000000000EC -:209480000000000000000000000000000000000000000000000000000000000000000000CC -:2094A0000000000000000000000000000000000000000000000000000000000000000000AC -:2094C00000000000000000000000000000000000000000000000000000000000000000008C -:2094E00000000000000000000000000000000000000000000000000000000000000000006C -:2095000000000000000000000000000000000000000000000000000000000000000000004B -:2095200000000000000000000000000000000000000000000000000000000000000000002B -:2095400000000000000000000000000000000000000000000000000000000000000000000B -:209560000000000000000000000000000000000000000000000000000000000000000000EB -:209580000000000000000000000000000000000000000000000000000000000000000000CB -:2095A0000000000000000000000000000000000000000000000000000000000000000000AB -:2095C00000000000000000000000000000000000000000000000000000000000000000008B -:2095E00000000000000000000000000000000000000000000000000000000000000000006B -:2096000000000000000000000000000000000000000000000000000000000000000000004A -:2096200000000000000000000000000000000000000000000000000000000000000000002A -:2096400000000000000000000000000000000000000000000000000000000000000000000A -:209660000000000000000000000000000000000000000000000000000000000000000000EA -:209680000000000000000000000000000000000000000000000000000000000000000000CA -:2096A0000000000000000000000000000000000000000000000000000000000000000000AA -:2096C00000000000000000000000000000000000000000000000000000000000000000008A -:2096E00000000000000000000000000000000000000000000000000000000000000000006A -:20970000000000000000000000000000000000000000000000000000000000000000000049 -:20972000000000000000000000000000000000000000000000000000000000000000000029 -:20974000000000000000000000000000000000000000000000000000000000000000000009 -:209760000000000000000000000000000000000000000000000000000000000000000000E9 -:209780000000000000000000000000000000000000000000000000000000000000000000C9 -:2097A0000000000000000000000000000000000000000000000000000000000000000000A9 -:2097C000000000000000000000000000000000000000000000000000000000000000000089 -:2097E000000000000000000000000000000000000000000000000000000000000000000069 -:20980000000000000000000000000000000000000000000000000000000000000000000048 -:20982000000000000000000000000000000000000000000000000000000000000000000028 -:20984000000000000000000000000000000000000000000000000000000000000000000008 -:209860000000000000000000000000000000000000000000000000000000000000000000E8 -:209880000000000000000000000000000000000000000000000000000000000000000000C8 -:2098A0000000000000000000000000000000000000000000000000000000000000000000A8 -:2098C000000000000000000000000000000000000000000000000000000000000000000088 -:2098E000000000000000000000000000000000000000000000000000000000000000000068 -:20990000000000000000000000000000000000000000000000000000000000000000000047 -:20992000000000000000000000000000000000000000000000000000000000000000000027 -:20994000000000000000000000000000000000000000000000000000000000000000000007 -:209960000000000000000000000000000000000000000000000000000000000000000000E7 -:209980000000000000000000000000000000000000000000000000000000000000000000C7 -:2099A0000000000000000000000000000000000000000000000000000000000000000000A7 -:2099C000000000000000000000000000000000000000000000000000000000000000000087 -:2099E000000000000000000000000000000000000000000000000000000000000000000067 -:209A0000000000000000000000000000000000000000000000000000000000000000000046 -:209A2000000000000000000000000000000000000000000000000000000000000000000026 -:209A4000000000000000000000000000000000000000000000000000000000000000000006 -:209A60000000000000000000000000000000000000000000000000000000000000000000E6 -:209A80000000000000000000000000000000000000000000000000000000000000000000C6 -:209AA0000000000000000000000000000000000000000000000000000000000000000000A6 -:209AC000000000000000000000000000000000000000000000000000000000000000000086 -:209AE000000000000000000000000000000000000000000000000000000000000000000066 -:209B0000000000000000000000000000000000000000000000000000000000000000000045 -:209B2000000000000000000000000000000000000000000000000000000000000000000025 -:209B4000000000000000000000000000000000000000000000000000000000000000000005 -:209B60000000000000000000000000000000000000000000000000000000000000000000E5 -:209B80000000000000000000000000000000000000000000000000000000000000000000C5 -:209BA0000000000000000000000000000000000000000000000000000000000000000000A5 -:209BC000000000000000000000000000000000000000000000000000000000000000000085 -:209BE000000000000000000000000000000000000000000000000000000000000000000065 -:209C0000000000000000000000000000000000000000000000000000000000000000000044 -:209C2000000000000000000000000000000000000000000000000000000000000000000024 -:209C4000000000000000000000000000000000000000000000000000000000000000000004 -:209C60000000000000000000000000000000000000000000000000000000000000000000E4 -:209C80000000000000000000000000000000000000000000000000000000000000000000C4 -:209CA0000000000000000000000000000000000000000000000000000000000000000000A4 -:209CC000000000000000000000000000000000000000000000000000000000000000000084 -:209CE000000000000000000000000000000000000000000000000000000000000000000064 -:209D0000000000000000000000000000000000000000000000000000000000000000000043 -:209D2000000000000000000000000000000000000000000000000000000000000000000023 -:209D4000000000000000000000000000000000000000000000000000000000000000000003 -:209D60000000000000000000000000000000000000000000000000000000000000000000E3 -:209D80000000000000000000000000000000000000000000000000000000000000000000C3 -:209DA0000000000000000000000000000000000000000000000000000000000000000000A3 -:209DC000000000000000000000000000000000000000000000000000000000000000000083 -:209DE000000000000000000000000000000000000000000000000000000000000000000063 -:209E0000000000000000000000000000000000000000000000000000000000000000000042 -:209E2000000000000000000000000000000000000000000000000000000000000000000022 -:209E4000000000000000000000000000000000000000000000000000000000000000000002 -:209E60000000000000000000000000000000000000000000000000000000000000000000E2 -:209E80000000000000000000000000000000000000000000000000000000000000000000C2 -:209EA0000000000000000000000000000000000000000000000000000000000000000000A2 -:209EC000000000000000000000000000000000000000000000000000000000000000000082 -:209EE000000000000000000000000000000000000000000000000000000000000000000062 -:209F0000000000000000000000000000000000000000000000000000000000000000000041 -:209F2000000000000000000000000000000000000000000000000000000000000000000021 -:209F4000000000000000000000000000000000000000000000000000000000000000000001 -:209F60000000000000000000000000000000000000000000000000000000000000000000E1 -:209F80000000000000000000000000000000000000000000000000000000000000000000C1 -:209FA0000000000000000000000000000000000000000000000000000000000000000000A1 -:209FC000000000000000000000000000000000000000000000000000000000000000000081 -:209FE000000000000000000000000000000000000000000000000000000000000000000061 -:20A00000000000000000000000000000000000000000000000000000000000000000000040 -:20A02000000000000000000000000000000000000000000000000000000000000000000020 -:20A04000000000000000000000000000000000000000000000000000000000000000000000 -:20A060000000000000000000000000000000000000000000000000000000000000000000E0 -:20A080000000000000000000000000000000000000000000000000000000000000000000C0 -:20A0A0000000000000000000000000000000000000000000000000000000000000000000A0 -:20A0C000000000000000000000000000000000000000000000000000000000000000000080 -:20A0E000000000000000000000000000000000000000000000000000000000000000000060 -:20A1000000000000000000000000000000000000000000000000000000000000000000003F -:20A1200000000000000000000000000000000000000000000000000000000000000000001F -:20A140000000000000000000000000000000000000000000000000000000000000000000FF -:20A160000000000000000000000000000000000000000000000000000000000000000000DF -:20A180000000000000000000000000000000000000000000000000000000000000000000BF -:20A1A00000000000000000000000000000000000000000000000000000000000000000009F -:20A1C00000000000000000000000000000000000000000000000000000000000000000007F -:20A1E00000000000000000000000000000000000000000000000000000000000000000005F -:20A2000000000000000000000000000000000000000000000000000000000000000000003E -:20A2200000000000000000000000000000000000000000000000000000000000000000001E -:20A240000000000000000000000000000000000000000000000000000000000000000000FE -:20A260000000000000000000000000000000000000000000000000000000000000000000DE -:20A280000000000000000000000000000000000000000000000000000000000000000000BE -:20A2A00000000000000000000000000000000000000000000000000000000000000000009E -:20A2C00000000000000000000000000000000000000000000000000000000000000000007E -:20A2E00000000000000000000000000000000000000000000000000000000000000000005E -:20A3000000000000000000000000000000000000000000000000000000000000000000003D -:20A3200000000000000000000000000000000000000000000000000000000000000000001D -:20A340000000000000000000000000000000000000000000000000000000000000000000FD -:20A360000000000000000000000000000000000000000000000000000000000000000000DD -:20A380000000000000000000000000000000000000000000000000000000000000000000BD -:20A3A00000000000000000000000000000000000000000000000000000000000000000009D -:20A3C00000000000000000000000000000000000000000000000000000000000000000007D -:20A3E00000000000000000000000000000000000000000000000000000000000000000005D -:20A4000000000000000000000000000000000000000000000000000000000000000000003C -:20A4200000000000000000000000000000000000000000000000000000000000000000001C -:20A440000000000000000000000000000000000000000000000000000000000000000000FC -:20A460000000000000000000000000000000000000000000000000000000000000000000DC -:20A480000000000000000000000000000000000000000000000000000000000000000000BC -:20A4A00000000000000000000000000000000000000000000000000000000000000000009C -:20A4C00000000000000000000000000000000000000000000000000000000000000000007C -:20A4E00000000000000000000000000000000000000000000000000000000000000000005C -:20A5000000000000000000000000000000000000000000000000000000000000000000003B -:20A5200000000000000000000000000000000000000000000000000000000000000000001B -:20A540000000000000000000000000000000000000000000000000000000000000000000FB -:20A560000000000000000000000000000000000000000000000000000000000000000000DB -:20A580000000000000000000000000000000000000000000000000000000000000000000BB -:20A5A00000000000000000000000000000000000000000000000000000000000000000009B -:20A5C00000000000000000000000000000000000000000000000000000000000000000007B -:20A5E00000000000000000000000000000000000000000000000000000000000000000005B -:20A6000000000000000000000000000000000000000000000000000000000000000000003A -:20A6200000000000000000000000000000000000000000000000000000000000000000001A -:20A640000000000000000000000000000000000000000000000000000000000000000000FA -:20A660000000000000000000000000000000000000000000000000000000000000000000DA -:20A680000000000000000000000000000000000000000000000000000000000000000000BA -:20A6A00000000000000000000000000000000000000000000000000000000000000000009A -:20A6C00000000000000000000000000000000000000000000000000000000000000000007A -:20A6E00000000000000000000000000000000000000000000000000000000000000000005A -:20A70000000000000000000000000000000000000000000000000000000000000000000039 -:20A72000000000000000000000000000000000000000000000000000000000000000000019 -:20A740000000000000000000000000000000000000000000000000000000000000000000F9 -:20A760000000000000000000000000000000000000000000000000000000000000000000D9 -:20A780000000000000000000000000000000000000000000000000000000000000000000B9 -:20A7A000000000000000000000000000000000000000000000000000000000000000000099 -:20A7C000000000000000000000000000000000000000000000000000000000000000000079 -:20A7E000000000000000000000000000000000000000000000000000000000000000000059 -:20A80000000000000000000000000000000000000000000000000000000000000000000038 -:20A82000000000000000000000000000000000000000000000000000000000000000000018 -:20A840000000000000000000000000000000000000000000000000000000000000000000F8 -:20A860000000000000000000000000000000000000000000000000000000000000000000D8 -:20A880000000000000000000000000000000000000000000000000000000000000000000B8 -:20A8A000000000000000000000000000000000000000000000000000000000000000000098 -:20A8C000000000000000000000000000000000000000000000000000000000000000000078 -:20A8E000000000000000000000000000000000000000000000000000000000000000000058 -:20A90000000000000000000000000000000000000000000000000000000000000000000037 -:20A92000000000000000000000000000000000000000000000000000000000000000000017 -:20A940000000000000000000000000000000000000000000000000000000000000000000F7 -:20A960000000000000000000000000000000000000000000000000000000000000000000D7 -:20A980000000000000000000000000000000000000000000000000000000000000000000B7 -:20A9A000000000000000000000000000000000000000000000000000000000000000000097 -:20A9C000000000000000000000000000000000000000000000000000000000000000000077 -:20A9E000000000000000000000000000000000000000000000000000000000000000000057 -:20AA0000000000000000000000000000000000000000000000000000000000000000000036 -:20AA2000000000000000000000000000000000000000000000000000000000000000000016 -:20AA40000000000000000000000000000000000000000000000000000000000000000000F6 -:20AA60000000000000000000000000000000000000000000000000000000000000000000D6 -:20AA80000000000000000000000000000000000000000000000000000000000000000000B6 -:20AAA000000000000000000000000000000000000000000000000000000000000000000096 -:20AAC000000000000000000000000000000000000000000000000000000000000000000076 -:20AAE000000000000000000000000000000000000000000000000000000000000000000056 -:20AB0000000000000000000000000000000000000000000000000000000000000000000035 -:20AB2000000000000000000000000000000000000000000000000000000000000000000015 -:20AB40000000000000000000000000000000000000000000000000000000000000000000F5 -:20AB60000000000000000000000000000000000000000000000000000000000000000000D5 -:20AB80000000000000000000000000000000000000000000000000000000000000000000B5 -:20ABA000000000000000000000000000000000000000000000000000000000000000000095 -:20ABC000000000000000000000000000000000000000000000000000000000000000000075 -:20ABE000000000000000000000000000000000000000000000000000000000000000000055 -:20AC0000000000000000000000000000000000000000000000000000000000000000000034 -:20AC2000000000000000000000000000000000000000000000000000000000000000000014 -:20AC40000000000000000000000000000000000000000000000000000000000000000000F4 -:20AC60000000000000000000000000000000000000000000000000000000000000000000D4 -:20AC80000000000000000000000000000000000000000000000000000000000000000000B4 -:20ACA000000000000000000000000000000000000000000000000000000000000000000094 -:20ACC000000000000000000000000000000000000000000000000000000000000000000074 -:20ACE000000000000000000000000000000000000000000000000000000000000000000054 -:20AD0000000000000000000000000000000000000000000000000000000000000000000033 -:20AD2000000000000000000000000000000000000000000000000000000000000000000013 -:20AD40000000000000000000000000000000000000000000000000000000000000000000F3 -:20AD60000000000000000000000000000000000000000000000000000000000000000000D3 -:20AD80000000000000000000000000000000000000000000000000000000000000000000B3 -:20ADA000000000000000000000000000000000000000000000000000000000000000000093 -:20ADC000000000000000000000000000000000000000000000000000000000000000000073 -:20ADE000000000000000000000000000000000000000000000000000000000000000000053 -:20AE0000000000000000000000000000000000000000000000000000000000000000000032 -:20AE2000000000000000000000000000000000000000000000000000000000000000000012 -:20AE40000000000000000000000000000000000000000000000000000000000000000000F2 -:20AE60000000000000000000000000000000000000000000000000000000000000000000D2 -:20AE80000000000000000000000000000000000000000000000000000000000000000000B2 -:20AEA000000000000000000000000000000000000000000000000000000000000000000092 -:20AEC000000000000000000000000000000000000000000000000000000000000000000072 -:20AEE000000000000000000000000000000000000000000000000000000000000000000052 -:20AF0000000000000000000000000000000000000000000000000000000000000000000031 -:20AF2000000000000000000000000000000000000000000000000000000000000000000011 -:20AF40000000000000000000000000000000000000000000000000000000000000000000F1 -:20AF60000000000000000000000000000000000000000000000000000000000000000000D1 -:20AF80000000000000000000000000000000000000000000000000000000000000000000B1 -:20AFA000000000000000000000000000000000000000000000000000000000000000000091 -:20AFC000000000000000000000000000000000000000000000000000000000000000000071 -:20AFE000000000000000000000000000000000000000000000000000000000000000000051 -:00000001FF diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_small.hex b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_small.hex deleted file mode 100644 index 655741a27b1..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_data/blinky_small.hex +++ /dev/null @@ -1,30 +0,0 @@ -:020000041000EA -:400000000001000831010010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075 -:400040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080 -:400080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040 -:4000C0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -:40010000526F736574746120636F646500000000764FAF5C61AC315F1497F9DFA542713965B785E5CC2F707D6468D7D1124CDFCF13B500240C4800F01DF821000094012395 -:4001400006220A4800F062F80123009406221900064800F05BF801340222044B0448DC60DA6000F099F8F7E7280300108000324020BCBE00014B18607047C0463C100008CC -:4001800070B50D00044C01001822200000F094F8A56101BEFEE7C0460010000870B506000C001500072903D914491548FFF7E8FF1F232A009A4303D012491148FFF7E0FF8A -:4001C000114B1B689A695B69B01AC0090001C0181F231D40032C07D8E400A340A54002689A431543056070BD043CE400A340A54042689A4315434560F5E7C04642020000CD -:4002000033040010430200003C100008F7B51D0008AB1B7807000E0014000193072903D9D1211B48FFF7ACFF0F2322009A4303D0D2211748FFF7A4FF012D03D9D3211448C7 -:40024000FFF79EFF1F23019A9A4303D0D4211048FFF796FF012211001540B140B5400F203B6804408B431D433D600500B1008D408C40084B31001B68380063331A78BA18AE -:400280001368AB431C431460019AFFF787FFF7BD100400103C1000080230800803D001300238FCD1C046C0467047EFF3108072B6704780F310887047000052E3011041E2BB -:4002C00000C0A0E11EFF2F0110402DE90C30A0E101E0F1E500005EE3014042E201E0C3E40400001A02C08CE00C0053E10500000A01E0C3E4FBFFFFEA000054E303C0A0E1E7 -:400300000420A0E1F0FFFF1A1040BDE81EFF2FE10DC0A0E1F8DF2DE904B04CE20DC0A0E1F8DF2DE904B04CE200002140000025400000014000003440000024400000314064 -:400340000000324000001F4101010101010101010110101080550501053B04101C0101000FC000000000100001010101011D3A577896000820000010000F002000023F06D7 -:40038000080E00080009000A000B24282C303400100000009000000088000000080000008000000004F0000000F000002005A000D00100018001A0011000000004000000C4 -:4003C000400000004400000048000000800000000001000010020000880200000004000010040000200400004004000048040000800400008404000090040000C0070000E1 -:40040000C4070000C8070000CC070000004000002E2F68616C2F70646C2F647269766572732F736F757263652F63795F6770696F2E63002E2F68616C2F70646C2F64726907 -:40044000766572732F696E636C7564652F63795F6770696F2E68000000000000000000000000000000000000000000000000000000000000000000000000000000000000FA -:40048000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003C -:4004C00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000FC -:4005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000BB -:40054000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007B -:40058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003B -:4005C00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000FB -:0200000490303A -:02000000FF3BC4 -:0200000490501A -:0C00000000000000000000000000FF3BBA -:00000001FF \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_pyocd_wrapper.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_pyocd_wrapper.py deleted file mode 100644 index a7365399832..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_pyocd_wrapper.py +++ /dev/null @@ -1,301 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import sys -import os.path -import time -import unittest -from intelhex import IntelHex -sys.path.append(os.path.dirname(os.path.realpath(__file__))) -sys.path.append(os.path.dirname('../execute')) -from test_utility import * -from execute.programmer.programmer import ProgrammingTool -from execute.programmer.exceptions import ExtendedTransferFaultError - -TOOL = 'pyocd' -TARGET = 'cy8c64xx_cm4' -PROBE_ID = '19071301d90e140c00d90e1400000000000000002e127069' # DAP-Link -#PROBE_ID = '1A06199701047400' # CMSIS-DAP - -# PSoC6 BLE Memory Regions -RAM_ADDR = 0x08000000 -MAIN_ADDR = 0x10000000 -WORK_ADDR = 0x14000000 -SFLASH_ADDR = 0x16000000 - -# PSoC6 Register Addresses -CYREG_IPC2_STRUCT_ACQUIRE = 0x40230040 -CYREG_IPC2_STRUCT_DATA = 0x4023004c -CYREG_IPC2_STRUCT_NOTIFY = 0x40230048 -CYREG_GPIO_PORT_11_OUT = 0x40320580 -CYREG_CM4_POWER_CTRL = 0x40210080 -ENTRANCE_EXAM_SRAM_ADDR = 0x0802E000 -# Debug halting control and status register -CYREG_DHCSR = 0xE000EDF0 -S_HALT = (1 << 17) -S_LOCKUP = (1 << 19) - - -class TestReadWrite(unittest.TestCase): - @classmethod - def setUpClass(cls): - cls.tool = ProgrammingTool.create(TOOL) - cls.tool.connect(TARGET, probe_id=PROBE_ID) - create_test_bin() - print('[INFO] Program Main region with test data') - cls.tool.program(TEST_BIN, address=MAIN_ADDR) - print('[INFO] Program Work region with test data') - cls.tool.program(TEST_BIN, address=WORK_ADDR) - - @classmethod - def tearDownClass(cls): - cls.tool.disconnect() - - def test_read8_ram(self): - data = self.tool.read8(RAM_ADDR) - self.assertGreaterEqual(data, 0) - - def test_read8_flash_main_region(self): - data = self.tool.read8(MAIN_ADDR) - self.assertEqual(data, 0x41) - - def test_read8_flash_work_region(self): - data = self.tool.read8(WORK_ADDR) - self.assertEqual(data, 0x41) - - def test_read8_sflash(self): - data = self.tool.read8(SFLASH_ADDR) - self.assertEqual(data, 0x00) - - def test_read8_register32_negative(self): - with self.assertRaises(ExtendedTransferFaultError) as context: - self.tool.read8(CYREG_IPC2_STRUCT_DATA) - self.assertTrue('If address points to a register it should be aligned with the register size' - in str(context.exception)) - - def test_read16_ram(self): - data = self.tool.read16(RAM_ADDR) - self.assertGreater(data, 0) - - def test_read16_flash_main_region(self): - data = self.tool.read16(MAIN_ADDR) - self.assertEqual(data, 0x3141) - - def test_read16_flash_work_region(self): - data = self.tool.read16(WORK_ADDR) - self.assertEqual(data, 0x3141) - - def test_read16_register32_negative(self): - with self.assertRaises(ExtendedTransferFaultError) as context: - self.tool.read16(CYREG_IPC2_STRUCT_DATA) - self.assertTrue('If address points to a register it should be aligned with the register size' - in str(context.exception)) - - def test_read32_ram(self): - data = self.tool.read32(RAM_ADDR) - self.assertGreater(data, 0x00) - - def test_read32_flash_main_region(self): - data = self.tool.read32(MAIN_ADDR) - self.assertEqual(data, 0x32413141) - - def test_read32_not_exists_flash_region(self): - with self.assertRaises(ExtendedTransferFaultError): - self.tool.read32(0xFF00FF00) - - def test_read32_flash_work_region(self): - data = self.tool.read32(WORK_ADDR) - self.assertEqual(data, 0x32413141) - - def test_read32_register32(self): - data = self.tool.read32(CYREG_IPC2_STRUCT_DATA) - self.assertGreaterEqual(data, 0x00000000) - - def test_write8_ram(self): - self.tool.write8(RAM_ADDR, 0xCE) - data = self.tool.read8(RAM_ADDR) - self.assertEqual(0xCE, data) - - def test_write16_ram(self): - self.tool.write16(RAM_ADDR, 0xAC21) - data = self.tool.read16(RAM_ADDR) - self.assertEqual(0xAC21, data) - - def test_write32_ram(self): - self.tool.write32(RAM_ADDR, 0xDEADBEAF) - data = self.tool.read32(RAM_ADDR) - self.assertEqual(data, 0xDEADBEAF) - - def test_write32_CYREG_IPC2_STRUCT_ACQUIRE(self): - self.tool.write32(CYREG_IPC2_STRUCT_ACQUIRE, 0x80000000) - data = self.tool.read32(CYREG_IPC2_STRUCT_ACQUIRE) - byte = decomposite32(data)[3] - self.assertEqual(byte, 0x80) - - def test_write32_CYREG_IPC2_STRUCT_DATA(self): - self.tool.write32(CYREG_IPC2_STRUCT_DATA, 0xAFECAB91) - data = self.tool.read32(CYREG_IPC2_STRUCT_DATA) - self.assertEqual(data, 0xAFECAB91) - - def test_write32_CYREG_IPC2_STRUCT_NOTIFY(self): - self.tool.write32(CYREG_IPC2_STRUCT_NOTIFY, 0x00000001) - data = self.tool.read32(CYREG_IPC2_STRUCT_NOTIFY) - byte = decomposite32(data)[3] - self.assertEqual(byte, 0x00) - - def test_write32_ENTRANCE_EXAM_SRAM_ADDR(self): - self.tool.write32(ENTRANCE_EXAM_SRAM_ADDR, 0xD1A2B3C4) - data = self.tool.read32(ENTRANCE_EXAM_SRAM_ADDR) - self.assertEqual(data, 0xD1A2B3C4) - - def test_write32_ENTRANCE_EXAM_SRAM_ADDR_offset4(self): - self.tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x04, 0xABCABCFA) - data = self.tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x04) - self.assertEqual(data, 0xABCABCFA) - - def test_write32_ENTRANCE_EXAM_SRAM_ADDR_offset8(self): - self.tool.write32(ENTRANCE_EXAM_SRAM_ADDR + 0x08, 0x12890735) - data = self.tool.read32(ENTRANCE_EXAM_SRAM_ADDR + 0x08) - self.assertEqual(data, 0x12890735) - - def tet_read_write_core_regs(self): - value1 = self.tool.read_reg('r1') - self.tool.write_reg('r1', value1 + 10) - value2 = self.tool.read_reg('r1') - self.assertEqual(value1 + 10, value2) - - def test_read_strange_reg_negative(self): - with self.assertRaises(ValueError): - self.tool.read_reg('r200') - - -class TestProgramming(unittest.TestCase): - @classmethod - def setUpClass(cls): - cls.tool = ProgrammingTool.create(TOOL) - cls.tool.connect(TARGET, probe_id=PROBE_ID) - create_test_bin() - - @classmethod - def tearDownClass(cls): - cls.tool.disconnect() - - def test_erase(self): - self.tool.erase(MAIN_ADDR, 0x200) - match = False - i = 0 - while i < os.path.getsize(TEST_BIN): - data = self.tool.read8(MAIN_ADDR + i) - match = data == 0x00 - if not match: - break - i += 1 - self.assertTrue(match) - - def test_program_bin(self): - self.tool.erase(MAIN_ADDR, 0x200) - self.tool.program(TEST_BIN, address=MAIN_ADDR) - with open(TEST_BIN, 'rb') as file_obj: - exp_data = file_obj.read() - match = False - i = 0 - while i < len(exp_data): - data = self.tool.read8(MAIN_ADDR + i) - match = data == exp_data[i] - if not match: - break - i += 1 - self.assertTrue(match) - - def test_program_hex(self): - intel_hex = IntelHex() - intel_hex.loadhex(BLINKY_SMALL_HEX) - arr = intel_hex.gets(MAIN_ADDR, 0x400) - self.tool.erase(MAIN_ADDR, 0x400) - self.tool.program(BLINKY_SMALL_HEX) - match = False - i = 0 - while i < len(arr): - data = self.tool.read8(MAIN_ADDR + i) - match = data == arr[i] - if not match: - break - i += 1 - self.assertTrue(match) - - -class TestControlAPIs(unittest.TestCase): - @classmethod - def setUpClass(cls): - cls.tool = ProgrammingTool.create(TOOL) - cls.tool.connect(TARGET, probe_id=PROBE_ID) - - @classmethod - def tearDownClass(cls): - cls.tool.disconnect() - - def test_reset(self): - self.tool.write32(CYREG_GPIO_PORT_11_OUT, 0xDEADBEAF) - self.tool.reset() - self.assertEqual(self.tool.read32(CYREG_GPIO_PORT_11_OUT), 0x00) - - def test_halt_resume(self): - self.tool.reset() - if self.tool.read32(CYREG_CM4_POWER_CTRL) & 3 != 3: - self.tool.write32(CYREG_CM4_POWER_CTRL, 0x05fa0003) # CM4 is sleeping, trying to wake it up - dhcsr = self.tool.read32(CYREG_DHCSR) - if dhcsr & S_LOCKUP: - self.tool.halt() - dhcsr = self.tool.read32(CYREG_DHCSR) - self.tool.write_reg('xpsr', 0x01000000) # set thumb bit - else: - self.tool.halt() - dhcsr = self.tool.read32(CYREG_DHCSR) - self.assertTrue(dhcsr & S_HALT) - self.tool.resume() - dhcsr = self.tool.read32(CYREG_DHCSR) - self.assertFalse(dhcsr & S_HALT) - - #def test_reset_and_halt(self): - # self.tool.write32(CYREG_GPIO_PORT_11_OUT, 0xDEADBEAF) - # self.tool.reset_and_halt() - # self.assertEqual(self.tool.read32(CYREG_GPIO_PORT_11_OUT), 0x00) - # dhcsr = self.tool.read32(CYREG_DHCSR) - # self.assertTrue(dhcsr & S_HALT) - - @unittest.skip("HW frequency cannot be changed.") - def test_set_frequency(self): - self.tool.erase(MAIN_ADDR, 0xC000) - self.tool.set_frequency(100) - time_before_program = time.time() - self.tool.program(BLINKY_LARGE_HEX) - time1 = time.time() - time_before_program - self.tool.set_frequency(1200) - self.tool.erase(MAIN_ADDR, 0xC000) - time_before_program = time.time() - self.tool.program(BLINKY_LARGE_HEX) - time2 = time.time() - time_before_program - self.assertGreater(time1, time2) - - def test_connection(self): - self.tool.disconnect() - self.assertFalse(self.tool.session.is_open) - self.tool.connect(TARGET, probe_id=PROBE_ID) - self.assertTrue(self.tool.session.is_open) - - -if __name__ == '__main__': - ret = not unittest.main().wasSuccessful() - sys.exit(ret) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_utility.py b/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_utility.py deleted file mode 100644 index ab890078539..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/sb-tools/test/test_utility.py +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2019 Cypress Semiconductor Corporation -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -TEST_BIN = "test_data/test.bin" -BLINKY_SMALL_HEX = "test_data/blinky_small.hex" -BLINKY_LARGE_HEX = "test_data/blinky_large.hex" - - -def create_test_bin(): - with open(TEST_BIN, 'wb') as file: - file.write(b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' - b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' - b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' - b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' - b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' - b'A1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FFA1A2A3B1B2B3111213FF' - b'A1A2A3B1B2B3111213FFA1A2A3B1B2B') - - -def decomposite32(value): - """ - Decomposites 32-bit value into byte array. - :param value: 32-bit value. - :return: Array of bytes. - """ - byte = value.to_bytes(4, 'little') - return byte diff --git a/tools/targets/PSOC6.py b/tools/targets/PSOC6.py index 7ad96564f29..fbe72bcde1d 100644 --- a/tools/targets/PSOC6.py +++ b/tools/targets/PSOC6.py @@ -55,6 +55,10 @@ NSPE_IMAGE_ID = 16 SMIF_MEM_MAP_START = 0x18000000 +class AddSignatureError(Exception): + """ A simple class that represents all the exceptions associated with + adding signature to Secure Boot image + """ # Patch Cypress hex file: # - update checksum @@ -150,6 +154,17 @@ def find_cm0_image(toolchain, resources, elf, hexf, hex_filename): # check if policy parameters are consistent def check_slots_integrity(toolchain, fw_cyb, target_data, fw_spe=None, fw_nspe=None): + """ + Function checks consistency of parameters presented in + policy file used for build of Secure Boot enabled target. + :param toolchain: Toolchain object of current build session + :param fw_cyb: CyBootloader firmware description from policy + :param target_data: Object contains description of + processing target from target.json + :param fw_spe: CM0p firmware descpription object from policy + :param fw_nspe: CM4 firmware descpription object from policy + :return: List of slots and image id corresponding to them + """ slot0 = None slot1 = None @@ -171,24 +186,23 @@ def check_slots_integrity(toolchain, fw_cyb, target_data, fw_spe=None, fw_nspe=N if slot["type"] == "BOOT": slot0 = slot - if fw_nspe["upgrade"] and True: + if fw_nspe["upgrade"] is True: slot1 = slot if slot["type"] == "UPGRADE": - try: - if fw_nspe["encrypt"] and True: - # mark slot1 image as one, that should be encrypted - slot1.update({'encrypt': True}) - toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE NSPE will" - " be ENCRYPTED per policy settings.") - except KeyError: - None + if fw_nspe.get("encrypt") is True: + # mark slot1 image as one, that should be encrypted + slot1.update({'encrypt': True}) + toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE NSPE will" + " be ENCRYPTED per policy settings.") + else: + pass else: toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE will not" " be built per policy settings.") break if slot0 is None: toolchain.notify.debug("[PSOC6.sign_image] WARNING: BOOT section not found in policy resources") - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") else: # check if PSA targets flash map correspond to slots addresses and sizes in policy @@ -219,40 +233,38 @@ def check_slots_integrity(toolchain, fw_cyb, target_data, fw_spe=None, fw_nspe=N if img_id != 1: toolchain.notify.debug("[PSOC6.sign_image] ERROR: Image ID of SPE image" " is not equal to 1!") - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") if not (fw_cyb["launch"] == img_id): toolchain.notify.debug("[PSOC6.sign_image] ERROR: ID of build image" " does not correspond launch ID in CyBootloader!") - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") if not (fw_spe["launch"] == fw_nspe["id"]): toolchain.notify.debug("[PSOC6.sign_image] ERROR: ID of NSPE image" " does not correspond launch ID in SPE part!") - raise Exception("imgtool finished execution with errors!") - + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") # check slots addresses and sizes if upgrade is set to True for slot in fw_spe["resources"]: if slot["type"] == "BOOT": slot0 = slot - if fw_spe["upgrade"] and True: + if fw_spe["upgrade"] is True: if slot["type"] == "UPGRADE": slot1 = slot - try: - if fw_spe["encrypt"] and True: - # mark slot1 image as one, that should be encrypted - slot1.update({'encrypt': True}) - toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE SPE will" - " be ENCRYPTED per policy settings.") - except KeyError: - None + if fw_spe.get("encrypt") is True: + # mark slot1 image as one, that should be encrypted + slot1.update({'encrypt': True}) + toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE SPE will" + " be ENCRYPTED per policy settings.") + else: + pass else: toolchain.notify.info("[PSOC6.sign_image] INFO: Image for UPGRADE will not" - " be produced per policy settings.") + " be produced per policy settings.") if slot0 is None: toolchain.notify.debug("[PSOC6.sign_image] WARNING: BOOT section not found in policy resources") - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") if slot1 is not None: # bigger or equal to 0x18000000 in hex is a start of SMIF memory @@ -262,14 +274,18 @@ def check_slots_integrity(toolchain, fw_cyb, target_data, fw_spe=None, fw_nspe=N if slot0["size"] != slot1["size"]: toolchain.notify.debug("[PSOC6.sign_image] WARNING: BOOT and UPGRADE slots sizes are not equal") - return [slot0, slot1, img_id] + return (slot0, slot1, img_id) else: - return [slot0, None, img_id] + return (slot0, None, img_id) -# Resolve Secure Boot policy sections considering target def process_target(toolchain, target): - + """ + Gathers and process information about target being built + :param toolchain: Toolchain object of current build session + :param target: Name of target being built + :return: List with all data needed for adding signature + """ targets_json = Path("targets/targets.json") cy_targets = Path("targets/TARGET_Cypress/TARGET_PSOC6/") sb_params_file_name = Path("secure_image_parameters.json") @@ -283,7 +299,7 @@ def process_target(toolchain, target): root_dir = root_dir / 'mbed-os' if not os.path.isfile(str(mbed_os_targets)): toolchain.notify.debug("[PSOC6.sign_image] ERROR: targets.json not found!") - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") with open(str(mbed_os_targets)) as j: json_str = j.read() @@ -300,7 +316,7 @@ def process_target(toolchain, target): f.close() else: toolchain.notify.debug("[PSOC6.sign_image] ERROR: secure_image_parametest.json not found!") - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") sdk_path = root_dir / sb_config["sdk_path"] @@ -308,7 +324,7 @@ def process_target(toolchain, target): if not os.path.isfile(str(priv_key_path)): toolchain.notify.debug("[PSOC6.sign_image] ERROR: Private key file not found in " + str(priv_key_path)) - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") if "_PSA" in target: # assume dual stage bootloading scheme @@ -347,35 +363,38 @@ def process_target(toolchain, target): target_sig_data = [{"img_data": sb_config["boot0"], "slot_data": slots[0], "key_file": sb_config["priv_key_file"], "sdk_path": sdk_path, "id": slots[2]}] - - if slots[1] is not None: + + if slots[1] is not None: target_sig_data.append({"img_data": sb_config["boot1"], "slot_data": slots[1], "key_file": sb_config["priv_key_file"], "sdk_path": sdk_path, "id": slots[2]}) # check if slot1 image sould be encrypted - try: - if slots[1]["encrypt"] is True: - - dev_pub_key = sdk_path / Path(sb_config["dev_pub_key_file"]) - if not os.path.isfile(str(dev_pub_key)): - toolchain.notify.debug("[PSOC6.sign_image] ERROR: Device public key file not found in " + str(dev_pub_key)) - raise Exception("imgtool finished execution with errors!") - - aes_key_file = sdk_path / Path(sb_config["aes_key_file"]) - if not os.path.isfile(str(aes_key_file)): - toolchain.notify.debug("[PSOC6.sign_image] ERROR: AES-128 key file not found in " + str(aes_key_file)) - raise Exception("imgtool finished execution with errors!") - - target_sig_data[1].update({"aes_key": sb_config["aes_key_file"], "dev_pub_key": sb_config["dev_pub_key_file"]}) - - except KeyError: + if slots[1].get("encrypt") is True: + + dev_pub_key = sdk_path / Path(sb_config["dev_pub_key_file"]) + if not os.path.isfile(str(dev_pub_key)): + toolchain.notify.debug("[PSOC6.sign_image] ERROR: Device public key file not found in " + str(dev_pub_key)) + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") + + aes_key_file = sdk_path / Path(sb_config["aes_key_file"]) + if not os.path.isfile(str(aes_key_file)): + toolchain.notify.debug("[PSOC6.sign_image] ERROR: AES-128 key file not found in " + str(aes_key_file)) + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") + + target_sig_data[1].update({"aes_key": sb_config["aes_key_file"], "dev_pub_key": sb_config["dev_pub_key_file"]}) + + else: toolchain.notify.info("[PSOC6.sign_image] INFO: Image for slot UPGRADE would not be encrypted per policy settings") return target_sig_data -# Sign binary image using imgtool -def sign_image(toolchain, elf0, binf, hexf1=None): - +def sign_image(toolchain, binf): + """ + Adds signature to a binary file being built, + prepares some intermediate binary artifacts. + :param toolchain: Toolchain object of current build session + :param binf: Binary file created for target + """ target_sig_data = None # reserve name for separate NSPE image out_cm4_hex = binf[:-4] + "_cm4.hex" @@ -391,41 +410,40 @@ def sign_image(toolchain, elf0, binf, hexf1=None): if target_sig_data is None: toolchain.notify.debug("[PSOC6.sign_image] ERROR: Target not found!") - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") for slot in target_sig_data: # first check if image for slot under processing should be encrypted - try: - if slot["slot_data"]["encrypt"] is True: - # call encrypt_img to perform encryption - args = [sys.executable, str(slot["sdk_path"] / "encrypted_image_runner.py"), - "--sdk-path", str(slot["sdk_path"]), "--hex-file", os.getcwd() + '/' + mbed_hex, - "--key-priv", str(slot["sdk_path"] / slot["key_file"]), - "--key-pub", str(slot["sdk_path"] / slot["dev_pub_key"]), - "--key-aes", str(slot["sdk_path"] / slot["aes_key"]), - "--ver", str(slot["img_data"]["VERSION"]), "--img-id", str(slot["id"]), - "--rlb-count", str(slot["img_data"]["ROLLBACK_COUNTER"]), - "--slot-size", str(hex(slot["slot_data"]["size"])), - "--img-offset", str(slot["slot_data"]["address"])] - if slot["slot_data"]["type"] != "BOOT": - args.append("--pad") - process = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - - # catch standard process pipes outputs - stderr = process.communicate()[1] - stdout = process.communicate()[0] - rc = process.wait() - print(stdout.decode("utf-8")) - - if rc != 0: - toolchain.notify.debug("[PSOC6.sign_image] ERROR: Encryption script ended with error!") - toolchain.notify.debug("[PSOC6.sign_image] Message from encryption script: " + stderr.decode("utf-8")) - raise Exception("imgtool finished execution with errors!") - else: - toolchain.notify.info("[PSOC6.sign_image] SUCCESS: Image for slot " + - slot["slot_data"]["type"] + " is signed and encrypted with no errors!") + if slot["slot_data"].get("encrypt") is True: + # call encrypt_img to perform encryption + args = [sys.executable, str(slot["sdk_path"] / "encrypted_image_runner.py"), + "--sdk-path", str(slot["sdk_path"]), "--hex-file", os.getcwd() + '/' + mbed_hex, + "--key-priv", str(slot["sdk_path"] / slot["key_file"]), + "--key-pub", str(slot["sdk_path"] / slot["dev_pub_key"]), + "--key-aes", str(slot["sdk_path"] / slot["aes_key"]), + "--ver", str(slot["img_data"]["VERSION"]), "--img-id", str(slot["id"]), + "--rlb-count", str(slot["img_data"]["ROLLBACK_COUNTER"]), + "--slot-size", str(hex(slot["slot_data"]["size"])), + "--img-offset", str(slot["slot_data"]["address"])] + if slot["slot_data"]["type"] != "BOOT": + args.append("--pad") + process = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + + # catch standard process pipes outputs + stderr = process.communicate()[1] + stdout = process.communicate()[0] + rc = process.wait() + toolchain.notify.info(stdout.decode("utf-8")) + + if rc != 0: + toolchain.notify.debug("[PSOC6.sign_image] ERROR: Encryption script ended with error!") + toolchain.notify.debug("[PSOC6.sign_image] Message from encryption script: " + stderr.decode("utf-8")) + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") + else: + toolchain.notify.info("[PSOC6.sign_image] SUCCESS: Image for slot " + + slot["slot_data"]["type"] + " is signed and encrypted with no errors!") # all non ecrypted images take this path - except KeyError: + else: if slot["slot_data"]["type"] == "UPGRADE": out_hex_name = binf[:-4] + "_upgrade.hex" out_bin_name = out_hex_name[:-4] + "_signed.bin" @@ -452,7 +470,7 @@ def sign_image(toolchain, elf0, binf, hexf1=None): if rc != 0: toolchain.notify.debug("[PSOC6.sign_image] ERROR: Signature is not added!") toolchain.notify.debug("[PSOC6.sign_image] Message from imgtool: " + stderr.decode("utf-8")) - raise Exception("imgtool finished execution with errors!") + raise AddSignatureError("PSOC6.sign_image finished execution with errors! Signature is not added.") else: toolchain.notify.info("[PSOC6.sign_image] SUCCESS: Image for slot " + slot["slot_data"]["type"] + " is signed with no errors!") @@ -467,7 +485,11 @@ def sign_image(toolchain, elf0, binf, hexf1=None): # produce hex file for slot1 if slot["slot_data"]["type"] == "UPGRADE": bin2hex(out_bin_name, out_hex_name, offset=int(slot["slot_data"]["address"])) - print("Image UPGRADE: " + out_hex_name + "\n") + toolchain.notify.info("Image UPGRADE: " + out_hex_name + "\n") + def complete(toolchain, elf0, hexf0, hexf1=None): + """ + Merge CM4 and CM0 images to a single binary + """ complete_func(toolchain.notify.debug, elf0, hexf0, hexf1) diff --git a/tools/targets/__init__.py b/tools/targets/__init__.py index 566c85c7d84..743bff1049b 100644 --- a/tools/targets/__init__.py +++ b/tools/targets/__init__.py @@ -677,15 +677,11 @@ def complete(t_self, resources, elf, binf): @staticmethod def sign_image(t_self, resources, elf, binf): + """ + Calls sign_image function to add signature to Secure Boot binary file. + """ from tools.targets.PSOC6 import sign_image as psoc6_sign_image - if hasattr(t_self.target, "hex_filename"): - hex_filename = t_self.target.hex_filename - # Completing main image involves merging M0 image. - from tools.targets.PSOC6 import find_cm0_image - m0hexf = find_cm0_image(t_self, resources, elf, binf, hex_filename) - psoc6_sign_image(t_self, elf, binf, m0hexf) - else: - psoc6_sign_image(t_self, elf, binf) + psoc6_sign_image(t_self, binf) class ArmMuscaA1Code: """Musca-A1 Hooks""" From d289b967f79408e04696e8b65a9d26d18a8a767e Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Wed, 28 Aug 2019 01:07:30 +0300 Subject: [PATCH 13/16] Added check for python version before calling post build action. Fixed compilation for Python 2.7. --- tools/targets/__init__.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/tools/targets/__init__.py b/tools/targets/__init__.py index 743bff1049b..c270f935875 100644 --- a/tools/targets/__init__.py +++ b/tools/targets/__init__.py @@ -679,9 +679,20 @@ def complete(t_self, resources, elf, binf): def sign_image(t_self, resources, elf, binf): """ Calls sign_image function to add signature to Secure Boot binary file. - """ - from tools.targets.PSOC6 import sign_image as psoc6_sign_image - psoc6_sign_image(t_self, binf) + """ + version = sys.version_info + + # check python version before calling post build as is supports only python3+ + if((version[0] < 3) is True): + t_self.notify.info("[PSOC6.sing_image] Be careful - produced HEX file was not signed and thus " + "is not compatible with Cypress Secure Boot target. " + "You are using Python " + str(sys.version[:5]) + + " which is not supported by CySecureTools. " + "Consider installing Python 3.7+ and rebuild target. " + "For more information refver to User Guide https://www.cypress.com/secureboot-sdk-user-guide") + else: + from tools.targets.PSOC6 import sign_image as psoc6_sign_image + psoc6_sign_image(t_self, binf) class ArmMuscaA1Code: """Musca-A1 Hooks""" From bfe1d04ba2e4bd96a5aa9ac70ebd315f884f811a Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Thu, 29 Aug 2019 12:45:38 +0300 Subject: [PATCH 14/16] Removed import of version specific python modules, improved imports organization in PSOC6.py, fixed per PR comments --- requirements.txt | 1 - tools/targets/PSOC6.py | 16 +++++++--------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/requirements.txt b/requirements.txt index 40b86802c0f..bcfb24342a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -28,4 +28,3 @@ wmi==1.4.9;platform_system=='Windows' psutil==5.6.2 cryptography>=2.4.x,<2.5 Click>=7.0,<7.1 -pathlib>=1.0.1 diff --git a/tools/targets/PSOC6.py b/tools/targets/PSOC6.py index fbe72bcde1d..8d2a4a72b23 100644 --- a/tools/targets/PSOC6.py +++ b/tools/targets/PSOC6.py @@ -17,21 +17,15 @@ import os import sys - -import platform import subprocess -import errno from array import array from struct import (pack, unpack) from shutil import copy2 +import json from intelhex import IntelHex, hex2bin, bin2hex -from intelhex.compat import asbytes from ..config import ConfigException -from pathlib import Path, PurePath -import json - # The size of the program data in Cypress HEX files is limited to 0x80000000 # Higher addresses contain additional metadata (chip protection, eFuse data, etc..) CY_PROGRAM_SIZE = 0x80000000 @@ -286,6 +280,8 @@ def process_target(toolchain, target): :param target: Name of target being built :return: List with all data needed for adding signature """ + from pathlib import Path + targets_json = Path("targets/targets.json") cy_targets = Path("targets/TARGET_Cypress/TARGET_PSOC6/") sb_params_file_name = Path("secure_image_parameters.json") @@ -395,6 +391,8 @@ def sign_image(toolchain, binf): :param toolchain: Toolchain object of current build session :param binf: Binary file created for target """ + from pathlib import PurePath + target_sig_data = None # reserve name for separate NSPE image out_cm4_hex = binf[:-4] + "_cm4.hex" @@ -446,10 +444,10 @@ def sign_image(toolchain, binf): else: if slot["slot_data"]["type"] == "UPGRADE": out_hex_name = binf[:-4] + "_upgrade.hex" - out_bin_name = out_hex_name[:-4] + "_signed.bin" else: out_hex_name = binf - out_bin_name = out_hex_name[:-4] + "_signed.bin" + + out_bin_name = out_hex_name[:-4] + "_signed.bin" # call imgtool for signature args = [sys.executable, str(slot["sdk_path"] / "imgtool/imgtool.py"), From c249bf97c2e5e492c717fd0aaaeda2d1e6f9cf0f Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Thu, 29 Aug 2019 22:23:16 +0300 Subject: [PATCH 15/16] Updated target files structure to align with the following BSP PR. --- .../GeneratedSource/cycfg.c | 0 .../GeneratedSource/cycfg.h | 0 .../GeneratedSource/cycfg.timestamp | 24 ++ .../GeneratedSource/cycfg_clocks.c | 0 .../GeneratedSource/cycfg_clocks.h | 0 .../GeneratedSource/cycfg_notices.h | 0 .../GeneratedSource/cycfg_peripherals.c | 0 .../GeneratedSource/cycfg_peripherals.h | 0 .../GeneratedSource/cycfg_pins.c | 0 .../GeneratedSource/cycfg_pins.h | 0 .../GeneratedSource/cycfg_qspi_memslot.c | 56 +-- .../GeneratedSource/cycfg_qspi_memslot.h | 32 +- .../GeneratedSource/cycfg_routing.c | 0 .../GeneratedSource/cycfg_routing.h | 0 .../GeneratedSource/cycfg_system.c | 29 ++ .../GeneratedSource/cycfg_system.h | 3 + .../GeneratedSource/qspi_config.cfg | 4 + .../design.modus | 22 +- .../TARGET_CY8CPROTO_064_SB/PeripheralNames.h | 3 +- .../TARGET_CY8CPROTO_064_SB/PeripheralPins.c | 361 +++++++++--------- .../TARGET_CY8CPROTO_064_SB/PinNames.h | 55 +-- .../{cybsp_cy8cproto_064_sb.c => cybsp.c} | 30 +- .../TARGET_CY8CPROTO_064_SB/cybsp.h | 36 ++ .../cybsp_cy8cproto_064_sb.h | 74 ---- .../TARGET_CY8CPROTO_064_SB/cybsp_types.h | 18 +- .../cycfg_qspi_memslot.cyqspi | 63 --- .../TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct | 0 .../TOOLCHAIN_ARM/startup_psoc6_01_cm4.S | 0 .../TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld | 0 .../TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S | 0 .../TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf | 0 .../TOOLCHAIN_IAR/startup_psoc6_01_cm4.S | 0 .../system_psoc6_cm4.c | 0 .../psoc6_static_srm.h | 85 ----- tools/targets/__init__.py | 2 +- 35 files changed, 378 insertions(+), 519 deletions(-) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg.c (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg.h (100%) create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg.timestamp rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_clocks.c (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_clocks.h (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_notices.h (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_peripherals.c (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_peripherals.h (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_pins.c (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_pins.h (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_qspi_memslot.c (83%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_qspi_memslot.h (57%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_routing.c (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_routing.h (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_system.c (93%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/GeneratedSource/cycfg_system.h (96%) create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/qspi_config.cfg rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{ => COMPONENT_BSP_DESIGN_MODUS}/design.modus (97%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/{cybsp_cy8cproto_064_sb.c => cybsp.c} (67%) create mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp.h delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.h delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cycfg_qspi_memslot.cyqspi rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/{TARGET_MCU_PSOC6_M4 => }/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/{TARGET_MCU_PSOC6_M4 => }/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/{TARGET_MCU_PSOC6_M4 => }/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/{TARGET_MCU_PSOC6_M4 => }/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/{TARGET_MCU_PSOC6_M4 => }/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/{TARGET_MCU_PSOC6_M4 => }/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S (100%) rename targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/{TARGET_MCU_PSOC6_M4 => }/system_psoc6_cm4.c (100%) delete mode 100644 targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/psoc6_static_srm.h diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg.c similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg.c diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg.h similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg.h rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg.h diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg.timestamp b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg.timestamp new file mode 100644 index 00000000000..6911b5befd4 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg.timestamp @@ -0,0 +1,24 @@ +/******************************************************************************* +* File Name: cycfg.timestamp +* +* Description: +* Sentinel file for determining if generated source is up to date. +* This file was automatically generated and should not be modified. +* +******************************************************************************** +* Copyright 2017-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +********************************************************************************/ + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_clocks.c similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_clocks.c diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_clocks.h similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_clocks.h rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_clocks.h diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_notices.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_notices.h similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_notices.h rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_notices.h diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_peripherals.c similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_peripherals.c diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_peripherals.h similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_peripherals.h rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_peripherals.h diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_pins.c similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_pins.c diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_pins.h similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_pins.h rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_pins.h diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_qspi_memslot.c similarity index 83% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_qspi_memslot.c index d430d4908fd..b10821c9769 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.c +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_qspi_memslot.c @@ -24,7 +24,7 @@ #include "cycfg_qspi_memslot.h" -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0xEBU, @@ -42,7 +42,7 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readCmd = .dataWidth = CY_SMIF_WIDTH_QUAD }; -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeEnCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeEnCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0x06U, @@ -60,7 +60,7 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeEnCmd = .dataWidth = CY_SMIF_WIDTH_SINGLE }; -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeDisCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeDisCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0x04U, @@ -78,7 +78,7 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeDisCmd = .dataWidth = CY_SMIF_WIDTH_SINGLE }; -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_eraseCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_eraseCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0x20U, @@ -96,7 +96,7 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_eraseCmd = .dataWidth = CY_SMIF_WIDTH_SINGLE }; -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_chipEraseCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_chipEraseCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0x60U, @@ -114,7 +114,7 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_chipEraseCmd = .dataWidth = CY_SMIF_WIDTH_SINGLE }; -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_programCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_programCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0x38U, @@ -132,7 +132,7 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_programCmd = .dataWidth = CY_SMIF_WIDTH_QUAD }; -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegQeCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegQeCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0x35U, @@ -150,7 +150,7 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegQeCmd = .dataWidth = CY_SMIF_WIDTH_SINGLE }; -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegWipCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegWipCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0x05U, @@ -168,7 +168,7 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegWipCmd = .dataWidth = CY_SMIF_WIDTH_SINGLE }; -cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeStsRegQeCmd = +const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeStsRegQeCmd = { /* The 8-bit command. 1 x I/O read command. */ .command = 0x01U, @@ -186,52 +186,52 @@ cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeStsRegQeCmd = .dataWidth = CY_SMIF_WIDTH_SINGLE }; -cy_stc_smif_mem_device_cfg_t deviceCfg_S25FL128S_SlaveSlot_0 = +const cy_stc_smif_mem_device_cfg_t deviceCfg_S25FL128S_SlaveSlot_0 = { /* Specifies the number of address bytes used by the memory slave device. */ .numOfAddrBytes = 0x03U, /* The size of the memory. */ .memSize = 0x1000000U, /* Specifies the Read command. */ - .readCmd = &S25FL128S_SlaveSlot_0_readCmd, + .readCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_readCmd, /* Specifies the Write Enable command. */ - .writeEnCmd = &S25FL128S_SlaveSlot_0_writeEnCmd, + .writeEnCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_writeEnCmd, /* Specifies the Write Disable command. */ - .writeDisCmd = &S25FL128S_SlaveSlot_0_writeDisCmd, + .writeDisCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_writeDisCmd, /* Specifies the Erase command. */ - .eraseCmd = &S25FL128S_SlaveSlot_0_eraseCmd, + .eraseCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_eraseCmd, /* Specifies the sector size of each erase. */ .eraseSize = 0x0001000U, /* Specifies the Chip Erase command. */ - .chipEraseCmd = &S25FL128S_SlaveSlot_0_chipEraseCmd, + .chipEraseCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_chipEraseCmd, /* Specifies the Program command. */ - .programCmd = &S25FL128S_SlaveSlot_0_programCmd, + .programCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_programCmd, /* Specifies the page size for programming. */ .programSize = 0x0000200U, /* Specifies the command to read the QE-containing status register. */ - .readStsRegQeCmd = &S25FL128S_SlaveSlot_0_readStsRegQeCmd, + .readStsRegQeCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_readStsRegQeCmd, /* Specifies the command to read the WIP-containing status register. */ - .readStsRegWipCmd = &S25FL128S_SlaveSlot_0_readStsRegWipCmd, + .readStsRegWipCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_readStsRegWipCmd, /* Specifies the command to write into the QE-containing status register. */ - .writeStsRegQeCmd = &S25FL128S_SlaveSlot_0_writeStsRegQeCmd, + .writeStsRegQeCmd = (cy_stc_smif_mem_cmd_t*)&S25FL128S_SlaveSlot_0_writeStsRegQeCmd, /* The mask for the status register. */ .stsRegBusyMask = 0x01U, /* The mask for the status register. */ .stsRegQuadEnableMask = 0x02U, /* The max time for the erase type-1 cycle-time in ms. */ - .eraseTime = 140U, + .eraseTime = 650U, /* The max time for the chip-erase cycle-time in ms. */ - .chipEraseTime = 40000U, + .chipEraseTime = 165000U, /* The max time for the page-program cycle-time in us. */ - .programTime = 250U + .programTime = 750U }; -cy_stc_smif_mem_config_t S25FL128S_SlaveSlot_0 = +const cy_stc_smif_mem_config_t S25FL128S_SlaveSlot_0 = { /* Determines the slot number where the memory device is placed. */ .slaveSelect = CY_SMIF_SLAVE_SELECT_0, /* Flags. */ - .flags = CY_SMIF_FLAG_WR_EN, + .flags = CY_SMIF_FLAG_MEMORY_MAPPED | CY_SMIF_FLAG_WR_EN, /* The data-line selection options for a slave device. */ .dataSelect = CY_SMIF_DATA_SEL0, /* The base address the memory slave is mapped to in the PSoC memory map. @@ -239,19 +239,19 @@ cy_stc_smif_mem_config_t S25FL128S_SlaveSlot_0 = .baseAddress = 0x18000000U, /* The size allocated in the PSoC memory map, for the memory slave device. The size is allocated from the base address. Valid when the memory mapped mode is enabled. */ - .memMappedSize = 0x10000U, + .memMappedSize = 0x1000000U, /* If this memory device is one of the devices in the dual quad SPI configuration. Valid when the memory mapped mode is enabled. */ .dualQuadSlots = 0, /* The configuration of the device. */ - .deviceCfg = &deviceCfg_S25FL128S_SlaveSlot_0 + .deviceCfg = (cy_stc_smif_mem_device_cfg_t*)&deviceCfg_S25FL128S_SlaveSlot_0 }; -cy_stc_smif_mem_config_t* smifMemConfigs[] = { +const cy_stc_smif_mem_config_t* const smifMemConfigs[] = { &S25FL128S_SlaveSlot_0 }; -cy_stc_smif_block_config_t smifBlockConfig = +const cy_stc_smif_block_config_t smifBlockConfig = { /* The number of SMIF memories defined. */ .memCount = CY_SMIF_DEVICE_NUM, diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_qspi_memslot.h similarity index 57% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.h rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_qspi_memslot.h index 116f1e52042..5e541bb902c 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_qspi_memslot.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_qspi_memslot.h @@ -28,22 +28,22 @@ #define CY_SMIF_DEVICE_NUM 1 -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readCmd; -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeEnCmd; -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeDisCmd; -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_eraseCmd; -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_chipEraseCmd; -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_programCmd; -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegQeCmd; -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegWipCmd; -extern cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeStsRegQeCmd; - -extern cy_stc_smif_mem_device_cfg_t deviceCfg_S25FL128S_SlaveSlot_0; - -extern cy_stc_smif_mem_config_t S25FL128S_SlaveSlot_0; -extern cy_stc_smif_mem_config_t* smifMemConfigs[CY_SMIF_DEVICE_NUM]; - -extern cy_stc_smif_block_config_t smifBlockConfig; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readCmd; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeEnCmd; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeDisCmd; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_eraseCmd; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_chipEraseCmd; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_programCmd; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegQeCmd; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_readStsRegWipCmd; +extern const cy_stc_smif_mem_cmd_t S25FL128S_SlaveSlot_0_writeStsRegQeCmd; + +extern const cy_stc_smif_mem_device_cfg_t deviceCfg_S25FL128S_SlaveSlot_0; + +extern const cy_stc_smif_mem_config_t S25FL128S_SlaveSlot_0; +extern const cy_stc_smif_mem_config_t* const smifMemConfigs[CY_SMIF_DEVICE_NUM]; + +extern const cy_stc_smif_block_config_t smifBlockConfig; #endif /*CY_SMIF_MEMCONFIG_H*/ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_routing.c similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_routing.c diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_routing.h similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_routing.h rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_routing.h diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_system.c similarity index 93% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_system.c index 42eb4f6cba9..b6c01928d46 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.c +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_system.c @@ -38,6 +38,9 @@ #define CY_CFG_SYSCLK_CLKHF2_ENABLED 1 #define CY_CFG_SYSCLK_CLKHF2_FREQ_MHZ 50UL #define CY_CFG_SYSCLK_CLKHF2_CLKPATH CY_SYSCLK_CLKHF_IN_CLKPATH0 +#define CY_CFG_SYSCLK_CLKHF3_ENABLED 1 +#define CY_CFG_SYSCLK_CLKHF3_FREQ_MHZ 48UL +#define CY_CFG_SYSCLK_CLKHF3_CLKPATH CY_SYSCLK_CLKHF_IN_CLKPATH1 #define CY_CFG_SYSCLK_ILO_ENABLED 1 #define CY_CFG_SYSCLK_IMO_ENABLED 1 #define CY_CFG_SYSCLK_CLKLF_ENABLED 1 @@ -52,6 +55,7 @@ #define CY_CFG_SYSCLK_CLKPATH4_ENABLED 1 #define CY_CFG_SYSCLK_CLKPATH4_SOURCE CY_SYSCLK_CLKPATH_IN_IMO #define CY_CFG_SYSCLK_CLKPERI_ENABLED 1 +#define CY_CFG_SYSCLK_PLL0_ENABLED 1 #define CY_CFG_SYSCLK_CLKSLOW_ENABLED 1 #define CY_CFG_SYSCLK_WCO_ENABLED 1 #define CY_CFG_PWR_ENABLED 1 @@ -74,6 +78,14 @@ static const cy_stc_fll_manual_config_t srss_0_clock_0_fll_0_fllConfig = .outputMode = CY_SYSCLK_FLLPLL_OUTPUT_OUTPUT, .cco_Freq = 355U, }; +static const cy_stc_pll_manual_config_t srss_0_clock_0_pll_0_pllConfig = +{ + .feedbackDiv = 30, + .referenceDiv = 1, + .outputDiv = 5, + .lfMode = false, + .outputMode = CY_SYSCLK_FLLPLL_OUTPUT_AUTO, +}; __WEAK void cycfg_ClockStartupError(uint32_t error) { @@ -110,6 +122,12 @@ __STATIC_INLINE void Cy_SysClk_ClkHf2Init() Cy_SysClk_ClkHfSetDivider(CY_CFG_SYSCLK_CLKHF2, CY_SYSCLK_CLKHF_DIVIDE_BY_2); Cy_SysClk_ClkHfEnable(CY_CFG_SYSCLK_CLKHF2); } +__STATIC_INLINE void Cy_SysClk_ClkHf3Init() +{ + Cy_SysClk_ClkHfSetSource(CY_CFG_SYSCLK_CLKHF3, CY_CFG_SYSCLK_CLKHF3_CLKPATH); + Cy_SysClk_ClkHfSetDivider(CY_CFG_SYSCLK_CLKHF3, CY_SYSCLK_CLKHF_NO_DIVIDE); + Cy_SysClk_ClkHfEnable(CY_CFG_SYSCLK_CLKHF3); +} __STATIC_INLINE void Cy_SysClk_IloInit() { /* The WDT is unlocked in the default startup code */ @@ -145,6 +163,17 @@ __STATIC_INLINE void Cy_SysClk_ClkPeriInit() { Cy_SysClk_ClkPeriSetDivider(1U); } +__STATIC_INLINE void Cy_SysClk_Pll0Init() +{ + if (CY_SYSCLK_SUCCESS != Cy_SysClk_PllManualConfigure(1U, &srss_0_clock_0_pll_0_pllConfig)) + { + cycfg_ClockStartupError(CY_CFG_SYSCLK_PLL_ERROR); + } + if (CY_SYSCLK_SUCCESS != Cy_SysClk_PllEnable(1U, 10000u)) + { + cycfg_ClockStartupError(CY_CFG_SYSCLK_PLL_ERROR); + } +} __STATIC_INLINE void Cy_SysClk_ClkSlowInit() { Cy_SysClk_ClkSlowSetDivider(0U); diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_system.h similarity index 96% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.h rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_system.h index cc47de73c76..4bdd873358f 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/GeneratedSource/cycfg_system.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/cycfg_system.h @@ -43,6 +43,8 @@ extern "C" { #define CY_CFG_SYSCLK_CLKHF0 0UL #define srss_0_clock_0_hfclk_2_ENABLED 1U #define CY_CFG_SYSCLK_CLKHF2 2UL +#define srss_0_clock_0_hfclk_3_ENABLED 1U +#define CY_CFG_SYSCLK_CLKHF3 3UL #define srss_0_clock_0_ilo_0_ENABLED 1U #define srss_0_clock_0_imo_0_ENABLED 1U #define srss_0_clock_0_lfclk_0_ENABLED 1U @@ -53,6 +55,7 @@ extern "C" { #define srss_0_clock_0_pathmux_3_ENABLED 1U #define srss_0_clock_0_pathmux_4_ENABLED 1U #define srss_0_clock_0_periclk_0_ENABLED 1U +#define srss_0_clock_0_pll_0_ENABLED 1U #define srss_0_clock_0_slowclk_0_ENABLED 1U #define srss_0_clock_0_wco_0_ENABLED 1U #define srss_0_power_0_ENABLED 1U diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/qspi_config.cfg b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/qspi_config.cfg new file mode 100644 index 00000000000..61dc1091a66 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/GeneratedSource/qspi_config.cfg @@ -0,0 +1,4 @@ +set SMIF_BANKS { + 0 {addr 0x18000000 size 0x1000000 psize 0x0000200 esize 0x0001000} +} + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/design.modus b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/design.modus similarity index 97% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/design.modus rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/design.modus index 8efc4fa4c1e..ad8992850d9 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/design.modus +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/COMPONENT_BSP_DESIGN_MODUS/design.modus @@ -198,33 +198,33 @@ - + - + - + - + - + - + @@ -326,6 +326,10 @@ + + + + @@ -353,6 +357,12 @@ + + + + + + diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralNames.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralNames.h index d2b32d667e8..e009c481df4 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralNames.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralNames.h @@ -38,6 +38,7 @@ typedef enum { UART_7 = (int)SCB7_BASE, } UARTName; +#define DEVICE_SPI_COUNT CY_IP_MXSCB_INSTANCES typedef enum { SPI_0 = (int)SCB0_BASE, @@ -107,7 +108,7 @@ typedef enum { } DACName; typedef enum { - SMIF_0 = (int)SMIF0_BASE, + QSPI_0 = (int)SMIF0_BASE, } SMIFName; #ifdef __cplusplus diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralPins.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralPins.c index cfd1be0c795..433e728ea3c 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralPins.c +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PeripheralPins.c @@ -24,71 +24,71 @@ #if DEVICE_SERIAL //*** SERIAL *** const PinMap PinMap_UART_RX[] = { - {P0_2, UART_0, CYHAL_PIN_IN_FUNCTION( P0_2_SCB0_UART_RX)}, - {P1_0, UART_7, CYHAL_PIN_IN_FUNCTION( P1_0_SCB7_UART_RX)}, - {P2_0, UART_1, CYHAL_PIN_IN_FUNCTION( P2_0_SCB1_UART_RX)}, - {P3_0, UART_2, CYHAL_PIN_IN_FUNCTION( P3_0_SCB2_UART_RX)}, - {P4_0, UART_7, CYHAL_PIN_IN_FUNCTION( P4_0_SCB7_UART_RX)}, - {P5_0, UART_5, CYHAL_PIN_IN_FUNCTION( P5_0_SCB5_UART_RX)}, - {P6_0, UART_3, CYHAL_PIN_IN_FUNCTION( P6_0_SCB3_UART_RX)}, - {P6_4, UART_6, CYHAL_PIN_IN_FUNCTION( P6_4_SCB6_UART_RX)}, - {P7_0, UART_4, CYHAL_PIN_IN_FUNCTION( P7_0_SCB4_UART_RX)}, - {P8_0, UART_4, CYHAL_PIN_IN_FUNCTION( P8_0_SCB4_UART_RX)}, - {P9_0, UART_2, CYHAL_PIN_IN_FUNCTION( P9_0_SCB2_UART_RX)}, - {P10_0, UART_1, CYHAL_PIN_IN_FUNCTION( P10_0_SCB1_UART_RX)}, - {P11_0, UART_5, CYHAL_PIN_IN_FUNCTION( P11_0_SCB5_UART_RX)}, - {P12_0, UART_6, CYHAL_PIN_IN_FUNCTION( P12_0_SCB6_UART_RX)}, - {P13_0, UART_6, CYHAL_PIN_IN_FUNCTION( P13_0_SCB6_UART_RX)}, + {P0_2, UART_0, CYHAL_PIN_IN_FUNCTION(P0_2_SCB0_UART_RX)}, + {P1_0, UART_7, CYHAL_PIN_IN_FUNCTION(P1_0_SCB7_UART_RX)}, + {P2_0, UART_1, CYHAL_PIN_IN_FUNCTION(P2_0_SCB1_UART_RX)}, + {P3_0, UART_2, CYHAL_PIN_IN_FUNCTION(P3_0_SCB2_UART_RX)}, + {P4_0, UART_7, CYHAL_PIN_IN_FUNCTION(P4_0_SCB7_UART_RX)}, + {P5_0, UART_5, CYHAL_PIN_IN_FUNCTION(P5_0_SCB5_UART_RX)}, + {P6_0, UART_3, CYHAL_PIN_IN_FUNCTION(P6_0_SCB3_UART_RX)}, + {P6_4, UART_6, CYHAL_PIN_IN_FUNCTION(P6_4_SCB6_UART_RX)}, + {P7_0, UART_4, CYHAL_PIN_IN_FUNCTION(P7_0_SCB4_UART_RX)}, + {P8_0, UART_4, CYHAL_PIN_IN_FUNCTION(P8_0_SCB4_UART_RX)}, + {P9_0, UART_2, CYHAL_PIN_IN_FUNCTION(P9_0_SCB2_UART_RX)}, + {P10_0, UART_1, CYHAL_PIN_IN_FUNCTION(P10_0_SCB1_UART_RX)}, + {P11_0, UART_5, CYHAL_PIN_IN_FUNCTION(P11_0_SCB5_UART_RX)}, + {P12_0, UART_6, CYHAL_PIN_IN_FUNCTION(P12_0_SCB6_UART_RX)}, + {P13_0, UART_6, CYHAL_PIN_IN_FUNCTION(P13_0_SCB6_UART_RX)}, {NC, NC, 0} }; const PinMap PinMap_UART_TX[] = { - {P0_3, UART_0, CYHAL_PIN_OUT_FUNCTION( P0_3_SCB0_UART_TX)}, - {P1_1, UART_7, CYHAL_PIN_OUT_FUNCTION( P1_1_SCB7_UART_TX)}, - {P2_1, UART_1, CYHAL_PIN_OUT_FUNCTION( P2_1_SCB1_UART_TX)}, - {P3_1, UART_2, CYHAL_PIN_OUT_FUNCTION( P3_1_SCB2_UART_TX)}, - {P4_1, UART_7, CYHAL_PIN_OUT_FUNCTION( P4_1_SCB7_UART_TX)}, - {P5_1, UART_5, CYHAL_PIN_OUT_FUNCTION( P5_1_SCB5_UART_TX)}, - {P6_1, UART_3, CYHAL_PIN_OUT_FUNCTION( P6_1_SCB3_UART_TX)}, - {P6_5, UART_6, CYHAL_PIN_OUT_FUNCTION( P6_5_SCB6_UART_TX)}, - {P7_1, UART_4, CYHAL_PIN_OUT_FUNCTION( P7_1_SCB4_UART_TX)}, - {P8_1, UART_4, CYHAL_PIN_OUT_FUNCTION( P8_1_SCB4_UART_TX)}, - {P9_1, UART_2, CYHAL_PIN_OUT_FUNCTION( P9_1_SCB2_UART_TX)}, - {P10_1, UART_1, CYHAL_PIN_OUT_FUNCTION( P10_1_SCB1_UART_TX)}, - {P11_1, UART_5, CYHAL_PIN_OUT_FUNCTION( P11_1_SCB5_UART_TX)}, - {P12_1, UART_6, CYHAL_PIN_OUT_FUNCTION( P12_1_SCB6_UART_TX)}, - {P13_1, UART_6, CYHAL_PIN_OUT_FUNCTION( P13_1_SCB6_UART_TX)}, + {P0_3, UART_0, CYHAL_PIN_OUT_FUNCTION(P0_3_SCB0_UART_TX)}, + {P1_1, UART_7, CYHAL_PIN_OUT_FUNCTION(P1_1_SCB7_UART_TX)}, + {P2_1, UART_1, CYHAL_PIN_OUT_FUNCTION(P2_1_SCB1_UART_TX)}, + {P3_1, UART_2, CYHAL_PIN_OUT_FUNCTION(P3_1_SCB2_UART_TX)}, + {P4_1, UART_7, CYHAL_PIN_OUT_FUNCTION(P4_1_SCB7_UART_TX)}, + {P5_1, UART_5, CYHAL_PIN_OUT_FUNCTION(P5_1_SCB5_UART_TX)}, + {P6_1, UART_3, CYHAL_PIN_OUT_FUNCTION(P6_1_SCB3_UART_TX)}, + {P6_5, UART_6, CYHAL_PIN_OUT_FUNCTION(P6_5_SCB6_UART_TX)}, + {P7_1, UART_4, CYHAL_PIN_OUT_FUNCTION(P7_1_SCB4_UART_TX)}, + {P8_1, UART_4, CYHAL_PIN_OUT_FUNCTION(P8_1_SCB4_UART_TX)}, + {P9_1, UART_2, CYHAL_PIN_OUT_FUNCTION(P9_1_SCB2_UART_TX)}, + {P10_1, UART_1, CYHAL_PIN_OUT_FUNCTION(P10_1_SCB1_UART_TX)}, + {P11_1, UART_5, CYHAL_PIN_OUT_FUNCTION(P11_1_SCB5_UART_TX)}, + {P12_1, UART_6, CYHAL_PIN_OUT_FUNCTION(P12_1_SCB6_UART_TX)}, + {P13_1, UART_6, CYHAL_PIN_OUT_FUNCTION(P13_1_SCB6_UART_TX)}, {NC, NC, 0} }; const PinMap PinMap_UART_RTS[] = { - {P0_4, UART_0, CYHAL_PIN_OUT_FUNCTION( P0_4_SCB0_UART_RTS)}, - {P1_2, UART_7, CYHAL_PIN_OUT_FUNCTION( P1_2_SCB7_UART_RTS)}, - {P2_2, UART_1, CYHAL_PIN_OUT_FUNCTION( P2_2_SCB1_UART_RTS)}, - {P3_2, UART_2, CYHAL_PIN_OUT_FUNCTION( P3_2_SCB2_UART_RTS)}, - {P5_2, UART_5, CYHAL_PIN_OUT_FUNCTION( P5_2_SCB5_UART_RTS)}, - {P6_2, UART_3, CYHAL_PIN_OUT_FUNCTION( P6_2_SCB3_UART_RTS)}, - {P6_6, UART_6, CYHAL_PIN_OUT_FUNCTION( P6_6_SCB6_UART_RTS)}, - {P7_2, UART_4, CYHAL_PIN_OUT_FUNCTION( P7_2_SCB4_UART_RTS)}, - {P8_2, UART_4, CYHAL_PIN_OUT_FUNCTION( P8_2_SCB4_UART_RTS)}, - {P9_2, UART_2, CYHAL_PIN_OUT_FUNCTION( P9_2_SCB2_UART_RTS)}, - {P10_2, UART_1, CYHAL_PIN_OUT_FUNCTION( P10_2_SCB1_UART_RTS)}, - {P11_2, UART_5, CYHAL_PIN_OUT_FUNCTION( P11_2_SCB5_UART_RTS)}, - {P12_2, UART_6, CYHAL_PIN_OUT_FUNCTION( P12_2_SCB6_UART_RTS)}, + {P0_4, UART_0, CYHAL_PIN_OUT_FUNCTION(P0_4_SCB0_UART_RTS)}, + {P1_2, UART_7, CYHAL_PIN_OUT_FUNCTION(P1_2_SCB7_UART_RTS)}, + {P2_2, UART_1, CYHAL_PIN_OUT_FUNCTION(P2_2_SCB1_UART_RTS)}, + {P3_2, UART_2, CYHAL_PIN_OUT_FUNCTION(P3_2_SCB2_UART_RTS)}, + {P5_2, UART_5, CYHAL_PIN_OUT_FUNCTION(P5_2_SCB5_UART_RTS)}, + {P6_2, UART_3, CYHAL_PIN_OUT_FUNCTION(P6_2_SCB3_UART_RTS)}, + {P6_6, UART_6, CYHAL_PIN_OUT_FUNCTION(P6_6_SCB6_UART_RTS)}, + {P7_2, UART_4, CYHAL_PIN_OUT_FUNCTION(P7_2_SCB4_UART_RTS)}, + {P8_2, UART_4, CYHAL_PIN_OUT_FUNCTION(P8_2_SCB4_UART_RTS)}, + {P9_2, UART_2, CYHAL_PIN_OUT_FUNCTION(P9_2_SCB2_UART_RTS)}, + {P10_2, UART_1, CYHAL_PIN_OUT_FUNCTION(P10_2_SCB1_UART_RTS)}, + {P11_2, UART_5, CYHAL_PIN_OUT_FUNCTION(P11_2_SCB5_UART_RTS)}, + {P12_2, UART_6, CYHAL_PIN_OUT_FUNCTION(P12_2_SCB6_UART_RTS)}, {NC, NC, 0} }; const PinMap PinMap_UART_CTS[] = { - {P0_5, UART_0, CYHAL_PIN_IN_FUNCTION( P0_5_SCB0_UART_CTS)}, - {P1_3, UART_7, CYHAL_PIN_IN_FUNCTION( P1_3_SCB7_UART_CTS)}, - {P2_3, UART_1, CYHAL_PIN_IN_FUNCTION( P2_3_SCB1_UART_CTS)}, - {P3_3, UART_2, CYHAL_PIN_IN_FUNCTION( P3_3_SCB2_UART_CTS)}, - {P5_3, UART_5, CYHAL_PIN_IN_FUNCTION( P5_3_SCB5_UART_CTS)}, - {P6_3, UART_3, CYHAL_PIN_IN_FUNCTION( P6_3_SCB3_UART_CTS)}, - {P6_7, UART_6, CYHAL_PIN_IN_FUNCTION( P6_7_SCB6_UART_CTS)}, - {P7_3, UART_4, CYHAL_PIN_IN_FUNCTION( P7_3_SCB4_UART_CTS)}, - {P8_3, UART_4, CYHAL_PIN_IN_FUNCTION( P8_3_SCB4_UART_CTS)}, - {P9_3, UART_2, CYHAL_PIN_IN_FUNCTION( P9_3_SCB2_UART_CTS)}, - {P10_3, UART_1, CYHAL_PIN_IN_FUNCTION( P10_3_SCB1_UART_CTS)}, - {P11_3, UART_5, CYHAL_PIN_IN_FUNCTION( P11_3_SCB5_UART_CTS)}, - {P12_3, UART_6, CYHAL_PIN_IN_FUNCTION( P12_3_SCB6_UART_CTS)}, + {P0_5, UART_0, CYHAL_PIN_IN_FUNCTION(P0_5_SCB0_UART_CTS)}, + {P1_3, UART_7, CYHAL_PIN_IN_FUNCTION(P1_3_SCB7_UART_CTS)}, + {P2_3, UART_1, CYHAL_PIN_IN_FUNCTION(P2_3_SCB1_UART_CTS)}, + {P3_3, UART_2, CYHAL_PIN_IN_FUNCTION(P3_3_SCB2_UART_CTS)}, + {P5_3, UART_5, CYHAL_PIN_IN_FUNCTION(P5_3_SCB5_UART_CTS)}, + {P6_3, UART_3, CYHAL_PIN_IN_FUNCTION(P6_3_SCB3_UART_CTS)}, + {P6_7, UART_6, CYHAL_PIN_IN_FUNCTION(P6_7_SCB6_UART_CTS)}, + {P7_3, UART_4, CYHAL_PIN_IN_FUNCTION(P7_3_SCB4_UART_CTS)}, + {P8_3, UART_4, CYHAL_PIN_IN_FUNCTION(P8_3_SCB4_UART_CTS)}, + {P9_3, UART_2, CYHAL_PIN_IN_FUNCTION(P9_3_SCB2_UART_CTS)}, + {P10_3, UART_1, CYHAL_PIN_IN_FUNCTION(P10_3_SCB1_UART_CTS)}, + {P11_3, UART_5, CYHAL_PIN_IN_FUNCTION(P11_3_SCB5_UART_CTS)}, + {P12_3, UART_6, CYHAL_PIN_IN_FUNCTION(P12_3_SCB6_UART_CTS)}, {NC, NC, 0} }; #endif // DEVICE_SERIAL @@ -97,39 +97,43 @@ const PinMap PinMap_UART_CTS[] = { #if DEVICE_I2C //*** I2C *** const PinMap PinMap_I2C_SCL[] = { - {P0_2, I2C_0, CYHAL_PIN_OD_FUNCTION( P0_2_SCB0_I2C_SCL)}, - {P1_0, I2C_7, CYHAL_PIN_OD_FUNCTION( P1_0_SCB7_I2C_SCL)}, - {P2_0, I2C_1, CYHAL_PIN_OD_FUNCTION( P2_0_SCB1_I2C_SCL)}, - {P3_0, I2C_2, CYHAL_PIN_OD_FUNCTION( P3_0_SCB2_I2C_SCL)}, - {P4_0, I2C_7, CYHAL_PIN_OD_FUNCTION( P4_0_SCB7_I2C_SCL)}, - {P5_0, I2C_5, CYHAL_PIN_OD_FUNCTION( P5_0_SCB5_I2C_SCL)}, - {P6_0, I2C_3, CYHAL_PIN_OD_FUNCTION( P6_0_SCB3_I2C_SCL)}, - {P6_4, I2C_6, CYHAL_PIN_OD_FUNCTION( P6_4_SCB6_I2C_SCL)}, - {P7_0, I2C_4, CYHAL_PIN_OD_FUNCTION( P7_0_SCB4_I2C_SCL)}, - {P8_0, I2C_4, CYHAL_PIN_OD_FUNCTION( P8_0_SCB4_I2C_SCL)}, - {P9_0, I2C_2, CYHAL_PIN_OD_FUNCTION( P9_0_SCB2_I2C_SCL)}, - {P10_0, I2C_1, CYHAL_PIN_OD_FUNCTION( P10_0_SCB1_I2C_SCL)}, - {P11_0, I2C_5, CYHAL_PIN_OD_FUNCTION( P11_0_SCB5_I2C_SCL)}, - {P12_0, I2C_6, CYHAL_PIN_OD_FUNCTION( P12_0_SCB6_I2C_SCL)}, - {P13_0, I2C_6, CYHAL_PIN_OD_FUNCTION( P13_0_SCB6_I2C_SCL)}, + {P0_2, I2C_0, CYHAL_PIN_OD_FUNCTION(P0_2_SCB0_I2C_SCL)}, + {P1_0, I2C_7, CYHAL_PIN_OD_FUNCTION(P1_0_SCB7_I2C_SCL)}, + {P2_0, I2C_1, CYHAL_PIN_OD_FUNCTION(P2_0_SCB1_I2C_SCL)}, + {P3_0, I2C_2, CYHAL_PIN_OD_FUNCTION(P3_0_SCB2_I2C_SCL)}, + {P4_0, I2C_7, CYHAL_PIN_OD_FUNCTION(P4_0_SCB7_I2C_SCL)}, + {P5_0, I2C_5, CYHAL_PIN_OD_FUNCTION(P5_0_SCB5_I2C_SCL)}, + {P6_0, I2C_3, CYHAL_PIN_OD_FUNCTION(P6_0_SCB3_I2C_SCL)}, + {P6_0, I2C_8, CYHAL_PIN_OD_FUNCTION(P6_0_SCB8_I2C_SCL)}, + {P6_4, I2C_6, CYHAL_PIN_OD_FUNCTION(P6_4_SCB6_I2C_SCL)}, + {P6_4, I2C_8, CYHAL_PIN_OD_FUNCTION(P6_4_SCB8_I2C_SCL)}, + {P7_0, I2C_4, CYHAL_PIN_OD_FUNCTION(P7_0_SCB4_I2C_SCL)}, + {P8_0, I2C_4, CYHAL_PIN_OD_FUNCTION(P8_0_SCB4_I2C_SCL)}, + {P9_0, I2C_2, CYHAL_PIN_OD_FUNCTION(P9_0_SCB2_I2C_SCL)}, + {P10_0, I2C_1, CYHAL_PIN_OD_FUNCTION(P10_0_SCB1_I2C_SCL)}, + {P11_0, I2C_5, CYHAL_PIN_OD_FUNCTION(P11_0_SCB5_I2C_SCL)}, + {P12_0, I2C_6, CYHAL_PIN_OD_FUNCTION(P12_0_SCB6_I2C_SCL)}, + {P13_0, I2C_6, CYHAL_PIN_OD_FUNCTION(P13_0_SCB6_I2C_SCL)}, {NC, NC, 0} }; const PinMap PinMap_I2C_SDA[] = { - {P0_3, I2C_0, CYHAL_PIN_OD_FUNCTION( P0_3_SCB0_I2C_SDA)}, - {P1_1, I2C_7, CYHAL_PIN_OD_FUNCTION( P1_1_SCB7_I2C_SDA)}, - {P2_1, I2C_1, CYHAL_PIN_OD_FUNCTION( P2_1_SCB1_I2C_SDA)}, - {P3_1, I2C_2, CYHAL_PIN_OD_FUNCTION( P3_1_SCB2_I2C_SDA)}, - {P4_1, I2C_7, CYHAL_PIN_OD_FUNCTION( P4_1_SCB7_I2C_SDA)}, - {P5_1, I2C_5, CYHAL_PIN_OD_FUNCTION( P5_1_SCB5_I2C_SDA)}, - {P6_1, I2C_3, CYHAL_PIN_OD_FUNCTION( P6_1_SCB3_I2C_SDA)}, - {P6_5, I2C_6, CYHAL_PIN_OD_FUNCTION( P6_5_SCB6_I2C_SDA)}, - {P7_1, I2C_4, CYHAL_PIN_OD_FUNCTION( P7_1_SCB4_I2C_SDA)}, - {P8_1, I2C_4, CYHAL_PIN_OD_FUNCTION( P8_1_SCB4_I2C_SDA)}, - {P9_1, I2C_2, CYHAL_PIN_OD_FUNCTION( P9_1_SCB2_I2C_SDA)}, - {P10_1, I2C_1, CYHAL_PIN_OD_FUNCTION( P10_1_SCB1_I2C_SDA)}, - {P11_1, I2C_5, CYHAL_PIN_OD_FUNCTION( P11_1_SCB5_I2C_SDA)}, - {P12_1, I2C_6, CYHAL_PIN_OD_FUNCTION( P12_1_SCB6_I2C_SDA)}, - {P13_1, I2C_6, CYHAL_PIN_OD_FUNCTION( P13_1_SCB6_I2C_SDA)}, + {P0_3, I2C_0, CYHAL_PIN_OD_FUNCTION(P0_3_SCB0_I2C_SDA)}, + {P1_1, I2C_7, CYHAL_PIN_OD_FUNCTION(P1_1_SCB7_I2C_SDA)}, + {P2_1, I2C_1, CYHAL_PIN_OD_FUNCTION(P2_1_SCB1_I2C_SDA)}, + {P3_1, I2C_2, CYHAL_PIN_OD_FUNCTION(P3_1_SCB2_I2C_SDA)}, + {P4_1, I2C_7, CYHAL_PIN_OD_FUNCTION(P4_1_SCB7_I2C_SDA)}, + {P5_1, I2C_5, CYHAL_PIN_OD_FUNCTION(P5_1_SCB5_I2C_SDA)}, + {P6_1, I2C_3, CYHAL_PIN_OD_FUNCTION(P6_1_SCB3_I2C_SDA)}, + {P6_1, I2C_8, CYHAL_PIN_OD_FUNCTION(P6_1_SCB8_I2C_SDA)}, + {P6_5, I2C_6, CYHAL_PIN_OD_FUNCTION(P6_5_SCB6_I2C_SDA)}, + {P6_5, I2C_8, CYHAL_PIN_OD_FUNCTION(P6_5_SCB8_I2C_SDA)}, + {P7_1, I2C_4, CYHAL_PIN_OD_FUNCTION(P7_1_SCB4_I2C_SDA)}, + {P8_1, I2C_4, CYHAL_PIN_OD_FUNCTION(P8_1_SCB4_I2C_SDA)}, + {P9_1, I2C_2, CYHAL_PIN_OD_FUNCTION(P9_1_SCB2_I2C_SDA)}, + {P10_1, I2C_1, CYHAL_PIN_OD_FUNCTION(P10_1_SCB1_I2C_SDA)}, + {P11_1, I2C_5, CYHAL_PIN_OD_FUNCTION(P11_1_SCB5_I2C_SDA)}, + {P12_1, I2C_6, CYHAL_PIN_OD_FUNCTION(P12_1_SCB6_I2C_SDA)}, + {P13_1, I2C_6, CYHAL_PIN_OD_FUNCTION(P13_1_SCB6_I2C_SDA)}, {NC, NC, 0} }; #endif // DEVICE_I2C @@ -137,71 +141,79 @@ const PinMap PinMap_I2C_SDA[] = { #if DEVICE_SPI //*** SPI *** const PinMap PinMap_SPI_MOSI[] = { - {P0_2, SPI_0, CYHAL_PIN_OUT_FUNCTION( P0_2_SCB0_SPI_MOSI)}, - {P1_0, SPI_7, CYHAL_PIN_OUT_FUNCTION( P1_0_SCB7_SPI_MOSI)}, - {P2_0, SPI_1, CYHAL_PIN_OUT_FUNCTION( P2_0_SCB1_SPI_MOSI)}, - {P3_0, SPI_2, CYHAL_PIN_OUT_FUNCTION( P3_0_SCB2_SPI_MOSI)}, - {P4_0, SPI_7, CYHAL_PIN_OUT_FUNCTION( P4_0_SCB7_SPI_MOSI)}, - {P5_0, SPI_5, CYHAL_PIN_OUT_FUNCTION( P5_0_SCB5_SPI_MOSI)}, - {P6_0, SPI_3, CYHAL_PIN_OUT_FUNCTION( P6_0_SCB3_SPI_MOSI)}, - {P6_4, SPI_6, CYHAL_PIN_OUT_FUNCTION( P6_4_SCB6_SPI_MOSI)}, - {P7_0, SPI_4, CYHAL_PIN_OUT_FUNCTION( P7_0_SCB4_SPI_MOSI)}, - {P8_0, SPI_4, CYHAL_PIN_OUT_FUNCTION( P8_0_SCB4_SPI_MOSI)}, - {P9_0, SPI_2, CYHAL_PIN_OUT_FUNCTION( P9_0_SCB2_SPI_MOSI)}, - {P10_0, SPI_1, CYHAL_PIN_OUT_FUNCTION( P10_0_SCB1_SPI_MOSI)}, - {P11_0, SPI_5, CYHAL_PIN_OUT_FUNCTION( P11_0_SCB5_SPI_MOSI)}, - {P12_0, SPI_6, CYHAL_PIN_OUT_FUNCTION( P12_0_SCB6_SPI_MOSI)}, - {P13_0, SPI_6, CYHAL_PIN_OUT_FUNCTION( P13_0_SCB6_SPI_MOSI)}, + {P0_2, SPI_0, CYHAL_PIN_OUT_FUNCTION(P0_2_SCB0_SPI_MOSI)}, + {P1_0, SPI_7, CYHAL_PIN_OUT_FUNCTION(P1_0_SCB7_SPI_MOSI)}, + {P2_0, SPI_1, CYHAL_PIN_OUT_FUNCTION(P2_0_SCB1_SPI_MOSI)}, + {P3_0, SPI_2, CYHAL_PIN_OUT_FUNCTION(P3_0_SCB2_SPI_MOSI)}, + {P4_0, SPI_7, CYHAL_PIN_OUT_FUNCTION(P4_0_SCB7_SPI_MOSI)}, + {P5_0, SPI_5, CYHAL_PIN_OUT_FUNCTION(P5_0_SCB5_SPI_MOSI)}, + {P6_0, SPI_3, CYHAL_PIN_OUT_FUNCTION(P6_0_SCB3_SPI_MOSI)}, + {P6_0, SPI_8, CYHAL_PIN_OUT_FUNCTION(P6_0_SCB8_SPI_MOSI)}, + {P6_4, SPI_6, CYHAL_PIN_OUT_FUNCTION(P6_4_SCB6_SPI_MOSI)}, + {P6_4, SPI_8, CYHAL_PIN_OUT_FUNCTION(P6_4_SCB8_SPI_MOSI)}, + {P7_0, SPI_4, CYHAL_PIN_OUT_FUNCTION(P7_0_SCB4_SPI_MOSI)}, + {P8_0, SPI_4, CYHAL_PIN_OUT_FUNCTION(P8_0_SCB4_SPI_MOSI)}, + {P9_0, SPI_2, CYHAL_PIN_OUT_FUNCTION(P9_0_SCB2_SPI_MOSI)}, + {P10_0, SPI_1, CYHAL_PIN_OUT_FUNCTION(P10_0_SCB1_SPI_MOSI)}, + {P11_0, SPI_5, CYHAL_PIN_OUT_FUNCTION(P11_0_SCB5_SPI_MOSI)}, + {P12_0, SPI_6, CYHAL_PIN_OUT_FUNCTION(P12_0_SCB6_SPI_MOSI)}, + {P13_0, SPI_6, CYHAL_PIN_OUT_FUNCTION(P13_0_SCB6_SPI_MOSI)}, {NC, NC, 0} }; const PinMap PinMap_SPI_MISO[] = { - {P0_3, SPI_0, CYHAL_PIN_IN_FUNCTION( P0_3_SCB0_SPI_MISO)}, - {P1_1, SPI_7, CYHAL_PIN_IN_FUNCTION( P1_1_SCB7_SPI_MISO)}, - {P2_1, SPI_1, CYHAL_PIN_IN_FUNCTION( P2_1_SCB1_SPI_MISO)}, - {P3_1, SPI_2, CYHAL_PIN_IN_FUNCTION( P3_1_SCB2_SPI_MISO)}, - {P4_1, SPI_7, CYHAL_PIN_IN_FUNCTION( P4_1_SCB7_SPI_MISO)}, - {P5_1, SPI_5, CYHAL_PIN_IN_FUNCTION( P5_1_SCB5_SPI_MISO)}, - {P6_1, SPI_3, CYHAL_PIN_IN_FUNCTION( P6_1_SCB3_SPI_MISO)}, - {P6_5, SPI_6, CYHAL_PIN_IN_FUNCTION( P6_5_SCB6_SPI_MISO)}, - {P7_1, SPI_4, CYHAL_PIN_IN_FUNCTION( P7_1_SCB4_SPI_MISO)}, - {P8_1, SPI_4, CYHAL_PIN_IN_FUNCTION( P8_1_SCB4_SPI_MISO)}, - {P9_1, SPI_2, CYHAL_PIN_IN_FUNCTION( P9_1_SCB2_SPI_MISO)}, - {P10_1, SPI_1, CYHAL_PIN_IN_FUNCTION( P10_1_SCB1_SPI_MISO)}, - {P11_1, SPI_5, CYHAL_PIN_IN_FUNCTION( P11_1_SCB5_SPI_MISO)}, - {P12_1, SPI_6, CYHAL_PIN_IN_FUNCTION( P12_1_SCB6_SPI_MISO)}, - {P13_1, SPI_6, CYHAL_PIN_IN_FUNCTION( P13_1_SCB6_SPI_MISO)}, + {P0_3, SPI_0, CYHAL_PIN_IN_FUNCTION(P0_3_SCB0_SPI_MISO)}, + {P1_1, SPI_7, CYHAL_PIN_IN_FUNCTION(P1_1_SCB7_SPI_MISO)}, + {P2_1, SPI_1, CYHAL_PIN_IN_FUNCTION(P2_1_SCB1_SPI_MISO)}, + {P3_1, SPI_2, CYHAL_PIN_IN_FUNCTION(P3_1_SCB2_SPI_MISO)}, + {P4_1, SPI_7, CYHAL_PIN_IN_FUNCTION(P4_1_SCB7_SPI_MISO)}, + {P5_1, SPI_5, CYHAL_PIN_IN_FUNCTION(P5_1_SCB5_SPI_MISO)}, + {P6_1, SPI_3, CYHAL_PIN_IN_FUNCTION(P6_1_SCB3_SPI_MISO)}, + {P6_1, SPI_8, CYHAL_PIN_IN_FUNCTION(P6_1_SCB8_SPI_MISO)}, + {P6_5, SPI_6, CYHAL_PIN_IN_FUNCTION(P6_5_SCB6_SPI_MISO)}, + {P6_5, SPI_8, CYHAL_PIN_IN_FUNCTION(P6_5_SCB8_SPI_MISO)}, + {P7_1, SPI_4, CYHAL_PIN_IN_FUNCTION(P7_1_SCB4_SPI_MISO)}, + {P8_1, SPI_4, CYHAL_PIN_IN_FUNCTION(P8_1_SCB4_SPI_MISO)}, + {P9_1, SPI_2, CYHAL_PIN_IN_FUNCTION(P9_1_SCB2_SPI_MISO)}, + {P10_1, SPI_1, CYHAL_PIN_IN_FUNCTION(P10_1_SCB1_SPI_MISO)}, + {P11_1, SPI_5, CYHAL_PIN_IN_FUNCTION(P11_1_SCB5_SPI_MISO)}, + {P12_1, SPI_6, CYHAL_PIN_IN_FUNCTION(P12_1_SCB6_SPI_MISO)}, + {P13_1, SPI_6, CYHAL_PIN_IN_FUNCTION(P13_1_SCB6_SPI_MISO)}, {NC, NC, 0} }; const PinMap PinMap_SPI_SCLK[] = { - {P0_4, SPI_0, CYHAL_PIN_OUT_FUNCTION( P0_4_SCB0_SPI_CLK)}, - {P1_2, SPI_7, CYHAL_PIN_OUT_FUNCTION( P1_2_SCB7_SPI_CLK)}, - {P2_2, SPI_1, CYHAL_PIN_OUT_FUNCTION( P2_2_SCB1_SPI_CLK)}, - {P3_2, SPI_2, CYHAL_PIN_OUT_FUNCTION( P3_2_SCB2_SPI_CLK)}, - {P5_2, SPI_5, CYHAL_PIN_OUT_FUNCTION( P5_2_SCB5_SPI_CLK)}, - {P6_2, SPI_3, CYHAL_PIN_OUT_FUNCTION( P6_2_SCB3_SPI_CLK)}, - {P6_6, SPI_6, CYHAL_PIN_OUT_FUNCTION( P6_6_SCB6_SPI_CLK)}, - {P7_2, SPI_4, CYHAL_PIN_OUT_FUNCTION( P7_2_SCB4_SPI_CLK)}, - {P8_2, SPI_4, CYHAL_PIN_OUT_FUNCTION( P8_2_SCB4_SPI_CLK)}, - {P9_2, SPI_2, CYHAL_PIN_OUT_FUNCTION( P9_2_SCB2_SPI_CLK)}, - {P10_2, SPI_1, CYHAL_PIN_OUT_FUNCTION( P10_2_SCB1_SPI_CLK)}, - {P11_2, SPI_5, CYHAL_PIN_OUT_FUNCTION( P11_2_SCB5_SPI_CLK)}, - {P12_2, SPI_6, CYHAL_PIN_OUT_FUNCTION( P12_2_SCB6_SPI_CLK)}, + {P0_4, SPI_0, CYHAL_PIN_OUT_FUNCTION(P0_4_SCB0_SPI_CLK)}, + {P1_2, SPI_7, CYHAL_PIN_OUT_FUNCTION(P1_2_SCB7_SPI_CLK)}, + {P2_2, SPI_1, CYHAL_PIN_OUT_FUNCTION(P2_2_SCB1_SPI_CLK)}, + {P3_2, SPI_2, CYHAL_PIN_OUT_FUNCTION(P3_2_SCB2_SPI_CLK)}, + {P5_2, SPI_5, CYHAL_PIN_OUT_FUNCTION(P5_2_SCB5_SPI_CLK)}, + {P6_2, SPI_3, CYHAL_PIN_OUT_FUNCTION(P6_2_SCB3_SPI_CLK)}, + {P6_2, SPI_8, CYHAL_PIN_OUT_FUNCTION(P6_2_SCB8_SPI_CLK)}, + {P6_6, SPI_6, CYHAL_PIN_OUT_FUNCTION(P6_6_SCB6_SPI_CLK)}, + {P6_6, SPI_8, CYHAL_PIN_OUT_FUNCTION(P6_6_SCB8_SPI_CLK)}, + {P7_2, SPI_4, CYHAL_PIN_OUT_FUNCTION(P7_2_SCB4_SPI_CLK)}, + {P8_2, SPI_4, CYHAL_PIN_OUT_FUNCTION(P8_2_SCB4_SPI_CLK)}, + {P9_2, SPI_2, CYHAL_PIN_OUT_FUNCTION(P9_2_SCB2_SPI_CLK)}, + {P10_2, SPI_1, CYHAL_PIN_OUT_FUNCTION(P10_2_SCB1_SPI_CLK)}, + {P11_2, SPI_5, CYHAL_PIN_OUT_FUNCTION(P11_2_SCB5_SPI_CLK)}, + {P12_2, SPI_6, CYHAL_PIN_OUT_FUNCTION(P12_2_SCB6_SPI_CLK)}, {NC, NC, 0} }; const PinMap PinMap_SPI_SSEL[] = { - {P0_5, SPI_0, CYHAL_PIN_OUT_FUNCTION( P0_5_SCB0_SPI_SELECT0)}, - {P1_3, SPI_7, CYHAL_PIN_OUT_FUNCTION( P1_3_SCB7_SPI_SELECT0)}, - {P2_3, SPI_1, CYHAL_PIN_OUT_FUNCTION( P2_3_SCB1_SPI_SELECT0)}, - {P3_3, SPI_2, CYHAL_PIN_OUT_FUNCTION( P3_3_SCB2_SPI_SELECT0)}, - {P5_3, SPI_5, CYHAL_PIN_OUT_FUNCTION( P5_3_SCB5_SPI_SELECT0)}, - {P6_3, SPI_3, CYHAL_PIN_OUT_FUNCTION( P6_3_SCB3_SPI_SELECT0)}, - {P6_7, SPI_6, CYHAL_PIN_OUT_FUNCTION( P6_7_SCB6_SPI_SELECT0)}, - {P7_3, SPI_4, CYHAL_PIN_OUT_FUNCTION( P7_3_SCB4_SPI_SELECT0)}, - {P8_3, SPI_4, CYHAL_PIN_OUT_FUNCTION( P8_3_SCB4_SPI_SELECT0)}, - {P9_3, SPI_2, CYHAL_PIN_OUT_FUNCTION( P9_3_SCB2_SPI_SELECT0)}, - {P10_3, SPI_1, CYHAL_PIN_OUT_FUNCTION( P10_3_SCB1_SPI_SELECT0)}, - {P11_3, SPI_5, CYHAL_PIN_OUT_FUNCTION( P11_3_SCB5_SPI_SELECT0)}, - {P12_3, SPI_6, CYHAL_PIN_OUT_FUNCTION( P12_3_SCB6_SPI_SELECT0)}, + {P0_5, SPI_0, CYHAL_PIN_OUT_FUNCTION(P0_5_SCB0_SPI_SELECT0)}, + {P1_3, SPI_7, CYHAL_PIN_OUT_FUNCTION(P1_3_SCB7_SPI_SELECT0)}, + {P2_3, SPI_1, CYHAL_PIN_OUT_FUNCTION(P2_3_SCB1_SPI_SELECT0)}, + {P3_3, SPI_2, CYHAL_PIN_OUT_FUNCTION(P3_3_SCB2_SPI_SELECT0)}, + {P5_3, SPI_5, CYHAL_PIN_OUT_FUNCTION(P5_3_SCB5_SPI_SELECT0)}, + {P6_3, SPI_3, CYHAL_PIN_OUT_FUNCTION(P6_3_SCB3_SPI_SELECT0)}, + {P6_3, SPI_8, CYHAL_PIN_OUT_FUNCTION(P6_3_SCB8_SPI_SELECT0)}, + {P6_7, SPI_6, CYHAL_PIN_OUT_FUNCTION(P6_7_SCB6_SPI_SELECT0)}, + {P6_7, SPI_8, CYHAL_PIN_OUT_FUNCTION(P6_7_SCB8_SPI_SELECT0)}, + {P7_3, SPI_4, CYHAL_PIN_OUT_FUNCTION(P7_3_SCB4_SPI_SELECT0)}, + {P8_3, SPI_4, CYHAL_PIN_OUT_FUNCTION(P8_3_SCB4_SPI_SELECT0)}, + {P9_3, SPI_2, CYHAL_PIN_OUT_FUNCTION(P9_3_SCB2_SPI_SELECT0)}, + {P10_3, SPI_1, CYHAL_PIN_OUT_FUNCTION(P10_3_SCB1_SPI_SELECT0)}, + {P11_3, SPI_5, CYHAL_PIN_OUT_FUNCTION(P11_3_SCB5_SPI_SELECT0)}, + {P12_3, SPI_6, CYHAL_PIN_OUT_FUNCTION(P12_3_SCB6_SPI_SELECT0)}, {NC, NC, 0} }; #endif // DEVICE_SPI @@ -415,51 +427,48 @@ const PinMap PinMap_PWM_OUT[] = { #if DEVICE_ANALOGIN const PinMap PinMap_ADC[] = { - {P10_0, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, - {P10_1, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, - {P10_2, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, - {P10_3, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, - {P10_4, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, - {P10_5, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, - {P10_6, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, - {P10_7, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_SAR)}, + {P10_0, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, + {P10_1, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, + {P10_2, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, + {P10_3, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, + {P10_4, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, + {P10_5, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, + {P10_6, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, + {P10_7, ADC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, {NC, NC, 0} }; #endif // DEVICE_ANALOGIN #if DEVICE_ANALOGOUT const PinMap PinMap_DAC[] = { - {P9_6, DAC_0, CYHAL_PIN_ANALOG_FUNCTION(PCLK_PASS_CLOCK_CTDAC)}, - {P10_5, DAC_0, CY_GPIO_CFG_CREATE(HSIOM_SEL_AMUXA, CY_GPIO_DM_ANALOG)}, // CTDAC connects to the P10_5 pin through the AMUXA bus + {P9_6, DAC_0, CYHAL_PIN_ANALOG_FUNCTION(HSIOM_SEL_GPIO)}, {NC, NC, 0} }; #endif // DEVICE_ANALOGIN #if DEVICE_QSPI -const PinMap PinMap_QSPI_SCLK[] = { // does not use PERI clock, uses HFCLK2 - {P11_7, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_7_SMIF_SPI_CLK, 0)}, - {NC, NC, 0} +const PinMap PinMap_QSPI_SCLK[] = { + {P11_7, QSPI_0, CY_GPIO_CFG_CREATE(P11_7_SMIF_SPI_CLK, CY_GPIO_DM_STRONG_IN_OFF)}, + {NC, NC, 0}, }; - -// Ensure that the spi_data pins are defined in the order 0 to 7 -const PinMap PinMap_QSPI_DATA[] = { // does not use PERI clock, uses HFCLK2 - {P11_6, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_6_SMIF_SPI_DATA0, 0)}, // spi_data0 - {P11_5, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_5_SMIF_SPI_DATA1, 0)}, // spi_data1 - {P11_4, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_4_SMIF_SPI_DATA2, 0)}, // spi_data2 - {P11_3, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_3_SMIF_SPI_DATA3, 0)}, // spi_data3 - {P12_0, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_0_SMIF_SPI_DATA4, 0)}, // spi_data4 - {P12_1, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_1_SMIF_SPI_DATA5, 0)}, // spi_data5 - {P12_2, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_2_SMIF_SPI_DATA6, 0)}, // spi_data6 - {P12_3, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_3_SMIF_SPI_DATA7, 0)}, // spi_data7 - {NC, NC, 0} -}; - -// Ensure that the spi_select pins are defined in the order 0 to 3 -const PinMap PinMap_QSPI_SSEL[] = { // does not use PERI clock, uses HFCLK2 - {P11_2, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_2_SMIF_SPI_SELECT0, 0)}, // spi_select0 - {P11_1, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_1_SMIF_SPI_SELECT1, 0)}, // spi_select1 - {P11_0, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P11_0_SMIF_SPI_SELECT2, 0)}, // spi_select2 - {P12_4, SMIF_0, CYHAL_PIN_OUT_FUNCTION(P12_4_SMIF_SPI_SELECT3, 0)}, // spi_select3 - {NC, NC, 0} +const PinMap PinMap_QSPI_SSEL[] = { + {P11_2, QSPI_0, CY_GPIO_CFG_CREATE(P11_2_SMIF_SPI_SELECT0, CY_GPIO_DM_STRONG_IN_OFF)}, + {NC, NC, 0}, +}; +const PinMap PinMap_QSPI_DATA0[] = { + {P11_6, QSPI_0, CY_GPIO_CFG_CREATE(P11_6_SMIF_SPI_DATA0, CY_GPIO_DM_STRONG)}, + {NC, NC, 0}, +}; +const PinMap PinMap_QSPI_DATA1[] = { + {P11_5, QSPI_0, CY_GPIO_CFG_CREATE(P11_5_SMIF_SPI_DATA1, CY_GPIO_DM_STRONG)}, + {NC, NC, 0}, +}; +const PinMap PinMap_QSPI_DATA2[] = { + {P11_4, QSPI_0, CY_GPIO_CFG_CREATE(P11_4_SMIF_SPI_DATA2, CY_GPIO_DM_STRONG)}, + {NC, NC, 0}, +}; +const PinMap PinMap_QSPI_DATA3[] = { + {P11_3, QSPI_0, CY_GPIO_CFG_CREATE(P11_3_SMIF_SPI_DATA3, CY_GPIO_DM_STRONG)}, + {NC, NC, 0}, }; #endif // DEVICE_QSPI diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PinNames.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PinNames.h index faacf57baf1..e8ffc8ea40b 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PinNames.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/PinNames.h @@ -20,11 +20,8 @@ #ifndef MBED_PINNAMES_H #define MBED_PINNAMES_H -#include "cmsis.h" #include "PinNamesTypes.h" -#include "PortNames.h" #include "cyhal_pin_package.h" -#include "cyhal_utils.h" typedef cyhal_gpio_t PinName; @@ -68,16 +65,14 @@ typedef cyhal_gpio_t PinName; #define UART_RTS P5_2 #define UART_CTS P5_3 - // Reset pin unavailable +// Reset pin unavailable - -#define SWITCH2 P0_4 #define LED1 P13_7 #define LED2 P1_5 - #define LED_RED LED1 #define LED_GREEN LED2 +#define SWITCH2 P0_4 #define USER_BUTTON SWITCH2 #define BUTTON1 USER_BUTTON @@ -88,48 +83,20 @@ typedef cyhal_gpio_t PinName; #define QSPI_IO_3 P11_3 #define QSPI_SEL P11_2 - // Standardized interfaces names +#define QSPI_FLASH1_IO0 QSPI_IO_0 +#define QSPI_FLASH1_IO1 QSPI_IO_1 +#define QSPI_FLASH1_IO2 QSPI_IO_2 +#define QSPI_FLASH1_IO3 QSPI_IO_3 +#define QSPI_FLASH1_SCK QSPI_CLK +#define QSPI_FLASH1_CSN QSPI_SEL + +// Standardized interfaces names #define STDIO_UART_TX UART_TX #define STDIO_UART_RX UART_RX #define STDIO_UART_CTS UART_CTS #define STDIO_UART_RTS UART_RTS -#define CY_STDIO_UART_RX STDIO_UART_RX -#define CY_STDIO_UART_TX STDIO_UART_TX -#define CY_STDIO_UART_CTS STDIO_UART_CTS -#define CY_STDIO_UART_RTS STDIO_UART_RTS - -#define CY_BT_UART_RX BT_UART_RX -#define CY_BT_UART_TX BT_UART_TX -#define CY_BT_UART_CTS BT_UART_CTS -#define CY_BT_UART_RTS BT_UART_RTS - -#define CY_BT_PIN_POWER BT_PIN_POWER -#define CY_BT_PIN_HOST_WAKE BT_PIN_HOST_WAKE -#define CY_BT_PIN_DEVICE_WAKE BT_PIN_DEVICE_WAKE - - #define USBTX UART_TX #define USBRX UART_RX -#define AOUT P9_6 - -// PinName[15-0] = Port[15-8] + Pin[4-0] -static inline unsigned CY_PIN(PinName pin) -{ - return pin & 0x07; -} - -static inline unsigned CY_PORT(PinName pin) -{ - return (pin >> 8) & 0xFF; -} - -// Because MBED pin mapping API does not allow to map multiple instances of the PWM -// to be mapped to the same pin, we create special pin names to force 32-bit PWM unit -// usage instead of standard 16-bit PWM. - -#define PWM32(pin) CY_PIN_FORCE_PWM_32(pin) - - -#endif +#endif \ No newline at end of file diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp.c similarity index 67% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp.c index 179bcc28cad..ea7e81e5927 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.c +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp.c @@ -1,9 +1,9 @@ /***************************************************************************//** -* \file cybsp_cy8cproto_064_sb.c +* \file CY8CPROTO-064-SB/cybsp.c * * Description: * Provides APIs for interacting with the hardware contained on the Cypress -* CY8CPROTO-064-SB pioneer kit. +* CY8CPROTO-064-SB prototyping kit. * ******************************************************************************** * \copyright @@ -23,8 +23,7 @@ * limitations under the License. *******************************************************************************/ -//#include "cybsp_retarget.h" -#include "cybsp_cy8cproto_064_sb.h" +#include "cybsp.h" #include "cycfg.h" #if defined(__cplusplus) @@ -33,16 +32,25 @@ extern "C" { cy_rslt_t cybsp_init(void) { + cy_rslt_t result = CY_RSLT_SUCCESS; + init_cycfg_system(); - cy_rslt_t result = cybsp_led_init(CYBSP_USER_LED1); - result |= cybsp_led_init(CYBSP_USER_LED2); - result |= cybsp_btn_init(CYBSP_USER_BTN1); - -#if defined(CYBSP_RETARGET_ENABLED) - /* Initialize retargetting stdio to 'DEBUG_UART' peripheral */ + result = cybsp_register_sysclk_pm_callback(); + +#ifndef __MBED__ if (CY_RSLT_SUCCESS == result) { - result = cybsp_retarget_init(); + /* Initialize User LEDs */ + result |= cybsp_led_init(CYBSP_USER_LED1); + result |= cybsp_led_init(CYBSP_USER_LED2); + /* Initialize User Buttons */ + result |= cybsp_btn_init(CYBSP_USER_BTN1); + + /* Initialize retargetting stdio to 'DEBUG_UART' peripheral */ + if (CY_RSLT_SUCCESS == result) + { + result = cybsp_retarget_init(); + } } #endif diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp.h new file mode 100644 index 00000000000..afd1a4dd006 --- /dev/null +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp.h @@ -0,0 +1,36 @@ +/***************************************************************************//** +* \file CY8CPROTO-064-SB/cybsp.h +* +* Description: +* Provides APIs for interacting with the hardware contained on the Cypress +* CY8CPROTO-064-SB prototyping kit. +* +******************************************************************************** +* \copyright +* Copyright 2018-2019 Cypress Semiconductor Corporation +* SPDX-License-Identifier: Apache-2.0 +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*******************************************************************************/ + +#pragma once + +#include "cybsp_types.h" +#include "cybsp_core.h" +#ifndef __MBED__ +#include "cybsp_retarget.h" +#endif /* __MBED__ */ + +#if defined(__cplusplus) +} +#endif diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.h deleted file mode 100644 index 626a5fb73f9..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_cy8cproto_064_sb.h +++ /dev/null @@ -1,74 +0,0 @@ -/***************************************************************************//** -* \file cybsp_cy8cproto_064_sb.h -* -* Description: -* Provides APIs for interacting with the hardware contained on the Cypress -* CY8CPROTO-064-SB pioneer kit. -* -******************************************************************************** -* \copyright -* Copyright 2018-2019 Cypress Semiconductor Corporation -* SPDX-License-Identifier: Apache-2.0 -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*******************************************************************************/ - -/** -* \addtogroup group_bsp_cy8cproto_064_sb CY8CPROTO-064-SB -* \ingroup group_bsp -* \{ -* CY8CPROTO-064-SB PSoC 64 SecureBoot Prototyping Kit is a low-cost Prototyping -* Kit based on PSoC 64 SecureBoot MCU to enable customers to prototype and -* design with the PSoC 64 SecureBoot device. -* -*
Kit Features:
-*
    -*
  • PSoC 64 Secure MCU that combines IoT platform software, a root-of-trust with secure services, and the ultra-low power, hardware-based security capabilities of the PSoC 6 MCU architecture
  • -*
  • 128 Mb Serial NOR flash
  • -*
  • Full-speed USB device interface
  • -*
-* -*
Kit Contents:
-*
    -*
  • PSoC 64 SecureBoot Prototyping Board
  • -*
  • USB Type-A to Micro-B cable
  • -*
  • Quick start guide
  • -*
-* -* \defgroup group_bsp_cy8cproto_064_sb_macros Macros -* \defgroup group_bsp_cy8cproto_064_sb_functions Functions -* \defgroup group_bsp_cy8cproto_064_sb_enums Enumerated Types -*/ - -#pragma once - -#include -#include -#include "cybsp_api_core.h" -#include "cybsp_types.h" - -#if defined(__cplusplus) -extern "C" { -#endif - -/** \cond INTERNAL */ - -// TODO: add BSP pin mappings - -/** \endcond */ - -#if defined(__cplusplus) -} -#endif - -/** \} group_bsp_cy8cproto_064_sb */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_types.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_types.h index 553088655f8..7247a347f35 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_types.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cybsp_types.h @@ -23,14 +23,6 @@ * limitations under the License. *******************************************************************************/ -/** -* \addtogroup group_bsp_cy8cproto_064_sb CY8CPROTO-064-SB -* \ingroup group_bsp -* \{ -* \defgroup group_bsp_cy8cproto_064_sb_macros Macros -* \defgroup group_bsp_cy8cproto_064_sb_enums Enumerated Types -*/ - #pragma once #include "cyhal.h" @@ -40,7 +32,7 @@ extern "C" { #endif /** -* \addtogroup group_bsp_cy8cproto_064_sb_macros +* \addtogroup group_bsp_pins Pin Mappings * \{ */ @@ -109,10 +101,10 @@ extern "C" { /** Pin: USB Device D- */ #define CYBSP_USB_DM P14_1 -/** \} group_bsp_cy8cproto_064_sb_macros */ +/** \} group_bsp_pins */ /** -* \addtogroup group_bsp_cy8cproto_064_sb_enums +* \addtogroup group_bsp_enums Enumerated Types * \{ */ @@ -148,10 +140,8 @@ typedef enum CYBSP_USER_BTN1 = CYBSP_SW2, } cybsp_btn_t; -/** \} group_bsp_cy8cproto_064_sb_enums */ +/** \} group_bsp_enums */ #if defined(__cplusplus) } #endif - -/** \} group_bsp_cy8cproto_064_sb */ diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cycfg_qspi_memslot.cyqspi b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cycfg_qspi_memslot.cyqspi deleted file mode 100644 index 3b668965d30..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/cycfg_qspi_memslot.cyqspi +++ /dev/null @@ -1,63 +0,0 @@ - - - - PSoC 6.xml - - - 0 - S25FL128S - false - None - 0x18000000 - 0x10000 - 0x1800FFFF - true - false - QUAD_SPI_DATA_0_3 - S25FL128S - false - - - 1 - Not used - false - None - 0x18010000 - 0x10000 - 0x1801FFFF - false - false - SPI_MOSI_MISO_DATA_0_1 - default_memory.xml - false - - - 2 - Not used - false - None - 0x18020000 - 0x10000 - 0x1802FFFF - false - false - SPI_MOSI_MISO_DATA_0_1 - default_memory.xml - false - - - 3 - Not used - false - None - 0x18030000 - 0x10000 - 0x1803FFFF - false - false - SPI_MOSI_MISO_DATA_0_1 - default_memory.xml - false - - - diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_ARM/cyb06xx7_cm4_dual.sct diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_ARM/startup_psoc6_01_cm4.S diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_GCC_ARM/cyb06xx7_cm4_dual.ld diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_GCC_ARM/startup_psoc6_01_cm4.S diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_IAR/cyb06xx7_cm4_dual.icf diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TOOLCHAIN_IAR/startup_psoc6_01_cm4.S diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/system_psoc6_cm4.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/system_psoc6_cm4.c similarity index 100% rename from targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/TARGET_MCU_PSOC6_M4/system_psoc6_cm4.c rename to targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/device/system_psoc6_cm4.c diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/psoc6_static_srm.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/psoc6_static_srm.h deleted file mode 100644 index f265e20da70..00000000000 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CY8CPROTO_064_SB/psoc6_static_srm.h +++ /dev/null @@ -1,85 +0,0 @@ -/* - * mbed Microcontroller Library - * Copyright (c) 2017-2018 Future Electronics - * Copyright (c) 2019 Cypress Semiconductor Corporation - * SPDX-License-Identifier: Apache-2.0 - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - - */ - -/* - * This file defines hardware resources reserved by device-generated code. These - * resources are accessed directly by the Peripheral Driver library (PDL). - * - * There are four classes of resources that must be declared here: - * 1 CYCFG_ASSIGNED_PORTS macro defines which ports and pins are reserved. - * You define these as a colon separated list of ports and pins reserved - * using macro SRM_PORT(port_num, pins), once for each reserved port. - * SRM_PORT macro arguments are port number (in the range 0 ... 14) and - * pins, which is a hex value with a bit set for each reserved pin on a port. - * - * 2 CYCFG_ASSIGNED_DIVIDERS macro defines which clock dividers are reserved. - * You define these as a colon separated list of dividers reserved - * using macro SRM_DIVIDER(type, reservations), once for each required - * divider type. - * SRM_DIVIDER arguments are divider type (one of cy_en_divider_types_t - * values) and reservations, which is a hex mask value with a bit set for - * each reserved divider of a given type. - * - * 3 CYCFG_ASSIGNED_SCBS macro defines which SCB blocks are reserved. - * You define these as a colon separated list of SCBs reserved using - * macro SRM_SCB(n), which argument is SCB number in a range 0 ... 7. - * - * 4 CYCFG_ASSIGNED_TCPWM macro defines which TCPWM blocks are reserved. - * You define these as a colon separated list of TCPWMs reserved using - * macro SRM_TCPWM(n), which argument is TCPWM number in a range 0 ... 31. - * - * Examples: - * #define CYCFG_ASSIGNED_PORTS SRM_PORT(0, 0x30), SRM_PORT(5, 0x03) - * - * #define CYCFG_ASSIGNED_DIVIDERS SRM_DIVIDER(CY_SYSCLK_DIV_8_BIT, 0x01) - * - * #define CYCFG_ASSIGNED_SCBS SRM_SCB(2) - * - * #define CYCFG_ASSIGNED_TCPWMS - * - */ - -/* P0_0 and P0_1 reserved for WCO, -* P1_0 reserved for CSD TX, -* P2_0 ... P2_5 reserved for SDHC -* P6-4, P6-6 and P6_7 reserved for SWD, -* P7_1, P7_2 and P7_7 reserved for CSD Capacitors -* P8_1 ... P8_7 reserved for CSD Buttons -* P11_2 ... P11_7 reserved for QSPI -* P14_0 ... P14_1 reserved for USB -*/ -#define CYCFG_ASSIGNED_PORTS SRM_PORT(0, 0x03), SRM_PORT(1, 0x01),\ - SRM_PORT(2, 0x3f), SRM_PORT(6, 0xd0),\ - SRM_PORT(7, 0x86), SRM_PORT(8, 0xfe),\ - SRM_PORT(11, 0xfc), SRM_PORT(14, 0x03) - -/* -* 8-bit divider 0 reserved for UDB -* 8-bit divider 4 reserved for CSD -* 16-bit divider 0 reserved for USB -*/ -#define CYCFG_ASSIGNED_DIVIDERS SRM_DIVIDER(CY_SYSCLK_DIV_8_BIT, 0x11), \ - SRM_DIVIDER(CY_SYSCLK_DIV_16_BIT, 0x01) - -#define CYCFG_ASSIGNED_SCBS - -#define CYCFG_ASSIGNED_TCPWMS - -/* End of File */ diff --git a/tools/targets/__init__.py b/tools/targets/__init__.py index c270f935875..2d188b0de23 100644 --- a/tools/targets/__init__.py +++ b/tools/targets/__init__.py @@ -688,7 +688,7 @@ def sign_image(t_self, resources, elf, binf): "is not compatible with Cypress Secure Boot target. " "You are using Python " + str(sys.version[:5]) + " which is not supported by CySecureTools. " - "Consider installing Python 3.7+ and rebuild target. " + "Consider installing Python 3.4+ and rebuild target. " "For more information refver to User Guide https://www.cypress.com/secureboot-sdk-user-guide") else: from tools.targets.PSOC6 import sign_image as psoc6_sign_image From 9780c9018e14adecec1d3f36281cb8b822db9273 Mon Sep 17 00:00:00 2001 From: Roman Okhrimenko Date: Fri, 30 Aug 2019 16:00:09 +0300 Subject: [PATCH 16/16] Disabled QSPI for now --- .../TARGET_PSOC6/common/cybsp_serial_flash_prog.c | 4 ++-- targets/targets.json | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/common/cybsp_serial_flash_prog.c b/targets/TARGET_Cypress/TARGET_PSOC6/common/cybsp_serial_flash_prog.c index 1948adcd619..c0306dc6fbd 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/common/cybsp_serial_flash_prog.c +++ b/targets/TARGET_Cypress/TARGET_PSOC6/common/cybsp_serial_flash_prog.c @@ -41,7 +41,7 @@ extern "C" { #endif -#if defined(CYBSP_QSPI_SCK) +#if defined(CYBSP_QSPI_SCK) && (DEVICE_QSPI) #include "cycfg_qspi_memslot.h" typedef struct @@ -85,7 +85,7 @@ const uint32_t cyToc[128] = }; /** \} group_bsp_serial_flash_variables */ -#endif /* defined(CYBSP_QSPI_SCK) */ +#endif /* defined(CYBSP_QSPI_SCK) && (DEVICE_QSPI) */ #if defined(__cplusplus) } diff --git a/targets/targets.json b/targets/targets.json index eca61fd47ce..9e3d854e2e4 100644 --- a/targets/targets.json +++ b/targets/targets.json @@ -8703,6 +8703,8 @@ }, "CY8CPROTO_064_SB": { "inherits": ["MCU_PSOC6_M4"], + "components_remove": ["QSPIF"], + "device_has_remove": ["QSPI"], "supported_form_factors": ["ARDUINO"], "extra_labels_add": ["PSOC6_01"], "macros_add": ["CYB06447BZI_D54",